From 37d29f6f3e2efb9fbafe3ca0c41a277d327c7dab Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 22 May 2014 10:34:21 +0200 Subject: [PATCH 001/192] lkairies-volume-quota/interface: Added ENOSPC to POSIX error types. --- cpp/generated/pbrpc/RPC.pb.cc | 11 +++++---- cpp/generated/pbrpc/RPC.pb.h | 1 + interface/pbrpc/RPC.proto | 1 + .../pbrpc/generatedinterfaces/RPC.java | 23 +++++++++++++------ 4 files changed, 24 insertions(+), 12 deletions(-) diff --git a/cpp/generated/pbrpc/RPC.pb.cc b/cpp/generated/pbrpc/RPC.pb.cc index 6787fd799..3dba2574d 100644 --- a/cpp/generated/pbrpc/RPC.pb.cc +++ b/cpp/generated/pbrpc/RPC.pb.cc @@ -237,7 +237,7 @@ void protobuf_AddDesc_pbrpc_2fRPC_2eproto() { "INVALID_INTERFACE_ID\020\001\022\023\n\017INVALID_PROC_I" "D\020\002\022\020\n\014GARBAGE_ARGS\020\003\022\017\n\013AUTH_FAILED\020\004\022\031" "\n\025INTERNAL_SERVER_ERROR\020\005\022\t\n\005ERRNO\020\006\022\014\n\010" - "REDIRECT\020\007\022\014\n\010IO_ERROR\020d*\362\002\n\nPOSIXErrno\022" + "REDIRECT\020\007\022\014\n\010IO_ERROR\020d*\212\003\n\nPOSIXErrno\022" "\025\n\020POSIX_ERROR_NONE\020\217N\022\025\n\021POSIX_ERROR_EP" "ERM\020\001\022\026\n\022POSIX_ERROR_ENOENT\020\002\022\025\n\021POSIX_E" "RROR_EINTR\020\004\022\023\n\017POSIX_ERROR_EIO\020\005\022\026\n\022POS" @@ -245,10 +245,10 @@ void protobuf_AddDesc_pbrpc_2fRPC_2eproto() { "\r\022\026\n\022POSIX_ERROR_EEXIST\020\021\022\025\n\021POSIX_ERROR" "_EXDEV\020\022\022\026\n\022POSIX_ERROR_ENODEV\020\023\022\027\n\023POSI" "X_ERROR_ENOTDIR\020\024\022\026\n\022POSIX_ERROR_EISDIR\020" - "\025\022\026\n\022POSIX_ERROR_EINVAL\020\026\022\031\n\025POSIX_ERROR" - "_ENOTEMPTY\020\'\022\027\n\023POSIX_ERROR_ENODATA\020=B3\n" - "1org.xtreemfs.foundation.pbrpc.generated" - "interfaces", 1530); + "\025\022\026\n\022POSIX_ERROR_EINVAL\020\026\022\026\n\022POSIX_ERROR" + "_ENOSPC\020\034\022\031\n\025POSIX_ERROR_ENOTEMPTY\020\'\022\027\n\023" + "POSIX_ERROR_ENODATA\020=B3\n1org.xtreemfs.fo" + "undation.pbrpc.generatedinterfaces", 1554); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "pbrpc/RPC.proto", &protobuf_RegisterTypes); UserCredentials::default_instance_ = new UserCredentials(); @@ -339,6 +339,7 @@ bool POSIXErrno_IsValid(int value) { case 20: case 21: case 22: + case 28: case 39: case 61: case 9999: diff --git a/cpp/generated/pbrpc/RPC.pb.h b/cpp/generated/pbrpc/RPC.pb.h index 822cd5b44..be8773224 100644 --- a/cpp/generated/pbrpc/RPC.pb.h +++ b/cpp/generated/pbrpc/RPC.pb.h @@ -120,6 +120,7 @@ enum POSIXErrno { POSIX_ERROR_ENOTDIR = 20, POSIX_ERROR_EISDIR = 21, POSIX_ERROR_EINVAL = 22, + POSIX_ERROR_ENOSPC = 28, POSIX_ERROR_ENOTEMPTY = 39, POSIX_ERROR_ENODATA = 61 }; diff --git a/interface/pbrpc/RPC.proto b/interface/pbrpc/RPC.proto index ac6e0b6d4..6dc3f2ce4 100644 --- a/interface/pbrpc/RPC.proto +++ b/interface/pbrpc/RPC.proto @@ -115,6 +115,7 @@ enum POSIXErrno { POSIX_ERROR_ENOTDIR = 20; POSIX_ERROR_EISDIR = 21; POSIX_ERROR_EINVAL = 22; + POSIX_ERROR_ENOSPC = 28; POSIX_ERROR_ENOTEMPTY = 39; POSIX_ERROR_ENODATA = 61; } diff --git a/java/foundation/src/org/xtreemfs/foundation/pbrpc/generatedinterfaces/RPC.java b/java/foundation/src/org/xtreemfs/foundation/pbrpc/generatedinterfaces/RPC.java index 807a68500..f802865ed 100644 --- a/java/foundation/src/org/xtreemfs/foundation/pbrpc/generatedinterfaces/RPC.java +++ b/java/foundation/src/org/xtreemfs/foundation/pbrpc/generatedinterfaces/RPC.java @@ -499,14 +499,18 @@ public final class RPC { * POSIX_ERROR_EINVAL = 22; */ POSIX_ERROR_EINVAL(12, 22), + /** + * POSIX_ERROR_ENOSPC = 28; + */ + POSIX_ERROR_ENOSPC(13, 28), /** * POSIX_ERROR_ENOTEMPTY = 39; */ - POSIX_ERROR_ENOTEMPTY(13, 39), + POSIX_ERROR_ENOTEMPTY(14, 39), /** * POSIX_ERROR_ENODATA = 61; */ - POSIX_ERROR_ENODATA(14, 61), + POSIX_ERROR_ENODATA(15, 61), ; /** @@ -561,6 +565,10 @@ public final class RPC { * POSIX_ERROR_EINVAL = 22; */ public static final int POSIX_ERROR_EINVAL_VALUE = 22; + /** + * POSIX_ERROR_ENOSPC = 28; + */ + public static final int POSIX_ERROR_ENOSPC_VALUE = 28; /** * POSIX_ERROR_ENOTEMPTY = 39; */ @@ -588,6 +596,7 @@ public final class RPC { case 20: return POSIX_ERROR_ENOTDIR; case 21: return POSIX_ERROR_EISDIR; case 22: return POSIX_ERROR_EINVAL; + case 28: return POSIX_ERROR_ENOSPC; case 39: return POSIX_ERROR_ENOTEMPTY; case 61: return POSIX_ERROR_ENODATA; default: return null; @@ -6211,7 +6220,7 @@ public final class RPC { "INVALID_INTERFACE_ID\020\001\022\023\n\017INVALID_PROC_I" + "D\020\002\022\020\n\014GARBAGE_ARGS\020\003\022\017\n\013AUTH_FAILED\020\004\022\031" + "\n\025INTERNAL_SERVER_ERROR\020\005\022\t\n\005ERRNO\020\006\022\014\n\010" + - "REDIRECT\020\007\022\014\n\010IO_ERROR\020d*\362\002\n\nPOSIXErrno\022" + + "REDIRECT\020\007\022\014\n\010IO_ERROR\020d*\212\003\n\nPOSIXErrno\022" + "\025\n\020POSIX_ERROR_NONE\020\217N\022\025\n\021POSIX_ERROR_EP" + "ERM\020\001\022\026\n\022POSIX_ERROR_ENOENT\020\002\022\025\n\021POSIX_E", "RROR_EINTR\020\004\022\023\n\017POSIX_ERROR_EIO\020\005\022\026\n\022POS" + @@ -6219,10 +6228,10 @@ public final class RPC { "\r\022\026\n\022POSIX_ERROR_EEXIST\020\021\022\025\n\021POSIX_ERROR" + "_EXDEV\020\022\022\026\n\022POSIX_ERROR_ENODEV\020\023\022\027\n\023POSI" + "X_ERROR_ENOTDIR\020\024\022\026\n\022POSIX_ERROR_EISDIR\020" + - "\025\022\026\n\022POSIX_ERROR_EINVAL\020\026\022\031\n\025POSIX_ERROR" + - "_ENOTEMPTY\020\'\022\027\n\023POSIX_ERROR_ENODATA\020=B3\n" + - "1org.xtreemfs.foundation.pbrpc.generated" + - "interfaces" + "\025\022\026\n\022POSIX_ERROR_EINVAL\020\026\022\026\n\022POSIX_ERROR" + + "_ENOSPC\020\034\022\031\n\025POSIX_ERROR_ENOTEMPTY\020\'\022\027\n\023" + + "POSIX_ERROR_ENODATA\020=B3\n1org.xtreemfs.fo" + + "undation.pbrpc.generatedinterfaces" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { -- GitLab From 1b3303704cb47ecbb2ae5caed6e9f085e88c4c94 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 22 May 2014 13:31:18 +0200 Subject: [PATCH 002/192] lkairies-volume-quota/servers: Added getVolumeQuota() method to StorageManager and VolumeInfo. --- .../org/xtreemfs/mrc/database/VolumeInfo.java | 8 +++++++- .../babudb/BabuDBSnapshotStorageManager.java | 15 +++++++++++++++ .../babudb/BabuDBSnapshotVolumeInfo.java | 10 +++++++--- .../database/babudb/BabuDBStorageManager.java | 16 +++++++++++++++- .../mrc/database/babudb/BabuDBVolumeInfo.java | 10 +++++++--- 5 files changed, 51 insertions(+), 8 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/database/VolumeInfo.java b/java/servers/src/org/xtreemfs/mrc/database/VolumeInfo.java index 07e09caec..09b601aa5 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/VolumeInfo.java +++ b/java/servers/src/org/xtreemfs/mrc/database/VolumeInfo.java @@ -67,6 +67,12 @@ public interface VolumeInfo { */ public long getVolumeSize() throws DatabaseException; + /** + * Returns the volume quota in bytes. + * + * @return the volume quota + */ + public long getVolumeQuota() throws DatabaseException; /** * Returns the number of files currently stored in the volume. * @@ -127,7 +133,7 @@ public interface VolumeInfo { * a flag specifying whether snapshots may be created */ public void setAllowSnaps(boolean allowSnaps, AtomicDBUpdate update) throws DatabaseException; - + /** * Adds diff to the current volume size. * diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotStorageManager.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotStorageManager.java index 7250f7a8c..9de11c079 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotStorageManager.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotStorageManager.java @@ -79,6 +79,8 @@ public class BabuDBSnapshotStorageManager implements StorageManager { protected static final String VOL_ID_ATTR_NAME = "volId"; + protected static final String VOL_QUOTA = "quota"; + protected static final int[] ALL_INDICES = { FILE_INDEX, XATTRS_INDEX, ACL_INDEX, FILE_ID_INDEX, VOLUME_INDEX }; @@ -378,6 +380,19 @@ public class BabuDBSnapshotStorageManager implements StorageManager { } } + protected long getVolumeQuota() throws DatabaseException { + try { + byte[] quotaBytes = BabuDBStorageHelper.getVolumeMetadata(database, VOL_QUOTA.getBytes()); + if (quotaBytes == null) { + return 0; + } else { + return ByteBuffer.wrap(quotaBytes).getLong(0); + } + } catch (BabuDBException exc) { + throw new DatabaseException(exc); + } + } + protected long getNumFiles() throws DatabaseException { try { byte[] sizeBytes = BabuDBStorageHelper.getVolumeMetadata(database, NUM_FILES_KEY); diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotVolumeInfo.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotVolumeInfo.java index eff3aa9d0..8c0a62a17 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotVolumeInfo.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotVolumeInfo.java @@ -11,9 +11,9 @@ package org.xtreemfs.mrc.database.babudb; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.mrc.database.AtomicDBUpdate; import org.xtreemfs.mrc.database.DatabaseException; +import org.xtreemfs.mrc.database.DatabaseException.ExceptionType; import org.xtreemfs.mrc.database.StorageManager; import org.xtreemfs.mrc.database.VolumeInfo; -import org.xtreemfs.mrc.database.DatabaseException.ExceptionType; import org.xtreemfs.mrc.utils.Converter; /** @@ -105,7 +105,7 @@ public class BabuDBSnapshotVolumeInfo implements VolumeInfo { public void updateVolumeSize(long diff, AtomicDBUpdate update) throws DatabaseException { sMan.throwException(); } - + @Override public long getNumFiles() throws DatabaseException { return 0; @@ -135,5 +135,9 @@ public class BabuDBSnapshotVolumeInfo implements VolumeInfo { public long getCreationTime() throws DatabaseException { return creationTimestamp; } - + + @Override + public long getVolumeQuota() throws DatabaseException{ + return sMan.getVolumeQuota(); + } } diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java index acf14902b..759923d25 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java @@ -13,7 +13,6 @@ import java.io.IOException; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.Arrays; -import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Map; @@ -96,6 +95,8 @@ public class BabuDBStorageManager implements StorageManager { protected static final String VOL_ID_ATTR_NAME = "volId"; + protected static final String VOL_QUOTA = "quota"; + protected static final int[] ALL_INDICES = { FILE_INDEX, XATTRS_INDEX, ACL_INDEX, FILE_ID_INDEX, VOLUME_INDEX }; @@ -988,6 +989,19 @@ public class BabuDBStorageManager implements StorageManager { } } + protected long getVolumeQuota() throws DatabaseException { + try{ + byte[] quotaBytes = BabuDBStorageHelper.getVolumeMetadata(database, VOL_QUOTA.getBytes()); + if (quotaBytes == null) { + return 0; + } else { + return ByteBuffer.wrap(quotaBytes).getLong(0); + } + } catch (BabuDBException exc) { + throw new DatabaseException(exc); + } + } + protected long getNumFiles() throws DatabaseException { try { byte[] sizeBytes = BabuDBStorageHelper.getVolumeMetadata(database, NUM_FILES_KEY); diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java index 26b5300af..555795c98 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java @@ -11,9 +11,9 @@ package org.xtreemfs.mrc.database.babudb; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.mrc.database.AtomicDBUpdate; import org.xtreemfs.mrc.database.DatabaseException; +import org.xtreemfs.mrc.database.DatabaseException.ExceptionType; import org.xtreemfs.mrc.database.StorageManager; import org.xtreemfs.mrc.database.VolumeInfo; -import org.xtreemfs.mrc.database.DatabaseException.ExceptionType; import org.xtreemfs.mrc.utils.Converter; /** @@ -104,7 +104,7 @@ public class BabuDBVolumeInfo implements VolumeInfo { if (allowSnapsAttr != null) allowSnaps = "true".equalsIgnoreCase(new String(allowSnapsAttr)); - + } catch (NumberFormatException exc) { Logging.logError(Logging.LEVEL_ERROR, this, exc); throw new DatabaseException("corrupted MRC database", ExceptionType.INTERNAL_DB_ERROR); @@ -194,5 +194,9 @@ public class BabuDBVolumeInfo implements VolumeInfo { public long getCreationTime() throws DatabaseException { return 0; } - + + @Override + public long getVolumeQuota() throws DatabaseException{ + return sMan.getVolumeQuota(); + } } -- GitLab From d6aacffb3a6f58f309bf672cf7a71281a5c5f2f8 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 22 May 2014 13:32:33 +0200 Subject: [PATCH 003/192] lkairies-volume-quota/servers: Added quota check to open operation. --- .../src/org/xtreemfs/mrc/operations/OpenOperation.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/mrc/operations/OpenOperation.java b/java/servers/src/org/xtreemfs/mrc/operations/OpenOperation.java index da29a6a4f..b1b1c82ec 100644 --- a/java/servers/src/org/xtreemfs/mrc/operations/OpenOperation.java +++ b/java/servers/src/org/xtreemfs/mrc/operations/OpenOperation.java @@ -24,10 +24,10 @@ import org.xtreemfs.mrc.UserException; import org.xtreemfs.mrc.ac.FileAccessManager; import org.xtreemfs.mrc.database.AtomicDBUpdate; import org.xtreemfs.mrc.database.DatabaseException; +import org.xtreemfs.mrc.database.DatabaseException.ExceptionType; import org.xtreemfs.mrc.database.StorageManager; import org.xtreemfs.mrc.database.VolumeInfo; import org.xtreemfs.mrc.database.VolumeManager; -import org.xtreemfs.mrc.database.DatabaseException.ExceptionType; import org.xtreemfs.mrc.metadata.FileMetadata; import org.xtreemfs.mrc.metadata.ReplicationPolicy; import org.xtreemfs.mrc.metadata.XLoc; @@ -98,6 +98,12 @@ public class OpenOperation extends MRCOperation { // check whether the file/directory exists try { + // check if volume is full + long volumeQuota = volume.getVolumeQuota(); + if ((write || create) && volumeQuota <= volume.getVolumeSize() ) { + throw new UserException(POSIXErrno.POSIX_ERROR_ENOSPC, "the volume's quota is reached"); + } + res.checkIfFileDoesNotExist(); // check if O_CREAT and O_EXCL are set; if so, send an exception -- GitLab From 9a9d15ceaf9df2e17ede011b27caca9608b9b500 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Wed, 28 May 2014 15:47:14 +0200 Subject: [PATCH 004/192] lkairies-volume-quota/servers: Added quota to system attributes and re-implemented get- and setVolumeQuota() methods. --- .../xtreemfs/mrc/database/StorageManager.java | 4 +++ .../org/xtreemfs/mrc/database/VolumeInfo.java | 13 +++++-- .../babudb/BabuDBSnapshotStorageManager.java | 36 +++++++++++-------- .../babudb/BabuDBSnapshotVolumeInfo.java | 15 +++++--- .../database/babudb/BabuDBStorageManager.java | 36 +++++++++++-------- .../mrc/database/babudb/BabuDBVolumeInfo.java | 19 ++++++---- .../src/org/xtreemfs/mrc/utils/MRCHelper.java | 14 +++++++- 7 files changed, 94 insertions(+), 43 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/database/StorageManager.java b/java/servers/src/org/xtreemfs/mrc/database/StorageManager.java index ec4f84f59..d11ae331d 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/StorageManager.java +++ b/java/servers/src/org/xtreemfs/mrc/database/StorageManager.java @@ -113,6 +113,8 @@ public interface StorageManager { public void setDefaultStripingPolicy(long fileId, org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy defaultSp, AtomicDBUpdate update) throws DatabaseException; + public void setVolumeQuota(long quota, AtomicDBUpdate update) throws DatabaseException; + public void setDefaultReplicationPolicy(long fileId, ReplicationPolicy defaultRp, AtomicDBUpdate update) throws DatabaseException; @@ -132,6 +134,8 @@ public interface StorageManager { public ReplicationPolicy getDefaultReplicationPolicy(long fileId) throws DatabaseException; + public long getVolumeQuota() throws DatabaseException; + public String getSoftlinkTarget(long fileId) throws DatabaseException; public DatabaseResultSet getChildren(long parentId, int seen, int num) throws DatabaseException; diff --git a/java/servers/src/org/xtreemfs/mrc/database/VolumeInfo.java b/java/servers/src/org/xtreemfs/mrc/database/VolumeInfo.java index 09b601aa5..59fa5cddc 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/VolumeInfo.java +++ b/java/servers/src/org/xtreemfs/mrc/database/VolumeInfo.java @@ -68,9 +68,9 @@ public interface VolumeInfo { public long getVolumeSize() throws DatabaseException; /** - * Returns the volume quota in bytes. + * Returns the volume's quota in bytes. * - * @return the volume quota + * @return the volume's quota in bytes */ public long getVolumeQuota() throws DatabaseException; /** @@ -134,6 +134,15 @@ public interface VolumeInfo { */ public void setAllowSnaps(boolean allowSnaps, AtomicDBUpdate update) throws DatabaseException; + /** + * Set the volume's quota. + * + * @param quota + * quota in bytes + * @throws DatabaseException + */ + public void setVolumeQuota(long quota, AtomicDBUpdate update) throws DatabaseException; + /** * Adds diff to the current volume size. * diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotStorageManager.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotStorageManager.java index 9de11c079..fb139ce84 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotStorageManager.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotStorageManager.java @@ -79,7 +79,7 @@ public class BabuDBSnapshotStorageManager implements StorageManager { protected static final String VOL_ID_ATTR_NAME = "volId"; - protected static final String VOL_QUOTA = "quota"; + protected static final String VOL_QUOTA = "quota"; protected static final int[] ALL_INDICES = { FILE_INDEX, XATTRS_INDEX, ACL_INDEX, FILE_ID_INDEX, VOLUME_INDEX }; @@ -206,6 +206,21 @@ public class BabuDBSnapshotStorageManager implements StorageManager { } } + public long getVolumeQuota() throws DatabaseException { + try { + byte[] quotaBytes = getXAttr(1, SYSTEM_UID, VOL_QUOTA); + if (quotaBytes == null) { + return 0; + } else { + return Long.valueOf(new String(quotaBytes)); + } + } catch (DatabaseException exc) { + throw exc; + } catch (Exception exc) { + throw new DatabaseException(exc); + } + } + @Override public FileMetadata getMetadata(long fileId) throws DatabaseException { @@ -380,19 +395,6 @@ public class BabuDBSnapshotStorageManager implements StorageManager { } } - protected long getVolumeQuota() throws DatabaseException { - try { - byte[] quotaBytes = BabuDBStorageHelper.getVolumeMetadata(database, VOL_QUOTA.getBytes()); - if (quotaBytes == null) { - return 0; - } else { - return ByteBuffer.wrap(quotaBytes).getLong(0); - } - } catch (BabuDBException exc) { - throw new DatabaseException(exc); - } - } - protected long getNumFiles() throws DatabaseException { try { byte[] sizeBytes = BabuDBStorageHelper.getVolumeMetadata(database, NUM_FILES_KEY); @@ -541,6 +543,11 @@ public class BabuDBSnapshotStorageManager implements StorageManager { throwException(); } + @Override + public void setVolumeQuota(long quota, AtomicDBUpdate update) throws DatabaseException { + throwException(); + } + @Override public void setLastFileId(long fileId, AtomicDBUpdate update) throws DatabaseException { throwException(); @@ -570,5 +577,4 @@ public class BabuDBSnapshotStorageManager implements StorageManager { protected void throwException() throws DatabaseException { throw new DatabaseException("cannot invoke this operation on a snapshot", ExceptionType.NOT_ALLOWED); } - } \ No newline at end of file diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotVolumeInfo.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotVolumeInfo.java index 8c0a62a17..ebdf02aa2 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotVolumeInfo.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBSnapshotVolumeInfo.java @@ -81,6 +81,11 @@ public class BabuDBSnapshotVolumeInfo implements VolumeInfo { return replicaPolicy; } + @Override + public long getVolumeQuota() throws DatabaseException { + return sMan.getVolumeQuota(); + } + @Override public short getAcPolicyId() { return acPolicy; @@ -96,6 +101,11 @@ public class BabuDBSnapshotVolumeInfo implements VolumeInfo { sMan.throwException(); } + @Override + public void setVolumeQuota(long quota, AtomicDBUpdate update) throws DatabaseException { + sMan.throwException(); + } + @Override public void setAllowSnaps(boolean allowSnaps, AtomicDBUpdate update) throws DatabaseException { sMan.throwException(); @@ -135,9 +145,4 @@ public class BabuDBSnapshotVolumeInfo implements VolumeInfo { public long getCreationTime() throws DatabaseException { return creationTimestamp; } - - @Override - public long getVolumeQuota() throws DatabaseException{ - return sMan.getVolumeQuota(); - } } diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java index 759923d25..9f0ebc602 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java @@ -559,6 +559,23 @@ public class BabuDBStorageManager implements StorageManager { } } + @Override + public long getVolumeQuota() throws DatabaseException { + try { + byte[] quota = getXAttr(1, SYSTEM_UID, VOL_QUOTA); + if (quota == null) + return 0; + else { + return Long.valueOf(new String(quota)); + } + + } catch (DatabaseException exc) { + throw exc; + } catch (Exception exc) { + throw new DatabaseException(exc); + } + } + @Override public FileMetadata getMetadata(long fileId) throws DatabaseException { @@ -789,6 +806,11 @@ public class BabuDBStorageManager implements StorageManager { update); } + @Override + public void setVolumeQuota(long quota, AtomicDBUpdate update) throws DatabaseException { + setXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.VOL_QUOTA, String.valueOf(quota).getBytes(), update); + } + @Override public void setMetadata(FileMetadata metadata, byte type, AtomicDBUpdate update) throws DatabaseException { @@ -989,19 +1011,6 @@ public class BabuDBStorageManager implements StorageManager { } } - protected long getVolumeQuota() throws DatabaseException { - try{ - byte[] quotaBytes = BabuDBStorageHelper.getVolumeMetadata(database, VOL_QUOTA.getBytes()); - if (quotaBytes == null) { - return 0; - } else { - return ByteBuffer.wrap(quotaBytes).getLong(0); - } - } catch (BabuDBException exc) { - throw new DatabaseException(exc); - } - } - protected long getNumFiles() throws DatabaseException { try { byte[] sizeBytes = BabuDBStorageHelper.getVolumeMetadata(database, NUM_FILES_KEY); @@ -1058,5 +1067,4 @@ public class BabuDBStorageManager implements StorageManager { update.addUpdate(VOLUME_INDEX, key, countBytes); } - } \ No newline at end of file diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java index 555795c98..f15e11937 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java @@ -37,7 +37,7 @@ public class BabuDBVolumeInfo implements VolumeInfo { private short acPolicy; private boolean allowSnaps; - + public void init(BabuDBStorageManager sMan, String id, String name, short[] osdPolicy, short[] replicaPolicy, short acPolicy, boolean allowSnaps, AtomicDBUpdate update) throws DatabaseException { @@ -136,6 +136,11 @@ public class BabuDBVolumeInfo implements VolumeInfo { return acPolicy; } + @Override + public long getVolumeQuota() throws DatabaseException { + return sMan.getVolumeQuota(); + } + @Override public void setOsdPolicy(short[] osdPolicy, AtomicDBUpdate update) throws DatabaseException { this.osdPolicy = osdPolicy; @@ -160,6 +165,13 @@ public class BabuDBVolumeInfo implements VolumeInfo { sMan.notifyVolumeChange(this); } + @Override + public void setVolumeQuota(long quota, AtomicDBUpdate update) throws DatabaseException { + sMan.setXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.VOL_QUOTA, String.valueOf(quota).getBytes(), + update); + sMan.notifyVolumeChange(this); + } + @Override public void updateVolumeSize(long diff, AtomicDBUpdate update) throws DatabaseException { sMan.updateVolumeSize(diff, update); @@ -194,9 +206,4 @@ public class BabuDBVolumeInfo implements VolumeInfo { public long getCreationTime() throws DatabaseException { return 0; } - - @Override - public long getVolumeQuota() throws DatabaseException{ - return sMan.getVolumeQuota(); - } } diff --git a/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java b/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java index b1122584f..1b120f796 100644 --- a/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java +++ b/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java @@ -113,7 +113,8 @@ public class MRCHelper { read_only, mark_replica_complete, set_repl_update_policy, - default_rp + default_rp, + quota } public enum FileType { @@ -451,6 +452,9 @@ public class MRCHelper { return ""; return Converter.replicationPolicyToJSONString(rp); + + case quota: + return String.valueOf(sMan.getVolumeInfo().getVolumeQuota()); } } @@ -813,6 +817,14 @@ public class MRCHelper { break; + case quota: + if (file.getId() != 1) + throw new UserException(POSIXErrno.POSIX_ERROR_EINVAL, "quota can only be set on volumes"); + + sMan.getVolumeInfo().setVolumeQuota((long) Long.valueOf(value), update); + + break; + default: throw new UserException(POSIXErrno.POSIX_ERROR_EINVAL, "system attribute '" + keyString + "' is immutable"); } -- GitLab From 596cb6aabb03895e33505ebc412efa77505cf660 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Wed, 28 May 2014 15:51:44 +0200 Subject: [PATCH 005/192] lkairies-volume-quota/servers: Extended quota check for quotas equals 0, i.e. no quota is set. --- java/servers/src/org/xtreemfs/mrc/operations/OpenOperation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/mrc/operations/OpenOperation.java b/java/servers/src/org/xtreemfs/mrc/operations/OpenOperation.java index b1b1c82ec..4eda709a2 100644 --- a/java/servers/src/org/xtreemfs/mrc/operations/OpenOperation.java +++ b/java/servers/src/org/xtreemfs/mrc/operations/OpenOperation.java @@ -100,7 +100,7 @@ public class OpenOperation extends MRCOperation { // check if volume is full long volumeQuota = volume.getVolumeQuota(); - if ((write || create) && volumeQuota <= volume.getVolumeSize() ) { + if ((write || create) && volumeQuota != 0 && volumeQuota <= volume.getVolumeSize()) { throw new UserException(POSIXErrno.POSIX_ERROR_ENOSPC, "the volume's quota is reached"); } -- GitLab From 89c61d43bbbaba10ea799571639bf9e140e330e9 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Wed, 28 May 2014 15:53:01 +0200 Subject: [PATCH 006/192] lkairies-volume-quota/tests: Added quota test. --- .../common/libxtreemfs/VolumeTest.java | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java index 52e51fd8e..273483dda 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java @@ -965,4 +965,38 @@ public class VolumeTest { assertEquals(stripeLocations.get(0).getUuids()[1], stripeLocations.get(1).getUuids()[1]); assertNotSame(stripeLocations.get(0).getUuids()[2], stripeLocations.get(1).getUuids()[2]); } + + @Test + public void testVolumeQuota() throws Exception { + final String VOLUME_NAME = "testVolumeQuota"; + + client.createVolume(mrcAddress, auth, userCredentials, VOLUME_NAME, 0, userCredentials.getUsername(), + userCredentials.getGroups(0), AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, + StripingPolicyType.STRIPING_POLICY_RAID0, defaultStripingPolicy.getStripeSize(), + defaultStripingPolicy.getWidth(), new ArrayList()); + + Volume volume = client.openVolume(VOLUME_NAME, null, options); + volume.setXAttr(userCredentials, "/", "xtreemfs.quota", "8", XATTR_FLAGS.XATTR_FLAGS_CREATE); + + assertEquals("8", volume.getXAttr(userCredentials, "/", "xtreemfs.quota")); + + int flags = SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_CREAT.getNumber() + | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(); + + byte[] content = "foo foo foo".getBytes(); + + FileHandle file = volume.openFile(userCredentials, "/test1.txt", flags, 0777); + file.write(userCredentials, content, content.length, 0); + file.close(); + + try { + file = volume.openFile(userCredentials, "/test2.txt", flags, 0777); + assertTrue(false); + } catch (PosixErrorException exc) { + // check if right exception was thrown + if (!exc.getMessage().contains("POSIX_ERROR_ENOSPC")) { + assertTrue(false); + } + } + } } -- GitLab From 32cac2f9baed493fca8babaf440982712c7049dc Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Tue, 3 Jun 2014 10:00:51 +0100 Subject: [PATCH 007/192] Create README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 000000000..23150da9a --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +XtreemFS is a distributed, replicated and fault-tolerant file system for federated IT infrastructures. It is open source software licensed under the New BSD License. + +For more information, downloads and documentation visit our website at http://www.XtreemFS.org. + +Website: http://www.XtreemFS.org +Downloads (Linux, MacOSX, Windows): http://www.XtreemFS.org/download.php +User Documentation: http://www.XtreemFS.org/userguide.php +Mailing List: http://groups.google.com/group/xtreemfs +Tutorial for Replication Fail-Over Demo: https://code.google.com/p/xtreemfs/wiki/ContrailSummerSchoolHandsOn2013 + +The XtreemFS project is developed by Zuse Institute Berlin. The development of the project is funded by the European Commission since 2006 under Grant Agreements No. FP6-033576, FP7-ICT-257438, and FP7-318521, as well as the German projects MoSGrid, FFMK, and "First We Take Berlin". -- GitLab From 260f4d92341a19eaaf838f0cb5c334f43f386583 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Tue, 3 Jun 2014 10:01:20 +0100 Subject: [PATCH 008/192] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 23150da9a..0898471eb 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,14 @@ XtreemFS is a distributed, replicated and fault-tolerant file system for federat For more information, downloads and documentation visit our website at http://www.XtreemFS.org. Website: http://www.XtreemFS.org + Downloads (Linux, MacOSX, Windows): http://www.XtreemFS.org/download.php + User Documentation: http://www.XtreemFS.org/userguide.php + Mailing List: http://groups.google.com/group/xtreemfs + Tutorial for Replication Fail-Over Demo: https://code.google.com/p/xtreemfs/wiki/ContrailSummerSchoolHandsOn2013 + The XtreemFS project is developed by Zuse Institute Berlin. The development of the project is funded by the European Commission since 2006 under Grant Agreements No. FP6-033576, FP7-ICT-257438, and FP7-318521, as well as the German projects MoSGrid, FFMK, and "First We Take Berlin". -- GitLab From 2bbfde0d76ea949b79aca682eddd06a59b5d7521 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Tue, 3 Jun 2014 10:03:14 +0100 Subject: [PATCH 009/192] Update README.md --- README.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 0898471eb..a35c53ae2 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,11 @@ XtreemFS is a distributed, replicated and fault-tolerant file system for federated IT infrastructures. It is open source software licensed under the New BSD License. -For more information, downloads and documentation visit our website at http://www.XtreemFS.org. - -Website: http://www.XtreemFS.org - -Downloads (Linux, MacOSX, Windows): http://www.XtreemFS.org/download.php - -User Documentation: http://www.XtreemFS.org/userguide.php - -Mailing List: http://groups.google.com/group/xtreemfs - -Tutorial for Replication Fail-Over Demo: https://code.google.com/p/xtreemfs/wiki/ContrailSummerSchoolHandsOn2013 +**For more information, downloads and documentation visit our website at http://www.XtreemFS.org.** + * Website: http://www.XtreemFS.org + * Downloads (Linux, MacOSX, Windows): http://www.XtreemFS.org/download.php + * User Documentation: http://www.XtreemFS.org/userguide.php + * Mailing List: http://groups.google.com/group/xtreemfs + * Tutorial for Replication Fail-Over Demo: https://code.google.com/p/xtreemfs/wiki/ContrailSummerSchoolHandsOn2013 The XtreemFS project is developed by Zuse Institute Berlin. The development of the project is funded by the European Commission since 2006 under Grant Agreements No. FP6-033576, FP7-ICT-257438, and FP7-318521, as well as the German projects MoSGrid, FFMK, and "First We Take Berlin". -- GitLab From 9233c84bea2b585891aff8e4ea04fd3c45898750 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Wed, 4 Jun 2014 22:26:59 +0200 Subject: [PATCH 010/192] client: skip immutable attributes in fuse_adapter to avoid errors while copying files on OS X (Issue #312) --- cpp/src/fuse/fuse_adapter.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/cpp/src/fuse/fuse_adapter.cpp b/cpp/src/fuse/fuse_adapter.cpp index ab2551217..9827b371f 100644 --- a/cpp/src/fuse/fuse_adapter.cpp +++ b/cpp/src/fuse/fuse_adapter.cpp @@ -1440,6 +1440,23 @@ int FuseAdapter::setxattr( UserCredentials user_credentials; GenerateUserCredentials(fuse_get_context(), &user_credentials); + // Ignore system attributes to avoid warnings while copying files (e.g. on OS X) + if (string(name) == string("xtreemfs.file_id") || + string(name) == string("xtreemfs.owner") || + string(name) == string("xtreemfs.group") || + string(name) == string("xtreemfs.url") || + string(name) == string("xtreemfs.object_type") || + string(name) == string("xtreemfs.acl") || + string(name) == string("xtreemfs.locations")) { + + if (Logging::log->loggingActive(LEVEL_WARN)) { + Logging::log->getLog(LEVEL_WARN) + << "Skipped setting immutable system attribute " << name << endl; + } + + return 0; + } + try { // Fuse reuses the value parameter. Therefore we may only use "size" // (null-termination is not counted) characters of value. -- GitLab From cd8c9bb652aba4ce4ba00ffc4faf71bdcd01e704 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 5 Jun 2014 13:33:43 +0200 Subject: [PATCH 011/192] client: Added ENOSPC error conversion to fuse_adapter. --- cpp/src/fuse/fuse_adapter.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpp/src/fuse/fuse_adapter.cpp b/cpp/src/fuse/fuse_adapter.cpp index ab2551217..09d5006ec 100644 --- a/cpp/src/fuse/fuse_adapter.cpp +++ b/cpp/src/fuse/fuse_adapter.cpp @@ -449,6 +449,8 @@ int FuseAdapter::ConvertXtreemFSErrnoToFuse( return ENOTEMPTY; case POSIX_ERROR_ENODATA: return ENODATA; + case POSIX_ERROR_ENOSPC: + return ENOSPC; default: return xtreemfs_errno; -- GitLab From 8b715e139e467ae44d15991cc441a8c90bfed64d Mon Sep 17 00:00:00 2001 From: jensvfischer Date: Thu, 5 Jun 2014 16:22:51 +0200 Subject: [PATCH 012/192] tests: Add TRAVIS CI Add TRAVIS CI config (.travis.yml) and script (contrib/unit_tests.sh) for executing cpp and java unit tests. --- .travis.yml | 16 ++++++++++++++++ contrib/travis/unit_tests.sh | 37 ++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 .travis.yml create mode 100755 contrib/travis/unit_tests.sh diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..142c4bac0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: java + +jdk: oraclejdk7 + +install: + - make server + - sudo apt-get install fuse libfuse-dev libboost-all-dev libattr1-dev automake + - BUILD_CLIENT_TESTS=true make client_debug + +script: + - source contrib/travis/unit_tests.sh + +after_failure: + - if [ $JUNIT_FAILED = "true" ]; then cat /tmp/xtreemfs-junit/log/junit.log; fi + - if [ $CPP_FAILED = "true" ]; then cat cpp/build/Testing/Temporary/LastTest.log; fi + diff --git a/contrib/travis/unit_tests.sh b/contrib/travis/unit_tests.sh new file mode 100755 index 000000000..f8bc56f9d --- /dev/null +++ b/contrib/travis/unit_tests.sh @@ -0,0 +1,37 @@ +#!/bin/bash + +XTREEMFS_DIR=$(echo $PWD) + +junit_tests(){ + tests/test_scripts/junit_tests.sh + # return 0 +} + +cpp_unit_tests(){ + tests/test_scripts/cpp_unit_tests.sh + # return 0 +} + +junit_tests +jstatus="$?" +if [ $jstatus -ne 0 ]; then + export JUNIT_FAILED="true" +else + export JUNIT_FAILED="false" +fi + +cpp_unit_tests +cstatus="$?" +if [ $cstatus -ne 0 ]; then + export CPP_FAILED="true" +else + export CPP_FAILED="false" +fi + +cd $XTREEMFS_DIR + +if [[ $jstatus -eq 0 ]] && [[ $cstatus -eq 0 ]]; then + return 0 +else + return 1 +fi -- GitLab From bc3ea1718edb55aaeef6c6b31a7029f0312af25c Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Fri, 6 Jun 2014 11:30:34 +0100 Subject: [PATCH 013/192] tests: removed C++ unittests (temporarily) from Travis-CI --- .travis.yml | 3 --- contrib/travis/unit_tests.sh | 15 +-------------- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/.travis.yml b/.travis.yml index 142c4bac0..c74e418d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,13 +4,10 @@ jdk: oraclejdk7 install: - make server - - sudo apt-get install fuse libfuse-dev libboost-all-dev libattr1-dev automake - - BUILD_CLIENT_TESTS=true make client_debug script: - source contrib/travis/unit_tests.sh after_failure: - if [ $JUNIT_FAILED = "true" ]; then cat /tmp/xtreemfs-junit/log/junit.log; fi - - if [ $CPP_FAILED = "true" ]; then cat cpp/build/Testing/Temporary/LastTest.log; fi diff --git a/contrib/travis/unit_tests.sh b/contrib/travis/unit_tests.sh index f8bc56f9d..73cf05f3e 100755 --- a/contrib/travis/unit_tests.sh +++ b/contrib/travis/unit_tests.sh @@ -7,11 +7,6 @@ junit_tests(){ # return 0 } -cpp_unit_tests(){ - tests/test_scripts/cpp_unit_tests.sh - # return 0 -} - junit_tests jstatus="$?" if [ $jstatus -ne 0 ]; then @@ -20,17 +15,9 @@ else export JUNIT_FAILED="false" fi -cpp_unit_tests -cstatus="$?" -if [ $cstatus -ne 0 ]; then - export CPP_FAILED="true" -else - export CPP_FAILED="false" -fi - cd $XTREEMFS_DIR -if [[ $jstatus -eq 0 ]] && [[ $cstatus -eq 0 ]]; then +if [[ $jstatus -eq 0 ]]; then return 0 else return 1 -- GitLab From 6e38eac7ef230eca2dfe4eccf2323970b6a0161e Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 10 Jun 2014 13:47:21 +0200 Subject: [PATCH 014/192] interface: Added quota to Volume message. --- cpp/generated/xtreemfs/MRC.pb.cc | 468 ++++++++------- cpp/generated/xtreemfs/MRC.pb.h | 34 +- interface/xtreemfs/MRC.proto | 2 + .../pbrpc/generatedinterfaces/MRC.java | 536 +++++++++++------- 4 files changed, 617 insertions(+), 423 deletions(-) diff --git a/cpp/generated/xtreemfs/MRC.pb.cc b/cpp/generated/xtreemfs/MRC.pb.cc index 1a2d2e248..3980fadbe 100644 --- a/cpp/generated/xtreemfs/MRC.pb.cc +++ b/cpp/generated/xtreemfs/MRC.pb.cc @@ -267,7 +267,7 @@ void protobuf_AssignDesc_xtreemfs_2fMRC_2eproto() { ::google::protobuf::MessageFactory::generated_factory(), sizeof(XAttr)); Volume_descriptor_ = file->message_type(4); - static const int Volume_offsets_[8] = { + static const int Volume_offsets_[9] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Volume, access_control_policy_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Volume, default_striping_policy_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Volume, id_), @@ -276,6 +276,7 @@ void protobuf_AssignDesc_xtreemfs_2fMRC_2eproto() { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Volume, owner_group_id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Volume, owner_user_id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Volume, attrs_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Volume, quota_), }; Volume_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( @@ -1326,223 +1327,224 @@ void protobuf_AddDesc_xtreemfs_2fMRC_2eproto() { "treemfs.pbrpc.Stat\"C\n\020DirectoryEntries\022/" "\n\007entries\030\001 \003(\0132\036.xtreemfs.pbrpc.Directo" "ryEntry\"@\n\005XAttr\022\014\n\004name\030\001 \002(\t\022\r\n\005value\030" - "\002 \001(\t\022\032\n\022value_bytes_string\030\003 \001(\014\"\225\002\n\006Vo" + "\002 \001(\t\022\032\n\022value_bytes_string\030\003 \001(\014\"\244\002\n\006Vo" "lume\022F\n\025access_control_policy\030\001 \002(\0162\'.xt" "reemfs.pbrpc.AccessControlPolicyType\022\?\n\027" "default_striping_policy\030\002 \002(\0132\036.xtreemfs" ".pbrpc.StripingPolicy\022\n\n\002id\030\003 \002(\t\022\014\n\004mod" "e\030\004 \002(\007\022\014\n\004name\030\005 \002(\t\022\026\n\016owner_group_id\030" "\006 \002(\t\022\025\n\rowner_user_id\030\007 \002(\t\022+\n\005attrs\030\010 " - "\003(\0132\034.xtreemfs.pbrpc.KeyValuePair\"2\n\007Vol" - "umes\022\'\n\007volumes\030\001 \003(\0132\026.xtreemfs.pbrpc.V" - "olume\"\310\002\n\007StatVFS\022\r\n\005bsize\030\001 \002(\007\022\016\n\006bava" - "il\030\002 \002(\006\022\r\n\005bfree\030\r \001(\006\022\016\n\006blocks\030\003 \002(\006\022" - "\014\n\004fsid\030\004 \002(\t\022\017\n\007namemax\030\005 \002(\007\022F\n\025access" - "_control_policy\030\006 \002(\0162\'.xtreemfs.pbrpc.A" - "ccessControlPolicyType\022\?\n\027default_stripi" - "ng_policy\030\007 \002(\0132\036.xtreemfs.pbrpc.Stripin" - "gPolicy\022\014\n\004etag\030\010 \002(\006\022\014\n\004mode\030\t \002(\007\022\014\n\004n" - "ame\030\n \002(\t\022\026\n\016owner_group_id\030\013 \002(\t\022\025\n\rown" - "er_user_id\030\014 \002(\t\"i\n\017fsetattrRequest\022#\n\005s" - "tbuf\030\001 \002(\0132\024.xtreemfs.pbrpc.Stat\022\016\n\006to_s" - "et\030\002 \002(\007\022!\n\003cap\030\003 \002(\0132\024.xtreemfs.pbrpc.X" - "Cap\"G\n\016getattrRequest\022\023\n\013volume_name\030\001 \002" - "(\t\022\014\n\004path\030\002 \002(\t\022\022\n\nknown_etag\030\003 \002(\006\"6\n\017" - "getattrResponse\022#\n\005stbuf\030\001 \001(\0132\024.xtreemf" - "s.pbrpc.Stat\"B\n\017getxattrRequest\022\023\n\013volum" - "e_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\014\n\004name\030\003 \002(\t" - "\"=\n\020getxattrResponse\022\r\n\005value\030\001 \002(\t\022\032\n\022v" - "alue_bytes_string\030\002 \001(\014\"J\n\013linkRequest\022\023" - "\n\013volume_name\030\001 \002(\t\022\023\n\013target_path\030\002 \002(\t" - "\022\021\n\tlink_path\030\003 \002(\t\"I\n\020listxattrRequest\022" - "\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\022\n\nna" - "mes_only\030\003 \002(\010\":\n\021listxattrResponse\022%\n\006x" - "attrs\030\001 \003(\0132\025.xtreemfs.pbrpc.XAttr\"\?\n\014mk" - "dirRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030" - "\002 \002(\t\022\014\n\004mode\030\003 \002(\007\"\232\001\n\013openRequest\022\023\n\013v" - "olume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\r\n\005flags\030" - "\003 \002(\007\022\014\n\004mode\030\004 \002(\007\022\022\n\nattributes\030\005 \002(\007\022" - "7\n\013coordinates\030\006 \001(\0132\".xtreemfs.pbrpc.Vi" - "valdiCoordinates\"S\n\014openResponse\022.\n\005cred" - "s\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredentials" - "\022\023\n\013timestamp_s\030\002 \002(\007\"\250\001\n\016readdirRequest" - "\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\022\n\nk" - "nown_etag\030\003 \002(\006\022%\n\035limit_directory_entri" - "es_count\030\004 \002(\007\022\022\n\nnames_only\030\005 \002(\010\022$\n\034se" - "en_directory_entries_count\030\006 \002(\006\"4\n\017read" - "linkRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path" - "\030\002 \002(\t\",\n\020readlinkResponse\022\030\n\020link_targe" - "t_path\030\001 \003(\t\"E\n\022removexattrRequest\022\023\n\013vo" - "lume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\014\n\004name\030\003 " - "\002(\t\"N\n\rrenameRequest\022\023\n\013volume_name\030\001 \002(" - "\t\022\023\n\013source_path\030\002 \002(\t\022\023\n\013target_path\030\003 " - "\002(\t\"U\n\016renameResponse\022\023\n\013timestamp_s\030\001 \002" - "(\007\022.\n\005creds\030\002 \001(\0132\037.xtreemfs.pbrpc.FileC" - "redentials\"1\n\014rmdirRequest\022\023\n\013volume_nam" - "e\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\"h\n\016setattrRequest\022" - "\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022#\n\005st" - "buf\030\003 \002(\0132\024.xtreemfs.pbrpc.Stat\022\016\n\006to_se" - "t\030\004 \002(\007\"|\n\017setxattrRequest\022\023\n\013volume_nam" - "e\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\014\n\004name\030\003 \002(\t\022\r\n\005v" - "alue\030\004 \002(\t\022\032\n\022value_bytes_string\030\006 \001(\014\022\r" - "\n\005flags\030\005 \002(\007\"9\n\016statvfsRequest\022\023\n\013volum" - "e_name\030\001 \002(\t\022\022\n\nknown_etag\030\005 \002(\006\"M\n\016syml" - "inkRequest\022\023\n\013volume_name\030\001 \002(\t\022\023\n\013targe" - "t_path\030\002 \002(\t\022\021\n\tlink_path\030\003 \002(\t\"2\n\runlin" - "kRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 " - "\002(\t\"U\n\016unlinkResponse\022\023\n\013timestamp_s\030\001 \002" - "(\007\022.\n\005creds\030\002 \001(\0132\037.xtreemfs.pbrpc.FileC" - "redentials\"A\n\raccessRequest\022\023\n\013volume_na" - "me\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\r\n\005flags\030\003 \002(\007\"Z\n" - "!xtreemfs_check_file_existsRequest\022\021\n\tvo" - "lume_id\030\001 \002(\t\022\020\n\010file_ids\030\002 \003(\t\022\020\n\010osd_u" - "uid\030\003 \002(\t\":\n%xtreemfs_dump_restore_datab" - "aseRequest\022\021\n\tdump_file\030\001 \002(\t\"i\n!xtreemf" - "s_get_suitable_osdsRequest\022\017\n\007file_id\030\001 " - "\001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume_name\030\004 \001(\t\022\020" - "\n\010num_osds\030\002 \002(\007\"7\n\"xtreemfs_get_suitabl" - "e_osdsResponse\022\021\n\tosd_uuids\030\001 \003(\t\"4\n\"xtr" - "eemfs_check_file_existsResponse\022\016\n\006bitma" - "p\030\001 \002(\t\"(\n\021timestampResponse\022\023\n\013timestam" - "p_s\030\001 \002(\007\"!\n\rstringMessage\022\020\n\010a_string\030\001" - " \002(\t\"\'\n\027xtreemfs_listdirRequest\022\014\n\004path\030" - "\001 \002(\t\")\n\030xtreemfs_listdirResponse\022\r\n\005nam" - "es\030\001 \003(\t\"\177\n\033xtreemfs_replica_addRequest\022" - "\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume" - "_name\030\004 \001(\t\022,\n\013new_replica\030\002 \002(\0132\027.xtree" - "mfs.pbrpc.Replica\"R\n\034xtreemfs_replica_li" - "stRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\002 \001(\t" - "\022\023\n\013volume_name\030\003 \001(\t\"f\n\036xtreemfs_replic" - "a_removeRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path" - "\030\003 \001(\t\022\023\n\013volume_name\030\004 \001(\t\022\020\n\010osd_uuid\030" - "\002 \002(\t\"|\n\034xtreemfs_restore_fileRequest\022\021\n" - "\tfile_path\030\001 \002(\t\022\017\n\007file_id\030\002 \002(\t\022\021\n\tfil" - "e_size\030\003 \002(\006\022\020\n\010osd_uuid\030\004 \002(\t\022\023\n\013stripe" - "_size\030\005 \002(\007\",\n\025xtreemfs_rmvolRequest\022\023\n\013" - "volume_name\030\001 \002(\t\"\321\001\n xtreemfs_update_fi" - "le_sizeRequest\022\"\n\004xcap\030\001 \002(\0132\024.xtreemfs." - "pbrpc.XCap\022<\n\022osd_write_response\030\002 \002(\0132 " - ".xtreemfs.pbrpc.OSDWriteResponse\022\022\n\nclos" - "e_file\030\003 \001(\010\0227\n\013coordinates\030\004 \001(\0132\".xtre" - "emfs.pbrpc.VivaldiCoordinates\"S\n)xtreemf" - "s_set_replica_update_policyRequest\022\017\n\007fi" - "le_id\030\001 \002(\t\022\025\n\rupdate_policy\030\002 \002(\t\"G\n*xt" - "reemfs_set_replica_update_policyResponse" - "\022\031\n\021old_update_policy\030\001 \002(\t\"E\n#xtreemfs_" - "set_read_only_xattrRequest\022\017\n\007file_id\030\001 " - "\002(\t\022\r\n\005value\030\002 \002(\010\"7\n$xtreemfs_set_read_" - "only_xattrResponse\022\017\n\007was_set\030\001 \002(\010\"7\n$x" - "treemfs_get_file_credentialsRequest\022\017\n\007f" - "ile_id\030\001 \002(\t*\242\001\n\010Setattrs\022\020\n\014SETATTR_MOD" - "E\020\001\022\017\n\013SETATTR_UID\020\002\022\017\n\013SETATTR_GID\020\004\022\020\n" - "\014SETATTR_SIZE\020\010\022\021\n\rSETATTR_ATIME\020\020\022\021\n\rSE" - "TATTR_MTIME\020 \022\021\n\rSETATTR_CTIME\020@\022\027\n\022SETA" - "TTR_ATTRIBUTES\020\200\001*>\n\013XATTR_FLAGS\022\026\n\022XATT" - "R_FLAGS_CREATE\020\001\022\027\n\023XATTR_FLAGS_REPLACE\020" - "\002*j\n\014ACCESS_FLAGS\022\025\n\021ACCESS_FLAGS_F_OK\020\000" - "\022\025\n\021ACCESS_FLAGS_X_OK\020\001\022\025\n\021ACCESS_FLAGS_" - "W_OK\020\002\022\025\n\021ACCESS_FLAGS_R_OK\020\0042\234\037\n\nMRCSer" - "vice\022S\n\010fsetattr\022\037.xtreemfs.pbrpc.fsetat" - "trRequest\032\035.xtreemfs.pbrpc.emptyResponse" - "\"\007\215\265\030\002\000\000\000\022@\n\tftruncate\022\024.xtreemfs.pbrpc." - "XCap\032\024.xtreemfs.pbrpc.XCap\"\007\215\265\030\003\000\000\000\022S\n\007g" - "etattr\022\036.xtreemfs.pbrpc.getattrRequest\032\037" - ".xtreemfs.pbrpc.getattrResponse\"\007\215\265\030\004\000\000\000" - "\022V\n\010getxattr\022\037.xtreemfs.pbrpc.getxattrRe" - "quest\032 .xtreemfs.pbrpc.getxattrResponse\"" - "\007\215\265\030\005\000\000\000\022O\n\004link\022\033.xtreemfs.pbrpc.linkRe" - "quest\032!.xtreemfs.pbrpc.timestampResponse" - "\"\007\215\265\030\006\000\000\000\022Y\n\tlistxattr\022 .xtreemfs.pbrpc." - "listxattrRequest\032!.xtreemfs.pbrpc.listxa" - "ttrResponse\"\007\215\265\030\007\000\000\000\022Q\n\005mkdir\022\034.xtreemfs" - ".pbrpc.mkdirRequest\032!.xtreemfs.pbrpc.tim" - "estampResponse\"\007\215\265\030\010\000\000\000\022J\n\004open\022\033.xtreem" - "fs.pbrpc.openRequest\032\034.xtreemfs.pbrpc.op" - "enResponse\"\007\215\265\030\t\000\000\000\022T\n\007readdir\022\036.xtreemf" - "s.pbrpc.readdirRequest\032 .xtreemfs.pbrpc." - "DirectoryEntries\"\007\215\265\030\n\000\000\000\022V\n\010readlink\022\037." - "xtreemfs.pbrpc.readlinkRequest\032 .xtreemf" - "s.pbrpc.readlinkResponse\"\007\215\265\030\013\000\000\000\022]\n\013rem" - "ovexattr\022\".xtreemfs.pbrpc.removexattrReq" + "\003(\0132\034.xtreemfs.pbrpc.KeyValuePair\022\r\n\005quo" + "ta\030\t \001(\006\"2\n\007Volumes\022\'\n\007volumes\030\001 \003(\0132\026.x" + "treemfs.pbrpc.Volume\"\310\002\n\007StatVFS\022\r\n\005bsiz" + "e\030\001 \002(\007\022\016\n\006bavail\030\002 \002(\006\022\r\n\005bfree\030\r \001(\006\022\016" + "\n\006blocks\030\003 \002(\006\022\014\n\004fsid\030\004 \002(\t\022\017\n\007namemax\030" + "\005 \002(\007\022F\n\025access_control_policy\030\006 \002(\0162\'.x" + "treemfs.pbrpc.AccessControlPolicyType\022\?\n" + "\027default_striping_policy\030\007 \002(\0132\036.xtreemf" + "s.pbrpc.StripingPolicy\022\014\n\004etag\030\010 \002(\006\022\014\n\004" + "mode\030\t \002(\007\022\014\n\004name\030\n \002(\t\022\026\n\016owner_group_" + "id\030\013 \002(\t\022\025\n\rowner_user_id\030\014 \002(\t\"i\n\017fseta" + "ttrRequest\022#\n\005stbuf\030\001 \002(\0132\024.xtreemfs.pbr" + "pc.Stat\022\016\n\006to_set\030\002 \002(\007\022!\n\003cap\030\003 \002(\0132\024.x" + "treemfs.pbrpc.XCap\"G\n\016getattrRequest\022\023\n\013" + "volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\022\n\nknown" + "_etag\030\003 \002(\006\"6\n\017getattrResponse\022#\n\005stbuf\030" + "\001 \001(\0132\024.xtreemfs.pbrpc.Stat\"B\n\017getxattrR" + "equest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(" + "\t\022\014\n\004name\030\003 \002(\t\"=\n\020getxattrResponse\022\r\n\005v" + "alue\030\001 \002(\t\022\032\n\022value_bytes_string\030\002 \001(\014\"J" + "\n\013linkRequest\022\023\n\013volume_name\030\001 \002(\t\022\023\n\013ta" + "rget_path\030\002 \002(\t\022\021\n\tlink_path\030\003 \002(\t\"I\n\020li" + "stxattrRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004p" + "ath\030\002 \002(\t\022\022\n\nnames_only\030\003 \002(\010\":\n\021listxat" + "trResponse\022%\n\006xattrs\030\001 \003(\0132\025.xtreemfs.pb" + "rpc.XAttr\"\?\n\014mkdirRequest\022\023\n\013volume_name" + "\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\014\n\004mode\030\003 \002(\007\"\232\001\n\013o" + "penRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030" + "\002 \002(\t\022\r\n\005flags\030\003 \002(\007\022\014\n\004mode\030\004 \002(\007\022\022\n\nat" + "tributes\030\005 \002(\007\0227\n\013coordinates\030\006 \001(\0132\".xt" + "reemfs.pbrpc.VivaldiCoordinates\"S\n\014openR" + "esponse\022.\n\005creds\030\001 \002(\0132\037.xtreemfs.pbrpc." + "FileCredentials\022\023\n\013timestamp_s\030\002 \002(\007\"\250\001\n" + "\016readdirRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004" + "path\030\002 \002(\t\022\022\n\nknown_etag\030\003 \002(\006\022%\n\035limit_" + "directory_entries_count\030\004 \002(\007\022\022\n\nnames_o" + "nly\030\005 \002(\010\022$\n\034seen_directory_entries_coun" + "t\030\006 \002(\006\"4\n\017readlinkRequest\022\023\n\013volume_nam" + "e\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\",\n\020readlinkRespons" + "e\022\030\n\020link_target_path\030\001 \003(\t\"E\n\022removexat" + "trRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002" + " \002(\t\022\014\n\004name\030\003 \002(\t\"N\n\rrenameRequest\022\023\n\013v" + "olume_name\030\001 \002(\t\022\023\n\013source_path\030\002 \002(\t\022\023\n" + "\013target_path\030\003 \002(\t\"U\n\016renameResponse\022\023\n\013" + "timestamp_s\030\001 \002(\007\022.\n\005creds\030\002 \001(\0132\037.xtree" + "mfs.pbrpc.FileCredentials\"1\n\014rmdirReques" + "t\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\"h\n\016" + "setattrRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004p" + "ath\030\002 \002(\t\022#\n\005stbuf\030\003 \002(\0132\024.xtreemfs.pbrp" + "c.Stat\022\016\n\006to_set\030\004 \002(\007\"|\n\017setxattrReques" + "t\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\014\n\004" + "name\030\003 \002(\t\022\r\n\005value\030\004 \002(\t\022\032\n\022value_bytes" + "_string\030\006 \001(\014\022\r\n\005flags\030\005 \002(\007\"9\n\016statvfsR" + "equest\022\023\n\013volume_name\030\001 \002(\t\022\022\n\nknown_eta" + "g\030\005 \002(\006\"M\n\016symlinkRequest\022\023\n\013volume_name" + "\030\001 \002(\t\022\023\n\013target_path\030\002 \002(\t\022\021\n\tlink_path" + "\030\003 \002(\t\"2\n\runlinkRequest\022\023\n\013volume_name\030\001" + " \002(\t\022\014\n\004path\030\002 \002(\t\"U\n\016unlinkResponse\022\023\n\013" + "timestamp_s\030\001 \002(\007\022.\n\005creds\030\002 \001(\0132\037.xtree" + "mfs.pbrpc.FileCredentials\"A\n\raccessReque" + "st\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\r\n" + "\005flags\030\003 \002(\007\"Z\n!xtreemfs_check_file_exis" + "tsRequest\022\021\n\tvolume_id\030\001 \002(\t\022\020\n\010file_ids" + "\030\002 \003(\t\022\020\n\010osd_uuid\030\003 \002(\t\":\n%xtreemfs_dum" + "p_restore_databaseRequest\022\021\n\tdump_file\030\001" + " \002(\t\"i\n!xtreemfs_get_suitable_osdsReques" + "t\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volu" + "me_name\030\004 \001(\t\022\020\n\010num_osds\030\002 \002(\007\"7\n\"xtree" + "mfs_get_suitable_osdsResponse\022\021\n\tosd_uui" + "ds\030\001 \003(\t\"4\n\"xtreemfs_check_file_existsRe" + "sponse\022\016\n\006bitmap\030\001 \002(\t\"(\n\021timestampRespo" + "nse\022\023\n\013timestamp_s\030\001 \002(\007\"!\n\rstringMessag" + "e\022\020\n\010a_string\030\001 \002(\t\"\'\n\027xtreemfs_listdirR" + "equest\022\014\n\004path\030\001 \002(\t\")\n\030xtreemfs_listdir" + "Response\022\r\n\005names\030\001 \003(\t\"\177\n\033xtreemfs_repl" + "ica_addRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030" + "\003 \001(\t\022\023\n\013volume_name\030\004 \001(\t\022,\n\013new_replic" + "a\030\002 \002(\0132\027.xtreemfs.pbrpc.Replica\"R\n\034xtre" + "emfs_replica_listRequest\022\017\n\007file_id\030\001 \001(" + "\t\022\014\n\004path\030\002 \001(\t\022\023\n\013volume_name\030\003 \001(\t\"f\n\036" + "xtreemfs_replica_removeRequest\022\017\n\007file_i" + "d\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume_name\030\004 \001" + "(\t\022\020\n\010osd_uuid\030\002 \002(\t\"|\n\034xtreemfs_restore" + "_fileRequest\022\021\n\tfile_path\030\001 \002(\t\022\017\n\007file_" + "id\030\002 \002(\t\022\021\n\tfile_size\030\003 \002(\006\022\020\n\010osd_uuid\030" + "\004 \002(\t\022\023\n\013stripe_size\030\005 \002(\007\",\n\025xtreemfs_r" + "mvolRequest\022\023\n\013volume_name\030\001 \002(\t\"\321\001\n xtr" + "eemfs_update_file_sizeRequest\022\"\n\004xcap\030\001 " + "\002(\0132\024.xtreemfs.pbrpc.XCap\022<\n\022osd_write_r" + "esponse\030\002 \002(\0132 .xtreemfs.pbrpc.OSDWriteR" + "esponse\022\022\n\nclose_file\030\003 \001(\010\0227\n\013coordinat" + "es\030\004 \001(\0132\".xtreemfs.pbrpc.VivaldiCoordin" + "ates\"S\n)xtreemfs_set_replica_update_poli" + "cyRequest\022\017\n\007file_id\030\001 \002(\t\022\025\n\rupdate_pol" + "icy\030\002 \002(\t\"G\n*xtreemfs_set_replica_update" + "_policyResponse\022\031\n\021old_update_policy\030\001 \002" + "(\t\"E\n#xtreemfs_set_read_only_xattrReques" + "t\022\017\n\007file_id\030\001 \002(\t\022\r\n\005value\030\002 \002(\010\"7\n$xtr" + "eemfs_set_read_only_xattrResponse\022\017\n\007was" + "_set\030\001 \002(\010\"7\n$xtreemfs_get_file_credenti" + "alsRequest\022\017\n\007file_id\030\001 \002(\t*\242\001\n\010Setattrs" + "\022\020\n\014SETATTR_MODE\020\001\022\017\n\013SETATTR_UID\020\002\022\017\n\013S" + "ETATTR_GID\020\004\022\020\n\014SETATTR_SIZE\020\010\022\021\n\rSETATT" + "R_ATIME\020\020\022\021\n\rSETATTR_MTIME\020 \022\021\n\rSETATTR_" + "CTIME\020@\022\027\n\022SETATTR_ATTRIBUTES\020\200\001*>\n\013XATT" + "R_FLAGS\022\026\n\022XATTR_FLAGS_CREATE\020\001\022\027\n\023XATTR" + "_FLAGS_REPLACE\020\002*j\n\014ACCESS_FLAGS\022\025\n\021ACCE" + "SS_FLAGS_F_OK\020\000\022\025\n\021ACCESS_FLAGS_X_OK\020\001\022\025" + "\n\021ACCESS_FLAGS_W_OK\020\002\022\025\n\021ACCESS_FLAGS_R_" + "OK\020\0042\234\037\n\nMRCService\022S\n\010fsetattr\022\037.xtreem" + "fs.pbrpc.fsetattrRequest\032\035.xtreemfs.pbrp" + "c.emptyResponse\"\007\215\265\030\002\000\000\000\022@\n\tftruncate\022\024." + "xtreemfs.pbrpc.XCap\032\024.xtreemfs.pbrpc.XCa" + "p\"\007\215\265\030\003\000\000\000\022S\n\007getattr\022\036.xtreemfs.pbrpc.g" + "etattrRequest\032\037.xtreemfs.pbrpc.getattrRe" + "sponse\"\007\215\265\030\004\000\000\000\022V\n\010getxattr\022\037.xtreemfs.p" + "brpc.getxattrRequest\032 .xtreemfs.pbrpc.ge" + "txattrResponse\"\007\215\265\030\005\000\000\000\022O\n\004link\022\033.xtreem" + "fs.pbrpc.linkRequest\032!.xtreemfs.pbrpc.ti" + "mestampResponse\"\007\215\265\030\006\000\000\000\022Y\n\tlistxattr\022 ." + "xtreemfs.pbrpc.listxattrRequest\032!.xtreem" + "fs.pbrpc.listxattrResponse\"\007\215\265\030\007\000\000\000\022Q\n\005m" + "kdir\022\034.xtreemfs.pbrpc.mkdirRequest\032!.xtr" + "eemfs.pbrpc.timestampResponse\"\007\215\265\030\010\000\000\000\022J" + "\n\004open\022\033.xtreemfs.pbrpc.openRequest\032\034.xt" + "reemfs.pbrpc.openResponse\"\007\215\265\030\t\000\000\000\022T\n\007re" + "addir\022\036.xtreemfs.pbrpc.readdirRequest\032 ." + "xtreemfs.pbrpc.DirectoryEntries\"\007\215\265\030\n\000\000\000" + "\022V\n\010readlink\022\037.xtreemfs.pbrpc.readlinkRe" + "quest\032 .xtreemfs.pbrpc.readlinkResponse\"" + "\007\215\265\030\013\000\000\000\022]\n\013removexattr\022\".xtreemfs.pbrpc" + ".removexattrRequest\032!.xtreemfs.pbrpc.tim" + "estampResponse\"\007\215\265\030\014\000\000\000\022P\n\006rename\022\035.xtre" + "emfs.pbrpc.renameRequest\032\036.xtreemfs.pbrp" + "c.renameResponse\"\007\215\265\030\r\000\000\000\022Q\n\005rmdir\022\034.xtr" + "eemfs.pbrpc.rmdirRequest\032!.xtreemfs.pbrp" + "c.timestampResponse\"\007\215\265\030\016\000\000\000\022U\n\007setattr\022" + "\036.xtreemfs.pbrpc.setattrRequest\032!.xtreem" + "fs.pbrpc.timestampResponse\"\007\215\265\030\017\000\000\000\022W\n\010s" + "etxattr\022\037.xtreemfs.pbrpc.setxattrRequest" + "\032!.xtreemfs.pbrpc.timestampResponse\"\007\215\265\030" + "\020\000\000\000\022K\n\007statvfs\022\036.xtreemfs.pbrpc.statvfs" + "Request\032\027.xtreemfs.pbrpc.StatVFS\"\007\215\265\030\021\000\000" + "\000\022U\n\007symlink\022\036.xtreemfs.pbrpc.symlinkReq" "uest\032!.xtreemfs.pbrpc.timestampResponse\"" - "\007\215\265\030\014\000\000\000\022P\n\006rename\022\035.xtreemfs.pbrpc.rena" - "meRequest\032\036.xtreemfs.pbrpc.renameRespons" - "e\"\007\215\265\030\r\000\000\000\022Q\n\005rmdir\022\034.xtreemfs.pbrpc.rmd" - "irRequest\032!.xtreemfs.pbrpc.timestampResp" - "onse\"\007\215\265\030\016\000\000\000\022U\n\007setattr\022\036.xtreemfs.pbrp" - "c.setattrRequest\032!.xtreemfs.pbrpc.timest" - "ampResponse\"\007\215\265\030\017\000\000\000\022W\n\010setxattr\022\037.xtree" - "mfs.pbrpc.setxattrRequest\032!.xtreemfs.pbr" - "pc.timestampResponse\"\007\215\265\030\020\000\000\000\022K\n\007statvfs" - "\022\036.xtreemfs.pbrpc.statvfsRequest\032\027.xtree" - "mfs.pbrpc.StatVFS\"\007\215\265\030\021\000\000\000\022U\n\007symlink\022\036." - "xtreemfs.pbrpc.symlinkRequest\032!.xtreemfs" - ".pbrpc.timestampResponse\"\007\215\265\030\022\000\000\000\022P\n\006unl" - "ink\022\035.xtreemfs.pbrpc.unlinkRequest\032\036.xtr" - "eemfs.pbrpc.unlinkResponse\"\007\215\265\030\023\000\000\000\022O\n\006a" - "ccess\022\035.xtreemfs.pbrpc.accessRequest\032\035.x" - "treemfs.pbrpc.emptyResponse\"\007\215\265\030\024\000\000\000\022[\n\023" - "xtreemfs_checkpoint\022\034.xtreemfs.pbrpc.emp" - "tyRequest\032\035.xtreemfs.pbrpc.emptyResponse" - "\"\007\215\265\030\036\000\000\000\022\214\001\n\032xtreemfs_check_file_exists" - "\0221.xtreemfs.pbrpc.xtreemfs_check_file_ex" - "istsRequest\0322.xtreemfs.pbrpc.xtreemfs_ch" - "eck_file_existsResponse\"\007\215\265\030\037\000\000\000\022w\n\026xtre" - "emfs_dump_database\0225.xtreemfs.pbrpc.xtre" - "emfs_dump_restore_databaseRequest\032\035.xtre" - "emfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022\214\001\n\032xt" - "reemfs_get_suitable_osds\0221.xtreemfs.pbrp" - "c.xtreemfs_get_suitable_osdsRequest\0322.xt" - "reemfs.pbrpc.xtreemfs_get_suitable_osdsR" - "esponse\"\007\215\265\030!\000\000\000\022`\n\027xtreemfs_internal_de" - "bug\022\035.xtreemfs.pbrpc.stringMessage\032\035.xtr" - "eemfs.pbrpc.stringMessage\"\007\215\265\030\"\000\000\000\022n\n\020xt" - "reemfs_listdir\022\'.xtreemfs.pbrpc.xtreemfs" - "_listdirRequest\032(.xtreemfs.pbrpc.xtreemf" - "s_listdirResponse\"\007\215\265\030#\000\000\000\022P\n\016xtreemfs_l" - "svol\022\034.xtreemfs.pbrpc.emptyRequest\032\027.xtr" - "eemfs.pbrpc.Volumes\"\007\215\265\030$\000\000\000\022P\n\016xtreemfs" - "_mkvol\022\026.xtreemfs.pbrpc.Volume\032\035.xtreemf" - "s.pbrpc.emptyResponse\"\007\215\265\030/\000\000\000\022P\n\031xtreem" - "fs_renew_capability\022\024.xtreemfs.pbrpc.XCa" - "p\032\024.xtreemfs.pbrpc.XCap\"\007\215\265\030%\000\000\000\022f\n\036xtre" - "emfs_replication_to_master\022\034.xtreemfs.pb" - "rpc.emptyRequest\032\035.xtreemfs.pbrpc.emptyR" - "esponse\"\007\215\265\030&\000\000\000\022k\n\024xtreemfs_replica_add" - "\022+.xtreemfs.pbrpc.xtreemfs_replica_addRe" - "quest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265" - "\030\'\000\000\000\022h\n\025xtreemfs_replica_list\022,.xtreemf" - "s.pbrpc.xtreemfs_replica_listRequest\032\030.x" - "treemfs.pbrpc.Replicas\"\007\215\265\030(\000\000\000\022s\n\027xtree" - "mfs_replica_remove\022..xtreemfs.pbrpc.xtre" - "emfs_replica_removeRequest\032\037.xtreemfs.pb" - "rpc.FileCredentials\"\007\215\265\030)\000\000\000\022z\n\031xtreemfs" - "_restore_database\0225.xtreemfs.pbrpc.xtree" - "mfs_dump_restore_databaseRequest\032\035.xtree" - "mfs.pbrpc.emptyResponse\"\007\215\265\030*\000\000\000\022m\n\025xtre" - "emfs_restore_file\022,.xtreemfs.pbrpc.xtree" - "mfs_restore_fileRequest\032\035.xtreemfs.pbrpc" - ".emptyResponse\"\007\215\265\030+\000\000\000\022_\n\016xtreemfs_rmvo" - "l\022%.xtreemfs.pbrpc.xtreemfs_rmvolRequest" - "\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030,\000\000\000" - "\022Y\n\021xtreemfs_shutdown\022\034.xtreemfs.pbrpc.e" - "mptyRequest\032\035.xtreemfs.pbrpc.emptyRespon" - "se\"\007\215\265\030-\000\000\000\022y\n\031xtreemfs_update_file_size" - "\0220.xtreemfs.pbrpc.xtreemfs_update_file_s" - "izeRequest\032!.xtreemfs.pbrpc.timestampRes" - "ponse\"\007\215\265\030.\000\000\000\022\244\001\n\"xtreemfs_set_replica_" - "update_policy\0229.xtreemfs.pbrpc.xtreemfs_" - "set_replica_update_policyRequest\032:.xtree" - "mfs.pbrpc.xtreemfs_set_replica_update_po" - "licyResponse\"\007\215\265\0300\000\000\000\022\222\001\n\034xtreemfs_set_r" - "ead_only_xattr\0223.xtreemfs.pbrpc.xtreemfs" - "_set_read_only_xattrRequest\0324.xtreemfs.p" - "brpc.xtreemfs_set_read_only_xattrRespons" - "e\"\007\215\265\0301\000\000\000\022\177\n\035xtreemfs_get_file_credenti" - "als\0224.xtreemfs.pbrpc.xtreemfs_get_file_c" - "redentialsRequest\032\037.xtreemfs.pbrpc.FileC" - "redentials\"\007\215\265\0302\000\000\000\032\007\225\265\030!N\000\000B(\n&org.xtre" - "emfs.pbrpc.generatedinterfaces", 9190); + "\007\215\265\030\022\000\000\000\022P\n\006unlink\022\035.xtreemfs.pbrpc.unli" + "nkRequest\032\036.xtreemfs.pbrpc.unlinkRespons" + "e\"\007\215\265\030\023\000\000\000\022O\n\006access\022\035.xtreemfs.pbrpc.ac" + "cessRequest\032\035.xtreemfs.pbrpc.emptyRespon" + "se\"\007\215\265\030\024\000\000\000\022[\n\023xtreemfs_checkpoint\022\034.xtr" + "eemfs.pbrpc.emptyRequest\032\035.xtreemfs.pbrp" + "c.emptyResponse\"\007\215\265\030\036\000\000\000\022\214\001\n\032xtreemfs_ch" + "eck_file_exists\0221.xtreemfs.pbrpc.xtreemf" + "s_check_file_existsRequest\0322.xtreemfs.pb" + "rpc.xtreemfs_check_file_existsResponse\"\007" + "\215\265\030\037\000\000\000\022w\n\026xtreemfs_dump_database\0225.xtre" + "emfs.pbrpc.xtreemfs_dump_restore_databas" + "eRequest\032\035.xtreemfs.pbrpc.emptyResponse\"" + "\007\215\265\030 \000\000\000\022\214\001\n\032xtreemfs_get_suitable_osds\022" + "1.xtreemfs.pbrpc.xtreemfs_get_suitable_o" + "sdsRequest\0322.xtreemfs.pbrpc.xtreemfs_get" + "_suitable_osdsResponse\"\007\215\265\030!\000\000\000\022`\n\027xtree" + "mfs_internal_debug\022\035.xtreemfs.pbrpc.stri" + "ngMessage\032\035.xtreemfs.pbrpc.stringMessage" + "\"\007\215\265\030\"\000\000\000\022n\n\020xtreemfs_listdir\022\'.xtreemfs" + ".pbrpc.xtreemfs_listdirRequest\032(.xtreemf" + "s.pbrpc.xtreemfs_listdirResponse\"\007\215\265\030#\000\000" + "\000\022P\n\016xtreemfs_lsvol\022\034.xtreemfs.pbrpc.emp" + "tyRequest\032\027.xtreemfs.pbrpc.Volumes\"\007\215\265\030$" + "\000\000\000\022P\n\016xtreemfs_mkvol\022\026.xtreemfs.pbrpc.V" + "olume\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265" + "\030/\000\000\000\022P\n\031xtreemfs_renew_capability\022\024.xtr" + "eemfs.pbrpc.XCap\032\024.xtreemfs.pbrpc.XCap\"\007" + "\215\265\030%\000\000\000\022f\n\036xtreemfs_replication_to_maste" + "r\022\034.xtreemfs.pbrpc.emptyRequest\032\035.xtreem" + "fs.pbrpc.emptyResponse\"\007\215\265\030&\000\000\000\022k\n\024xtree" + "mfs_replica_add\022+.xtreemfs.pbrpc.xtreemf" + "s_replica_addRequest\032\035.xtreemfs.pbrpc.em" + "ptyResponse\"\007\215\265\030\'\000\000\000\022h\n\025xtreemfs_replica" + "_list\022,.xtreemfs.pbrpc.xtreemfs_replica_" + "listRequest\032\030.xtreemfs.pbrpc.Replicas\"\007\215" + "\265\030(\000\000\000\022s\n\027xtreemfs_replica_remove\022..xtre" + "emfs.pbrpc.xtreemfs_replica_removeReques" + "t\032\037.xtreemfs.pbrpc.FileCredentials\"\007\215\265\030)" + "\000\000\000\022z\n\031xtreemfs_restore_database\0225.xtree" + "mfs.pbrpc.xtreemfs_dump_restore_database" + "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" + "\215\265\030*\000\000\000\022m\n\025xtreemfs_restore_file\022,.xtree" + "mfs.pbrpc.xtreemfs_restore_fileRequest\032\035" + ".xtreemfs.pbrpc.emptyResponse\"\007\215\265\030+\000\000\000\022_" + "\n\016xtreemfs_rmvol\022%.xtreemfs.pbrpc.xtreem" + "fs_rmvolRequest\032\035.xtreemfs.pbrpc.emptyRe" + "sponse\"\007\215\265\030,\000\000\000\022Y\n\021xtreemfs_shutdown\022\034.x" + "treemfs.pbrpc.emptyRequest\032\035.xtreemfs.pb" + "rpc.emptyResponse\"\007\215\265\030-\000\000\000\022y\n\031xtreemfs_u" + "pdate_file_size\0220.xtreemfs.pbrpc.xtreemf" + "s_update_file_sizeRequest\032!.xtreemfs.pbr" + "pc.timestampResponse\"\007\215\265\030.\000\000\000\022\244\001\n\"xtreem" + "fs_set_replica_update_policy\0229.xtreemfs." + "pbrpc.xtreemfs_set_replica_update_policy" + "Request\032:.xtreemfs.pbrpc.xtreemfs_set_re" + "plica_update_policyResponse\"\007\215\265\0300\000\000\000\022\222\001\n" + "\034xtreemfs_set_read_only_xattr\0223.xtreemfs" + ".pbrpc.xtreemfs_set_read_only_xattrReque" + "st\0324.xtreemfs.pbrpc.xtreemfs_set_read_on" + "ly_xattrResponse\"\007\215\265\0301\000\000\000\022\177\n\035xtreemfs_ge" + "t_file_credentials\0224.xtreemfs.pbrpc.xtre" + "emfs_get_file_credentialsRequest\032\037.xtree" + "mfs.pbrpc.FileCredentials\"\007\215\265\0302\000\000\000\032\007\225\265\030!" + "N\000\000B(\n&org.xtreemfs.pbrpc.generatedinter" + "faces", 9205); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "xtreemfs/MRC.proto", &protobuf_RegisterTypes); Stat::default_instance_ = new Stat(); @@ -3276,6 +3278,7 @@ const int Volume::kNameFieldNumber; const int Volume::kOwnerGroupIdFieldNumber; const int Volume::kOwnerUserIdFieldNumber; const int Volume::kAttrsFieldNumber; +const int Volume::kQuotaFieldNumber; #endif // !_MSC_VER Volume::Volume() @@ -3302,6 +3305,7 @@ void Volume::SharedCtor() { name_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); owner_group_id_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); owner_user_id_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); + quota_ = GOOGLE_ULONGLONG(0); ::memset(_has_bits_, 0, sizeof(_has_bits_)); } @@ -3376,6 +3380,9 @@ void Volume::Clear() { } } } + if (_has_bits_[8 / 32] & (0xffu << (8 % 32))) { + quota_ = GOOGLE_ULONGLONG(0); + } attrs_.Clear(); ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); @@ -3516,6 +3523,22 @@ bool Volume::MergePartialFromCodedStream( goto handle_uninterpreted; } if (input->ExpectTag(66)) goto parse_attrs; + if (input->ExpectTag(73)) goto parse_quota; + break; + } + + // optional fixed64 quota = 9; + case 9: { + if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == + ::google::protobuf::internal::WireFormatLite::WIRETYPE_FIXED64) { + parse_quota: + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + ::google::protobuf::uint64, ::google::protobuf::internal::WireFormatLite::TYPE_FIXED64>( + input, "a_))); + set_has_quota(); + } else { + goto handle_uninterpreted; + } if (input->ExpectAtEnd()) return true; break; } @@ -3597,6 +3620,11 @@ void Volume::SerializeWithCachedSizes( 8, this->attrs(i), output); } + // optional fixed64 quota = 9; + if (has_quota()) { + ::google::protobuf::internal::WireFormatLite::WriteFixed64(9, this->quota(), output); + } + if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); @@ -3670,6 +3698,11 @@ void Volume::SerializeWithCachedSizes( 8, this->attrs(i), target); } + // optional fixed64 quota = 9; + if (has_quota()) { + target = ::google::protobuf::internal::WireFormatLite::WriteFixed64ToArray(9, this->quota(), target); + } + if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); @@ -3727,6 +3760,13 @@ int Volume::ByteSize() const { this->owner_user_id()); } + } + if (_has_bits_[8 / 32] & (0xffu << (8 % 32))) { + // optional fixed64 quota = 9; + if (has_quota()) { + total_size += 1 + 8; + } + } // repeated .xtreemfs.pbrpc.KeyValuePair attrs = 8; total_size += 1 * this->attrs_size(); @@ -3785,6 +3825,11 @@ void Volume::MergeFrom(const Volume& from) { set_owner_user_id(from.owner_user_id()); } } + if (from._has_bits_[8 / 32] & (0xffu << (8 % 32))) { + if (from.has_quota()) { + set_quota(from.quota()); + } + } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } @@ -3822,6 +3867,7 @@ void Volume::Swap(Volume* other) { std::swap(owner_group_id_, other->owner_group_id_); std::swap(owner_user_id_, other->owner_user_id_); attrs_.Swap(&other->attrs_); + std::swap(quota_, other->quota_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); diff --git a/cpp/generated/xtreemfs/MRC.pb.h b/cpp/generated/xtreemfs/MRC.pb.h index 8b9009413..e8cbcb97f 100644 --- a/cpp/generated/xtreemfs/MRC.pb.h +++ b/cpp/generated/xtreemfs/MRC.pb.h @@ -818,6 +818,13 @@ class Volume : public ::google::protobuf::Message { inline ::google::protobuf::RepeatedPtrField< ::xtreemfs::pbrpc::KeyValuePair >* mutable_attrs(); + // optional fixed64 quota = 9; + inline bool has_quota() const; + inline void clear_quota(); + static const int kQuotaFieldNumber = 9; + inline ::google::protobuf::uint64 quota() const; + inline void set_quota(::google::protobuf::uint64 value); + // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.Volume) private: inline void set_has_access_control_policy(); @@ -834,6 +841,8 @@ class Volume : public ::google::protobuf::Message { inline void clear_has_owner_group_id(); inline void set_has_owner_user_id(); inline void clear_has_owner_user_id(); + inline void set_has_quota(); + inline void clear_has_quota(); ::google::protobuf::UnknownFieldSet _unknown_fields_; @@ -845,9 +854,10 @@ class Volume : public ::google::protobuf::Message { ::std::string* owner_group_id_; ::std::string* owner_user_id_; ::google::protobuf::RepeatedPtrField< ::xtreemfs::pbrpc::KeyValuePair > attrs_; + ::google::protobuf::uint64 quota_; mutable int _cached_size_; - ::google::protobuf::uint32 _has_bits_[(8 + 31) / 32]; + ::google::protobuf::uint32 _has_bits_[(9 + 31) / 32]; friend void protobuf_AddDesc_xtreemfs_2fMRC_2eproto(); friend void protobuf_AssignDesc_xtreemfs_2fMRC_2eproto(); @@ -7103,6 +7113,28 @@ Volume::mutable_attrs() { return &attrs_; } +// optional fixed64 quota = 9; +inline bool Volume::has_quota() const { + return (_has_bits_[0] & 0x00000100u) != 0; +} +inline void Volume::set_has_quota() { + _has_bits_[0] |= 0x00000100u; +} +inline void Volume::clear_has_quota() { + _has_bits_[0] &= ~0x00000100u; +} +inline void Volume::clear_quota() { + quota_ = GOOGLE_ULONGLONG(0); + clear_has_quota(); +} +inline ::google::protobuf::uint64 Volume::quota() const { + return quota_; +} +inline void Volume::set_quota(::google::protobuf::uint64 value) { + set_has_quota(); + quota_ = value; +} + // ------------------------------------------------------------------- // Volumes diff --git a/interface/xtreemfs/MRC.proto b/interface/xtreemfs/MRC.proto index 8604ccd1e..08f996253 100644 --- a/interface/xtreemfs/MRC.proto +++ b/interface/xtreemfs/MRC.proto @@ -121,6 +121,8 @@ message Volume { required string owner_user_id = 7; // optional configuration attributes for the volume repeated KeyValuePair attrs = 8; + // optional volume quota + optional fixed64 quota = 9; } // a list of volumes; relevant for the 'xtfs_lsvol' call diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRC.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRC.java index ef68b1678..bc0ca1609 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRC.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRC.java @@ -5173,6 +5173,24 @@ public final class MRC { */ org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePairOrBuilder getAttrsOrBuilder( int index); + + // optional fixed64 quota = 9; + /** + * optional fixed64 quota = 9; + * + *
+     * optional volume quota
+     * 
+ */ + boolean hasQuota(); + /** + * optional fixed64 quota = 9; + * + *
+     * optional volume quota
+     * 
+ */ + long getQuota(); } /** * Protobuf type {@code xtreemfs.pbrpc.Volume} @@ -5286,6 +5304,11 @@ public final class MRC { attrs_.add(input.readMessage(org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair.PARSER, extensionRegistry)); break; } + case 73: { + bitField0_ |= 0x00000080; + quota_ = input.readFixed64(); + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -5687,6 +5710,30 @@ public final class MRC { return attrs_.get(index); } + // optional fixed64 quota = 9; + public static final int QUOTA_FIELD_NUMBER = 9; + private long quota_; + /** + * optional fixed64 quota = 9; + * + *
+     * optional volume quota
+     * 
+ */ + public boolean hasQuota() { + return ((bitField0_ & 0x00000080) == 0x00000080); + } + /** + * optional fixed64 quota = 9; + * + *
+     * optional volume quota
+     * 
+ */ + public long getQuota() { + return quota_; + } + private void initFields() { accessControlPolicy_ = org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL; defaultStripingPolicy_ = org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy.getDefaultInstance(); @@ -5696,6 +5743,7 @@ public final class MRC { ownerGroupId_ = ""; ownerUserId_ = ""; attrs_ = java.util.Collections.emptyList(); + quota_ = 0L; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -5771,6 +5819,9 @@ public final class MRC { for (int i = 0; i < attrs_.size(); i++) { output.writeMessage(8, attrs_.get(i)); } + if (((bitField0_ & 0x00000080) == 0x00000080)) { + output.writeFixed64(9, quota_); + } getUnknownFields().writeTo(output); } @@ -5812,6 +5863,10 @@ public final class MRC { size += com.google.protobuf.CodedOutputStream .computeMessageSize(8, attrs_.get(i)); } + if (((bitField0_ & 0x00000080) == 0x00000080)) { + size += com.google.protobuf.CodedOutputStream + .computeFixed64Size(9, quota_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -5958,6 +6013,8 @@ public final class MRC { } else { attrsBuilder_.clear(); } + quota_ = 0L; + bitField0_ = (bitField0_ & ~0x00000100); return this; } @@ -6027,6 +6084,10 @@ public final class MRC { } else { result.attrs_ = attrsBuilder_.build(); } + if (((from_bitField0_ & 0x00000100) == 0x00000100)) { + to_bitField0_ |= 0x00000080; + } + result.quota_ = quota_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -6098,6 +6159,9 @@ public final class MRC { } } } + if (other.hasQuota()) { + setQuota(other.getQuota()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -7121,6 +7185,55 @@ public final class MRC { return attrsBuilder_; } + // optional fixed64 quota = 9; + private long quota_ ; + /** + * optional fixed64 quota = 9; + * + *
+       * optional volume quota
+       * 
+ */ + public boolean hasQuota() { + return ((bitField0_ & 0x00000100) == 0x00000100); + } + /** + * optional fixed64 quota = 9; + * + *
+       * optional volume quota
+       * 
+ */ + public long getQuota() { + return quota_; + } + /** + * optional fixed64 quota = 9; + * + *
+       * optional volume quota
+       * 
+ */ + public Builder setQuota(long value) { + bitField0_ |= 0x00000100; + quota_ = value; + onChanged(); + return this; + } + /** + * optional fixed64 quota = 9; + * + *
+       * optional volume quota
+       * 
+ */ + public Builder clearQuota() { + bitField0_ = (bitField0_ & ~0x00000100); + quota_ = 0L; + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.Volume) } @@ -46570,223 +46683,224 @@ public final class MRC { "treemfs.pbrpc.Stat\"C\n\020DirectoryEntries\022/" + "\n\007entries\030\001 \003(\0132\036.xtreemfs.pbrpc.Directo" + "ryEntry\"@\n\005XAttr\022\014\n\004name\030\001 \002(\t\022\r\n\005value\030" + - "\002 \001(\t\022\032\n\022value_bytes_string\030\003 \001(\014\"\225\002\n\006Vo" + + "\002 \001(\t\022\032\n\022value_bytes_string\030\003 \001(\014\"\244\002\n\006Vo" + "lume\022F\n\025access_control_policy\030\001 \002(\0162\'.xt" + "reemfs.pbrpc.AccessControlPolicyType\022?\n\027" + "default_striping_policy\030\002 \002(\0132\036.xtreemfs" + ".pbrpc.StripingPolicy\022\n\n\002id\030\003 \002(\t\022\014\n\004mod" + "e\030\004 \002(\007\022\014\n\004name\030\005 \002(\t\022\026\n\016owner_group_id\030" + "\006 \002(\t\022\025\n\rowner_user_id\030\007 \002(\t\022+\n\005attrs\030\010 ", - "\003(\0132\034.xtreemfs.pbrpc.KeyValuePair\"2\n\007Vol" + - "umes\022\'\n\007volumes\030\001 \003(\0132\026.xtreemfs.pbrpc.V" + - "olume\"\310\002\n\007StatVFS\022\r\n\005bsize\030\001 \002(\007\022\016\n\006bava" + - "il\030\002 \002(\006\022\r\n\005bfree\030\r \001(\006\022\016\n\006blocks\030\003 \002(\006\022" + - "\014\n\004fsid\030\004 \002(\t\022\017\n\007namemax\030\005 \002(\007\022F\n\025access" + - "_control_policy\030\006 \002(\0162\'.xtreemfs.pbrpc.A" + - "ccessControlPolicyType\022?\n\027default_stripi" + - "ng_policy\030\007 \002(\0132\036.xtreemfs.pbrpc.Stripin" + - "gPolicy\022\014\n\004etag\030\010 \002(\006\022\014\n\004mode\030\t \002(\007\022\014\n\004n" + - "ame\030\n \002(\t\022\026\n\016owner_group_id\030\013 \002(\t\022\025\n\rown", - "er_user_id\030\014 \002(\t\"i\n\017fsetattrRequest\022#\n\005s" + - "tbuf\030\001 \002(\0132\024.xtreemfs.pbrpc.Stat\022\016\n\006to_s" + - "et\030\002 \002(\007\022!\n\003cap\030\003 \002(\0132\024.xtreemfs.pbrpc.X" + - "Cap\"G\n\016getattrRequest\022\023\n\013volume_name\030\001 \002" + - "(\t\022\014\n\004path\030\002 \002(\t\022\022\n\nknown_etag\030\003 \002(\006\"6\n\017" + - "getattrResponse\022#\n\005stbuf\030\001 \001(\0132\024.xtreemf" + - "s.pbrpc.Stat\"B\n\017getxattrRequest\022\023\n\013volum" + - "e_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\014\n\004name\030\003 \002(\t" + - "\"=\n\020getxattrResponse\022\r\n\005value\030\001 \002(\t\022\032\n\022v" + - "alue_bytes_string\030\002 \001(\014\"J\n\013linkRequest\022\023", - "\n\013volume_name\030\001 \002(\t\022\023\n\013target_path\030\002 \002(\t" + - "\022\021\n\tlink_path\030\003 \002(\t\"I\n\020listxattrRequest\022" + - "\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\022\n\nna" + - "mes_only\030\003 \002(\010\":\n\021listxattrResponse\022%\n\006x" + - "attrs\030\001 \003(\0132\025.xtreemfs.pbrpc.XAttr\"?\n\014mk" + - "dirRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030" + - "\002 \002(\t\022\014\n\004mode\030\003 \002(\007\"\232\001\n\013openRequest\022\023\n\013v" + - "olume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\r\n\005flags\030" + - "\003 \002(\007\022\014\n\004mode\030\004 \002(\007\022\022\n\nattributes\030\005 \002(\007\022" + - "7\n\013coordinates\030\006 \001(\0132\".xtreemfs.pbrpc.Vi", - "valdiCoordinates\"S\n\014openResponse\022.\n\005cred" + - "s\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredentials" + - "\022\023\n\013timestamp_s\030\002 \002(\007\"\250\001\n\016readdirRequest" + - "\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\022\n\nk" + - "nown_etag\030\003 \002(\006\022%\n\035limit_directory_entri" + - "es_count\030\004 \002(\007\022\022\n\nnames_only\030\005 \002(\010\022$\n\034se" + - "en_directory_entries_count\030\006 \002(\006\"4\n\017read" + - "linkRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path" + - "\030\002 \002(\t\",\n\020readlinkResponse\022\030\n\020link_targe" + - "t_path\030\001 \003(\t\"E\n\022removexattrRequest\022\023\n\013vo", - "lume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\014\n\004name\030\003 " + - "\002(\t\"N\n\rrenameRequest\022\023\n\013volume_name\030\001 \002(" + - "\t\022\023\n\013source_path\030\002 \002(\t\022\023\n\013target_path\030\003 " + - "\002(\t\"U\n\016renameResponse\022\023\n\013timestamp_s\030\001 \002" + - "(\007\022.\n\005creds\030\002 \001(\0132\037.xtreemfs.pbrpc.FileC" + - "redentials\"1\n\014rmdirRequest\022\023\n\013volume_nam" + - "e\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\"h\n\016setattrRequest\022" + - "\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022#\n\005st" + - "buf\030\003 \002(\0132\024.xtreemfs.pbrpc.Stat\022\016\n\006to_se" + - "t\030\004 \002(\007\"|\n\017setxattrRequest\022\023\n\013volume_nam", - "e\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\014\n\004name\030\003 \002(\t\022\r\n\005v" + - "alue\030\004 \002(\t\022\032\n\022value_bytes_string\030\006 \001(\014\022\r" + - "\n\005flags\030\005 \002(\007\"9\n\016statvfsRequest\022\023\n\013volum" + - "e_name\030\001 \002(\t\022\022\n\nknown_etag\030\005 \002(\006\"M\n\016syml" + - "inkRequest\022\023\n\013volume_name\030\001 \002(\t\022\023\n\013targe" + - "t_path\030\002 \002(\t\022\021\n\tlink_path\030\003 \002(\t\"2\n\runlin" + - "kRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 " + - "\002(\t\"U\n\016unlinkResponse\022\023\n\013timestamp_s\030\001 \002" + - "(\007\022.\n\005creds\030\002 \001(\0132\037.xtreemfs.pbrpc.FileC" + - "redentials\"A\n\raccessRequest\022\023\n\013volume_na", - "me\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\r\n\005flags\030\003 \002(\007\"Z\n" + - "!xtreemfs_check_file_existsRequest\022\021\n\tvo" + - "lume_id\030\001 \002(\t\022\020\n\010file_ids\030\002 \003(\t\022\020\n\010osd_u" + - "uid\030\003 \002(\t\":\n%xtreemfs_dump_restore_datab" + - "aseRequest\022\021\n\tdump_file\030\001 \002(\t\"i\n!xtreemf" + - "s_get_suitable_osdsRequest\022\017\n\007file_id\030\001 " + - "\001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume_name\030\004 \001(\t\022\020" + - "\n\010num_osds\030\002 \002(\007\"7\n\"xtreemfs_get_suitabl" + - "e_osdsResponse\022\021\n\tosd_uuids\030\001 \003(\t\"4\n\"xtr" + - "eemfs_check_file_existsResponse\022\016\n\006bitma", - "p\030\001 \002(\t\"(\n\021timestampResponse\022\023\n\013timestam" + - "p_s\030\001 \002(\007\"!\n\rstringMessage\022\020\n\010a_string\030\001" + - " \002(\t\"\'\n\027xtreemfs_listdirRequest\022\014\n\004path\030" + - "\001 \002(\t\")\n\030xtreemfs_listdirResponse\022\r\n\005nam" + - "es\030\001 \003(\t\"\177\n\033xtreemfs_replica_addRequest\022" + - "\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume" + - "_name\030\004 \001(\t\022,\n\013new_replica\030\002 \002(\0132\027.xtree" + - "mfs.pbrpc.Replica\"R\n\034xtreemfs_replica_li" + - "stRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\002 \001(\t" + - "\022\023\n\013volume_name\030\003 \001(\t\"f\n\036xtreemfs_replic", - "a_removeRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path" + - "\030\003 \001(\t\022\023\n\013volume_name\030\004 \001(\t\022\020\n\010osd_uuid\030" + - "\002 \002(\t\"|\n\034xtreemfs_restore_fileRequest\022\021\n" + - "\tfile_path\030\001 \002(\t\022\017\n\007file_id\030\002 \002(\t\022\021\n\tfil" + - "e_size\030\003 \002(\006\022\020\n\010osd_uuid\030\004 \002(\t\022\023\n\013stripe" + - "_size\030\005 \002(\007\",\n\025xtreemfs_rmvolRequest\022\023\n\013" + - "volume_name\030\001 \002(\t\"\321\001\n xtreemfs_update_fi" + - "le_sizeRequest\022\"\n\004xcap\030\001 \002(\0132\024.xtreemfs." + - "pbrpc.XCap\022<\n\022osd_write_response\030\002 \002(\0132 " + - ".xtreemfs.pbrpc.OSDWriteResponse\022\022\n\nclos", - "e_file\030\003 \001(\010\0227\n\013coordinates\030\004 \001(\0132\".xtre" + - "emfs.pbrpc.VivaldiCoordinates\"S\n)xtreemf" + - "s_set_replica_update_policyRequest\022\017\n\007fi" + - "le_id\030\001 \002(\t\022\025\n\rupdate_policy\030\002 \002(\t\"G\n*xt" + - "reemfs_set_replica_update_policyResponse" + - "\022\031\n\021old_update_policy\030\001 \002(\t\"E\n#xtreemfs_" + - "set_read_only_xattrRequest\022\017\n\007file_id\030\001 " + - "\002(\t\022\r\n\005value\030\002 \002(\010\"7\n$xtreemfs_set_read_" + - "only_xattrResponse\022\017\n\007was_set\030\001 \002(\010\"7\n$x" + - "treemfs_get_file_credentialsRequest\022\017\n\007f", - "ile_id\030\001 \002(\t*\242\001\n\010Setattrs\022\020\n\014SETATTR_MOD" + - "E\020\001\022\017\n\013SETATTR_UID\020\002\022\017\n\013SETATTR_GID\020\004\022\020\n" + - "\014SETATTR_SIZE\020\010\022\021\n\rSETATTR_ATIME\020\020\022\021\n\rSE" + - "TATTR_MTIME\020 \022\021\n\rSETATTR_CTIME\020@\022\027\n\022SETA" + - "TTR_ATTRIBUTES\020\200\001*>\n\013XATTR_FLAGS\022\026\n\022XATT" + - "R_FLAGS_CREATE\020\001\022\027\n\023XATTR_FLAGS_REPLACE\020" + - "\002*j\n\014ACCESS_FLAGS\022\025\n\021ACCESS_FLAGS_F_OK\020\000" + - "\022\025\n\021ACCESS_FLAGS_X_OK\020\001\022\025\n\021ACCESS_FLAGS_" + - "W_OK\020\002\022\025\n\021ACCESS_FLAGS_R_OK\020\0042\234\037\n\nMRCSer" + - "vice\022S\n\010fsetattr\022\037.xtreemfs.pbrpc.fsetat", - "trRequest\032\035.xtreemfs.pbrpc.emptyResponse" + - "\"\007\215\265\030\002\000\000\000\022@\n\tftruncate\022\024.xtreemfs.pbrpc." + - "XCap\032\024.xtreemfs.pbrpc.XCap\"\007\215\265\030\003\000\000\000\022S\n\007g" + - "etattr\022\036.xtreemfs.pbrpc.getattrRequest\032\037" + - ".xtreemfs.pbrpc.getattrResponse\"\007\215\265\030\004\000\000\000" + - "\022V\n\010getxattr\022\037.xtreemfs.pbrpc.getxattrRe" + - "quest\032 .xtreemfs.pbrpc.getxattrResponse\"" + - "\007\215\265\030\005\000\000\000\022O\n\004link\022\033.xtreemfs.pbrpc.linkRe" + - "quest\032!.xtreemfs.pbrpc.timestampResponse" + - "\"\007\215\265\030\006\000\000\000\022Y\n\tlistxattr\022 .xtreemfs.pbrpc.", - "listxattrRequest\032!.xtreemfs.pbrpc.listxa" + - "ttrResponse\"\007\215\265\030\007\000\000\000\022Q\n\005mkdir\022\034.xtreemfs" + - ".pbrpc.mkdirRequest\032!.xtreemfs.pbrpc.tim" + - "estampResponse\"\007\215\265\030\010\000\000\000\022J\n\004open\022\033.xtreem" + - "fs.pbrpc.openRequest\032\034.xtreemfs.pbrpc.op" + - "enResponse\"\007\215\265\030\t\000\000\000\022T\n\007readdir\022\036.xtreemf" + - "s.pbrpc.readdirRequest\032 .xtreemfs.pbrpc." + - "DirectoryEntries\"\007\215\265\030\n\000\000\000\022V\n\010readlink\022\037." + - "xtreemfs.pbrpc.readlinkRequest\032 .xtreemf" + - "s.pbrpc.readlinkResponse\"\007\215\265\030\013\000\000\000\022]\n\013rem", - "ovexattr\022\".xtreemfs.pbrpc.removexattrReq" + + "\003(\0132\034.xtreemfs.pbrpc.KeyValuePair\022\r\n\005quo" + + "ta\030\t \001(\006\"2\n\007Volumes\022\'\n\007volumes\030\001 \003(\0132\026.x" + + "treemfs.pbrpc.Volume\"\310\002\n\007StatVFS\022\r\n\005bsiz" + + "e\030\001 \002(\007\022\016\n\006bavail\030\002 \002(\006\022\r\n\005bfree\030\r \001(\006\022\016" + + "\n\006blocks\030\003 \002(\006\022\014\n\004fsid\030\004 \002(\t\022\017\n\007namemax\030" + + "\005 \002(\007\022F\n\025access_control_policy\030\006 \002(\0162\'.x" + + "treemfs.pbrpc.AccessControlPolicyType\022?\n" + + "\027default_striping_policy\030\007 \002(\0132\036.xtreemf" + + "s.pbrpc.StripingPolicy\022\014\n\004etag\030\010 \002(\006\022\014\n\004" + + "mode\030\t \002(\007\022\014\n\004name\030\n \002(\t\022\026\n\016owner_group_", + "id\030\013 \002(\t\022\025\n\rowner_user_id\030\014 \002(\t\"i\n\017fseta" + + "ttrRequest\022#\n\005stbuf\030\001 \002(\0132\024.xtreemfs.pbr" + + "pc.Stat\022\016\n\006to_set\030\002 \002(\007\022!\n\003cap\030\003 \002(\0132\024.x" + + "treemfs.pbrpc.XCap\"G\n\016getattrRequest\022\023\n\013" + + "volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\022\n\nknown" + + "_etag\030\003 \002(\006\"6\n\017getattrResponse\022#\n\005stbuf\030" + + "\001 \001(\0132\024.xtreemfs.pbrpc.Stat\"B\n\017getxattrR" + + "equest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(" + + "\t\022\014\n\004name\030\003 \002(\t\"=\n\020getxattrResponse\022\r\n\005v" + + "alue\030\001 \002(\t\022\032\n\022value_bytes_string\030\002 \001(\014\"J", + "\n\013linkRequest\022\023\n\013volume_name\030\001 \002(\t\022\023\n\013ta" + + "rget_path\030\002 \002(\t\022\021\n\tlink_path\030\003 \002(\t\"I\n\020li" + + "stxattrRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004p" + + "ath\030\002 \002(\t\022\022\n\nnames_only\030\003 \002(\010\":\n\021listxat" + + "trResponse\022%\n\006xattrs\030\001 \003(\0132\025.xtreemfs.pb" + + "rpc.XAttr\"?\n\014mkdirRequest\022\023\n\013volume_name" + + "\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\014\n\004mode\030\003 \002(\007\"\232\001\n\013o" + + "penRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030" + + "\002 \002(\t\022\r\n\005flags\030\003 \002(\007\022\014\n\004mode\030\004 \002(\007\022\022\n\nat" + + "tributes\030\005 \002(\007\0227\n\013coordinates\030\006 \001(\0132\".xt", + "reemfs.pbrpc.VivaldiCoordinates\"S\n\014openR" + + "esponse\022.\n\005creds\030\001 \002(\0132\037.xtreemfs.pbrpc." + + "FileCredentials\022\023\n\013timestamp_s\030\002 \002(\007\"\250\001\n" + + "\016readdirRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004" + + "path\030\002 \002(\t\022\022\n\nknown_etag\030\003 \002(\006\022%\n\035limit_" + + "directory_entries_count\030\004 \002(\007\022\022\n\nnames_o" + + "nly\030\005 \002(\010\022$\n\034seen_directory_entries_coun" + + "t\030\006 \002(\006\"4\n\017readlinkRequest\022\023\n\013volume_nam" + + "e\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\",\n\020readlinkRespons" + + "e\022\030\n\020link_target_path\030\001 \003(\t\"E\n\022removexat", + "trRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002" + + " \002(\t\022\014\n\004name\030\003 \002(\t\"N\n\rrenameRequest\022\023\n\013v" + + "olume_name\030\001 \002(\t\022\023\n\013source_path\030\002 \002(\t\022\023\n" + + "\013target_path\030\003 \002(\t\"U\n\016renameResponse\022\023\n\013" + + "timestamp_s\030\001 \002(\007\022.\n\005creds\030\002 \001(\0132\037.xtree" + + "mfs.pbrpc.FileCredentials\"1\n\014rmdirReques" + + "t\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\"h\n\016" + + "setattrRequest\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004p" + + "ath\030\002 \002(\t\022#\n\005stbuf\030\003 \002(\0132\024.xtreemfs.pbrp" + + "c.Stat\022\016\n\006to_set\030\004 \002(\007\"|\n\017setxattrReques", + "t\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\014\n\004" + + "name\030\003 \002(\t\022\r\n\005value\030\004 \002(\t\022\032\n\022value_bytes" + + "_string\030\006 \001(\014\022\r\n\005flags\030\005 \002(\007\"9\n\016statvfsR" + + "equest\022\023\n\013volume_name\030\001 \002(\t\022\022\n\nknown_eta" + + "g\030\005 \002(\006\"M\n\016symlinkRequest\022\023\n\013volume_name" + + "\030\001 \002(\t\022\023\n\013target_path\030\002 \002(\t\022\021\n\tlink_path" + + "\030\003 \002(\t\"2\n\runlinkRequest\022\023\n\013volume_name\030\001" + + " \002(\t\022\014\n\004path\030\002 \002(\t\"U\n\016unlinkResponse\022\023\n\013" + + "timestamp_s\030\001 \002(\007\022.\n\005creds\030\002 \001(\0132\037.xtree" + + "mfs.pbrpc.FileCredentials\"A\n\raccessReque", + "st\022\023\n\013volume_name\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\r\n" + + "\005flags\030\003 \002(\007\"Z\n!xtreemfs_check_file_exis" + + "tsRequest\022\021\n\tvolume_id\030\001 \002(\t\022\020\n\010file_ids" + + "\030\002 \003(\t\022\020\n\010osd_uuid\030\003 \002(\t\":\n%xtreemfs_dum" + + "p_restore_databaseRequest\022\021\n\tdump_file\030\001" + + " \002(\t\"i\n!xtreemfs_get_suitable_osdsReques" + + "t\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volu" + + "me_name\030\004 \001(\t\022\020\n\010num_osds\030\002 \002(\007\"7\n\"xtree" + + "mfs_get_suitable_osdsResponse\022\021\n\tosd_uui" + + "ds\030\001 \003(\t\"4\n\"xtreemfs_check_file_existsRe", + "sponse\022\016\n\006bitmap\030\001 \002(\t\"(\n\021timestampRespo" + + "nse\022\023\n\013timestamp_s\030\001 \002(\007\"!\n\rstringMessag" + + "e\022\020\n\010a_string\030\001 \002(\t\"\'\n\027xtreemfs_listdirR" + + "equest\022\014\n\004path\030\001 \002(\t\")\n\030xtreemfs_listdir" + + "Response\022\r\n\005names\030\001 \003(\t\"\177\n\033xtreemfs_repl" + + "ica_addRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030" + + "\003 \001(\t\022\023\n\013volume_name\030\004 \001(\t\022,\n\013new_replic" + + "a\030\002 \002(\0132\027.xtreemfs.pbrpc.Replica\"R\n\034xtre" + + "emfs_replica_listRequest\022\017\n\007file_id\030\001 \001(" + + "\t\022\014\n\004path\030\002 \001(\t\022\023\n\013volume_name\030\003 \001(\t\"f\n\036", + "xtreemfs_replica_removeRequest\022\017\n\007file_i" + + "d\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume_name\030\004 \001" + + "(\t\022\020\n\010osd_uuid\030\002 \002(\t\"|\n\034xtreemfs_restore" + + "_fileRequest\022\021\n\tfile_path\030\001 \002(\t\022\017\n\007file_" + + "id\030\002 \002(\t\022\021\n\tfile_size\030\003 \002(\006\022\020\n\010osd_uuid\030" + + "\004 \002(\t\022\023\n\013stripe_size\030\005 \002(\007\",\n\025xtreemfs_r" + + "mvolRequest\022\023\n\013volume_name\030\001 \002(\t\"\321\001\n xtr" + + "eemfs_update_file_sizeRequest\022\"\n\004xcap\030\001 " + + "\002(\0132\024.xtreemfs.pbrpc.XCap\022<\n\022osd_write_r" + + "esponse\030\002 \002(\0132 .xtreemfs.pbrpc.OSDWriteR", + "esponse\022\022\n\nclose_file\030\003 \001(\010\0227\n\013coordinat" + + "es\030\004 \001(\0132\".xtreemfs.pbrpc.VivaldiCoordin" + + "ates\"S\n)xtreemfs_set_replica_update_poli" + + "cyRequest\022\017\n\007file_id\030\001 \002(\t\022\025\n\rupdate_pol" + + "icy\030\002 \002(\t\"G\n*xtreemfs_set_replica_update" + + "_policyResponse\022\031\n\021old_update_policy\030\001 \002" + + "(\t\"E\n#xtreemfs_set_read_only_xattrReques" + + "t\022\017\n\007file_id\030\001 \002(\t\022\r\n\005value\030\002 \002(\010\"7\n$xtr" + + "eemfs_set_read_only_xattrResponse\022\017\n\007was" + + "_set\030\001 \002(\010\"7\n$xtreemfs_get_file_credenti", + "alsRequest\022\017\n\007file_id\030\001 \002(\t*\242\001\n\010Setattrs" + + "\022\020\n\014SETATTR_MODE\020\001\022\017\n\013SETATTR_UID\020\002\022\017\n\013S" + + "ETATTR_GID\020\004\022\020\n\014SETATTR_SIZE\020\010\022\021\n\rSETATT" + + "R_ATIME\020\020\022\021\n\rSETATTR_MTIME\020 \022\021\n\rSETATTR_" + + "CTIME\020@\022\027\n\022SETATTR_ATTRIBUTES\020\200\001*>\n\013XATT" + + "R_FLAGS\022\026\n\022XATTR_FLAGS_CREATE\020\001\022\027\n\023XATTR" + + "_FLAGS_REPLACE\020\002*j\n\014ACCESS_FLAGS\022\025\n\021ACCE" + + "SS_FLAGS_F_OK\020\000\022\025\n\021ACCESS_FLAGS_X_OK\020\001\022\025" + + "\n\021ACCESS_FLAGS_W_OK\020\002\022\025\n\021ACCESS_FLAGS_R_" + + "OK\020\0042\234\037\n\nMRCService\022S\n\010fsetattr\022\037.xtreem", + "fs.pbrpc.fsetattrRequest\032\035.xtreemfs.pbrp" + + "c.emptyResponse\"\007\215\265\030\002\000\000\000\022@\n\tftruncate\022\024." + + "xtreemfs.pbrpc.XCap\032\024.xtreemfs.pbrpc.XCa" + + "p\"\007\215\265\030\003\000\000\000\022S\n\007getattr\022\036.xtreemfs.pbrpc.g" + + "etattrRequest\032\037.xtreemfs.pbrpc.getattrRe" + + "sponse\"\007\215\265\030\004\000\000\000\022V\n\010getxattr\022\037.xtreemfs.p" + + "brpc.getxattrRequest\032 .xtreemfs.pbrpc.ge" + + "txattrResponse\"\007\215\265\030\005\000\000\000\022O\n\004link\022\033.xtreem" + + "fs.pbrpc.linkRequest\032!.xtreemfs.pbrpc.ti" + + "mestampResponse\"\007\215\265\030\006\000\000\000\022Y\n\tlistxattr\022 .", + "xtreemfs.pbrpc.listxattrRequest\032!.xtreem" + + "fs.pbrpc.listxattrResponse\"\007\215\265\030\007\000\000\000\022Q\n\005m" + + "kdir\022\034.xtreemfs.pbrpc.mkdirRequest\032!.xtr" + + "eemfs.pbrpc.timestampResponse\"\007\215\265\030\010\000\000\000\022J" + + "\n\004open\022\033.xtreemfs.pbrpc.openRequest\032\034.xt" + + "reemfs.pbrpc.openResponse\"\007\215\265\030\t\000\000\000\022T\n\007re" + + "addir\022\036.xtreemfs.pbrpc.readdirRequest\032 ." + + "xtreemfs.pbrpc.DirectoryEntries\"\007\215\265\030\n\000\000\000" + + "\022V\n\010readlink\022\037.xtreemfs.pbrpc.readlinkRe" + + "quest\032 .xtreemfs.pbrpc.readlinkResponse\"", + "\007\215\265\030\013\000\000\000\022]\n\013removexattr\022\".xtreemfs.pbrpc" + + ".removexattrRequest\032!.xtreemfs.pbrpc.tim" + + "estampResponse\"\007\215\265\030\014\000\000\000\022P\n\006rename\022\035.xtre" + + "emfs.pbrpc.renameRequest\032\036.xtreemfs.pbrp" + + "c.renameResponse\"\007\215\265\030\r\000\000\000\022Q\n\005rmdir\022\034.xtr" + + "eemfs.pbrpc.rmdirRequest\032!.xtreemfs.pbrp" + + "c.timestampResponse\"\007\215\265\030\016\000\000\000\022U\n\007setattr\022" + + "\036.xtreemfs.pbrpc.setattrRequest\032!.xtreem" + + "fs.pbrpc.timestampResponse\"\007\215\265\030\017\000\000\000\022W\n\010s" + + "etxattr\022\037.xtreemfs.pbrpc.setxattrRequest", + "\032!.xtreemfs.pbrpc.timestampResponse\"\007\215\265\030" + + "\020\000\000\000\022K\n\007statvfs\022\036.xtreemfs.pbrpc.statvfs" + + "Request\032\027.xtreemfs.pbrpc.StatVFS\"\007\215\265\030\021\000\000" + + "\000\022U\n\007symlink\022\036.xtreemfs.pbrpc.symlinkReq" + "uest\032!.xtreemfs.pbrpc.timestampResponse\"" + - "\007\215\265\030\014\000\000\000\022P\n\006rename\022\035.xtreemfs.pbrpc.rena" + - "meRequest\032\036.xtreemfs.pbrpc.renameRespons" + - "e\"\007\215\265\030\r\000\000\000\022Q\n\005rmdir\022\034.xtreemfs.pbrpc.rmd" + - "irRequest\032!.xtreemfs.pbrpc.timestampResp" + - "onse\"\007\215\265\030\016\000\000\000\022U\n\007setattr\022\036.xtreemfs.pbrp" + - "c.setattrRequest\032!.xtreemfs.pbrpc.timest" + - "ampResponse\"\007\215\265\030\017\000\000\000\022W\n\010setxattr\022\037.xtree" + - "mfs.pbrpc.setxattrRequest\032!.xtreemfs.pbr", - "pc.timestampResponse\"\007\215\265\030\020\000\000\000\022K\n\007statvfs" + - "\022\036.xtreemfs.pbrpc.statvfsRequest\032\027.xtree" + - "mfs.pbrpc.StatVFS\"\007\215\265\030\021\000\000\000\022U\n\007symlink\022\036." + - "xtreemfs.pbrpc.symlinkRequest\032!.xtreemfs" + - ".pbrpc.timestampResponse\"\007\215\265\030\022\000\000\000\022P\n\006unl" + - "ink\022\035.xtreemfs.pbrpc.unlinkRequest\032\036.xtr" + - "eemfs.pbrpc.unlinkResponse\"\007\215\265\030\023\000\000\000\022O\n\006a" + - "ccess\022\035.xtreemfs.pbrpc.accessRequest\032\035.x" + - "treemfs.pbrpc.emptyResponse\"\007\215\265\030\024\000\000\000\022[\n\023" + - "xtreemfs_checkpoint\022\034.xtreemfs.pbrpc.emp", - "tyRequest\032\035.xtreemfs.pbrpc.emptyResponse" + - "\"\007\215\265\030\036\000\000\000\022\214\001\n\032xtreemfs_check_file_exists" + - "\0221.xtreemfs.pbrpc.xtreemfs_check_file_ex" + - "istsRequest\0322.xtreemfs.pbrpc.xtreemfs_ch" + - "eck_file_existsResponse\"\007\215\265\030\037\000\000\000\022w\n\026xtre" + - "emfs_dump_database\0225.xtreemfs.pbrpc.xtre" + - "emfs_dump_restore_databaseRequest\032\035.xtre" + - "emfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022\214\001\n\032xt" + - "reemfs_get_suitable_osds\0221.xtreemfs.pbrp" + - "c.xtreemfs_get_suitable_osdsRequest\0322.xt", - "reemfs.pbrpc.xtreemfs_get_suitable_osdsR" + - "esponse\"\007\215\265\030!\000\000\000\022`\n\027xtreemfs_internal_de" + - "bug\022\035.xtreemfs.pbrpc.stringMessage\032\035.xtr" + - "eemfs.pbrpc.stringMessage\"\007\215\265\030\"\000\000\000\022n\n\020xt" + - "reemfs_listdir\022\'.xtreemfs.pbrpc.xtreemfs" + - "_listdirRequest\032(.xtreemfs.pbrpc.xtreemf" + - "s_listdirResponse\"\007\215\265\030#\000\000\000\022P\n\016xtreemfs_l" + - "svol\022\034.xtreemfs.pbrpc.emptyRequest\032\027.xtr" + - "eemfs.pbrpc.Volumes\"\007\215\265\030$\000\000\000\022P\n\016xtreemfs" + - "_mkvol\022\026.xtreemfs.pbrpc.Volume\032\035.xtreemf", - "s.pbrpc.emptyResponse\"\007\215\265\030/\000\000\000\022P\n\031xtreem" + - "fs_renew_capability\022\024.xtreemfs.pbrpc.XCa" + - "p\032\024.xtreemfs.pbrpc.XCap\"\007\215\265\030%\000\000\000\022f\n\036xtre" + - "emfs_replication_to_master\022\034.xtreemfs.pb" + - "rpc.emptyRequest\032\035.xtreemfs.pbrpc.emptyR" + - "esponse\"\007\215\265\030&\000\000\000\022k\n\024xtreemfs_replica_add" + - "\022+.xtreemfs.pbrpc.xtreemfs_replica_addRe" + - "quest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265" + - "\030\'\000\000\000\022h\n\025xtreemfs_replica_list\022,.xtreemf" + - "s.pbrpc.xtreemfs_replica_listRequest\032\030.x", - "treemfs.pbrpc.Replicas\"\007\215\265\030(\000\000\000\022s\n\027xtree" + - "mfs_replica_remove\022..xtreemfs.pbrpc.xtre" + - "emfs_replica_removeRequest\032\037.xtreemfs.pb" + - "rpc.FileCredentials\"\007\215\265\030)\000\000\000\022z\n\031xtreemfs" + - "_restore_database\0225.xtreemfs.pbrpc.xtree" + - "mfs_dump_restore_databaseRequest\032\035.xtree" + - "mfs.pbrpc.emptyResponse\"\007\215\265\030*\000\000\000\022m\n\025xtre" + - "emfs_restore_file\022,.xtreemfs.pbrpc.xtree" + - "mfs_restore_fileRequest\032\035.xtreemfs.pbrpc" + - ".emptyResponse\"\007\215\265\030+\000\000\000\022_\n\016xtreemfs_rmvo", - "l\022%.xtreemfs.pbrpc.xtreemfs_rmvolRequest" + - "\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030,\000\000\000" + - "\022Y\n\021xtreemfs_shutdown\022\034.xtreemfs.pbrpc.e" + - "mptyRequest\032\035.xtreemfs.pbrpc.emptyRespon" + - "se\"\007\215\265\030-\000\000\000\022y\n\031xtreemfs_update_file_size" + - "\0220.xtreemfs.pbrpc.xtreemfs_update_file_s" + - "izeRequest\032!.xtreemfs.pbrpc.timestampRes" + - "ponse\"\007\215\265\030.\000\000\000\022\244\001\n\"xtreemfs_set_replica_" + - "update_policy\0229.xtreemfs.pbrpc.xtreemfs_" + - "set_replica_update_policyRequest\032:.xtree", - "mfs.pbrpc.xtreemfs_set_replica_update_po" + - "licyResponse\"\007\215\265\0300\000\000\000\022\222\001\n\034xtreemfs_set_r" + - "ead_only_xattr\0223.xtreemfs.pbrpc.xtreemfs" + - "_set_read_only_xattrRequest\0324.xtreemfs.p" + - "brpc.xtreemfs_set_read_only_xattrRespons" + - "e\"\007\215\265\0301\000\000\000\022\177\n\035xtreemfs_get_file_credenti" + - "als\0224.xtreemfs.pbrpc.xtreemfs_get_file_c" + - "redentialsRequest\032\037.xtreemfs.pbrpc.FileC" + - "redentials\"\007\215\265\0302\000\000\000\032\007\225\265\030!N\000\000B(\n&org.xtre" + - "emfs.pbrpc.generatedinterfaces" + "\007\215\265\030\022\000\000\000\022P\n\006unlink\022\035.xtreemfs.pbrpc.unli" + + "nkRequest\032\036.xtreemfs.pbrpc.unlinkRespons" + + "e\"\007\215\265\030\023\000\000\000\022O\n\006access\022\035.xtreemfs.pbrpc.ac" + + "cessRequest\032\035.xtreemfs.pbrpc.emptyRespon" + + "se\"\007\215\265\030\024\000\000\000\022[\n\023xtreemfs_checkpoint\022\034.xtr", + "eemfs.pbrpc.emptyRequest\032\035.xtreemfs.pbrp" + + "c.emptyResponse\"\007\215\265\030\036\000\000\000\022\214\001\n\032xtreemfs_ch" + + "eck_file_exists\0221.xtreemfs.pbrpc.xtreemf" + + "s_check_file_existsRequest\0322.xtreemfs.pb" + + "rpc.xtreemfs_check_file_existsResponse\"\007" + + "\215\265\030\037\000\000\000\022w\n\026xtreemfs_dump_database\0225.xtre" + + "emfs.pbrpc.xtreemfs_dump_restore_databas" + + "eRequest\032\035.xtreemfs.pbrpc.emptyResponse\"" + + "\007\215\265\030 \000\000\000\022\214\001\n\032xtreemfs_get_suitable_osds\022" + + "1.xtreemfs.pbrpc.xtreemfs_get_suitable_o", + "sdsRequest\0322.xtreemfs.pbrpc.xtreemfs_get" + + "_suitable_osdsResponse\"\007\215\265\030!\000\000\000\022`\n\027xtree" + + "mfs_internal_debug\022\035.xtreemfs.pbrpc.stri" + + "ngMessage\032\035.xtreemfs.pbrpc.stringMessage" + + "\"\007\215\265\030\"\000\000\000\022n\n\020xtreemfs_listdir\022\'.xtreemfs" + + ".pbrpc.xtreemfs_listdirRequest\032(.xtreemf" + + "s.pbrpc.xtreemfs_listdirResponse\"\007\215\265\030#\000\000" + + "\000\022P\n\016xtreemfs_lsvol\022\034.xtreemfs.pbrpc.emp" + + "tyRequest\032\027.xtreemfs.pbrpc.Volumes\"\007\215\265\030$" + + "\000\000\000\022P\n\016xtreemfs_mkvol\022\026.xtreemfs.pbrpc.V", + "olume\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265" + + "\030/\000\000\000\022P\n\031xtreemfs_renew_capability\022\024.xtr" + + "eemfs.pbrpc.XCap\032\024.xtreemfs.pbrpc.XCap\"\007" + + "\215\265\030%\000\000\000\022f\n\036xtreemfs_replication_to_maste" + + "r\022\034.xtreemfs.pbrpc.emptyRequest\032\035.xtreem" + + "fs.pbrpc.emptyResponse\"\007\215\265\030&\000\000\000\022k\n\024xtree" + + "mfs_replica_add\022+.xtreemfs.pbrpc.xtreemf" + + "s_replica_addRequest\032\035.xtreemfs.pbrpc.em" + + "ptyResponse\"\007\215\265\030\'\000\000\000\022h\n\025xtreemfs_replica" + + "_list\022,.xtreemfs.pbrpc.xtreemfs_replica_", + "listRequest\032\030.xtreemfs.pbrpc.Replicas\"\007\215" + + "\265\030(\000\000\000\022s\n\027xtreemfs_replica_remove\022..xtre" + + "emfs.pbrpc.xtreemfs_replica_removeReques" + + "t\032\037.xtreemfs.pbrpc.FileCredentials\"\007\215\265\030)" + + "\000\000\000\022z\n\031xtreemfs_restore_database\0225.xtree" + + "mfs.pbrpc.xtreemfs_dump_restore_database" + + "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" + + "\215\265\030*\000\000\000\022m\n\025xtreemfs_restore_file\022,.xtree" + + "mfs.pbrpc.xtreemfs_restore_fileRequest\032\035" + + ".xtreemfs.pbrpc.emptyResponse\"\007\215\265\030+\000\000\000\022_", + "\n\016xtreemfs_rmvol\022%.xtreemfs.pbrpc.xtreem" + + "fs_rmvolRequest\032\035.xtreemfs.pbrpc.emptyRe" + + "sponse\"\007\215\265\030,\000\000\000\022Y\n\021xtreemfs_shutdown\022\034.x" + + "treemfs.pbrpc.emptyRequest\032\035.xtreemfs.pb" + + "rpc.emptyResponse\"\007\215\265\030-\000\000\000\022y\n\031xtreemfs_u" + + "pdate_file_size\0220.xtreemfs.pbrpc.xtreemf" + + "s_update_file_sizeRequest\032!.xtreemfs.pbr" + + "pc.timestampResponse\"\007\215\265\030.\000\000\000\022\244\001\n\"xtreem" + + "fs_set_replica_update_policy\0229.xtreemfs." + + "pbrpc.xtreemfs_set_replica_update_policy", + "Request\032:.xtreemfs.pbrpc.xtreemfs_set_re" + + "plica_update_policyResponse\"\007\215\265\0300\000\000\000\022\222\001\n" + + "\034xtreemfs_set_read_only_xattr\0223.xtreemfs" + + ".pbrpc.xtreemfs_set_read_only_xattrReque" + + "st\0324.xtreemfs.pbrpc.xtreemfs_set_read_on" + + "ly_xattrResponse\"\007\215\265\0301\000\000\000\022\177\n\035xtreemfs_ge" + + "t_file_credentials\0224.xtreemfs.pbrpc.xtre" + + "emfs_get_file_credentialsRequest\032\037.xtree" + + "mfs.pbrpc.FileCredentials\"\007\215\265\0302\000\000\000\032\007\225\265\030!" + + "N\000\000B(\n&org.xtreemfs.pbrpc.generatedinter", + "faces" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -46822,7 +46936,7 @@ public final class MRC { internal_static_xtreemfs_pbrpc_Volume_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_xtreemfs_pbrpc_Volume_descriptor, - new java.lang.String[] { "AccessControlPolicy", "DefaultStripingPolicy", "Id", "Mode", "Name", "OwnerGroupId", "OwnerUserId", "Attrs", }); + new java.lang.String[] { "AccessControlPolicy", "DefaultStripingPolicy", "Id", "Mode", "Name", "OwnerGroupId", "OwnerUserId", "Attrs", "Quota", }); internal_static_xtreemfs_pbrpc_Volumes_descriptor = getDescriptor().getMessageTypes().get(5); internal_static_xtreemfs_pbrpc_Volumes_fieldAccessorTable = new -- GitLab From 4f7f5f1ba685fff4e38564f401f576c32e58a01d Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 10 Jun 2014 13:48:31 +0200 Subject: [PATCH 015/192] servers: Added quota to CreateVolumeOperation. --- .../xtreemfs/mrc/database/VolumeManager.java | 5 ++++- .../database/babudb/BabuDBStorageManager.java | 10 +++++----- .../mrc/database/babudb/BabuDBVolumeInfo.java | 18 +++++++++++++++--- .../database/babudb/BabuDBVolumeManager.java | 5 ++--- .../mrc/operations/CreateVolumeOperation.java | 2 +- .../mrc/operations/RestoreDBOperation.java | 1 + .../org/xtreemfs/mrc/utils/DBAdminHelper.java | 4 +++- .../test/mrc/BabuDBStorageManagerTest.java | 3 ++- 8 files changed, 33 insertions(+), 15 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/database/VolumeManager.java b/java/servers/src/org/xtreemfs/mrc/database/VolumeManager.java index a1631f99c..5e7d110c7 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/VolumeManager.java +++ b/java/servers/src/org/xtreemfs/mrc/database/VolumeManager.java @@ -62,6 +62,8 @@ public interface VolumeManager { * the default striping policy * @param initialAccessMode * the initial access mode for the volume's root directory + * @param volumeQuota + * the volume quota * @param attrs * a list of user-defined attributes for the volume * @throws UserException @@ -69,7 +71,8 @@ public interface VolumeManager { */ public void createVolume(FileAccessManager faMan, String volumeId, String volumeName, short fileAccessPolicyId, String ownerId, String owningGroupId, StripingPolicy defaultStripingPolicy, - int initialAccessMode, List attrs) throws UserException, DatabaseException; + int initialAccessMode, + long volumeQuota, List attrs) throws UserException, DatabaseException; /** * Checks whether a volume with the given name is known locally. diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java index 9f0ebc602..3624e41ec 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBStorageManager.java @@ -95,7 +95,7 @@ public class BabuDBStorageManager implements StorageManager { protected static final String VOL_ID_ATTR_NAME = "volId"; - protected static final String VOL_QUOTA = "quota"; + protected static final String VOL_QUOTA_ATTR_NAME = "quota"; protected static final int[] ALL_INDICES = { FILE_INDEX, XATTRS_INDEX, ACL_INDEX, FILE_ID_INDEX, VOLUME_INDEX }; @@ -161,7 +161,7 @@ public class BabuDBStorageManager implements StorageManager { public BabuDBStorageManager(BabuDB dbs, String volumeId, String volumeName, short fileAccessPolicyId, short[] osdPolicy, short[] replPolicy, String ownerId, String owningGroupId, int perms, ACLEntry[] acl, org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy rootDirDefSp, boolean allowSnaps, - Map attrs) throws DatabaseException { + long volumeQuota, Map attrs) throws DatabaseException { this.dbMan = dbs.getDatabaseManager(); this.snapMan = dbs.getSnapshotManager(); @@ -179,7 +179,7 @@ public class BabuDBStorageManager implements StorageManager { setLastFileId(1, update); volume.init(this, update.getDatabaseName(), volumeName, osdPolicy, replPolicy, fileAccessPolicyId, allowSnaps, - update); + volumeQuota, update); // set the default striping policy if (rootDirDefSp != null) @@ -562,7 +562,7 @@ public class BabuDBStorageManager implements StorageManager { @Override public long getVolumeQuota() throws DatabaseException { try { - byte[] quota = getXAttr(1, SYSTEM_UID, VOL_QUOTA); + byte[] quota = getXAttr(1, SYSTEM_UID, VOL_QUOTA_ATTR_NAME); if (quota == null) return 0; else { @@ -808,7 +808,7 @@ public class BabuDBStorageManager implements StorageManager { @Override public void setVolumeQuota(long quota, AtomicDBUpdate update) throws DatabaseException { - setXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.VOL_QUOTA, String.valueOf(quota).getBytes(), update); + setXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.VOL_QUOTA_ATTR_NAME, String.valueOf(quota).getBytes(), update); } @Override diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java index f15e11937..10619f090 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeInfo.java @@ -38,8 +38,10 @@ public class BabuDBVolumeInfo implements VolumeInfo { private boolean allowSnaps; + private long quota; + public void init(BabuDBStorageManager sMan, String id, String name, short[] osdPolicy, short[] replicaPolicy, - short acPolicy, boolean allowSnaps, AtomicDBUpdate update) throws DatabaseException { + short acPolicy, boolean allowSnaps, long quota, AtomicDBUpdate update) throws DatabaseException { this.sMan = sMan; this.id = id; @@ -48,6 +50,7 @@ public class BabuDBVolumeInfo implements VolumeInfo { this.replicaPolicy = replicaPolicy; this.acPolicy = acPolicy; this.allowSnaps = allowSnaps; + this.quota = quota; // set the policies sMan.setXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.VOL_ID_ATTR_NAME, id.getBytes(), true, update); @@ -59,6 +62,9 @@ public class BabuDBVolumeInfo implements VolumeInfo { .getBytes(), true, update); sMan.setXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.ALLOW_SNAPS_ATTR_NAME, String.valueOf(allowSnaps).getBytes(), true, update); + sMan.setXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.VOL_QUOTA_ATTR_NAME, String.valueOf(quota) + .getBytes(), + true, update); } public void init(BabuDBStorageManager sMan) throws DatabaseException { @@ -75,6 +81,7 @@ public class BabuDBVolumeInfo implements VolumeInfo { byte[] osdPolicyAttr = sMan.getXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.OSD_POL_ATTR_NAME); byte[] replicaPolicyAttr = sMan.getXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.REPL_POL_ATTR_NAME); + byte[] quotaAttr = sMan.getXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.VOL_QUOTA_ATTR_NAME); if (idAttr != null) id = new String(idAttr); @@ -105,6 +112,9 @@ public class BabuDBVolumeInfo implements VolumeInfo { if (allowSnapsAttr != null) allowSnaps = "true".equalsIgnoreCase(new String(allowSnapsAttr)); + if (quotaAttr != null) + quota = Long.valueOf(new String(quotaAttr)); + } catch (NumberFormatException exc) { Logging.logError(Logging.LEVEL_ERROR, this, exc); throw new DatabaseException("corrupted MRC database", ExceptionType.INTERNAL_DB_ERROR); @@ -138,7 +148,7 @@ public class BabuDBVolumeInfo implements VolumeInfo { @Override public long getVolumeQuota() throws DatabaseException { - return sMan.getVolumeQuota(); + return quota; } @Override @@ -167,7 +177,9 @@ public class BabuDBVolumeInfo implements VolumeInfo { @Override public void setVolumeQuota(long quota, AtomicDBUpdate update) throws DatabaseException { - sMan.setXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.VOL_QUOTA, String.valueOf(quota).getBytes(), + this.quota = quota; + sMan.setXAttr(1, StorageManager.SYSTEM_UID, BabuDBStorageManager.VOL_QUOTA_ATTR_NAME, String.valueOf(quota) + .getBytes(), update); sMan.notifyVolumeChange(this); } diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeManager.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeManager.java index 71a2e52bd..a679e2b2b 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeManager.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeManager.java @@ -15,7 +15,6 @@ import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.HashSet; -import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Map; @@ -156,7 +155,7 @@ public class BabuDBVolumeManager implements VolumeManager { @Override public void createVolume(FileAccessManager faMan, String volumeId, String volumeName, short fileAccessPolicyId, String ownerId, String owningGroupId, StripingPolicy defaultStripingPolicy, int initialAccessMode, - List attrs) throws UserException, DatabaseException { + long volumeQuota, List attrs) throws UserException, DatabaseException { waitLock.set(false); @@ -176,7 +175,7 @@ public class BabuDBVolumeManager implements VolumeManager { // the transaction listener) new BabuDBStorageManager(database, volumeId, volumeName, fileAccessPolicyId, DEFAULT_OSD_POLICY, DEFAULT_REPL_POLICY, ownerId, owningGroupId, initialAccessMode, acl, defaultStripingPolicy, - DEFAULT_ALLOW_SNAPS, KeyValuePairs.toMap(attrs)); + DEFAULT_ALLOW_SNAPS, volumeQuota, KeyValuePairs.toMap(attrs)); // wait for the notification from the transaction listener before // continuing diff --git a/java/servers/src/org/xtreemfs/mrc/operations/CreateVolumeOperation.java b/java/servers/src/org/xtreemfs/mrc/operations/CreateVolumeOperation.java index 0a8e7e48b..584adba1d 100644 --- a/java/servers/src/org/xtreemfs/mrc/operations/CreateVolumeOperation.java +++ b/java/servers/src/org/xtreemfs/mrc/operations/CreateVolumeOperation.java @@ -126,7 +126,7 @@ public class CreateVolumeOperation extends MRCOperation { // create the volume locally master.getVolumeManager().createVolume(master.getFileAccessManager(), volumeId, volData.getName(), (short) volData.getAccessControlPolicy().getNumber(), uid, gid, volData.getDefaultStripingPolicy(), - volData.getMode(), volData.getAttrsList()); + volData.getMode(), volData.getQuota(), volData.getAttrsList()); master.notifyVolumeCreated(); diff --git a/java/servers/src/org/xtreemfs/mrc/operations/RestoreDBOperation.java b/java/servers/src/org/xtreemfs/mrc/operations/RestoreDBOperation.java index ca33a35f5..7be50025c 100644 --- a/java/servers/src/org/xtreemfs/mrc/operations/RestoreDBOperation.java +++ b/java/servers/src/org/xtreemfs/mrc/operations/RestoreDBOperation.java @@ -89,6 +89,7 @@ public class RestoreDBOperation extends MRCOperation { state.currentVolumeName = attributes.getValue(attributes.getIndex("name")); state.currentVolumeACPolicy = Short.parseShort(attributes.getValue(attributes .getIndex("acPolicy"))); + state.currentVolumeQuota = Long.valueOf(attributes.getValue(attributes.getIndex("quota"))); } diff --git a/java/servers/src/org/xtreemfs/mrc/utils/DBAdminHelper.java b/java/servers/src/org/xtreemfs/mrc/utils/DBAdminHelper.java index 440e998b3..73eae5f10 100644 --- a/java/servers/src/org/xtreemfs/mrc/utils/DBAdminHelper.java +++ b/java/servers/src/org/xtreemfs/mrc/utils/DBAdminHelper.java @@ -64,6 +64,8 @@ public class DBAdminHelper { public Map currentACL; public long largestFileId; + + public long currentVolumeQuota; public DBRestoreState() { parentIds = new LinkedList(); @@ -99,7 +101,7 @@ public class DBAdminHelper { // if the directory is the root directory, restore the volume if (id == 1) { vMan.createVolume(faMan, state.currentVolumeId, state.currentVolumeName, state.currentVolumeACPolicy, - owner, owningGroup, null, rights, new LinkedList()); + owner, owningGroup, null, rights, state.currentVolumeQuota, new LinkedList()); StorageManager sMan = vMan.getStorageManager(state.currentVolumeId); state.currentEntity = sMan.getMetadata(1); diff --git a/java/servers/test/org/xtreemfs/test/mrc/BabuDBStorageManagerTest.java b/java/servers/test/org/xtreemfs/test/mrc/BabuDBStorageManagerTest.java index 12153100a..0bd94ec4e 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/BabuDBStorageManagerTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/BabuDBStorageManagerTest.java @@ -96,7 +96,8 @@ public class BabuDBStorageManagerTest extends TestCase { database = BabuDBFactory.createBabuDB(new BabuDBConfig(DB_DIRECTORY, DB_DIRECTORY, 2, 1024 * 1024 * 16, 5 * 60, SyncMode.FDATASYNC, 300, 1000, false, 16, 1024 * 1024 * 512)); mngr = new BabuDBStorageManager(database, "volId", "volume", (short) 1, new short[] { 1 }, - new short[0], "me", "myGrp", 511, null, null, false, null); + new short[0], "me", + "myGrp", 511, null, null, false, 0, null); exc = null; } -- GitLab From c454c342af26553fec95481c35f9865d9e49ed26 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 10 Jun 2014 13:49:58 +0200 Subject: [PATCH 016/192] client: Added quota to createVolume. --- cpp/include/libxtreemfs/client.h | 1 + cpp/include/libxtreemfs/client_implementation.h | 1 + cpp/src/libxtreemfs/client.cpp | 1 + cpp/src/libxtreemfs/client_implementation.cpp | 2 ++ 4 files changed, 5 insertions(+) diff --git a/cpp/include/libxtreemfs/client.h b/cpp/include/libxtreemfs/client.h index 9ae79b6a1..b3ad0795e 100644 --- a/cpp/include/libxtreemfs/client.h +++ b/cpp/include/libxtreemfs/client.h @@ -139,6 +139,7 @@ class Client { const std::string& owner_username, const std::string& owner_groupname, const xtreemfs::pbrpc::AccessControlPolicyType& access_policy_type, + long volume_quota, const xtreemfs::pbrpc::StripingPolicyType& default_striping_policy_type, int default_stripe_size, int default_stripe_width, diff --git a/cpp/include/libxtreemfs/client_implementation.h b/cpp/include/libxtreemfs/client_implementation.h index 09909675a..eb14f6025 100644 --- a/cpp/include/libxtreemfs/client_implementation.h +++ b/cpp/include/libxtreemfs/client_implementation.h @@ -112,6 +112,7 @@ class ClientImplementation : public Client { const std::string& owner_username, const std::string& owner_groupname, const pbrpc::AccessControlPolicyType& access_policy, + long volume_quota, const pbrpc::StripingPolicyType& default_striping_policy_type, int default_stripe_size, int default_stripe_width, diff --git a/cpp/src/libxtreemfs/client.cpp b/cpp/src/libxtreemfs/client.cpp index 1087ecc54..ac957e57d 100644 --- a/cpp/src/libxtreemfs/client.cpp +++ b/cpp/src/libxtreemfs/client.cpp @@ -58,6 +58,7 @@ void Client::CreateVolume( "", "", xtreemfs::pbrpc::ACCESS_CONTROL_POLICY_POSIX, + 0, xtreemfs::pbrpc::STRIPING_POLICY_RAID0, 128, 1, diff --git a/cpp/src/libxtreemfs/client_implementation.cpp b/cpp/src/libxtreemfs/client_implementation.cpp index d28d2ffda..658794d3b 100644 --- a/cpp/src/libxtreemfs/client_implementation.cpp +++ b/cpp/src/libxtreemfs/client_implementation.cpp @@ -432,6 +432,7 @@ void ClientImplementation::CreateVolume( const std::string& owner_username, const std::string& owner_groupname, const xtreemfs::pbrpc::AccessControlPolicyType& access_policy, + long volume_quota, const xtreemfs::pbrpc::StripingPolicyType& default_striping_policy_type, int default_stripe_size, int default_stripe_width, @@ -445,6 +446,7 @@ void ClientImplementation::CreateVolume( new_volume.set_owner_user_id(owner_username); new_volume.set_owner_group_id(owner_groupname); new_volume.set_access_control_policy(access_policy); + new_volume.set_quota(volume_quota); new_volume.mutable_default_striping_policy() ->set_type(default_striping_policy_type); new_volume.mutable_default_striping_policy() -- GitLab From 270ec727303ade32c8fa5e49f8736659654045fd Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 10 Jun 2014 13:50:26 +0200 Subject: [PATCH 017/192] client: Added quota to mkfs.xtreemfs. --- cpp/include/mkfs.xtreemfs/mkfs_options.h | 3 +++ cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp | 7 +++++++ cpp/src/mkfs.xtreemfs/mkfs_options.cpp | 5 ++++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/cpp/include/mkfs.xtreemfs/mkfs_options.h b/cpp/include/mkfs.xtreemfs/mkfs_options.h index 2cd0950cc..bc2050aef 100644 --- a/cpp/include/mkfs.xtreemfs/mkfs_options.h +++ b/cpp/include/mkfs.xtreemfs/mkfs_options.h @@ -66,6 +66,9 @@ class MkfsOptions : public Options { /** Volume mode in octal form as specified at the command line. */ int volume_mode_octal; + /** Quota of the volume*/ + long volume_quota; + /** Name of the owner of the new volume. */ std::string owner_username; diff --git a/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp b/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp index 750e01089..a74e7ab62 100644 --- a/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp +++ b/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp @@ -128,6 +128,11 @@ int main(int argc, char* argv[]) { return 1; } + if (options.volume_quota < 0) { + cout << "Error: Quota has to be greater or equal zero \n"; + return 1; + } + Auth auth; if (options.admin_password.empty()) { auth.set_auth_type(AUTH_NONE); @@ -165,6 +170,7 @@ int main(int argc, char* argv[]) { cout << " Mode:\t\t\t\t" << options.volume_mode_octal << "\n" << " Access Control Policy:\t" << options.access_policy_type_string << "\n" + << " Quota:\t\t\t" << options.volume_quota << "\n" << "\n" << " Default striping policy:\t\t" << options.default_striping_policy_type_string << "\n" @@ -200,6 +206,7 @@ int main(int argc, char* argv[]) { options.owner_username, options.owner_groupname, options.access_policy_type, + options.volume_quota, options.default_striping_policy_type, options.default_stripe_size, options.default_stripe_width, diff --git a/cpp/src/mkfs.xtreemfs/mkfs_options.cpp b/cpp/src/mkfs.xtreemfs/mkfs_options.cpp index 106a46bc3..564a79372 100644 --- a/cpp/src/mkfs.xtreemfs/mkfs_options.cpp +++ b/cpp/src/mkfs.xtreemfs/mkfs_options.cpp @@ -53,6 +53,7 @@ MkfsOptions::MkfsOptions() : Options() { // Volume options. volume_mode_decimal = 511; volume_mode_octal = 777; + volume_quota = 0; owner_username = ""; owner_groupname = ""; access_policy_type = xtreemfs::pbrpc::ACCESS_CONTROL_POLICY_POSIX; @@ -72,7 +73,9 @@ MkfsOptions::MkfsOptions() : Options() { ("access-control-policy,a", po::value(&access_policy_type_string) ->default_value(access_policy_type_string), - "Access-control-policy=NULL|POSIX|VOLUME"); + "Access-control-policy=NULL|POSIX|VOLUME") + ("quota,q", po::value(&volume_quota)->default_value(volume_quota), + "Quota of the volume in bytes (default value 0, i.e. quota is disabled"); // Striping policy options. default_striping_policy_type = xtreemfs::pbrpc::STRIPING_POLICY_RAID0; -- GitLab From aaa1de47e94f5fc15ef8f950187dc9e474429d6f Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Tue, 10 Jun 2014 22:50:33 +0200 Subject: [PATCH 018/192] client: eliminated compiler warning --- cpp/include/libxtreemfs/helper.h | 5 +++++ cpp/src/libxtreemfs/file_handle_implementation.cpp | 2 +- cpp/src/libxtreemfs/helper.cpp | 5 +++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/cpp/include/libxtreemfs/helper.h b/cpp/include/libxtreemfs/helper.h index fda99013f..6613d251c 100644 --- a/cpp/include/libxtreemfs/helper.h +++ b/cpp/include/libxtreemfs/helper.h @@ -13,6 +13,8 @@ #include #include +#include "xtreemfs/GlobalTypes.pb.h" + #include #ifdef __linux__ @@ -70,6 +72,9 @@ std::string GetOSDUUIDFromXlocSet(const xtreemfs::pbrpc::XLocSet& xlocs, /** Returns UUID of the head OSD (block = 0) of the first replica (r = 0). */ std::string GetOSDUUIDFromXlocSet(const xtreemfs::pbrpc::XLocSet& xlocs); +/** Convert StripePolicyType to string */ +std::string StripePolicyTypeToString(xtreemfs::pbrpc::StripingPolicyType policy); + /** Generates a random UUID (needed to distinguish clients for locks). */ void GenerateVersion4UUID(std::string* result); diff --git a/cpp/src/libxtreemfs/file_handle_implementation.cpp b/cpp/src/libxtreemfs/file_handle_implementation.cpp index a3785e077..e636a9d94 100644 --- a/cpp/src/libxtreemfs/file_handle_implementation.cpp +++ b/cpp/src/libxtreemfs/file_handle_implementation.cpp @@ -852,7 +852,7 @@ const StripeTranslator* FileHandleImplementation::GetStripeTranslator( // Type not found. if (it == stripe_translators_.end()) { - throw XtreemFSException("No StripingPolicy found for type: " + type); + throw XtreemFSException("No StripingPolicy found for type: " + StripePolicyTypeToString(type)); } else { // Type found. return it->second; diff --git a/cpp/src/libxtreemfs/helper.cpp b/cpp/src/libxtreemfs/helper.cpp index dd2cfcfb5..d2ce5cb7b 100644 --- a/cpp/src/libxtreemfs/helper.cpp +++ b/cpp/src/libxtreemfs/helper.cpp @@ -154,6 +154,11 @@ std::string GetOSDUUIDFromXlocSet( return GetOSDUUIDFromXlocSet(xlocs, 0, 0); } +std::string StripePolicyTypeToString(xtreemfs::pbrpc::StripingPolicyType policy) { + std::string policyMap[] = { "STRIPING_POLICY_RAID0" }; + return policyMap[policy]; +} + /** * By default this function does read random data from /dev/urandom and falls * back to using C's rand() if /dev/random is not available. -- GitLab From 49f2e256bc354873b42ac8901dc5db8a8fc6fd82 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Tue, 10 Jun 2014 22:58:51 +0200 Subject: [PATCH 019/192] Added check for clang compiler to Makefile --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dd87b326a..04d801ce2 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ endif SHELL := $(shell which bash) WHICH_GPP = $(shell which g++) +WHICH_CLANGPP = $(shell which clang++) ifeq "$(shell uname)" "SunOS" PROTOBUF_DISABLE_64_BIT_SOLARIS = "--disable-64bit-solaris" @@ -189,9 +190,9 @@ check_server: @echo "ant ok" check_client: - @if [ ! $(WHICH_GPP) ]; then echo "g++ not found";exit 1; fi; + @if [ ! $(WHICH_GPP) -a ! $(WHICH_CLANGPP) ]; then echo "C++ compiler not found";exit 1; fi; @if [ ! $(CMAKE_BIN) ]; then echo "cmake not found";exit 1; fi; - @echo "g++ ok" + @echo "C++ ok" check_test: -- GitLab From 6032fd495c11d3a12386d08f7963010e338f619e Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Wed, 11 Jun 2014 15:26:27 +0100 Subject: [PATCH 020/192] flease: create test directory before running FleaseStageTest --- .../org/xtreemfs/foundation/flease/FleaseStageTest.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/java/flease/test/org/xtreemfs/foundation/flease/FleaseStageTest.java b/java/flease/test/org/xtreemfs/foundation/flease/FleaseStageTest.java index d9cfbb75e..b67901844 100644 --- a/java/flease/test/org/xtreemfs/foundation/flease/FleaseStageTest.java +++ b/java/flease/test/org/xtreemfs/foundation/flease/FleaseStageTest.java @@ -7,6 +7,7 @@ package org.xtreemfs.foundation.flease; +import java.io.File; import java.net.InetSocketAddress; import java.util.ArrayList; import java.util.Map; @@ -19,6 +20,7 @@ import org.xtreemfs.foundation.flease.comm.FleaseMessage; import org.xtreemfs.foundation.flease.proposer.FleaseException; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.logging.Logging.Category; +import org.xtreemfs.foundation.util.FSUtils; /** * @@ -27,7 +29,8 @@ import org.xtreemfs.foundation.logging.Logging.Category; public class FleaseStageTest extends TestCase { private final FleaseConfig cfg; - + private final File testDir; + public FleaseStageTest(String testName) { super(testName); @@ -35,11 +38,14 @@ public class FleaseStageTest extends TestCase { TimeSync.initializeLocal(50); cfg = new FleaseConfig(10000, 500, 500, new InetSocketAddress(12345), "localhost:12345",5); + testDir = new File("/tmp/xtreemfs-test/"); } @Override protected void setUp() throws Exception { super.setUp(); + FSUtils.delTree(testDir); + testDir.mkdirs(); } @Override -- GitLab From dfd60381b24c22aab105a3c7b84f18582697abea Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Wed, 11 Jun 2014 15:50:04 +0100 Subject: [PATCH 021/192] flease: create test directory before FleaseAcceptorTest and FleaseProposerTest --- .../flease/acceptor/FleaseAcceptorTest.java | 9 +++++++- .../flease/proposer/FleaseProposerTest.java | 22 +++++++++++-------- 2 files changed, 21 insertions(+), 10 deletions(-) diff --git a/java/flease/test/org/xtreemfs/foundation/flease/acceptor/FleaseAcceptorTest.java b/java/flease/test/org/xtreemfs/foundation/flease/acceptor/FleaseAcceptorTest.java index 2850ca3e4..9c6ba21b3 100644 --- a/java/flease/test/org/xtreemfs/foundation/flease/acceptor/FleaseAcceptorTest.java +++ b/java/flease/test/org/xtreemfs/foundation/flease/acceptor/FleaseAcceptorTest.java @@ -7,7 +7,6 @@ package org.xtreemfs.foundation.flease.acceptor; -import java.net.InetSocketAddress; import junit.framework.TestCase; import org.xtreemfs.foundation.TimeSync; import org.xtreemfs.foundation.buffer.ASCIIString; @@ -17,6 +16,10 @@ import org.xtreemfs.foundation.flease.comm.FleaseMessage.MsgType; import org.xtreemfs.foundation.flease.comm.ProposalNumber; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.logging.Logging.Category; +import org.xtreemfs.foundation.util.FSUtils; + +import java.io.File; +import java.net.InetSocketAddress; /** * @@ -28,9 +31,13 @@ public class FleaseAcceptorTest extends TestCase { private final static ASCIIString TESTCELL = new ASCIIString("testcell"); private final FleaseConfig cfg; + private final File testDir; public FleaseAcceptorTest(String testName) { super(testName); + testDir = new File("/tmp/xtreemfs-test/"); + FSUtils.delTree(testDir); + testDir.mkdirs(); Logging.start(Logging.LEVEL_WARN, Category.all); TimeSync.initializeLocal(50); diff --git a/java/flease/test/org/xtreemfs/foundation/flease/proposer/FleaseProposerTest.java b/java/flease/test/org/xtreemfs/foundation/flease/proposer/FleaseProposerTest.java index 381eb9ff0..bd7e8052e 100644 --- a/java/flease/test/org/xtreemfs/foundation/flease/proposer/FleaseProposerTest.java +++ b/java/flease/test/org/xtreemfs/foundation/flease/proposer/FleaseProposerTest.java @@ -7,15 +7,6 @@ package org.xtreemfs.foundation.flease.proposer; -import java.io.IOException; -import java.net.InetSocketAddress; -import java.util.ArrayList; -import java.util.concurrent.atomic.AtomicReference; -import java.util.logging.Level; -import java.util.logging.Logger; - -import javax.security.auth.login.FailedLoginException; - import junit.framework.TestCase; import org.xtreemfs.foundation.TimeSync; import org.xtreemfs.foundation.buffer.ASCIIString; @@ -28,6 +19,15 @@ import org.xtreemfs.foundation.flease.comm.FleaseCommunicationInterface; import org.xtreemfs.foundation.flease.comm.FleaseMessage; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.logging.Logging.Category; +import org.xtreemfs.foundation.util.FSUtils; + +import java.io.File; +import java.io.IOException; +import java.net.InetSocketAddress; +import java.util.ArrayList; +import java.util.concurrent.atomic.AtomicReference; +import java.util.logging.Level; +import java.util.logging.Logger; /** * @@ -40,11 +40,15 @@ public class FleaseProposerTest extends TestCase { private final static ASCIIString TESTCELL = new ASCIIString("testcell"); private final FleaseConfig cfg; + private final File testDir; private final AtomicReference result; public FleaseProposerTest(String testName) { super(testName); + testDir = new File("/tmp/xtreemfs-test/"); + FSUtils.delTree(testDir); + testDir.mkdirs(); result = new AtomicReference(); Logging.start(Logging.LEVEL_WARN, Category.all); -- GitLab From 922c373715384c766f30faf25443fe512cddbab3 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Wed, 11 Jun 2014 17:19:11 +0100 Subject: [PATCH 022/192] tests: repeat JUnit tests three times before failing --- tests/test_scripts/junit_tests.sh | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/tests/test_scripts/junit_tests.sh b/tests/test_scripts/junit_tests.sh index 0c7a40f54..48965173f 100755 --- a/tests/test_scripts/junit_tests.sh +++ b/tests/test_scripts/junit_tests.sh @@ -98,9 +98,16 @@ while read LINE; do # run each JUnit test separately in its own JVM JAVA_CALL="$JAVA_HOME/bin/java -ea -cp $CLASSPATH org.junit.runner.JUnitCore $TEST" - echo -n "Running test `expr $COUNTER + 1`: $TEST ... " - $JAVA_CALL >> "$JUNIT_LOG_FILE" 2>&1 - RESULT=$? + RESULT=1 + i=0 + while [ $i -le 3 -a $RESULT -ne 0 ] + do + echo -n "Running test `expr $COUNTER + 1`: $TEST ... " + $JAVA_CALL >> "$JUNIT_LOG_FILE" 2>&1 + RESULT=$? + i=`expr $i + 1` + done + if [ "$RESULT" -ne "0" ]; then echo "FAILURE" FAILED=`expr $FAILED + 1` @@ -129,4 +136,4 @@ if [ $? -eq 0 ] then echo "However, during the test services did crash. Examine the log file junit.log for more information." exit 2 -fi \ No newline at end of file +fi -- GitLab From ce68e8e627ad446db4a6ea0886ccb15739229ee2 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 17 Jun 2014 13:40:34 +0200 Subject: [PATCH 023/192] client: Added quota to xtfsutil. --- cpp/include/xtfsutil/xtfsutil_server.h | 4 +++ cpp/src/xtfsutil/xtfsutil.cpp | 37 +++++++++++++++++++++++++- cpp/src/xtfsutil/xtfsutil_server.cpp | 24 +++++++++++++++++ 3 files changed, 64 insertions(+), 1 deletion(-) diff --git a/cpp/include/xtfsutil/xtfsutil_server.h b/cpp/include/xtfsutil/xtfsutil_server.h index 1585c489c..b04ff2a9d 100644 --- a/cpp/include/xtfsutil/xtfsutil_server.h +++ b/cpp/include/xtfsutil/xtfsutil_server.h @@ -221,6 +221,10 @@ class XtfsUtilServer { const Json::Value& input, Json::Value* output); + void OpSetVolumeQuota(const xtreemfs::pbrpc::UserCredentials& uc, + const Json::Value& input, + Json::Value* output); + /** Mutex to protect xctl_files_. */ boost::mutex xctl_files_mutex_; /** Map of xctl pseudo files. */ diff --git a/cpp/src/xtfsutil/xtfsutil.cpp b/cpp/src/xtfsutil/xtfsutil.cpp index a5df9de0f..30eb70be7 100644 --- a/cpp/src/xtfsutil/xtfsutil.cpp +++ b/cpp/src/xtfsutil/xtfsutil.cpp @@ -393,6 +393,37 @@ bool SetDefaultSP(const string& xctl_file, } } +// Sets the volume quota +bool SetVolumeQuota(const string& xctl_file, + const string& path, + const variables_map& vm) { + + const long quota = vm["set-quota"].as(); + + if (path != "/") { + cerr << "Quota must be set on volume." << endl; + return false; + } + + if (quota < 0) { + cerr << "The minimal quota must be 0 (was set to: " << quota << ")." << endl; + return false; + } + + Json::Value request(Json::objectValue); + request["operation"] = "setVolumeQuota"; + request["path"] = path; + request["quota"] = boost::lexical_cast(quota); + Json::Value response; + if (executeOperation(xctl_file, request, &response)) { + cout << "Set volume quota to " << quota << "." << endl; + return true; + } else { + cerr << "FAILED" << endl; + return false; + } +} + // Sets the default replication policy. bool SetDefaultRP(const string& xctl_file, const string& path, @@ -1040,7 +1071,9 @@ int main(int argc, char **argv) { ("set-acl", value(), "adds/modifies an ACL entry, format: u|g|m|o:[]:[|]") ("del-acl", value(), - "removes an ACL entry, format: u|g|m|o:"); + "removes an ACL entry, format: u|g|m|o:") + ("set-quota", value(), + "sets the volume quota in bytes (set quota to 0 to disable the quota)"); options_description snapshot_desc("Snapshot Options"); snapshot_desc.add_options() @@ -1219,6 +1252,8 @@ int main(int argc, char **argv) { return CreateDeleteSnapshot(xctl_file, path_on_volume, vm) ? 0 : 1; } else if (vm.count("errors") > 0) { return ShowErrors(xctl_file, path_on_volume, vm) ? 0 : 1; + } else if (vm.count("set-quota") > 0) { + return SetVolumeQuota(xctl_file, path_on_volume, vm) ? 0 : 1; } else { return getattr(xctl_file, path_on_volume) ? 0 : 1; } diff --git a/cpp/src/xtfsutil/xtfsutil_server.cpp b/cpp/src/xtfsutil/xtfsutil_server.cpp index 4f81ec34d..757919d08 100644 --- a/cpp/src/xtfsutil/xtfsutil_server.cpp +++ b/cpp/src/xtfsutil/xtfsutil_server.cpp @@ -111,6 +111,8 @@ void XtfsUtilServer::ParseAndExecute(const xtreemfs::pbrpc::UserCredentials& uc, OpCreateDeleteSnapshot(uc, input, &result); } else if (op_name == "setRemoveACL") { OpSetRemoveACL(uc, input, &result); + } else if (op_name == "setVolumeQuota") { + OpSetVolumeQuota(uc, input, &result); } else { file->set_last_result( "{ \"error\":\"Unknown operation '" + op_name + "'.\" }\n"); @@ -618,6 +620,28 @@ void XtfsUtilServer::OpSetRemoveACL( (*output)["result"] = Json::Value(Json::objectValue); } +void XtfsUtilServer::OpSetVolumeQuota( + const xtreemfs::pbrpc::UserCredentials& uc, + const Json::Value& input, + Json::Value* output) { + + if (!input.isMember("path") || !input["path"].isString() || + !input.isMember("quota") || !input["quota"].isString()) { + (*output)["error"] = Json::Value("One of the following fields is missing or" + " has an invalid value: path, quota."); + return; + } + const string path = input["path"].asString(); + const string quota = input["quota"].asString(); + + volume_->SetXAttr(uc, + path, + "xtreemfs.quota", + quota, + xtreemfs::pbrpc::XATTR_FLAGS_REPLACE); + (*output)["result"] = Json::Value(Json::objectValue); +} + bool XtfsUtilServer::checkXctlFile(const std::string& path) { #ifdef __APPLE__ return boost::starts_with(path, "/._" + prefix_.substr(1)) || -- GitLab From 8acde7cd4870e60c3fa6000f70f0a8aed3a4b39f Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 19 Jun 2014 11:44:54 +0200 Subject: [PATCH 024/192] servers: Consider volume quota in free space computation (MRC status page). --- .../org/xtreemfs/mrc/MRCRequestDispatcher.java | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/mrc/MRCRequestDispatcher.java b/java/servers/src/org/xtreemfs/mrc/MRCRequestDispatcher.java index 581612039..4dc57e369 100644 --- a/java/servers/src/org/xtreemfs/mrc/MRCRequestDispatcher.java +++ b/java/servers/src/org/xtreemfs/mrc/MRCRequestDispatcher.java @@ -679,7 +679,21 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle volTableBuf.append("#directories"); volTableBuf.append(v.getNumDirs()); volTableBuf.append("free disk space:"); - volTableBuf.append(OutputUtils.formatBytes(osdMonitor.getFreeSpace(v.getId()))); + + // Use minimum of quota and free space on osds as free disk space. + long quota = v.getVolumeQuota(); + long freeSpaceOnOsds = osdMonitor.getFreeSpace(v.getId()); + if (quota == 0 || quota > freeSpaceOnOsds) { + volTableBuf.append(OutputUtils.formatBytes(freeSpaceOnOsds)); + } else { + long freeSpace = quota - v.getVolumeSize(); + if (freeSpace < 0) { + volTableBuf.append("0 bytes"); + } else { + volTableBuf.append(OutputUtils.formatBytes(freeSpace)); + } + } + volTableBuf.append("occupied disk space:"); volTableBuf.append(OutputUtils.formatBytes(v.getVolumeSize())); volTableBuf.append(""); -- GitLab From ab28f2e844bcffaeaebba09c29b1c66ca0239cd9 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 19 Jun 2014 11:45:45 +0200 Subject: [PATCH 025/192] client: Consider volume quota in available space computation (xtfsutil). --- cpp/src/xtfsutil/xtfsutil_server.cpp | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/cpp/src/xtfsutil/xtfsutil_server.cpp b/cpp/src/xtfsutil/xtfsutil_server.cpp index 757919d08..48e496fc4 100644 --- a/cpp/src/xtfsutil/xtfsutil_server.cpp +++ b/cpp/src/xtfsutil/xtfsutil_server.cpp @@ -195,7 +195,19 @@ void XtfsUtilServer::OpStat(const xtreemfs::pbrpc::UserCredentials& uc, } if (path == "/") { // Get more volume details. - result["free_space"] = Json::Value(xtfs_attrs["xtreemfs.free_space"]); + + uint64_t quota = boost::lexical_cast(xtfs_attrs["xtreemfs.quota"]); + if (quota == 0 || quota > boost::lexical_cast(xtfs_attrs["xtreemfs.free_space"])) { + result["free_space"] = Json::Value(xtfs_attrs["xtreemfs.free_space"]); + } else { + uint64_t free_space = quota - boost::lexical_cast(xtfs_attrs["xtreemfs.used_space"]); + if (free_space < 0) { + result["free_space"] = Json::Value("0"); + } else { + result["free_space"] = Json::Value(boost::lexical_cast(free_space)); + } + } + result["used_space"] = Json::Value(xtfs_attrs["xtreemfs.used_space"]); result["ac_policy_id"] = Json::Value(xtfs_attrs["xtreemfs.ac_policy_id"]); -- GitLab From 17f960ec2124a3491a6cc399170fca412544fe40 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 26 Jun 2014 10:13:16 +0200 Subject: [PATCH 026/192] servers: Consider volume quota in free/available/total space computation (StatFSOperation). --- .../mrc/operations/StatFSOperation.java | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/operations/StatFSOperation.java b/java/servers/src/org/xtreemfs/mrc/operations/StatFSOperation.java index 51c857d58..baefa6896 100644 --- a/java/servers/src/org/xtreemfs/mrc/operations/StatFSOperation.java +++ b/java/servers/src/org/xtreemfs/mrc/operations/StatFSOperation.java @@ -59,9 +59,23 @@ public class StatFSOperation extends MRCOperation { final FileMetadata volumeRoot = sMan.getMetadata(1); int blockSize = sMan.getDefaultStripingPolicy(1).getStripeSize() * 1024; - long bavail = master.getOSDStatusManager().getUsableSpace(volume.getId()) / blockSize; - long bfree = master.getOSDStatusManager().getFreeSpace(volume.getId()) / blockSize; - long blocks = master.getOSDStatusManager().getTotalSpace(volume.getId()) / blockSize; + + long availSpace = master.getOSDStatusManager().getUsableSpace(volume.getId()); + long freeSpace = master.getOSDStatusManager().getFreeSpace(volume.getId()); + long totalSpace = master.getOSDStatusManager().getTotalSpace(volume.getId()); + long quota = sMan.getVolumeQuota(); + + // Use minimum of free space relative to the quota and free space on OSDs as free/available space. + if (quota != 0) { + long quotaFreeSpace = quota - sMan.getVolumeInfo().getVolumeSize(); + quotaFreeSpace = quotaFreeSpace < 0 ? 0 : quotaFreeSpace; + freeSpace = freeSpace < quotaFreeSpace ? freeSpace : quotaFreeSpace; + availSpace = availSpace < quotaFreeSpace ? availSpace : quotaFreeSpace; + } + + long bavail = availSpace / blockSize; + long bfree = freeSpace / blockSize; + long blocks = totalSpace / blockSize; String volumeId = volume.getId(); AccessControlPolicyType acPolId = AccessControlPolicyType.valueOf(volume.getAcPolicyId()); StripingPolicy.Builder defaultStripingPolicy = Converter.stripingPolicyToStripingPolicy(sMan -- GitLab From b6e11ed7b2df36528a44637d7118d9ac510f873e Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 26 Jun 2014 10:13:58 +0200 Subject: [PATCH 027/192] servers, client: Fixed free space computation in xtfsutil and MRC status page. --- cpp/src/xtfsutil/xtfsutil_server.cpp | 15 +- .../xtreemfs/mrc/MRCRequestDispatcher.java | 364 +++++++++--------- 2 files changed, 188 insertions(+), 191 deletions(-) diff --git a/cpp/src/xtfsutil/xtfsutil_server.cpp b/cpp/src/xtfsutil/xtfsutil_server.cpp index 48e496fc4..31288ebd1 100644 --- a/cpp/src/xtfsutil/xtfsutil_server.cpp +++ b/cpp/src/xtfsutil/xtfsutil_server.cpp @@ -197,15 +197,14 @@ void XtfsUtilServer::OpStat(const xtreemfs::pbrpc::UserCredentials& uc, // Get more volume details. uint64_t quota = boost::lexical_cast(xtfs_attrs["xtreemfs.quota"]); - if (quota == 0 || quota > boost::lexical_cast(xtfs_attrs["xtreemfs.free_space"])) { - result["free_space"] = Json::Value(xtfs_attrs["xtreemfs.free_space"]); + uint64_t quota_free_space = quota - boost::lexical_cast(xtfs_attrs["xtreemfs.used_space"]); + + // Use minimum of free space relative to the quota and free space on osds as free space. + if (quota != 0 && quota_free_space < boost::lexical_cast(xtfs_attrs["xtreemfs.free_space"])) { + quota_free_space = quota_free_space < 0 ? 0 : quota_free_space; + result["free_space"] = Json::Value(boost::lexical_cast(quota_free_space)); } else { - uint64_t free_space = quota - boost::lexical_cast(xtfs_attrs["xtreemfs.used_space"]); - if (free_space < 0) { - result["free_space"] = Json::Value("0"); - } else { - result["free_space"] = Json::Value(boost::lexical_cast(free_space)); - } + result["free_space"] = Json::Value(xtfs_attrs["xtreemfs.free_space"]); } result["used_space"] = Json::Value(xtfs_attrs["xtreemfs.used_space"]); diff --git a/java/servers/src/org/xtreemfs/mrc/MRCRequestDispatcher.java b/java/servers/src/org/xtreemfs/mrc/MRCRequestDispatcher.java index 4dc57e369..0e9555a53 100644 --- a/java/servers/src/org/xtreemfs/mrc/MRCRequestDispatcher.java +++ b/java/servers/src/org/xtreemfs/mrc/MRCRequestDispatcher.java @@ -88,52 +88,52 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; */ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycleListener, DBAccessResultListener { - + private static final int RPC_TIMEOUT = 15000; - + private static final int CONNECTION_TIMEOUT = 5 * 60 * 1000; - + private final RPCNIOSocketServer serverStage; - + private final RPCNIOSocketClient clientStage; - + private final DIRClient dirClient; - + private final ProcessingStage procStage; - + private final MRCStatusManager mrcMonitor; - + private final OSDStatusManager osdMonitor; - + private final MRCPolicyContainer policyContainer; - + private final AuthenticationProvider authProvider; - + private final MRCConfig config; - + private final HeartbeatThread heartbeatThread; - + private final OnCloseReplicationThread onCloseReplicationThread; - + private final VolumeManager volumeManager; - + private final FileAccessManager fileAccessManager; - + private final StatusServer statusServer; private final OSDServiceClient osdClient; - + private final boolean replicated; - + private List statusListener; - + public MRCRequestDispatcher(final MRCConfig config, final BabuDBConfig dbConfig) throws Exception { - + Logging.logMessage(Logging.LEVEL_INFO, this, "XtreemFS Metadata Service version " + VersionManagement.RELEASE_VERSION); - + this.config = config; - + if (this.config.getDirectoryService().getHostName().equals(DiscoveryUtils.AUTODISCOVER_HOSTNAME)) { Logging.logMessage(Logging.LEVEL_INFO, Category.net, this, "trying to discover local XtreemFS DIR service..."); @@ -147,7 +147,7 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle "found XtreemFS DIR service at " + dir.getAddress() + ":" + dir.getPort()); config.setDirectoryService(new InetSocketAddress(dir.getAddress(), dir.getPort())); } - + if (config.isInitializable()) { try { ServiceConfig remoteConfig = RemoteConfigHelper.getConfigurationFromDIR(config); @@ -159,76 +159,77 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle Logging.logError(Logging.LEVEL_DEBUG, this, e); } } - + if (Logging.isInfo()) Logging.logMessage(Logging.LEVEL_INFO, Category.misc, this, "use SSL=%b", config.isUsingSSL()); - + policyContainer = new MRCPolicyContainer(config); - + if (Logging.isInfo() && config.isUsingSSL() && policyContainer.getTrustManager() != null) Logging.logMessage(Logging.LEVEL_INFO, Category.misc, this, "using custom trust manager '%s'", policyContainer.getTrustManager().getClass().getName()); - + SSLOptions sslOptions = config.isUsingSSL() ? new SSLOptions(new FileInputStream(config.getServiceCredsFile()), config.getServiceCredsPassphrase(), config.getServiceCredsContainer(), new FileInputStream( config.getTrustedCertsFile()), config.getTrustedCertsPassphrase(), config.getTrustedCertsContainer(), false, config.isGRIDSSLmode(), policyContainer.getTrustManager()) : null; - + InetSocketAddress bindPoint = config.getAddress() != null ? new InetSocketAddress(config.getAddress(), 0) : null; if (Logging.isInfo() && bindPoint != null) Logging.logMessage(Logging.LEVEL_INFO, Category.misc, this, "outgoing server connections will be bound to '%s'", config.getAddress()); - - clientStage = new RPCNIOSocketClient(sslOptions, RPC_TIMEOUT, CONNECTION_TIMEOUT, -1, -1, bindPoint, "MRCRequestDispatcher"); + + clientStage = new RPCNIOSocketClient(sslOptions, RPC_TIMEOUT, CONNECTION_TIMEOUT, -1, -1, bindPoint, + "MRCRequestDispatcher"); clientStage.setLifeCycleListener(this); - + serverStage = new RPCNIOSocketServer(config.getPort(), config.getAddress(), this, sslOptions); serverStage.setLifeCycleListener(this); - + DIRServiceClient dirRpcClient = new DIRServiceClient(clientStage, config.getDirectoryService()); dirClient = new DIRClient(dirRpcClient, config.getDirectoryServices(), config.getFailoverMaxRetries(), config.getFailoverWait()); osdClient = new OSDServiceClient(clientStage, null); TimeSync.initialize(dirClient, config.getRemoteTimeSync(), config.getLocalClockRenew()); - + authProvider = policyContainer.getAuthenticationProvider(); authProvider.initialize(config.isUsingSSL()); if (Logging.isInfo()) Logging.logMessage(Logging.LEVEL_INFO, Category.misc, this, "using authentication provider '%s'", authProvider.getClass().getName()); - + osdMonitor = new OSDStatusManager(this); osdMonitor.setLifeCycleListener(this); - + procStage = new ProcessingStage(this); - + volumeManager = new BabuDBVolumeManager(this, dbConfig); fileAccessManager = new FileAccessManager(volumeManager, policyContainer); - + statusListener = new ArrayList(); if (config.isUsingSnmp()) { statusListener.add(new StatusMonitor(this, config.getSnmpAddress(), config.getSnmpPort(), config .getSnmpACLFile())); notifyConfigurationChange(); } - + // initialize flag that indicates whether the service is replicated replicated = dbConfig.getPlugins().size() > 0; - + ServiceDataGenerator gen = new ServiceDataGenerator() { @Override public ServiceSet getServiceData() { - + String uuid = config.getUUID().toString(); - + OperatingSystemMXBean osb = ManagementFactory.getOperatingSystemMXBean(); String load = String.valueOf((int) (osb.getSystemLoadAverage() * 100 / osb.getAvailableProcessors())); - + long totalRAM = Runtime.getRuntime().maxMemory(); long usedRAM = Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory(); - + // get service data ServiceDataMap.Builder dmap = ServiceDataMap.newBuilder(); dmap.addData(KeyValuePair.newBuilder().setKey("load").setValue(load).build()); @@ -238,7 +239,7 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle dmap.addData(KeyValuePair.newBuilder().setKey("usedRAM").setValue(Long.toString(usedRAM)).build()); dmap.addData(KeyValuePair.newBuilder().setKey("geoCoordinates").setValue(config.getGeoCoordinates()) .build()); - + // If BabuDB replication is enabled, determine and register the // local communication endpoint for the BabuDB replication. // Registering this information at the DIR is necessary to @@ -252,7 +253,7 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle .setValue(localReplAddr.getAddress().getHostAddress() + ":" + localReplAddr.getPort()) .build()); } - + if (config.getHttpPort() != -1) { try { final String address = "".equals(config.getHostName()) ? config.getAddress() == null ? config @@ -265,22 +266,22 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle Logging.logError(Logging.LEVEL_ERROR, this, ex); } } - + Service mrcReg = Service.newBuilder().setType(ServiceType.SERVICE_TYPE_MRC).setUuid(uuid).setData(dmap) .setVersion(0).setLastUpdatedS(0).setName("MRC @ " + uuid).build(); // (ServiceType.SERVICE_TYPE_MRC, uuid, 0, "MRC @ " + uuid, 0, // dmap); ServiceSet.Builder sregs = ServiceSet.newBuilder().addServices(mrcReg); - + Collection storageManagers = volumeManager.getStorageManagers(); if (storageManagers == null) { Logging.logMessage(Logging.LEVEL_WARN, Category.misc, "cannot register volumes because volume manager not initialized yet"); } else { for (StorageManager sMan : storageManagers) { - + VolumeInfo vol = sMan.getVolumeInfo(); - + try { Service dsVolumeInfo = MRCHelper.createDSVolumeInfo(vol, osdMonitor, sMan, uuid); sregs.addServices(dsVolumeInfo); @@ -291,12 +292,12 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle } } } - + return sregs.build(); } - + }; - + if (config.getHttpPort() == -1) { // Webinterface is explicitly disabled. statusServer = null; @@ -319,145 +320,145 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle statusServer.start(); } - + heartbeatThread = new HeartbeatThread("MRC Heartbeat Thread", dirClient, config.getUUID(), gen, config, false); heartbeatThread.setLifeCycleListener(this); - + onCloseReplicationThread = new OnCloseReplicationThread(this); onCloseReplicationThread.setLifeCycleListener(this); - + if (replicated) { mrcMonitor = new MRCStatusManager(this); mrcMonitor.setLifeCycleListener(this); } else mrcMonitor = null; } - + public void asyncShutdown() { - + onCloseReplicationThread.shutdown(); - + heartbeatThread.shutdown(); - + serverStage.shutdown(); - + clientStage.shutdown(); - + osdMonitor.shutdown(); - + procStage.shutdown(); - + volumeManager.shutdown(); - + if (statusServer != null) { statusServer.shutdown(); } - + if (replicated) mrcMonitor.shutdown(); - + // TimeSync.getInstance().shutdown(); } - + public void startup() { - + try { - + TimeSync.getInstance().init(ExtSyncSource.XTREEMFS_DIR, dirClient, null, config.getRemoteTimeSync(), config.getLocalClockRenew()); - + clientStage.start(); clientStage.waitForStartup(); - + UUIDResolver.start(dirClient, 10 * 1000, 600 * 1000); UUIDResolver.addLocalMapping(config.getUUID(), config.getPort(), Schemes.getScheme(config.isUsingSSL(), config.isGRIDSSLmode())); UUIDResolver.addLocalMapping(config.getUUID(), config.getPort(), Schemes.SCHEME_PBRPCU); - + volumeManager.init(); volumeManager.addVolumeChangeListener(osdMonitor); - + heartbeatThread.initialize(); heartbeatThread.start(); - + // TimeSync.getInstance().enableRemoteSynchronization(dirClient); // XXX osdMonitor.start(); osdMonitor.waitForStartup(); - + if (replicated) { mrcMonitor.start(); mrcMonitor.waitForStartup(); } - + procStage.start(); procStage.waitForStartup(); - + onCloseReplicationThread.start(); onCloseReplicationThread.waitForStartup(); - + serverStage.start(); serverStage.waitForStartup(); - + if (Logging.isInfo()) Logging.logMessage(Logging.LEVEL_INFO, Category.lifecycle, this, "MRC operational, listening on port %d", config.getPort()); - + } catch (Exception ex) { Logging.logMessage(Logging.LEVEL_ERROR, this, "STARTUP FAILED!"); Logging.logError(Logging.LEVEL_ERROR, this, ex); System.exit(1); } } - + public void shutdown() throws Exception { - + for (MRCStatusListener listener : statusListener) { listener.shuttingDown(); } - + onCloseReplicationThread.shutdown(); onCloseReplicationThread.waitForShutdown(); - + heartbeatThread.shutdown(); heartbeatThread.waitForShutdown(); - + serverStage.shutdown(); serverStage.waitForShutdown(); - + clientStage.shutdown(); clientStage.waitForShutdown(); - + osdMonitor.shutdown(); osdMonitor.waitForShutdown(); - + if (replicated) { mrcMonitor.shutdown(); mrcMonitor.waitForShutdown(); } - + procStage.shutdown(); procStage.waitForShutdown(); - + volumeManager.shutdown(); - + statusServer.shutdown(); } - + public void requestFinished(MRCRequest request) { // send response back to client, if a pinky request is present assert (request != null); - + final RPCServerRequest rpcRequest = request.getRPCRequest(); assert (rpcRequest != null); - + if (request.getError() != null) { - + final ErrorRecord error = request.getError(); final String errorMessage = error.getErrorMessage() == null ? "" : error.getErrorMessage(); - + switch (error.getErrorType()) { - + case INTERNAL_SERVER_ERROR: { Logging.logMessage(Logging.LEVEL_ERROR, this, "%s / request: %s", errorMessage, request.toString()); if (error.getThrowable() != null) @@ -499,7 +500,7 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle error.getStackTrace()); break; } - + case INVALID_PROC_ID: { if (Logging.isDebug()) { Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, "unknown operation: %d", request @@ -509,7 +510,7 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle error.getStackTrace()); break; } - + case REDIRECT: { if (Logging.isDebug()) { Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, "redirect to: %s", errorMessage); @@ -517,7 +518,7 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle rpcRequest.sendRedirect(errorMessage); break; } - + default: { Logging.logMessage(Logging.LEVEL_ERROR, this, "some unexpected exception occurred"); Logging.logError(Logging.LEVEL_ERROR, this, error.getThrowable()); @@ -527,7 +528,7 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle } } } - + else { assert (request.getResponse() != null); if (Logging.isDebug()) { @@ -535,27 +536,27 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle .getRPCRequest().getHeader().getCallId()); Logging.logMessage(Logging.LEVEL_DEBUG, Category.proc, this, "%s", request.getResponse().toString()); } - + try { rpcRequest.sendResponse(request.getResponse(), null); } catch (IOException e) { Logging.logError(Logging.LEVEL_ERROR, this, e); } } - + } - + public int getNumConnections() { return this.serverStage.getNumConnections(); } - + public long getNumRequests() { return this.serverStage.getPendingRequests(); } - + public Map getStatusInformation() { HashMap data = new HashMap(); - + data.put(Vars.AVAILPROCS, String.valueOf(Runtime.getRuntime().availableProcessors())); data.put(Vars.BPSTATS, BufferPool.getStatus()); data.put(Vars.DEBUG, Integer.toString(config.getDebugLevel())); @@ -565,24 +566,24 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle + config.getDirectoryService().getHostName() + ":" + config.getDirectoryService().getPort()); data.put(Vars.GLOBALRESYNC, Long.toString(TimeSync.getTimeSyncInterval())); - + final long globalTime = TimeSync.getGlobalTime(); final long localTime = TimeSync.getLocalSystemTime(); data.put(Vars.GLOBALTIME, new Date(globalTime).toString() + " (" + globalTime + ")"); data.put(Vars.LOCALTIME, new Date(localTime).toString() + " (" + localTime + ")"); data.put(Vars.LOCALRESYNC, Long.toString(TimeSync.getLocalRenewInterval())); - + data.put(Vars.PORT, Integer.toString(config.getPort())); - + data.put(Vars.UUID, config.getUUID().toString()); data.put(Vars.UUIDCACHE, UUIDResolver.getCache()); data.put(Vars.PROTOVERSION, Integer.toString(MRCServiceConstants.INTERFACE_ID)); data.put(Vars.VERSION, VersionManagement.RELEASE_VERSION); data.put(Vars.DBVERSION, volumeManager.getDBVersion()); - + data.put(Vars.PINKYQ, Long.toString(this.serverStage.getPendingRequests())); data.put(Vars.NUMCON, Integer.toString(this.serverStage.getNumConnections())); - + long freeMem = Runtime.getRuntime().freeMemory(); String span = ""; if (freeMem < 1024 * 1024 * 32) { @@ -595,16 +596,16 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle span + OutputUtils.formatBytes(freeMem) + " / " + OutputUtils.formatBytes(Runtime.getRuntime().maxMemory()) + " / " + OutputUtils.formatBytes(Runtime.getRuntime().totalMemory()) + ""); - + StringBuffer rqTableBuf = new StringBuffer(); long totalRequests = 0; for (Entry entry : procStage.get_opCountMap().entrySet()) { - + long count = entry.getValue(); totalRequests += count; - + if (count != 0) { - + try { String req = StatusPage.getOpName(entry.getKey()); rqTableBuf.append("'"); @@ -612,43 +613,43 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle rqTableBuf.append("'"); rqTableBuf.append(count); rqTableBuf.append(""); - + } catch (Exception e) { // ignore } } } - + data.put(Vars.TOTALNUMRQ, totalRequests + ""); data.put(Vars.RQSTATS, rqTableBuf.toString()); - + // add volume statistics try { Collection sMans = volumeManager.getStorageManagers(); - + if (sMans != null) { - + StringBuffer volTableBuf = new StringBuffer(); - + List volumes = new ArrayList(sMans.size()); for (StorageManager sMan : sMans) volumes.add(sMan.getVolumeInfo()); - + Collections.sort(volumes, new Comparator() { @Override public int compare(VolumeInfo o1, VolumeInfo o2) { return o1.getName().compareTo(o2.getName()); } }); - + boolean first = true; for (VolumeInfo v : volumes) { - + ServiceSet osdList = osdMonitor.getUsableOSDs(v.getId()).build(); - + if (!first) volTableBuf.append("
"); - + volTableBuf.append(""); volTableBuf.append(v.getName()); volTableBuf @@ -661,11 +662,11 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle if (it.hasNext()) volTableBuf.append(", "); } - + StripingPolicy defaultSP = volumeManager.getStorageManager(v.getId()).getDefaultStripingPolicy(1); - + AccessControlPolicyType policy = AccessControlPolicyType.valueOf(v.getAcPolicyId()); - + volTableBuf.append("striping policy"); volTableBuf.append(Converter.stripingPolicyToString(defaultSP)); volTableBuf.append("access policy"); @@ -680,87 +681,84 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle volTableBuf.append(v.getNumDirs()); volTableBuf.append("free disk space:"); - // Use minimum of quota and free space on osds as free disk space. + // Use minimum of free space relative to the quota and free space on osds as free disk space. long quota = v.getVolumeQuota(); long freeSpaceOnOsds = osdMonitor.getFreeSpace(v.getId()); - if (quota == 0 || quota > freeSpaceOnOsds) { - volTableBuf.append(OutputUtils.formatBytes(freeSpaceOnOsds)); + long quotaFreeSpace = quota - v.getVolumeSize(); + if (quota != 0 && quotaFreeSpace < freeSpaceOnOsds) { + quotaFreeSpace = quotaFreeSpace < 0 ? 0 : quotaFreeSpace; + volTableBuf.append(OutputUtils.formatBytes(quotaFreeSpace)); } else { - long freeSpace = quota - v.getVolumeSize(); - if (freeSpace < 0) { - volTableBuf.append("0 bytes"); - } else { - volTableBuf.append(OutputUtils.formatBytes(freeSpace)); - } + volTableBuf.append(OutputUtils.formatBytes(freeSpaceOnOsds)); } volTableBuf.append("occupied disk space:"); volTableBuf.append(OutputUtils.formatBytes(v.getVolumeSize())); volTableBuf.append(""); - + first = false; } - + data.put(Vars.VOLUMES, volTableBuf.toString()); } - + else { data.put(Vars.VOLUMES, "Volumes not yet initialized!"); } - + } catch (Exception exc) { data.put(Vars.VOLUMES, "could not retrieve volume info due to an server internal error: " + exc + ""); } - + return data; } - + public VolumeManager getVolumeManager() { return volumeManager; } - + public FileAccessManager getFileAccessManager() { return fileAccessManager; } - + public AuthenticationProvider getAuthProvider() { return authProvider; } - + public OSDStatusManager getOSDStatusManager() { return osdMonitor; } - + public OnCloseReplicationThread getOnCloseReplicationThread() { return onCloseReplicationThread; } - + public MRCPolicyContainer getPolicyContainer() { return policyContainer; } - + public DIRClient getDirClient() { return dirClient; } - + public OSDServiceClient getOSDClient() { return osdClient; } - + public MRCConfig getConfig() { return config; } - + @Override public void startupPerformed() { } - + @Override public void shutdownPerformed() { } - + @Override public void crashPerformed(Throwable cause) { final String report = CrashReporter.createCrashReport("MRC", VersionManagement.RELEASE_VERSION, cause); @@ -773,21 +771,21 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle System.exit(1); } } - + @Override public void receiveRecord(RPCServerRequest rq) { - + // final ONCRPCRequestHeader hdr = rq.getRequestHeader(); RPCHeader hdr = rq.getHeader(); - + if (hdr.getMessageType() != MessageType.RPC_REQUEST) { rq.sendError(ErrorType.GARBAGE_ARGS, POSIXErrno.POSIX_ERROR_EIO, "expected RPC request message type but got " + hdr.getMessageType()); return; } - + final RPCHeader.RequestHeader rqHdr = hdr.getRequestHeader(); - + if (rqHdr.getInterfaceId() != MRCServiceConstants.INTERFACE_ID) { rq.sendError( ErrorType.INVALID_INTERFACE_ID, @@ -795,40 +793,40 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle "Invalid interface id. This is a MRC service. You probably wanted to contact another service. Check the used address and port."); return; } - + if (Logging.isDebug()) Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, "enqueueing request: %s", rq.toString()); - + // no callback, special stage which executes the operatios procStage.enqueueOperation(new MRCRequest(rq), ProcessingStage.STAGEOP_PARSE_AND_EXECUTE, null); } - + @Override public void failed(Throwable error, Object context) { MRCRequest request = (MRCRequest) context; assert (request != null); - + final RPCServerRequest rpcRequest = request.getRPCRequest(); assert (rpcRequest != null); - + if (request.getError() == null) request.setError(ErrorType.INTERNAL_SERVER_ERROR, error.getMessage()); requestFinished(request); } - + @Override public void finished(Object result, Object context) { requestFinished((MRCRequest) context); } - + public void addStatusListener(MRCStatusListener listener) { this.statusListener.add(listener); } - + public void removeStatusListener(MRCStatusListener listener) { this.statusListener.remove(listener); } - + /** * Tells all listeners when the configuration has changed. */ @@ -837,7 +835,7 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle listener.MRCConfigChanged(this.config); } } - + /** * Tells all listeners when a Volume was created. */ @@ -846,13 +844,13 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle listener.volumeCreated(); } } - + public void notifyVolumeDeleted() { for (MRCStatusListener listener : statusListener) { listener.volumeDeleted(); } } - + /** * Getter for a timestamp when the heartbeatthread sent his last heartbeat * @@ -861,39 +859,39 @@ public class MRCRequestDispatcher implements RPCServerRequestListener, LifeCycle public long getLastHeartbeat() { return heartbeatThread.getLastHeartbeat(); } - + public Map getDBStatus() { return volumeManager == null ? null : volumeManager.getDBStatus(); } - + public String getReplMasterUUID() throws MRCException { - + if (replicated) { InetSocketAddress addr = (InetSocketAddress) volumeManager.getDBStatus().get("replication.control.master"); - + String uuid = addr == null ? null : mrcMonitor.getUUIDForReplHost(addr); - + // if the UUID could not be resolved immediately, fetch MRC status // and try again if (uuid == null) { try { mrcMonitor.waitForNextSync(true); - + addr = (InetSocketAddress) volumeManager.getDBStatus().get("replication.control.master"); uuid = addr == null ? null : mrcMonitor.getUUIDForReplHost(addr); - + } catch (InterruptedException e) { } - + if (uuid == null) { Logging.logMessage(Logging.LEVEL_INFO, this, "unable to detect replication master; BabuDB addr=%s, UUID=%s", addr.toString(), uuid); throw new MRCException("could not detect replication master"); } } - + return uuid; - + } else return null; } -- GitLab From 14ec94411eecb663c6760aaa194e12df5bb02974 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 1 Jul 2014 13:42:12 +0200 Subject: [PATCH 028/192] client: Added multipliers for quota in mkfs.xtreemfs. --- cpp/include/libxtreemfs/helper.h | 5 +++++ cpp/include/mkfs.xtreemfs/mkfs_options.h | 2 +- cpp/src/libxtreemfs/helper.cpp | 24 ++++++++++++++++++++++++ cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp | 10 ++++++++-- cpp/src/mkfs.xtreemfs/mkfs_options.cpp | 4 ++-- 5 files changed, 40 insertions(+), 5 deletions(-) diff --git a/cpp/include/libxtreemfs/helper.h b/cpp/include/libxtreemfs/helper.h index fda99013f..30d459dec 100644 --- a/cpp/include/libxtreemfs/helper.h +++ b/cpp/include/libxtreemfs/helper.h @@ -138,6 +138,11 @@ boost::unordered_set GetNetworks(); std::string GetNetworkStringUnix(const struct ifaddrs* ifaddr); #endif // __linux__ +/** + * Parses human-readable byte numbers to byte counts + */ +long parseByteNumber(const char *byte_number); + } // namespace xtreemfs #endif // CPP_INCLUDE_LIBXTREEMFS_HELPER_H_ diff --git a/cpp/include/mkfs.xtreemfs/mkfs_options.h b/cpp/include/mkfs.xtreemfs/mkfs_options.h index bc2050aef..9db5d01f6 100644 --- a/cpp/include/mkfs.xtreemfs/mkfs_options.h +++ b/cpp/include/mkfs.xtreemfs/mkfs_options.h @@ -67,7 +67,7 @@ class MkfsOptions : public Options { int volume_mode_octal; /** Quota of the volume*/ - long volume_quota; + std::string volume_quota; /** Name of the owner of the new volume. */ std::string owner_username; diff --git a/cpp/src/libxtreemfs/helper.cpp b/cpp/src/libxtreemfs/helper.cpp index dd2cfcfb5..a11b236ce 100644 --- a/cpp/src/libxtreemfs/helper.cpp +++ b/cpp/src/libxtreemfs/helper.cpp @@ -539,5 +539,29 @@ boost::unordered_set GetNetworks() { return result; } +/** + * Parses human-readable byte numbers to byte counts + */ +long parseByteNumber(const char *byte_number) { + char *expptr; + double coeff = strtod(byte_number, &expptr); + + int exp = 0; + int unit = 1024; + switch (toupper(*expptr)) { + case 'B': exp = 0; break; + case 'K': exp = 3; break; + case 'M': exp = 6; break; + case 'G': exp = 9; break; + case 'T': exp = 12; break; + + case '\0': exp = 0; goto done; + + default: return -1; + } + + done: + return exp ? coeff * pow(unit, exp / 3) : coeff; +} } // namespace xtreemfs diff --git a/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp b/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp index a74e7ab62..30c5fe97d 100644 --- a/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp +++ b/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp @@ -128,11 +128,17 @@ int main(int argc, char* argv[]) { return 1; } - if (options.volume_quota < 0) { + if (options.volume_quota[0] == '-') { cout << "Error: Quota has to be greater or equal zero \n"; return 1; } + long volume_quota = parseByteNumber(options.volume_quota.c_str()); + if (volume_quota == -1) { + cout << "Error: " << options.volume_quota << " is not a valid Quota \n"; + return 1; + } + Auth auth; if (options.admin_password.empty()) { auth.set_auth_type(AUTH_NONE); @@ -206,7 +212,7 @@ int main(int argc, char* argv[]) { options.owner_username, options.owner_groupname, options.access_policy_type, - options.volume_quota, + volume_quota, options.default_striping_policy_type, options.default_stripe_size, options.default_stripe_width, diff --git a/cpp/src/mkfs.xtreemfs/mkfs_options.cpp b/cpp/src/mkfs.xtreemfs/mkfs_options.cpp index 564a79372..5fe8f8a7a 100644 --- a/cpp/src/mkfs.xtreemfs/mkfs_options.cpp +++ b/cpp/src/mkfs.xtreemfs/mkfs_options.cpp @@ -53,7 +53,7 @@ MkfsOptions::MkfsOptions() : Options() { // Volume options. volume_mode_decimal = 511; volume_mode_octal = 777; - volume_quota = 0; + volume_quota = "0"; owner_username = ""; owner_groupname = ""; access_policy_type = xtreemfs::pbrpc::ACCESS_CONTROL_POLICY_POSIX; @@ -75,7 +75,7 @@ MkfsOptions::MkfsOptions() : Options() { ->default_value(access_policy_type_string), "Access-control-policy=NULL|POSIX|VOLUME") ("quota,q", po::value(&volume_quota)->default_value(volume_quota), - "Quota of the volume in bytes (default value 0, i.e. quota is disabled"); + "Quota of the volume in bytes (default value 0, i.e. quota is disabled), format: B|MB|GB|TB"); // Striping policy options. default_striping_policy_type = xtreemfs::pbrpc::STRIPING_POLICY_RAID0; -- GitLab From 28326cee16a70ff1dcda4d21f65e79a7af1572a1 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 3 Jul 2014 10:15:43 +0200 Subject: [PATCH 029/192] client: Corrected typo. --- cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp b/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp index 30c5fe97d..7655482d8 100644 --- a/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp +++ b/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp @@ -135,7 +135,7 @@ int main(int argc, char* argv[]) { long volume_quota = parseByteNumber(options.volume_quota.c_str()); if (volume_quota == -1) { - cout << "Error: " << options.volume_quota << " is not a valid Quota \n"; + cout << "Error: " << options.volume_quota << " is not a valid quota.\n"; return 1; } -- GitLab From 6b832b3b1273bfacc8be76f3d632d8672d4bd1a4 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 3 Jul 2014 10:17:29 +0200 Subject: [PATCH 030/192] client: Added multipliers for quota in xtfsutil. --- cpp/src/libxtreemfs/helper.cpp | 36 +++++++++---------- cpp/src/xtfsutil/xtfsutil.cpp | 53 ++++++++++++++-------------- cpp/src/xtfsutil/xtfsutil_server.cpp | 36 +++++++++++-------- 3 files changed, 65 insertions(+), 60 deletions(-) diff --git a/cpp/src/libxtreemfs/helper.cpp b/cpp/src/libxtreemfs/helper.cpp index a11b236ce..d78bd7e0f 100644 --- a/cpp/src/libxtreemfs/helper.cpp +++ b/cpp/src/libxtreemfs/helper.cpp @@ -543,25 +543,23 @@ boost::unordered_set GetNetworks() { * Parses human-readable byte numbers to byte counts */ long parseByteNumber(const char *byte_number) { - char *expptr; - double coeff = strtod(byte_number, &expptr); - - int exp = 0; - int unit = 1024; - switch (toupper(*expptr)) { - case 'B': exp = 0; break; - case 'K': exp = 3; break; - case 'M': exp = 6; break; - case 'G': exp = 9; break; - case 'T': exp = 12; break; - - case '\0': exp = 0; goto done; - - default: return -1; - } - - done: - return exp ? coeff * pow(unit, exp / 3) : coeff; + char *expptr; + double coeff = strtod(byte_number, &expptr); + + int exp = 0; + int unit = 1024; + switch (toupper(*expptr)) { + case 'B': exp = 0; break; + case 'K': exp = 3; break; + case 'M': exp = 6; break; + case 'G': exp = 9; break; + case 'T': exp = 12; break; + + case '\0': exp = 0; break; + + default: return -1; + } + return exp ? coeff * pow(unit, exp / 3) : coeff; } } // namespace xtreemfs diff --git a/cpp/src/xtfsutil/xtfsutil.cpp b/cpp/src/xtfsutil/xtfsutil.cpp index 30eb70be7..81df50d62 100644 --- a/cpp/src/xtfsutil/xtfsutil.cpp +++ b/cpp/src/xtfsutil/xtfsutil.cpp @@ -398,30 +398,31 @@ bool SetVolumeQuota(const string& xctl_file, const string& path, const variables_map& vm) { - const long quota = vm["set-quota"].as(); - - if (path != "/") { - cerr << "Quota must be set on volume." << endl; - return false; - } - - if (quota < 0) { - cerr << "The minimal quota must be 0 (was set to: " << quota << ")." << endl; - return false; - } - - Json::Value request(Json::objectValue); - request["operation"] = "setVolumeQuota"; - request["path"] = path; - request["quota"] = boost::lexical_cast(quota); - Json::Value response; - if (executeOperation(xctl_file, request, &response)) { - cout << "Set volume quota to " << quota << "." << endl; - return true; - } else { - cerr << "FAILED" << endl; - return false; - } + const string quota = vm["set-quota"].as(); + + if (path != "/") { + cerr << "Quota must be set on volume root." << endl; + return false; + } + + if (quota[0] == '-') { + cerr << "The minimal quota must be 0 (was set to: " << quota << ")." + << endl; + return false; + } + + Json::Value request(Json::objectValue); + request["operation"] = "setVolumeQuota"; + request["path"] = path; + request["quota"] = quota; + Json::Value response; + if (executeOperation(xctl_file, request, &response)) { + cout << "Set volume quota to " << quota << "." << endl; + return true; + } else { + cerr << "FAILED" << endl; + return false; + } } // Sets the default replication policy. @@ -1072,8 +1073,8 @@ int main(int argc, char **argv) { "adds/modifies an ACL entry, format: u|g|m|o:[]:[|]") ("del-acl", value(), "removes an ACL entry, format: u|g|m|o:") - ("set-quota", value(), - "sets the volume quota in bytes (set quota to 0 to disable the quota)"); + ("set-quota", value(), + "sets the volume quota in bytes (set quota to 0 to disable the quota), format: B|KB|MB|GB|TB"); options_description snapshot_desc("Snapshot Options"); snapshot_desc.add_options() diff --git a/cpp/src/xtfsutil/xtfsutil_server.cpp b/cpp/src/xtfsutil/xtfsutil_server.cpp index 31288ebd1..7548694b5 100644 --- a/cpp/src/xtfsutil/xtfsutil_server.cpp +++ b/cpp/src/xtfsutil/xtfsutil_server.cpp @@ -22,6 +22,7 @@ #include "libxtreemfs/client.h" #include "libxtreemfs/volume.h" #include "libxtreemfs/xtreemfs_exception.h" +#include "libxtreemfs/helper.h" #include "util/error_log.h" #include "util/logging.h" @@ -636,21 +637,26 @@ void XtfsUtilServer::OpSetVolumeQuota( const Json::Value& input, Json::Value* output) { - if (!input.isMember("path") || !input["path"].isString() || - !input.isMember("quota") || !input["quota"].isString()) { - (*output)["error"] = Json::Value("One of the following fields is missing or" - " has an invalid value: path, quota."); - return; - } - const string path = input["path"].asString(); - const string quota = input["quota"].asString(); - - volume_->SetXAttr(uc, - path, - "xtreemfs.quota", - quota, - xtreemfs::pbrpc::XATTR_FLAGS_REPLACE); - (*output)["result"] = Json::Value(Json::objectValue); + if (!input.isMember("path") || !input["path"].isString() + || !input.isMember("quota") || !input["quota"].isString()) { + (*output)["error"] = Json::Value("One of the following fields is missing or" + " has an invalid value: path, quota."); + return; + } + + const string path = input["path"].asString(); + const string quota = boost::lexical_cast( + parseByteNumber(input["quota"].asCString())); + + if (quota == "-1") { + (*output)["error"] = Json::Value( + input["quota"].asString() + " is not a valid quota."); + return; + } + + volume_->SetXAttr(uc, path, "xtreemfs.quota", quota, + xtreemfs::pbrpc::XATTR_FLAGS_REPLACE); + (*output)["result"] = Json::Value(Json::objectValue); } bool XtfsUtilServer::checkXctlFile(const std::string& path) { -- GitLab From d09be456935378bf1de27ccd199cd8daa991d7e8 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 3 Jul 2014 11:47:38 +0200 Subject: [PATCH 031/192] servers: Consider volume quota in available space computation (DIR status page). --- .../src/org/xtreemfs/mrc/utils/MRCHelper.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java b/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java index 1b120f796..8349a3474 100644 --- a/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java +++ b/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java @@ -128,6 +128,19 @@ public class MRCHelper { String volSize = null; try { volSize = String.valueOf(sMan.getVolumeInfo().getVolumeSize()); + try { + // Use minimum of free space relative to the quota and free space on osds as free disk space. + long quota = vol.getVolumeQuota(); + long quotaFreeSpace = quota - vol.getVolumeSize(); + if (quota != 0 && quotaFreeSpace < Long.valueOf(free)) { + quotaFreeSpace = quotaFreeSpace < 0 ? 0 : quotaFreeSpace; + free = String.valueOf(quotaFreeSpace); + } + } catch (DatabaseException e) { + Logging.logMessage(Logging.LEVEL_WARN, Category.storage, null, + "could not retrieve volume quota from database for volume '%s': %s", + new Object[] { vol.getName(), e.toString() }); + } } catch (DatabaseException e) { Logging.logMessage(Logging.LEVEL_WARN, Category.storage, null, "could not retrieve volume size from database for volume '%s': %s", -- GitLab From 4ec6bfad34d23f3f4488c27849dafcec95b1a524 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 3 Jul 2014 13:03:09 +0200 Subject: [PATCH 032/192] client: Check quota value after converting quota to long. --- cpp/include/libxtreemfs/helper.h | 2 +- cpp/src/libxtreemfs/helper.cpp | 4 ++-- cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp | 10 +++++----- cpp/src/xtfsutil/xtfsutil.cpp | 6 ------ cpp/src/xtfsutil/xtfsutil_server.cpp | 15 ++++++++++----- 5 files changed, 18 insertions(+), 19 deletions(-) diff --git a/cpp/include/libxtreemfs/helper.h b/cpp/include/libxtreemfs/helper.h index 30d459dec..0f3cb47c4 100644 --- a/cpp/include/libxtreemfs/helper.h +++ b/cpp/include/libxtreemfs/helper.h @@ -141,7 +141,7 @@ std::string GetNetworkStringUnix(const struct ifaddrs* ifaddr); /** * Parses human-readable byte numbers to byte counts */ -long parseByteNumber(const char *byte_number); +long parseByteNumber(std::string byte_number); } // namespace xtreemfs diff --git a/cpp/src/libxtreemfs/helper.cpp b/cpp/src/libxtreemfs/helper.cpp index d78bd7e0f..e96fba7ae 100644 --- a/cpp/src/libxtreemfs/helper.cpp +++ b/cpp/src/libxtreemfs/helper.cpp @@ -542,9 +542,9 @@ boost::unordered_set GetNetworks() { /** * Parses human-readable byte numbers to byte counts */ -long parseByteNumber(const char *byte_number) { +long parseByteNumber(string byte_number) { char *expptr; - double coeff = strtod(byte_number, &expptr); + double coeff = strtod(byte_number.c_str(), &expptr); int exp = 0; int unit = 1024; diff --git a/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp b/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp index 7655482d8..fbc4021da 100644 --- a/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp +++ b/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp @@ -128,14 +128,14 @@ int main(int argc, char* argv[]) { return 1; } - if (options.volume_quota[0] == '-') { - cout << "Error: Quota has to be greater or equal zero \n"; + long volume_quota = parseByteNumber(options.volume_quota); + if (volume_quota == -1) { + cout << "Error: " << options.volume_quota << " is not a valid quota.\n"; return 1; } - long volume_quota = parseByteNumber(options.volume_quota.c_str()); - if (volume_quota == -1) { - cout << "Error: " << options.volume_quota << " is not a valid quota.\n"; + if (volume_quota < 0) { + cout << "Error: Quota has to be greater or equal zero \n"; return 1; } diff --git a/cpp/src/xtfsutil/xtfsutil.cpp b/cpp/src/xtfsutil/xtfsutil.cpp index 81df50d62..4fe678b08 100644 --- a/cpp/src/xtfsutil/xtfsutil.cpp +++ b/cpp/src/xtfsutil/xtfsutil.cpp @@ -405,12 +405,6 @@ bool SetVolumeQuota(const string& xctl_file, return false; } - if (quota[0] == '-') { - cerr << "The minimal quota must be 0 (was set to: " << quota << ")." - << endl; - return false; - } - Json::Value request(Json::objectValue); request["operation"] = "setVolumeQuota"; request["path"] = path; diff --git a/cpp/src/xtfsutil/xtfsutil_server.cpp b/cpp/src/xtfsutil/xtfsutil_server.cpp index 7548694b5..4006c2540 100644 --- a/cpp/src/xtfsutil/xtfsutil_server.cpp +++ b/cpp/src/xtfsutil/xtfsutil_server.cpp @@ -645,17 +645,22 @@ void XtfsUtilServer::OpSetVolumeQuota( } const string path = input["path"].asString(); - const string quota = boost::lexical_cast( - parseByteNumber(input["quota"].asCString())); + const long quota = parseByteNumber(input["quota"].asString()); - if (quota == "-1") { + if (quota == -1) { (*output)["error"] = Json::Value( input["quota"].asString() + " is not a valid quota."); return; } - volume_->SetXAttr(uc, path, "xtreemfs.quota", quota, - xtreemfs::pbrpc::XATTR_FLAGS_REPLACE); + if (quota < 0) { + (*output)["error"] = "Quota has to be greater or equal zero (was set to: " + + boost::lexical_cast(quota) + ")"; + return; + } + + volume_->SetXAttr(uc, path, "xtreemfs.quota", + boost::lexical_cast(quota), xtreemfs::pbrpc::XATTR_FLAGS_REPLACE); (*output)["result"] = Json::Value(Json::objectValue); } -- GitLab From 066efbb37e4d18676c38a674e2f68f30339e2f81 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Thu, 3 Jul 2014 15:49:34 +0200 Subject: [PATCH 033/192] interface: views: Add modified time to XLocSetVersionState. --- cpp/generated/xtreemfs/OSD.pb.cc | 454 ++++++++-------- cpp/generated/xtreemfs/OSD.pb.h | 34 +- interface/xtreemfs/OSD.proto | 1 + .../pbrpc/generatedinterfaces/OSD.java | 498 ++++++++++-------- 4 files changed, 571 insertions(+), 416 deletions(-) diff --git a/cpp/generated/xtreemfs/OSD.pb.cc b/cpp/generated/xtreemfs/OSD.pb.cc index 14a7e88d4..fe753c95d 100644 --- a/cpp/generated/xtreemfs/OSD.pb.cc +++ b/cpp/generated/xtreemfs/OSD.pb.cc @@ -272,9 +272,10 @@ void protobuf_AssignDesc_xtreemfs_2fOSD_2eproto() { ::google::protobuf::MessageFactory::generated_factory(), sizeof(TruncateLog)); XLocSetVersionState_descriptor_ = file->message_type(7); - static const int XLocSetVersionState_offsets_[2] = { + static const int XLocSetVersionState_offsets_[3] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(XLocSetVersionState, version_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(XLocSetVersionState, invalidated_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(XLocSetVersionState, modified_time_), }; XLocSetVersionState_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( @@ -1061,216 +1062,217 @@ void protobuf_AddDesc_xtreemfs_2fOSD_2eproto() { "ect_version\030\002 \002(\006\"=\n\016TruncateRecord\022\017\n\007v" "ersion\030\001 \002(\006\022\032\n\022last_object_number\030\002 \002(\006" "\">\n\013TruncateLog\022/\n\007records\030\001 \003(\0132\036.xtree" - "mfs.pbrpc.TruncateRecord\";\n\023XLocSetVersi" + "mfs.pbrpc.TruncateRecord\"R\n\023XLocSetVersi" "onState\022\017\n\007version\030\001 \002(\007\022\023\n\013invalidated\030" - "\002 \002(\010\"\324\001\n\rReplicaStatus\022\026\n\016truncate_epoc" - "h\030\001 \002(\006\022\021\n\tfile_size\030\002 \002(\006\022\027\n\017max_obj_ve" - "rsion\030\003 \002(\006\022\025\n\rprimary_epoch\030\004 \002(\007\0225\n\016ob" - "jectVersions\030\005 \003(\0132\035.xtreemfs.pbrpc.Obje" - "ctVersion\0221\n\014truncate_log\030\006 \002(\0132\033.xtreem" - "fs.pbrpc.TruncateLog\"X\n\024ObjectVersionMap" - "ping\022\025\n\robject_number\030\001 \002(\006\022\026\n\016object_ve" - "rsion\030\002 \002(\006\022\021\n\tosd_uuids\030\003 \003(\t\"\275\001\n\031Autho" - "ritativeReplicaState\022\026\n\016truncate_epoch\030\001" - " \002(\006\022\027\n\017max_obj_version\030\004 \002(\006\022<\n\016objectV" - "ersions\030\002 \003(\0132$.xtreemfs.pbrpc.ObjectVer" - "sionMapping\0221\n\014truncate_log\030\003 \002(\0132\033.xtre" - "emfs.pbrpc.TruncateLog\"u\n\031InternalReadLo" - "calResponse\022(\n\004data\030\001 \002(\0132\032.xtreemfs.pbr" - "pc.ObjectData\022.\n\nobject_set\030\002 \003(\0132\032.xtre" - "emfs.pbrpc.ObjectList\"\250\001\n\013readRequest\0229\n" - "\020file_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc" - ".FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\robj" - "ect_number\030\003 \002(\006\022\026\n\016object_version\030\004 \002(\006" - "\022\016\n\006offset\030\005 \002(\007\022\016\n\006length\030\006 \002(\007\"t\n\017trun" - "cateRequest\0229\n\020file_credentials\030\001 \002(\0132\037." - "xtreemfs.pbrpc.FileCredentials\022\017\n\007file_i" - "d\030\002 \002(\t\022\025\n\rnew_file_size\030\003 \002(\006\"`\n\022unlink" - "_osd_Request\0229\n\020file_credentials\030\001 \002(\0132\037" - ".xtreemfs.pbrpc.FileCredentials\022\017\n\007file_" - "id\030\002 \002(\t\"\341\001\n\014writeRequest\0229\n\020file_creden" - "tials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredent" - "ials\022\017\n\007file_id\030\002 \002(\t\022\025\n\robject_number\030\003" - " \002(\006\022\026\n\016object_version\030\004 \002(\006\022\016\n\006offset\030\005" - " \002(\007\022\025\n\rlease_timeout\030\006 \002(\006\022/\n\013object_da" - "ta\030\007 \002(\0132\032.xtreemfs.pbrpc.ObjectData\"q\n\036" - "xtreemfs_broadcast_gmaxRequest\022\017\n\007file_i" - "d\030\001 \002(\t\022\026\n\016truncate_epoch\030\002 \002(\006\022\023\n\013last_" - "object\030\003 \002(\006\022\021\n\tfile_size\030\004 \002(\006\"\231\001\n\034xtre" - "emfs_check_objectRequest\0229\n\020file_credent" - "ials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredenti" - "als\022\017\n\007file_id\030\002 \002(\t\022\025\n\robject_number\030\003 " - "\002(\006\022\026\n\016object_version\030\004 \002(\006\"7\n$xtreemfs_" - "cleanup_get_resultsResponse\022\017\n\007results\030\001" - " \003(\t\"9\n#xtreemfs_cleanup_is_runningRespo" - "nse\022\022\n\nis_running\030\001 \002(\010\"n\n\035xtreemfs_clea" - "nup_startRequest\022\026\n\016remove_zombies\030\001 \002(\010" - "\022\035\n\025remove_unavail_volume\030\002 \002(\010\022\026\n\016lost_" - "and_found\030\003 \002(\010\"1\n\037xtreemfs_cleanup_stat" - "usResponse\022\016\n\006status\030\001 \002(\t\"\226\001\n\031xtreemfs_" - "rwr_fetchRequest\0229\n\020file_credentials\030\001 \002" - "(\0132\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007f" - "ile_id\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016o" - "bject_version\030\004 \002(\006\"\232\001\n\035xtreemfs_repair_" - "objectRequest\0229\n\020file_credentials\030\001 \002(\0132" - "\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007file" - "_id\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016obje" - "ct_version\030\004 \002(\006\"N\n\036xtreemfs_rwr_flease_" - "msgRequest\022\027\n\017sender_hostname\030\001 \002(\t\022\023\n\013s" - "ender_port\030\002 \002(\007\"\212\001\n%xtreemfs_rwr_set_pr" - "imary_epochRequest\0229\n\020file_credentials\030\001" - " \002(\0132\037.xtreemfs.pbrpc.FileCredentials\022\017\n" - "\007file_id\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007\"\207\001" - "\n\032xtreemfs_rwr_statusRequest\0229\n\020file_cre" - "dentials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCred" - "entials\022\017\n\007file_id\030\002 \002(\t\022\035\n\025max_local_ob" - "j_version\030\003 \002(\006\"\231\001\n\034xtreemfs_rwr_truncat" + "\002 \002(\010\022\025\n\rmodified_time\030\003 \001(\006\"\324\001\n\rReplica" + "Status\022\026\n\016truncate_epoch\030\001 \002(\006\022\021\n\tfile_s" + "ize\030\002 \002(\006\022\027\n\017max_obj_version\030\003 \002(\006\022\025\n\rpr" + "imary_epoch\030\004 \002(\007\0225\n\016objectVersions\030\005 \003(" + "\0132\035.xtreemfs.pbrpc.ObjectVersion\0221\n\014trun" + "cate_log\030\006 \002(\0132\033.xtreemfs.pbrpc.Truncate" + "Log\"X\n\024ObjectVersionMapping\022\025\n\robject_nu" + "mber\030\001 \002(\006\022\026\n\016object_version\030\002 \002(\006\022\021\n\tos" + "d_uuids\030\003 \003(\t\"\275\001\n\031AuthoritativeReplicaSt" + "ate\022\026\n\016truncate_epoch\030\001 \002(\006\022\027\n\017max_obj_v" + "ersion\030\004 \002(\006\022<\n\016objectVersions\030\002 \003(\0132$.x" + "treemfs.pbrpc.ObjectVersionMapping\0221\n\014tr" + "uncate_log\030\003 \002(\0132\033.xtreemfs.pbrpc.Trunca" + "teLog\"u\n\031InternalReadLocalResponse\022(\n\004da" + "ta\030\001 \002(\0132\032.xtreemfs.pbrpc.ObjectData\022.\n\n" + "object_set\030\002 \003(\0132\032.xtreemfs.pbrpc.Object" + "List\"\250\001\n\013readRequest\0229\n\020file_credentials" + "\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredentials\022" + "\017\n\007file_id\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022" + "\026\n\016object_version\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022" + "\016\n\006length\030\006 \002(\007\"t\n\017truncateRequest\0229\n\020fi" + "le_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.Fi" + "leCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew_fi" + "le_size\030\003 \002(\006\"`\n\022unlink_osd_Request\0229\n\020f" + "ile_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.F" + "ileCredentials\022\017\n\007file_id\030\002 \002(\t\"\341\001\n\014writ" "eRequest\0229\n\020file_credentials\030\001 \002(\0132\037.xtr" "eemfs.pbrpc.FileCredentials\022\017\n\007file_id\030\002" - " \002(\t\022\025\n\rnew_file_size\030\003 \002(\006\022\026\n\016object_ve" - "rsion\030\004 \002(\006\"\347\001\n\032xtreemfs_rwr_updateReque" - "st\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs." - "pbrpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025" - "\n\rnew_file_size\030\003 \002(\006\022\025\n\robject_number\030\007" - " \002(\006\022\026\n\016object_version\030\004 \002(\006\022\016\n\006offset\030\005" - " \002(\007\022\'\n\003obj\030\006 \002(\0132\032.xtreemfs.pbrpc.Objec" - "tData\"o\n!xtreemfs_internal_get_gmaxReque" - "st\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs." - "pbrpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\"t" - "\n&xtreemfs_internal_get_file_sizeRequest" - "\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.pb" - "rpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\"<\n\'" - "xtreemfs_internal_get_file_sizeResponse\022" - "\021\n\tfile_size\030\001 \002(\006\"\222\002\n#xtreemfs_internal" - "_read_localRequest\0229\n\020file_credentials\030\001" - " \002(\0132\037.xtreemfs.pbrpc.FileCredentials\022\017\n" - "\007file_id\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n" - "\016object_version\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022\016\n" - "\006length\030\006 \002(\007\022\032\n\022attach_object_list\030\007 \002(" - "\010\0224\n\020required_objects\030\010 \003(\0132\032.xtreemfs.p" - "brpc.ObjectList\"u\n\'xtreemfs_internal_get" - "_object_setRequest\0229\n\020file_credentials\030\001" - " \002(\0132\037.xtreemfs.pbrpc.FileCredentials\022\017\n" - "\007file_id\030\002 \002(\t\"=\n)xtreemfs_internal_get_" - "fileid_listResponse\022\020\n\010file_ids\030\001 \003(\t\"t\n" - "\013lockRequest\0229\n\020file_credentials\030\001 \002(\0132\037" - ".xtreemfs.pbrpc.FileCredentials\022*\n\014lock_" - "request\030\002 \002(\0132\024.xtreemfs.pbrpc.Lock\"j\n\025x" - "treemfs_pingMesssage\0227\n\013coordinates\030\001 \002(" - "\0132\".xtreemfs.pbrpc.VivaldiCoordinates\022\030\n" - "\020request_response\030\002 \002(\010\"\246\001\n\036xtreemfs_rwr" - "_auth_stateRequest\0229\n\020file_credentials\030\001" - " \002(\0132\037.xtreemfs.pbrpc.FileCredentials\022\017\n" - "\007file_id\030\002 \002(\t\0228\n\005state\030\003 \002(\0132).xtreemfs" - ".pbrpc.AuthoritativeReplicaState\"\207\001\n\"xtr" - "eemfs_rwr_reset_completeRequest\0229\n\020file_" + " \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016object_ve" + "rsion\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022\025\n\rlease_tim" + "eout\030\006 \002(\006\022/\n\013object_data\030\007 \002(\0132\032.xtreem" + "fs.pbrpc.ObjectData\"q\n\036xtreemfs_broadcas" + "t_gmaxRequest\022\017\n\007file_id\030\001 \002(\t\022\026\n\016trunca" + "te_epoch\030\002 \002(\006\022\023\n\013last_object\030\003 \002(\006\022\021\n\tf" + "ile_size\030\004 \002(\006\"\231\001\n\034xtreemfs_check_object" + "Request\0229\n\020file_credentials\030\001 \002(\0132\037.xtre" + "emfs.pbrpc.FileCredentials\022\017\n\007file_id\030\002 " + "\002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016object_ver" + "sion\030\004 \002(\006\"7\n$xtreemfs_cleanup_get_resul" + "tsResponse\022\017\n\007results\030\001 \003(\t\"9\n#xtreemfs_" + "cleanup_is_runningResponse\022\022\n\nis_running" + "\030\001 \002(\010\"n\n\035xtreemfs_cleanup_startRequest\022" + "\026\n\016remove_zombies\030\001 \002(\010\022\035\n\025remove_unavai" + "l_volume\030\002 \002(\010\022\026\n\016lost_and_found\030\003 \002(\010\"1" + "\n\037xtreemfs_cleanup_statusResponse\022\016\n\006sta" + "tus\030\001 \002(\t\"\226\001\n\031xtreemfs_rwr_fetchRequest\022" + "9\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.pbr" + "pc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\ro" + "bject_number\030\003 \002(\006\022\026\n\016object_version\030\004 \002" + "(\006\"\232\001\n\035xtreemfs_repair_objectRequest\0229\n\020" + "file_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc." + "FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\robje" + "ct_number\030\003 \002(\006\022\026\n\016object_version\030\004 \002(\006\"" + "N\n\036xtreemfs_rwr_flease_msgRequest\022\027\n\017sen" + "der_hostname\030\001 \002(\t\022\023\n\013sender_port\030\002 \002(\007\"" + "\212\001\n%xtreemfs_rwr_set_primary_epochReques" + "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n" + "\rprimary_epoch\030\003 \002(\007\"\207\001\n\032xtreemfs_rwr_st" + "atusRequest\0229\n\020file_credentials\030\001 \002(\0132\037." + "xtreemfs.pbrpc.FileCredentials\022\017\n\007file_i" + "d\030\002 \002(\t\022\035\n\025max_local_obj_version\030\003 \002(\006\"\231" + "\001\n\034xtreemfs_rwr_truncateRequest\0229\n\020file_" "credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileC" - "redentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rprimary_e" - "poch\030\003 \002(\007\"q\n#xtreemfs_xloc_set_invalida" - "teRequest\0229\n\020file_credentials\030\001 \002(\0132\037.xt" - "reemfs.pbrpc.FileCredentials\022\017\n\007file_id\030" - "\002 \002(\t\"i\n$xtreemfs_xloc_set_invalidateRes" - "ponse\022\022\n\nis_primary\030\001 \002(\010\022-\n\006status\030\002 \001(" - "\0132\035.xtreemfs.pbrpc.ReplicaStatus2\277\036\n\nOSD" - "Service\022L\n\004read\022\033.xtreemfs.pbrpc.readReq" - "uest\032\032.xtreemfs.pbrpc.ObjectData\"\013\215\265\030\n\000\000" - "\000\230\265\030\001\022V\n\010truncate\022\037.xtreemfs.pbrpc.trunc" - "ateRequest\032 .xtreemfs.pbrpc.OSDWriteResp" - "onse\"\007\215\265\030\013\000\000\000\022T\n\006unlink\022\".xtreemfs.pbrpc" - ".unlink_osd_Request\032\035.xtreemfs.pbrpc.emp" - "tyResponse\"\007\215\265\030\014\000\000\000\022T\n\005write\022\034.xtreemfs." - "pbrpc.writeRequest\032 .xtreemfs.pbrpc.OSDW" - "riteResponse\"\013\215\265\030\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_br" - "oadcast_gmax\022..xtreemfs.pbrpc.xtreemfs_b" - "roadcast_gmaxRequest\032\035.xtreemfs.pbrpc.em" - "ptyResponse\"\007\215\265\030\024\000\000\000\022j\n\025xtreemfs_check_o" - "bject\022,.xtreemfs.pbrpc.xtreemfs_check_ob" - "jectRequest\032\032.xtreemfs.pbrpc.ObjectData\"" - "\007\215\265\030\025\000\000\000\022{\n\034xtreemfs_cleanup_get_results" - "\022\034.xtreemfs.pbrpc.emptyRequest\0324.xtreemf" - "s.pbrpc.xtreemfs_cleanup_get_resultsResp" - "onse\"\007\215\265\030\036\000\000\000\022y\n\033xtreemfs_cleanup_is_run" - "ning\022\034.xtreemfs.pbrpc.emptyRequest\0323.xtr" - "eemfs.pbrpc.xtreemfs_cleanup_is_runningR" - "esponse\"\007\215\265\030\037\000\000\000\022o\n\026xtreemfs_cleanup_sta" - "rt\022-.xtreemfs.pbrpc.xtreemfs_cleanup_sta" - "rtRequest\032\035.xtreemfs.pbrpc.emptyResponse" - "\"\007\215\265\030 \000\000\000\022q\n\027xtreemfs_cleanup_status\022\034.x" - "treemfs.pbrpc.emptyRequest\032/.xtreemfs.pb" - "rpc.xtreemfs_cleanup_statusResponse\"\007\215\265\030" - "!\000\000\000\022]\n\025xtreemfs_cleanup_stop\022\034.xtreemfs" - ".pbrpc.emptyRequest\032\035.xtreemfs.pbrpc.emp" - "tyResponse\"\007\215\265\030\"\000\000\000\022g\n\037xtreemfs_cleanup_" - "versions_start\022\034.xtreemfs.pbrpc.emptyReq" - "uest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030" - "#\000\000\000\022o\n\026xtreemfs_repair_object\022-.xtreemf" - "s.pbrpc.xtreemfs_repair_objectRequest\032\035." - "xtreemfs.pbrpc.emptyResponse\"\007\215\265\030$\000\000\000\022d\n" - "\022xtreemfs_rwr_fetch\022).xtreemfs.pbrpc.xtr" - "eemfs_rwr_fetchRequest\032\032.xtreemfs.pbrpc." - "ObjectData\"\007\215\265\030I\000\000\000\022u\n\027xtreemfs_rwr_flea" - "se_msg\022..xtreemfs.pbrpc.xtreemfs_rwr_fle" - "ase_msgRequest\032\035.xtreemfs.pbrpc.emptyRes" - "ponse\"\013\215\265\030G\000\000\000\240\265\030\001\022^\n\023xtreemfs_rwr_notif" - "y\022\037.xtreemfs.pbrpc.FileCredentials\032\035.xtr" - "eemfs.pbrpc.emptyResponse\"\007\215\265\030K\000\000\000\022|\n\036xt" - "reemfs_rwr_set_primary_epoch\0225.xtreemfs." - "pbrpc.xtreemfs_rwr_set_primary_epochRequ" - "est\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030N\000\000\000" - "\022i\n\023xtreemfs_rwr_status\022*.xtreemfs.pbrpc" - ".xtreemfs_rwr_statusRequest\032\035.xtreemfs.p" - "brpc.ReplicaStatus\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_" - "rwr_truncate\022,.xtreemfs.pbrpc.xtreemfs_r" - "wr_truncateRequest\032\035.xtreemfs.pbrpc.empt" - "yResponse\"\007\215\265\030J\000\000\000\022m\n\023xtreemfs_rwr_updat" - "e\022*.xtreemfs.pbrpc.xtreemfs_rwr_updateRe" - "quest\032\035.xtreemfs.pbrpc.emptyResponse\"\013\215\265" - "\030H\000\000\000\240\265\030\001\022q\n\027xtreemfs_rwr_auth_state\022..x" - "treemfs.pbrpc.xtreemfs_rwr_auth_stateReq" - "uest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030" - "O\000\000\000\022y\n\033xtreemfs_rwr_reset_complete\0222.xt" - "reemfs.pbrpc.xtreemfs_rwr_reset_complete" - "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" - "\215\265\030P\000\000\000\022v\n\032xtreemfs_internal_get_gmax\0221." - "xtreemfs.pbrpc.xtreemfs_internal_get_gma" - "xRequest\032\034.xtreemfs.pbrpc.InternalGmax\"\007" - "\215\265\030(\000\000\000\022h\n\032xtreemfs_internal_truncate\022\037." - "xtreemfs.pbrpc.truncateRequest\032 .xtreemf" - "s.pbrpc.OSDWriteResponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xt" - "reemfs_internal_get_file_size\0226.xtreemfs" - ".pbrpc.xtreemfs_internal_get_file_sizeRe" - "quest\0327.xtreemfs.pbrpc.xtreemfs_internal" - "_get_file_sizeResponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtre" - "emfs_internal_read_local\0223.xtreemfs.pbrp" - "c.xtreemfs_internal_read_localRequest\032)." - "xtreemfs.pbrpc.InternalReadLocalResponse" - "\"\007\215\265\030+\000\000\000\022\200\001\n xtreemfs_internal_get_obje" - "ct_set\0227.xtreemfs.pbrpc.xtreemfs_interna" - "l_get_object_setRequest\032\032.xtreemfs.pbrpc" - ".ObjectList\"\007\215\265\030,\000\000\000\022\205\001\n!xtreemfs_intern" - "al_get_fileid_list\022\034.xtreemfs.pbrpc.empt" - "yRequest\0329.xtreemfs.pbrpc.xtreemfs_inter" - "nal_get_fileid_listResponse\"\007\215\265\030-\000\000\000\022S\n\025" - "xtreemfs_lock_acquire\022\033.xtreemfs.pbrpc.l" - "ockRequest\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0302\000\000" - "\000\022Q\n\023xtreemfs_lock_check\022\033.xtreemfs.pbrp" - "c.lockRequest\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\030" - "3\000\000\000\022\\\n\025xtreemfs_lock_release\022\033.xtreemfs" - ".pbrpc.lockRequest\032\035.xtreemfs.pbrpc.empt" - "yResponse\"\007\215\265\0304\000\000\000\022f\n\rxtreemfs_ping\022%.xt" - "reemfs.pbrpc.xtreemfs_pingMesssage\032%.xtr" - "eemfs.pbrpc.xtreemfs_pingMesssage\"\007\215\265\030<\000" - "\000\000\022Y\n\021xtreemfs_shutdown\022\034.xtreemfs.pbrpc" - ".emptyRequest\032\035.xtreemfs.pbrpc.emptyResp" - "onse\"\007\215\265\030F\000\000\000\022\222\001\n\034xtreemfs_xloc_set_inva" - "lidate\0223.xtreemfs.pbrpc.xtreemfs_xloc_se" - "t_invalidateRequest\0324.xtreemfs.pbrpc.xtr" - "eemfs_xloc_set_invalidateResponse\"\007\215\265\030Q\000" - "\000\000\022}\n#xtreemfs_rwr_auth_state_invalidate" - "d\022..xtreemfs.pbrpc.xtreemfs_rwr_auth_sta" - "teRequest\032\035.xtreemfs.pbrpc.emptyResponse" - "\"\007\215\265\030R\000\000\000\032\007\225\265\0301u\000\000B(\n&org.xtreemfs.pbrpc" - ".generatedinterfaces", 8980); + "redentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew_file_" + "size\030\003 \002(\006\022\026\n\016object_version\030\004 \002(\006\"\347\001\n\032x" + "treemfs_rwr_updateRequest\0229\n\020file_creden" + "tials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredent" + "ials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew_file_size\030\003" + " \002(\006\022\025\n\robject_number\030\007 \002(\006\022\026\n\016object_ve" + "rsion\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022\'\n\003obj\030\006 \002(\013" + "2\032.xtreemfs.pbrpc.ObjectData\"o\n!xtreemfs" + "_internal_get_gmaxRequest\0229\n\020file_creden" + "tials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredent" + "ials\022\017\n\007file_id\030\002 \002(\t\"t\n&xtreemfs_intern" + "al_get_file_sizeRequest\0229\n\020file_credenti" + "als\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredentia" + "ls\022\017\n\007file_id\030\002 \002(\t\"<\n\'xtreemfs_internal" + "_get_file_sizeResponse\022\021\n\tfile_size\030\001 \002(" + "\006\"\222\002\n#xtreemfs_internal_read_localReques" + "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n" + "\robject_number\030\003 \002(\006\022\026\n\016object_version\030\004" + " \002(\006\022\016\n\006offset\030\005 \002(\007\022\016\n\006length\030\006 \002(\007\022\032\n\022" + "attach_object_list\030\007 \002(\010\0224\n\020required_obj" + "ects\030\010 \003(\0132\032.xtreemfs.pbrpc.ObjectList\"u" + "\n\'xtreemfs_internal_get_object_setReques" + "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\"=\n" + ")xtreemfs_internal_get_fileid_listRespon" + "se\022\020\n\010file_ids\030\001 \003(\t\"t\n\013lockRequest\0229\n\020f" + "ile_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.F" + "ileCredentials\022*\n\014lock_request\030\002 \002(\0132\024.x" + "treemfs.pbrpc.Lock\"j\n\025xtreemfs_pingMesss" + "age\0227\n\013coordinates\030\001 \002(\0132\".xtreemfs.pbrp" + "c.VivaldiCoordinates\022\030\n\020request_response" + "\030\002 \002(\010\"\246\001\n\036xtreemfs_rwr_auth_stateReques" + "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\0228\n" + "\005state\030\003 \002(\0132).xtreemfs.pbrpc.Authoritat" + "iveReplicaState\"\207\001\n\"xtreemfs_rwr_reset_c" + "ompleteRequest\0229\n\020file_credentials\030\001 \002(\013" + "2\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007fil" + "e_id\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007\"q\n#xtr" + "eemfs_xloc_set_invalidateRequest\0229\n\020file" + "_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.File" + "Credentials\022\017\n\007file_id\030\002 \002(\t\"i\n$xtreemfs" + "_xloc_set_invalidateResponse\022\022\n\nis_prima" + "ry\030\001 \002(\010\022-\n\006status\030\002 \001(\0132\035.xtreemfs.pbrp" + "c.ReplicaStatus2\277\036\n\nOSDService\022L\n\004read\022\033" + ".xtreemfs.pbrpc.readRequest\032\032.xtreemfs.p" + "brpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010truncate" + "\022\037.xtreemfs.pbrpc.truncateRequest\032 .xtre" + "emfs.pbrpc.OSDWriteResponse\"\007\215\265\030\013\000\000\000\022T\n\006" + "unlink\022\".xtreemfs.pbrpc.unlink_osd_Reque" + "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\014\000" + "\000\000\022T\n\005write\022\034.xtreemfs.pbrpc.writeReques" + "t\032 .xtreemfs.pbrpc.OSDWriteResponse\"\013\215\265\030" + "\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broadcast_gmax\022..xt" + "reemfs.pbrpc.xtreemfs_broadcast_gmaxRequ" + "est\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\024" + "\000\000\000\022j\n\025xtreemfs_check_object\022,.xtreemfs." + "pbrpc.xtreemfs_check_objectRequest\032\032.xtr" + "eemfs.pbrpc.ObjectData\"\007\215\265\030\025\000\000\000\022{\n\034xtree" + "mfs_cleanup_get_results\022\034.xtreemfs.pbrpc" + ".emptyRequest\0324.xtreemfs.pbrpc.xtreemfs_" + "cleanup_get_resultsResponse\"\007\215\265\030\036\000\000\000\022y\n\033" + "xtreemfs_cleanup_is_running\022\034.xtreemfs.p" + "brpc.emptyRequest\0323.xtreemfs.pbrpc.xtree" + "mfs_cleanup_is_runningResponse\"\007\215\265\030\037\000\000\000\022" + "o\n\026xtreemfs_cleanup_start\022-.xtreemfs.pbr" + "pc.xtreemfs_cleanup_startRequest\032\035.xtree" + "mfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022q\n\027xtre" + "emfs_cleanup_status\022\034.xtreemfs.pbrpc.emp" + "tyRequest\032/.xtreemfs.pbrpc.xtreemfs_clea" + "nup_statusResponse\"\007\215\265\030!\000\000\000\022]\n\025xtreemfs_" + "cleanup_stop\022\034.xtreemfs.pbrpc.emptyReque" + "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\"\000" + "\000\000\022g\n\037xtreemfs_cleanup_versions_start\022\034." + "xtreemfs.pbrpc.emptyRequest\032\035.xtreemfs.p" + "brpc.emptyResponse\"\007\215\265\030#\000\000\000\022o\n\026xtreemfs_" + "repair_object\022-.xtreemfs.pbrpc.xtreemfs_" + "repair_objectRequest\032\035.xtreemfs.pbrpc.em" + "ptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xtreemfs_rwr_fet" + "ch\022).xtreemfs.pbrpc.xtreemfs_rwr_fetchRe" + "quest\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030I\000" + "\000\000\022u\n\027xtreemfs_rwr_flease_msg\022..xtreemfs" + ".pbrpc.xtreemfs_rwr_flease_msgRequest\032\035." + "xtreemfs.pbrpc.emptyResponse\"\013\215\265\030G\000\000\000\240\265\030" + "\001\022^\n\023xtreemfs_rwr_notify\022\037.xtreemfs.pbrp" + "c.FileCredentials\032\035.xtreemfs.pbrpc.empty" + "Response\"\007\215\265\030K\000\000\000\022|\n\036xtreemfs_rwr_set_pr" + "imary_epoch\0225.xtreemfs.pbrpc.xtreemfs_rw" + "r_set_primary_epochRequest\032\032.xtreemfs.pb" + "rpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023xtreemfs_rwr_" + "status\022*.xtreemfs.pbrpc.xtreemfs_rwr_sta" + "tusRequest\032\035.xtreemfs.pbrpc.ReplicaStatu" + "s\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_truncate\022,.xt" + "reemfs.pbrpc.xtreemfs_rwr_truncateReques" + "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030J\000\000" + "\000\022m\n\023xtreemfs_rwr_update\022*.xtreemfs.pbrp" + "c.xtreemfs_rwr_updateRequest\032\035.xtreemfs." + "pbrpc.emptyResponse\"\013\215\265\030H\000\000\000\240\265\030\001\022q\n\027xtre" + "emfs_rwr_auth_state\022..xtreemfs.pbrpc.xtr" + "eemfs_rwr_auth_stateRequest\032\035.xtreemfs.p" + "brpc.emptyResponse\"\007\215\265\030O\000\000\000\022y\n\033xtreemfs_" + "rwr_reset_complete\0222.xtreemfs.pbrpc.xtre" + "emfs_rwr_reset_completeRequest\032\035.xtreemf" + "s.pbrpc.emptyResponse\"\007\215\265\030P\000\000\000\022v\n\032xtreem" + "fs_internal_get_gmax\0221.xtreemfs.pbrpc.xt" + "reemfs_internal_get_gmaxRequest\032\034.xtreem" + "fs.pbrpc.InternalGmax\"\007\215\265\030(\000\000\000\022h\n\032xtreem" + "fs_internal_truncate\022\037.xtreemfs.pbrpc.tr" + "uncateRequest\032 .xtreemfs.pbrpc.OSDWriteR" + "esponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemfs_internal_g" + "et_file_size\0226.xtreemfs.pbrpc.xtreemfs_i" + "nternal_get_file_sizeRequest\0327.xtreemfs." + "pbrpc.xtreemfs_internal_get_file_sizeRes" + "ponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_internal_rea" + "d_local\0223.xtreemfs.pbrpc.xtreemfs_intern" + "al_read_localRequest\032).xtreemfs.pbrpc.In" + "ternalReadLocalResponse\"\007\215\265\030+\000\000\000\022\200\001\n xtr" + "eemfs_internal_get_object_set\0227.xtreemfs" + ".pbrpc.xtreemfs_internal_get_object_setR" + "equest\032\032.xtreemfs.pbrpc.ObjectList\"\007\215\265\030," + "\000\000\000\022\205\001\n!xtreemfs_internal_get_fileid_lis" + "t\022\034.xtreemfs.pbrpc.emptyRequest\0329.xtreem" + "fs.pbrpc.xtreemfs_internal_get_fileid_li" + "stResponse\"\007\215\265\030-\000\000\000\022S\n\025xtreemfs_lock_acq" + "uire\022\033.xtreemfs.pbrpc.lockRequest\032\024.xtre" + "emfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023xtreemfs_loc" + "k_check\022\033.xtreemfs.pbrpc.lockRequest\032\024.x" + "treemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022\\\n\025xtreemfs_" + "lock_release\022\033.xtreemfs.pbrpc.lockReques" + "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\0304\000\000" + "\000\022f\n\rxtreemfs_ping\022%.xtreemfs.pbrpc.xtre" + "emfs_pingMesssage\032%.xtreemfs.pbrpc.xtree" + "mfs_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n\021xtreemfs_sh" + "utdown\022\034.xtreemfs.pbrpc.emptyRequest\032\035.x" + "treemfs.pbrpc.emptyResponse\"\007\215\265\030F\000\000\000\022\222\001\n" + "\034xtreemfs_xloc_set_invalidate\0223.xtreemfs" + ".pbrpc.xtreemfs_xloc_set_invalidateReque" + "st\0324.xtreemfs.pbrpc.xtreemfs_xloc_set_in" + "validateResponse\"\007\215\265\030Q\000\000\000\022}\n#xtreemfs_rw" + "r_auth_state_invalidated\022..xtreemfs.pbrp" + "c.xtreemfs_rwr_auth_stateRequest\032\035.xtree" + "mfs.pbrpc.emptyResponse\"\007\215\265\030R\000\000\000\032\007\225\265\0301u\000" + "\000B(\n&org.xtreemfs.pbrpc.generatedinterfa" + "ces", 9003); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "xtreemfs/OSD.proto", &protobuf_RegisterTypes); InternalGmax::default_instance_ = new InternalGmax(); @@ -3303,6 +3305,7 @@ void TruncateLog::Swap(TruncateLog* other) { #ifndef _MSC_VER const int XLocSetVersionState::kVersionFieldNumber; const int XLocSetVersionState::kInvalidatedFieldNumber; +const int XLocSetVersionState::kModifiedTimeFieldNumber; #endif // !_MSC_VER XLocSetVersionState::XLocSetVersionState() @@ -3323,6 +3326,7 @@ void XLocSetVersionState::SharedCtor() { _cached_size_ = 0; version_ = 0u; invalidated_ = false; + modified_time_ = GOOGLE_ULONGLONG(0); ::memset(_has_bits_, 0, sizeof(_has_bits_)); } @@ -3360,6 +3364,7 @@ void XLocSetVersionState::Clear() { if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { version_ = 0u; invalidated_ = false; + modified_time_ = GOOGLE_ULONGLONG(0); } ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); @@ -3398,6 +3403,22 @@ bool XLocSetVersionState::MergePartialFromCodedStream( } else { goto handle_uninterpreted; } + if (input->ExpectTag(25)) goto parse_modified_time; + break; + } + + // optional fixed64 modified_time = 3; + case 3: { + if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == + ::google::protobuf::internal::WireFormatLite::WIRETYPE_FIXED64) { + parse_modified_time: + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + ::google::protobuf::uint64, ::google::protobuf::internal::WireFormatLite::TYPE_FIXED64>( + input, &modified_time_))); + set_has_modified_time(); + } else { + goto handle_uninterpreted; + } if (input->ExpectAtEnd()) return true; break; } @@ -3430,6 +3451,11 @@ void XLocSetVersionState::SerializeWithCachedSizes( ::google::protobuf::internal::WireFormatLite::WriteBool(2, this->invalidated(), output); } + // optional fixed64 modified_time = 3; + if (has_modified_time()) { + ::google::protobuf::internal::WireFormatLite::WriteFixed64(3, this->modified_time(), output); + } + if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); @@ -3448,6 +3474,11 @@ void XLocSetVersionState::SerializeWithCachedSizes( target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(2, this->invalidated(), target); } + // optional fixed64 modified_time = 3; + if (has_modified_time()) { + target = ::google::protobuf::internal::WireFormatLite::WriteFixed64ToArray(3, this->modified_time(), target); + } + if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); @@ -3469,6 +3500,11 @@ int XLocSetVersionState::ByteSize() const { total_size += 1 + 1; } + // optional fixed64 modified_time = 3; + if (has_modified_time()) { + total_size += 1 + 8; + } + } if (!unknown_fields().empty()) { total_size += @@ -3502,6 +3538,9 @@ void XLocSetVersionState::MergeFrom(const XLocSetVersionState& from) { if (from.has_invalidated()) { set_invalidated(from.invalidated()); } + if (from.has_modified_time()) { + set_modified_time(from.modified_time()); + } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } @@ -3528,6 +3567,7 @@ void XLocSetVersionState::Swap(XLocSetVersionState* other) { if (other != this) { std::swap(version_, other->version_); std::swap(invalidated_, other->invalidated_); + std::swap(modified_time_, other->modified_time_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); diff --git a/cpp/generated/xtreemfs/OSD.pb.h b/cpp/generated/xtreemfs/OSD.pb.h index 000d4fcc1..a0d6a6893 100644 --- a/cpp/generated/xtreemfs/OSD.pb.h +++ b/cpp/generated/xtreemfs/OSD.pb.h @@ -856,20 +856,30 @@ class XLocSetVersionState : public ::google::protobuf::Message { inline bool invalidated() const; inline void set_invalidated(bool value); + // optional fixed64 modified_time = 3; + inline bool has_modified_time() const; + inline void clear_modified_time(); + static const int kModifiedTimeFieldNumber = 3; + inline ::google::protobuf::uint64 modified_time() const; + inline void set_modified_time(::google::protobuf::uint64 value); + // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.XLocSetVersionState) private: inline void set_has_version(); inline void clear_has_version(); inline void set_has_invalidated(); inline void clear_has_invalidated(); + inline void set_has_modified_time(); + inline void clear_has_modified_time(); ::google::protobuf::UnknownFieldSet _unknown_fields_; ::google::protobuf::uint32 version_; bool invalidated_; + ::google::protobuf::uint64 modified_time_; mutable int _cached_size_; - ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32]; + ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32]; friend void protobuf_AddDesc_xtreemfs_2fOSD_2eproto(); friend void protobuf_AssignDesc_xtreemfs_2fOSD_2eproto(); @@ -5084,6 +5094,28 @@ inline void XLocSetVersionState::set_invalidated(bool value) { invalidated_ = value; } +// optional fixed64 modified_time = 3; +inline bool XLocSetVersionState::has_modified_time() const { + return (_has_bits_[0] & 0x00000004u) != 0; +} +inline void XLocSetVersionState::set_has_modified_time() { + _has_bits_[0] |= 0x00000004u; +} +inline void XLocSetVersionState::clear_has_modified_time() { + _has_bits_[0] &= ~0x00000004u; +} +inline void XLocSetVersionState::clear_modified_time() { + modified_time_ = GOOGLE_ULONGLONG(0); + clear_has_modified_time(); +} +inline ::google::protobuf::uint64 XLocSetVersionState::modified_time() const { + return modified_time_; +} +inline void XLocSetVersionState::set_modified_time(::google::protobuf::uint64 value) { + set_has_modified_time(); + modified_time_ = value; +} + // ------------------------------------------------------------------- // ReplicaStatus diff --git a/interface/xtreemfs/OSD.proto b/interface/xtreemfs/OSD.proto index f82457ef9..7d2030e57 100644 --- a/interface/xtreemfs/OSD.proto +++ b/interface/xtreemfs/OSD.proto @@ -110,6 +110,7 @@ message TruncateLog { message XLocSetVersionState { required fixed32 version = 1; required bool invalidated = 2; + optional fixed64 modified_time = 3; } // Full status of a replica. Used by the read-write diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java index c082cff54..8462441de 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java @@ -4688,6 +4688,16 @@ public final class OSD { * required bool invalidated = 2; */ boolean getInvalidated(); + + // optional fixed64 modified_time = 3; + /** + * optional fixed64 modified_time = 3; + */ + boolean hasModifiedTime(); + /** + * optional fixed64 modified_time = 3; + */ + long getModifiedTime(); } /** * Protobuf type {@code xtreemfs.pbrpc.XLocSetVersionState} @@ -4756,6 +4766,11 @@ public final class OSD { invalidated_ = input.readBool(); break; } + case 25: { + bitField0_ |= 0x00000004; + modifiedTime_ = input.readFixed64(); + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -4828,9 +4843,26 @@ public final class OSD { return invalidated_; } + // optional fixed64 modified_time = 3; + public static final int MODIFIED_TIME_FIELD_NUMBER = 3; + private long modifiedTime_; + /** + * optional fixed64 modified_time = 3; + */ + public boolean hasModifiedTime() { + return ((bitField0_ & 0x00000004) == 0x00000004); + } + /** + * optional fixed64 modified_time = 3; + */ + public long getModifiedTime() { + return modifiedTime_; + } + private void initFields() { version_ = 0; invalidated_ = false; + modifiedTime_ = 0L; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -4858,6 +4890,9 @@ public final class OSD { if (((bitField0_ & 0x00000002) == 0x00000002)) { output.writeBool(2, invalidated_); } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + output.writeFixed64(3, modifiedTime_); + } getUnknownFields().writeTo(output); } @@ -4875,6 +4910,10 @@ public final class OSD { size += com.google.protobuf.CodedOutputStream .computeBoolSize(2, invalidated_); } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + size += com.google.protobuf.CodedOutputStream + .computeFixed64Size(3, modifiedTime_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -5001,6 +5040,8 @@ public final class OSD { bitField0_ = (bitField0_ & ~0x00000001); invalidated_ = false; bitField0_ = (bitField0_ & ~0x00000002); + modifiedTime_ = 0L; + bitField0_ = (bitField0_ & ~0x00000004); return this; } @@ -5037,6 +5078,10 @@ public final class OSD { to_bitField0_ |= 0x00000002; } result.invalidated_ = invalidated_; + if (((from_bitField0_ & 0x00000004) == 0x00000004)) { + to_bitField0_ |= 0x00000004; + } + result.modifiedTime_ = modifiedTime_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -5059,6 +5104,9 @@ public final class OSD { if (other.hasInvalidated()) { setInvalidated(other.getInvalidated()); } + if (other.hasModifiedTime()) { + setModifiedTime(other.getModifiedTime()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -5160,6 +5208,39 @@ public final class OSD { return this; } + // optional fixed64 modified_time = 3; + private long modifiedTime_ ; + /** + * optional fixed64 modified_time = 3; + */ + public boolean hasModifiedTime() { + return ((bitField0_ & 0x00000004) == 0x00000004); + } + /** + * optional fixed64 modified_time = 3; + */ + public long getModifiedTime() { + return modifiedTime_; + } + /** + * optional fixed64 modified_time = 3; + */ + public Builder setModifiedTime(long value) { + bitField0_ |= 0x00000004; + modifiedTime_ = value; + onChanged(); + return this; + } + /** + * optional fixed64 modified_time = 3; + */ + public Builder clearModifiedTime() { + bitField0_ = (bitField0_ & ~0x00000004); + modifiedTime_ = 0L; + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.XLocSetVersionState) } @@ -32482,216 +32563,217 @@ public final class OSD { "ect_version\030\002 \002(\006\"=\n\016TruncateRecord\022\017\n\007v" + "ersion\030\001 \002(\006\022\032\n\022last_object_number\030\002 \002(\006" + "\">\n\013TruncateLog\022/\n\007records\030\001 \003(\0132\036.xtree" + - "mfs.pbrpc.TruncateRecord\";\n\023XLocSetVersi" + + "mfs.pbrpc.TruncateRecord\"R\n\023XLocSetVersi" + "onState\022\017\n\007version\030\001 \002(\007\022\023\n\013invalidated\030" + - "\002 \002(\010\"\324\001\n\rReplicaStatus\022\026\n\016truncate_epoc" + - "h\030\001 \002(\006\022\021\n\tfile_size\030\002 \002(\006\022\027\n\017max_obj_ve" + - "rsion\030\003 \002(\006\022\025\n\rprimary_epoch\030\004 \002(\007\0225\n\016ob", - "jectVersions\030\005 \003(\0132\035.xtreemfs.pbrpc.Obje" + - "ctVersion\0221\n\014truncate_log\030\006 \002(\0132\033.xtreem" + - "fs.pbrpc.TruncateLog\"X\n\024ObjectVersionMap" + - "ping\022\025\n\robject_number\030\001 \002(\006\022\026\n\016object_ve" + - "rsion\030\002 \002(\006\022\021\n\tosd_uuids\030\003 \003(\t\"\275\001\n\031Autho" + - "ritativeReplicaState\022\026\n\016truncate_epoch\030\001" + - " \002(\006\022\027\n\017max_obj_version\030\004 \002(\006\022<\n\016objectV" + - "ersions\030\002 \003(\0132$.xtreemfs.pbrpc.ObjectVer" + - "sionMapping\0221\n\014truncate_log\030\003 \002(\0132\033.xtre" + - "emfs.pbrpc.TruncateLog\"u\n\031InternalReadLo", - "calResponse\022(\n\004data\030\001 \002(\0132\032.xtreemfs.pbr" + - "pc.ObjectData\022.\n\nobject_set\030\002 \003(\0132\032.xtre" + - "emfs.pbrpc.ObjectList\"\250\001\n\013readRequest\0229\n" + - "\020file_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc" + - ".FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\robj" + - "ect_number\030\003 \002(\006\022\026\n\016object_version\030\004 \002(\006" + - "\022\016\n\006offset\030\005 \002(\007\022\016\n\006length\030\006 \002(\007\"t\n\017trun" + - "cateRequest\0229\n\020file_credentials\030\001 \002(\0132\037." + - "xtreemfs.pbrpc.FileCredentials\022\017\n\007file_i" + - "d\030\002 \002(\t\022\025\n\rnew_file_size\030\003 \002(\006\"`\n\022unlink", - "_osd_Request\0229\n\020file_credentials\030\001 \002(\0132\037" + - ".xtreemfs.pbrpc.FileCredentials\022\017\n\007file_" + - "id\030\002 \002(\t\"\341\001\n\014writeRequest\0229\n\020file_creden" + - "tials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredent" + - "ials\022\017\n\007file_id\030\002 \002(\t\022\025\n\robject_number\030\003" + - " \002(\006\022\026\n\016object_version\030\004 \002(\006\022\016\n\006offset\030\005" + - " \002(\007\022\025\n\rlease_timeout\030\006 \002(\006\022/\n\013object_da" + - "ta\030\007 \002(\0132\032.xtreemfs.pbrpc.ObjectData\"q\n\036" + - "xtreemfs_broadcast_gmaxRequest\022\017\n\007file_i" + - "d\030\001 \002(\t\022\026\n\016truncate_epoch\030\002 \002(\006\022\023\n\013last_", - "object\030\003 \002(\006\022\021\n\tfile_size\030\004 \002(\006\"\231\001\n\034xtre" + - "emfs_check_objectRequest\0229\n\020file_credent" + - "ials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredenti" + - "als\022\017\n\007file_id\030\002 \002(\t\022\025\n\robject_number\030\003 " + - "\002(\006\022\026\n\016object_version\030\004 \002(\006\"7\n$xtreemfs_" + - "cleanup_get_resultsResponse\022\017\n\007results\030\001" + - " \003(\t\"9\n#xtreemfs_cleanup_is_runningRespo" + - "nse\022\022\n\nis_running\030\001 \002(\010\"n\n\035xtreemfs_clea" + - "nup_startRequest\022\026\n\016remove_zombies\030\001 \002(\010" + - "\022\035\n\025remove_unavail_volume\030\002 \002(\010\022\026\n\016lost_", - "and_found\030\003 \002(\010\"1\n\037xtreemfs_cleanup_stat" + - "usResponse\022\016\n\006status\030\001 \002(\t\"\226\001\n\031xtreemfs_" + - "rwr_fetchRequest\0229\n\020file_credentials\030\001 \002" + - "(\0132\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007f" + - "ile_id\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016o" + - "bject_version\030\004 \002(\006\"\232\001\n\035xtreemfs_repair_" + - "objectRequest\0229\n\020file_credentials\030\001 \002(\0132" + - "\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007file" + - "_id\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016obje" + - "ct_version\030\004 \002(\006\"N\n\036xtreemfs_rwr_flease_", - "msgRequest\022\027\n\017sender_hostname\030\001 \002(\t\022\023\n\013s" + - "ender_port\030\002 \002(\007\"\212\001\n%xtreemfs_rwr_set_pr" + - "imary_epochRequest\0229\n\020file_credentials\030\001" + - " \002(\0132\037.xtreemfs.pbrpc.FileCredentials\022\017\n" + - "\007file_id\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007\"\207\001" + - "\n\032xtreemfs_rwr_statusRequest\0229\n\020file_cre" + - "dentials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCred" + - "entials\022\017\n\007file_id\030\002 \002(\t\022\035\n\025max_local_ob" + - "j_version\030\003 \002(\006\"\231\001\n\034xtreemfs_rwr_truncat" + - "eRequest\0229\n\020file_credentials\030\001 \002(\0132\037.xtr", + "\002 \002(\010\022\025\n\rmodified_time\030\003 \001(\006\"\324\001\n\rReplica" + + "Status\022\026\n\016truncate_epoch\030\001 \002(\006\022\021\n\tfile_s" + + "ize\030\002 \002(\006\022\027\n\017max_obj_version\030\003 \002(\006\022\025\n\rpr", + "imary_epoch\030\004 \002(\007\0225\n\016objectVersions\030\005 \003(" + + "\0132\035.xtreemfs.pbrpc.ObjectVersion\0221\n\014trun" + + "cate_log\030\006 \002(\0132\033.xtreemfs.pbrpc.Truncate" + + "Log\"X\n\024ObjectVersionMapping\022\025\n\robject_nu" + + "mber\030\001 \002(\006\022\026\n\016object_version\030\002 \002(\006\022\021\n\tos" + + "d_uuids\030\003 \003(\t\"\275\001\n\031AuthoritativeReplicaSt" + + "ate\022\026\n\016truncate_epoch\030\001 \002(\006\022\027\n\017max_obj_v" + + "ersion\030\004 \002(\006\022<\n\016objectVersions\030\002 \003(\0132$.x" + + "treemfs.pbrpc.ObjectVersionMapping\0221\n\014tr" + + "uncate_log\030\003 \002(\0132\033.xtreemfs.pbrpc.Trunca", + "teLog\"u\n\031InternalReadLocalResponse\022(\n\004da" + + "ta\030\001 \002(\0132\032.xtreemfs.pbrpc.ObjectData\022.\n\n" + + "object_set\030\002 \003(\0132\032.xtreemfs.pbrpc.Object" + + "List\"\250\001\n\013readRequest\0229\n\020file_credentials" + + "\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredentials\022" + + "\017\n\007file_id\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022" + + "\026\n\016object_version\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022" + + "\016\n\006length\030\006 \002(\007\"t\n\017truncateRequest\0229\n\020fi" + + "le_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.Fi" + + "leCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew_fi", + "le_size\030\003 \002(\006\"`\n\022unlink_osd_Request\0229\n\020f" + + "ile_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.F" + + "ileCredentials\022\017\n\007file_id\030\002 \002(\t\"\341\001\n\014writ" + + "eRequest\0229\n\020file_credentials\030\001 \002(\0132\037.xtr" + "eemfs.pbrpc.FileCredentials\022\017\n\007file_id\030\002" + - " \002(\t\022\025\n\rnew_file_size\030\003 \002(\006\022\026\n\016object_ve" + - "rsion\030\004 \002(\006\"\347\001\n\032xtreemfs_rwr_updateReque" + - "st\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs." + - "pbrpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025" + - "\n\rnew_file_size\030\003 \002(\006\022\025\n\robject_number\030\007" + - " \002(\006\022\026\n\016object_version\030\004 \002(\006\022\016\n\006offset\030\005" + - " \002(\007\022\'\n\003obj\030\006 \002(\0132\032.xtreemfs.pbrpc.Objec" + - "tData\"o\n!xtreemfs_internal_get_gmaxReque" + - "st\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.", - "pbrpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\"t" + - "\n&xtreemfs_internal_get_file_sizeRequest" + - "\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.pb" + - "rpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\"<\n\'" + - "xtreemfs_internal_get_file_sizeResponse\022" + - "\021\n\tfile_size\030\001 \002(\006\"\222\002\n#xtreemfs_internal" + - "_read_localRequest\0229\n\020file_credentials\030\001" + - " \002(\0132\037.xtreemfs.pbrpc.FileCredentials\022\017\n" + - "\007file_id\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n" + - "\016object_version\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022\016\n", - "\006length\030\006 \002(\007\022\032\n\022attach_object_list\030\007 \002(" + - "\010\0224\n\020required_objects\030\010 \003(\0132\032.xtreemfs.p" + - "brpc.ObjectList\"u\n\'xtreemfs_internal_get" + - "_object_setRequest\0229\n\020file_credentials\030\001" + - " \002(\0132\037.xtreemfs.pbrpc.FileCredentials\022\017\n" + - "\007file_id\030\002 \002(\t\"=\n)xtreemfs_internal_get_" + - "fileid_listResponse\022\020\n\010file_ids\030\001 \003(\t\"t\n" + - "\013lockRequest\0229\n\020file_credentials\030\001 \002(\0132\037" + - ".xtreemfs.pbrpc.FileCredentials\022*\n\014lock_" + - "request\030\002 \002(\0132\024.xtreemfs.pbrpc.Lock\"j\n\025x", - "treemfs_pingMesssage\0227\n\013coordinates\030\001 \002(" + - "\0132\".xtreemfs.pbrpc.VivaldiCoordinates\022\030\n" + - "\020request_response\030\002 \002(\010\"\246\001\n\036xtreemfs_rwr" + - "_auth_stateRequest\0229\n\020file_credentials\030\001" + - " \002(\0132\037.xtreemfs.pbrpc.FileCredentials\022\017\n" + - "\007file_id\030\002 \002(\t\0228\n\005state\030\003 \002(\0132).xtreemfs" + - ".pbrpc.AuthoritativeReplicaState\"\207\001\n\"xtr" + - "eemfs_rwr_reset_completeRequest\0229\n\020file_" + + " \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016object_ve" + + "rsion\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022\025\n\rlease_tim" + + "eout\030\006 \002(\006\022/\n\013object_data\030\007 \002(\0132\032.xtreem" + + "fs.pbrpc.ObjectData\"q\n\036xtreemfs_broadcas" + + "t_gmaxRequest\022\017\n\007file_id\030\001 \002(\t\022\026\n\016trunca", + "te_epoch\030\002 \002(\006\022\023\n\013last_object\030\003 \002(\006\022\021\n\tf" + + "ile_size\030\004 \002(\006\"\231\001\n\034xtreemfs_check_object" + + "Request\0229\n\020file_credentials\030\001 \002(\0132\037.xtre" + + "emfs.pbrpc.FileCredentials\022\017\n\007file_id\030\002 " + + "\002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016object_ver" + + "sion\030\004 \002(\006\"7\n$xtreemfs_cleanup_get_resul" + + "tsResponse\022\017\n\007results\030\001 \003(\t\"9\n#xtreemfs_" + + "cleanup_is_runningResponse\022\022\n\nis_running" + + "\030\001 \002(\010\"n\n\035xtreemfs_cleanup_startRequest\022" + + "\026\n\016remove_zombies\030\001 \002(\010\022\035\n\025remove_unavai", + "l_volume\030\002 \002(\010\022\026\n\016lost_and_found\030\003 \002(\010\"1" + + "\n\037xtreemfs_cleanup_statusResponse\022\016\n\006sta" + + "tus\030\001 \002(\t\"\226\001\n\031xtreemfs_rwr_fetchRequest\022" + + "9\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.pbr" + + "pc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\ro" + + "bject_number\030\003 \002(\006\022\026\n\016object_version\030\004 \002" + + "(\006\"\232\001\n\035xtreemfs_repair_objectRequest\0229\n\020" + + "file_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc." + + "FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\robje" + + "ct_number\030\003 \002(\006\022\026\n\016object_version\030\004 \002(\006\"", + "N\n\036xtreemfs_rwr_flease_msgRequest\022\027\n\017sen" + + "der_hostname\030\001 \002(\t\022\023\n\013sender_port\030\002 \002(\007\"" + + "\212\001\n%xtreemfs_rwr_set_primary_epochReques" + + "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + + "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n" + + "\rprimary_epoch\030\003 \002(\007\"\207\001\n\032xtreemfs_rwr_st" + + "atusRequest\0229\n\020file_credentials\030\001 \002(\0132\037." + + "xtreemfs.pbrpc.FileCredentials\022\017\n\007file_i" + + "d\030\002 \002(\t\022\035\n\025max_local_obj_version\030\003 \002(\006\"\231" + + "\001\n\034xtreemfs_rwr_truncateRequest\0229\n\020file_", "credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileC" + - "redentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rprimary_e", - "poch\030\003 \002(\007\"q\n#xtreemfs_xloc_set_invalida" + - "teRequest\0229\n\020file_credentials\030\001 \002(\0132\037.xt" + - "reemfs.pbrpc.FileCredentials\022\017\n\007file_id\030" + - "\002 \002(\t\"i\n$xtreemfs_xloc_set_invalidateRes" + - "ponse\022\022\n\nis_primary\030\001 \002(\010\022-\n\006status\030\002 \001(" + - "\0132\035.xtreemfs.pbrpc.ReplicaStatus2\277\036\n\nOSD" + - "Service\022L\n\004read\022\033.xtreemfs.pbrpc.readReq" + - "uest\032\032.xtreemfs.pbrpc.ObjectData\"\013\215\265\030\n\000\000" + - "\000\230\265\030\001\022V\n\010truncate\022\037.xtreemfs.pbrpc.trunc" + - "ateRequest\032 .xtreemfs.pbrpc.OSDWriteResp", - "onse\"\007\215\265\030\013\000\000\000\022T\n\006unlink\022\".xtreemfs.pbrpc" + - ".unlink_osd_Request\032\035.xtreemfs.pbrpc.emp" + - "tyResponse\"\007\215\265\030\014\000\000\000\022T\n\005write\022\034.xtreemfs." + - "pbrpc.writeRequest\032 .xtreemfs.pbrpc.OSDW" + - "riteResponse\"\013\215\265\030\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_br" + - "oadcast_gmax\022..xtreemfs.pbrpc.xtreemfs_b" + - "roadcast_gmaxRequest\032\035.xtreemfs.pbrpc.em" + - "ptyResponse\"\007\215\265\030\024\000\000\000\022j\n\025xtreemfs_check_o" + - "bject\022,.xtreemfs.pbrpc.xtreemfs_check_ob" + - "jectRequest\032\032.xtreemfs.pbrpc.ObjectData\"", - "\007\215\265\030\025\000\000\000\022{\n\034xtreemfs_cleanup_get_results" + - "\022\034.xtreemfs.pbrpc.emptyRequest\0324.xtreemf" + - "s.pbrpc.xtreemfs_cleanup_get_resultsResp" + - "onse\"\007\215\265\030\036\000\000\000\022y\n\033xtreemfs_cleanup_is_run" + - "ning\022\034.xtreemfs.pbrpc.emptyRequest\0323.xtr" + - "eemfs.pbrpc.xtreemfs_cleanup_is_runningR" + - "esponse\"\007\215\265\030\037\000\000\000\022o\n\026xtreemfs_cleanup_sta" + - "rt\022-.xtreemfs.pbrpc.xtreemfs_cleanup_sta" + - "rtRequest\032\035.xtreemfs.pbrpc.emptyResponse" + - "\"\007\215\265\030 \000\000\000\022q\n\027xtreemfs_cleanup_status\022\034.x", - "treemfs.pbrpc.emptyRequest\032/.xtreemfs.pb" + - "rpc.xtreemfs_cleanup_statusResponse\"\007\215\265\030" + - "!\000\000\000\022]\n\025xtreemfs_cleanup_stop\022\034.xtreemfs" + - ".pbrpc.emptyRequest\032\035.xtreemfs.pbrpc.emp" + - "tyResponse\"\007\215\265\030\"\000\000\000\022g\n\037xtreemfs_cleanup_" + - "versions_start\022\034.xtreemfs.pbrpc.emptyReq" + - "uest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030" + - "#\000\000\000\022o\n\026xtreemfs_repair_object\022-.xtreemf" + - "s.pbrpc.xtreemfs_repair_objectRequest\032\035." + - "xtreemfs.pbrpc.emptyResponse\"\007\215\265\030$\000\000\000\022d\n", - "\022xtreemfs_rwr_fetch\022).xtreemfs.pbrpc.xtr" + - "eemfs_rwr_fetchRequest\032\032.xtreemfs.pbrpc." + - "ObjectData\"\007\215\265\030I\000\000\000\022u\n\027xtreemfs_rwr_flea" + - "se_msg\022..xtreemfs.pbrpc.xtreemfs_rwr_fle" + - "ase_msgRequest\032\035.xtreemfs.pbrpc.emptyRes" + - "ponse\"\013\215\265\030G\000\000\000\240\265\030\001\022^\n\023xtreemfs_rwr_notif" + - "y\022\037.xtreemfs.pbrpc.FileCredentials\032\035.xtr" + - "eemfs.pbrpc.emptyResponse\"\007\215\265\030K\000\000\000\022|\n\036xt" + - "reemfs_rwr_set_primary_epoch\0225.xtreemfs." + - "pbrpc.xtreemfs_rwr_set_primary_epochRequ", - "est\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030N\000\000\000" + - "\022i\n\023xtreemfs_rwr_status\022*.xtreemfs.pbrpc" + - ".xtreemfs_rwr_statusRequest\032\035.xtreemfs.p" + - "brpc.ReplicaStatus\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_" + - "rwr_truncate\022,.xtreemfs.pbrpc.xtreemfs_r" + - "wr_truncateRequest\032\035.xtreemfs.pbrpc.empt" + - "yResponse\"\007\215\265\030J\000\000\000\022m\n\023xtreemfs_rwr_updat" + - "e\022*.xtreemfs.pbrpc.xtreemfs_rwr_updateRe" + - "quest\032\035.xtreemfs.pbrpc.emptyResponse\"\013\215\265" + - "\030H\000\000\000\240\265\030\001\022q\n\027xtreemfs_rwr_auth_state\022..x", - "treemfs.pbrpc.xtreemfs_rwr_auth_stateReq" + - "uest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030" + - "O\000\000\000\022y\n\033xtreemfs_rwr_reset_complete\0222.xt" + - "reemfs.pbrpc.xtreemfs_rwr_reset_complete" + - "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" + - "\215\265\030P\000\000\000\022v\n\032xtreemfs_internal_get_gmax\0221." + - "xtreemfs.pbrpc.xtreemfs_internal_get_gma" + - "xRequest\032\034.xtreemfs.pbrpc.InternalGmax\"\007" + - "\215\265\030(\000\000\000\022h\n\032xtreemfs_internal_truncate\022\037." + - "xtreemfs.pbrpc.truncateRequest\032 .xtreemf", - "s.pbrpc.OSDWriteResponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xt" + - "reemfs_internal_get_file_size\0226.xtreemfs" + - ".pbrpc.xtreemfs_internal_get_file_sizeRe" + - "quest\0327.xtreemfs.pbrpc.xtreemfs_internal" + - "_get_file_sizeResponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtre" + - "emfs_internal_read_local\0223.xtreemfs.pbrp" + - "c.xtreemfs_internal_read_localRequest\032)." + - "xtreemfs.pbrpc.InternalReadLocalResponse" + - "\"\007\215\265\030+\000\000\000\022\200\001\n xtreemfs_internal_get_obje" + - "ct_set\0227.xtreemfs.pbrpc.xtreemfs_interna", - "l_get_object_setRequest\032\032.xtreemfs.pbrpc" + - ".ObjectList\"\007\215\265\030,\000\000\000\022\205\001\n!xtreemfs_intern" + - "al_get_fileid_list\022\034.xtreemfs.pbrpc.empt" + - "yRequest\0329.xtreemfs.pbrpc.xtreemfs_inter" + - "nal_get_fileid_listResponse\"\007\215\265\030-\000\000\000\022S\n\025" + - "xtreemfs_lock_acquire\022\033.xtreemfs.pbrpc.l" + - "ockRequest\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0302\000\000" + - "\000\022Q\n\023xtreemfs_lock_check\022\033.xtreemfs.pbrp" + - "c.lockRequest\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\030" + - "3\000\000\000\022\\\n\025xtreemfs_lock_release\022\033.xtreemfs", - ".pbrpc.lockRequest\032\035.xtreemfs.pbrpc.empt" + - "yResponse\"\007\215\265\0304\000\000\000\022f\n\rxtreemfs_ping\022%.xt" + - "reemfs.pbrpc.xtreemfs_pingMesssage\032%.xtr" + - "eemfs.pbrpc.xtreemfs_pingMesssage\"\007\215\265\030<\000" + - "\000\000\022Y\n\021xtreemfs_shutdown\022\034.xtreemfs.pbrpc" + - ".emptyRequest\032\035.xtreemfs.pbrpc.emptyResp" + - "onse\"\007\215\265\030F\000\000\000\022\222\001\n\034xtreemfs_xloc_set_inva" + - "lidate\0223.xtreemfs.pbrpc.xtreemfs_xloc_se" + - "t_invalidateRequest\0324.xtreemfs.pbrpc.xtr" + - "eemfs_xloc_set_invalidateResponse\"\007\215\265\030Q\000", - "\000\000\022}\n#xtreemfs_rwr_auth_state_invalidate" + - "d\022..xtreemfs.pbrpc.xtreemfs_rwr_auth_sta" + - "teRequest\032\035.xtreemfs.pbrpc.emptyResponse" + - "\"\007\215\265\030R\000\000\000\032\007\225\265\0301u\000\000B(\n&org.xtreemfs.pbrpc" + - ".generatedinterfaces" + "redentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew_file_" + + "size\030\003 \002(\006\022\026\n\016object_version\030\004 \002(\006\"\347\001\n\032x" + + "treemfs_rwr_updateRequest\0229\n\020file_creden" + + "tials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredent" + + "ials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew_file_size\030\003" + + " \002(\006\022\025\n\robject_number\030\007 \002(\006\022\026\n\016object_ve" + + "rsion\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022\'\n\003obj\030\006 \002(\013" + + "2\032.xtreemfs.pbrpc.ObjectData\"o\n!xtreemfs" + + "_internal_get_gmaxRequest\0229\n\020file_creden", + "tials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredent" + + "ials\022\017\n\007file_id\030\002 \002(\t\"t\n&xtreemfs_intern" + + "al_get_file_sizeRequest\0229\n\020file_credenti" + + "als\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredentia" + + "ls\022\017\n\007file_id\030\002 \002(\t\"<\n\'xtreemfs_internal" + + "_get_file_sizeResponse\022\021\n\tfile_size\030\001 \002(" + + "\006\"\222\002\n#xtreemfs_internal_read_localReques" + + "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + + "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n" + + "\robject_number\030\003 \002(\006\022\026\n\016object_version\030\004", + " \002(\006\022\016\n\006offset\030\005 \002(\007\022\016\n\006length\030\006 \002(\007\022\032\n\022" + + "attach_object_list\030\007 \002(\010\0224\n\020required_obj" + + "ects\030\010 \003(\0132\032.xtreemfs.pbrpc.ObjectList\"u" + + "\n\'xtreemfs_internal_get_object_setReques" + + "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + + "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\"=\n" + + ")xtreemfs_internal_get_fileid_listRespon" + + "se\022\020\n\010file_ids\030\001 \003(\t\"t\n\013lockRequest\0229\n\020f" + + "ile_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.F" + + "ileCredentials\022*\n\014lock_request\030\002 \002(\0132\024.x", + "treemfs.pbrpc.Lock\"j\n\025xtreemfs_pingMesss" + + "age\0227\n\013coordinates\030\001 \002(\0132\".xtreemfs.pbrp" + + "c.VivaldiCoordinates\022\030\n\020request_response" + + "\030\002 \002(\010\"\246\001\n\036xtreemfs_rwr_auth_stateReques" + + "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + + "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\0228\n" + + "\005state\030\003 \002(\0132).xtreemfs.pbrpc.Authoritat" + + "iveReplicaState\"\207\001\n\"xtreemfs_rwr_reset_c" + + "ompleteRequest\0229\n\020file_credentials\030\001 \002(\013" + + "2\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007fil", + "e_id\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007\"q\n#xtr" + + "eemfs_xloc_set_invalidateRequest\0229\n\020file" + + "_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.File" + + "Credentials\022\017\n\007file_id\030\002 \002(\t\"i\n$xtreemfs" + + "_xloc_set_invalidateResponse\022\022\n\nis_prima" + + "ry\030\001 \002(\010\022-\n\006status\030\002 \001(\0132\035.xtreemfs.pbrp" + + "c.ReplicaStatus2\277\036\n\nOSDService\022L\n\004read\022\033" + + ".xtreemfs.pbrpc.readRequest\032\032.xtreemfs.p" + + "brpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010truncate" + + "\022\037.xtreemfs.pbrpc.truncateRequest\032 .xtre", + "emfs.pbrpc.OSDWriteResponse\"\007\215\265\030\013\000\000\000\022T\n\006" + + "unlink\022\".xtreemfs.pbrpc.unlink_osd_Reque" + + "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\014\000" + + "\000\000\022T\n\005write\022\034.xtreemfs.pbrpc.writeReques" + + "t\032 .xtreemfs.pbrpc.OSDWriteResponse\"\013\215\265\030" + + "\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broadcast_gmax\022..xt" + + "reemfs.pbrpc.xtreemfs_broadcast_gmaxRequ" + + "est\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\024" + + "\000\000\000\022j\n\025xtreemfs_check_object\022,.xtreemfs." + + "pbrpc.xtreemfs_check_objectRequest\032\032.xtr", + "eemfs.pbrpc.ObjectData\"\007\215\265\030\025\000\000\000\022{\n\034xtree" + + "mfs_cleanup_get_results\022\034.xtreemfs.pbrpc" + + ".emptyRequest\0324.xtreemfs.pbrpc.xtreemfs_" + + "cleanup_get_resultsResponse\"\007\215\265\030\036\000\000\000\022y\n\033" + + "xtreemfs_cleanup_is_running\022\034.xtreemfs.p" + + "brpc.emptyRequest\0323.xtreemfs.pbrpc.xtree" + + "mfs_cleanup_is_runningResponse\"\007\215\265\030\037\000\000\000\022" + + "o\n\026xtreemfs_cleanup_start\022-.xtreemfs.pbr" + + "pc.xtreemfs_cleanup_startRequest\032\035.xtree" + + "mfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022q\n\027xtre", + "emfs_cleanup_status\022\034.xtreemfs.pbrpc.emp" + + "tyRequest\032/.xtreemfs.pbrpc.xtreemfs_clea" + + "nup_statusResponse\"\007\215\265\030!\000\000\000\022]\n\025xtreemfs_" + + "cleanup_stop\022\034.xtreemfs.pbrpc.emptyReque" + + "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\"\000" + + "\000\000\022g\n\037xtreemfs_cleanup_versions_start\022\034." + + "xtreemfs.pbrpc.emptyRequest\032\035.xtreemfs.p" + + "brpc.emptyResponse\"\007\215\265\030#\000\000\000\022o\n\026xtreemfs_" + + "repair_object\022-.xtreemfs.pbrpc.xtreemfs_" + + "repair_objectRequest\032\035.xtreemfs.pbrpc.em", + "ptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xtreemfs_rwr_fet" + + "ch\022).xtreemfs.pbrpc.xtreemfs_rwr_fetchRe" + + "quest\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030I\000" + + "\000\000\022u\n\027xtreemfs_rwr_flease_msg\022..xtreemfs" + + ".pbrpc.xtreemfs_rwr_flease_msgRequest\032\035." + + "xtreemfs.pbrpc.emptyResponse\"\013\215\265\030G\000\000\000\240\265\030" + + "\001\022^\n\023xtreemfs_rwr_notify\022\037.xtreemfs.pbrp" + + "c.FileCredentials\032\035.xtreemfs.pbrpc.empty" + + "Response\"\007\215\265\030K\000\000\000\022|\n\036xtreemfs_rwr_set_pr" + + "imary_epoch\0225.xtreemfs.pbrpc.xtreemfs_rw", + "r_set_primary_epochRequest\032\032.xtreemfs.pb" + + "rpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023xtreemfs_rwr_" + + "status\022*.xtreemfs.pbrpc.xtreemfs_rwr_sta" + + "tusRequest\032\035.xtreemfs.pbrpc.ReplicaStatu" + + "s\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_truncate\022,.xt" + + "reemfs.pbrpc.xtreemfs_rwr_truncateReques" + + "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030J\000\000" + + "\000\022m\n\023xtreemfs_rwr_update\022*.xtreemfs.pbrp" + + "c.xtreemfs_rwr_updateRequest\032\035.xtreemfs." + + "pbrpc.emptyResponse\"\013\215\265\030H\000\000\000\240\265\030\001\022q\n\027xtre", + "emfs_rwr_auth_state\022..xtreemfs.pbrpc.xtr" + + "eemfs_rwr_auth_stateRequest\032\035.xtreemfs.p" + + "brpc.emptyResponse\"\007\215\265\030O\000\000\000\022y\n\033xtreemfs_" + + "rwr_reset_complete\0222.xtreemfs.pbrpc.xtre" + + "emfs_rwr_reset_completeRequest\032\035.xtreemf" + + "s.pbrpc.emptyResponse\"\007\215\265\030P\000\000\000\022v\n\032xtreem" + + "fs_internal_get_gmax\0221.xtreemfs.pbrpc.xt" + + "reemfs_internal_get_gmaxRequest\032\034.xtreem" + + "fs.pbrpc.InternalGmax\"\007\215\265\030(\000\000\000\022h\n\032xtreem" + + "fs_internal_truncate\022\037.xtreemfs.pbrpc.tr", + "uncateRequest\032 .xtreemfs.pbrpc.OSDWriteR" + + "esponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemfs_internal_g" + + "et_file_size\0226.xtreemfs.pbrpc.xtreemfs_i" + + "nternal_get_file_sizeRequest\0327.xtreemfs." + + "pbrpc.xtreemfs_internal_get_file_sizeRes" + + "ponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_internal_rea" + + "d_local\0223.xtreemfs.pbrpc.xtreemfs_intern" + + "al_read_localRequest\032).xtreemfs.pbrpc.In" + + "ternalReadLocalResponse\"\007\215\265\030+\000\000\000\022\200\001\n xtr" + + "eemfs_internal_get_object_set\0227.xtreemfs", + ".pbrpc.xtreemfs_internal_get_object_setR" + + "equest\032\032.xtreemfs.pbrpc.ObjectList\"\007\215\265\030," + + "\000\000\000\022\205\001\n!xtreemfs_internal_get_fileid_lis" + + "t\022\034.xtreemfs.pbrpc.emptyRequest\0329.xtreem" + + "fs.pbrpc.xtreemfs_internal_get_fileid_li" + + "stResponse\"\007\215\265\030-\000\000\000\022S\n\025xtreemfs_lock_acq" + + "uire\022\033.xtreemfs.pbrpc.lockRequest\032\024.xtre" + + "emfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023xtreemfs_loc" + + "k_check\022\033.xtreemfs.pbrpc.lockRequest\032\024.x" + + "treemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022\\\n\025xtreemfs_", + "lock_release\022\033.xtreemfs.pbrpc.lockReques" + + "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\0304\000\000" + + "\000\022f\n\rxtreemfs_ping\022%.xtreemfs.pbrpc.xtre" + + "emfs_pingMesssage\032%.xtreemfs.pbrpc.xtree" + + "mfs_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n\021xtreemfs_sh" + + "utdown\022\034.xtreemfs.pbrpc.emptyRequest\032\035.x" + + "treemfs.pbrpc.emptyResponse\"\007\215\265\030F\000\000\000\022\222\001\n" + + "\034xtreemfs_xloc_set_invalidate\0223.xtreemfs" + + ".pbrpc.xtreemfs_xloc_set_invalidateReque" + + "st\0324.xtreemfs.pbrpc.xtreemfs_xloc_set_in", + "validateResponse\"\007\215\265\030Q\000\000\000\022}\n#xtreemfs_rw" + + "r_auth_state_invalidated\022..xtreemfs.pbrp" + + "c.xtreemfs_rwr_auth_stateRequest\032\035.xtree" + + "mfs.pbrpc.emptyResponse\"\007\215\265\030R\000\000\000\032\007\225\265\0301u\000" + + "\000B(\n&org.xtreemfs.pbrpc.generatedinterfa" + + "ces" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -32745,7 +32827,7 @@ public final class OSD { internal_static_xtreemfs_pbrpc_XLocSetVersionState_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_xtreemfs_pbrpc_XLocSetVersionState_descriptor, - new java.lang.String[] { "Version", "Invalidated", }); + new java.lang.String[] { "Version", "Invalidated", "ModifiedTime", }); internal_static_xtreemfs_pbrpc_ReplicaStatus_descriptor = getDescriptor().getMessageTypes().get(8); internal_static_xtreemfs_pbrpc_ReplicaStatus_fieldAccessorTable = new -- GitLab From 26319c592987cf983a8f730606741ea9ee8d0ac2 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Thu, 3 Jul 2014 15:50:58 +0200 Subject: [PATCH 034/192] servers: views: Save modified time to XLocSetVersionState. --- .../src/org/xtreemfs/osd/stages/PreprocStage.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/java/servers/src/org/xtreemfs/osd/stages/PreprocStage.java b/java/servers/src/org/xtreemfs/osd/stages/PreprocStage.java index 91be51be9..19504f596 100644 --- a/java/servers/src/org/xtreemfs/osd/stages/PreprocStage.java +++ b/java/servers/src/org/xtreemfs/osd/stages/PreprocStage.java @@ -666,6 +666,7 @@ public class PreprocStage extends Stage { XLocSetVersionState newstate = state.toBuilder() .setInvalidated(false) .setVersion(locset.getVersion()) + .setModifiedTime(TimeSync.getGlobalTime()) .build(); try { @@ -716,7 +717,11 @@ public class PreprocStage extends Stage { // If a response from a newer View is encountered, we have to install it and leave the invalidated state. if (state.getVersion() < version) { - state = state.toBuilder().setInvalidated(false).setVersion(version).build(); + state = state.toBuilder() + .setInvalidated(false) + .setVersion(version) + .setModifiedTime(TimeSync.getGlobalTime()) + .build(); try { // persist the version layout.setXLocSetVersionState(fileId, state); @@ -770,7 +775,8 @@ public class PreprocStage extends Stage { } // Invalidate the replica. - stateBuilder.setInvalidated(true); + stateBuilder.setInvalidated(true) + .setModifiedTime(TimeSync.getGlobalTime()); state = stateBuilder.build(); layout.setXLocSetVersionState(fileId, state); -- GitLab From 09a2edab0c83bd64192ffdb6ebb0da4b0298002f Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Fri, 4 Jul 2014 14:06:45 +0200 Subject: [PATCH 035/192] interface: views: Use protobuf enum for check_file_exists responses. --- cpp/generated/xtreemfs/MRC.pb.cc | 897 +++--- cpp/generated/xtreemfs/MRC.pb.h | 359 ++- interface/xtreemfs/MRC.proto | 15 +- .../pbrpc/generatedinterfaces/MRC.java | 2770 +++++++++-------- 4 files changed, 2190 insertions(+), 1851 deletions(-) diff --git a/cpp/generated/xtreemfs/MRC.pb.cc b/cpp/generated/xtreemfs/MRC.pb.cc index 7af2f25b5..db5a494b2 100644 --- a/cpp/generated/xtreemfs/MRC.pb.cc +++ b/cpp/generated/xtreemfs/MRC.pb.cc @@ -120,6 +120,10 @@ const ::google::protobuf::internal::GeneratedMessageReflection* const ::google::protobuf::Descriptor* xtreemfs_check_file_existsRequest_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* xtreemfs_check_file_existsRequest_reflection_ = NULL; +const ::google::protobuf::Descriptor* xtreemfs_check_file_existsResponse_descriptor_ = NULL; +const ::google::protobuf::internal::GeneratedMessageReflection* + xtreemfs_check_file_existsResponse_reflection_ = NULL; +const ::google::protobuf::EnumDescriptor* xtreemfs_check_file_existsResponse_FILE_STATE_descriptor_ = NULL; const ::google::protobuf::Descriptor* xtreemfs_dump_restore_databaseRequest_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* xtreemfs_dump_restore_databaseRequest_reflection_ = NULL; @@ -129,9 +133,6 @@ const ::google::protobuf::internal::GeneratedMessageReflection* const ::google::protobuf::Descriptor* xtreemfs_get_suitable_osdsResponse_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* xtreemfs_get_suitable_osdsResponse_reflection_ = NULL; -const ::google::protobuf::Descriptor* xtreemfs_check_file_existsResponse_descriptor_ = NULL; -const ::google::protobuf::internal::GeneratedMessageReflection* - xtreemfs_check_file_existsResponse_reflection_ = NULL; const ::google::protobuf::Descriptor* timestampResponse_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* timestampResponse_reflection_ = NULL; @@ -768,7 +769,24 @@ void protobuf_AssignDesc_xtreemfs_2fMRC_2eproto() { ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(xtreemfs_check_file_existsRequest)); - xtreemfs_dump_restore_databaseRequest_descriptor_ = file->message_type(33); + xtreemfs_check_file_existsResponse_descriptor_ = file->message_type(33); + static const int xtreemfs_check_file_existsResponse_offsets_[2] = { + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_check_file_existsResponse, volume_exists_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_check_file_existsResponse, file_states_), + }; + xtreemfs_check_file_existsResponse_reflection_ = + new ::google::protobuf::internal::GeneratedMessageReflection( + xtreemfs_check_file_existsResponse_descriptor_, + xtreemfs_check_file_existsResponse::default_instance_, + xtreemfs_check_file_existsResponse_offsets_, + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_check_file_existsResponse, _has_bits_[0]), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_check_file_existsResponse, _unknown_fields_), + -1, + ::google::protobuf::DescriptorPool::generated_pool(), + ::google::protobuf::MessageFactory::generated_factory(), + sizeof(xtreemfs_check_file_existsResponse)); + xtreemfs_check_file_existsResponse_FILE_STATE_descriptor_ = xtreemfs_check_file_existsResponse_descriptor_->enum_type(0); + xtreemfs_dump_restore_databaseRequest_descriptor_ = file->message_type(34); static const int xtreemfs_dump_restore_databaseRequest_offsets_[1] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_dump_restore_databaseRequest, dump_file_), }; @@ -783,7 +801,7 @@ void protobuf_AssignDesc_xtreemfs_2fMRC_2eproto() { ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(xtreemfs_dump_restore_databaseRequest)); - xtreemfs_get_suitable_osdsRequest_descriptor_ = file->message_type(34); + xtreemfs_get_suitable_osdsRequest_descriptor_ = file->message_type(35); static const int xtreemfs_get_suitable_osdsRequest_offsets_[4] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_get_suitable_osdsRequest, file_id_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_get_suitable_osdsRequest, path_), @@ -801,7 +819,7 @@ void protobuf_AssignDesc_xtreemfs_2fMRC_2eproto() { ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(xtreemfs_get_suitable_osdsRequest)); - xtreemfs_get_suitable_osdsResponse_descriptor_ = file->message_type(35); + xtreemfs_get_suitable_osdsResponse_descriptor_ = file->message_type(36); static const int xtreemfs_get_suitable_osdsResponse_offsets_[1] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_get_suitable_osdsResponse, osd_uuids_), }; @@ -816,21 +834,6 @@ void protobuf_AssignDesc_xtreemfs_2fMRC_2eproto() { ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(xtreemfs_get_suitable_osdsResponse)); - xtreemfs_check_file_existsResponse_descriptor_ = file->message_type(36); - static const int xtreemfs_check_file_existsResponse_offsets_[1] = { - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_check_file_existsResponse, bitmap_), - }; - xtreemfs_check_file_existsResponse_reflection_ = - new ::google::protobuf::internal::GeneratedMessageReflection( - xtreemfs_check_file_existsResponse_descriptor_, - xtreemfs_check_file_existsResponse::default_instance_, - xtreemfs_check_file_existsResponse_offsets_, - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_check_file_existsResponse, _has_bits_[0]), - GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_check_file_existsResponse, _unknown_fields_), - -1, - ::google::protobuf::DescriptorPool::generated_pool(), - ::google::protobuf::MessageFactory::generated_factory(), - sizeof(xtreemfs_check_file_existsResponse)); timestampResponse_descriptor_ = file->message_type(37); static const int timestampResponse_offsets_[1] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(timestampResponse, timestamp_s_), @@ -1154,14 +1157,14 @@ void protobuf_RegisterTypes(const ::std::string&) { accessRequest_descriptor_, &accessRequest::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( xtreemfs_check_file_existsRequest_descriptor_, &xtreemfs_check_file_existsRequest::default_instance()); + ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( + xtreemfs_check_file_existsResponse_descriptor_, &xtreemfs_check_file_existsResponse::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( xtreemfs_dump_restore_databaseRequest_descriptor_, &xtreemfs_dump_restore_databaseRequest::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( xtreemfs_get_suitable_osdsRequest_descriptor_, &xtreemfs_get_suitable_osdsRequest::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( xtreemfs_get_suitable_osdsResponse_descriptor_, &xtreemfs_get_suitable_osdsResponse::default_instance()); - ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( - xtreemfs_check_file_existsResponse_descriptor_, &xtreemfs_check_file_existsResponse::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( timestampResponse_descriptor_, ×tampResponse::default_instance()); ::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage( @@ -1263,14 +1266,14 @@ void protobuf_ShutdownFile_xtreemfs_2fMRC_2eproto() { delete accessRequest_reflection_; delete xtreemfs_check_file_existsRequest::default_instance_; delete xtreemfs_check_file_existsRequest_reflection_; + delete xtreemfs_check_file_existsResponse::default_instance_; + delete xtreemfs_check_file_existsResponse_reflection_; delete xtreemfs_dump_restore_databaseRequest::default_instance_; delete xtreemfs_dump_restore_databaseRequest_reflection_; delete xtreemfs_get_suitable_osdsRequest::default_instance_; delete xtreemfs_get_suitable_osdsRequest_reflection_; delete xtreemfs_get_suitable_osdsResponse::default_instance_; delete xtreemfs_get_suitable_osdsResponse_reflection_; - delete xtreemfs_check_file_existsResponse::default_instance_; - delete xtreemfs_check_file_existsResponse_reflection_; delete timestampResponse::default_instance_; delete timestampResponse_reflection_; delete stringMessage::default_instance_; @@ -1396,155 +1399,159 @@ void protobuf_AddDesc_xtreemfs_2fMRC_2eproto() { "me\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\r\n\005flags\030\003 \002(\007\"Z\n" "!xtreemfs_check_file_existsRequest\022\021\n\tvo" "lume_id\030\001 \002(\t\022\020\n\010file_ids\030\002 \003(\t\022\020\n\010osd_u" - "uid\030\003 \002(\t\":\n%xtreemfs_dump_restore_datab" - "aseRequest\022\021\n\tdump_file\030\001 \002(\t\"i\n!xtreemf" - "s_get_suitable_osdsRequest\022\017\n\007file_id\030\001 " - "\001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume_name\030\004 \001(\t\022\020" - "\n\010num_osds\030\002 \002(\007\"7\n\"xtreemfs_get_suitabl" - "e_osdsResponse\022\021\n\tosd_uuids\030\001 \003(\t\"4\n\"xtr" - "eemfs_check_file_existsResponse\022\016\n\006bitma" - "p\030\001 \002(\t\"(\n\021timestampResponse\022\023\n\013timestam" - "p_s\030\001 \002(\007\"!\n\rstringMessage\022\020\n\010a_string\030\001" - " \002(\t\"\'\n\027xtreemfs_listdirRequest\022\014\n\004path\030" - "\001 \002(\t\")\n\030xtreemfs_listdirResponse\022\r\n\005nam" - "es\030\001 \003(\t\"\177\n\033xtreemfs_replica_addRequest\022" - "\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume" - "_name\030\004 \001(\t\022,\n\013new_replica\030\002 \002(\0132\027.xtree" - "mfs.pbrpc.Replica\"R\n\034xtreemfs_replica_li" - "stRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\002 \001(\t" - "\022\023\n\013volume_name\030\003 \001(\t\"f\n\036xtreemfs_replic" - "a_removeRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path" - "\030\003 \001(\t\022\023\n\013volume_name\030\004 \001(\t\022\020\n\010osd_uuid\030" - "\002 \002(\t\"|\n\034xtreemfs_restore_fileRequest\022\021\n" - "\tfile_path\030\001 \002(\t\022\017\n\007file_id\030\002 \002(\t\022\021\n\tfil" - "e_size\030\003 \002(\006\022\020\n\010osd_uuid\030\004 \002(\t\022\023\n\013stripe" - "_size\030\005 \002(\007\",\n\025xtreemfs_rmvolRequest\022\023\n\013" - "volume_name\030\001 \002(\t\"\321\001\n xtreemfs_update_fi" - "le_sizeRequest\022\"\n\004xcap\030\001 \002(\0132\024.xtreemfs." - "pbrpc.XCap\022<\n\022osd_write_response\030\002 \002(\0132 " - ".xtreemfs.pbrpc.OSDWriteResponse\022\022\n\nclos" - "e_file\030\003 \001(\010\0227\n\013coordinates\030\004 \001(\0132\".xtre" - "emfs.pbrpc.VivaldiCoordinates\"S\n)xtreemf" - "s_set_replica_update_policyRequest\022\017\n\007fi" - "le_id\030\001 \002(\t\022\025\n\rupdate_policy\030\002 \002(\t\"G\n*xt" - "reemfs_set_replica_update_policyResponse" - "\022\031\n\021old_update_policy\030\001 \002(\t\"E\n#xtreemfs_" - "set_read_only_xattrRequest\022\017\n\007file_id\030\001 " - "\002(\t\022\r\n\005value\030\002 \002(\010\"7\n$xtreemfs_set_read_" - "only_xattrResponse\022\017\n\007was_set\030\001 \002(\010\"7\n$x" - "treemfs_get_file_credentialsRequest\022\017\n\007f" - "ile_id\030\001 \002(\t*\242\001\n\010Setattrs\022\020\n\014SETATTR_MOD" - "E\020\001\022\017\n\013SETATTR_UID\020\002\022\017\n\013SETATTR_GID\020\004\022\020\n" - "\014SETATTR_SIZE\020\010\022\021\n\rSETATTR_ATIME\020\020\022\021\n\rSE" - "TATTR_MTIME\020 \022\021\n\rSETATTR_CTIME\020@\022\027\n\022SETA" - "TTR_ATTRIBUTES\020\200\001*>\n\013XATTR_FLAGS\022\026\n\022XATT" - "R_FLAGS_CREATE\020\001\022\027\n\023XATTR_FLAGS_REPLACE\020" - "\002*j\n\014ACCESS_FLAGS\022\025\n\021ACCESS_FLAGS_F_OK\020\000" - "\022\025\n\021ACCESS_FLAGS_X_OK\020\001\022\025\n\021ACCESS_FLAGS_" - "W_OK\020\002\022\025\n\021ACCESS_FLAGS_R_OK\020\0042\354\037\n\nMRCSer" - "vice\022S\n\010fsetattr\022\037.xtreemfs.pbrpc.fsetat" - "trRequest\032\035.xtreemfs.pbrpc.emptyResponse" - "\"\007\215\265\030\002\000\000\000\022@\n\tftruncate\022\024.xtreemfs.pbrpc." - "XCap\032\024.xtreemfs.pbrpc.XCap\"\007\215\265\030\003\000\000\000\022S\n\007g" - "etattr\022\036.xtreemfs.pbrpc.getattrRequest\032\037" - ".xtreemfs.pbrpc.getattrResponse\"\007\215\265\030\004\000\000\000" - "\022V\n\010getxattr\022\037.xtreemfs.pbrpc.getxattrRe" - "quest\032 .xtreemfs.pbrpc.getxattrResponse\"" - "\007\215\265\030\005\000\000\000\022O\n\004link\022\033.xtreemfs.pbrpc.linkRe" - "quest\032!.xtreemfs.pbrpc.timestampResponse" - "\"\007\215\265\030\006\000\000\000\022Y\n\tlistxattr\022 .xtreemfs.pbrpc." - "listxattrRequest\032!.xtreemfs.pbrpc.listxa" - "ttrResponse\"\007\215\265\030\007\000\000\000\022Q\n\005mkdir\022\034.xtreemfs" - ".pbrpc.mkdirRequest\032!.xtreemfs.pbrpc.tim" - "estampResponse\"\007\215\265\030\010\000\000\000\022J\n\004open\022\033.xtreem" - "fs.pbrpc.openRequest\032\034.xtreemfs.pbrpc.op" - "enResponse\"\007\215\265\030\t\000\000\000\022T\n\007readdir\022\036.xtreemf" - "s.pbrpc.readdirRequest\032 .xtreemfs.pbrpc." - "DirectoryEntries\"\007\215\265\030\n\000\000\000\022V\n\010readlink\022\037." - "xtreemfs.pbrpc.readlinkRequest\032 .xtreemf" - "s.pbrpc.readlinkResponse\"\007\215\265\030\013\000\000\000\022]\n\013rem" - "ovexattr\022\".xtreemfs.pbrpc.removexattrReq" - "uest\032!.xtreemfs.pbrpc.timestampResponse\"" - "\007\215\265\030\014\000\000\000\022P\n\006rename\022\035.xtreemfs.pbrpc.rena" - "meRequest\032\036.xtreemfs.pbrpc.renameRespons" - "e\"\007\215\265\030\r\000\000\000\022Q\n\005rmdir\022\034.xtreemfs.pbrpc.rmd" - "irRequest\032!.xtreemfs.pbrpc.timestampResp" - "onse\"\007\215\265\030\016\000\000\000\022U\n\007setattr\022\036.xtreemfs.pbrp" - "c.setattrRequest\032!.xtreemfs.pbrpc.timest" - "ampResponse\"\007\215\265\030\017\000\000\000\022W\n\010setxattr\022\037.xtree" - "mfs.pbrpc.setxattrRequest\032!.xtreemfs.pbr" - "pc.timestampResponse\"\007\215\265\030\020\000\000\000\022K\n\007statvfs" - "\022\036.xtreemfs.pbrpc.statvfsRequest\032\027.xtree" - "mfs.pbrpc.StatVFS\"\007\215\265\030\021\000\000\000\022U\n\007symlink\022\036." - "xtreemfs.pbrpc.symlinkRequest\032!.xtreemfs" - ".pbrpc.timestampResponse\"\007\215\265\030\022\000\000\000\022P\n\006unl" - "ink\022\035.xtreemfs.pbrpc.unlinkRequest\032\036.xtr" - "eemfs.pbrpc.unlinkResponse\"\007\215\265\030\023\000\000\000\022O\n\006a" - "ccess\022\035.xtreemfs.pbrpc.accessRequest\032\035.x" - "treemfs.pbrpc.emptyResponse\"\007\215\265\030\024\000\000\000\022[\n\023" - "xtreemfs_checkpoint\022\034.xtreemfs.pbrpc.emp" - "tyRequest\032\035.xtreemfs.pbrpc.emptyResponse" - "\"\007\215\265\030\036\000\000\000\022\214\001\n\032xtreemfs_check_file_exists" - "\0221.xtreemfs.pbrpc.xtreemfs_check_file_ex" - "istsRequest\0322.xtreemfs.pbrpc.xtreemfs_ch" - "eck_file_existsResponse\"\007\215\265\030\037\000\000\000\022w\n\026xtre" - "emfs_dump_database\0225.xtreemfs.pbrpc.xtre" - "emfs_dump_restore_databaseRequest\032\035.xtre" - "emfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022\214\001\n\032xt" - "reemfs_get_suitable_osds\0221.xtreemfs.pbrp" - "c.xtreemfs_get_suitable_osdsRequest\0322.xt" - "reemfs.pbrpc.xtreemfs_get_suitable_osdsR" - "esponse\"\007\215\265\030!\000\000\000\022`\n\027xtreemfs_internal_de" - "bug\022\035.xtreemfs.pbrpc.stringMessage\032\035.xtr" - "eemfs.pbrpc.stringMessage\"\007\215\265\030\"\000\000\000\022n\n\020xt" - "reemfs_listdir\022\'.xtreemfs.pbrpc.xtreemfs" - "_listdirRequest\032(.xtreemfs.pbrpc.xtreemf" - "s_listdirResponse\"\007\215\265\030#\000\000\000\022P\n\016xtreemfs_l" - "svol\022\034.xtreemfs.pbrpc.emptyRequest\032\027.xtr" - "eemfs.pbrpc.Volumes\"\007\215\265\030$\000\000\000\022P\n\016xtreemfs" - "_mkvol\022\026.xtreemfs.pbrpc.Volume\032\035.xtreemf" - "s.pbrpc.emptyResponse\"\007\215\265\030/\000\000\000\022P\n\031xtreem" - "fs_renew_capability\022\024.xtreemfs.pbrpc.XCa" - "p\032\024.xtreemfs.pbrpc.XCap\"\007\215\265\030%\000\000\000\022f\n\036xtre" - "emfs_replication_to_master\022\034.xtreemfs.pb" - "rpc.emptyRequest\032\035.xtreemfs.pbrpc.emptyR" - "esponse\"\007\215\265\030&\000\000\000\022k\n\024xtreemfs_replica_add" - "\022+.xtreemfs.pbrpc.xtreemfs_replica_addRe" + "uid\030\003 \002(\t\"\315\001\n\"xtreemfs_check_file_exists" + "Response\022\025\n\rvolume_exists\030\001 \002(\010\022V\n\013file_" + "states\030\002 \003(\0162=.xtreemfs.pbrpc.xtreemfs_c" + "heck_file_existsResponse.FILE_STATEB\002\020\001\"" + "8\n\nFILE_STATE\022\013\n\007DELETED\020\000\022\016\n\nREGISTERED" + "\020\001\022\r\n\tABANDONED\020\002\":\n%xtreemfs_dump_resto" + "re_databaseRequest\022\021\n\tdump_file\030\001 \002(\t\"i\n" + "!xtreemfs_get_suitable_osdsRequest\022\017\n\007fi" + "le_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume_name" + "\030\004 \001(\t\022\020\n\010num_osds\030\002 \002(\007\"7\n\"xtreemfs_get" + "_suitable_osdsResponse\022\021\n\tosd_uuids\030\001 \003(" + "\t\"(\n\021timestampResponse\022\023\n\013timestamp_s\030\001 " + "\002(\007\"!\n\rstringMessage\022\020\n\010a_string\030\001 \002(\t\"\'" + "\n\027xtreemfs_listdirRequest\022\014\n\004path\030\001 \002(\t\"" + ")\n\030xtreemfs_listdirResponse\022\r\n\005names\030\001 \003" + "(\t\"\177\n\033xtreemfs_replica_addRequest\022\017\n\007fil" + "e_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume_name\030" + "\004 \001(\t\022,\n\013new_replica\030\002 \002(\0132\027.xtreemfs.pb" + "rpc.Replica\"R\n\034xtreemfs_replica_listRequ" + "est\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\002 \001(\t\022\023\n\013vo" + "lume_name\030\003 \001(\t\"f\n\036xtreemfs_replica_remo" + "veRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t" + "\022\023\n\013volume_name\030\004 \001(\t\022\020\n\010osd_uuid\030\002 \002(\t\"" + "|\n\034xtreemfs_restore_fileRequest\022\021\n\tfile_" + "path\030\001 \002(\t\022\017\n\007file_id\030\002 \002(\t\022\021\n\tfile_size" + "\030\003 \002(\006\022\020\n\010osd_uuid\030\004 \002(\t\022\023\n\013stripe_size\030" + "\005 \002(\007\",\n\025xtreemfs_rmvolRequest\022\023\n\013volume" + "_name\030\001 \002(\t\"\321\001\n xtreemfs_update_file_siz" + "eRequest\022\"\n\004xcap\030\001 \002(\0132\024.xtreemfs.pbrpc." + "XCap\022<\n\022osd_write_response\030\002 \002(\0132 .xtree" + "mfs.pbrpc.OSDWriteResponse\022\022\n\nclose_file" + "\030\003 \001(\010\0227\n\013coordinates\030\004 \001(\0132\".xtreemfs.p" + "brpc.VivaldiCoordinates\"S\n)xtreemfs_set_" + "replica_update_policyRequest\022\017\n\007file_id\030" + "\001 \002(\t\022\025\n\rupdate_policy\030\002 \002(\t\"G\n*xtreemfs" + "_set_replica_update_policyResponse\022\031\n\021ol" + "d_update_policy\030\001 \002(\t\"E\n#xtreemfs_set_re" + "ad_only_xattrRequest\022\017\n\007file_id\030\001 \002(\t\022\r\n" + "\005value\030\002 \002(\010\"7\n$xtreemfs_set_read_only_x" + "attrResponse\022\017\n\007was_set\030\001 \002(\010\"7\n$xtreemf" + "s_get_file_credentialsRequest\022\017\n\007file_id" + "\030\001 \002(\t*\242\001\n\010Setattrs\022\020\n\014SETATTR_MODE\020\001\022\017\n" + "\013SETATTR_UID\020\002\022\017\n\013SETATTR_GID\020\004\022\020\n\014SETAT" + "TR_SIZE\020\010\022\021\n\rSETATTR_ATIME\020\020\022\021\n\rSETATTR_" + "MTIME\020 \022\021\n\rSETATTR_CTIME\020@\022\027\n\022SETATTR_AT" + "TRIBUTES\020\200\001*>\n\013XATTR_FLAGS\022\026\n\022XATTR_FLAG" + "S_CREATE\020\001\022\027\n\023XATTR_FLAGS_REPLACE\020\002*j\n\014A" + "CCESS_FLAGS\022\025\n\021ACCESS_FLAGS_F_OK\020\000\022\025\n\021AC" + "CESS_FLAGS_X_OK\020\001\022\025\n\021ACCESS_FLAGS_W_OK\020\002" + "\022\025\n\021ACCESS_FLAGS_R_OK\020\0042\354\037\n\nMRCService\022S" + "\n\010fsetattr\022\037.xtreemfs.pbrpc.fsetattrRequ" + "est\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\002" + "\000\000\000\022@\n\tftruncate\022\024.xtreemfs.pbrpc.XCap\032\024" + ".xtreemfs.pbrpc.XCap\"\007\215\265\030\003\000\000\000\022S\n\007getattr" + "\022\036.xtreemfs.pbrpc.getattrRequest\032\037.xtree" + "mfs.pbrpc.getattrResponse\"\007\215\265\030\004\000\000\000\022V\n\010ge" + "txattr\022\037.xtreemfs.pbrpc.getxattrRequest\032" + " .xtreemfs.pbrpc.getxattrResponse\"\007\215\265\030\005\000" + "\000\000\022O\n\004link\022\033.xtreemfs.pbrpc.linkRequest\032" + "!.xtreemfs.pbrpc.timestampResponse\"\007\215\265\030\006" + "\000\000\000\022Y\n\tlistxattr\022 .xtreemfs.pbrpc.listxa" + "ttrRequest\032!.xtreemfs.pbrpc.listxattrRes" + "ponse\"\007\215\265\030\007\000\000\000\022Q\n\005mkdir\022\034.xtreemfs.pbrpc" + ".mkdirRequest\032!.xtreemfs.pbrpc.timestamp" + "Response\"\007\215\265\030\010\000\000\000\022J\n\004open\022\033.xtreemfs.pbr" + "pc.openRequest\032\034.xtreemfs.pbrpc.openResp" + "onse\"\007\215\265\030\t\000\000\000\022T\n\007readdir\022\036.xtreemfs.pbrp" + "c.readdirRequest\032 .xtreemfs.pbrpc.Direct" + "oryEntries\"\007\215\265\030\n\000\000\000\022V\n\010readlink\022\037.xtreem" + "fs.pbrpc.readlinkRequest\032 .xtreemfs.pbrp" + "c.readlinkResponse\"\007\215\265\030\013\000\000\000\022]\n\013removexat" + "tr\022\".xtreemfs.pbrpc.removexattrRequest\032!" + ".xtreemfs.pbrpc.timestampResponse\"\007\215\265\030\014\000" + "\000\000\022P\n\006rename\022\035.xtreemfs.pbrpc.renameRequ" + "est\032\036.xtreemfs.pbrpc.renameResponse\"\007\215\265\030" + "\r\000\000\000\022Q\n\005rmdir\022\034.xtreemfs.pbrpc.rmdirRequ" + "est\032!.xtreemfs.pbrpc.timestampResponse\"\007" + "\215\265\030\016\000\000\000\022U\n\007setattr\022\036.xtreemfs.pbrpc.seta" + "ttrRequest\032!.xtreemfs.pbrpc.timestampRes" + "ponse\"\007\215\265\030\017\000\000\000\022W\n\010setxattr\022\037.xtreemfs.pb" + "rpc.setxattrRequest\032!.xtreemfs.pbrpc.tim" + "estampResponse\"\007\215\265\030\020\000\000\000\022K\n\007statvfs\022\036.xtr" + "eemfs.pbrpc.statvfsRequest\032\027.xtreemfs.pb" + "rpc.StatVFS\"\007\215\265\030\021\000\000\000\022U\n\007symlink\022\036.xtreem" + "fs.pbrpc.symlinkRequest\032!.xtreemfs.pbrpc" + ".timestampResponse\"\007\215\265\030\022\000\000\000\022P\n\006unlink\022\035." + "xtreemfs.pbrpc.unlinkRequest\032\036.xtreemfs." + "pbrpc.unlinkResponse\"\007\215\265\030\023\000\000\000\022O\n\006access\022" + "\035.xtreemfs.pbrpc.accessRequest\032\035.xtreemf" + "s.pbrpc.emptyResponse\"\007\215\265\030\024\000\000\000\022[\n\023xtreem" + "fs_checkpoint\022\034.xtreemfs.pbrpc.emptyRequ" + "est\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\036" + "\000\000\000\022\214\001\n\032xtreemfs_check_file_exists\0221.xtr" + "eemfs.pbrpc.xtreemfs_check_file_existsRe" + "quest\0322.xtreemfs.pbrpc.xtreemfs_check_fi" + "le_existsResponse\"\007\215\265\030\037\000\000\000\022w\n\026xtreemfs_d" + "ump_database\0225.xtreemfs.pbrpc.xtreemfs_d" + "ump_restore_databaseRequest\032\035.xtreemfs.p" + "brpc.emptyResponse\"\007\215\265\030 \000\000\000\022\214\001\n\032xtreemfs" + "_get_suitable_osds\0221.xtreemfs.pbrpc.xtre" + "emfs_get_suitable_osdsRequest\0322.xtreemfs" + ".pbrpc.xtreemfs_get_suitable_osdsRespons" + "e\"\007\215\265\030!\000\000\000\022`\n\027xtreemfs_internal_debug\022\035." + "xtreemfs.pbrpc.stringMessage\032\035.xtreemfs." + "pbrpc.stringMessage\"\007\215\265\030\"\000\000\000\022n\n\020xtreemfs" + "_listdir\022\'.xtreemfs.pbrpc.xtreemfs_listd" + "irRequest\032(.xtreemfs.pbrpc.xtreemfs_list" + "dirResponse\"\007\215\265\030#\000\000\000\022P\n\016xtreemfs_lsvol\022\034" + ".xtreemfs.pbrpc.emptyRequest\032\027.xtreemfs." + "pbrpc.Volumes\"\007\215\265\030$\000\000\000\022P\n\016xtreemfs_mkvol" + "\022\026.xtreemfs.pbrpc.Volume\032\035.xtreemfs.pbrp" + "c.emptyResponse\"\007\215\265\030/\000\000\000\022P\n\031xtreemfs_ren" + "ew_capability\022\024.xtreemfs.pbrpc.XCap\032\024.xt" + "reemfs.pbrpc.XCap\"\007\215\265\030%\000\000\000\022f\n\036xtreemfs_r" + "eplication_to_master\022\034.xtreemfs.pbrpc.em" + "ptyRequest\032\035.xtreemfs.pbrpc.emptyRespons" + "e\"\007\215\265\030&\000\000\000\022k\n\024xtreemfs_replica_add\022+.xtr" + "eemfs.pbrpc.xtreemfs_replica_addRequest\032" + "\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\'\000\000\000\022" + "h\n\025xtreemfs_replica_list\022,.xtreemfs.pbrp" + "c.xtreemfs_replica_listRequest\032\030.xtreemf" + "s.pbrpc.Replicas\"\007\215\265\030(\000\000\000\022s\n\027xtreemfs_re" + "plica_remove\022..xtreemfs.pbrpc.xtreemfs_r" + "eplica_removeRequest\032\037.xtreemfs.pbrpc.Fi" + "leCredentials\"\007\215\265\030)\000\000\000\022z\n\031xtreemfs_resto" + "re_database\0225.xtreemfs.pbrpc.xtreemfs_du" + "mp_restore_databaseRequest\032\035.xtreemfs.pb" + "rpc.emptyResponse\"\007\215\265\030*\000\000\000\022m\n\025xtreemfs_r" + "estore_file\022,.xtreemfs.pbrpc.xtreemfs_re" + "store_fileRequest\032\035.xtreemfs.pbrpc.empty" + "Response\"\007\215\265\030+\000\000\000\022_\n\016xtreemfs_rmvol\022%.xt" + "reemfs.pbrpc.xtreemfs_rmvolRequest\032\035.xtr" + "eemfs.pbrpc.emptyResponse\"\007\215\265\030,\000\000\000\022Y\n\021xt" + "reemfs_shutdown\022\034.xtreemfs.pbrpc.emptyRe" "quest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265" - "\030\'\000\000\000\022h\n\025xtreemfs_replica_list\022,.xtreemf" - "s.pbrpc.xtreemfs_replica_listRequest\032\030.x" - "treemfs.pbrpc.Replicas\"\007\215\265\030(\000\000\000\022s\n\027xtree" - "mfs_replica_remove\022..xtreemfs.pbrpc.xtre" - "emfs_replica_removeRequest\032\037.xtreemfs.pb" - "rpc.FileCredentials\"\007\215\265\030)\000\000\000\022z\n\031xtreemfs" - "_restore_database\0225.xtreemfs.pbrpc.xtree" - "mfs_dump_restore_databaseRequest\032\035.xtree" - "mfs.pbrpc.emptyResponse\"\007\215\265\030*\000\000\000\022m\n\025xtre" - "emfs_restore_file\022,.xtreemfs.pbrpc.xtree" - "mfs_restore_fileRequest\032\035.xtreemfs.pbrpc" - ".emptyResponse\"\007\215\265\030+\000\000\000\022_\n\016xtreemfs_rmvo" - "l\022%.xtreemfs.pbrpc.xtreemfs_rmvolRequest" - "\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030,\000\000\000" - "\022Y\n\021xtreemfs_shutdown\022\034.xtreemfs.pbrpc.e" - "mptyRequest\032\035.xtreemfs.pbrpc.emptyRespon" - "se\"\007\215\265\030-\000\000\000\022y\n\031xtreemfs_update_file_size" - "\0220.xtreemfs.pbrpc.xtreemfs_update_file_s" - "izeRequest\032!.xtreemfs.pbrpc.timestampRes" - "ponse\"\007\215\265\030.\000\000\000\022\244\001\n\"xtreemfs_set_replica_" - "update_policy\0229.xtreemfs.pbrpc.xtreemfs_" - "set_replica_update_policyRequest\032:.xtree" - "mfs.pbrpc.xtreemfs_set_replica_update_po" - "licyResponse\"\007\215\265\0300\000\000\000\022\222\001\n\034xtreemfs_set_r" - "ead_only_xattr\0223.xtreemfs.pbrpc.xtreemfs" - "_set_read_only_xattrRequest\0324.xtreemfs.p" - "brpc.xtreemfs_set_read_only_xattrRespons" - "e\"\007\215\265\0301\000\000\000\022\177\n\035xtreemfs_get_file_credenti" - "als\0224.xtreemfs.pbrpc.xtreemfs_get_file_c" - "redentialsRequest\032\037.xtreemfs.pbrpc.FileC" - "redentials\"\007\215\265\0302\000\000\000\022N\n\024xtreemfs_get_xloc" - "set\022\024.xtreemfs.pbrpc.XCap\032\027.xtreemfs.pbr" - "pc.XLocSet\"\007\215\265\0303\000\000\000\032\007\225\265\030!N\000\000B(\n&org.xtre" - "emfs.pbrpc.generatedinterfaces", 9270); + "\030-\000\000\000\022y\n\031xtreemfs_update_file_size\0220.xtr" + "eemfs.pbrpc.xtreemfs_update_file_sizeReq" + "uest\032!.xtreemfs.pbrpc.timestampResponse\"" + "\007\215\265\030.\000\000\000\022\244\001\n\"xtreemfs_set_replica_update" + "_policy\0229.xtreemfs.pbrpc.xtreemfs_set_re" + "plica_update_policyRequest\032:.xtreemfs.pb" + "rpc.xtreemfs_set_replica_update_policyRe" + "sponse\"\007\215\265\0300\000\000\000\022\222\001\n\034xtreemfs_set_read_on" + "ly_xattr\0223.xtreemfs.pbrpc.xtreemfs_set_r" + "ead_only_xattrRequest\0324.xtreemfs.pbrpc.x" + "treemfs_set_read_only_xattrResponse\"\007\215\265\030" + "1\000\000\000\022\177\n\035xtreemfs_get_file_credentials\0224." + "xtreemfs.pbrpc.xtreemfs_get_file_credent" + "ialsRequest\032\037.xtreemfs.pbrpc.FileCredent" + "ials\"\007\215\265\0302\000\000\000\022N\n\024xtreemfs_get_xlocset\022\024." + "xtreemfs.pbrpc.XCap\032\027.xtreemfs.pbrpc.XLo" + "cSet\"\007\215\265\0303\000\000\000\032\007\225\265\030!N\000\000B(\n&org.xtreemfs.p" + "brpc.generatedinterfaces", 9424); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "xtreemfs/MRC.proto", &protobuf_RegisterTypes); Stat::default_instance_ = new Stat(); @@ -1580,10 +1587,10 @@ void protobuf_AddDesc_xtreemfs_2fMRC_2eproto() { unlinkResponse::default_instance_ = new unlinkResponse(); accessRequest::default_instance_ = new accessRequest(); xtreemfs_check_file_existsRequest::default_instance_ = new xtreemfs_check_file_existsRequest(); + xtreemfs_check_file_existsResponse::default_instance_ = new xtreemfs_check_file_existsResponse(); xtreemfs_dump_restore_databaseRequest::default_instance_ = new xtreemfs_dump_restore_databaseRequest(); xtreemfs_get_suitable_osdsRequest::default_instance_ = new xtreemfs_get_suitable_osdsRequest(); xtreemfs_get_suitable_osdsResponse::default_instance_ = new xtreemfs_get_suitable_osdsResponse(); - xtreemfs_check_file_existsResponse::default_instance_ = new xtreemfs_check_file_existsResponse(); timestampResponse::default_instance_ = new timestampResponse(); stringMessage::default_instance_ = new stringMessage(); xtreemfs_listdirRequest::default_instance_ = new xtreemfs_listdirRequest(); @@ -1632,10 +1639,10 @@ void protobuf_AddDesc_xtreemfs_2fMRC_2eproto() { unlinkResponse::default_instance_->InitAsDefaultInstance(); accessRequest::default_instance_->InitAsDefaultInstance(); xtreemfs_check_file_existsRequest::default_instance_->InitAsDefaultInstance(); + xtreemfs_check_file_existsResponse::default_instance_->InitAsDefaultInstance(); xtreemfs_dump_restore_databaseRequest::default_instance_->InitAsDefaultInstance(); xtreemfs_get_suitable_osdsRequest::default_instance_->InitAsDefaultInstance(); xtreemfs_get_suitable_osdsResponse::default_instance_->InitAsDefaultInstance(); - xtreemfs_check_file_existsResponse::default_instance_->InitAsDefaultInstance(); timestampResponse::default_instance_->InitAsDefaultInstance(); stringMessage::default_instance_->InitAsDefaultInstance(); xtreemfs_listdirRequest::default_instance_->InitAsDefaultInstance(); @@ -12943,6 +12950,320 @@ void xtreemfs_check_file_existsRequest::Swap(xtreemfs_check_file_existsRequest* } +// =================================================================== + +const ::google::protobuf::EnumDescriptor* xtreemfs_check_file_existsResponse_FILE_STATE_descriptor() { + protobuf_AssignDescriptorsOnce(); + return xtreemfs_check_file_existsResponse_FILE_STATE_descriptor_; +} +bool xtreemfs_check_file_existsResponse_FILE_STATE_IsValid(int value) { + switch(value) { + case 0: + case 1: + case 2: + return true; + default: + return false; + } +} + +#ifndef _MSC_VER +const xtreemfs_check_file_existsResponse_FILE_STATE xtreemfs_check_file_existsResponse::DELETED; +const xtreemfs_check_file_existsResponse_FILE_STATE xtreemfs_check_file_existsResponse::REGISTERED; +const xtreemfs_check_file_existsResponse_FILE_STATE xtreemfs_check_file_existsResponse::ABANDONED; +const xtreemfs_check_file_existsResponse_FILE_STATE xtreemfs_check_file_existsResponse::FILE_STATE_MIN; +const xtreemfs_check_file_existsResponse_FILE_STATE xtreemfs_check_file_existsResponse::FILE_STATE_MAX; +const int xtreemfs_check_file_existsResponse::FILE_STATE_ARRAYSIZE; +#endif // _MSC_VER +#ifndef _MSC_VER +const int xtreemfs_check_file_existsResponse::kVolumeExistsFieldNumber; +const int xtreemfs_check_file_existsResponse::kFileStatesFieldNumber; +#endif // !_MSC_VER + +xtreemfs_check_file_existsResponse::xtreemfs_check_file_existsResponse() + : ::google::protobuf::Message() { + SharedCtor(); +} + +void xtreemfs_check_file_existsResponse::InitAsDefaultInstance() { +} + +xtreemfs_check_file_existsResponse::xtreemfs_check_file_existsResponse(const xtreemfs_check_file_existsResponse& from) + : ::google::protobuf::Message() { + SharedCtor(); + MergeFrom(from); +} + +void xtreemfs_check_file_existsResponse::SharedCtor() { + _cached_size_ = 0; + volume_exists_ = false; + ::memset(_has_bits_, 0, sizeof(_has_bits_)); +} + +xtreemfs_check_file_existsResponse::~xtreemfs_check_file_existsResponse() { + SharedDtor(); +} + +void xtreemfs_check_file_existsResponse::SharedDtor() { + if (this != default_instance_) { + } +} + +void xtreemfs_check_file_existsResponse::SetCachedSize(int size) const { + GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); + _cached_size_ = size; + GOOGLE_SAFE_CONCURRENT_WRITES_END(); +} +const ::google::protobuf::Descriptor* xtreemfs_check_file_existsResponse::descriptor() { + protobuf_AssignDescriptorsOnce(); + return xtreemfs_check_file_existsResponse_descriptor_; +} + +const xtreemfs_check_file_existsResponse& xtreemfs_check_file_existsResponse::default_instance() { + if (default_instance_ == NULL) protobuf_AddDesc_xtreemfs_2fMRC_2eproto(); + return *default_instance_; +} + +xtreemfs_check_file_existsResponse* xtreemfs_check_file_existsResponse::default_instance_ = NULL; + +xtreemfs_check_file_existsResponse* xtreemfs_check_file_existsResponse::New() const { + return new xtreemfs_check_file_existsResponse; +} + +void xtreemfs_check_file_existsResponse::Clear() { + if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { + volume_exists_ = false; + } + file_states_.Clear(); + ::memset(_has_bits_, 0, sizeof(_has_bits_)); + mutable_unknown_fields()->Clear(); +} + +bool xtreemfs_check_file_existsResponse::MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input) { +#define DO_(EXPRESSION) if (!(EXPRESSION)) return false + ::google::protobuf::uint32 tag; + while ((tag = input->ReadTag()) != 0) { + switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { + // required bool volume_exists = 1; + case 1: { + if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == + ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) { + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( + input, &volume_exists_))); + set_has_volume_exists(); + } else { + goto handle_uninterpreted; + } + if (input->ExpectTag(18)) goto parse_file_states; + break; + } + + // repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + case 2: { + if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == + ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) { + parse_file_states: + ::google::protobuf::uint32 length; + DO_(input->ReadVarint32(&length)); + ::google::protobuf::io::CodedInputStream::Limit limit = input->PushLimit(length); + while (input->BytesUntilLimit() > 0) { + int value; + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( + input, &value))); + if (::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE_IsValid(value)) { + add_file_states(static_cast< ::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE >(value)); + } + } + input->PopLimit(limit); + } else if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) + == ::google::protobuf::internal::WireFormatLite:: + WIRETYPE_VARINT) { + int value; + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( + input, &value))); + if (::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE_IsValid(value)) { + add_file_states(static_cast< ::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE >(value)); + } else { + mutable_unknown_fields()->AddVarint(2, value); + } + } else { + goto handle_uninterpreted; + } + if (input->ExpectAtEnd()) return true; + break; + } + + default: { + handle_uninterpreted: + if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == + ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { + return true; + } + DO_(::google::protobuf::internal::WireFormat::SkipField( + input, tag, mutable_unknown_fields())); + break; + } + } + } + return true; +#undef DO_ +} + +void xtreemfs_check_file_existsResponse::SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const { + // required bool volume_exists = 1; + if (has_volume_exists()) { + ::google::protobuf::internal::WireFormatLite::WriteBool(1, this->volume_exists(), output); + } + + // repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + if (this->file_states_size() > 0) { + ::google::protobuf::internal::WireFormatLite::WriteTag( + 2, + ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, + output); + output->WriteVarint32(_file_states_cached_byte_size_); + } + for (int i = 0; i < this->file_states_size(); i++) { + ::google::protobuf::internal::WireFormatLite::WriteEnumNoTag( + this->file_states(i), output); + } + + if (!unknown_fields().empty()) { + ::google::protobuf::internal::WireFormat::SerializeUnknownFields( + unknown_fields(), output); + } +} + +::google::protobuf::uint8* xtreemfs_check_file_existsResponse::SerializeWithCachedSizesToArray( + ::google::protobuf::uint8* target) const { + // required bool volume_exists = 1; + if (has_volume_exists()) { + target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(1, this->volume_exists(), target); + } + + // repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + if (this->file_states_size() > 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteTagToArray( + 2, + ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED, + target); + target = ::google::protobuf::io::CodedOutputStream::WriteVarint32ToArray( _file_states_cached_byte_size_, target); + } + for (int i = 0; i < this->file_states_size(); i++) { + target = ::google::protobuf::internal::WireFormatLite::WriteEnumNoTagToArray( + this->file_states(i), target); + } + + if (!unknown_fields().empty()) { + target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( + unknown_fields(), target); + } + return target; +} + +int xtreemfs_check_file_existsResponse::ByteSize() const { + int total_size = 0; + + if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { + // required bool volume_exists = 1; + if (has_volume_exists()) { + total_size += 1 + 1; + } + + } + // repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + { + int data_size = 0; + for (int i = 0; i < this->file_states_size(); i++) { + data_size += ::google::protobuf::internal::WireFormatLite::EnumSize( + this->file_states(i)); + } + if (data_size > 0) { + total_size += 1 + + ::google::protobuf::internal::WireFormatLite::Int32Size(data_size); + } + GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); + _file_states_cached_byte_size_ = data_size; + GOOGLE_SAFE_CONCURRENT_WRITES_END(); + total_size += data_size; + } + + if (!unknown_fields().empty()) { + total_size += + ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( + unknown_fields()); + } + GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); + _cached_size_ = total_size; + GOOGLE_SAFE_CONCURRENT_WRITES_END(); + return total_size; +} + +void xtreemfs_check_file_existsResponse::MergeFrom(const ::google::protobuf::Message& from) { + GOOGLE_CHECK_NE(&from, this); + const xtreemfs_check_file_existsResponse* source = + ::google::protobuf::internal::dynamic_cast_if_available( + &from); + if (source == NULL) { + ::google::protobuf::internal::ReflectionOps::Merge(from, this); + } else { + MergeFrom(*source); + } +} + +void xtreemfs_check_file_existsResponse::MergeFrom(const xtreemfs_check_file_existsResponse& from) { + GOOGLE_CHECK_NE(&from, this); + file_states_.MergeFrom(from.file_states_); + if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { + if (from.has_volume_exists()) { + set_volume_exists(from.volume_exists()); + } + } + mutable_unknown_fields()->MergeFrom(from.unknown_fields()); +} + +void xtreemfs_check_file_existsResponse::CopyFrom(const ::google::protobuf::Message& from) { + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +void xtreemfs_check_file_existsResponse::CopyFrom(const xtreemfs_check_file_existsResponse& from) { + if (&from == this) return; + Clear(); + MergeFrom(from); +} + +bool xtreemfs_check_file_existsResponse::IsInitialized() const { + if ((_has_bits_[0] & 0x00000001) != 0x00000001) return false; + + return true; +} + +void xtreemfs_check_file_existsResponse::Swap(xtreemfs_check_file_existsResponse* other) { + if (other != this) { + std::swap(volume_exists_, other->volume_exists_); + file_states_.Swap(&other->file_states_); + std::swap(_has_bits_[0], other->_has_bits_[0]); + _unknown_fields_.Swap(&other->_unknown_fields_); + std::swap(_cached_size_, other->_cached_size_); + } +} + +::google::protobuf::Metadata xtreemfs_check_file_existsResponse::GetMetadata() const { + protobuf_AssignDescriptorsOnce(); + ::google::protobuf::Metadata metadata; + metadata.descriptor = xtreemfs_check_file_existsResponse_descriptor_; + metadata.reflection = xtreemfs_check_file_existsResponse_reflection_; + return metadata; +} + + // =================================================================== #ifndef _MSC_VER @@ -13758,232 +14079,6 @@ void xtreemfs_get_suitable_osdsResponse::Swap(xtreemfs_get_suitable_osdsResponse } -// =================================================================== - -#ifndef _MSC_VER -const int xtreemfs_check_file_existsResponse::kBitmapFieldNumber; -#endif // !_MSC_VER - -xtreemfs_check_file_existsResponse::xtreemfs_check_file_existsResponse() - : ::google::protobuf::Message() { - SharedCtor(); -} - -void xtreemfs_check_file_existsResponse::InitAsDefaultInstance() { -} - -xtreemfs_check_file_existsResponse::xtreemfs_check_file_existsResponse(const xtreemfs_check_file_existsResponse& from) - : ::google::protobuf::Message() { - SharedCtor(); - MergeFrom(from); -} - -void xtreemfs_check_file_existsResponse::SharedCtor() { - _cached_size_ = 0; - bitmap_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); - ::memset(_has_bits_, 0, sizeof(_has_bits_)); -} - -xtreemfs_check_file_existsResponse::~xtreemfs_check_file_existsResponse() { - SharedDtor(); -} - -void xtreemfs_check_file_existsResponse::SharedDtor() { - if (bitmap_ != &::google::protobuf::internal::kEmptyString) { - delete bitmap_; - } - if (this != default_instance_) { - } -} - -void xtreemfs_check_file_existsResponse::SetCachedSize(int size) const { - GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); - _cached_size_ = size; - GOOGLE_SAFE_CONCURRENT_WRITES_END(); -} -const ::google::protobuf::Descriptor* xtreemfs_check_file_existsResponse::descriptor() { - protobuf_AssignDescriptorsOnce(); - return xtreemfs_check_file_existsResponse_descriptor_; -} - -const xtreemfs_check_file_existsResponse& xtreemfs_check_file_existsResponse::default_instance() { - if (default_instance_ == NULL) protobuf_AddDesc_xtreemfs_2fMRC_2eproto(); - return *default_instance_; -} - -xtreemfs_check_file_existsResponse* xtreemfs_check_file_existsResponse::default_instance_ = NULL; - -xtreemfs_check_file_existsResponse* xtreemfs_check_file_existsResponse::New() const { - return new xtreemfs_check_file_existsResponse; -} - -void xtreemfs_check_file_existsResponse::Clear() { - if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { - if (has_bitmap()) { - if (bitmap_ != &::google::protobuf::internal::kEmptyString) { - bitmap_->clear(); - } - } - } - ::memset(_has_bits_, 0, sizeof(_has_bits_)); - mutable_unknown_fields()->Clear(); -} - -bool xtreemfs_check_file_existsResponse::MergePartialFromCodedStream( - ::google::protobuf::io::CodedInputStream* input) { -#define DO_(EXPRESSION) if (!(EXPRESSION)) return false - ::google::protobuf::uint32 tag; - while ((tag = input->ReadTag()) != 0) { - switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { - // required string bitmap = 1; - case 1: { - if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == - ::google::protobuf::internal::WireFormatLite::WIRETYPE_LENGTH_DELIMITED) { - DO_(::google::protobuf::internal::WireFormatLite::ReadString( - input, this->mutable_bitmap())); - ::google::protobuf::internal::WireFormat::VerifyUTF8String( - this->bitmap().data(), this->bitmap().length(), - ::google::protobuf::internal::WireFormat::PARSE); - } else { - goto handle_uninterpreted; - } - if (input->ExpectAtEnd()) return true; - break; - } - - default: { - handle_uninterpreted: - if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == - ::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) { - return true; - } - DO_(::google::protobuf::internal::WireFormat::SkipField( - input, tag, mutable_unknown_fields())); - break; - } - } - } - return true; -#undef DO_ -} - -void xtreemfs_check_file_existsResponse::SerializeWithCachedSizes( - ::google::protobuf::io::CodedOutputStream* output) const { - // required string bitmap = 1; - if (has_bitmap()) { - ::google::protobuf::internal::WireFormat::VerifyUTF8String( - this->bitmap().data(), this->bitmap().length(), - ::google::protobuf::internal::WireFormat::SERIALIZE); - ::google::protobuf::internal::WireFormatLite::WriteString( - 1, this->bitmap(), output); - } - - if (!unknown_fields().empty()) { - ::google::protobuf::internal::WireFormat::SerializeUnknownFields( - unknown_fields(), output); - } -} - -::google::protobuf::uint8* xtreemfs_check_file_existsResponse::SerializeWithCachedSizesToArray( - ::google::protobuf::uint8* target) const { - // required string bitmap = 1; - if (has_bitmap()) { - ::google::protobuf::internal::WireFormat::VerifyUTF8String( - this->bitmap().data(), this->bitmap().length(), - ::google::protobuf::internal::WireFormat::SERIALIZE); - target = - ::google::protobuf::internal::WireFormatLite::WriteStringToArray( - 1, this->bitmap(), target); - } - - if (!unknown_fields().empty()) { - target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( - unknown_fields(), target); - } - return target; -} - -int xtreemfs_check_file_existsResponse::ByteSize() const { - int total_size = 0; - - if (_has_bits_[0 / 32] & (0xffu << (0 % 32))) { - // required string bitmap = 1; - if (has_bitmap()) { - total_size += 1 + - ::google::protobuf::internal::WireFormatLite::StringSize( - this->bitmap()); - } - - } - if (!unknown_fields().empty()) { - total_size += - ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( - unknown_fields()); - } - GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); - _cached_size_ = total_size; - GOOGLE_SAFE_CONCURRENT_WRITES_END(); - return total_size; -} - -void xtreemfs_check_file_existsResponse::MergeFrom(const ::google::protobuf::Message& from) { - GOOGLE_CHECK_NE(&from, this); - const xtreemfs_check_file_existsResponse* source = - ::google::protobuf::internal::dynamic_cast_if_available( - &from); - if (source == NULL) { - ::google::protobuf::internal::ReflectionOps::Merge(from, this); - } else { - MergeFrom(*source); - } -} - -void xtreemfs_check_file_existsResponse::MergeFrom(const xtreemfs_check_file_existsResponse& from) { - GOOGLE_CHECK_NE(&from, this); - if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { - if (from.has_bitmap()) { - set_bitmap(from.bitmap()); - } - } - mutable_unknown_fields()->MergeFrom(from.unknown_fields()); -} - -void xtreemfs_check_file_existsResponse::CopyFrom(const ::google::protobuf::Message& from) { - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -void xtreemfs_check_file_existsResponse::CopyFrom(const xtreemfs_check_file_existsResponse& from) { - if (&from == this) return; - Clear(); - MergeFrom(from); -} - -bool xtreemfs_check_file_existsResponse::IsInitialized() const { - if ((_has_bits_[0] & 0x00000001) != 0x00000001) return false; - - return true; -} - -void xtreemfs_check_file_existsResponse::Swap(xtreemfs_check_file_existsResponse* other) { - if (other != this) { - std::swap(bitmap_, other->bitmap_); - std::swap(_has_bits_[0], other->_has_bits_[0]); - _unknown_fields_.Swap(&other->_unknown_fields_); - std::swap(_cached_size_, other->_cached_size_); - } -} - -::google::protobuf::Metadata xtreemfs_check_file_existsResponse::GetMetadata() const { - protobuf_AssignDescriptorsOnce(); - ::google::protobuf::Metadata metadata; - metadata.descriptor = xtreemfs_check_file_existsResponse_descriptor_; - metadata.reflection = xtreemfs_check_file_existsResponse_reflection_; - return metadata; -} - - // =================================================================== #ifndef _MSC_VER diff --git a/cpp/generated/xtreemfs/MRC.pb.h b/cpp/generated/xtreemfs/MRC.pb.h index 8b9009413..b2db6ee01 100644 --- a/cpp/generated/xtreemfs/MRC.pb.h +++ b/cpp/generated/xtreemfs/MRC.pb.h @@ -71,10 +71,10 @@ class unlinkRequest; class unlinkResponse; class accessRequest; class xtreemfs_check_file_existsRequest; +class xtreemfs_check_file_existsResponse; class xtreemfs_dump_restore_databaseRequest; class xtreemfs_get_suitable_osdsRequest; class xtreemfs_get_suitable_osdsResponse; -class xtreemfs_check_file_existsResponse; class timestampResponse; class stringMessage; class xtreemfs_listdirRequest; @@ -91,6 +91,26 @@ class xtreemfs_set_read_only_xattrRequest; class xtreemfs_set_read_only_xattrResponse; class xtreemfs_get_file_credentialsRequest; +enum xtreemfs_check_file_existsResponse_FILE_STATE { + xtreemfs_check_file_existsResponse_FILE_STATE_DELETED = 0, + xtreemfs_check_file_existsResponse_FILE_STATE_REGISTERED = 1, + xtreemfs_check_file_existsResponse_FILE_STATE_ABANDONED = 2 +}; +bool xtreemfs_check_file_existsResponse_FILE_STATE_IsValid(int value); +const xtreemfs_check_file_existsResponse_FILE_STATE xtreemfs_check_file_existsResponse_FILE_STATE_FILE_STATE_MIN = xtreemfs_check_file_existsResponse_FILE_STATE_DELETED; +const xtreemfs_check_file_existsResponse_FILE_STATE xtreemfs_check_file_existsResponse_FILE_STATE_FILE_STATE_MAX = xtreemfs_check_file_existsResponse_FILE_STATE_ABANDONED; +const int xtreemfs_check_file_existsResponse_FILE_STATE_FILE_STATE_ARRAYSIZE = xtreemfs_check_file_existsResponse_FILE_STATE_FILE_STATE_MAX + 1; + +const ::google::protobuf::EnumDescriptor* xtreemfs_check_file_existsResponse_FILE_STATE_descriptor(); +inline const ::std::string& xtreemfs_check_file_existsResponse_FILE_STATE_Name(xtreemfs_check_file_existsResponse_FILE_STATE value) { + return ::google::protobuf::internal::NameOfEnum( + xtreemfs_check_file_existsResponse_FILE_STATE_descriptor(), value); +} +inline bool xtreemfs_check_file_existsResponse_FILE_STATE_Parse( + const ::std::string& name, xtreemfs_check_file_existsResponse_FILE_STATE* value) { + return ::google::protobuf::internal::ParseNamedEnum( + xtreemfs_check_file_existsResponse_FILE_STATE_descriptor(), name, value); +} enum Setattrs { SETATTR_MODE = 1, SETATTR_UID = 2, @@ -4037,6 +4057,125 @@ class xtreemfs_check_file_existsRequest : public ::google::protobuf::Message { }; // ------------------------------------------------------------------- +class xtreemfs_check_file_existsResponse : public ::google::protobuf::Message { + public: + xtreemfs_check_file_existsResponse(); + virtual ~xtreemfs_check_file_existsResponse(); + + xtreemfs_check_file_existsResponse(const xtreemfs_check_file_existsResponse& from); + + inline xtreemfs_check_file_existsResponse& operator=(const xtreemfs_check_file_existsResponse& from) { + CopyFrom(from); + return *this; + } + + inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { + return _unknown_fields_; + } + + inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { + return &_unknown_fields_; + } + + static const ::google::protobuf::Descriptor* descriptor(); + static const xtreemfs_check_file_existsResponse& default_instance(); + + void Swap(xtreemfs_check_file_existsResponse* other); + + // implements Message ---------------------------------------------- + + xtreemfs_check_file_existsResponse* New() const; + void CopyFrom(const ::google::protobuf::Message& from); + void MergeFrom(const ::google::protobuf::Message& from); + void CopyFrom(const xtreemfs_check_file_existsResponse& from); + void MergeFrom(const xtreemfs_check_file_existsResponse& from); + void Clear(); + bool IsInitialized() const; + + int ByteSize() const; + bool MergePartialFromCodedStream( + ::google::protobuf::io::CodedInputStream* input); + void SerializeWithCachedSizes( + ::google::protobuf::io::CodedOutputStream* output) const; + ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const; + int GetCachedSize() const { return _cached_size_; } + private: + void SharedCtor(); + void SharedDtor(); + void SetCachedSize(int size) const; + public: + + ::google::protobuf::Metadata GetMetadata() const; + + // nested types ---------------------------------------------------- + + typedef xtreemfs_check_file_existsResponse_FILE_STATE FILE_STATE; + static const FILE_STATE DELETED = xtreemfs_check_file_existsResponse_FILE_STATE_DELETED; + static const FILE_STATE REGISTERED = xtreemfs_check_file_existsResponse_FILE_STATE_REGISTERED; + static const FILE_STATE ABANDONED = xtreemfs_check_file_existsResponse_FILE_STATE_ABANDONED; + static inline bool FILE_STATE_IsValid(int value) { + return xtreemfs_check_file_existsResponse_FILE_STATE_IsValid(value); + } + static const FILE_STATE FILE_STATE_MIN = + xtreemfs_check_file_existsResponse_FILE_STATE_FILE_STATE_MIN; + static const FILE_STATE FILE_STATE_MAX = + xtreemfs_check_file_existsResponse_FILE_STATE_FILE_STATE_MAX; + static const int FILE_STATE_ARRAYSIZE = + xtreemfs_check_file_existsResponse_FILE_STATE_FILE_STATE_ARRAYSIZE; + static inline const ::google::protobuf::EnumDescriptor* + FILE_STATE_descriptor() { + return xtreemfs_check_file_existsResponse_FILE_STATE_descriptor(); + } + static inline const ::std::string& FILE_STATE_Name(FILE_STATE value) { + return xtreemfs_check_file_existsResponse_FILE_STATE_Name(value); + } + static inline bool FILE_STATE_Parse(const ::std::string& name, + FILE_STATE* value) { + return xtreemfs_check_file_existsResponse_FILE_STATE_Parse(name, value); + } + + // accessors ------------------------------------------------------- + + // required bool volume_exists = 1; + inline bool has_volume_exists() const; + inline void clear_volume_exists(); + static const int kVolumeExistsFieldNumber = 1; + inline bool volume_exists() const; + inline void set_volume_exists(bool value); + + // repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + inline int file_states_size() const; + inline void clear_file_states(); + static const int kFileStatesFieldNumber = 2; + inline ::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE file_states(int index) const; + inline void set_file_states(int index, ::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE value); + inline void add_file_states(::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE value); + inline const ::google::protobuf::RepeatedField& file_states() const; + inline ::google::protobuf::RepeatedField* mutable_file_states(); + + // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_check_file_existsResponse) + private: + inline void set_has_volume_exists(); + inline void clear_has_volume_exists(); + + ::google::protobuf::UnknownFieldSet _unknown_fields_; + + ::google::protobuf::RepeatedField file_states_; + mutable int _file_states_cached_byte_size_; + bool volume_exists_; + + mutable int _cached_size_; + ::google::protobuf::uint32 _has_bits_[(2 + 31) / 32]; + + friend void protobuf_AddDesc_xtreemfs_2fMRC_2eproto(); + friend void protobuf_AssignDesc_xtreemfs_2fMRC_2eproto(); + friend void protobuf_ShutdownFile_xtreemfs_2fMRC_2eproto(); + + void InitAsDefaultInstance(); + static xtreemfs_check_file_existsResponse* default_instance_; +}; +// ------------------------------------------------------------------- + class xtreemfs_dump_restore_databaseRequest : public ::google::protobuf::Message { public: xtreemfs_dump_restore_databaseRequest(); @@ -4340,93 +4479,6 @@ class xtreemfs_get_suitable_osdsResponse : public ::google::protobuf::Message { }; // ------------------------------------------------------------------- -class xtreemfs_check_file_existsResponse : public ::google::protobuf::Message { - public: - xtreemfs_check_file_existsResponse(); - virtual ~xtreemfs_check_file_existsResponse(); - - xtreemfs_check_file_existsResponse(const xtreemfs_check_file_existsResponse& from); - - inline xtreemfs_check_file_existsResponse& operator=(const xtreemfs_check_file_existsResponse& from) { - CopyFrom(from); - return *this; - } - - inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { - return _unknown_fields_; - } - - inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { - return &_unknown_fields_; - } - - static const ::google::protobuf::Descriptor* descriptor(); - static const xtreemfs_check_file_existsResponse& default_instance(); - - void Swap(xtreemfs_check_file_existsResponse* other); - - // implements Message ---------------------------------------------- - - xtreemfs_check_file_existsResponse* New() const; - void CopyFrom(const ::google::protobuf::Message& from); - void MergeFrom(const ::google::protobuf::Message& from); - void CopyFrom(const xtreemfs_check_file_existsResponse& from); - void MergeFrom(const xtreemfs_check_file_existsResponse& from); - void Clear(); - bool IsInitialized() const; - - int ByteSize() const; - bool MergePartialFromCodedStream( - ::google::protobuf::io::CodedInputStream* input); - void SerializeWithCachedSizes( - ::google::protobuf::io::CodedOutputStream* output) const; - ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const; - int GetCachedSize() const { return _cached_size_; } - private: - void SharedCtor(); - void SharedDtor(); - void SetCachedSize(int size) const; - public: - - ::google::protobuf::Metadata GetMetadata() const; - - // nested types ---------------------------------------------------- - - // accessors ------------------------------------------------------- - - // required string bitmap = 1; - inline bool has_bitmap() const; - inline void clear_bitmap(); - static const int kBitmapFieldNumber = 1; - inline const ::std::string& bitmap() const; - inline void set_bitmap(const ::std::string& value); - inline void set_bitmap(const char* value); - inline void set_bitmap(const char* value, size_t size); - inline ::std::string* mutable_bitmap(); - inline ::std::string* release_bitmap(); - inline void set_allocated_bitmap(::std::string* bitmap); - - // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_check_file_existsResponse) - private: - inline void set_has_bitmap(); - inline void clear_has_bitmap(); - - ::google::protobuf::UnknownFieldSet _unknown_fields_; - - ::std::string* bitmap_; - - mutable int _cached_size_; - ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32]; - - friend void protobuf_AddDesc_xtreemfs_2fMRC_2eproto(); - friend void protobuf_AssignDesc_xtreemfs_2fMRC_2eproto(); - friend void protobuf_ShutdownFile_xtreemfs_2fMRC_2eproto(); - - void InitAsDefaultInstance(); - static xtreemfs_check_file_existsResponse* default_instance_; -}; -// ------------------------------------------------------------------- - class timestampResponse : public ::google::protobuf::Message { public: timestampResponse(); @@ -11700,6 +11752,59 @@ inline void xtreemfs_check_file_existsRequest::set_allocated_osd_uuid(::std::str // ------------------------------------------------------------------- +// xtreemfs_check_file_existsResponse + +// required bool volume_exists = 1; +inline bool xtreemfs_check_file_existsResponse::has_volume_exists() const { + return (_has_bits_[0] & 0x00000001u) != 0; +} +inline void xtreemfs_check_file_existsResponse::set_has_volume_exists() { + _has_bits_[0] |= 0x00000001u; +} +inline void xtreemfs_check_file_existsResponse::clear_has_volume_exists() { + _has_bits_[0] &= ~0x00000001u; +} +inline void xtreemfs_check_file_existsResponse::clear_volume_exists() { + volume_exists_ = false; + clear_has_volume_exists(); +} +inline bool xtreemfs_check_file_existsResponse::volume_exists() const { + return volume_exists_; +} +inline void xtreemfs_check_file_existsResponse::set_volume_exists(bool value) { + set_has_volume_exists(); + volume_exists_ = value; +} + +// repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; +inline int xtreemfs_check_file_existsResponse::file_states_size() const { + return file_states_.size(); +} +inline void xtreemfs_check_file_existsResponse::clear_file_states() { + file_states_.Clear(); +} +inline ::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE xtreemfs_check_file_existsResponse::file_states(int index) const { + return static_cast< ::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE >(file_states_.Get(index)); +} +inline void xtreemfs_check_file_existsResponse::set_file_states(int index, ::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE value) { + assert(::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE_IsValid(value)); + file_states_.Set(index, value); +} +inline void xtreemfs_check_file_existsResponse::add_file_states(::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE value) { + assert(::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE_IsValid(value)); + file_states_.Add(value); +} +inline const ::google::protobuf::RepeatedField& +xtreemfs_check_file_existsResponse::file_states() const { + return file_states_; +} +inline ::google::protobuf::RepeatedField* +xtreemfs_check_file_existsResponse::mutable_file_states() { + return &file_states_; +} + +// ------------------------------------------------------------------- + // xtreemfs_dump_restore_databaseRequest // required string dump_file = 1; @@ -12058,80 +12163,6 @@ xtreemfs_get_suitable_osdsResponse::mutable_osd_uuids() { // ------------------------------------------------------------------- -// xtreemfs_check_file_existsResponse - -// required string bitmap = 1; -inline bool xtreemfs_check_file_existsResponse::has_bitmap() const { - return (_has_bits_[0] & 0x00000001u) != 0; -} -inline void xtreemfs_check_file_existsResponse::set_has_bitmap() { - _has_bits_[0] |= 0x00000001u; -} -inline void xtreemfs_check_file_existsResponse::clear_has_bitmap() { - _has_bits_[0] &= ~0x00000001u; -} -inline void xtreemfs_check_file_existsResponse::clear_bitmap() { - if (bitmap_ != &::google::protobuf::internal::kEmptyString) { - bitmap_->clear(); - } - clear_has_bitmap(); -} -inline const ::std::string& xtreemfs_check_file_existsResponse::bitmap() const { - return *bitmap_; -} -inline void xtreemfs_check_file_existsResponse::set_bitmap(const ::std::string& value) { - set_has_bitmap(); - if (bitmap_ == &::google::protobuf::internal::kEmptyString) { - bitmap_ = new ::std::string; - } - bitmap_->assign(value); -} -inline void xtreemfs_check_file_existsResponse::set_bitmap(const char* value) { - set_has_bitmap(); - if (bitmap_ == &::google::protobuf::internal::kEmptyString) { - bitmap_ = new ::std::string; - } - bitmap_->assign(value); -} -inline void xtreemfs_check_file_existsResponse::set_bitmap(const char* value, size_t size) { - set_has_bitmap(); - if (bitmap_ == &::google::protobuf::internal::kEmptyString) { - bitmap_ = new ::std::string; - } - bitmap_->assign(reinterpret_cast(value), size); -} -inline ::std::string* xtreemfs_check_file_existsResponse::mutable_bitmap() { - set_has_bitmap(); - if (bitmap_ == &::google::protobuf::internal::kEmptyString) { - bitmap_ = new ::std::string; - } - return bitmap_; -} -inline ::std::string* xtreemfs_check_file_existsResponse::release_bitmap() { - clear_has_bitmap(); - if (bitmap_ == &::google::protobuf::internal::kEmptyString) { - return NULL; - } else { - ::std::string* temp = bitmap_; - bitmap_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); - return temp; - } -} -inline void xtreemfs_check_file_existsResponse::set_allocated_bitmap(::std::string* bitmap) { - if (bitmap_ != &::google::protobuf::internal::kEmptyString) { - delete bitmap_; - } - if (bitmap) { - set_has_bitmap(); - bitmap_ = bitmap; - } else { - clear_has_bitmap(); - bitmap_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString); - } -} - -// ------------------------------------------------------------------- - // timestampResponse // required fixed32 timestamp_s = 1; @@ -13998,6 +14029,10 @@ inline void xtreemfs_get_file_credentialsRequest::set_allocated_file_id(::std::s namespace google { namespace protobuf { +template <> +inline const EnumDescriptor* GetEnumDescriptor< ::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE>() { + return ::xtreemfs::pbrpc::xtreemfs_check_file_existsResponse_FILE_STATE_descriptor(); +} template <> inline const EnumDescriptor* GetEnumDescriptor< ::xtreemfs::pbrpc::Setattrs>() { return ::xtreemfs::pbrpc::Setattrs_descriptor(); diff --git a/interface/xtreemfs/MRC.proto b/interface/xtreemfs/MRC.proto index 67c6e80da..443f41074 100644 --- a/interface/xtreemfs/MRC.proto +++ b/interface/xtreemfs/MRC.proto @@ -452,6 +452,17 @@ message xtreemfs_check_file_existsRequest { required string osd_uuid = 3; } +message xtreemfs_check_file_existsResponse { + required bool volume_exists = 1; + + enum FILE_STATE { + DELETED=0; + REGISTERED=1; + ABANDONED=2; + } + repeated FILE_STATE file_states = 2 [packed=true]; +} + // dumps or restores the MRC database message xtreemfs_dump_restore_databaseRequest { // the path to the dump file on the MRC host @@ -474,10 +485,6 @@ message xtreemfs_get_suitable_osdsResponse { repeated string osd_uuids = 1; } -message xtreemfs_check_file_existsResponse { - required string bitmap = 1; -} - message timestampResponse { required fixed32 timestamp_s = 1; } diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRC.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRC.java index 0a39d7dae..c29459476 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRC.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRC.java @@ -32961,59 +32961,52 @@ public final class MRC { // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_check_file_existsRequest) } - public interface xtreemfs_dump_restore_databaseRequestOrBuilder + public interface xtreemfs_check_file_existsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder { - // required string dump_file = 1; + // required bool volume_exists = 1; /** - * required string dump_file = 1; - * - *
-     * the path to the dump file on the MRC host
-     * 
+ * required bool volume_exists = 1; */ - boolean hasDumpFile(); + boolean hasVolumeExists(); /** - * required string dump_file = 1; - * - *
-     * the path to the dump file on the MRC host
-     * 
+ * required bool volume_exists = 1; */ - java.lang.String getDumpFile(); + boolean getVolumeExists(); + + // repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; /** - * required string dump_file = 1; - * - *
-     * the path to the dump file on the MRC host
-     * 
+ * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; */ - com.google.protobuf.ByteString - getDumpFileBytes(); + java.util.List getFileStatesList(); + /** + * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + */ + int getFileStatesCount(); + /** + * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + */ + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE getFileStates(int index); } /** - * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_dump_restore_databaseRequest} - * - *
-   * dumps or restores the MRC database
-   * 
+ * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_check_file_existsResponse} */ - public static final class xtreemfs_dump_restore_databaseRequest extends + public static final class xtreemfs_check_file_existsResponse extends com.google.protobuf.GeneratedMessage - implements xtreemfs_dump_restore_databaseRequestOrBuilder { - // Use xtreemfs_dump_restore_databaseRequest.newBuilder() to construct. - private xtreemfs_dump_restore_databaseRequest(com.google.protobuf.GeneratedMessage.Builder builder) { + implements xtreemfs_check_file_existsResponseOrBuilder { + // Use xtreemfs_check_file_existsResponse.newBuilder() to construct. + private xtreemfs_check_file_existsResponse(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); this.unknownFields = builder.getUnknownFields(); } - private xtreemfs_dump_restore_databaseRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + private xtreemfs_check_file_existsResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } - private static final xtreemfs_dump_restore_databaseRequest defaultInstance; - public static xtreemfs_dump_restore_databaseRequest getDefaultInstance() { + private static final xtreemfs_check_file_existsResponse defaultInstance; + public static xtreemfs_check_file_existsResponse getDefaultInstance() { return defaultInstance; } - public xtreemfs_dump_restore_databaseRequest getDefaultInstanceForType() { + public xtreemfs_check_file_existsResponse getDefaultInstanceForType() { return defaultInstance; } @@ -33023,7 +33016,7 @@ public final class MRC { getUnknownFields() { return this.unknownFields; } - private xtreemfs_dump_restore_databaseRequest( + private xtreemfs_check_file_existsResponse( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -33046,9 +33039,42 @@ public final class MRC { } break; } - case 10: { + case 8: { bitField0_ |= 0x00000001; - dumpFile_ = input.readBytes(); + volumeExists_ = input.readBool(); + break; + } + case 16: { + int rawValue = input.readEnum(); + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE value = org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE.valueOf(rawValue); + if (value == null) { + unknownFields.mergeVarintField(2, rawValue); + } else { + if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) { + fileStates_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000002; + } + fileStates_.add(value); + } + break; + } + case 18: { + int length = input.readRawVarint32(); + int oldLimit = input.pushLimit(length); + while(input.getBytesUntilLimit() > 0) { + int rawValue = input.readEnum(); + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE value = org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE.valueOf(rawValue); + if (value == null) { + unknownFields.mergeVarintField(2, rawValue); + } else { + if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) { + fileStates_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000002; + } + fileStates_.add(value); + } + } + input.popLimit(oldLimit); break; } } @@ -33059,102 +33085,181 @@ public final class MRC { throw new com.google.protobuf.InvalidProtocolBufferException( e.getMessage()).setUnfinishedMessage(this); } finally { + if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) { + fileStates_ = java.util.Collections.unmodifiableList(fileStates_); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_fieldAccessorTable + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.Builder.class); + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.Builder.class); } - public static com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - public xtreemfs_dump_restore_databaseRequest parsePartialFrom( + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public xtreemfs_check_file_existsResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { - return new xtreemfs_dump_restore_databaseRequest(input, extensionRegistry); + return new xtreemfs_check_file_existsResponse(input, extensionRegistry); } }; @java.lang.Override - public com.google.protobuf.Parser getParserForType() { + public com.google.protobuf.Parser getParserForType() { return PARSER; } + /** + * Protobuf enum {@code xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE} + */ + public enum FILE_STATE + implements com.google.protobuf.ProtocolMessageEnum { + /** + * DELETED = 0; + */ + DELETED(0, 0), + /** + * REGISTERED = 1; + */ + REGISTERED(1, 1), + /** + * ABANDONED = 2; + */ + ABANDONED(2, 2), + ; + + /** + * DELETED = 0; + */ + public static final int DELETED_VALUE = 0; + /** + * REGISTERED = 1; + */ + public static final int REGISTERED_VALUE = 1; + /** + * ABANDONED = 2; + */ + public static final int ABANDONED_VALUE = 2; + + + public final int getNumber() { return value; } + + public static FILE_STATE valueOf(int value) { + switch (value) { + case 0: return DELETED; + case 1: return REGISTERED; + case 2: return ABANDONED; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static com.google.protobuf.Internal.EnumLiteMap + internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public FILE_STATE findValueByNumber(int number) { + return FILE_STATE.valueOf(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + return getDescriptor().getValues().get(index); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.getDescriptor().getEnumTypes().get(0); + } + + private static final FILE_STATE[] VALUES = values(); + + public static FILE_STATE valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + return VALUES[desc.getIndex()]; + } + + private final int index; + private final int value; + + private FILE_STATE(int index, int value) { + this.index = index; + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE) + } + private int bitField0_; - // required string dump_file = 1; - public static final int DUMP_FILE_FIELD_NUMBER = 1; - private java.lang.Object dumpFile_; + // required bool volume_exists = 1; + public static final int VOLUME_EXISTS_FIELD_NUMBER = 1; + private boolean volumeExists_; /** - * required string dump_file = 1; - * - *
-     * the path to the dump file on the MRC host
-     * 
+ * required bool volume_exists = 1; */ - public boolean hasDumpFile() { + public boolean hasVolumeExists() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - * required string dump_file = 1; - * - *
-     * the path to the dump file on the MRC host
-     * 
+ * required bool volume_exists = 1; */ - public java.lang.String getDumpFile() { - java.lang.Object ref = dumpFile_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (bs.isValidUtf8()) { - dumpFile_ = s; - } - return s; - } + public boolean getVolumeExists() { + return volumeExists_; } + + // repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + public static final int FILE_STATES_FIELD_NUMBER = 2; + private java.util.List fileStates_; /** - * required string dump_file = 1; - * - *
-     * the path to the dump file on the MRC host
-     * 
+ * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; */ - public com.google.protobuf.ByteString - getDumpFileBytes() { - java.lang.Object ref = dumpFile_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - dumpFile_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + public java.util.List getFileStatesList() { + return fileStates_; + } + /** + * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + */ + public int getFileStatesCount() { + return fileStates_.size(); + } + /** + * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + */ + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE getFileStates(int index) { + return fileStates_.get(index); } + private int fileStatesMemoizedSerializedSize; private void initFields() { - dumpFile_ = ""; + volumeExists_ = false; + fileStates_ = java.util.Collections.emptyList(); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized != -1) return isInitialized == 1; - if (!hasDumpFile()) { + if (!hasVolumeExists()) { memoizedIsInitialized = 0; return false; } @@ -33166,7 +33271,14 @@ public final class MRC { throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { - output.writeBytes(1, getDumpFileBytes()); + output.writeBool(1, volumeExists_); + } + if (getFileStatesList().size() > 0) { + output.writeRawVarint32(18); + output.writeRawVarint32(fileStatesMemoizedSerializedSize); + } + for (int i = 0; i < fileStates_.size(); i++) { + output.writeEnumNoTag(fileStates_.get(i).getNumber()); } getUnknownFields().writeTo(output); } @@ -33179,7 +33291,19 @@ public final class MRC { size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream - .computeBytesSize(1, getDumpFileBytes()); + .computeBoolSize(1, volumeExists_); + } + { + int dataSize = 0; + for (int i = 0; i < fileStates_.size(); i++) { + dataSize += com.google.protobuf.CodedOutputStream + .computeEnumSizeNoTag(fileStates_.get(i).getNumber()); + } + size += dataSize; + if (!getFileStatesList().isEmpty()) { size += 1; + size += com.google.protobuf.CodedOutputStream + .computeRawVarint32Size(dataSize); + }fileStatesMemoizedSerializedSize = dataSize; } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; @@ -33193,53 +33317,53 @@ public final class MRC { return super.writeReplace(); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom(byte[] data) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom(java.io.InputStream input) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseFrom(input, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseDelimitedFrom(java.io.InputStream input) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseDelimitedFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseDelimitedFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseDelimitedFrom(input, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -33248,7 +33372,7 @@ public final class MRC { public static Builder newBuilder() { return Builder.create(); } public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest prototype) { + public static Builder newBuilder(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse prototype) { return newBuilder().mergeFrom(prototype); } public Builder toBuilder() { return newBuilder(this); } @@ -33260,28 +33384,24 @@ public final class MRC { return builder; } /** - * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_dump_restore_databaseRequest} - * - *
-     * dumps or restores the MRC database
-     * 
+ * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_check_file_existsResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder - implements org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequestOrBuilder { + implements org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_fieldAccessorTable + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.Builder.class); + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.Builder.class); } - // Construct using org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.newBuilder() + // Construct using org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } @@ -33301,8 +33421,10 @@ public final class MRC { public Builder clear() { super.clear(); - dumpFile_ = ""; + volumeExists_ = false; bitField0_ = (bitField0_ & ~0x00000001); + fileStates_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); return this; } @@ -33312,56 +33434,69 @@ public final class MRC { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor; } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest getDefaultInstanceForType() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.getDefaultInstance(); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse getDefaultInstanceForType() { + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.getDefaultInstance(); } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest build() { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest result = buildPartial(); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse build() { + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest buildPartial() { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest result = new org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest(this); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse buildPartial() { + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse result = new org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) == 0x00000001)) { to_bitField0_ |= 0x00000001; } - result.dumpFile_ = dumpFile_; + result.volumeExists_ = volumeExists_; + if (((bitField0_ & 0x00000002) == 0x00000002)) { + fileStates_ = java.util.Collections.unmodifiableList(fileStates_); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.fileStates_ = fileStates_; result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest) { - return mergeFrom((org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest)other); + if (other instanceof org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse) { + return mergeFrom((org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse)other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest other) { - if (other == org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.getDefaultInstance()) return this; - if (other.hasDumpFile()) { - bitField0_ |= 0x00000001; - dumpFile_ = other.dumpFile_; - onChanged(); + public Builder mergeFrom(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse other) { + if (other == org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.getDefaultInstance()) return this; + if (other.hasVolumeExists()) { + setVolumeExists(other.getVolumeExists()); } - this.mergeUnknownFields(other.getUnknownFields()); + if (!other.fileStates_.isEmpty()) { + if (fileStates_.isEmpty()) { + fileStates_ = other.fileStates_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureFileStatesIsMutable(); + fileStates_.addAll(other.fileStates_); + } + onChanged(); + } + this.mergeUnknownFields(other.getUnknownFields()); return this; } public final boolean isInitialized() { - if (!hasDumpFile()) { + if (!hasVolumeExists()) { return false; } @@ -33372,11 +33507,11 @@ public final class MRC { com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parsedMessage = null; + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest) e.getUnfinishedMessage(); + parsedMessage = (org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse) e.getUnfinishedMessage(); throw e; } finally { if (parsedMessage != null) { @@ -33387,228 +33522,175 @@ public final class MRC { } private int bitField0_; - // required string dump_file = 1; - private java.lang.Object dumpFile_ = ""; + // required bool volume_exists = 1; + private boolean volumeExists_ ; /** - * required string dump_file = 1; - * - *
-       * the path to the dump file on the MRC host
-       * 
+ * required bool volume_exists = 1; */ - public boolean hasDumpFile() { + public boolean hasVolumeExists() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - * required string dump_file = 1; - * - *
-       * the path to the dump file on the MRC host
-       * 
+ * required bool volume_exists = 1; */ - public java.lang.String getDumpFile() { - java.lang.Object ref = dumpFile_; - if (!(ref instanceof java.lang.String)) { - java.lang.String s = ((com.google.protobuf.ByteString) ref) - .toStringUtf8(); - dumpFile_ = s; - return s; - } else { - return (java.lang.String) ref; + public boolean getVolumeExists() { + return volumeExists_; + } + /** + * required bool volume_exists = 1; + */ + public Builder setVolumeExists(boolean value) { + bitField0_ |= 0x00000001; + volumeExists_ = value; + onChanged(); + return this; + } + /** + * required bool volume_exists = 1; + */ + public Builder clearVolumeExists() { + bitField0_ = (bitField0_ & ~0x00000001); + volumeExists_ = false; + onChanged(); + return this; + } + + // repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + private java.util.List fileStates_ = + java.util.Collections.emptyList(); + private void ensureFileStatesIsMutable() { + if (!((bitField0_ & 0x00000002) == 0x00000002)) { + fileStates_ = new java.util.ArrayList(fileStates_); + bitField0_ |= 0x00000002; } } /** - * required string dump_file = 1; - * - *
-       * the path to the dump file on the MRC host
-       * 
+ * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; */ - public com.google.protobuf.ByteString - getDumpFileBytes() { - java.lang.Object ref = dumpFile_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - dumpFile_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; + public java.util.List getFileStatesList() { + return java.util.Collections.unmodifiableList(fileStates_); + } + /** + * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + */ + public int getFileStatesCount() { + return fileStates_.size(); + } + /** + * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + */ + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE getFileStates(int index) { + return fileStates_.get(index); + } + /** + * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; + */ + public Builder setFileStates( + int index, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE value) { + if (value == null) { + throw new NullPointerException(); } + ensureFileStatesIsMutable(); + fileStates_.set(index, value); + onChanged(); + return this; } /** - * required string dump_file = 1; - * - *
-       * the path to the dump file on the MRC host
-       * 
+ * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; */ - public Builder setDumpFile( - java.lang.String value) { + public Builder addFileStates(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE value) { if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000001; - dumpFile_ = value; + throw new NullPointerException(); + } + ensureFileStatesIsMutable(); + fileStates_.add(value); onChanged(); return this; } /** - * required string dump_file = 1; - * - *
-       * the path to the dump file on the MRC host
-       * 
+ * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; */ - public Builder clearDumpFile() { - bitField0_ = (bitField0_ & ~0x00000001); - dumpFile_ = getDefaultInstance().getDumpFile(); + public Builder addAllFileStates( + java.lang.Iterable values) { + ensureFileStatesIsMutable(); + super.addAll(values, fileStates_); onChanged(); return this; } /** - * required string dump_file = 1; - * - *
-       * the path to the dump file on the MRC host
-       * 
+ * repeated .xtreemfs.pbrpc.xtreemfs_check_file_existsResponse.FILE_STATE file_states = 2 [packed = true]; */ - public Builder setDumpFileBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000001; - dumpFile_ = value; + public Builder clearFileStates() { + fileStates_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } - // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.xtreemfs_dump_restore_databaseRequest) + // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.xtreemfs_check_file_existsResponse) } static { - defaultInstance = new xtreemfs_dump_restore_databaseRequest(true); + defaultInstance = new xtreemfs_check_file_existsResponse(true); defaultInstance.initFields(); } - // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_dump_restore_databaseRequest) + // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_check_file_existsResponse) } - public interface xtreemfs_get_suitable_osdsRequestOrBuilder + public interface xtreemfs_dump_restore_databaseRequestOrBuilder extends com.google.protobuf.MessageOrBuilder { - // optional string file_id = 1; - /** - * optional string file_id = 1; - * - *
-     * the file ID
-     * 
- */ - boolean hasFileId(); - /** - * optional string file_id = 1; - * - *
-     * the file ID
-     * 
- */ - java.lang.String getFileId(); - /** - * optional string file_id = 1; - * - *
-     * the file ID
-     * 
- */ - com.google.protobuf.ByteString - getFileIdBytes(); - - // optional string path = 3; + // required string dump_file = 1; /** - * optional string path = 3; + * required string dump_file = 1; * *
-     * or path and volume_name to file.
+     * the path to the dump file on the MRC host
      * 
*/ - boolean hasPath(); + boolean hasDumpFile(); /** - * optional string path = 3; + * required string dump_file = 1; * *
-     * or path and volume_name to file.
+     * the path to the dump file on the MRC host
      * 
*/ - java.lang.String getPath(); + java.lang.String getDumpFile(); /** - * optional string path = 3; + * required string dump_file = 1; * *
-     * or path and volume_name to file.
+     * the path to the dump file on the MRC host
      * 
*/ com.google.protobuf.ByteString - getPathBytes(); - - // optional string volume_name = 4; - /** - * optional string volume_name = 4; - */ - boolean hasVolumeName(); - /** - * optional string volume_name = 4; - */ - java.lang.String getVolumeName(); - /** - * optional string volume_name = 4; - */ - com.google.protobuf.ByteString - getVolumeNameBytes(); - - // required fixed32 num_osds = 2; - /** - * required fixed32 num_osds = 2; - * - *
-     * the number of OSDs for the new replicas
-     * 
- */ - boolean hasNumOsds(); - /** - * required fixed32 num_osds = 2; - * - *
-     * the number of OSDs for the new replicas
-     * 
- */ - int getNumOsds(); + getDumpFileBytes(); } /** - * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_get_suitable_osdsRequest} + * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_dump_restore_databaseRequest} * *
-   * requests the list of suitable OSDs for new replicas of a file
+   * dumps or restores the MRC database
    * 
*/ - public static final class xtreemfs_get_suitable_osdsRequest extends + public static final class xtreemfs_dump_restore_databaseRequest extends com.google.protobuf.GeneratedMessage - implements xtreemfs_get_suitable_osdsRequestOrBuilder { - // Use xtreemfs_get_suitable_osdsRequest.newBuilder() to construct. - private xtreemfs_get_suitable_osdsRequest(com.google.protobuf.GeneratedMessage.Builder builder) { + implements xtreemfs_dump_restore_databaseRequestOrBuilder { + // Use xtreemfs_dump_restore_databaseRequest.newBuilder() to construct. + private xtreemfs_dump_restore_databaseRequest(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); this.unknownFields = builder.getUnknownFields(); } - private xtreemfs_get_suitable_osdsRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + private xtreemfs_dump_restore_databaseRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } - private static final xtreemfs_get_suitable_osdsRequest defaultInstance; - public static xtreemfs_get_suitable_osdsRequest getDefaultInstance() { + private static final xtreemfs_dump_restore_databaseRequest defaultInstance; + public static xtreemfs_dump_restore_databaseRequest getDefaultInstance() { return defaultInstance; } - public xtreemfs_get_suitable_osdsRequest getDefaultInstanceForType() { + public xtreemfs_dump_restore_databaseRequest getDefaultInstanceForType() { return defaultInstance; } @@ -33618,7 +33700,7 @@ public final class MRC { getUnknownFields() { return this.unknownFields; } - private xtreemfs_get_suitable_osdsRequest( + private xtreemfs_dump_restore_databaseRequest( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -33643,22 +33725,7 @@ public final class MRC { } case 10: { bitField0_ |= 0x00000001; - fileId_ = input.readBytes(); - break; - } - case 21: { - bitField0_ |= 0x00000008; - numOsds_ = input.readFixed32(); - break; - } - case 26: { - bitField0_ |= 0x00000002; - path_ = input.readBytes(); - break; - } - case 34: { - bitField0_ |= 0x00000004; - volumeName_ = input.readBytes(); + dumpFile_ = input.readBytes(); break; } } @@ -33675,109 +33742,54 @@ public final class MRC { } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_fieldAccessorTable + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.Builder.class); + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.Builder.class); } - public static com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - public xtreemfs_get_suitable_osdsRequest parsePartialFrom( + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public xtreemfs_dump_restore_databaseRequest parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { - return new xtreemfs_get_suitable_osdsRequest(input, extensionRegistry); + return new xtreemfs_dump_restore_databaseRequest(input, extensionRegistry); } }; @java.lang.Override - public com.google.protobuf.Parser getParserForType() { + public com.google.protobuf.Parser getParserForType() { return PARSER; } private int bitField0_; - // optional string file_id = 1; - public static final int FILE_ID_FIELD_NUMBER = 1; - private java.lang.Object fileId_; + // required string dump_file = 1; + public static final int DUMP_FILE_FIELD_NUMBER = 1; + private java.lang.Object dumpFile_; /** - * optional string file_id = 1; + * required string dump_file = 1; * *
-     * the file ID
+     * the path to the dump file on the MRC host
      * 
*/ - public boolean hasFileId() { + public boolean hasDumpFile() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - * optional string file_id = 1; - * - *
-     * the file ID
-     * 
- */ - public java.lang.String getFileId() { - java.lang.Object ref = fileId_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (bs.isValidUtf8()) { - fileId_ = s; - } - return s; - } - } - /** - * optional string file_id = 1; - * - *
-     * the file ID
-     * 
- */ - public com.google.protobuf.ByteString - getFileIdBytes() { - java.lang.Object ref = fileId_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - fileId_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - // optional string path = 3; - public static final int PATH_FIELD_NUMBER = 3; - private java.lang.Object path_; - /** - * optional string path = 3; - * - *
-     * or path and volume_name to file.
-     * 
- */ - public boolean hasPath() { - return ((bitField0_ & 0x00000002) == 0x00000002); - } - /** - * optional string path = 3; + * required string dump_file = 1; * *
-     * or path and volume_name to file.
+     * the path to the dump file on the MRC host
      * 
*/ - public java.lang.String getPath() { - java.lang.Object ref = path_; + public java.lang.String getDumpFile() { + java.lang.Object ref = dumpFile_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { @@ -33785,111 +33797,41 @@ public final class MRC { (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { - path_ = s; + dumpFile_ = s; } return s; } } /** - * optional string path = 3; + * required string dump_file = 1; * *
-     * or path and volume_name to file.
+     * the path to the dump file on the MRC host
      * 
*/ public com.google.protobuf.ByteString - getPathBytes() { - java.lang.Object ref = path_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - path_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - - // optional string volume_name = 4; - public static final int VOLUME_NAME_FIELD_NUMBER = 4; - private java.lang.Object volumeName_; - /** - * optional string volume_name = 4; - */ - public boolean hasVolumeName() { - return ((bitField0_ & 0x00000004) == 0x00000004); - } - /** - * optional string volume_name = 4; - */ - public java.lang.String getVolumeName() { - java.lang.Object ref = volumeName_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (bs.isValidUtf8()) { - volumeName_ = s; - } - return s; - } - } - /** - * optional string volume_name = 4; - */ - public com.google.protobuf.ByteString - getVolumeNameBytes() { - java.lang.Object ref = volumeName_; + getDumpFileBytes() { + java.lang.Object ref = dumpFile_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - volumeName_ = b; + dumpFile_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } - // required fixed32 num_osds = 2; - public static final int NUM_OSDS_FIELD_NUMBER = 2; - private int numOsds_; - /** - * required fixed32 num_osds = 2; - * - *
-     * the number of OSDs for the new replicas
-     * 
- */ - public boolean hasNumOsds() { - return ((bitField0_ & 0x00000008) == 0x00000008); - } - /** - * required fixed32 num_osds = 2; - * - *
-     * the number of OSDs for the new replicas
-     * 
- */ - public int getNumOsds() { - return numOsds_; - } - private void initFields() { - fileId_ = ""; - path_ = ""; - volumeName_ = ""; - numOsds_ = 0; + dumpFile_ = ""; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized != -1) return isInitialized == 1; - if (!hasNumOsds()) { + if (!hasDumpFile()) { memoizedIsInitialized = 0; return false; } @@ -33901,16 +33843,7 @@ public final class MRC { throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { - output.writeBytes(1, getFileIdBytes()); - } - if (((bitField0_ & 0x00000008) == 0x00000008)) { - output.writeFixed32(2, numOsds_); - } - if (((bitField0_ & 0x00000002) == 0x00000002)) { - output.writeBytes(3, getPathBytes()); - } - if (((bitField0_ & 0x00000004) == 0x00000004)) { - output.writeBytes(4, getVolumeNameBytes()); + output.writeBytes(1, getDumpFileBytes()); } getUnknownFields().writeTo(output); } @@ -33923,19 +33856,7 @@ public final class MRC { size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream - .computeBytesSize(1, getFileIdBytes()); - } - if (((bitField0_ & 0x00000008) == 0x00000008)) { - size += com.google.protobuf.CodedOutputStream - .computeFixed32Size(2, numOsds_); - } - if (((bitField0_ & 0x00000002) == 0x00000002)) { - size += com.google.protobuf.CodedOutputStream - .computeBytesSize(3, getPathBytes()); - } - if (((bitField0_ & 0x00000004) == 0x00000004)) { - size += com.google.protobuf.CodedOutputStream - .computeBytesSize(4, getVolumeNameBytes()); + .computeBytesSize(1, getDumpFileBytes()); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; @@ -33949,53 +33870,53 @@ public final class MRC { return super.writeReplace(); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom(byte[] data) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom(java.io.InputStream input) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseFrom(input, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseDelimitedFrom(java.io.InputStream input) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseDelimitedFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseDelimitedFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseDelimitedFrom(input, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -34004,7 +33925,7 @@ public final class MRC { public static Builder newBuilder() { return Builder.create(); } public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest prototype) { + public static Builder newBuilder(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest prototype) { return newBuilder().mergeFrom(prototype); } public Builder toBuilder() { return newBuilder(this); } @@ -34016,28 +33937,28 @@ public final class MRC { return builder; } /** - * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_get_suitable_osdsRequest} + * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_dump_restore_databaseRequest} * *
-     * requests the list of suitable OSDs for new replicas of a file
+     * dumps or restores the MRC database
      * 
*/ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder - implements org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequestOrBuilder { + implements org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_fieldAccessorTable + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.Builder.class); + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.Builder.class); } - // Construct using org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.newBuilder() + // Construct using org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } @@ -34057,14 +33978,8 @@ public final class MRC { public Builder clear() { super.clear(); - fileId_ = ""; + dumpFile_ = ""; bitField0_ = (bitField0_ & ~0x00000001); - path_ = ""; - bitField0_ = (bitField0_ & ~0x00000002); - volumeName_ = ""; - bitField0_ = (bitField0_ & ~0x00000004); - numOsds_ = 0; - bitField0_ = (bitField0_ & ~0x00000008); return this; } @@ -34074,81 +33989,56 @@ public final class MRC { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_descriptor; } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest getDefaultInstanceForType() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.getDefaultInstance(); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest getDefaultInstanceForType() { + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.getDefaultInstance(); } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest build() { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest result = buildPartial(); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest build() { + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest buildPartial() { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest result = new org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest(this); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest buildPartial() { + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest result = new org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) == 0x00000001)) { to_bitField0_ |= 0x00000001; } - result.fileId_ = fileId_; - if (((from_bitField0_ & 0x00000002) == 0x00000002)) { - to_bitField0_ |= 0x00000002; - } - result.path_ = path_; - if (((from_bitField0_ & 0x00000004) == 0x00000004)) { - to_bitField0_ |= 0x00000004; - } - result.volumeName_ = volumeName_; - if (((from_bitField0_ & 0x00000008) == 0x00000008)) { - to_bitField0_ |= 0x00000008; - } - result.numOsds_ = numOsds_; + result.dumpFile_ = dumpFile_; result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest) { - return mergeFrom((org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest)other); + if (other instanceof org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest) { + return mergeFrom((org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest)other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest other) { - if (other == org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.getDefaultInstance()) return this; - if (other.hasFileId()) { + public Builder mergeFrom(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest other) { + if (other == org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest.getDefaultInstance()) return this; + if (other.hasDumpFile()) { bitField0_ |= 0x00000001; - fileId_ = other.fileId_; - onChanged(); - } - if (other.hasPath()) { - bitField0_ |= 0x00000002; - path_ = other.path_; - onChanged(); - } - if (other.hasVolumeName()) { - bitField0_ |= 0x00000004; - volumeName_ = other.volumeName_; + dumpFile_ = other.dumpFile_; onChanged(); } - if (other.hasNumOsds()) { - setNumOsds(other.getNumOsds()); - } this.mergeUnknownFields(other.getUnknownFields()); return this; } public final boolean isInitialized() { - if (!hasNumOsds()) { + if (!hasDumpFile()) { return false; } @@ -34159,11 +34049,11 @@ public final class MRC { com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parsedMessage = null; + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest) e.getUnfinishedMessage(); + parsedMessage = (org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_dump_restore_databaseRequest) e.getUnfinishedMessage(); throw e; } finally { if (parsedMessage != null) { @@ -34174,382 +34064,228 @@ public final class MRC { } private int bitField0_; - // optional string file_id = 1; - private java.lang.Object fileId_ = ""; + // required string dump_file = 1; + private java.lang.Object dumpFile_ = ""; /** - * optional string file_id = 1; + * required string dump_file = 1; * *
-       * the file ID
+       * the path to the dump file on the MRC host
        * 
*/ - public boolean hasFileId() { + public boolean hasDumpFile() { return ((bitField0_ & 0x00000001) == 0x00000001); } /** - * optional string file_id = 1; + * required string dump_file = 1; * *
-       * the file ID
+       * the path to the dump file on the MRC host
        * 
*/ - public java.lang.String getFileId() { - java.lang.Object ref = fileId_; + public java.lang.String getDumpFile() { + java.lang.Object ref = dumpFile_; if (!(ref instanceof java.lang.String)) { java.lang.String s = ((com.google.protobuf.ByteString) ref) .toStringUtf8(); - fileId_ = s; + dumpFile_ = s; return s; } else { return (java.lang.String) ref; } } /** - * optional string file_id = 1; + * required string dump_file = 1; * *
-       * the file ID
+       * the path to the dump file on the MRC host
        * 
*/ public com.google.protobuf.ByteString - getFileIdBytes() { - java.lang.Object ref = fileId_; + getDumpFileBytes() { + java.lang.Object ref = dumpFile_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); - fileId_ = b; + dumpFile_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** - * optional string file_id = 1; + * required string dump_file = 1; * *
-       * the file ID
+       * the path to the dump file on the MRC host
        * 
*/ - public Builder setFileId( + public Builder setDumpFile( java.lang.String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000001; - fileId_ = value; + dumpFile_ = value; onChanged(); return this; } /** - * optional string file_id = 1; + * required string dump_file = 1; * *
-       * the file ID
+       * the path to the dump file on the MRC host
        * 
*/ - public Builder clearFileId() { + public Builder clearDumpFile() { bitField0_ = (bitField0_ & ~0x00000001); - fileId_ = getDefaultInstance().getFileId(); + dumpFile_ = getDefaultInstance().getDumpFile(); onChanged(); return this; } /** - * optional string file_id = 1; + * required string dump_file = 1; * *
-       * the file ID
+       * the path to the dump file on the MRC host
        * 
*/ - public Builder setFileIdBytes( + public Builder setDumpFileBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000001; - fileId_ = value; + dumpFile_ = value; onChanged(); return this; } - // optional string path = 3; - private java.lang.Object path_ = ""; - /** - * optional string path = 3; - * - *
-       * or path and volume_name to file.
-       * 
- */ - public boolean hasPath() { - return ((bitField0_ & 0x00000002) == 0x00000002); - } - /** - * optional string path = 3; - * - *
-       * or path and volume_name to file.
-       * 
- */ - public java.lang.String getPath() { - java.lang.Object ref = path_; - if (!(ref instanceof java.lang.String)) { - java.lang.String s = ((com.google.protobuf.ByteString) ref) - .toStringUtf8(); - path_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * optional string path = 3; - * - *
-       * or path and volume_name to file.
-       * 
- */ - public com.google.protobuf.ByteString - getPathBytes() { - java.lang.Object ref = path_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - path_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * optional string path = 3; - * - *
-       * or path and volume_name to file.
-       * 
- */ - public Builder setPath( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000002; - path_ = value; - onChanged(); - return this; - } - /** - * optional string path = 3; - * - *
-       * or path and volume_name to file.
-       * 
- */ - public Builder clearPath() { - bitField0_ = (bitField0_ & ~0x00000002); - path_ = getDefaultInstance().getPath(); - onChanged(); - return this; - } - /** - * optional string path = 3; - * - *
-       * or path and volume_name to file.
-       * 
- */ - public Builder setPathBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000002; - path_ = value; - onChanged(); - return this; - } + // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.xtreemfs_dump_restore_databaseRequest) + } - // optional string volume_name = 4; - private java.lang.Object volumeName_ = ""; - /** - * optional string volume_name = 4; - */ - public boolean hasVolumeName() { - return ((bitField0_ & 0x00000004) == 0x00000004); - } - /** - * optional string volume_name = 4; - */ - public java.lang.String getVolumeName() { - java.lang.Object ref = volumeName_; - if (!(ref instanceof java.lang.String)) { - java.lang.String s = ((com.google.protobuf.ByteString) ref) - .toStringUtf8(); - volumeName_ = s; - return s; - } else { - return (java.lang.String) ref; - } - } - /** - * optional string volume_name = 4; - */ - public com.google.protobuf.ByteString - getVolumeNameBytes() { - java.lang.Object ref = volumeName_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - volumeName_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } - } - /** - * optional string volume_name = 4; - */ - public Builder setVolumeName( - java.lang.String value) { - if (value == null) { - throw new NullPointerException(); + static { + defaultInstance = new xtreemfs_dump_restore_databaseRequest(true); + defaultInstance.initFields(); + } + + // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_dump_restore_databaseRequest) } - bitField0_ |= 0x00000004; - volumeName_ = value; - onChanged(); - return this; - } - /** - * optional string volume_name = 4; - */ - public Builder clearVolumeName() { - bitField0_ = (bitField0_ & ~0x00000004); - volumeName_ = getDefaultInstance().getVolumeName(); - onChanged(); - return this; - } - /** - * optional string volume_name = 4; - */ - public Builder setVolumeNameBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - bitField0_ |= 0x00000004; - volumeName_ = value; - onChanged(); - return this; - } - - // required fixed32 num_osds = 2; - private int numOsds_ ; - /** - * required fixed32 num_osds = 2; - * - *
-       * the number of OSDs for the new replicas
-       * 
- */ - public boolean hasNumOsds() { - return ((bitField0_ & 0x00000008) == 0x00000008); - } - /** - * required fixed32 num_osds = 2; - * - *
-       * the number of OSDs for the new replicas
-       * 
- */ - public int getNumOsds() { - return numOsds_; - } - /** - * required fixed32 num_osds = 2; - * - *
-       * the number of OSDs for the new replicas
-       * 
- */ - public Builder setNumOsds(int value) { - bitField0_ |= 0x00000008; - numOsds_ = value; - onChanged(); - return this; - } - /** - * required fixed32 num_osds = 2; - * - *
-       * the number of OSDs for the new replicas
-       * 
- */ - public Builder clearNumOsds() { - bitField0_ = (bitField0_ & ~0x00000008); - numOsds_ = 0; - onChanged(); - return this; - } - - // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.xtreemfs_get_suitable_osdsRequest) - } - - static { - defaultInstance = new xtreemfs_get_suitable_osdsRequest(true); - defaultInstance.initFields(); - } - // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_get_suitable_osdsRequest) - } - - public interface xtreemfs_get_suitable_osdsResponseOrBuilder + public interface xtreemfs_get_suitable_osdsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder { - // repeated string osd_uuids = 1; + // optional string file_id = 1; /** - * repeated string osd_uuids = 1; + * optional string file_id = 1; + * + *
+     * the file ID
+     * 
*/ - java.util.List - getOsdUuidsList(); + boolean hasFileId(); /** - * repeated string osd_uuids = 1; + * optional string file_id = 1; + * + *
+     * the file ID
+     * 
*/ - int getOsdUuidsCount(); + java.lang.String getFileId(); /** - * repeated string osd_uuids = 1; + * optional string file_id = 1; + * + *
+     * the file ID
+     * 
*/ - java.lang.String getOsdUuids(int index); + com.google.protobuf.ByteString + getFileIdBytes(); + + // optional string path = 3; /** - * repeated string osd_uuids = 1; + * optional string path = 3; + * + *
+     * or path and volume_name to file.
+     * 
+ */ + boolean hasPath(); + /** + * optional string path = 3; + * + *
+     * or path and volume_name to file.
+     * 
+ */ + java.lang.String getPath(); + /** + * optional string path = 3; + * + *
+     * or path and volume_name to file.
+     * 
*/ com.google.protobuf.ByteString - getOsdUuidsBytes(int index); + getPathBytes(); + + // optional string volume_name = 4; + /** + * optional string volume_name = 4; + */ + boolean hasVolumeName(); + /** + * optional string volume_name = 4; + */ + java.lang.String getVolumeName(); + /** + * optional string volume_name = 4; + */ + com.google.protobuf.ByteString + getVolumeNameBytes(); + + // required fixed32 num_osds = 2; + /** + * required fixed32 num_osds = 2; + * + *
+     * the number of OSDs for the new replicas
+     * 
+ */ + boolean hasNumOsds(); + /** + * required fixed32 num_osds = 2; + * + *
+     * the number of OSDs for the new replicas
+     * 
+ */ + int getNumOsds(); } /** - * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_get_suitable_osdsResponse} + * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_get_suitable_osdsRequest} * *
-   * returns a list of suitable OSDs
+   * requests the list of suitable OSDs for new replicas of a file
    * 
*/ - public static final class xtreemfs_get_suitable_osdsResponse extends + public static final class xtreemfs_get_suitable_osdsRequest extends com.google.protobuf.GeneratedMessage - implements xtreemfs_get_suitable_osdsResponseOrBuilder { - // Use xtreemfs_get_suitable_osdsResponse.newBuilder() to construct. - private xtreemfs_get_suitable_osdsResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + implements xtreemfs_get_suitable_osdsRequestOrBuilder { + // Use xtreemfs_get_suitable_osdsRequest.newBuilder() to construct. + private xtreemfs_get_suitable_osdsRequest(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); this.unknownFields = builder.getUnknownFields(); } - private xtreemfs_get_suitable_osdsResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + private xtreemfs_get_suitable_osdsRequest(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } - private static final xtreemfs_get_suitable_osdsResponse defaultInstance; - public static xtreemfs_get_suitable_osdsResponse getDefaultInstance() { + private static final xtreemfs_get_suitable_osdsRequest defaultInstance; + public static xtreemfs_get_suitable_osdsRequest getDefaultInstance() { return defaultInstance; } - public xtreemfs_get_suitable_osdsResponse getDefaultInstanceForType() { + public xtreemfs_get_suitable_osdsRequest getDefaultInstanceForType() { return defaultInstance; } @@ -34559,7 +34295,7 @@ public final class MRC { getUnknownFields() { return this.unknownFields; } - private xtreemfs_get_suitable_osdsResponse( + private xtreemfs_get_suitable_osdsRequest( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -34583,11 +34319,23 @@ public final class MRC { break; } case 10: { - if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { - osdUuids_ = new com.google.protobuf.LazyStringArrayList(); - mutable_bitField0_ |= 0x00000001; - } - osdUuids_.add(input.readBytes()); + bitField0_ |= 0x00000001; + fileId_ = input.readBytes(); + break; + } + case 21: { + bitField0_ |= 0x00000008; + numOsds_ = input.readFixed32(); + break; + } + case 26: { + bitField0_ |= 0x00000002; + path_ = input.readBytes(); + break; + } + case 34: { + bitField0_ |= 0x00000004; + volumeName_ = input.readBytes(); break; } } @@ -34598,78 +34346,230 @@ public final class MRC { throw new com.google.protobuf.InvalidProtocolBufferException( e.getMessage()).setUnfinishedMessage(this); } finally { - if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { - osdUuids_ = new com.google.protobuf.UnmodifiableLazyStringList(osdUuids_); - } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_fieldAccessorTable + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.Builder.class); + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.Builder.class); } - public static com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - public xtreemfs_get_suitable_osdsResponse parsePartialFrom( + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public xtreemfs_get_suitable_osdsRequest parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { - return new xtreemfs_get_suitable_osdsResponse(input, extensionRegistry); + return new xtreemfs_get_suitable_osdsRequest(input, extensionRegistry); } }; @java.lang.Override - public com.google.protobuf.Parser getParserForType() { + public com.google.protobuf.Parser getParserForType() { return PARSER; } - // repeated string osd_uuids = 1; - public static final int OSD_UUIDS_FIELD_NUMBER = 1; - private com.google.protobuf.LazyStringList osdUuids_; + private int bitField0_; + // optional string file_id = 1; + public static final int FILE_ID_FIELD_NUMBER = 1; + private java.lang.Object fileId_; /** - * repeated string osd_uuids = 1; + * optional string file_id = 1; + * + *
+     * the file ID
+     * 
*/ - public java.util.List - getOsdUuidsList() { - return osdUuids_; + public boolean hasFileId() { + return ((bitField0_ & 0x00000001) == 0x00000001); } /** - * repeated string osd_uuids = 1; + * optional string file_id = 1; + * + *
+     * the file ID
+     * 
*/ - public int getOsdUuidsCount() { - return osdUuids_.size(); + public java.lang.String getFileId() { + java.lang.Object ref = fileId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (bs.isValidUtf8()) { + fileId_ = s; + } + return s; + } } /** - * repeated string osd_uuids = 1; + * optional string file_id = 1; + * + *
+     * the file ID
+     * 
*/ - public java.lang.String getOsdUuids(int index) { - return osdUuids_.get(index); + public com.google.protobuf.ByteString + getFileIdBytes() { + java.lang.Object ref = fileId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + fileId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } } + + // optional string path = 3; + public static final int PATH_FIELD_NUMBER = 3; + private java.lang.Object path_; /** - * repeated string osd_uuids = 1; + * optional string path = 3; + * + *
+     * or path and volume_name to file.
+     * 
+ */ + public boolean hasPath() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional string path = 3; + * + *
+     * or path and volume_name to file.
+     * 
+ */ + public java.lang.String getPath() { + java.lang.Object ref = path_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (bs.isValidUtf8()) { + path_ = s; + } + return s; + } + } + /** + * optional string path = 3; + * + *
+     * or path and volume_name to file.
+     * 
*/ public com.google.protobuf.ByteString - getOsdUuidsBytes(int index) { - return osdUuids_.getByteString(index); + getPathBytes() { + java.lang.Object ref = path_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + path_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + // optional string volume_name = 4; + public static final int VOLUME_NAME_FIELD_NUMBER = 4; + private java.lang.Object volumeName_; + /** + * optional string volume_name = 4; + */ + public boolean hasVolumeName() { + return ((bitField0_ & 0x00000004) == 0x00000004); + } + /** + * optional string volume_name = 4; + */ + public java.lang.String getVolumeName() { + java.lang.Object ref = volumeName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + if (bs.isValidUtf8()) { + volumeName_ = s; + } + return s; + } + } + /** + * optional string volume_name = 4; + */ + public com.google.protobuf.ByteString + getVolumeNameBytes() { + java.lang.Object ref = volumeName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + volumeName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + // required fixed32 num_osds = 2; + public static final int NUM_OSDS_FIELD_NUMBER = 2; + private int numOsds_; + /** + * required fixed32 num_osds = 2; + * + *
+     * the number of OSDs for the new replicas
+     * 
+ */ + public boolean hasNumOsds() { + return ((bitField0_ & 0x00000008) == 0x00000008); + } + /** + * required fixed32 num_osds = 2; + * + *
+     * the number of OSDs for the new replicas
+     * 
+ */ + public int getNumOsds() { + return numOsds_; } private void initFields() { - osdUuids_ = com.google.protobuf.LazyStringArrayList.EMPTY; + fileId_ = ""; + path_ = ""; + volumeName_ = ""; + numOsds_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized != -1) return isInitialized == 1; + if (!hasNumOsds()) { + memoizedIsInitialized = 0; + return false; + } memoizedIsInitialized = 1; return true; } @@ -34677,8 +34577,17 @@ public final class MRC { public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { getSerializedSize(); - for (int i = 0; i < osdUuids_.size(); i++) { - output.writeBytes(1, osdUuids_.getByteString(i)); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + output.writeBytes(1, getFileIdBytes()); + } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + output.writeFixed32(2, numOsds_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + output.writeBytes(3, getPathBytes()); + } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + output.writeBytes(4, getVolumeNameBytes()); } getUnknownFields().writeTo(output); } @@ -34689,14 +34598,21 @@ public final class MRC { if (size != -1) return size; size = 0; - { - int dataSize = 0; - for (int i = 0; i < osdUuids_.size(); i++) { - dataSize += com.google.protobuf.CodedOutputStream - .computeBytesSizeNoTag(osdUuids_.getByteString(i)); - } - size += dataSize; - size += 1 * getOsdUuidsList().size(); + if (((bitField0_ & 0x00000001) == 0x00000001)) { + size += com.google.protobuf.CodedOutputStream + .computeBytesSize(1, getFileIdBytes()); + } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + size += com.google.protobuf.CodedOutputStream + .computeFixed32Size(2, numOsds_); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + size += com.google.protobuf.CodedOutputStream + .computeBytesSize(3, getPathBytes()); + } + if (((bitField0_ & 0x00000004) == 0x00000004)) { + size += com.google.protobuf.CodedOutputStream + .computeBytesSize(4, getVolumeNameBytes()); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; @@ -34710,53 +34626,53 @@ public final class MRC { return super.writeReplace(); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom(byte[] data) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom(java.io.InputStream input) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseFrom(input, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseDelimitedFrom(java.io.InputStream input) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseDelimitedFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseDelimitedFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseDelimitedFrom(input, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -34765,7 +34681,7 @@ public final class MRC { public static Builder newBuilder() { return Builder.create(); } public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse prototype) { + public static Builder newBuilder(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest prototype) { return newBuilder().mergeFrom(prototype); } public Builder toBuilder() { return newBuilder(this); } @@ -34777,28 +34693,28 @@ public final class MRC { return builder; } /** - * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_get_suitable_osdsResponse} + * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_get_suitable_osdsRequest} * *
-     * returns a list of suitable OSDs
+     * requests the list of suitable OSDs for new replicas of a file
      * 
*/ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder - implements org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponseOrBuilder { + implements org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_fieldAccessorTable + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.Builder.class); + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.Builder.class); } - // Construct using org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.newBuilder() + // Construct using org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } @@ -34818,8 +34734,14 @@ public final class MRC { public Builder clear() { super.clear(); - osdUuids_ = com.google.protobuf.LazyStringArrayList.EMPTY; + fileId_ = ""; bitField0_ = (bitField0_ & ~0x00000001); + path_ = ""; + bitField0_ = (bitField0_ & ~0x00000002); + volumeName_ = ""; + bitField0_ = (bitField0_ & ~0x00000004); + numOsds_ = 0; + bitField0_ = (bitField0_ & ~0x00000008); return this; } @@ -34829,60 +34751,84 @@ public final class MRC { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_descriptor; } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse getDefaultInstanceForType() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.getDefaultInstance(); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest getDefaultInstanceForType() { + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.getDefaultInstance(); } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse build() { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse result = buildPartial(); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest build() { + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse buildPartial() { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse result = new org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse(this); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest buildPartial() { + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest result = new org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest(this); int from_bitField0_ = bitField0_; - if (((bitField0_ & 0x00000001) == 0x00000001)) { - osdUuids_ = new com.google.protobuf.UnmodifiableLazyStringList( - osdUuids_); - bitField0_ = (bitField0_ & ~0x00000001); + int to_bitField0_ = 0; + if (((from_bitField0_ & 0x00000001) == 0x00000001)) { + to_bitField0_ |= 0x00000001; } - result.osdUuids_ = osdUuids_; + result.fileId_ = fileId_; + if (((from_bitField0_ & 0x00000002) == 0x00000002)) { + to_bitField0_ |= 0x00000002; + } + result.path_ = path_; + if (((from_bitField0_ & 0x00000004) == 0x00000004)) { + to_bitField0_ |= 0x00000004; + } + result.volumeName_ = volumeName_; + if (((from_bitField0_ & 0x00000008) == 0x00000008)) { + to_bitField0_ |= 0x00000008; + } + result.numOsds_ = numOsds_; + result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse) { - return mergeFrom((org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse)other); + if (other instanceof org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest) { + return mergeFrom((org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest)other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse other) { - if (other == org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.getDefaultInstance()) return this; - if (!other.osdUuids_.isEmpty()) { - if (osdUuids_.isEmpty()) { - osdUuids_ = other.osdUuids_; - bitField0_ = (bitField0_ & ~0x00000001); - } else { - ensureOsdUuidsIsMutable(); - osdUuids_.addAll(other.osdUuids_); - } + public Builder mergeFrom(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest other) { + if (other == org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest.getDefaultInstance()) return this; + if (other.hasFileId()) { + bitField0_ |= 0x00000001; + fileId_ = other.fileId_; + onChanged(); + } + if (other.hasPath()) { + bitField0_ |= 0x00000002; + path_ = other.path_; + onChanged(); + } + if (other.hasVolumeName()) { + bitField0_ |= 0x00000004; + volumeName_ = other.volumeName_; onChanged(); } + if (other.hasNumOsds()) { + setNumOsds(other.getNumOsds()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } public final boolean isInitialized() { + if (!hasNumOsds()) { + + return false; + } return true; } @@ -34890,11 +34836,11 @@ public final class MRC { com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parsedMessage = null; + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse) e.getUnfinishedMessage(); + parsedMessage = (org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest) e.getUnfinishedMessage(); throw e; } finally { if (parsedMessage != null) { @@ -34903,149 +34849,384 @@ public final class MRC { } return this; } - private int bitField0_; - - // repeated string osd_uuids = 1; - private com.google.protobuf.LazyStringList osdUuids_ = com.google.protobuf.LazyStringArrayList.EMPTY; - private void ensureOsdUuidsIsMutable() { - if (!((bitField0_ & 0x00000001) == 0x00000001)) { - osdUuids_ = new com.google.protobuf.LazyStringArrayList(osdUuids_); - bitField0_ |= 0x00000001; - } + private int bitField0_; + + // optional string file_id = 1; + private java.lang.Object fileId_ = ""; + /** + * optional string file_id = 1; + * + *
+       * the file ID
+       * 
+ */ + public boolean hasFileId() { + return ((bitField0_ & 0x00000001) == 0x00000001); + } + /** + * optional string file_id = 1; + * + *
+       * the file ID
+       * 
+ */ + public java.lang.String getFileId() { + java.lang.Object ref = fileId_; + if (!(ref instanceof java.lang.String)) { + java.lang.String s = ((com.google.protobuf.ByteString) ref) + .toStringUtf8(); + fileId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * optional string file_id = 1; + * + *
+       * the file ID
+       * 
+ */ + public com.google.protobuf.ByteString + getFileIdBytes() { + java.lang.Object ref = fileId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + fileId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * optional string file_id = 1; + * + *
+       * the file ID
+       * 
+ */ + public Builder setFileId( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000001; + fileId_ = value; + onChanged(); + return this; + } + /** + * optional string file_id = 1; + * + *
+       * the file ID
+       * 
+ */ + public Builder clearFileId() { + bitField0_ = (bitField0_ & ~0x00000001); + fileId_ = getDefaultInstance().getFileId(); + onChanged(); + return this; + } + /** + * optional string file_id = 1; + * + *
+       * the file ID
+       * 
+ */ + public Builder setFileIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000001; + fileId_ = value; + onChanged(); + return this; + } + + // optional string path = 3; + private java.lang.Object path_ = ""; + /** + * optional string path = 3; + * + *
+       * or path and volume_name to file.
+       * 
+ */ + public boolean hasPath() { + return ((bitField0_ & 0x00000002) == 0x00000002); + } + /** + * optional string path = 3; + * + *
+       * or path and volume_name to file.
+       * 
+ */ + public java.lang.String getPath() { + java.lang.Object ref = path_; + if (!(ref instanceof java.lang.String)) { + java.lang.String s = ((com.google.protobuf.ByteString) ref) + .toStringUtf8(); + path_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * optional string path = 3; + * + *
+       * or path and volume_name to file.
+       * 
+ */ + public com.google.protobuf.ByteString + getPathBytes() { + java.lang.Object ref = path_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + path_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * optional string path = 3; + * + *
+       * or path and volume_name to file.
+       * 
+ */ + public Builder setPath( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000002; + path_ = value; + onChanged(); + return this; + } + /** + * optional string path = 3; + * + *
+       * or path and volume_name to file.
+       * 
+ */ + public Builder clearPath() { + bitField0_ = (bitField0_ & ~0x00000002); + path_ = getDefaultInstance().getPath(); + onChanged(); + return this; } /** - * repeated string osd_uuids = 1; + * optional string path = 3; + * + *
+       * or path and volume_name to file.
+       * 
*/ - public java.util.List - getOsdUuidsList() { - return java.util.Collections.unmodifiableList(osdUuids_); + public Builder setPathBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000002; + path_ = value; + onChanged(); + return this; } + + // optional string volume_name = 4; + private java.lang.Object volumeName_ = ""; /** - * repeated string osd_uuids = 1; + * optional string volume_name = 4; */ - public int getOsdUuidsCount() { - return osdUuids_.size(); + public boolean hasVolumeName() { + return ((bitField0_ & 0x00000004) == 0x00000004); } /** - * repeated string osd_uuids = 1; + * optional string volume_name = 4; */ - public java.lang.String getOsdUuids(int index) { - return osdUuids_.get(index); + public java.lang.String getVolumeName() { + java.lang.Object ref = volumeName_; + if (!(ref instanceof java.lang.String)) { + java.lang.String s = ((com.google.protobuf.ByteString) ref) + .toStringUtf8(); + volumeName_ = s; + return s; + } else { + return (java.lang.String) ref; + } } /** - * repeated string osd_uuids = 1; + * optional string volume_name = 4; */ public com.google.protobuf.ByteString - getOsdUuidsBytes(int index) { - return osdUuids_.getByteString(index); + getVolumeNameBytes() { + java.lang.Object ref = volumeName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + volumeName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } } /** - * repeated string osd_uuids = 1; + * optional string volume_name = 4; */ - public Builder setOsdUuids( - int index, java.lang.String value) { + public Builder setVolumeName( + java.lang.String value) { if (value == null) { throw new NullPointerException(); } - ensureOsdUuidsIsMutable(); - osdUuids_.set(index, value); + bitField0_ |= 0x00000004; + volumeName_ = value; onChanged(); return this; } /** - * repeated string osd_uuids = 1; + * optional string volume_name = 4; */ - public Builder addOsdUuids( - java.lang.String value) { + public Builder clearVolumeName() { + bitField0_ = (bitField0_ & ~0x00000004); + volumeName_ = getDefaultInstance().getVolumeName(); + onChanged(); + return this; + } + /** + * optional string volume_name = 4; + */ + public Builder setVolumeNameBytes( + com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } - ensureOsdUuidsIsMutable(); - osdUuids_.add(value); + bitField0_ |= 0x00000004; + volumeName_ = value; onChanged(); return this; } + + // required fixed32 num_osds = 2; + private int numOsds_ ; /** - * repeated string osd_uuids = 1; + * required fixed32 num_osds = 2; + * + *
+       * the number of OSDs for the new replicas
+       * 
*/ - public Builder addAllOsdUuids( - java.lang.Iterable values) { - ensureOsdUuidsIsMutable(); - super.addAll(values, osdUuids_); - onChanged(); - return this; + public boolean hasNumOsds() { + return ((bitField0_ & 0x00000008) == 0x00000008); } /** - * repeated string osd_uuids = 1; + * required fixed32 num_osds = 2; + * + *
+       * the number of OSDs for the new replicas
+       * 
*/ - public Builder clearOsdUuids() { - osdUuids_ = com.google.protobuf.LazyStringArrayList.EMPTY; - bitField0_ = (bitField0_ & ~0x00000001); + public int getNumOsds() { + return numOsds_; + } + /** + * required fixed32 num_osds = 2; + * + *
+       * the number of OSDs for the new replicas
+       * 
+ */ + public Builder setNumOsds(int value) { + bitField0_ |= 0x00000008; + numOsds_ = value; onChanged(); return this; } /** - * repeated string osd_uuids = 1; + * required fixed32 num_osds = 2; + * + *
+       * the number of OSDs for the new replicas
+       * 
*/ - public Builder addOsdUuidsBytes( - com.google.protobuf.ByteString value) { - if (value == null) { - throw new NullPointerException(); - } - ensureOsdUuidsIsMutable(); - osdUuids_.add(value); + public Builder clearNumOsds() { + bitField0_ = (bitField0_ & ~0x00000008); + numOsds_ = 0; onChanged(); return this; } - // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.xtreemfs_get_suitable_osdsResponse) + // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.xtreemfs_get_suitable_osdsRequest) } static { - defaultInstance = new xtreemfs_get_suitable_osdsResponse(true); + defaultInstance = new xtreemfs_get_suitable_osdsRequest(true); defaultInstance.initFields(); } - // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_get_suitable_osdsResponse) + // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_get_suitable_osdsRequest) } - public interface xtreemfs_check_file_existsResponseOrBuilder + public interface xtreemfs_get_suitable_osdsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder { - // required string bitmap = 1; + // repeated string osd_uuids = 1; /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; + */ + java.util.List + getOsdUuidsList(); + /** + * repeated string osd_uuids = 1; */ - boolean hasBitmap(); + int getOsdUuidsCount(); /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ - java.lang.String getBitmap(); + java.lang.String getOsdUuids(int index); /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ com.google.protobuf.ByteString - getBitmapBytes(); + getOsdUuidsBytes(int index); } /** - * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_check_file_existsResponse} + * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_get_suitable_osdsResponse} + * + *
+   * returns a list of suitable OSDs
+   * 
*/ - public static final class xtreemfs_check_file_existsResponse extends + public static final class xtreemfs_get_suitable_osdsResponse extends com.google.protobuf.GeneratedMessage - implements xtreemfs_check_file_existsResponseOrBuilder { - // Use xtreemfs_check_file_existsResponse.newBuilder() to construct. - private xtreemfs_check_file_existsResponse(com.google.protobuf.GeneratedMessage.Builder builder) { + implements xtreemfs_get_suitable_osdsResponseOrBuilder { + // Use xtreemfs_get_suitable_osdsResponse.newBuilder() to construct. + private xtreemfs_get_suitable_osdsResponse(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); this.unknownFields = builder.getUnknownFields(); } - private xtreemfs_check_file_existsResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } + private xtreemfs_get_suitable_osdsResponse(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } - private static final xtreemfs_check_file_existsResponse defaultInstance; - public static xtreemfs_check_file_existsResponse getDefaultInstance() { + private static final xtreemfs_get_suitable_osdsResponse defaultInstance; + public static xtreemfs_get_suitable_osdsResponse getDefaultInstance() { return defaultInstance; } - public xtreemfs_check_file_existsResponse getDefaultInstanceForType() { + public xtreemfs_get_suitable_osdsResponse getDefaultInstanceForType() { return defaultInstance; } @@ -35055,7 +35236,7 @@ public final class MRC { getUnknownFields() { return this.unknownFields; } - private xtreemfs_check_file_existsResponse( + private xtreemfs_get_suitable_osdsResponse( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { @@ -35079,8 +35260,11 @@ public final class MRC { break; } case 10: { - bitField0_ |= 0x00000001; - bitmap_ = input.readBytes(); + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + osdUuids_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000001; + } + osdUuids_.add(input.readBytes()); break; } } @@ -35091,93 +35275,78 @@ public final class MRC { throw new com.google.protobuf.InvalidProtocolBufferException( e.getMessage()).setUnfinishedMessage(this); } finally { + if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + osdUuids_ = new com.google.protobuf.UnmodifiableLazyStringList(osdUuids_); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_fieldAccessorTable + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.Builder.class); + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.Builder.class); } - public static com.google.protobuf.Parser PARSER = - new com.google.protobuf.AbstractParser() { - public xtreemfs_check_file_existsResponse parsePartialFrom( + public static com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public xtreemfs_get_suitable_osdsResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { - return new xtreemfs_check_file_existsResponse(input, extensionRegistry); + return new xtreemfs_get_suitable_osdsResponse(input, extensionRegistry); } }; @java.lang.Override - public com.google.protobuf.Parser getParserForType() { + public com.google.protobuf.Parser getParserForType() { return PARSER; } - private int bitField0_; - // required string bitmap = 1; - public static final int BITMAP_FIELD_NUMBER = 1; - private java.lang.Object bitmap_; + // repeated string osd_uuids = 1; + public static final int OSD_UUIDS_FIELD_NUMBER = 1; + private com.google.protobuf.LazyStringList osdUuids_; /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ - public boolean hasBitmap() { - return ((bitField0_ & 0x00000001) == 0x00000001); + public java.util.List + getOsdUuidsList() { + return osdUuids_; } /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ - public java.lang.String getBitmap() { - java.lang.Object ref = bitmap_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - if (bs.isValidUtf8()) { - bitmap_ = s; - } - return s; - } + public int getOsdUuidsCount() { + return osdUuids_.size(); + } + /** + * repeated string osd_uuids = 1; + */ + public java.lang.String getOsdUuids(int index) { + return osdUuids_.get(index); } /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ public com.google.protobuf.ByteString - getBitmapBytes() { - java.lang.Object ref = bitmap_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - bitmap_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + getOsdUuidsBytes(int index) { + return osdUuids_.getByteString(index); } private void initFields() { - bitmap_ = ""; + osdUuids_ = com.google.protobuf.LazyStringArrayList.EMPTY; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized != -1) return isInitialized == 1; - if (!hasBitmap()) { - memoizedIsInitialized = 0; - return false; - } memoizedIsInitialized = 1; return true; } @@ -35185,8 +35354,8 @@ public final class MRC { public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { getSerializedSize(); - if (((bitField0_ & 0x00000001) == 0x00000001)) { - output.writeBytes(1, getBitmapBytes()); + for (int i = 0; i < osdUuids_.size(); i++) { + output.writeBytes(1, osdUuids_.getByteString(i)); } getUnknownFields().writeTo(output); } @@ -35197,9 +35366,14 @@ public final class MRC { if (size != -1) return size; size = 0; - if (((bitField0_ & 0x00000001) == 0x00000001)) { - size += com.google.protobuf.CodedOutputStream - .computeBytesSize(1, getBitmapBytes()); + { + int dataSize = 0; + for (int i = 0; i < osdUuids_.size(); i++) { + dataSize += com.google.protobuf.CodedOutputStream + .computeBytesSizeNoTag(osdUuids_.getByteString(i)); + } + size += dataSize; + size += 1 * getOsdUuidsList().size(); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; @@ -35213,53 +35387,53 @@ public final class MRC { return super.writeReplace(); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom(byte[] data) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom(java.io.InputStream input) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseFrom(input, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseDelimitedFrom(java.io.InputStream input) + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return PARSER.parseDelimitedFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseDelimitedFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return PARSER.parseDelimitedFrom(input, extensionRegistry); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return PARSER.parseFrom(input); } - public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parseFrom( + public static org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { @@ -35268,7 +35442,7 @@ public final class MRC { public static Builder newBuilder() { return Builder.create(); } public Builder newBuilderForType() { return newBuilder(); } - public static Builder newBuilder(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse prototype) { + public static Builder newBuilder(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse prototype) { return newBuilder().mergeFrom(prototype); } public Builder toBuilder() { return newBuilder(this); } @@ -35280,24 +35454,28 @@ public final class MRC { return builder; } /** - * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_check_file_existsResponse} + * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_get_suitable_osdsResponse} + * + *
+     * returns a list of suitable OSDs
+     * 
*/ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder - implements org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponseOrBuilder { + implements org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_fieldAccessorTable + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.Builder.class); + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.class, org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.Builder.class); } - // Construct using org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.newBuilder() + // Construct using org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } @@ -35317,7 +35495,7 @@ public final class MRC { public Builder clear() { super.clear(); - bitmap_ = ""; + osdUuids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); return this; } @@ -35328,48 +35506,53 @@ public final class MRC { public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor; + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_descriptor; } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse getDefaultInstanceForType() { - return org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.getDefaultInstance(); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse getDefaultInstanceForType() { + return org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.getDefaultInstance(); } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse build() { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse result = buildPartial(); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse build() { + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } - public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse buildPartial() { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse result = new org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse(this); + public org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse buildPartial() { + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse result = new org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse(this); int from_bitField0_ = bitField0_; - int to_bitField0_ = 0; - if (((from_bitField0_ & 0x00000001) == 0x00000001)) { - to_bitField0_ |= 0x00000001; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + osdUuids_ = new com.google.protobuf.UnmodifiableLazyStringList( + osdUuids_); + bitField0_ = (bitField0_ & ~0x00000001); } - result.bitmap_ = bitmap_; - result.bitField0_ = to_bitField0_; + result.osdUuids_ = osdUuids_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { - if (other instanceof org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse) { - return mergeFrom((org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse)other); + if (other instanceof org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse) { + return mergeFrom((org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse)other); } else { super.mergeFrom(other); return this; } } - public Builder mergeFrom(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse other) { - if (other == org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.getDefaultInstance()) return this; - if (other.hasBitmap()) { - bitField0_ |= 0x00000001; - bitmap_ = other.bitmap_; + public Builder mergeFrom(org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse other) { + if (other == org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse.getDefaultInstance()) return this; + if (!other.osdUuids_.isEmpty()) { + if (osdUuids_.isEmpty()) { + osdUuids_ = other.osdUuids_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureOsdUuidsIsMutable(); + osdUuids_.addAll(other.osdUuids_); + } onChanged(); } this.mergeUnknownFields(other.getUnknownFields()); @@ -35377,10 +35560,6 @@ public final class MRC { } public final boolean isInitialized() { - if (!hasBitmap()) { - - return false; - } return true; } @@ -35388,11 +35567,11 @@ public final class MRC { com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { - org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse parsedMessage = null; + org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { - parsedMessage = (org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse) e.getUnfinishedMessage(); + parsedMessage = (org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse) e.getUnfinishedMessage(); throw e; } finally { if (parsedMessage != null) { @@ -35403,89 +35582,108 @@ public final class MRC { } private int bitField0_; - // required string bitmap = 1; - private java.lang.Object bitmap_ = ""; + // repeated string osd_uuids = 1; + private com.google.protobuf.LazyStringList osdUuids_ = com.google.protobuf.LazyStringArrayList.EMPTY; + private void ensureOsdUuidsIsMutable() { + if (!((bitField0_ & 0x00000001) == 0x00000001)) { + osdUuids_ = new com.google.protobuf.LazyStringArrayList(osdUuids_); + bitField0_ |= 0x00000001; + } + } /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ - public boolean hasBitmap() { - return ((bitField0_ & 0x00000001) == 0x00000001); + public java.util.List + getOsdUuidsList() { + return java.util.Collections.unmodifiableList(osdUuids_); + } + /** + * repeated string osd_uuids = 1; + */ + public int getOsdUuidsCount() { + return osdUuids_.size(); } /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ - public java.lang.String getBitmap() { - java.lang.Object ref = bitmap_; - if (!(ref instanceof java.lang.String)) { - java.lang.String s = ((com.google.protobuf.ByteString) ref) - .toStringUtf8(); - bitmap_ = s; - return s; - } else { - return (java.lang.String) ref; - } + public java.lang.String getOsdUuids(int index) { + return osdUuids_.get(index); } /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ public com.google.protobuf.ByteString - getBitmapBytes() { - java.lang.Object ref = bitmap_; - if (ref instanceof String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - bitmap_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; - } + getOsdUuidsBytes(int index) { + return osdUuids_.getByteString(index); + } + /** + * repeated string osd_uuids = 1; + */ + public Builder setOsdUuids( + int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureOsdUuidsIsMutable(); + osdUuids_.set(index, value); + onChanged(); + return this; } /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ - public Builder setBitmap( + public Builder addOsdUuids( java.lang.String value) { if (value == null) { throw new NullPointerException(); } - bitField0_ |= 0x00000001; - bitmap_ = value; + ensureOsdUuidsIsMutable(); + osdUuids_.add(value); + onChanged(); + return this; + } + /** + * repeated string osd_uuids = 1; + */ + public Builder addAllOsdUuids( + java.lang.Iterable values) { + ensureOsdUuidsIsMutable(); + super.addAll(values, osdUuids_); onChanged(); return this; } /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ - public Builder clearBitmap() { + public Builder clearOsdUuids() { + osdUuids_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); - bitmap_ = getDefaultInstance().getBitmap(); onChanged(); return this; } /** - * required string bitmap = 1; + * repeated string osd_uuids = 1; */ - public Builder setBitmapBytes( + public Builder addOsdUuidsBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } - bitField0_ |= 0x00000001; - bitmap_ = value; + ensureOsdUuidsIsMutable(); + osdUuids_.add(value); onChanged(); return this; } - // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.xtreemfs_check_file_existsResponse) + // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.xtreemfs_get_suitable_osdsResponse) } static { - defaultInstance = new xtreemfs_check_file_existsResponse(true); + defaultInstance = new xtreemfs_get_suitable_osdsResponse(true); defaultInstance.initFields(); } - // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_check_file_existsResponse) + // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_get_suitable_osdsResponse) } public interface timestampResponseOrBuilder @@ -46453,6 +46651,11 @@ public final class MRC { private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsRequest_fieldAccessorTable; + private static com.google.protobuf.Descriptors.Descriptor + internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor; + private static + com.google.protobuf.GeneratedMessage.FieldAccessorTable + internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_fieldAccessorTable; private static com.google.protobuf.Descriptors.Descriptor internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_descriptor; private static @@ -46468,11 +46671,6 @@ public final class MRC { private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_fieldAccessorTable; - private static com.google.protobuf.Descriptors.Descriptor - internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor; - private static - com.google.protobuf.GeneratedMessage.FieldAccessorTable - internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_fieldAccessorTable; private static com.google.protobuf.Descriptors.Descriptor internal_static_xtreemfs_pbrpc_timestampResponse_descriptor; private static @@ -46640,155 +46838,159 @@ public final class MRC { "me\030\001 \002(\t\022\014\n\004path\030\002 \002(\t\022\r\n\005flags\030\003 \002(\007\"Z\n" + "!xtreemfs_check_file_existsRequest\022\021\n\tvo" + "lume_id\030\001 \002(\t\022\020\n\010file_ids\030\002 \003(\t\022\020\n\010osd_u" + - "uid\030\003 \002(\t\":\n%xtreemfs_dump_restore_datab" + - "aseRequest\022\021\n\tdump_file\030\001 \002(\t\"i\n!xtreemf" + - "s_get_suitable_osdsRequest\022\017\n\007file_id\030\001 " + - "\001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume_name\030\004 \001(\t\022\020" + - "\n\010num_osds\030\002 \002(\007\"7\n\"xtreemfs_get_suitabl" + - "e_osdsResponse\022\021\n\tosd_uuids\030\001 \003(\t\"4\n\"xtr" + - "eemfs_check_file_existsResponse\022\016\n\006bitma", - "p\030\001 \002(\t\"(\n\021timestampResponse\022\023\n\013timestam" + - "p_s\030\001 \002(\007\"!\n\rstringMessage\022\020\n\010a_string\030\001" + - " \002(\t\"\'\n\027xtreemfs_listdirRequest\022\014\n\004path\030" + - "\001 \002(\t\")\n\030xtreemfs_listdirResponse\022\r\n\005nam" + - "es\030\001 \003(\t\"\177\n\033xtreemfs_replica_addRequest\022" + - "\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume" + - "_name\030\004 \001(\t\022,\n\013new_replica\030\002 \002(\0132\027.xtree" + - "mfs.pbrpc.Replica\"R\n\034xtreemfs_replica_li" + - "stRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\002 \001(\t" + - "\022\023\n\013volume_name\030\003 \001(\t\"f\n\036xtreemfs_replic", - "a_removeRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path" + - "\030\003 \001(\t\022\023\n\013volume_name\030\004 \001(\t\022\020\n\010osd_uuid\030" + - "\002 \002(\t\"|\n\034xtreemfs_restore_fileRequest\022\021\n" + - "\tfile_path\030\001 \002(\t\022\017\n\007file_id\030\002 \002(\t\022\021\n\tfil" + - "e_size\030\003 \002(\006\022\020\n\010osd_uuid\030\004 \002(\t\022\023\n\013stripe" + - "_size\030\005 \002(\007\",\n\025xtreemfs_rmvolRequest\022\023\n\013" + - "volume_name\030\001 \002(\t\"\321\001\n xtreemfs_update_fi" + - "le_sizeRequest\022\"\n\004xcap\030\001 \002(\0132\024.xtreemfs." + - "pbrpc.XCap\022<\n\022osd_write_response\030\002 \002(\0132 " + - ".xtreemfs.pbrpc.OSDWriteResponse\022\022\n\nclos", - "e_file\030\003 \001(\010\0227\n\013coordinates\030\004 \001(\0132\".xtre" + - "emfs.pbrpc.VivaldiCoordinates\"S\n)xtreemf" + - "s_set_replica_update_policyRequest\022\017\n\007fi" + - "le_id\030\001 \002(\t\022\025\n\rupdate_policy\030\002 \002(\t\"G\n*xt" + - "reemfs_set_replica_update_policyResponse" + - "\022\031\n\021old_update_policy\030\001 \002(\t\"E\n#xtreemfs_" + - "set_read_only_xattrRequest\022\017\n\007file_id\030\001 " + - "\002(\t\022\r\n\005value\030\002 \002(\010\"7\n$xtreemfs_set_read_" + - "only_xattrResponse\022\017\n\007was_set\030\001 \002(\010\"7\n$x" + - "treemfs_get_file_credentialsRequest\022\017\n\007f", - "ile_id\030\001 \002(\t*\242\001\n\010Setattrs\022\020\n\014SETATTR_MOD" + - "E\020\001\022\017\n\013SETATTR_UID\020\002\022\017\n\013SETATTR_GID\020\004\022\020\n" + - "\014SETATTR_SIZE\020\010\022\021\n\rSETATTR_ATIME\020\020\022\021\n\rSE" + - "TATTR_MTIME\020 \022\021\n\rSETATTR_CTIME\020@\022\027\n\022SETA" + - "TTR_ATTRIBUTES\020\200\001*>\n\013XATTR_FLAGS\022\026\n\022XATT" + - "R_FLAGS_CREATE\020\001\022\027\n\023XATTR_FLAGS_REPLACE\020" + - "\002*j\n\014ACCESS_FLAGS\022\025\n\021ACCESS_FLAGS_F_OK\020\000" + - "\022\025\n\021ACCESS_FLAGS_X_OK\020\001\022\025\n\021ACCESS_FLAGS_" + - "W_OK\020\002\022\025\n\021ACCESS_FLAGS_R_OK\020\0042\354\037\n\nMRCSer" + - "vice\022S\n\010fsetattr\022\037.xtreemfs.pbrpc.fsetat", - "trRequest\032\035.xtreemfs.pbrpc.emptyResponse" + - "\"\007\215\265\030\002\000\000\000\022@\n\tftruncate\022\024.xtreemfs.pbrpc." + - "XCap\032\024.xtreemfs.pbrpc.XCap\"\007\215\265\030\003\000\000\000\022S\n\007g" + - "etattr\022\036.xtreemfs.pbrpc.getattrRequest\032\037" + - ".xtreemfs.pbrpc.getattrResponse\"\007\215\265\030\004\000\000\000" + - "\022V\n\010getxattr\022\037.xtreemfs.pbrpc.getxattrRe" + - "quest\032 .xtreemfs.pbrpc.getxattrResponse\"" + - "\007\215\265\030\005\000\000\000\022O\n\004link\022\033.xtreemfs.pbrpc.linkRe" + - "quest\032!.xtreemfs.pbrpc.timestampResponse" + - "\"\007\215\265\030\006\000\000\000\022Y\n\tlistxattr\022 .xtreemfs.pbrpc.", - "listxattrRequest\032!.xtreemfs.pbrpc.listxa" + - "ttrResponse\"\007\215\265\030\007\000\000\000\022Q\n\005mkdir\022\034.xtreemfs" + - ".pbrpc.mkdirRequest\032!.xtreemfs.pbrpc.tim" + - "estampResponse\"\007\215\265\030\010\000\000\000\022J\n\004open\022\033.xtreem" + - "fs.pbrpc.openRequest\032\034.xtreemfs.pbrpc.op" + - "enResponse\"\007\215\265\030\t\000\000\000\022T\n\007readdir\022\036.xtreemf" + - "s.pbrpc.readdirRequest\032 .xtreemfs.pbrpc." + - "DirectoryEntries\"\007\215\265\030\n\000\000\000\022V\n\010readlink\022\037." + - "xtreemfs.pbrpc.readlinkRequest\032 .xtreemf" + - "s.pbrpc.readlinkResponse\"\007\215\265\030\013\000\000\000\022]\n\013rem", - "ovexattr\022\".xtreemfs.pbrpc.removexattrReq" + - "uest\032!.xtreemfs.pbrpc.timestampResponse\"" + - "\007\215\265\030\014\000\000\000\022P\n\006rename\022\035.xtreemfs.pbrpc.rena" + - "meRequest\032\036.xtreemfs.pbrpc.renameRespons" + - "e\"\007\215\265\030\r\000\000\000\022Q\n\005rmdir\022\034.xtreemfs.pbrpc.rmd" + - "irRequest\032!.xtreemfs.pbrpc.timestampResp" + - "onse\"\007\215\265\030\016\000\000\000\022U\n\007setattr\022\036.xtreemfs.pbrp" + - "c.setattrRequest\032!.xtreemfs.pbrpc.timest" + - "ampResponse\"\007\215\265\030\017\000\000\000\022W\n\010setxattr\022\037.xtree" + - "mfs.pbrpc.setxattrRequest\032!.xtreemfs.pbr", - "pc.timestampResponse\"\007\215\265\030\020\000\000\000\022K\n\007statvfs" + - "\022\036.xtreemfs.pbrpc.statvfsRequest\032\027.xtree" + - "mfs.pbrpc.StatVFS\"\007\215\265\030\021\000\000\000\022U\n\007symlink\022\036." + - "xtreemfs.pbrpc.symlinkRequest\032!.xtreemfs" + - ".pbrpc.timestampResponse\"\007\215\265\030\022\000\000\000\022P\n\006unl" + - "ink\022\035.xtreemfs.pbrpc.unlinkRequest\032\036.xtr" + - "eemfs.pbrpc.unlinkResponse\"\007\215\265\030\023\000\000\000\022O\n\006a" + - "ccess\022\035.xtreemfs.pbrpc.accessRequest\032\035.x" + - "treemfs.pbrpc.emptyResponse\"\007\215\265\030\024\000\000\000\022[\n\023" + - "xtreemfs_checkpoint\022\034.xtreemfs.pbrpc.emp", - "tyRequest\032\035.xtreemfs.pbrpc.emptyResponse" + - "\"\007\215\265\030\036\000\000\000\022\214\001\n\032xtreemfs_check_file_exists" + - "\0221.xtreemfs.pbrpc.xtreemfs_check_file_ex" + - "istsRequest\0322.xtreemfs.pbrpc.xtreemfs_ch" + - "eck_file_existsResponse\"\007\215\265\030\037\000\000\000\022w\n\026xtre" + - "emfs_dump_database\0225.xtreemfs.pbrpc.xtre" + - "emfs_dump_restore_databaseRequest\032\035.xtre" + - "emfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022\214\001\n\032xt" + - "reemfs_get_suitable_osds\0221.xtreemfs.pbrp" + - "c.xtreemfs_get_suitable_osdsRequest\0322.xt", - "reemfs.pbrpc.xtreemfs_get_suitable_osdsR" + - "esponse\"\007\215\265\030!\000\000\000\022`\n\027xtreemfs_internal_de" + - "bug\022\035.xtreemfs.pbrpc.stringMessage\032\035.xtr" + - "eemfs.pbrpc.stringMessage\"\007\215\265\030\"\000\000\000\022n\n\020xt" + - "reemfs_listdir\022\'.xtreemfs.pbrpc.xtreemfs" + - "_listdirRequest\032(.xtreemfs.pbrpc.xtreemf" + - "s_listdirResponse\"\007\215\265\030#\000\000\000\022P\n\016xtreemfs_l" + - "svol\022\034.xtreemfs.pbrpc.emptyRequest\032\027.xtr" + - "eemfs.pbrpc.Volumes\"\007\215\265\030$\000\000\000\022P\n\016xtreemfs" + - "_mkvol\022\026.xtreemfs.pbrpc.Volume\032\035.xtreemf", - "s.pbrpc.emptyResponse\"\007\215\265\030/\000\000\000\022P\n\031xtreem" + - "fs_renew_capability\022\024.xtreemfs.pbrpc.XCa" + - "p\032\024.xtreemfs.pbrpc.XCap\"\007\215\265\030%\000\000\000\022f\n\036xtre" + - "emfs_replication_to_master\022\034.xtreemfs.pb" + - "rpc.emptyRequest\032\035.xtreemfs.pbrpc.emptyR" + - "esponse\"\007\215\265\030&\000\000\000\022k\n\024xtreemfs_replica_add" + - "\022+.xtreemfs.pbrpc.xtreemfs_replica_addRe" + + "uid\030\003 \002(\t\"\315\001\n\"xtreemfs_check_file_exists" + + "Response\022\025\n\rvolume_exists\030\001 \002(\010\022V\n\013file_" + + "states\030\002 \003(\0162=.xtreemfs.pbrpc.xtreemfs_c" + + "heck_file_existsResponse.FILE_STATEB\002\020\001\"" + + "8\n\nFILE_STATE\022\013\n\007DELETED\020\000\022\016\n\nREGISTERED" + + "\020\001\022\r\n\tABANDONED\020\002\":\n%xtreemfs_dump_resto" + + "re_databaseRequest\022\021\n\tdump_file\030\001 \002(\t\"i\n", + "!xtreemfs_get_suitable_osdsRequest\022\017\n\007fi" + + "le_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume_name" + + "\030\004 \001(\t\022\020\n\010num_osds\030\002 \002(\007\"7\n\"xtreemfs_get" + + "_suitable_osdsResponse\022\021\n\tosd_uuids\030\001 \003(" + + "\t\"(\n\021timestampResponse\022\023\n\013timestamp_s\030\001 " + + "\002(\007\"!\n\rstringMessage\022\020\n\010a_string\030\001 \002(\t\"\'" + + "\n\027xtreemfs_listdirRequest\022\014\n\004path\030\001 \002(\t\"" + + ")\n\030xtreemfs_listdirResponse\022\r\n\005names\030\001 \003" + + "(\t\"\177\n\033xtreemfs_replica_addRequest\022\017\n\007fil" + + "e_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t\022\023\n\013volume_name\030", + "\004 \001(\t\022,\n\013new_replica\030\002 \002(\0132\027.xtreemfs.pb" + + "rpc.Replica\"R\n\034xtreemfs_replica_listRequ" + + "est\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\002 \001(\t\022\023\n\013vo" + + "lume_name\030\003 \001(\t\"f\n\036xtreemfs_replica_remo" + + "veRequest\022\017\n\007file_id\030\001 \001(\t\022\014\n\004path\030\003 \001(\t" + + "\022\023\n\013volume_name\030\004 \001(\t\022\020\n\010osd_uuid\030\002 \002(\t\"" + + "|\n\034xtreemfs_restore_fileRequest\022\021\n\tfile_" + + "path\030\001 \002(\t\022\017\n\007file_id\030\002 \002(\t\022\021\n\tfile_size" + + "\030\003 \002(\006\022\020\n\010osd_uuid\030\004 \002(\t\022\023\n\013stripe_size\030" + + "\005 \002(\007\",\n\025xtreemfs_rmvolRequest\022\023\n\013volume", + "_name\030\001 \002(\t\"\321\001\n xtreemfs_update_file_siz" + + "eRequest\022\"\n\004xcap\030\001 \002(\0132\024.xtreemfs.pbrpc." + + "XCap\022<\n\022osd_write_response\030\002 \002(\0132 .xtree" + + "mfs.pbrpc.OSDWriteResponse\022\022\n\nclose_file" + + "\030\003 \001(\010\0227\n\013coordinates\030\004 \001(\0132\".xtreemfs.p" + + "brpc.VivaldiCoordinates\"S\n)xtreemfs_set_" + + "replica_update_policyRequest\022\017\n\007file_id\030" + + "\001 \002(\t\022\025\n\rupdate_policy\030\002 \002(\t\"G\n*xtreemfs" + + "_set_replica_update_policyResponse\022\031\n\021ol" + + "d_update_policy\030\001 \002(\t\"E\n#xtreemfs_set_re", + "ad_only_xattrRequest\022\017\n\007file_id\030\001 \002(\t\022\r\n" + + "\005value\030\002 \002(\010\"7\n$xtreemfs_set_read_only_x" + + "attrResponse\022\017\n\007was_set\030\001 \002(\010\"7\n$xtreemf" + + "s_get_file_credentialsRequest\022\017\n\007file_id" + + "\030\001 \002(\t*\242\001\n\010Setattrs\022\020\n\014SETATTR_MODE\020\001\022\017\n" + + "\013SETATTR_UID\020\002\022\017\n\013SETATTR_GID\020\004\022\020\n\014SETAT" + + "TR_SIZE\020\010\022\021\n\rSETATTR_ATIME\020\020\022\021\n\rSETATTR_" + + "MTIME\020 \022\021\n\rSETATTR_CTIME\020@\022\027\n\022SETATTR_AT" + + "TRIBUTES\020\200\001*>\n\013XATTR_FLAGS\022\026\n\022XATTR_FLAG" + + "S_CREATE\020\001\022\027\n\023XATTR_FLAGS_REPLACE\020\002*j\n\014A", + "CCESS_FLAGS\022\025\n\021ACCESS_FLAGS_F_OK\020\000\022\025\n\021AC" + + "CESS_FLAGS_X_OK\020\001\022\025\n\021ACCESS_FLAGS_W_OK\020\002" + + "\022\025\n\021ACCESS_FLAGS_R_OK\020\0042\354\037\n\nMRCService\022S" + + "\n\010fsetattr\022\037.xtreemfs.pbrpc.fsetattrRequ" + + "est\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\002" + + "\000\000\000\022@\n\tftruncate\022\024.xtreemfs.pbrpc.XCap\032\024" + + ".xtreemfs.pbrpc.XCap\"\007\215\265\030\003\000\000\000\022S\n\007getattr" + + "\022\036.xtreemfs.pbrpc.getattrRequest\032\037.xtree" + + "mfs.pbrpc.getattrResponse\"\007\215\265\030\004\000\000\000\022V\n\010ge" + + "txattr\022\037.xtreemfs.pbrpc.getxattrRequest\032", + " .xtreemfs.pbrpc.getxattrResponse\"\007\215\265\030\005\000" + + "\000\000\022O\n\004link\022\033.xtreemfs.pbrpc.linkRequest\032" + + "!.xtreemfs.pbrpc.timestampResponse\"\007\215\265\030\006" + + "\000\000\000\022Y\n\tlistxattr\022 .xtreemfs.pbrpc.listxa" + + "ttrRequest\032!.xtreemfs.pbrpc.listxattrRes" + + "ponse\"\007\215\265\030\007\000\000\000\022Q\n\005mkdir\022\034.xtreemfs.pbrpc" + + ".mkdirRequest\032!.xtreemfs.pbrpc.timestamp" + + "Response\"\007\215\265\030\010\000\000\000\022J\n\004open\022\033.xtreemfs.pbr" + + "pc.openRequest\032\034.xtreemfs.pbrpc.openResp" + + "onse\"\007\215\265\030\t\000\000\000\022T\n\007readdir\022\036.xtreemfs.pbrp", + "c.readdirRequest\032 .xtreemfs.pbrpc.Direct" + + "oryEntries\"\007\215\265\030\n\000\000\000\022V\n\010readlink\022\037.xtreem" + + "fs.pbrpc.readlinkRequest\032 .xtreemfs.pbrp" + + "c.readlinkResponse\"\007\215\265\030\013\000\000\000\022]\n\013removexat" + + "tr\022\".xtreemfs.pbrpc.removexattrRequest\032!" + + ".xtreemfs.pbrpc.timestampResponse\"\007\215\265\030\014\000" + + "\000\000\022P\n\006rename\022\035.xtreemfs.pbrpc.renameRequ" + + "est\032\036.xtreemfs.pbrpc.renameResponse\"\007\215\265\030" + + "\r\000\000\000\022Q\n\005rmdir\022\034.xtreemfs.pbrpc.rmdirRequ" + + "est\032!.xtreemfs.pbrpc.timestampResponse\"\007", + "\215\265\030\016\000\000\000\022U\n\007setattr\022\036.xtreemfs.pbrpc.seta" + + "ttrRequest\032!.xtreemfs.pbrpc.timestampRes" + + "ponse\"\007\215\265\030\017\000\000\000\022W\n\010setxattr\022\037.xtreemfs.pb" + + "rpc.setxattrRequest\032!.xtreemfs.pbrpc.tim" + + "estampResponse\"\007\215\265\030\020\000\000\000\022K\n\007statvfs\022\036.xtr" + + "eemfs.pbrpc.statvfsRequest\032\027.xtreemfs.pb" + + "rpc.StatVFS\"\007\215\265\030\021\000\000\000\022U\n\007symlink\022\036.xtreem" + + "fs.pbrpc.symlinkRequest\032!.xtreemfs.pbrpc" + + ".timestampResponse\"\007\215\265\030\022\000\000\000\022P\n\006unlink\022\035." + + "xtreemfs.pbrpc.unlinkRequest\032\036.xtreemfs.", + "pbrpc.unlinkResponse\"\007\215\265\030\023\000\000\000\022O\n\006access\022" + + "\035.xtreemfs.pbrpc.accessRequest\032\035.xtreemf" + + "s.pbrpc.emptyResponse\"\007\215\265\030\024\000\000\000\022[\n\023xtreem" + + "fs_checkpoint\022\034.xtreemfs.pbrpc.emptyRequ" + + "est\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\036" + + "\000\000\000\022\214\001\n\032xtreemfs_check_file_exists\0221.xtr" + + "eemfs.pbrpc.xtreemfs_check_file_existsRe" + + "quest\0322.xtreemfs.pbrpc.xtreemfs_check_fi" + + "le_existsResponse\"\007\215\265\030\037\000\000\000\022w\n\026xtreemfs_d" + + "ump_database\0225.xtreemfs.pbrpc.xtreemfs_d", + "ump_restore_databaseRequest\032\035.xtreemfs.p" + + "brpc.emptyResponse\"\007\215\265\030 \000\000\000\022\214\001\n\032xtreemfs" + + "_get_suitable_osds\0221.xtreemfs.pbrpc.xtre" + + "emfs_get_suitable_osdsRequest\0322.xtreemfs" + + ".pbrpc.xtreemfs_get_suitable_osdsRespons" + + "e\"\007\215\265\030!\000\000\000\022`\n\027xtreemfs_internal_debug\022\035." + + "xtreemfs.pbrpc.stringMessage\032\035.xtreemfs." + + "pbrpc.stringMessage\"\007\215\265\030\"\000\000\000\022n\n\020xtreemfs" + + "_listdir\022\'.xtreemfs.pbrpc.xtreemfs_listd" + + "irRequest\032(.xtreemfs.pbrpc.xtreemfs_list", + "dirResponse\"\007\215\265\030#\000\000\000\022P\n\016xtreemfs_lsvol\022\034" + + ".xtreemfs.pbrpc.emptyRequest\032\027.xtreemfs." + + "pbrpc.Volumes\"\007\215\265\030$\000\000\000\022P\n\016xtreemfs_mkvol" + + "\022\026.xtreemfs.pbrpc.Volume\032\035.xtreemfs.pbrp" + + "c.emptyResponse\"\007\215\265\030/\000\000\000\022P\n\031xtreemfs_ren" + + "ew_capability\022\024.xtreemfs.pbrpc.XCap\032\024.xt" + + "reemfs.pbrpc.XCap\"\007\215\265\030%\000\000\000\022f\n\036xtreemfs_r" + + "eplication_to_master\022\034.xtreemfs.pbrpc.em" + + "ptyRequest\032\035.xtreemfs.pbrpc.emptyRespons" + + "e\"\007\215\265\030&\000\000\000\022k\n\024xtreemfs_replica_add\022+.xtr", + "eemfs.pbrpc.xtreemfs_replica_addRequest\032" + + "\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\'\000\000\000\022" + + "h\n\025xtreemfs_replica_list\022,.xtreemfs.pbrp" + + "c.xtreemfs_replica_listRequest\032\030.xtreemf" + + "s.pbrpc.Replicas\"\007\215\265\030(\000\000\000\022s\n\027xtreemfs_re" + + "plica_remove\022..xtreemfs.pbrpc.xtreemfs_r" + + "eplica_removeRequest\032\037.xtreemfs.pbrpc.Fi" + + "leCredentials\"\007\215\265\030)\000\000\000\022z\n\031xtreemfs_resto" + + "re_database\0225.xtreemfs.pbrpc.xtreemfs_du" + + "mp_restore_databaseRequest\032\035.xtreemfs.pb", + "rpc.emptyResponse\"\007\215\265\030*\000\000\000\022m\n\025xtreemfs_r" + + "estore_file\022,.xtreemfs.pbrpc.xtreemfs_re" + + "store_fileRequest\032\035.xtreemfs.pbrpc.empty" + + "Response\"\007\215\265\030+\000\000\000\022_\n\016xtreemfs_rmvol\022%.xt" + + "reemfs.pbrpc.xtreemfs_rmvolRequest\032\035.xtr" + + "eemfs.pbrpc.emptyResponse\"\007\215\265\030,\000\000\000\022Y\n\021xt" + + "reemfs_shutdown\022\034.xtreemfs.pbrpc.emptyRe" + "quest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265" + - "\030\'\000\000\000\022h\n\025xtreemfs_replica_list\022,.xtreemf" + - "s.pbrpc.xtreemfs_replica_listRequest\032\030.x", - "treemfs.pbrpc.Replicas\"\007\215\265\030(\000\000\000\022s\n\027xtree" + - "mfs_replica_remove\022..xtreemfs.pbrpc.xtre" + - "emfs_replica_removeRequest\032\037.xtreemfs.pb" + - "rpc.FileCredentials\"\007\215\265\030)\000\000\000\022z\n\031xtreemfs" + - "_restore_database\0225.xtreemfs.pbrpc.xtree" + - "mfs_dump_restore_databaseRequest\032\035.xtree" + - "mfs.pbrpc.emptyResponse\"\007\215\265\030*\000\000\000\022m\n\025xtre" + - "emfs_restore_file\022,.xtreemfs.pbrpc.xtree" + - "mfs_restore_fileRequest\032\035.xtreemfs.pbrpc" + - ".emptyResponse\"\007\215\265\030+\000\000\000\022_\n\016xtreemfs_rmvo", - "l\022%.xtreemfs.pbrpc.xtreemfs_rmvolRequest" + - "\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030,\000\000\000" + - "\022Y\n\021xtreemfs_shutdown\022\034.xtreemfs.pbrpc.e" + - "mptyRequest\032\035.xtreemfs.pbrpc.emptyRespon" + - "se\"\007\215\265\030-\000\000\000\022y\n\031xtreemfs_update_file_size" + - "\0220.xtreemfs.pbrpc.xtreemfs_update_file_s" + - "izeRequest\032!.xtreemfs.pbrpc.timestampRes" + - "ponse\"\007\215\265\030.\000\000\000\022\244\001\n\"xtreemfs_set_replica_" + - "update_policy\0229.xtreemfs.pbrpc.xtreemfs_" + - "set_replica_update_policyRequest\032:.xtree", - "mfs.pbrpc.xtreemfs_set_replica_update_po" + - "licyResponse\"\007\215\265\0300\000\000\000\022\222\001\n\034xtreemfs_set_r" + - "ead_only_xattr\0223.xtreemfs.pbrpc.xtreemfs" + - "_set_read_only_xattrRequest\0324.xtreemfs.p" + - "brpc.xtreemfs_set_read_only_xattrRespons" + - "e\"\007\215\265\0301\000\000\000\022\177\n\035xtreemfs_get_file_credenti" + - "als\0224.xtreemfs.pbrpc.xtreemfs_get_file_c" + - "redentialsRequest\032\037.xtreemfs.pbrpc.FileC" + - "redentials\"\007\215\265\0302\000\000\000\022N\n\024xtreemfs_get_xloc" + - "set\022\024.xtreemfs.pbrpc.XCap\032\027.xtreemfs.pbr", - "pc.XLocSet\"\007\215\265\0303\000\000\000\032\007\225\265\030!N\000\000B(\n&org.xtre" + - "emfs.pbrpc.generatedinterfaces" + "\030-\000\000\000\022y\n\031xtreemfs_update_file_size\0220.xtr" + + "eemfs.pbrpc.xtreemfs_update_file_sizeReq", + "uest\032!.xtreemfs.pbrpc.timestampResponse\"" + + "\007\215\265\030.\000\000\000\022\244\001\n\"xtreemfs_set_replica_update" + + "_policy\0229.xtreemfs.pbrpc.xtreemfs_set_re" + + "plica_update_policyRequest\032:.xtreemfs.pb" + + "rpc.xtreemfs_set_replica_update_policyRe" + + "sponse\"\007\215\265\0300\000\000\000\022\222\001\n\034xtreemfs_set_read_on" + + "ly_xattr\0223.xtreemfs.pbrpc.xtreemfs_set_r" + + "ead_only_xattrRequest\0324.xtreemfs.pbrpc.x" + + "treemfs_set_read_only_xattrResponse\"\007\215\265\030" + + "1\000\000\000\022\177\n\035xtreemfs_get_file_credentials\0224.", + "xtreemfs.pbrpc.xtreemfs_get_file_credent" + + "ialsRequest\032\037.xtreemfs.pbrpc.FileCredent" + + "ials\"\007\215\265\0302\000\000\000\022N\n\024xtreemfs_get_xlocset\022\024." + + "xtreemfs.pbrpc.XCap\032\027.xtreemfs.pbrpc.XLo" + + "cSet\"\007\215\265\0303\000\000\000\032\007\225\265\030!N\000\000B(\n&org.xtreemfs.p" + + "brpc.generatedinterfaces" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -46993,30 +47195,30 @@ public final class MRC { com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsRequest_descriptor, new java.lang.String[] { "VolumeId", "FileIds", "OsdUuid", }); - internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_descriptor = + internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor = getDescriptor().getMessageTypes().get(33); + internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessage.FieldAccessorTable( + internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor, + new java.lang.String[] { "VolumeExists", "FileStates", }); + internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_descriptor = + getDescriptor().getMessageTypes().get(34); internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_xtreemfs_pbrpc_xtreemfs_dump_restore_databaseRequest_descriptor, new java.lang.String[] { "DumpFile", }); internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_descriptor = - getDescriptor().getMessageTypes().get(34); + getDescriptor().getMessageTypes().get(35); internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsRequest_descriptor, new java.lang.String[] { "FileId", "Path", "VolumeName", "NumOsds", }); internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_descriptor = - getDescriptor().getMessageTypes().get(35); + getDescriptor().getMessageTypes().get(36); internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_xtreemfs_pbrpc_xtreemfs_get_suitable_osdsResponse_descriptor, new java.lang.String[] { "OsdUuids", }); - internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor = - getDescriptor().getMessageTypes().get(36); - internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_fieldAccessorTable = new - com.google.protobuf.GeneratedMessage.FieldAccessorTable( - internal_static_xtreemfs_pbrpc_xtreemfs_check_file_existsResponse_descriptor, - new java.lang.String[] { "Bitmap", }); internal_static_xtreemfs_pbrpc_timestampResponse_descriptor = getDescriptor().getMessageTypes().get(37); internal_static_xtreemfs_pbrpc_timestampResponse_fieldAccessorTable = new -- GitLab From c1f7918d84823422360c86adee8b03223f4617ab Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Fri, 4 Jul 2014 14:09:28 +0200 Subject: [PATCH 036/192] servers: views: Adjust operations to interface changes. --- .../operations/CheckFileListOperation.java | 122 ++++++++---------- .../src/org/xtreemfs/osd/drain/OSDDrain.java | 12 +- 2 files changed, 64 insertions(+), 70 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/operations/CheckFileListOperation.java b/java/servers/src/org/xtreemfs/mrc/operations/CheckFileListOperation.java index 1b34d7e84..4809a5ffb 100644 --- a/java/servers/src/org/xtreemfs/mrc/operations/CheckFileListOperation.java +++ b/java/servers/src/org/xtreemfs/mrc/operations/CheckFileListOperation.java @@ -10,8 +10,6 @@ package org.xtreemfs.mrc.operations; import java.util.Iterator; -import org.xtreemfs.common.ReplicaUpdatePolicies; -import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.POSIXErrno; import org.xtreemfs.mrc.MRCException; import org.xtreemfs.mrc.MRCRequest; import org.xtreemfs.mrc.MRCRequestDispatcher; @@ -19,87 +17,81 @@ import org.xtreemfs.mrc.UserException; import org.xtreemfs.mrc.database.StorageManager; import org.xtreemfs.mrc.database.VolumeManager; import org.xtreemfs.mrc.metadata.FileMetadata; -import org.xtreemfs.mrc.metadata.StripingPolicy; import org.xtreemfs.mrc.metadata.XLoc; import org.xtreemfs.mrc.metadata.XLocList; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsRequest; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse; +import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE; -import com.google.protobuf.Message; - -/** - * - * @author stender - */ public class CheckFileListOperation extends MRCOperation { - + public CheckFileListOperation(MRCRequestDispatcher master) { super(master); } - + @Override public void startRequest(MRCRequest rq) throws Throwable { - - final xtreemfs_check_file_existsRequest rqArgs = (xtreemfs_check_file_existsRequest) rq - .getRequestArgs(); - final String osd = rqArgs.getOsdUuid(); + + final xtreemfs_check_file_existsRequest rqArgs = (xtreemfs_check_file_existsRequest) rq.getRequestArgs(); + final String osd = rqArgs.getOsdUuid(); final VolumeManager vMan = master.getVolumeManager(); - StorageManager sMan = vMan.getStorageManager(rqArgs.getVolumeId()); - - String response = sMan == null ? "2" : ""; - if (sMan != null) - try { - if (rqArgs.getFileIdsCount() == 0) - throw new UserException(POSIXErrno.POSIX_ERROR_EINVAL, "fileList was empty!"); - for (String fileId : rqArgs.getFileIdsList()) { - if (fileId == null) - throw new MRCException("file ID was null!"); - - FileMetadata mData = sMan.getMetadata(Long.parseLong(fileId)); - if (mData == null) response += "0"; - else { - // check the xLocations-list of the recognized file - boolean registered = false; - XLocList list = mData.getXLocList(); - if (list==null) { - StripingPolicy sp = sMan.createStripingPolicy("RAID0", (int) mData.getSize(), 1); - mData.setXLocList( - sMan.createXLocList( - new XLoc[] { - sMan.createXLoc(sp, new String[]{osd}, 0) - }, ReplicaUpdatePolicies.REPL_UPDATE_PC_NONE, 0 - ) - ); - registered = true; - } else { - Iterator iter = list.iterator(); - XLoc loc; - while (iter.hasNext()) { - loc = iter.next(); - short count = loc.getOSDCount(); - for (int i=0;i 0) { + + for (String fileId : rqArgs.getFileIdsList()) { + if (fileId == null) { + throw new MRCException("checkFileList caused an Exception: file ID was null!"); + } + + FileMetadata mData = sMan.getMetadata(Long.parseLong(fileId)); + if (mData == null) { + // If no metadata exists, the file has been deleted. + response.addFileStates(FILE_STATE.DELETED); + } else { + // Check the xLocations-list of the recognized file. + boolean registered = false; + XLocList list = mData.getXLocList(); + + if (list != null) { + // Try to find the requesting OSD in the XLocList. + Iterator iter = list.iterator(); + XLoc loc; + while (iter.hasNext() && !registered) { + loc = iter.next(); + short count = loc.getOSDCount(); + for (int i = 0; i < count; i++) { + // Stop if entry was found. + if (loc.getOSD(i).equals(osd)) { + registered = true; + break; } - - if (registered) break; } } - response += (registered) ? "1" : "3"; } + + response.addFileStates(registered ? FILE_STATE.REGISTERED : FILE_STATE.ABANDONED); } - } catch (UserException ue) { - response = "2"; - } catch (MRCException be) { - throw new MRCException("checkFileList caused an Exception: " + be.getMessage()); } - - // set the response - rq.setResponse(xtreemfs_check_file_existsResponse.newBuilder().setBitmap(response).build()); + } + + // Set the response. + rq.setResponse(response.build()); finishRequest(rq); } - + } diff --git a/java/servers/src/org/xtreemfs/osd/drain/OSDDrain.java b/java/servers/src/org/xtreemfs/osd/drain/OSDDrain.java index 1324bc4f8..ae2c918af 100644 --- a/java/servers/src/org/xtreemfs/osd/drain/OSDDrain.java +++ b/java/servers/src/org/xtreemfs/osd/drain/OSDDrain.java @@ -47,6 +47,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.XLocSet; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsRequest; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse; +import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsRequest; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_get_suitable_osdsResponse; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_replica_addRequest; @@ -391,11 +392,11 @@ public class OSDDrain { } RPCResponse r = null; - String bitMap = null; + xtreemfs_check_file_existsResponse response = null; try { r = mrcClient.xtreemfs_check_file_exists(volIDMrcAddressMapping.get(entry.getKey()), password, userCreds, fileExistsRequest.build()); - bitMap = r.get().getBitmap(); + response = r.get(); } catch (Exception e) { if (Logging.isDebug()) { Logging.logError(Logging.LEVEL_WARN, this, e); @@ -406,11 +407,12 @@ public class OSDDrain { } } - assert (bitMap != "2"); + assert (response.getVolumeExists()); - for (int i = 0; i < bitMap.length(); i++) { - if (bitMap.charAt(i) == '1') + for (int i = 0; i < response.getFileStatesCount(); i++) { + if (response.getFileStates(i) == FILE_STATE.REGISTERED) { returnList.add(entry.getValue().get(i)); + } } } return returnList; -- GitLab From 5d3c1ca40ff3987066d6417d10da26778d6ac4ee Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Mon, 7 Jul 2014 17:40:37 +0200 Subject: [PATCH 037/192] servers: Refactor DeleteVolumeOperation and ensure the db changes are made from the primary thread. --- .../mrc/operations/DeleteVolumeOperation.java | 59 +++++++------------ 1 file changed, 22 insertions(+), 37 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/operations/DeleteVolumeOperation.java b/java/servers/src/org/xtreemfs/mrc/operations/DeleteVolumeOperation.java index e7666a61d..2099fba56 100644 --- a/java/servers/src/org/xtreemfs/mrc/operations/DeleteVolumeOperation.java +++ b/java/servers/src/org/xtreemfs/mrc/operations/DeleteVolumeOperation.java @@ -9,8 +9,6 @@ package org.xtreemfs.mrc.operations; import org.xtreemfs.common.uuids.ServiceUUID; -import org.xtreemfs.foundation.logging.Logging; -import org.xtreemfs.foundation.logging.Logging.Category; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.ErrorType; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.POSIXErrno; @@ -68,53 +66,40 @@ public class DeleteVolumeOperation extends MRCOperation { // Pause the HeartbeatThread while we are deleting the volume. Otherwise, the thread may re-register a // volume at the DIR which was already deregistered. + master.pauseHeartbeatThread(); + + // Selete the volume from the local database. try { - master.pauseHeartbeatThread(); - } catch (InterruptedException ex) { - finishRequest(rq, new ErrorRecord(ErrorType.INTERNAL_SERVER_ERROR, POSIXErrno.POSIX_ERROR_NONE, - "An error has occurred. The server is probably shutting down.", ex)); + master.getVolumeManager().deleteVolume(volume.getId(), master, rq); + master.notifyVolumeDeleted(); + } finally { + master.resumeHeartbeatThread(); } + + master.getDirClient().xtreemfs_service_deregister(null, rq.getDetails().auth, RPCAuthentication.userService, + volume.getId()); + - // deregister the volume from the Directory Service + // Deregister the volume from the Directory Service asynchronously. // Ugly workaround for async call. - Runnable rqThr = new Runnable() { + Runnable asyncDeregisterRunner = new Runnable() { @Override public void run() { try { + // Deregister from the DIR. master.getDirClient().xtreemfs_service_deregister(null, rq.getDetails().auth, RPCAuthentication.userService, volume.getId()); - processStep2(rqArgs, volume.getId(), rq); - } catch (Exception ex) { - master.resumeHeartbeatThread(); - + + // Set the response. + rq.setResponse(emptyResponse.getDefaultInstance()); + finishRequest(rq); + + } catch (Exception exc) { finishRequest(rq, new ErrorRecord(ErrorType.INTERNAL_SERVER_ERROR, POSIXErrno.POSIX_ERROR_NONE, - "an error has occurred", ex)); + "An error has occurred at the MRC. Details: " + exc.getMessage(), exc)); } } }; - Thread thr = new Thread(rqThr); - thr.start(); - } - - private void processStep2(xtreemfs_rmvolRequest rqArgs, final String volumeId, final MRCRequest rq) { - try { - // delete the volume from the local database - master.getVolumeManager().deleteVolume(volumeId, master, rq); - master.notifyVolumeDeleted(); - - // set the response - rq.setResponse(emptyResponse.getDefaultInstance()); - finishRequest(rq); - - } catch (UserException exc) { - if (Logging.isDebug()) - Logging.logUserError(Logging.LEVEL_DEBUG, Category.proc, this, exc); - finishRequest(rq, new ErrorRecord(ErrorType.ERRNO, exc.getErrno(), exc.getMessage(), exc)); - } catch (Throwable exc) { - finishRequest(rq, new ErrorRecord(ErrorType.INTERNAL_SERVER_ERROR, POSIXErrno.POSIX_ERROR_NONE, - "an error has occurred", exc)); - } finally { - master.resumeHeartbeatThread(); - } + (new Thread(asyncDeregisterRunner)).start(); } } -- GitLab From 98dcf2d09e9d84c2e395137d968fb5aff3b9817f Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Mon, 7 Jul 2014 19:19:21 +0200 Subject: [PATCH 038/192] servers: Refactor CleanupThread and adapt to metaOnlyDirectories. --- .../osd/operations/CleanupStartOperation.java | 2 +- .../xtreemfs/osd/storage/CleanupThread.java | 552 +++++++++++------- .../osd/storage/HashStorageLayout.java | 57 +- .../xtreemfs/osd/storage/StorageLayout.java | 11 +- 4 files changed, 382 insertions(+), 240 deletions(-) diff --git a/java/servers/src/org/xtreemfs/osd/operations/CleanupStartOperation.java b/java/servers/src/org/xtreemfs/osd/operations/CleanupStartOperation.java index 6e618a70b..34ab827a8 100644 --- a/java/servers/src/org/xtreemfs/osd/operations/CleanupStartOperation.java +++ b/java/servers/src/org/xtreemfs/osd/operations/CleanupStartOperation.java @@ -41,7 +41,7 @@ public final class CleanupStartOperation extends OSDOperation { } xtreemfs_cleanup_startRequest args = (xtreemfs_cleanup_startRequest) rq.getRequestArgs(); master.getCleanupThread().cleanupStart(args.getRemoveZombies(), args.getRemoveUnavailVolume(), - args.getLostAndFound(), rq.getRPCRequest().getHeader().getRequestHeader().getUserCreds()); + args.getLostAndFound(), -1, rq.getRPCRequest().getHeader().getRequestHeader().getUserCreds()); rq.sendSuccess(null, null); } diff --git a/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java b/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java index 5fca0bbfe..ab9d8de36 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java +++ b/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java @@ -8,6 +8,7 @@ package org.xtreemfs.osd.storage; import java.text.DateFormat; +import java.util.Collections; import java.util.Date; import java.util.Hashtable; import java.util.LinkedList; @@ -21,18 +22,20 @@ import org.xtreemfs.foundation.LifeCycleThread; import org.xtreemfs.foundation.TimeSync; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; -import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.RPCHeader.ErrorResponse; +import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; import org.xtreemfs.foundation.util.OutputUtils; import org.xtreemfs.osd.OSDRequestDispatcher; import org.xtreemfs.osd.stages.DeletionStage; import org.xtreemfs.osd.stages.PreprocStage.DeleteOnCloseCallback; import org.xtreemfs.osd.storage.StorageLayout.FileData; import org.xtreemfs.osd.storage.StorageLayout.FileList; -import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.pbrpc.generatedinterfaces.DIR.ServiceSet; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse; +import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_check_file_existsResponse.FILE_STATE; +import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; +import org.xtreemfs.pbrpc.generatedinterfaces.OSD.XLocSetVersionState; /** * @@ -46,7 +49,7 @@ public class CleanupThread extends LifeCycleThread { public final static String STATUS_FORMAT = "files checked: %8d zombies: %8d running since: %s"; public final static String STOPPED_FORMAT = "not running, last check started %s"; public final static String DEAD_VOLUME_FORMAT = "volume %s is dead - not registered at directory service"; - public final static String DELETED_VOLUME_FORMAT = "volume %s was removed from MRC %s"; + // public final static String DELETED_VOLUME_FORMAT = "volume %s was removed from MRC %s"; public final static String VOLUME_RESULT_FORMAT = "volume %s had %8d zombies - out of %8d files checked"; public final static String ERROR_FORMAT = "ERROR: cannot check volume %s , reason: %s"; public final static String ZOMBIES_RESTORED_FORMAT = "%8d zombies restored to '"+DEFAULT_RESTORE_PATH+"' on volume %s"; @@ -54,42 +57,46 @@ public class CleanupThread extends LifeCycleThread { public final static String ZOMBIE_DELETE_ERROR_FORMAT = "%s could not be deleted, because: %s"; private final OSDRequestDispatcher master; - - private volatile boolean isRunning; - - private volatile boolean quit; - + + private volatile boolean isRunning; + + private volatile boolean quit; + /** - * remove files for which no metadata exists. if false, zombies - * are just reported. + * remove files for which no metadata exists. if false, zombies are just reported. */ - private volatile boolean removeZombies; + private volatile boolean removeZombies; /** - * remove files if the volume does not exist at the DIR anymore. - * Can be dangerous if a volume is deregistered by accident. + * remove files if the volume does not exist at the DIR anymore. Can be dangerous if a volume is deregistered by + * accident. */ - private volatile boolean removeDeadVolumes; + private volatile boolean removeDeadVolumes; /** - * if enabled, zombies will be moved to new files in a lost+found - * directory. + * if enabled, zombies will be moved to new files in a lost+found directory. */ - private volatile boolean lostAndFound; + private volatile boolean lostAndFound; - private final List results; + private volatile int metaDataTimeoutS; - private final StorageLayout layout; + private final List results; - private volatile long filesChecked; + private final StorageLayout layout; - private final AtomicLong zombies; + private volatile long filesChecked; - private volatile long startTime; - - private UserCredentials uc; - - final ServiceUUID localUUID; + private final AtomicLong zombies; + + private volatile long startTime; + + private UserCredentials uc; + + final ServiceUUID localUUID; + + final MRCServiceClient mrcClient; + + private final AtomicLong openDeletes; public CleanupThread(OSDRequestDispatcher master, StorageLayout layout) { super("CleanupThr"); @@ -98,13 +105,17 @@ public class CleanupThread extends LifeCycleThread { this.isRunning = false; this.quit = false; this.layout = layout; - this.results = new LinkedList(); + this.results = Collections.synchronizedList(new LinkedList()); this.localUUID = master.getConfig().getUUID(); this.startTime = 0L; this.filesChecked = 0L; + this.mrcClient = new MRCServiceClient(master.getRPCClient(), null); + this.openDeletes = new AtomicLong(0L); } - public boolean cleanupStart(boolean removeZombies, boolean removeDeadVolumes, boolean lostAndFound, UserCredentials uc) { + public boolean cleanupStart(boolean removeZombies, boolean removeDeadVolumes, boolean lostAndFound, + int metaDataTimeoutS, UserCredentials uc) { + synchronized (this) { if (isRunning) { return false; @@ -112,6 +123,7 @@ public class CleanupThread extends LifeCycleThread { this.removeZombies = removeZombies; this.removeDeadVolumes = removeDeadVolumes; this.lostAndFound = lostAndFound; + this.metaDataTimeoutS = metaDataTimeoutS; this.uc = uc; isRunning = true; this.notify(); @@ -164,7 +176,6 @@ public class CleanupThread extends LifeCycleThread { public void run() { notifyStarted(); try { - do { synchronized (this) { if (!isRunning) @@ -172,201 +183,267 @@ public class CleanupThread extends LifeCycleThread { if (quit) break; } - FileList l = null; - results.clear(); - filesChecked = 0; - zombies.set(0L); - startTime = TimeSync.getGlobalTime(); - final MRCServiceClient mrcClient = new MRCServiceClient(master.getRPCClient(),null); - do { - l = layout.getFileList(l, 1024*4); - Map> perVolume = new Hashtable>(); - for (String fileName : l.files.keySet()) { - filesChecked++; - String[] tmp = fileName.split(":"); - List flist = perVolume.get((Volume) new Volume(tmp[0])); - if (flist == null) { - flist = new LinkedList(); - perVolume.put(new Volume(tmp[0]),flist); + runCleanup(); + isRunning = false; + } while (!quit); + + } catch (Throwable thr) { + this.notifyCrashed(thr); + } + + notifyStopped(); + } + + + private void runCleanup() throws Throwable { + FileList l = null; + results.clear(); + filesChecked = 0; + zombies.set(0L); + startTime = TimeSync.getGlobalTime(); + + do { // while(l.hasMore) + + // Retrieve the fileList from the storage Layout. + l = layout.getFileList(l, 1024 * 4); + + // Map files to their corresponding volume. + final Map> perVolume = new Hashtable>(); + final Map> metaOnlyPerVolume = new Hashtable>(); + + for (String fileName : l.files.keySet()) { + filesChecked++; + String[] tmp = fileName.split(":"); + Volume v = new Volume(tmp[0]); + String fileId = tmp[1]; + + final Map> target; + if (l.files.get(fileName).metaDataOnly) { + target = metaOnlyPerVolume; + } else { + target = perVolume; + } + + List flist = target.get(v); + if (flist == null) { + flist = new LinkedList(); + target.put(v, flist); + } + + flist.add(fileId); + } + + // Interrupt execution if the cleanup has been stopped. + synchronized (this) { + if (!isRunning) + break; + } + + // Check for zombie files on each volume. + Map> zombieFilesPerVolume = new Hashtable>(); + // final List deleteableFiles = Collections.synchronizedList(new LinkedList()); + + for (Volume volume : perVolume.keySet()) { + final Map zombieFiles = new Hashtable(); + + try { + ServiceSet s = master.getDIRClient().xtreemfs_service_get_by_uuid(null, RPCAuthentication.authNone, + RPCAuthentication.userService, volume.id); + + if (s.getServicesCount() == 0) { + // Volume does not exist (is not registered at the DIR). + results.add(String.format(DEAD_VOLUME_FORMAT, volume.id)); + volume.dead(); + + } else { + + final boolean cowEnabled = false; // FIXME: fetch COW policy for current volume + + String mrcUUID = null; + for (KeyValuePair kvp : s.getServices(0).getData().getDataList()) { + if (kvp.getKey().equals("mrc")) + mrcUUID = kvp.getValue(); + } + volume.mrc = new ServiceUUID(mrcUUID); + + RPCResponse r = mrcClient.xtreemfs_check_file_exists( + volume.mrc.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, + volume.id, perVolume.get(volume), localUUID.toString()); + xtreemfs_check_file_existsResponse response = r.get(); + r.freeBuffers(); + + + if (!response.getVolumeExists()) { + // Volume does not exist (is not found at the MRC VolumeManager), + // but it is still known to the DIR. The MRC volume removal DeleteVolumeOperation() + // deregisters volumes _after_ they are deleted from the database, therefore it is + // possible to end in this case. + results.add(String.format(DEAD_VOLUME_FORMAT, volume.id)); + volume.dead(); + + } else { + // Check all files from valid volumes. + List files = perVolume.get(volume); + final AtomicInteger numZombies = new AtomicInteger(0); + final AtomicInteger openOFTChecks = new AtomicInteger(0); + + for (int i = 0; i < files.size(); i++) { + final FILE_STATE fileState = response.getFileStates(i); + if (fileState == FILE_STATE.ABANDONED || fileState == FILE_STATE.DELETED) { + // remove abandoned replicas immediately TODO(jdillmann) + final boolean abandoned = (fileState == FILE_STATE.ABANDONED); + + // retrieve the fileName + final String fName = volume.id + ":" + files.get(i); + + // retrieve the fileData + final FileData fData = l.files.get(fName); + + // check against the OFT + openOFTChecks.incrementAndGet(); + master.getPreprocStage().checkDeleteOnClose(files.get(i), + new DeleteOnCloseCallback() { + @Override + public void deleteOnCloseResult(boolean isDeleteOnClose, + ErrorResponse error) { + + // file is zombie + if (!isDeleteOnClose && !abandoned) { + numZombies.incrementAndGet(); + zombies.incrementAndGet(); + zombieFiles.put(fName, fData); + } + + // deal with the unrestoreable replica + if (!isDeleteOnClose && abandoned) { + deleteFile(fName, cowEnabled, false); + } + + if (openOFTChecks.decrementAndGet() <= 0) { + synchronized (openOFTChecks) { + openOFTChecks.notify(); + } + } + } + }); + } + } + + synchronized (openOFTChecks) { + while (openOFTChecks.get() > 0) + openOFTChecks.wait(); + } + results.add(String.format(VOLUME_RESULT_FORMAT, volume.id, numZombies.get(), files.size())); } - flist.add(tmp[1]); } + } catch (Exception ex) { + results.add(String.format(ERROR_FORMAT, volume.id, OutputUtils.stackTraceToString(ex))); + } - synchronized (this) { - if (!isRunning) - break; + // Handle dead volumes. + if (volume.isDead()) { + // Every file associated with a dead or deleted volume is a zombie. + List files = perVolume.get(volume); + for (int i = 0; i < files.size(); i++) { + // Retrieve the fileName and fileData and store them. + final String fName = volume.id + ":" + files.get(i); + final FileData fData = l.files.get(fName); + zombieFiles.put(fName, fData); } - //check each volume - Map> zombieFilesPerVolume = new Hashtable>(); - - for (Volume volume : perVolume.keySet()) { - final Map zombieFiles = new Hashtable(); - try { - ServiceSet s = master.getDIRClient().xtreemfs_service_get_by_uuid(null, RPCAuthentication.authNone,RPCAuthentication.userService, volume.id); - - if (s.getServicesCount() == 0) { - //volume does not exist - results.add(String.format(DEAD_VOLUME_FORMAT, volume.id)); - volume.dead(); - // retrieve fileData - for (String zombie : perVolume.get(volume)){ - zombieFiles.put(volume.id + ":" + zombie,l.files.get(volume.id + ":" + zombie)); - } - } else { - - final boolean cowEnabled = false; // FIXME: fetch COW policy for current volume - - String mrcUUID = null; - for (KeyValuePair kvp : s.getServices(0).getData().getDataList()) { - if (kvp.getKey().equals("mrc")) - mrcUUID = kvp.getValue(); - } - volume.mrc = new ServiceUUID(mrcUUID); - RPCResponse r = mrcClient.xtreemfs_check_file_exists(volume.mrc.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, volume.id, perVolume.get(volume), localUUID.toString()); - String eval = r.get().getBitmap(); - r.freeBuffers(); - if (eval.equals("2")) { - //volume was deleted (not a dead volume, since MRC answered!) - results.add(String.format(DELETED_VOLUME_FORMAT, volume.id,volume.mrc)); - } else { - //check all files... - List files = perVolume.get(volume); - final AtomicInteger numZombies = new AtomicInteger(0); - final AtomicInteger openOFTChecks = new AtomicInteger(0); - - for (int i = 0; i < files.size(); i++) { - if (eval.charAt(i) == '0' || eval.charAt(i) == '3') { - // remove abandoned replicas immediately - final boolean abandoned = (eval.charAt(i) == '3'); - - // retrieve the fileName - final String fName = volume.id+":"+files.get(i); - - // retrieve the fileData - final FileData fData = l.files.get(fName); - - // check against the OFT - openOFTChecks.incrementAndGet(); - master.getPreprocStage().checkDeleteOnClose(files.get(i), new DeleteOnCloseCallback() { - @Override - public void deleteOnCloseResult(boolean isDeleteOnClose, ErrorResponse error) { - if (!isDeleteOnClose && !abandoned){ - // file is zombie - numZombies.incrementAndGet(); - zombies.incrementAndGet(); - zombieFiles.put(fName, fData); - if (openOFTChecks.decrementAndGet() <= 0) { - synchronized (openOFTChecks) { - openOFTChecks.notify(); - } - } - // deal with the unrestoreable replica - } else if (!isDeleteOnClose) { - master.getDeletionStage().deleteObjects(fName, null, cowEnabled, null, new DeletionStage.DeleteObjectsCallback() { - - @Override - public void deleteComplete(ErrorResponse error) { - if (error != null) - results.add(String.format(ZOMBIE_DELETE_ERROR_FORMAT, fName, error.getErrorMessage())); - } - }); - } - } - }); - } - } - - synchronized (openOFTChecks) { - while (openOFTChecks.get()>0) - openOFTChecks.wait(); - } - results.add(String.format(VOLUME_RESULT_FORMAT, volume.id, numZombies.get(), files.size())); - } - } - } catch (Exception ex) { - results.add(String.format(ERROR_FORMAT, volume.id, OutputUtils.stackTraceToString(ex))); + // TODO(jdillmann): results.add... + } + + if (zombieFiles.size() != 0) { + zombieFilesPerVolume.put(volume, zombieFiles); + } + } // for (Volume volume : perVolume.keySet()) + + synchronized (this) { + if (!isRunning) + break; + } + + // deal with the zombies + for (Volume volume : zombieFilesPerVolume.keySet()) { + // restore files if the flag is set (files from dead volumes cannot be restored + if (!volume.isDead() && lostAndFound) { + Map zombieFiles = zombieFilesPerVolume.get(volume); + + for (String fileName : zombieFiles.keySet()) { + FileData data = zombieFiles.get(fileName); + if (!data.metaDataOnly) { + RPCResponse r = mrcClient.xtreemfs_restore_file(volume.mrc.getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, DEFAULT_RESTORE_PATH, + fileName, data.size, localUUID.toString(), + Integer.valueOf(String.valueOf(data.objectSize))); + + // the response does not matter + r.get(); + r.freeBuffers(); + + // TODO(jdillmann): clear stored xlocset, or send version to mrc... } - - if (zombieFiles.size()!=0) zombieFilesPerVolume.put(volume, zombieFiles); } - synchronized (this) { - if (!isRunning) - break; - } + results.add(String.format(ZOMBIES_RESTORED_FORMAT, zombieFiles.keySet().size(), volume.id)); + + } else if ((volume.isDead() && removeDeadVolumes) || (!volume.isDead() && removeZombies)) { + // Delete all files of dead volumes if the flag is set + // or delete zombies if the flag is set. + Map zombieFiles = zombieFilesPerVolume.get(volume); + final boolean cowEnabled = false; // FIXME: fetch COW policy for current volume - // deal with the zombies - for (Volume volume : zombieFilesPerVolume.keySet()){ - // restore files if the flag is set (files from dead volumes cannot be restored - if (!volume.isDead() && lostAndFound){ - Map zombieFiles = zombieFilesPerVolume.get(volume); - - for (String fileName : zombieFiles.keySet()) { - FileData data = zombieFiles.get(fileName); - RPCResponse r = mrcClient.xtreemfs_restore_file(volume.mrc.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - DEFAULT_RESTORE_PATH, fileName, data.size, - localUUID.toString(), Integer.valueOf(String.valueOf(data.objectSize))); - - // the response does not matter - r.get(); r.freeBuffers(); - } - - results.add(String.format(ZOMBIES_RESTORED_FORMAT,zombieFiles.keySet().size(),volume.id)); - // delete files of dead volumes if the flag is set - } else if ((volume.isDead() && removeDeadVolumes) || - // delete zombies if the flag is set - (!volume.isDead() && removeZombies)) { - Map zombieFiles = zombieFilesPerVolume.get(volume); - final AtomicInteger openDeletes = new AtomicInteger(0); - - final boolean cowEnabled = false; // FIXME: fetch COW policy for current volume - - for (final String fileName : zombieFiles.keySet()) { - openDeletes.incrementAndGet(); - master.getDeletionStage().deleteObjects(fileName, null, cowEnabled, null, new DeletionStage.DeleteObjectsCallback() { - - @Override - public void deleteComplete(ErrorResponse error) { - if (error!=null) - results.add(String.format(ZOMBIE_DELETE_ERROR_FORMAT, fileName, error.getErrorMessage())); - - if (openDeletes.decrementAndGet() <= 0) { - synchronized (openDeletes) { - openDeletes.notify(); - } - } - } - }); - } - - synchronized (openDeletes) { - while (openDeletes.get()>0) - openDeletes.wait(); - } - results.add(String.format(ZOMBIES_DELETED_FORMAT, zombieFiles.keySet().size(),(volume.isDead() ? "dead" : "existing"),volume.id)); - } + for (final String fileName : zombieFiles.keySet()) { + deleteFile(fileName, cowEnabled, false); } - - synchronized (this) { - if (!isRunning) - break; + + synchronized (openDeletes) { + while (openDeletes.get() > 0) + openDeletes.wait(); } - - } while (l.hasMore); - isRunning = false; + results.add(String.format(ZOMBIES_DELETED_FORMAT, zombieFiles.keySet().size(), + (volume.isDead() ? "dead" : "existing"), volume.id)); + } + } + // Deal with metaData only directories. + for (Volume volume : zombieFilesPerVolume.keySet()) { + final boolean cowEnabled = false; // FIXME: fetch COW policy for current volume + + if (metaDataTimeoutS >= 0) { + long toTimeMs = TimeSync.getGlobalTime() - (metaDataTimeoutS * 1000); + List metaDataDirs = metaOnlyPerVolume.get(volume); - } while (!quit); + for (String fName : metaDataDirs) { + XLocSetVersionState vs = layout.getXLocSetVersionState(fName); - } catch (Throwable thr) { - this.notifyCrashed(thr); - } + // Delete the directory if the version is too old. + if (!vs.hasModifiedTime() || vs.getModifiedTime() < toTimeMs) { + deleteFile(fName, cowEnabled, true); + } + } + } - notifyStopped(); + synchronized (openDeletes) { + while (openDeletes.get() > 0) + openDeletes.wait(); + } + // TODO(jdillmann): results.add(...) + // results.add(String.format(ZOMBIES_DELETED_FORMAT, zombieFiles.keySet().size(), + // (volume.isDead() ? "dead" : "existing"), volume.id)); + } + + synchronized (this) { + if (!isRunning) + break; + } + + } while (l.hasMore); } - + + /** * * @param format @@ -376,6 +453,35 @@ public class CleanupThread extends LifeCycleThread { return format.replaceAll("\\+",".").replaceAll("%8d", "(\\\\s*\\\\d+)").replaceAll("%s", "([\\\\S\\\\p{Punct}]+)"); } + /** + * Pass the fileName to the deletion stage, which will eventually delete the file.
+ * The openDeletes variable will be updated on progress and notified if no more deletes are open.
+ * Errors will be stored in the results. + * + * @param fileName + * @param cowEnabled + */ + private void deleteFile(final String fileName, final boolean cowEnabled, final boolean deleteMetaDirs) { + openDeletes.incrementAndGet(); + + master.getDeletionStage().deleteObjects(fileName, null, cowEnabled, null, + new DeletionStage.DeleteObjectsCallback() { + + @Override + public void deleteComplete(ErrorResponse error) { + if (error != null) { + results.add(String.format(ZOMBIE_DELETE_ERROR_FORMAT, fileName, error.getErrorMessage())); + } + + if (openDeletes.decrementAndGet() <= 0) { + synchronized (openDeletes) { + openDeletes.notifyAll(); + } + } + } + }); + } + /** * Contains VolumeId and MRC Address. * @@ -384,31 +490,43 @@ public class CleanupThread extends LifeCycleThread { */ public class Volume { final String id; - ServiceUUID mrc = null; - boolean dead = false; + ServiceUUID mrc = null; + boolean dead = false; + boolean deleted = false; + /** * Constructor for Volumes with unknown MRC. */ Volume(String volId) { this.id = volId; } - + /** * to mark dead volumes. */ - void dead() { this.dead = true; } - boolean isDead() { return this.dead; } - - /* (non-Javadoc) + void dead() { + this.dead = true; + } + + boolean isDead() { + return this.dead; + } + + /* + * (non-Javadoc) + * * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { - if (obj == null || !(obj instanceof Volume)) return false; + if (obj == null || !(obj instanceof Volume)) + return false; return id.equals(((Volume) obj).id); } - - /* (non-Javadoc) + + /* + * (non-Javadoc) + * * @see java.lang.Object#hashCode() */ @Override diff --git a/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java b/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java index b421a14a5..63edd725c 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java +++ b/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java @@ -703,14 +703,18 @@ public class HashStorageLayout extends StorageLayout { @Override public void deleteFile(String fileId, boolean deleteMetadata) throws IOException { + deleteFile(fileId, deleteMetadata, false); + } + + public void deleteFile(String fileId, boolean deleteMetadata, final boolean deleteXLocVersionState) + throws IOException { File fileDir = new File(generateAbsoluteFilePath(fileId)); File[] objs = fileDir.listFiles(new FileFilter() { @Override public boolean accept(File pathname) { - // TODO(jdillmann): use {@link CleanupTread} to delete the version state after the capability timed out. - if (pathname.getPath().endsWith(XLOC_VERSION_STATE_FILENAME)) { + if (!deleteXLocVersionState && pathname.getPath().endsWith(XLOC_VERSION_STATE_FILENAME)) { return false; } @@ -1178,6 +1182,7 @@ public class HashStorageLayout extends StorageLayout { File newestFirst = null; File newestLast = null; Long objectSize = 0L; + boolean isFileNameDir = false; for (File ch : dir.listFiles()) { // handle the directories (hash and fileName) @@ -1191,6 +1196,7 @@ public class HashStorageLayout extends StorageLayout { long version = getVersion(ch); long objNum = getObjectNo(ch); + isFileNameDir = true; if (newestFirst == null) { newestFirst = newestLast = ch; @@ -1214,30 +1220,41 @@ public class HashStorageLayout extends StorageLayout { "CleanUp: an illegal file (" + ch.getAbsolutePath() + ") was discovered and ignored."); } + } else if (ch != null && ch.isFile() && ch.getName().endsWith(XLOC_VERSION_STATE_FILENAME)) { + // If no data file exists, but a version_state file, the whole data folder can be deleted after + // a certain period. + isFileNameDir = true; } } // dir is a fileName-directory - if (newestFirst != null) { - // get a preview from the file - char[] preview = null; - try { - fReader = new FileReader(newestFirst); - preview = new char[PREVIEW_LENGTH]; - fReader.read(preview); - fReader.close(); - } catch (Exception e) { - assert (false); - } + if (isFileNameDir) { - // get the metaInfo from the root-directory - long stripCount = getObjectNo(newestLast); - long fileSize = (stripCount == 1) ? newestFirst.length() : (objectSize * stripCount) - + newestLast.length(); + if (newestFirst != null) { + // get a preview from the file + char[] preview = null; + try { + fReader = new FileReader(newestFirst); + preview = new char[PREVIEW_LENGTH]; + fReader.read(preview); + fReader.close(); + } catch (Exception e) { + assert (false); + } + + // get the metaInfo from the root-directory + long stripCount = getObjectNo(newestLast); + long fileSize = (stripCount == 1) ? newestFirst.length() : (objectSize * stripCount) + + newestLast.length(); - // insert the data into the FileList - l.files.put((WIN) ? dir.getName().replace('_', ':') : dir.getName(), new FileData( - fileSize, (int) (objectSize / 1024))); + // insert the data into the FileList + l.files.put((WIN) ? dir.getName().replace('_', ':') : dir.getName(), + new FileData(fileSize, (int) (objectSize / 1024))); + } else { + // No data file exists, but the folders some metadata is still in place. + l.files.put((WIN) ? dir.getName().replace('_', ':') : dir.getName(), + new FileData(true)); + } } } while (l.files.size() < maxNumEntries); l.hasMore = true; diff --git a/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java b/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java index aa462ff5e..c30eb5bab 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java +++ b/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java @@ -483,12 +483,19 @@ public abstract class StorageLayout { public static final class FileData { final long size; - final int objectSize; - + final boolean metaDataOnly; + FileData(long size, int objectSize) { this.size = size; this.objectSize = objectSize; + this.metaDataOnly = false; + } + + FileData(boolean metaDataOnly) { + this.size = 0; + this.objectSize = 0; + this.metaDataOnly = metaDataOnly; } } } -- GitLab From 5f7c33764a20a3a6752596c437d7526e9659f8d7 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 8 Jul 2014 09:42:49 +0200 Subject: [PATCH 039/192] client: Changed quota multipliers to M, G, T. --- cpp/src/mkfs.xtreemfs/mkfs_options.cpp | 2 +- cpp/src/xtfsutil/xtfsutil.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/src/mkfs.xtreemfs/mkfs_options.cpp b/cpp/src/mkfs.xtreemfs/mkfs_options.cpp index 5fe8f8a7a..191475e58 100644 --- a/cpp/src/mkfs.xtreemfs/mkfs_options.cpp +++ b/cpp/src/mkfs.xtreemfs/mkfs_options.cpp @@ -75,7 +75,7 @@ MkfsOptions::MkfsOptions() : Options() { ->default_value(access_policy_type_string), "Access-control-policy=NULL|POSIX|VOLUME") ("quota,q", po::value(&volume_quota)->default_value(volume_quota), - "Quota of the volume in bytes (default value 0, i.e. quota is disabled), format: B|MB|GB|TB"); + "Quota of the volume in bytes (default value 0, i.e. quota is disabled), format: M|G|T"); // Striping policy options. default_striping_policy_type = xtreemfs::pbrpc::STRIPING_POLICY_RAID0; diff --git a/cpp/src/xtfsutil/xtfsutil.cpp b/cpp/src/xtfsutil/xtfsutil.cpp index 4fe678b08..32984ce0e 100644 --- a/cpp/src/xtfsutil/xtfsutil.cpp +++ b/cpp/src/xtfsutil/xtfsutil.cpp @@ -1068,7 +1068,7 @@ int main(int argc, char **argv) { ("del-acl", value(), "removes an ACL entry, format: u|g|m|o:") ("set-quota", value(), - "sets the volume quota in bytes (set quota to 0 to disable the quota), format: B|KB|MB|GB|TB"); + "sets the volume quota in bytes (set quota to 0 to disable the quota), format: M|G|T"); options_description snapshot_desc("Snapshot Options"); snapshot_desc.add_options() -- GitLab From c1e35544de474021d98baf487d0b50e61c65a77b Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 8 Jul 2014 10:04:40 +0200 Subject: [PATCH 040/192] client: Changed volume_quota to quota --- cpp/include/libxtreemfs/client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/include/libxtreemfs/client.h b/cpp/include/libxtreemfs/client.h index b3ad0795e..c6f649356 100644 --- a/cpp/include/libxtreemfs/client.h +++ b/cpp/include/libxtreemfs/client.h @@ -139,7 +139,7 @@ class Client { const std::string& owner_username, const std::string& owner_groupname, const xtreemfs::pbrpc::AccessControlPolicyType& access_policy_type, - long volume_quota, + long quota, const xtreemfs::pbrpc::StripingPolicyType& default_striping_policy_type, int default_stripe_size, int default_stripe_width, -- GitLab From 9aec17a19b29de4b55e2c1875c315db00f1f6ad3 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 8 Jul 2014 10:30:19 +0200 Subject: [PATCH 041/192] client: Removed path check for quota in xtfsutil. --- cpp/src/xtfsutil/xtfsutil.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cpp/src/xtfsutil/xtfsutil.cpp b/cpp/src/xtfsutil/xtfsutil.cpp index 32984ce0e..a982de2fc 100644 --- a/cpp/src/xtfsutil/xtfsutil.cpp +++ b/cpp/src/xtfsutil/xtfsutil.cpp @@ -400,11 +400,6 @@ bool SetVolumeQuota(const string& xctl_file, const string quota = vm["set-quota"].as(); - if (path != "/") { - cerr << "Quota must be set on volume root." << endl; - return false; - } - Json::Value request(Json::objectValue); request["operation"] = "setVolumeQuota"; request["path"] = path; -- GitLab From 8d18597032604e9e5911d016e84f7d218df16ce7 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 8 Jul 2014 10:31:48 +0200 Subject: [PATCH 042/192] server: Changed quota error message. --- java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java b/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java index 8349a3474..e6f0819be 100644 --- a/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java +++ b/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java @@ -832,7 +832,7 @@ public class MRCHelper { case quota: if (file.getId() != 1) - throw new UserException(POSIXErrno.POSIX_ERROR_EINVAL, "quota can only be set on volumes"); + throw new UserException(POSIXErrno.POSIX_ERROR_EINVAL, "quota must be set on volume root"); sMan.getVolumeInfo().setVolumeQuota((long) Long.valueOf(value), update); -- GitLab From a31cdc0da38eb1a8e94bae48dd3a5e67d203fe6e Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 8 Jul 2014 10:34:20 +0200 Subject: [PATCH 043/192] client: Fixed indentation. --- cpp/src/xtfsutil/xtfsutil_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/xtfsutil/xtfsutil_server.cpp b/cpp/src/xtfsutil/xtfsutil_server.cpp index 4006c2540..7e3c7fd50 100644 --- a/cpp/src/xtfsutil/xtfsutil_server.cpp +++ b/cpp/src/xtfsutil/xtfsutil_server.cpp @@ -198,7 +198,7 @@ void XtfsUtilServer::OpStat(const xtreemfs::pbrpc::UserCredentials& uc, // Get more volume details. uint64_t quota = boost::lexical_cast(xtfs_attrs["xtreemfs.quota"]); - uint64_t quota_free_space = quota - boost::lexical_cast(xtfs_attrs["xtreemfs.used_space"]); + uint64_t quota_free_space = quota - boost::lexical_cast(xtfs_attrs["xtreemfs.used_space"]); // Use minimum of free space relative to the quota and free space on osds as free space. if (quota != 0 && quota_free_space < boost::lexical_cast(xtfs_attrs["xtreemfs.free_space"])) { -- GitLab From 50edc394ac285b90e44d2dca0a454f4469fbd285 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Tue, 8 Jul 2014 13:17:37 +0200 Subject: [PATCH 044/192] servers: views: Delete Metadata only if explicitly requested. --- .../osd/operations/DeleteOperation.java | 15 ++++---- .../osd/operations/EventCloseFile.java | 2 +- .../xtreemfs/osd/stages/DeletionStage.java | 20 ++++++----- .../xtreemfs/osd/storage/CleanupThread.java | 4 +-- .../osd/storage/HashStorageLayout.java | 35 ++++++++----------- .../xtreemfs/osd/storage/StorageLayout.java | 7 ++-- 6 files changed, 41 insertions(+), 42 deletions(-) diff --git a/java/servers/src/org/xtreemfs/osd/operations/DeleteOperation.java b/java/servers/src/org/xtreemfs/osd/operations/DeleteOperation.java index 060e1c46b..2fc7e61c9 100644 --- a/java/servers/src/org/xtreemfs/osd/operations/DeleteOperation.java +++ b/java/servers/src/org/xtreemfs/osd/operations/DeleteOperation.java @@ -72,14 +72,15 @@ public final class DeleteOperation extends OSDOperation { // cancel replication of file if (rq.getLocationList().getReplicaUpdatePolicy().equals(ReplicaUpdatePolicies.REPL_UPDATE_PC_RONLY)) master.getReplicationStage().cancelReplicationForFile(args.getFileId()); - - master.getDeletionStage().deleteObjects(args.getFileId(), null, rq.getCowPolicy().cowEnabled(), rq, new DeleteObjectsCallback() { - @Override - public void deleteComplete(ErrorResponse error) { - disseminateDeletes(rq, args); - } - }); + master.getDeletionStage().deleteObjects(args.getFileId(), null, rq.getCowPolicy().cowEnabled(), rq, false, + new DeleteObjectsCallback() { + + @Override + public void deleteComplete(ErrorResponse error) { + disseminateDeletes(rq, args); + } + }); } else { //file marked for delete on close, send ok to client disseminateDeletes(rq, args); diff --git a/java/servers/src/org/xtreemfs/osd/operations/EventCloseFile.java b/java/servers/src/org/xtreemfs/osd/operations/EventCloseFile.java index 6b3ebcdd9..b9a7353cf 100644 --- a/java/servers/src/org/xtreemfs/osd/operations/EventCloseFile.java +++ b/java/servers/src/org/xtreemfs/osd/operations/EventCloseFile.java @@ -86,7 +86,7 @@ public class EventCloseFile extends OSDOperation { // cancel replication of file master.getReplicationStage().cancelReplicationForFile(fileId); - master.getDeletionStage().deleteObjects(fileId, fi, isCow, null, new DeleteObjectsCallback() { + master.getDeletionStage().deleteObjects(fileId, fi, isCow, null, false, new DeleteObjectsCallback() { @Override public void deleteComplete(ErrorResponse error) { diff --git a/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java b/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java index 291ef2197..a65b6a3c2 100644 --- a/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java +++ b/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java @@ -58,11 +58,11 @@ public class DeletionStage extends Stage { } public void deleteObjects(String fileId, FileMetadata fi, boolean isCow, OSDRequest request, - DeleteObjectsCallback listener) { - this.enqueueOperation(STAGEOP_DELETE_OBJECTS, new Object[] { fileId, isCow, fi }, request, - listener); + final boolean deleteMetadata, DeleteObjectsCallback listener) { + this.enqueueOperation(STAGEOP_DELETE_OBJECTS, new Object[] { fileId, isCow, fi, deleteMetadata }, request, + listener); } - + /** * @return the numFilesDeleted */ @@ -101,6 +101,7 @@ public class DeletionStage extends Stage { final String fileId = (String) rq.getArgs()[0]; final boolean cow = (Boolean) rq.getArgs()[1]; FileMetadata fi = (FileMetadata) rq.getArgs()[2]; + final boolean deleteMetadata = (Boolean) rq.getArgs()[3]; if (Logging.isDebug()) Logging.logMessage(Logging.LEVEL_DEBUG, Category.proc, this, "deleting objects of file %s", @@ -114,7 +115,7 @@ public class DeletionStage extends Stage { // remove all local objects if (layout.fileExists(fileId)) - deletor.enqueueFileForDeletion(fileId, cow, fi); + deletor.enqueueFileForDeletion(fileId, cow, fi, deleteMetadata); cback.deleteComplete(null); } @@ -137,10 +138,10 @@ public class DeletionStage extends Stage { this.interrupt(); } - public void enqueueFileForDeletion(String fileID, boolean cow, FileMetadata fi) { + public void enqueueFileForDeletion(String fileID, boolean cow, FileMetadata fi, boolean deleteMetadata) { assert (this.isAlive()); assert (fileID != null); - files.add(new Object[] { fileID, cow, fi }); + files.add(new Object[] { fileID, cow, fi, deleteMetadata }); } public void run() { @@ -154,6 +155,7 @@ public class DeletionStage extends Stage { final String fileId = (String) file[0]; final boolean cow = (Boolean) file[1]; final FileMetadata fi = (FileMetadata) file[2]; + final boolean deleteMetadata = (Boolean) file[3]; try { if (Logging.isDebug()) @@ -164,9 +166,9 @@ public class DeletionStage extends Stage { if (cow) { // if no previous versions exist, delete the file - // including all its metadata + // including all its metadata if requested if (fi.getVersionTable().getVersionCount() == 0) - layout.deleteFile(fileId, true); + layout.deleteFile(fileId, deleteMetadata); // if other versions exist, only delete those // objects that make up the latest version of the diff --git a/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java b/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java index ab9d8de36..7db7a3554 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java +++ b/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java @@ -461,10 +461,10 @@ public class CleanupThread extends LifeCycleThread { * @param fileName * @param cowEnabled */ - private void deleteFile(final String fileName, final boolean cowEnabled, final boolean deleteMetaDirs) { + private void deleteFile(final String fileName, final boolean cowEnabled, final boolean deleteMetadata) { openDeletes.incrementAndGet(); - master.getDeletionStage().deleteObjects(fileName, null, cowEnabled, null, + master.getDeletionStage().deleteObjects(fileName, null, cowEnabled, null, deleteMetadata, new DeletionStage.DeleteObjectsCallback() { @Override diff --git a/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java b/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java index 63edd725c..f25983df4 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java +++ b/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java @@ -702,19 +702,15 @@ public class HashStorageLayout extends StorageLayout { } @Override - public void deleteFile(String fileId, boolean deleteMetadata) throws IOException { - deleteFile(fileId, deleteMetadata, false); - } - - public void deleteFile(String fileId, boolean deleteMetadata, final boolean deleteXLocVersionState) - throws IOException { - + public void deleteFile(String fileId, final boolean deleteMetadata) throws IOException { File fileDir = new File(generateAbsoluteFilePath(fileId)); - File[] objs = fileDir.listFiles(new FileFilter() { + + // Filter metadata from the fileList, if deleteMetadata is not set. + File[] fileList = fileDir.listFiles(new FileFilter() { @Override public boolean accept(File pathname) { - if (!deleteXLocVersionState && pathname.getPath().endsWith(XLOC_VERSION_STATE_FILENAME)) { + if (!deleteMetadata && pathname.getName().startsWith(".")) { return false; } @@ -722,22 +718,19 @@ public class HashStorageLayout extends StorageLayout { } }); - if (objs == null) { + // Stop the execution if the directory does not exist. + if (fileList == null) { return; } - // otherwise, delete the file including its metadata - else { - - for (File obj : objs) { - obj.delete(); - } - - // delete all empty dirs along the path - if (deleteMetadata) { - del(fileDir); - } + // Delete the filtered files. + for (File file : fileList) { + file.delete(); + } + // Try to delete the data directory if it is empty. + if (deleteMetadata) { + del(fileDir); } } diff --git a/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java b/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java index c30eb5bab..8ff6ae092 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java +++ b/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java @@ -235,10 +235,13 @@ public abstract class StorageLayout { long newVersion, boolean cow) throws IOException; /** - * Deletes all versions of all objects of a file. + * Deletes all versions of all objects of a file.
+ * Metadata (like the MasterEpoch, XLocSetVersionState, TruncateLog, ...) are kept unless deleteMetadata is set. * * @param fileId - * the ID of the file + * the ID of the file. + * @param deleteMetadata + * delete metadata and empty directories. * @throws IOException * if an error occurred while deleting the objects */ -- GitLab From e7b1a30557a725bc9c39d6f1179ed355a5544222 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 8 Jul 2014 13:22:57 +0200 Subject: [PATCH 045/192] client: Reimplemented parseBytNumber using std::string. --- cpp/src/libxtreemfs/helper.cpp | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/cpp/src/libxtreemfs/helper.cpp b/cpp/src/libxtreemfs/helper.cpp index e96fba7ae..7e37ca73a 100644 --- a/cpp/src/libxtreemfs/helper.cpp +++ b/cpp/src/libxtreemfs/helper.cpp @@ -539,27 +539,36 @@ boost::unordered_set GetNetworks() { return result; } + /** - * Parses human-readable byte numbers to byte counts + * Parses human-readable byte number to byte count */ -long parseByteNumber(string byte_number) { - char *expptr; - double coeff = strtod(byte_number.c_str(), &expptr); +long parseByteNumber(std::string byte_number) { + std::string multiplier; + int coeff; + std::stringstream ss; + ss << byte_number; + ss >> coeff; + ss >> multiplier; + + if (multiplier.length() == 0 || multiplier == "B"){ + return coeff; + } + + if (multiplier.length() > 2 || (multiplier.length() == 2 && multiplier[1] != 'B')) { + return -1; + } int exp = 0; int unit = 1024; - switch (toupper(*expptr)) { - case 'B': exp = 0; break; + switch (multiplier[0]) { case 'K': exp = 3; break; case 'M': exp = 6; break; case 'G': exp = 9; break; case 'T': exp = 12; break; - - case '\0': exp = 0; break; - default: return -1; } - return exp ? coeff * pow(unit, exp / 3) : coeff; + return coeff * pow(unit, exp / 3); } } // namespace xtreemfs -- GitLab From 8e7856fd2b3ee8e7bd0fa54127e455625483e2bf Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 8 Jul 2014 13:23:29 +0200 Subject: [PATCH 046/192] client: Changed volume_quota to quota --- cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp b/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp index fbc4021da..ba200f362 100644 --- a/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp +++ b/cpp/src/mkfs.xtreemfs/mkfs.xtreemfs.cpp @@ -128,13 +128,13 @@ int main(int argc, char* argv[]) { return 1; } - long volume_quota = parseByteNumber(options.volume_quota); - if (volume_quota == -1) { + long quota = parseByteNumber(options.volume_quota); + if (quota == -1) { cout << "Error: " << options.volume_quota << " is not a valid quota.\n"; return 1; } - if (volume_quota < 0) { + if (quota < 0) { cout << "Error: Quota has to be greater or equal zero \n"; return 1; } @@ -212,7 +212,7 @@ int main(int argc, char* argv[]) { options.owner_username, options.owner_groupname, options.access_policy_type, - volume_quota, + quota, options.default_striping_policy_type, options.default_stripe_size, options.default_stripe_width, -- GitLab From 972e62a4ceeb91f5c46d3b5b3d366473f966cb67 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Tue, 8 Jul 2014 18:30:39 +0200 Subject: [PATCH 047/192] interface: Add removeMetadata argument to cleanup_start. --- cpp/generated/xtreemfs/OSD.pb.cc | 413 ++++++++----- cpp/generated/xtreemfs/OSD.pb.h | 66 +- interface/xtreemfs/OSD.proto | 5 + .../pbrpc/generatedinterfaces/OSD.java | 583 +++++++++++++----- .../generatedinterfaces/OSDServiceClient.java | 8 +- 5 files changed, 737 insertions(+), 338 deletions(-) diff --git a/cpp/generated/xtreemfs/OSD.pb.cc b/cpp/generated/xtreemfs/OSD.pb.cc index fe753c95d..79fa9fce4 100644 --- a/cpp/generated/xtreemfs/OSD.pb.cc +++ b/cpp/generated/xtreemfs/OSD.pb.cc @@ -500,10 +500,12 @@ void protobuf_AssignDesc_xtreemfs_2fOSD_2eproto() { ::google::protobuf::MessageFactory::generated_factory(), sizeof(xtreemfs_cleanup_is_runningResponse)); xtreemfs_cleanup_startRequest_descriptor_ = file->message_type(20); - static const int xtreemfs_cleanup_startRequest_offsets_[3] = { + static const int xtreemfs_cleanup_startRequest_offsets_[5] = { GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_cleanup_startRequest, remove_zombies_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_cleanup_startRequest, remove_unavail_volume_), GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_cleanup_startRequest, lost_and_found_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_cleanup_startRequest, delete_metadata_), + GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(xtreemfs_cleanup_startRequest, metadata_timeout_), }; xtreemfs_cleanup_startRequest_reflection_ = new ::google::protobuf::internal::GeneratedMessageReflection( @@ -1105,174 +1107,175 @@ void protobuf_AddDesc_xtreemfs_2fOSD_2eproto() { "sion\030\004 \002(\006\"7\n$xtreemfs_cleanup_get_resul" "tsResponse\022\017\n\007results\030\001 \003(\t\"9\n#xtreemfs_" "cleanup_is_runningResponse\022\022\n\nis_running" - "\030\001 \002(\010\"n\n\035xtreemfs_cleanup_startRequest\022" - "\026\n\016remove_zombies\030\001 \002(\010\022\035\n\025remove_unavai" - "l_volume\030\002 \002(\010\022\026\n\016lost_and_found\030\003 \002(\010\"1" - "\n\037xtreemfs_cleanup_statusResponse\022\016\n\006sta" - "tus\030\001 \002(\t\"\226\001\n\031xtreemfs_rwr_fetchRequest\022" - "9\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.pbr" - "pc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\ro" - "bject_number\030\003 \002(\006\022\026\n\016object_version\030\004 \002" - "(\006\"\232\001\n\035xtreemfs_repair_objectRequest\0229\n\020" - "file_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc." - "FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\robje" - "ct_number\030\003 \002(\006\022\026\n\016object_version\030\004 \002(\006\"" - "N\n\036xtreemfs_rwr_flease_msgRequest\022\027\n\017sen" - "der_hostname\030\001 \002(\t\022\023\n\013sender_port\030\002 \002(\007\"" - "\212\001\n%xtreemfs_rwr_set_primary_epochReques" - "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" - "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n" - "\rprimary_epoch\030\003 \002(\007\"\207\001\n\032xtreemfs_rwr_st" - "atusRequest\0229\n\020file_credentials\030\001 \002(\0132\037." + "\030\001 \002(\010\"\241\001\n\035xtreemfs_cleanup_startRequest" + "\022\026\n\016remove_zombies\030\001 \002(\010\022\035\n\025remove_unava" + "il_volume\030\002 \002(\010\022\026\n\016lost_and_found\030\003 \002(\010\022" + "\027\n\017delete_metadata\030\004 \002(\010\022\030\n\020metadata_tim" + "eout\030\005 \002(\007\"1\n\037xtreemfs_cleanup_statusRes" + "ponse\022\016\n\006status\030\001 \002(\t\"\226\001\n\031xtreemfs_rwr_f" + "etchRequest\0229\n\020file_credentials\030\001 \002(\0132\037." "xtreemfs.pbrpc.FileCredentials\022\017\n\007file_i" - "d\030\002 \002(\t\022\035\n\025max_local_obj_version\030\003 \002(\006\"\231" - "\001\n\034xtreemfs_rwr_truncateRequest\0229\n\020file_" - "credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileC" - "redentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew_file_" - "size\030\003 \002(\006\022\026\n\016object_version\030\004 \002(\006\"\347\001\n\032x" - "treemfs_rwr_updateRequest\0229\n\020file_creden" - "tials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredent" - "ials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew_file_size\030\003" - " \002(\006\022\025\n\robject_number\030\007 \002(\006\022\026\n\016object_ve" - "rsion\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022\'\n\003obj\030\006 \002(\013" - "2\032.xtreemfs.pbrpc.ObjectData\"o\n!xtreemfs" - "_internal_get_gmaxRequest\0229\n\020file_creden" - "tials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredent" - "ials\022\017\n\007file_id\030\002 \002(\t\"t\n&xtreemfs_intern" - "al_get_file_sizeRequest\0229\n\020file_credenti" + "d\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016object" + "_version\030\004 \002(\006\"\232\001\n\035xtreemfs_repair_objec" + "tRequest\0229\n\020file_credentials\030\001 \002(\0132\037.xtr" + "eemfs.pbrpc.FileCredentials\022\017\n\007file_id\030\002" + " \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016object_ve" + "rsion\030\004 \002(\006\"N\n\036xtreemfs_rwr_flease_msgRe" + "quest\022\027\n\017sender_hostname\030\001 \002(\t\022\023\n\013sender" + "_port\030\002 \002(\007\"\212\001\n%xtreemfs_rwr_set_primary" + "_epochRequest\0229\n\020file_credentials\030\001 \002(\0132" + "\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007file" + "_id\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007\"\207\001\n\032xtr" + "eemfs_rwr_statusRequest\0229\n\020file_credenti" "als\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredentia" - "ls\022\017\n\007file_id\030\002 \002(\t\"<\n\'xtreemfs_internal" - "_get_file_sizeResponse\022\021\n\tfile_size\030\001 \002(" - "\006\"\222\002\n#xtreemfs_internal_read_localReques" - "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" - "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n" - "\robject_number\030\003 \002(\006\022\026\n\016object_version\030\004" - " \002(\006\022\016\n\006offset\030\005 \002(\007\022\016\n\006length\030\006 \002(\007\022\032\n\022" - "attach_object_list\030\007 \002(\010\0224\n\020required_obj" - "ects\030\010 \003(\0132\032.xtreemfs.pbrpc.ObjectList\"u" - "\n\'xtreemfs_internal_get_object_setReques" - "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" - "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\"=\n" - ")xtreemfs_internal_get_fileid_listRespon" - "se\022\020\n\010file_ids\030\001 \003(\t\"t\n\013lockRequest\0229\n\020f" + "ls\022\017\n\007file_id\030\002 \002(\t\022\035\n\025max_local_obj_ver" + "sion\030\003 \002(\006\"\231\001\n\034xtreemfs_rwr_truncateRequ" + "est\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs" + ".pbrpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022" + "\025\n\rnew_file_size\030\003 \002(\006\022\026\n\016object_version" + "\030\004 \002(\006\"\347\001\n\032xtreemfs_rwr_updateRequest\0229\n" + "\020file_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc" + ".FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew" + "_file_size\030\003 \002(\006\022\025\n\robject_number\030\007 \002(\006\022" + "\026\n\016object_version\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022" + "\'\n\003obj\030\006 \002(\0132\032.xtreemfs.pbrpc.ObjectData" + "\"o\n!xtreemfs_internal_get_gmaxRequest\0229\n" + "\020file_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc" + ".FileCredentials\022\017\n\007file_id\030\002 \002(\t\"t\n&xtr" + "eemfs_internal_get_file_sizeRequest\0229\n\020f" "ile_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.F" - "ileCredentials\022*\n\014lock_request\030\002 \002(\0132\024.x" - "treemfs.pbrpc.Lock\"j\n\025xtreemfs_pingMesss" - "age\0227\n\013coordinates\030\001 \002(\0132\".xtreemfs.pbrp" - "c.VivaldiCoordinates\022\030\n\020request_response" - "\030\002 \002(\010\"\246\001\n\036xtreemfs_rwr_auth_stateReques" - "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" - "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\0228\n" - "\005state\030\003 \002(\0132).xtreemfs.pbrpc.Authoritat" - "iveReplicaState\"\207\001\n\"xtreemfs_rwr_reset_c" - "ompleteRequest\0229\n\020file_credentials\030\001 \002(\013" - "2\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007fil" - "e_id\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007\"q\n#xtr" - "eemfs_xloc_set_invalidateRequest\0229\n\020file" - "_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.File" - "Credentials\022\017\n\007file_id\030\002 \002(\t\"i\n$xtreemfs" - "_xloc_set_invalidateResponse\022\022\n\nis_prima" - "ry\030\001 \002(\010\022-\n\006status\030\002 \001(\0132\035.xtreemfs.pbrp" - "c.ReplicaStatus2\277\036\n\nOSDService\022L\n\004read\022\033" - ".xtreemfs.pbrpc.readRequest\032\032.xtreemfs.p" - "brpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010truncate" - "\022\037.xtreemfs.pbrpc.truncateRequest\032 .xtre" - "emfs.pbrpc.OSDWriteResponse\"\007\215\265\030\013\000\000\000\022T\n\006" - "unlink\022\".xtreemfs.pbrpc.unlink_osd_Reque" - "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\014\000" - "\000\000\022T\n\005write\022\034.xtreemfs.pbrpc.writeReques" - "t\032 .xtreemfs.pbrpc.OSDWriteResponse\"\013\215\265\030" - "\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broadcast_gmax\022..xt" - "reemfs.pbrpc.xtreemfs_broadcast_gmaxRequ" - "est\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\024" - "\000\000\000\022j\n\025xtreemfs_check_object\022,.xtreemfs." - "pbrpc.xtreemfs_check_objectRequest\032\032.xtr" - "eemfs.pbrpc.ObjectData\"\007\215\265\030\025\000\000\000\022{\n\034xtree" - "mfs_cleanup_get_results\022\034.xtreemfs.pbrpc" - ".emptyRequest\0324.xtreemfs.pbrpc.xtreemfs_" - "cleanup_get_resultsResponse\"\007\215\265\030\036\000\000\000\022y\n\033" - "xtreemfs_cleanup_is_running\022\034.xtreemfs.p" - "brpc.emptyRequest\0323.xtreemfs.pbrpc.xtree" - "mfs_cleanup_is_runningResponse\"\007\215\265\030\037\000\000\000\022" - "o\n\026xtreemfs_cleanup_start\022-.xtreemfs.pbr" - "pc.xtreemfs_cleanup_startRequest\032\035.xtree" - "mfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022q\n\027xtre" - "emfs_cleanup_status\022\034.xtreemfs.pbrpc.emp" - "tyRequest\032/.xtreemfs.pbrpc.xtreemfs_clea" - "nup_statusResponse\"\007\215\265\030!\000\000\000\022]\n\025xtreemfs_" - "cleanup_stop\022\034.xtreemfs.pbrpc.emptyReque" - "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\"\000" - "\000\000\022g\n\037xtreemfs_cleanup_versions_start\022\034." - "xtreemfs.pbrpc.emptyRequest\032\035.xtreemfs.p" - "brpc.emptyResponse\"\007\215\265\030#\000\000\000\022o\n\026xtreemfs_" - "repair_object\022-.xtreemfs.pbrpc.xtreemfs_" - "repair_objectRequest\032\035.xtreemfs.pbrpc.em" - "ptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xtreemfs_rwr_fet" - "ch\022).xtreemfs.pbrpc.xtreemfs_rwr_fetchRe" - "quest\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030I\000" - "\000\000\022u\n\027xtreemfs_rwr_flease_msg\022..xtreemfs" - ".pbrpc.xtreemfs_rwr_flease_msgRequest\032\035." - "xtreemfs.pbrpc.emptyResponse\"\013\215\265\030G\000\000\000\240\265\030" - "\001\022^\n\023xtreemfs_rwr_notify\022\037.xtreemfs.pbrp" - "c.FileCredentials\032\035.xtreemfs.pbrpc.empty" - "Response\"\007\215\265\030K\000\000\000\022|\n\036xtreemfs_rwr_set_pr" - "imary_epoch\0225.xtreemfs.pbrpc.xtreemfs_rw" - "r_set_primary_epochRequest\032\032.xtreemfs.pb" - "rpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023xtreemfs_rwr_" - "status\022*.xtreemfs.pbrpc.xtreemfs_rwr_sta" - "tusRequest\032\035.xtreemfs.pbrpc.ReplicaStatu" - "s\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_truncate\022,.xt" - "reemfs.pbrpc.xtreemfs_rwr_truncateReques" - "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030J\000\000" - "\000\022m\n\023xtreemfs_rwr_update\022*.xtreemfs.pbrp" - "c.xtreemfs_rwr_updateRequest\032\035.xtreemfs." - "pbrpc.emptyResponse\"\013\215\265\030H\000\000\000\240\265\030\001\022q\n\027xtre" - "emfs_rwr_auth_state\022..xtreemfs.pbrpc.xtr" - "eemfs_rwr_auth_stateRequest\032\035.xtreemfs.p" - "brpc.emptyResponse\"\007\215\265\030O\000\000\000\022y\n\033xtreemfs_" - "rwr_reset_complete\0222.xtreemfs.pbrpc.xtre" - "emfs_rwr_reset_completeRequest\032\035.xtreemf" - "s.pbrpc.emptyResponse\"\007\215\265\030P\000\000\000\022v\n\032xtreem" - "fs_internal_get_gmax\0221.xtreemfs.pbrpc.xt" - "reemfs_internal_get_gmaxRequest\032\034.xtreem" - "fs.pbrpc.InternalGmax\"\007\215\265\030(\000\000\000\022h\n\032xtreem" - "fs_internal_truncate\022\037.xtreemfs.pbrpc.tr" - "uncateRequest\032 .xtreemfs.pbrpc.OSDWriteR" - "esponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemfs_internal_g" - "et_file_size\0226.xtreemfs.pbrpc.xtreemfs_i" - "nternal_get_file_sizeRequest\0327.xtreemfs." - "pbrpc.xtreemfs_internal_get_file_sizeRes" - "ponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_internal_rea" - "d_local\0223.xtreemfs.pbrpc.xtreemfs_intern" - "al_read_localRequest\032).xtreemfs.pbrpc.In" - "ternalReadLocalResponse\"\007\215\265\030+\000\000\000\022\200\001\n xtr" - "eemfs_internal_get_object_set\0227.xtreemfs" - ".pbrpc.xtreemfs_internal_get_object_setR" - "equest\032\032.xtreemfs.pbrpc.ObjectList\"\007\215\265\030," - "\000\000\000\022\205\001\n!xtreemfs_internal_get_fileid_lis" - "t\022\034.xtreemfs.pbrpc.emptyRequest\0329.xtreem" - "fs.pbrpc.xtreemfs_internal_get_fileid_li" - "stResponse\"\007\215\265\030-\000\000\000\022S\n\025xtreemfs_lock_acq" - "uire\022\033.xtreemfs.pbrpc.lockRequest\032\024.xtre" - "emfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023xtreemfs_loc" - "k_check\022\033.xtreemfs.pbrpc.lockRequest\032\024.x" - "treemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022\\\n\025xtreemfs_" - "lock_release\022\033.xtreemfs.pbrpc.lockReques" - "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\0304\000\000" - "\000\022f\n\rxtreemfs_ping\022%.xtreemfs.pbrpc.xtre" - "emfs_pingMesssage\032%.xtreemfs.pbrpc.xtree" - "mfs_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n\021xtreemfs_sh" - "utdown\022\034.xtreemfs.pbrpc.emptyRequest\032\035.x" - "treemfs.pbrpc.emptyResponse\"\007\215\265\030F\000\000\000\022\222\001\n" - "\034xtreemfs_xloc_set_invalidate\0223.xtreemfs" - ".pbrpc.xtreemfs_xloc_set_invalidateReque" - "st\0324.xtreemfs.pbrpc.xtreemfs_xloc_set_in" - "validateResponse\"\007\215\265\030Q\000\000\000\022}\n#xtreemfs_rw" - "r_auth_state_invalidated\022..xtreemfs.pbrp" - "c.xtreemfs_rwr_auth_stateRequest\032\035.xtree" - "mfs.pbrpc.emptyResponse\"\007\215\265\030R\000\000\000\032\007\225\265\0301u\000" - "\000B(\n&org.xtreemfs.pbrpc.generatedinterfa" - "ces", 9003); + "ileCredentials\022\017\n\007file_id\030\002 \002(\t\"<\n\'xtree" + "mfs_internal_get_file_sizeResponse\022\021\n\tfi" + "le_size\030\001 \002(\006\"\222\002\n#xtreemfs_internal_read" + "_localRequest\0229\n\020file_credentials\030\001 \002(\0132" + "\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007file" + "_id\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016obje" + "ct_version\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022\016\n\006leng" + "th\030\006 \002(\007\022\032\n\022attach_object_list\030\007 \002(\010\0224\n\020" + "required_objects\030\010 \003(\0132\032.xtreemfs.pbrpc." + "ObjectList\"u\n\'xtreemfs_internal_get_obje" + "ct_setRequest\0229\n\020file_credentials\030\001 \002(\0132" + "\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007file" + "_id\030\002 \002(\t\"=\n)xtreemfs_internal_get_filei" + "d_listResponse\022\020\n\010file_ids\030\001 \003(\t\"t\n\013lock" + "Request\0229\n\020file_credentials\030\001 \002(\0132\037.xtre" + "emfs.pbrpc.FileCredentials\022*\n\014lock_reque" + "st\030\002 \002(\0132\024.xtreemfs.pbrpc.Lock\"j\n\025xtreem" + "fs_pingMesssage\0227\n\013coordinates\030\001 \002(\0132\".x" + "treemfs.pbrpc.VivaldiCoordinates\022\030\n\020requ" + "est_response\030\002 \002(\010\"\246\001\n\036xtreemfs_rwr_auth" + "_stateRequest\0229\n\020file_credentials\030\001 \002(\0132" + "\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007file" + "_id\030\002 \002(\t\0228\n\005state\030\003 \002(\0132).xtreemfs.pbrp" + "c.AuthoritativeReplicaState\"\207\001\n\"xtreemfs" + "_rwr_reset_completeRequest\0229\n\020file_crede" + "ntials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCreden" + "tials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rprimary_epoch\030" + "\003 \002(\007\"q\n#xtreemfs_xloc_set_invalidateReq" + "uest\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemf" + "s.pbrpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t" + "\"i\n$xtreemfs_xloc_set_invalidateResponse" + "\022\022\n\nis_primary\030\001 \002(\010\022-\n\006status\030\002 \001(\0132\035.x" + "treemfs.pbrpc.ReplicaStatus2\277\036\n\nOSDServi" + "ce\022L\n\004read\022\033.xtreemfs.pbrpc.readRequest\032" + "\032.xtreemfs.pbrpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001" + "\022V\n\010truncate\022\037.xtreemfs.pbrpc.truncateRe" + "quest\032 .xtreemfs.pbrpc.OSDWriteResponse\"" + "\007\215\265\030\013\000\000\000\022T\n\006unlink\022\".xtreemfs.pbrpc.unli" + "nk_osd_Request\032\035.xtreemfs.pbrpc.emptyRes" + "ponse\"\007\215\265\030\014\000\000\000\022T\n\005write\022\034.xtreemfs.pbrpc" + ".writeRequest\032 .xtreemfs.pbrpc.OSDWriteR" + "esponse\"\013\215\265\030\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broadca" + "st_gmax\022..xtreemfs.pbrpc.xtreemfs_broadc" + "ast_gmaxRequest\032\035.xtreemfs.pbrpc.emptyRe" + "sponse\"\007\215\265\030\024\000\000\000\022j\n\025xtreemfs_check_object" + "\022,.xtreemfs.pbrpc.xtreemfs_check_objectR" + "equest\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030\025" + "\000\000\000\022{\n\034xtreemfs_cleanup_get_results\022\034.xt" + "reemfs.pbrpc.emptyRequest\0324.xtreemfs.pbr" + "pc.xtreemfs_cleanup_get_resultsResponse\"" + "\007\215\265\030\036\000\000\000\022y\n\033xtreemfs_cleanup_is_running\022" + "\034.xtreemfs.pbrpc.emptyRequest\0323.xtreemfs" + ".pbrpc.xtreemfs_cleanup_is_runningRespon" + "se\"\007\215\265\030\037\000\000\000\022o\n\026xtreemfs_cleanup_start\022-." + "xtreemfs.pbrpc.xtreemfs_cleanup_startReq" + "uest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030" + " \000\000\000\022q\n\027xtreemfs_cleanup_status\022\034.xtreem" + "fs.pbrpc.emptyRequest\032/.xtreemfs.pbrpc.x" + "treemfs_cleanup_statusResponse\"\007\215\265\030!\000\000\000\022" + "]\n\025xtreemfs_cleanup_stop\022\034.xtreemfs.pbrp" + "c.emptyRequest\032\035.xtreemfs.pbrpc.emptyRes" + "ponse\"\007\215\265\030\"\000\000\000\022g\n\037xtreemfs_cleanup_versi" + "ons_start\022\034.xtreemfs.pbrpc.emptyRequest\032" + "\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030#\000\000\000\022" + "o\n\026xtreemfs_repair_object\022-.xtreemfs.pbr" + "pc.xtreemfs_repair_objectRequest\032\035.xtree" + "mfs.pbrpc.emptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xtre" + "emfs_rwr_fetch\022).xtreemfs.pbrpc.xtreemfs" + "_rwr_fetchRequest\032\032.xtreemfs.pbrpc.Objec" + "tData\"\007\215\265\030I\000\000\000\022u\n\027xtreemfs_rwr_flease_ms" + "g\022..xtreemfs.pbrpc.xtreemfs_rwr_flease_m" + "sgRequest\032\035.xtreemfs.pbrpc.emptyResponse" + "\"\013\215\265\030G\000\000\000\240\265\030\001\022^\n\023xtreemfs_rwr_notify\022\037.x" + "treemfs.pbrpc.FileCredentials\032\035.xtreemfs" + ".pbrpc.emptyResponse\"\007\215\265\030K\000\000\000\022|\n\036xtreemf" + "s_rwr_set_primary_epoch\0225.xtreemfs.pbrpc" + ".xtreemfs_rwr_set_primary_epochRequest\032\032" + ".xtreemfs.pbrpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023x" + "treemfs_rwr_status\022*.xtreemfs.pbrpc.xtre" + "emfs_rwr_statusRequest\032\035.xtreemfs.pbrpc." + "ReplicaStatus\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_t" + "runcate\022,.xtreemfs.pbrpc.xtreemfs_rwr_tr" + "uncateRequest\032\035.xtreemfs.pbrpc.emptyResp" + "onse\"\007\215\265\030J\000\000\000\022m\n\023xtreemfs_rwr_update\022*.x" + "treemfs.pbrpc.xtreemfs_rwr_updateRequest" + "\032\035.xtreemfs.pbrpc.emptyResponse\"\013\215\265\030H\000\000\000" + "\240\265\030\001\022q\n\027xtreemfs_rwr_auth_state\022..xtreem" + "fs.pbrpc.xtreemfs_rwr_auth_stateRequest\032" + "\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030O\000\000\000\022" + "y\n\033xtreemfs_rwr_reset_complete\0222.xtreemf" + "s.pbrpc.xtreemfs_rwr_reset_completeReque" + "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030P\000" + "\000\000\022v\n\032xtreemfs_internal_get_gmax\0221.xtree" + "mfs.pbrpc.xtreemfs_internal_get_gmaxRequ" + "est\032\034.xtreemfs.pbrpc.InternalGmax\"\007\215\265\030(\000" + "\000\000\022h\n\032xtreemfs_internal_truncate\022\037.xtree" + "mfs.pbrpc.truncateRequest\032 .xtreemfs.pbr" + "pc.OSDWriteResponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemf" + "s_internal_get_file_size\0226.xtreemfs.pbrp" + "c.xtreemfs_internal_get_file_sizeRequest" + "\0327.xtreemfs.pbrpc.xtreemfs_internal_get_" + "file_sizeResponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_" + "internal_read_local\0223.xtreemfs.pbrpc.xtr" + "eemfs_internal_read_localRequest\032).xtree" + "mfs.pbrpc.InternalReadLocalResponse\"\007\215\265\030" + "+\000\000\000\022\200\001\n xtreemfs_internal_get_object_se" + "t\0227.xtreemfs.pbrpc.xtreemfs_internal_get" + "_object_setRequest\032\032.xtreemfs.pbrpc.Obje" + "ctList\"\007\215\265\030,\000\000\000\022\205\001\n!xtreemfs_internal_ge" + "t_fileid_list\022\034.xtreemfs.pbrpc.emptyRequ" + "est\0329.xtreemfs.pbrpc.xtreemfs_internal_g" + "et_fileid_listResponse\"\007\215\265\030-\000\000\000\022S\n\025xtree" + "mfs_lock_acquire\022\033.xtreemfs.pbrpc.lockRe" + "quest\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023" + "xtreemfs_lock_check\022\033.xtreemfs.pbrpc.loc" + "kRequest\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022" + "\\\n\025xtreemfs_lock_release\022\033.xtreemfs.pbrp" + "c.lockRequest\032\035.xtreemfs.pbrpc.emptyResp" + "onse\"\007\215\265\0304\000\000\000\022f\n\rxtreemfs_ping\022%.xtreemf" + "s.pbrpc.xtreemfs_pingMesssage\032%.xtreemfs" + ".pbrpc.xtreemfs_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n" + "\021xtreemfs_shutdown\022\034.xtreemfs.pbrpc.empt" + "yRequest\032\035.xtreemfs.pbrpc.emptyResponse\"" + "\007\215\265\030F\000\000\000\022\222\001\n\034xtreemfs_xloc_set_invalidat" + "e\0223.xtreemfs.pbrpc.xtreemfs_xloc_set_inv" + "alidateRequest\0324.xtreemfs.pbrpc.xtreemfs" + "_xloc_set_invalidateResponse\"\007\215\265\030Q\000\000\000\022}\n" + "#xtreemfs_rwr_auth_state_invalidated\022..x" + "treemfs.pbrpc.xtreemfs_rwr_auth_stateReq" + "uest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030" + "R\000\000\000\032\007\225\265\0301u\000\000B(\n&org.xtreemfs.pbrpc.gene" + "ratedinterfaces", 9055); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "xtreemfs/OSD.proto", &protobuf_RegisterTypes); InternalGmax::default_instance_ = new InternalGmax(); @@ -7484,6 +7487,8 @@ void xtreemfs_cleanup_is_runningResponse::Swap(xtreemfs_cleanup_is_runningRespon const int xtreemfs_cleanup_startRequest::kRemoveZombiesFieldNumber; const int xtreemfs_cleanup_startRequest::kRemoveUnavailVolumeFieldNumber; const int xtreemfs_cleanup_startRequest::kLostAndFoundFieldNumber; +const int xtreemfs_cleanup_startRequest::kDeleteMetadataFieldNumber; +const int xtreemfs_cleanup_startRequest::kMetadataTimeoutFieldNumber; #endif // !_MSC_VER xtreemfs_cleanup_startRequest::xtreemfs_cleanup_startRequest() @@ -7505,6 +7510,8 @@ void xtreemfs_cleanup_startRequest::SharedCtor() { remove_zombies_ = false; remove_unavail_volume_ = false; lost_and_found_ = false; + delete_metadata_ = false; + metadata_timeout_ = 0u; ::memset(_has_bits_, 0, sizeof(_has_bits_)); } @@ -7543,6 +7550,8 @@ void xtreemfs_cleanup_startRequest::Clear() { remove_zombies_ = false; remove_unavail_volume_ = false; lost_and_found_ = false; + delete_metadata_ = false; + metadata_timeout_ = 0u; } ::memset(_has_bits_, 0, sizeof(_has_bits_)); mutable_unknown_fields()->Clear(); @@ -7597,6 +7606,38 @@ bool xtreemfs_cleanup_startRequest::MergePartialFromCodedStream( } else { goto handle_uninterpreted; } + if (input->ExpectTag(32)) goto parse_delete_metadata; + break; + } + + // required bool delete_metadata = 4; + case 4: { + if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == + ::google::protobuf::internal::WireFormatLite::WIRETYPE_VARINT) { + parse_delete_metadata: + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( + input, &delete_metadata_))); + set_has_delete_metadata(); + } else { + goto handle_uninterpreted; + } + if (input->ExpectTag(45)) goto parse_metadata_timeout; + break; + } + + // required fixed32 metadata_timeout = 5; + case 5: { + if (::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) == + ::google::protobuf::internal::WireFormatLite::WIRETYPE_FIXED32) { + parse_metadata_timeout: + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + ::google::protobuf::uint32, ::google::protobuf::internal::WireFormatLite::TYPE_FIXED32>( + input, &metadata_timeout_))); + set_has_metadata_timeout(); + } else { + goto handle_uninterpreted; + } if (input->ExpectAtEnd()) return true; break; } @@ -7634,6 +7675,16 @@ void xtreemfs_cleanup_startRequest::SerializeWithCachedSizes( ::google::protobuf::internal::WireFormatLite::WriteBool(3, this->lost_and_found(), output); } + // required bool delete_metadata = 4; + if (has_delete_metadata()) { + ::google::protobuf::internal::WireFormatLite::WriteBool(4, this->delete_metadata(), output); + } + + // required fixed32 metadata_timeout = 5; + if (has_metadata_timeout()) { + ::google::protobuf::internal::WireFormatLite::WriteFixed32(5, this->metadata_timeout(), output); + } + if (!unknown_fields().empty()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( unknown_fields(), output); @@ -7657,6 +7708,16 @@ void xtreemfs_cleanup_startRequest::SerializeWithCachedSizes( target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(3, this->lost_and_found(), target); } + // required bool delete_metadata = 4; + if (has_delete_metadata()) { + target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(4, this->delete_metadata(), target); + } + + // required fixed32 metadata_timeout = 5; + if (has_metadata_timeout()) { + target = ::google::protobuf::internal::WireFormatLite::WriteFixed32ToArray(5, this->metadata_timeout(), target); + } + if (!unknown_fields().empty()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( unknown_fields(), target); @@ -7683,6 +7744,16 @@ int xtreemfs_cleanup_startRequest::ByteSize() const { total_size += 1 + 1; } + // required bool delete_metadata = 4; + if (has_delete_metadata()) { + total_size += 1 + 1; + } + + // required fixed32 metadata_timeout = 5; + if (has_metadata_timeout()) { + total_size += 1 + 4; + } + } if (!unknown_fields().empty()) { total_size += @@ -7719,6 +7790,12 @@ void xtreemfs_cleanup_startRequest::MergeFrom(const xtreemfs_cleanup_startReques if (from.has_lost_and_found()) { set_lost_and_found(from.lost_and_found()); } + if (from.has_delete_metadata()) { + set_delete_metadata(from.delete_metadata()); + } + if (from.has_metadata_timeout()) { + set_metadata_timeout(from.metadata_timeout()); + } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); } @@ -7736,7 +7813,7 @@ void xtreemfs_cleanup_startRequest::CopyFrom(const xtreemfs_cleanup_startRequest } bool xtreemfs_cleanup_startRequest::IsInitialized() const { - if ((_has_bits_[0] & 0x00000007) != 0x00000007) return false; + if ((_has_bits_[0] & 0x0000001f) != 0x0000001f) return false; return true; } @@ -7746,6 +7823,8 @@ void xtreemfs_cleanup_startRequest::Swap(xtreemfs_cleanup_startRequest* other) { std::swap(remove_zombies_, other->remove_zombies_); std::swap(remove_unavail_volume_, other->remove_unavail_volume_); std::swap(lost_and_found_, other->lost_and_found_); + std::swap(delete_metadata_, other->delete_metadata_); + std::swap(metadata_timeout_, other->metadata_timeout_); std::swap(_has_bits_[0], other->_has_bits_[0]); _unknown_fields_.Swap(&other->_unknown_fields_); std::swap(_cached_size_, other->_cached_size_); diff --git a/cpp/generated/xtreemfs/OSD.pb.h b/cpp/generated/xtreemfs/OSD.pb.h index a0d6a6893..469b9ea55 100644 --- a/cpp/generated/xtreemfs/OSD.pb.h +++ b/cpp/generated/xtreemfs/OSD.pb.h @@ -2330,6 +2330,20 @@ class xtreemfs_cleanup_startRequest : public ::google::protobuf::Message { inline bool lost_and_found() const; inline void set_lost_and_found(bool value); + // required bool delete_metadata = 4; + inline bool has_delete_metadata() const; + inline void clear_delete_metadata(); + static const int kDeleteMetadataFieldNumber = 4; + inline bool delete_metadata() const; + inline void set_delete_metadata(bool value); + + // required fixed32 metadata_timeout = 5; + inline bool has_metadata_timeout() const; + inline void clear_metadata_timeout(); + static const int kMetadataTimeoutFieldNumber = 5; + inline ::google::protobuf::uint32 metadata_timeout() const; + inline void set_metadata_timeout(::google::protobuf::uint32 value); + // @@protoc_insertion_point(class_scope:xtreemfs.pbrpc.xtreemfs_cleanup_startRequest) private: inline void set_has_remove_zombies(); @@ -2338,15 +2352,21 @@ class xtreemfs_cleanup_startRequest : public ::google::protobuf::Message { inline void clear_has_remove_unavail_volume(); inline void set_has_lost_and_found(); inline void clear_has_lost_and_found(); + inline void set_has_delete_metadata(); + inline void clear_has_delete_metadata(); + inline void set_has_metadata_timeout(); + inline void clear_has_metadata_timeout(); ::google::protobuf::UnknownFieldSet _unknown_fields_; bool remove_zombies_; bool remove_unavail_volume_; bool lost_and_found_; + bool delete_metadata_; + ::google::protobuf::uint32 metadata_timeout_; mutable int _cached_size_; - ::google::protobuf::uint32 _has_bits_[(3 + 31) / 32]; + ::google::protobuf::uint32 _has_bits_[(5 + 31) / 32]; friend void protobuf_AddDesc_xtreemfs_2fOSD_2eproto(); friend void protobuf_AssignDesc_xtreemfs_2fOSD_2eproto(); @@ -6665,6 +6685,50 @@ inline void xtreemfs_cleanup_startRequest::set_lost_and_found(bool value) { lost_and_found_ = value; } +// required bool delete_metadata = 4; +inline bool xtreemfs_cleanup_startRequest::has_delete_metadata() const { + return (_has_bits_[0] & 0x00000008u) != 0; +} +inline void xtreemfs_cleanup_startRequest::set_has_delete_metadata() { + _has_bits_[0] |= 0x00000008u; +} +inline void xtreemfs_cleanup_startRequest::clear_has_delete_metadata() { + _has_bits_[0] &= ~0x00000008u; +} +inline void xtreemfs_cleanup_startRequest::clear_delete_metadata() { + delete_metadata_ = false; + clear_has_delete_metadata(); +} +inline bool xtreemfs_cleanup_startRequest::delete_metadata() const { + return delete_metadata_; +} +inline void xtreemfs_cleanup_startRequest::set_delete_metadata(bool value) { + set_has_delete_metadata(); + delete_metadata_ = value; +} + +// required fixed32 metadata_timeout = 5; +inline bool xtreemfs_cleanup_startRequest::has_metadata_timeout() const { + return (_has_bits_[0] & 0x00000010u) != 0; +} +inline void xtreemfs_cleanup_startRequest::set_has_metadata_timeout() { + _has_bits_[0] |= 0x00000010u; +} +inline void xtreemfs_cleanup_startRequest::clear_has_metadata_timeout() { + _has_bits_[0] &= ~0x00000010u; +} +inline void xtreemfs_cleanup_startRequest::clear_metadata_timeout() { + metadata_timeout_ = 0u; + clear_has_metadata_timeout(); +} +inline ::google::protobuf::uint32 xtreemfs_cleanup_startRequest::metadata_timeout() const { + return metadata_timeout_; +} +inline void xtreemfs_cleanup_startRequest::set_metadata_timeout(::google::protobuf::uint32 value) { + set_has_metadata_timeout(); + metadata_timeout_ = value; +} + // ------------------------------------------------------------------- // xtreemfs_cleanup_statusResponse diff --git a/interface/xtreemfs/OSD.proto b/interface/xtreemfs/OSD.proto index 7d2030e57..ada01c6e7 100644 --- a/interface/xtreemfs/OSD.proto +++ b/interface/xtreemfs/OSD.proto @@ -231,6 +231,11 @@ message xtreemfs_cleanup_startRequest { required bool remove_unavail_volume = 2; // If true, objects are not deleted but moved to lost and found. required bool lost_and_found = 3; + // Delete metadata of deleted or abandoned files. + required bool delete_metadata = 4; + // Time in seconds to wait after the last view update before + // deleting metadata. + required fixed32 metadata_timeout = 5; } message xtreemfs_cleanup_statusResponse { diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java index 8462441de..40c0122f2 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java @@ -16372,6 +16372,44 @@ public final class OSD { * */ boolean getLostAndFound(); + + // required bool delete_metadata = 4; + /** + * required bool delete_metadata = 4; + * + *
+     * Delete metadata of deleted or abandoned files.
+     * 
+ */ + boolean hasDeleteMetadata(); + /** + * required bool delete_metadata = 4; + * + *
+     * Delete metadata of deleted or abandoned files.
+     * 
+ */ + boolean getDeleteMetadata(); + + // required fixed32 metadata_timeout = 5; + /** + * required fixed32 metadata_timeout = 5; + * + *
+     * Time in seconds to wait after the last view update before
+     * deleting metadata.
+     * 
+ */ + boolean hasMetadataTimeout(); + /** + * required fixed32 metadata_timeout = 5; + * + *
+     * Time in seconds to wait after the last view update before
+     * deleting metadata.
+     * 
+ */ + int getMetadataTimeout(); } /** * Protobuf type {@code xtreemfs.pbrpc.xtreemfs_cleanup_startRequest} @@ -16439,6 +16477,16 @@ public final class OSD { lostAndFound_ = input.readBool(); break; } + case 32: { + bitField0_ |= 0x00000008; + deleteMetadata_ = input.readBool(); + break; + } + case 45: { + bitField0_ |= 0x00000010; + metadataTimeout_ = input.readFixed32(); + break; + } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { @@ -16553,10 +16601,62 @@ public final class OSD { return lostAndFound_; } + // required bool delete_metadata = 4; + public static final int DELETE_METADATA_FIELD_NUMBER = 4; + private boolean deleteMetadata_; + /** + * required bool delete_metadata = 4; + * + *
+     * Delete metadata of deleted or abandoned files.
+     * 
+ */ + public boolean hasDeleteMetadata() { + return ((bitField0_ & 0x00000008) == 0x00000008); + } + /** + * required bool delete_metadata = 4; + * + *
+     * Delete metadata of deleted or abandoned files.
+     * 
+ */ + public boolean getDeleteMetadata() { + return deleteMetadata_; + } + + // required fixed32 metadata_timeout = 5; + public static final int METADATA_TIMEOUT_FIELD_NUMBER = 5; + private int metadataTimeout_; + /** + * required fixed32 metadata_timeout = 5; + * + *
+     * Time in seconds to wait after the last view update before
+     * deleting metadata.
+     * 
+ */ + public boolean hasMetadataTimeout() { + return ((bitField0_ & 0x00000010) == 0x00000010); + } + /** + * required fixed32 metadata_timeout = 5; + * + *
+     * Time in seconds to wait after the last view update before
+     * deleting metadata.
+     * 
+ */ + public int getMetadataTimeout() { + return metadataTimeout_; + } + private void initFields() { removeZombies_ = false; removeUnavailVolume_ = false; lostAndFound_ = false; + deleteMetadata_ = false; + metadataTimeout_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { @@ -16575,6 +16675,14 @@ public final class OSD { memoizedIsInitialized = 0; return false; } + if (!hasDeleteMetadata()) { + memoizedIsInitialized = 0; + return false; + } + if (!hasMetadataTimeout()) { + memoizedIsInitialized = 0; + return false; + } memoizedIsInitialized = 1; return true; } @@ -16591,6 +16699,12 @@ public final class OSD { if (((bitField0_ & 0x00000004) == 0x00000004)) { output.writeBool(3, lostAndFound_); } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + output.writeBool(4, deleteMetadata_); + } + if (((bitField0_ & 0x00000010) == 0x00000010)) { + output.writeFixed32(5, metadataTimeout_); + } getUnknownFields().writeTo(output); } @@ -16612,6 +16726,14 @@ public final class OSD { size += com.google.protobuf.CodedOutputStream .computeBoolSize(3, lostAndFound_); } + if (((bitField0_ & 0x00000008) == 0x00000008)) { + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(4, deleteMetadata_); + } + if (((bitField0_ & 0x00000010) == 0x00000010)) { + size += com.google.protobuf.CodedOutputStream + .computeFixed32Size(5, metadataTimeout_); + } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; @@ -16734,6 +16856,10 @@ public final class OSD { bitField0_ = (bitField0_ & ~0x00000002); lostAndFound_ = false; bitField0_ = (bitField0_ & ~0x00000004); + deleteMetadata_ = false; + bitField0_ = (bitField0_ & ~0x00000008); + metadataTimeout_ = 0; + bitField0_ = (bitField0_ & ~0x00000010); return this; } @@ -16774,6 +16900,14 @@ public final class OSD { to_bitField0_ |= 0x00000004; } result.lostAndFound_ = lostAndFound_; + if (((from_bitField0_ & 0x00000008) == 0x00000008)) { + to_bitField0_ |= 0x00000008; + } + result.deleteMetadata_ = deleteMetadata_; + if (((from_bitField0_ & 0x00000010) == 0x00000010)) { + to_bitField0_ |= 0x00000010; + } + result.metadataTimeout_ = metadataTimeout_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -16799,6 +16933,12 @@ public final class OSD { if (other.hasLostAndFound()) { setLostAndFound(other.getLostAndFound()); } + if (other.hasDeleteMetadata()) { + setDeleteMetadata(other.getDeleteMetadata()); + } + if (other.hasMetadataTimeout()) { + setMetadataTimeout(other.getMetadataTimeout()); + } this.mergeUnknownFields(other.getUnknownFields()); return this; } @@ -16816,6 +16956,14 @@ public final class OSD { return false; } + if (!hasDeleteMetadata()) { + + return false; + } + if (!hasMetadataTimeout()) { + + return false; + } return true; } @@ -16989,6 +17137,108 @@ public final class OSD { return this; } + // required bool delete_metadata = 4; + private boolean deleteMetadata_ ; + /** + * required bool delete_metadata = 4; + * + *
+       * Delete metadata of deleted or abandoned files.
+       * 
+ */ + public boolean hasDeleteMetadata() { + return ((bitField0_ & 0x00000008) == 0x00000008); + } + /** + * required bool delete_metadata = 4; + * + *
+       * Delete metadata of deleted or abandoned files.
+       * 
+ */ + public boolean getDeleteMetadata() { + return deleteMetadata_; + } + /** + * required bool delete_metadata = 4; + * + *
+       * Delete metadata of deleted or abandoned files.
+       * 
+ */ + public Builder setDeleteMetadata(boolean value) { + bitField0_ |= 0x00000008; + deleteMetadata_ = value; + onChanged(); + return this; + } + /** + * required bool delete_metadata = 4; + * + *
+       * Delete metadata of deleted or abandoned files.
+       * 
+ */ + public Builder clearDeleteMetadata() { + bitField0_ = (bitField0_ & ~0x00000008); + deleteMetadata_ = false; + onChanged(); + return this; + } + + // required fixed32 metadata_timeout = 5; + private int metadataTimeout_ ; + /** + * required fixed32 metadata_timeout = 5; + * + *
+       * Time in seconds to wait after the last view update before
+       * deleting metadata.
+       * 
+ */ + public boolean hasMetadataTimeout() { + return ((bitField0_ & 0x00000010) == 0x00000010); + } + /** + * required fixed32 metadata_timeout = 5; + * + *
+       * Time in seconds to wait after the last view update before
+       * deleting metadata.
+       * 
+ */ + public int getMetadataTimeout() { + return metadataTimeout_; + } + /** + * required fixed32 metadata_timeout = 5; + * + *
+       * Time in seconds to wait after the last view update before
+       * deleting metadata.
+       * 
+ */ + public Builder setMetadataTimeout(int value) { + bitField0_ |= 0x00000010; + metadataTimeout_ = value; + onChanged(); + return this; + } + /** + * required fixed32 metadata_timeout = 5; + * + *
+       * Time in seconds to wait after the last view update before
+       * deleting metadata.
+       * 
+ */ + public Builder clearMetadataTimeout() { + bitField0_ = (bitField0_ & ~0x00000010); + metadataTimeout_ = 0; + onChanged(); + return this; + } + // @@protoc_insertion_point(builder_scope:xtreemfs.pbrpc.xtreemfs_cleanup_startRequest) } @@ -32606,174 +32856,175 @@ public final class OSD { "sion\030\004 \002(\006\"7\n$xtreemfs_cleanup_get_resul" + "tsResponse\022\017\n\007results\030\001 \003(\t\"9\n#xtreemfs_" + "cleanup_is_runningResponse\022\022\n\nis_running" + - "\030\001 \002(\010\"n\n\035xtreemfs_cleanup_startRequest\022" + - "\026\n\016remove_zombies\030\001 \002(\010\022\035\n\025remove_unavai", - "l_volume\030\002 \002(\010\022\026\n\016lost_and_found\030\003 \002(\010\"1" + - "\n\037xtreemfs_cleanup_statusResponse\022\016\n\006sta" + - "tus\030\001 \002(\t\"\226\001\n\031xtreemfs_rwr_fetchRequest\022" + - "9\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.pbr" + - "pc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\ro" + - "bject_number\030\003 \002(\006\022\026\n\016object_version\030\004 \002" + - "(\006\"\232\001\n\035xtreemfs_repair_objectRequest\0229\n\020" + - "file_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc." + - "FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\robje" + - "ct_number\030\003 \002(\006\022\026\n\016object_version\030\004 \002(\006\"", - "N\n\036xtreemfs_rwr_flease_msgRequest\022\027\n\017sen" + - "der_hostname\030\001 \002(\t\022\023\n\013sender_port\030\002 \002(\007\"" + - "\212\001\n%xtreemfs_rwr_set_primary_epochReques" + - "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + - "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n" + - "\rprimary_epoch\030\003 \002(\007\"\207\001\n\032xtreemfs_rwr_st" + - "atusRequest\0229\n\020file_credentials\030\001 \002(\0132\037." + + "\030\001 \002(\010\"\241\001\n\035xtreemfs_cleanup_startRequest" + + "\022\026\n\016remove_zombies\030\001 \002(\010\022\035\n\025remove_unava", + "il_volume\030\002 \002(\010\022\026\n\016lost_and_found\030\003 \002(\010\022" + + "\027\n\017delete_metadata\030\004 \002(\010\022\030\n\020metadata_tim" + + "eout\030\005 \002(\007\"1\n\037xtreemfs_cleanup_statusRes" + + "ponse\022\016\n\006status\030\001 \002(\t\"\226\001\n\031xtreemfs_rwr_f" + + "etchRequest\0229\n\020file_credentials\030\001 \002(\0132\037." + "xtreemfs.pbrpc.FileCredentials\022\017\n\007file_i" + - "d\030\002 \002(\t\022\035\n\025max_local_obj_version\030\003 \002(\006\"\231" + - "\001\n\034xtreemfs_rwr_truncateRequest\0229\n\020file_", - "credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileC" + - "redentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew_file_" + - "size\030\003 \002(\006\022\026\n\016object_version\030\004 \002(\006\"\347\001\n\032x" + - "treemfs_rwr_updateRequest\0229\n\020file_creden" + - "tials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredent" + - "ials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew_file_size\030\003" + - " \002(\006\022\025\n\robject_number\030\007 \002(\006\022\026\n\016object_ve" + - "rsion\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022\'\n\003obj\030\006 \002(\013" + - "2\032.xtreemfs.pbrpc.ObjectData\"o\n!xtreemfs" + - "_internal_get_gmaxRequest\0229\n\020file_creden", - "tials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredent" + - "ials\022\017\n\007file_id\030\002 \002(\t\"t\n&xtreemfs_intern" + - "al_get_file_sizeRequest\0229\n\020file_credenti" + + "d\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016object" + + "_version\030\004 \002(\006\"\232\001\n\035xtreemfs_repair_objec" + + "tRequest\0229\n\020file_credentials\030\001 \002(\0132\037.xtr" + + "eemfs.pbrpc.FileCredentials\022\017\n\007file_id\030\002", + " \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016object_ve" + + "rsion\030\004 \002(\006\"N\n\036xtreemfs_rwr_flease_msgRe" + + "quest\022\027\n\017sender_hostname\030\001 \002(\t\022\023\n\013sender" + + "_port\030\002 \002(\007\"\212\001\n%xtreemfs_rwr_set_primary" + + "_epochRequest\0229\n\020file_credentials\030\001 \002(\0132" + + "\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007file" + + "_id\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007\"\207\001\n\032xtr" + + "eemfs_rwr_statusRequest\0229\n\020file_credenti" + "als\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCredentia" + - "ls\022\017\n\007file_id\030\002 \002(\t\"<\n\'xtreemfs_internal" + - "_get_file_sizeResponse\022\021\n\tfile_size\030\001 \002(" + - "\006\"\222\002\n#xtreemfs_internal_read_localReques" + - "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + - "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n" + - "\robject_number\030\003 \002(\006\022\026\n\016object_version\030\004", - " \002(\006\022\016\n\006offset\030\005 \002(\007\022\016\n\006length\030\006 \002(\007\022\032\n\022" + - "attach_object_list\030\007 \002(\010\0224\n\020required_obj" + - "ects\030\010 \003(\0132\032.xtreemfs.pbrpc.ObjectList\"u" + - "\n\'xtreemfs_internal_get_object_setReques" + - "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + - "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\"=\n" + - ")xtreemfs_internal_get_fileid_listRespon" + - "se\022\020\n\010file_ids\030\001 \003(\t\"t\n\013lockRequest\0229\n\020f" + + "ls\022\017\n\007file_id\030\002 \002(\t\022\035\n\025max_local_obj_ver", + "sion\030\003 \002(\006\"\231\001\n\034xtreemfs_rwr_truncateRequ" + + "est\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs" + + ".pbrpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\022" + + "\025\n\rnew_file_size\030\003 \002(\006\022\026\n\016object_version" + + "\030\004 \002(\006\"\347\001\n\032xtreemfs_rwr_updateRequest\0229\n" + + "\020file_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc" + + ".FileCredentials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rnew" + + "_file_size\030\003 \002(\006\022\025\n\robject_number\030\007 \002(\006\022" + + "\026\n\016object_version\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022" + + "\'\n\003obj\030\006 \002(\0132\032.xtreemfs.pbrpc.ObjectData", + "\"o\n!xtreemfs_internal_get_gmaxRequest\0229\n" + + "\020file_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc" + + ".FileCredentials\022\017\n\007file_id\030\002 \002(\t\"t\n&xtr" + + "eemfs_internal_get_file_sizeRequest\0229\n\020f" + "ile_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.F" + - "ileCredentials\022*\n\014lock_request\030\002 \002(\0132\024.x", - "treemfs.pbrpc.Lock\"j\n\025xtreemfs_pingMesss" + - "age\0227\n\013coordinates\030\001 \002(\0132\".xtreemfs.pbrp" + - "c.VivaldiCoordinates\022\030\n\020request_response" + - "\030\002 \002(\010\"\246\001\n\036xtreemfs_rwr_auth_stateReques" + - "t\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemfs.p" + - "brpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t\0228\n" + - "\005state\030\003 \002(\0132).xtreemfs.pbrpc.Authoritat" + - "iveReplicaState\"\207\001\n\"xtreemfs_rwr_reset_c" + - "ompleteRequest\0229\n\020file_credentials\030\001 \002(\013" + - "2\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007fil", - "e_id\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007\"q\n#xtr" + - "eemfs_xloc_set_invalidateRequest\0229\n\020file" + - "_credentials\030\001 \002(\0132\037.xtreemfs.pbrpc.File" + - "Credentials\022\017\n\007file_id\030\002 \002(\t\"i\n$xtreemfs" + - "_xloc_set_invalidateResponse\022\022\n\nis_prima" + - "ry\030\001 \002(\010\022-\n\006status\030\002 \001(\0132\035.xtreemfs.pbrp" + - "c.ReplicaStatus2\277\036\n\nOSDService\022L\n\004read\022\033" + - ".xtreemfs.pbrpc.readRequest\032\032.xtreemfs.p" + - "brpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010truncate" + - "\022\037.xtreemfs.pbrpc.truncateRequest\032 .xtre", - "emfs.pbrpc.OSDWriteResponse\"\007\215\265\030\013\000\000\000\022T\n\006" + - "unlink\022\".xtreemfs.pbrpc.unlink_osd_Reque" + - "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\014\000" + - "\000\000\022T\n\005write\022\034.xtreemfs.pbrpc.writeReques" + - "t\032 .xtreemfs.pbrpc.OSDWriteResponse\"\013\215\265\030" + - "\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broadcast_gmax\022..xt" + - "reemfs.pbrpc.xtreemfs_broadcast_gmaxRequ" + - "est\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\024" + - "\000\000\000\022j\n\025xtreemfs_check_object\022,.xtreemfs." + - "pbrpc.xtreemfs_check_objectRequest\032\032.xtr", - "eemfs.pbrpc.ObjectData\"\007\215\265\030\025\000\000\000\022{\n\034xtree" + - "mfs_cleanup_get_results\022\034.xtreemfs.pbrpc" + - ".emptyRequest\0324.xtreemfs.pbrpc.xtreemfs_" + - "cleanup_get_resultsResponse\"\007\215\265\030\036\000\000\000\022y\n\033" + - "xtreemfs_cleanup_is_running\022\034.xtreemfs.p" + - "brpc.emptyRequest\0323.xtreemfs.pbrpc.xtree" + - "mfs_cleanup_is_runningResponse\"\007\215\265\030\037\000\000\000\022" + - "o\n\026xtreemfs_cleanup_start\022-.xtreemfs.pbr" + - "pc.xtreemfs_cleanup_startRequest\032\035.xtree" + - "mfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022q\n\027xtre", - "emfs_cleanup_status\022\034.xtreemfs.pbrpc.emp" + - "tyRequest\032/.xtreemfs.pbrpc.xtreemfs_clea" + - "nup_statusResponse\"\007\215\265\030!\000\000\000\022]\n\025xtreemfs_" + - "cleanup_stop\022\034.xtreemfs.pbrpc.emptyReque" + - "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\"\000" + - "\000\000\022g\n\037xtreemfs_cleanup_versions_start\022\034." + - "xtreemfs.pbrpc.emptyRequest\032\035.xtreemfs.p" + - "brpc.emptyResponse\"\007\215\265\030#\000\000\000\022o\n\026xtreemfs_" + - "repair_object\022-.xtreemfs.pbrpc.xtreemfs_" + - "repair_objectRequest\032\035.xtreemfs.pbrpc.em", - "ptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xtreemfs_rwr_fet" + - "ch\022).xtreemfs.pbrpc.xtreemfs_rwr_fetchRe" + - "quest\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030I\000" + - "\000\000\022u\n\027xtreemfs_rwr_flease_msg\022..xtreemfs" + - ".pbrpc.xtreemfs_rwr_flease_msgRequest\032\035." + - "xtreemfs.pbrpc.emptyResponse\"\013\215\265\030G\000\000\000\240\265\030" + - "\001\022^\n\023xtreemfs_rwr_notify\022\037.xtreemfs.pbrp" + - "c.FileCredentials\032\035.xtreemfs.pbrpc.empty" + - "Response\"\007\215\265\030K\000\000\000\022|\n\036xtreemfs_rwr_set_pr" + - "imary_epoch\0225.xtreemfs.pbrpc.xtreemfs_rw", - "r_set_primary_epochRequest\032\032.xtreemfs.pb" + - "rpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023xtreemfs_rwr_" + - "status\022*.xtreemfs.pbrpc.xtreemfs_rwr_sta" + - "tusRequest\032\035.xtreemfs.pbrpc.ReplicaStatu" + - "s\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_truncate\022,.xt" + - "reemfs.pbrpc.xtreemfs_rwr_truncateReques" + - "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030J\000\000" + - "\000\022m\n\023xtreemfs_rwr_update\022*.xtreemfs.pbrp" + - "c.xtreemfs_rwr_updateRequest\032\035.xtreemfs." + - "pbrpc.emptyResponse\"\013\215\265\030H\000\000\000\240\265\030\001\022q\n\027xtre", - "emfs_rwr_auth_state\022..xtreemfs.pbrpc.xtr" + - "eemfs_rwr_auth_stateRequest\032\035.xtreemfs.p" + - "brpc.emptyResponse\"\007\215\265\030O\000\000\000\022y\n\033xtreemfs_" + - "rwr_reset_complete\0222.xtreemfs.pbrpc.xtre" + - "emfs_rwr_reset_completeRequest\032\035.xtreemf" + - "s.pbrpc.emptyResponse\"\007\215\265\030P\000\000\000\022v\n\032xtreem" + - "fs_internal_get_gmax\0221.xtreemfs.pbrpc.xt" + - "reemfs_internal_get_gmaxRequest\032\034.xtreem" + - "fs.pbrpc.InternalGmax\"\007\215\265\030(\000\000\000\022h\n\032xtreem" + - "fs_internal_truncate\022\037.xtreemfs.pbrpc.tr", - "uncateRequest\032 .xtreemfs.pbrpc.OSDWriteR" + - "esponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemfs_internal_g" + - "et_file_size\0226.xtreemfs.pbrpc.xtreemfs_i" + - "nternal_get_file_sizeRequest\0327.xtreemfs." + - "pbrpc.xtreemfs_internal_get_file_sizeRes" + - "ponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_internal_rea" + - "d_local\0223.xtreemfs.pbrpc.xtreemfs_intern" + - "al_read_localRequest\032).xtreemfs.pbrpc.In" + - "ternalReadLocalResponse\"\007\215\265\030+\000\000\000\022\200\001\n xtr" + - "eemfs_internal_get_object_set\0227.xtreemfs", - ".pbrpc.xtreemfs_internal_get_object_setR" + - "equest\032\032.xtreemfs.pbrpc.ObjectList\"\007\215\265\030," + - "\000\000\000\022\205\001\n!xtreemfs_internal_get_fileid_lis" + - "t\022\034.xtreemfs.pbrpc.emptyRequest\0329.xtreem" + - "fs.pbrpc.xtreemfs_internal_get_fileid_li" + - "stResponse\"\007\215\265\030-\000\000\000\022S\n\025xtreemfs_lock_acq" + - "uire\022\033.xtreemfs.pbrpc.lockRequest\032\024.xtre" + - "emfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023xtreemfs_loc" + - "k_check\022\033.xtreemfs.pbrpc.lockRequest\032\024.x" + - "treemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022\\\n\025xtreemfs_", - "lock_release\022\033.xtreemfs.pbrpc.lockReques" + - "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\0304\000\000" + - "\000\022f\n\rxtreemfs_ping\022%.xtreemfs.pbrpc.xtre" + - "emfs_pingMesssage\032%.xtreemfs.pbrpc.xtree" + - "mfs_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n\021xtreemfs_sh" + - "utdown\022\034.xtreemfs.pbrpc.emptyRequest\032\035.x" + - "treemfs.pbrpc.emptyResponse\"\007\215\265\030F\000\000\000\022\222\001\n" + - "\034xtreemfs_xloc_set_invalidate\0223.xtreemfs" + - ".pbrpc.xtreemfs_xloc_set_invalidateReque" + - "st\0324.xtreemfs.pbrpc.xtreemfs_xloc_set_in", - "validateResponse\"\007\215\265\030Q\000\000\000\022}\n#xtreemfs_rw" + - "r_auth_state_invalidated\022..xtreemfs.pbrp" + - "c.xtreemfs_rwr_auth_stateRequest\032\035.xtree" + - "mfs.pbrpc.emptyResponse\"\007\215\265\030R\000\000\000\032\007\225\265\0301u\000" + - "\000B(\n&org.xtreemfs.pbrpc.generatedinterfa" + - "ces" + "ileCredentials\022\017\n\007file_id\030\002 \002(\t\"<\n\'xtree" + + "mfs_internal_get_file_sizeResponse\022\021\n\tfi" + + "le_size\030\001 \002(\006\"\222\002\n#xtreemfs_internal_read" + + "_localRequest\0229\n\020file_credentials\030\001 \002(\0132" + + "\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007file", + "_id\030\002 \002(\t\022\025\n\robject_number\030\003 \002(\006\022\026\n\016obje" + + "ct_version\030\004 \002(\006\022\016\n\006offset\030\005 \002(\007\022\016\n\006leng" + + "th\030\006 \002(\007\022\032\n\022attach_object_list\030\007 \002(\010\0224\n\020" + + "required_objects\030\010 \003(\0132\032.xtreemfs.pbrpc." + + "ObjectList\"u\n\'xtreemfs_internal_get_obje" + + "ct_setRequest\0229\n\020file_credentials\030\001 \002(\0132" + + "\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007file" + + "_id\030\002 \002(\t\"=\n)xtreemfs_internal_get_filei" + + "d_listResponse\022\020\n\010file_ids\030\001 \003(\t\"t\n\013lock" + + "Request\0229\n\020file_credentials\030\001 \002(\0132\037.xtre", + "emfs.pbrpc.FileCredentials\022*\n\014lock_reque" + + "st\030\002 \002(\0132\024.xtreemfs.pbrpc.Lock\"j\n\025xtreem" + + "fs_pingMesssage\0227\n\013coordinates\030\001 \002(\0132\".x" + + "treemfs.pbrpc.VivaldiCoordinates\022\030\n\020requ" + + "est_response\030\002 \002(\010\"\246\001\n\036xtreemfs_rwr_auth" + + "_stateRequest\0229\n\020file_credentials\030\001 \002(\0132" + + "\037.xtreemfs.pbrpc.FileCredentials\022\017\n\007file" + + "_id\030\002 \002(\t\0228\n\005state\030\003 \002(\0132).xtreemfs.pbrp" + + "c.AuthoritativeReplicaState\"\207\001\n\"xtreemfs" + + "_rwr_reset_completeRequest\0229\n\020file_crede", + "ntials\030\001 \002(\0132\037.xtreemfs.pbrpc.FileCreden" + + "tials\022\017\n\007file_id\030\002 \002(\t\022\025\n\rprimary_epoch\030" + + "\003 \002(\007\"q\n#xtreemfs_xloc_set_invalidateReq" + + "uest\0229\n\020file_credentials\030\001 \002(\0132\037.xtreemf" + + "s.pbrpc.FileCredentials\022\017\n\007file_id\030\002 \002(\t" + + "\"i\n$xtreemfs_xloc_set_invalidateResponse" + + "\022\022\n\nis_primary\030\001 \002(\010\022-\n\006status\030\002 \001(\0132\035.x" + + "treemfs.pbrpc.ReplicaStatus2\277\036\n\nOSDServi" + + "ce\022L\n\004read\022\033.xtreemfs.pbrpc.readRequest\032" + + "\032.xtreemfs.pbrpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001", + "\022V\n\010truncate\022\037.xtreemfs.pbrpc.truncateRe" + + "quest\032 .xtreemfs.pbrpc.OSDWriteResponse\"" + + "\007\215\265\030\013\000\000\000\022T\n\006unlink\022\".xtreemfs.pbrpc.unli" + + "nk_osd_Request\032\035.xtreemfs.pbrpc.emptyRes" + + "ponse\"\007\215\265\030\014\000\000\000\022T\n\005write\022\034.xtreemfs.pbrpc" + + ".writeRequest\032 .xtreemfs.pbrpc.OSDWriteR" + + "esponse\"\013\215\265\030\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broadca" + + "st_gmax\022..xtreemfs.pbrpc.xtreemfs_broadc" + + "ast_gmaxRequest\032\035.xtreemfs.pbrpc.emptyRe" + + "sponse\"\007\215\265\030\024\000\000\000\022j\n\025xtreemfs_check_object", + "\022,.xtreemfs.pbrpc.xtreemfs_check_objectR" + + "equest\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030\025" + + "\000\000\000\022{\n\034xtreemfs_cleanup_get_results\022\034.xt" + + "reemfs.pbrpc.emptyRequest\0324.xtreemfs.pbr" + + "pc.xtreemfs_cleanup_get_resultsResponse\"" + + "\007\215\265\030\036\000\000\000\022y\n\033xtreemfs_cleanup_is_running\022" + + "\034.xtreemfs.pbrpc.emptyRequest\0323.xtreemfs" + + ".pbrpc.xtreemfs_cleanup_is_runningRespon" + + "se\"\007\215\265\030\037\000\000\000\022o\n\026xtreemfs_cleanup_start\022-." + + "xtreemfs.pbrpc.xtreemfs_cleanup_startReq", + "uest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030" + + " \000\000\000\022q\n\027xtreemfs_cleanup_status\022\034.xtreem" + + "fs.pbrpc.emptyRequest\032/.xtreemfs.pbrpc.x" + + "treemfs_cleanup_statusResponse\"\007\215\265\030!\000\000\000\022" + + "]\n\025xtreemfs_cleanup_stop\022\034.xtreemfs.pbrp" + + "c.emptyRequest\032\035.xtreemfs.pbrpc.emptyRes" + + "ponse\"\007\215\265\030\"\000\000\000\022g\n\037xtreemfs_cleanup_versi" + + "ons_start\022\034.xtreemfs.pbrpc.emptyRequest\032" + + "\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030#\000\000\000\022" + + "o\n\026xtreemfs_repair_object\022-.xtreemfs.pbr", + "pc.xtreemfs_repair_objectRequest\032\035.xtree" + + "mfs.pbrpc.emptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xtre" + + "emfs_rwr_fetch\022).xtreemfs.pbrpc.xtreemfs" + + "_rwr_fetchRequest\032\032.xtreemfs.pbrpc.Objec" + + "tData\"\007\215\265\030I\000\000\000\022u\n\027xtreemfs_rwr_flease_ms" + + "g\022..xtreemfs.pbrpc.xtreemfs_rwr_flease_m" + + "sgRequest\032\035.xtreemfs.pbrpc.emptyResponse" + + "\"\013\215\265\030G\000\000\000\240\265\030\001\022^\n\023xtreemfs_rwr_notify\022\037.x" + + "treemfs.pbrpc.FileCredentials\032\035.xtreemfs" + + ".pbrpc.emptyResponse\"\007\215\265\030K\000\000\000\022|\n\036xtreemf", + "s_rwr_set_primary_epoch\0225.xtreemfs.pbrpc" + + ".xtreemfs_rwr_set_primary_epochRequest\032\032" + + ".xtreemfs.pbrpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023x" + + "treemfs_rwr_status\022*.xtreemfs.pbrpc.xtre" + + "emfs_rwr_statusRequest\032\035.xtreemfs.pbrpc." + + "ReplicaStatus\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_t" + + "runcate\022,.xtreemfs.pbrpc.xtreemfs_rwr_tr" + + "uncateRequest\032\035.xtreemfs.pbrpc.emptyResp" + + "onse\"\007\215\265\030J\000\000\000\022m\n\023xtreemfs_rwr_update\022*.x" + + "treemfs.pbrpc.xtreemfs_rwr_updateRequest", + "\032\035.xtreemfs.pbrpc.emptyResponse\"\013\215\265\030H\000\000\000" + + "\240\265\030\001\022q\n\027xtreemfs_rwr_auth_state\022..xtreem" + + "fs.pbrpc.xtreemfs_rwr_auth_stateRequest\032" + + "\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030O\000\000\000\022" + + "y\n\033xtreemfs_rwr_reset_complete\0222.xtreemf" + + "s.pbrpc.xtreemfs_rwr_reset_completeReque" + + "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030P\000" + + "\000\000\022v\n\032xtreemfs_internal_get_gmax\0221.xtree" + + "mfs.pbrpc.xtreemfs_internal_get_gmaxRequ" + + "est\032\034.xtreemfs.pbrpc.InternalGmax\"\007\215\265\030(\000", + "\000\000\022h\n\032xtreemfs_internal_truncate\022\037.xtree" + + "mfs.pbrpc.truncateRequest\032 .xtreemfs.pbr" + + "pc.OSDWriteResponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemf" + + "s_internal_get_file_size\0226.xtreemfs.pbrp" + + "c.xtreemfs_internal_get_file_sizeRequest" + + "\0327.xtreemfs.pbrpc.xtreemfs_internal_get_" + + "file_sizeResponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_" + + "internal_read_local\0223.xtreemfs.pbrpc.xtr" + + "eemfs_internal_read_localRequest\032).xtree" + + "mfs.pbrpc.InternalReadLocalResponse\"\007\215\265\030", + "+\000\000\000\022\200\001\n xtreemfs_internal_get_object_se" + + "t\0227.xtreemfs.pbrpc.xtreemfs_internal_get" + + "_object_setRequest\032\032.xtreemfs.pbrpc.Obje" + + "ctList\"\007\215\265\030,\000\000\000\022\205\001\n!xtreemfs_internal_ge" + + "t_fileid_list\022\034.xtreemfs.pbrpc.emptyRequ" + + "est\0329.xtreemfs.pbrpc.xtreemfs_internal_g" + + "et_fileid_listResponse\"\007\215\265\030-\000\000\000\022S\n\025xtree" + + "mfs_lock_acquire\022\033.xtreemfs.pbrpc.lockRe" + + "quest\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023" + + "xtreemfs_lock_check\022\033.xtreemfs.pbrpc.loc", + "kRequest\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022" + + "\\\n\025xtreemfs_lock_release\022\033.xtreemfs.pbrp" + + "c.lockRequest\032\035.xtreemfs.pbrpc.emptyResp" + + "onse\"\007\215\265\0304\000\000\000\022f\n\rxtreemfs_ping\022%.xtreemf" + + "s.pbrpc.xtreemfs_pingMesssage\032%.xtreemfs" + + ".pbrpc.xtreemfs_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n" + + "\021xtreemfs_shutdown\022\034.xtreemfs.pbrpc.empt" + + "yRequest\032\035.xtreemfs.pbrpc.emptyResponse\"" + + "\007\215\265\030F\000\000\000\022\222\001\n\034xtreemfs_xloc_set_invalidat" + + "e\0223.xtreemfs.pbrpc.xtreemfs_xloc_set_inv", + "alidateRequest\0324.xtreemfs.pbrpc.xtreemfs" + + "_xloc_set_invalidateResponse\"\007\215\265\030Q\000\000\000\022}\n" + + "#xtreemfs_rwr_auth_state_invalidated\022..x" + + "treemfs.pbrpc.xtreemfs_rwr_auth_stateReq" + + "uest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030" + + "R\000\000\000\032\007\225\265\0301u\000\000B(\n&org.xtreemfs.pbrpc.gene" + + "ratedinterfaces" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { @@ -32905,7 +33156,7 @@ public final class OSD { internal_static_xtreemfs_pbrpc_xtreemfs_cleanup_startRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_xtreemfs_pbrpc_xtreemfs_cleanup_startRequest_descriptor, - new java.lang.String[] { "RemoveZombies", "RemoveUnavailVolume", "LostAndFound", }); + new java.lang.String[] { "RemoveZombies", "RemoveUnavailVolume", "LostAndFound", "DeleteMetadata", "MetadataTimeout", }); internal_static_xtreemfs_pbrpc_xtreemfs_cleanup_statusResponse_descriptor = getDescriptor().getMessageTypes().get(21); internal_static_xtreemfs_pbrpc_xtreemfs_cleanup_statusResponse_fieldAccessorTable = new diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceClient.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceClient.java index 56e0be812..32f9cd671 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceClient.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceClient.java @@ -1,5 +1,5 @@ -//automatically generated from OSD.proto at Wed Nov 20 11:38:05 CET 2013 -//(c) 2013. See LICENSE file for details. +//automatically generated from OSD.proto at Tue Jul 08 18:23:22 CEST 2014 +//(c) 2014. See LICENSE file for details. package org.xtreemfs.pbrpc.generatedinterfaces; @@ -136,8 +136,8 @@ public class OSDServiceClient { return response; } - public RPCResponse xtreemfs_cleanup_start(InetSocketAddress server, Auth authHeader, UserCredentials userCreds, boolean remove_zombies, boolean remove_unavail_volume, boolean lost_and_found) throws IOException { - final OSD.xtreemfs_cleanup_startRequest msg = OSD.xtreemfs_cleanup_startRequest.newBuilder().setRemoveZombies(remove_zombies).setRemoveUnavailVolume(remove_unavail_volume).setLostAndFound(lost_and_found).build(); + public RPCResponse xtreemfs_cleanup_start(InetSocketAddress server, Auth authHeader, UserCredentials userCreds, boolean remove_zombies, boolean remove_unavail_volume, boolean lost_and_found, boolean delete_metadata, int metadata_timeout) throws IOException { + final OSD.xtreemfs_cleanup_startRequest msg = OSD.xtreemfs_cleanup_startRequest.newBuilder().setRemoveZombies(remove_zombies).setRemoveUnavailVolume(remove_unavail_volume).setLostAndFound(lost_and_found).setDeleteMetadata(delete_metadata).setMetadataTimeout(metadata_timeout).build(); return xtreemfs_cleanup_start(server, authHeader, userCreds,msg); } -- GitLab From 4194db706f3fc711c943fdedd8a8fd2512183ab6 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Wed, 9 Jul 2014 12:33:27 +0200 Subject: [PATCH 048/192] client: Added support of lowercased mulitpliers to parseByteNumber. --- cpp/src/libxtreemfs/helper.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cpp/src/libxtreemfs/helper.cpp b/cpp/src/libxtreemfs/helper.cpp index 7e37ca73a..264b11c5e 100644 --- a/cpp/src/libxtreemfs/helper.cpp +++ b/cpp/src/libxtreemfs/helper.cpp @@ -18,6 +18,7 @@ #include "libxtreemfs/options.h" #include "libxtreemfs/xtreemfs_exception.h" +#include #include "rpc/sync_callback.h" #include "util/logging.h" #include "xtreemfs/GlobalTypes.pb.h" @@ -541,7 +542,7 @@ boost::unordered_set GetNetworks() { } /** - * Parses human-readable byte number to byte count + * Parses human-readable byte number to byte count. Returns -1 if byte_number is not parsable. */ long parseByteNumber(std::string byte_number) { std::string multiplier; @@ -550,6 +551,7 @@ long parseByteNumber(std::string byte_number) { ss << byte_number; ss >> coeff; ss >> multiplier; + boost::to_upper(multiplier); if (multiplier.length() == 0 || multiplier == "B"){ return coeff; -- GitLab From 8874d8059d933ead03810c96704f2f1d6cbb3ff6 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 10 Jul 2014 12:11:01 +0200 Subject: [PATCH 049/192] interface: Added host round robin osp to GlobalTypes. --- cpp/generated/xtreemfs/GlobalTypes.pb.cc | 68 +++++++------- cpp/generated/xtreemfs/GlobalTypes.pb.h | 1 + interface/xtreemfs/GlobalTypes.proto | 3 + .../generatedinterfaces/GlobalTypes.java | 90 +++++++++++-------- 4 files changed, 94 insertions(+), 68 deletions(-) diff --git a/cpp/generated/xtreemfs/GlobalTypes.pb.cc b/cpp/generated/xtreemfs/GlobalTypes.pb.cc index 43eb62aea..ca549f47d 100644 --- a/cpp/generated/xtreemfs/GlobalTypes.pb.cc +++ b/cpp/generated/xtreemfs/GlobalTypes.pb.cc @@ -376,7 +376,7 @@ void protobuf_AddDesc_xtreemfs_2fGlobalTypes_2eproto() { "*|\n\027AccessControlPolicyType\022\036\n\032ACCESS_CO" "NTROL_POLICY_NULL\020\001\022\037\n\033ACCESS_CONTROL_PO" "LICY_POSIX\020\002\022 \n\034ACCESS_CONTROL_POLICY_VO" - "LUME\020\003*\304\003\n\026OSDSelectionPolicyType\022(\n#OSD" + "LUME\020\003*\365\003\n\026OSDSelectionPolicyType\022(\n#OSD" "_SELECTION_POLICY_FILTER_DEFAULT\020\350\007\022%\n O" "SD_SELECTION_POLICY_FILTER_FQDN\020\351\007\022%\n OS" "D_SELECTION_POLICY_FILTER_UUID\020\352\007\022%\n OSD" @@ -385,38 +385,39 @@ void protobuf_AddDesc_xtreemfs_2fGlobalTypes_2eproto() { "LECTION_POLICY_SORT_DCMAP\020\270\027\022#\n\036OSD_SELE" "CTION_POLICY_SORT_FQDN\020\271\027\022%\n OSD_SELECTI" "ON_POLICY_SORT_RANDOM\020\272\027\022&\n!OSD_SELECTIO" - "N_POLICY_SORT_VIVALDI\020\273\027\022#\n\036OSD_SELECTIO" - "N_POLICY_SORT_UUID\020\236\037\022&\n!OSD_SELECTION_P" - "OLICY_SORT_REVERSE\020\237\037*A\n\032ReplicaSelectio" - "nPolicyType\022#\n\037REPLICA_SELECTION_POLICY_" - "SIMPLE\020\001*i\n\nSnapConfig\022\036\n\032SNAP_CONFIG_SN" - "APS_DISABLED\020\000\022\036\n\032SNAP_CONFIG_ACCESS_CUR" - "RENT\020\001\022\033\n\027SNAP_CONFIG_ACCESS_SNAP\020\002*/\n\022S" - "tripingPolicyType\022\031\n\025STRIPING_POLICY_RAI" - "D0\020\000*\270\001\n\005PORTS\022\033\n\025DIR_HTTP_PORT_DEFAULT\020" - "\256\357\001\022\034\n\026DIR_PBRPC_PORT_DEFAULT\020\376\376\001\022\033\n\025MRC" - "_HTTP_PORT_DEFAULT\020\254\357\001\022\034\n\026MRC_PBRPC_PORT" - "_DEFAULT\020\374\376\001\022\033\n\025OSD_HTTP_PORT_DEFAULT\020\260\357" - "\001\022\034\n\026OSD_PBRPC_PORT_DEFAULT\020\200\377\001*+\n\tCONST" - "ANTS\022\036\n\032XCAP_RENEW_INTERVAL_IN_MIN\020\001*\202\003\n" - "\016SYSTEM_V_FCNTL\022\035\n\031SYSTEM_V_FCNTL_H_O_RD" - "ONLY\020\000\022\035\n\031SYSTEM_V_FCNTL_H_O_WRONLY\020\001\022\033\n" - "\027SYSTEM_V_FCNTL_H_O_RDWR\020\002\022\035\n\031SYSTEM_V_F" - "CNTL_H_O_APPEND\020\010\022\035\n\030SYSTEM_V_FCNTL_H_O_" - "CREAT\020\200\002\022\035\n\030SYSTEM_V_FCNTL_H_O_TRUNC\020\200\004\022" - "\034\n\027SYSTEM_V_FCNTL_H_O_EXCL\020\200\010\022\033\n\027SYSTEM_" - "V_FCNTL_H_O_SYNC\020\020\022\036\n\030SYSTEM_V_FCNTL_H_S" - "_IFREG\020\200\200\002\022\036\n\030SYSTEM_V_FCNTL_H_S_IFDIR\020\200" - "\200\001\022\036\n\030SYSTEM_V_FCNTL_H_S_IFLNK\020\200\300\002\022\035\n\030SY" - "STEM_V_FCNTL_H_S_IFIFO\020\200 *\330\001\n\tREPL_FLAG\022" - "\032\n\026REPL_FLAG_FULL_REPLICA\020\001\022\031\n\025REPL_FLAG" - "_IS_COMPLETE\020\002\022\035\n\031REPL_FLAG_STRATEGY_RAN" - "DOM\020\004\022#\n\037REPL_FLAG_STRATEGY_RAREST_FIRST" - "\020\010\022!\n\035REPL_FLAG_STRATEGY_SEQUENTIAL\020\020\022-\n" - ")REPL_FLAG_STRATEGY_SEQUENTIAL_PREFETCHI" - "NG\020 *%\n\010SERVICES\022\007\n\003DIR\020\001\022\007\n\003MRC\020\002\022\007\n\003OS" - "D\020\003B(\n&org.xtreemfs.pbrpc.generatedinter" - "faces", 2925); + "N_POLICY_SORT_VIVALDI\020\273\027\022/\n*OSD_SELECTIO" + "N_POLICY_SORT_HOST_ROUND_ROBIN\020\274\027\022#\n\036OSD" + "_SELECTION_POLICY_SORT_UUID\020\236\037\022&\n!OSD_SE" + "LECTION_POLICY_SORT_REVERSE\020\237\037*A\n\032Replic" + "aSelectionPolicyType\022#\n\037REPLICA_SELECTIO" + "N_POLICY_SIMPLE\020\001*i\n\nSnapConfig\022\036\n\032SNAP_" + "CONFIG_SNAPS_DISABLED\020\000\022\036\n\032SNAP_CONFIG_A" + "CCESS_CURRENT\020\001\022\033\n\027SNAP_CONFIG_ACCESS_SN" + "AP\020\002*/\n\022StripingPolicyType\022\031\n\025STRIPING_P" + "OLICY_RAID0\020\000*\270\001\n\005PORTS\022\033\n\025DIR_HTTP_PORT" + "_DEFAULT\020\256\357\001\022\034\n\026DIR_PBRPC_PORT_DEFAULT\020\376" + "\376\001\022\033\n\025MRC_HTTP_PORT_DEFAULT\020\254\357\001\022\034\n\026MRC_P" + "BRPC_PORT_DEFAULT\020\374\376\001\022\033\n\025OSD_HTTP_PORT_D" + "EFAULT\020\260\357\001\022\034\n\026OSD_PBRPC_PORT_DEFAULT\020\200\377\001" + "*+\n\tCONSTANTS\022\036\n\032XCAP_RENEW_INTERVAL_IN_" + "MIN\020\001*\202\003\n\016SYSTEM_V_FCNTL\022\035\n\031SYSTEM_V_FCN" + "TL_H_O_RDONLY\020\000\022\035\n\031SYSTEM_V_FCNTL_H_O_WR" + "ONLY\020\001\022\033\n\027SYSTEM_V_FCNTL_H_O_RDWR\020\002\022\035\n\031S" + "YSTEM_V_FCNTL_H_O_APPEND\020\010\022\035\n\030SYSTEM_V_F" + "CNTL_H_O_CREAT\020\200\002\022\035\n\030SYSTEM_V_FCNTL_H_O_" + "TRUNC\020\200\004\022\034\n\027SYSTEM_V_FCNTL_H_O_EXCL\020\200\010\022\033" + "\n\027SYSTEM_V_FCNTL_H_O_SYNC\020\020\022\036\n\030SYSTEM_V_" + "FCNTL_H_S_IFREG\020\200\200\002\022\036\n\030SYSTEM_V_FCNTL_H_" + "S_IFDIR\020\200\200\001\022\036\n\030SYSTEM_V_FCNTL_H_S_IFLNK\020" + "\200\300\002\022\035\n\030SYSTEM_V_FCNTL_H_S_IFIFO\020\200 *\330\001\n\tR" + "EPL_FLAG\022\032\n\026REPL_FLAG_FULL_REPLICA\020\001\022\031\n\025" + "REPL_FLAG_IS_COMPLETE\020\002\022\035\n\031REPL_FLAG_STR" + "ATEGY_RANDOM\020\004\022#\n\037REPL_FLAG_STRATEGY_RAR" + "EST_FIRST\020\010\022!\n\035REPL_FLAG_STRATEGY_SEQUEN" + "TIAL\020\020\022-\n)REPL_FLAG_STRATEGY_SEQUENTIAL_" + "PREFETCHING\020 *%\n\010SERVICES\022\007\n\003DIR\020\001\022\007\n\003MR" + "C\020\002\022\007\n\003OSD\020\003B(\n&org.xtreemfs.pbrpc.gener" + "atedinterfaces", 2974); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "xtreemfs/GlobalTypes.proto", &protobuf_RegisterTypes); NewFileSize::default_instance_ = new NewFileSize(); @@ -480,6 +481,7 @@ bool OSDSelectionPolicyType_IsValid(int value) { case 3001: case 3002: case 3003: + case 3004: case 3998: case 3999: return true; diff --git a/cpp/generated/xtreemfs/GlobalTypes.pb.h b/cpp/generated/xtreemfs/GlobalTypes.pb.h index 508721242..b5ac718fa 100644 --- a/cpp/generated/xtreemfs/GlobalTypes.pb.h +++ b/cpp/generated/xtreemfs/GlobalTypes.pb.h @@ -79,6 +79,7 @@ enum OSDSelectionPolicyType { OSD_SELECTION_POLICY_SORT_FQDN = 3001, OSD_SELECTION_POLICY_SORT_RANDOM = 3002, OSD_SELECTION_POLICY_SORT_VIVALDI = 3003, + OSD_SELECTION_POLICY_SORT_HOST_ROUND_ROBIN = 3004, OSD_SELECTION_POLICY_SORT_UUID = 3998, OSD_SELECTION_POLICY_SORT_REVERSE = 3999 }; diff --git a/interface/xtreemfs/GlobalTypes.proto b/interface/xtreemfs/GlobalTypes.proto index 634ae8de6..ce9375302 100644 --- a/interface/xtreemfs/GlobalTypes.proto +++ b/interface/xtreemfs/GlobalTypes.proto @@ -70,6 +70,9 @@ enum OSDSelectionPolicyType { // Sorts the OSDs by proximity of vivalid network // coordinates of the client. OSD_SELECTION_POLICY_SORT_VIVALDI = 3003; + // Sorts the OSDs in a round robin manner for + // multiple OSDs per host. + OSD_SELECTION_POLICY_SORT_HOST_ROUND_ROBIN = 3004; // Sortes the OSDs by their UUID. OSD_SELECTION_POLICY_SORT_UUID = 3998; // Reverse given list. Used only internally by unit tests. diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/GlobalTypes.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/GlobalTypes.java index fcdb8154a..8619ee40e 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/GlobalTypes.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/GlobalTypes.java @@ -214,6 +214,15 @@ public final class GlobalTypes { * */ OSD_SELECTION_POLICY_SORT_VIVALDI(8, 3003), + /** + * OSD_SELECTION_POLICY_SORT_HOST_ROUND_ROBIN = 3004; + * + *
+     * Sorts the OSDs in a round robin manner for
+     * multiple OSDs per host.
+     * 
+ */ + OSD_SELECTION_POLICY_SORT_HOST_ROUND_ROBIN(9, 3004), /** * OSD_SELECTION_POLICY_SORT_UUID = 3998; * @@ -221,7 +230,7 @@ public final class GlobalTypes { * Sortes the OSDs by their UUID. * */ - OSD_SELECTION_POLICY_SORT_UUID(9, 3998), + OSD_SELECTION_POLICY_SORT_UUID(10, 3998), /** * OSD_SELECTION_POLICY_SORT_REVERSE = 3999; * @@ -229,7 +238,7 @@ public final class GlobalTypes { * Reverse given list. Used only internally by unit tests. * */ - OSD_SELECTION_POLICY_SORT_REVERSE(10, 3999), + OSD_SELECTION_POLICY_SORT_REVERSE(11, 3999), ; /** @@ -308,6 +317,15 @@ public final class GlobalTypes { * */ public static final int OSD_SELECTION_POLICY_SORT_VIVALDI_VALUE = 3003; + /** + * OSD_SELECTION_POLICY_SORT_HOST_ROUND_ROBIN = 3004; + * + *
+     * Sorts the OSDs in a round robin manner for
+     * multiple OSDs per host.
+     * 
+ */ + public static final int OSD_SELECTION_POLICY_SORT_HOST_ROUND_ROBIN_VALUE = 3004; /** * OSD_SELECTION_POLICY_SORT_UUID = 3998; * @@ -339,6 +357,7 @@ public final class GlobalTypes { case 3001: return OSD_SELECTION_POLICY_SORT_FQDN; case 3002: return OSD_SELECTION_POLICY_SORT_RANDOM; case 3003: return OSD_SELECTION_POLICY_SORT_VIVALDI; + case 3004: return OSD_SELECTION_POLICY_SORT_HOST_ROUND_ROBIN; case 3998: return OSD_SELECTION_POLICY_SORT_UUID; case 3999: return OSD_SELECTION_POLICY_SORT_REVERSE; default: return null; @@ -10510,7 +10529,7 @@ public final class GlobalTypes { "*|\n\027AccessControlPolicyType\022\036\n\032ACCESS_CO" + "NTROL_POLICY_NULL\020\001\022\037\n\033ACCESS_CONTROL_PO" + "LICY_POSIX\020\002\022 \n\034ACCESS_CONTROL_POLICY_VO" + - "LUME\020\003*\304\003\n\026OSDSelectionPolicyType\022(\n#OSD" + + "LUME\020\003*\365\003\n\026OSDSelectionPolicyType\022(\n#OSD" + "_SELECTION_POLICY_FILTER_DEFAULT\020\350\007\022%\n O" + "SD_SELECTION_POLICY_FILTER_FQDN\020\351\007\022%\n OS" + "D_SELECTION_POLICY_FILTER_UUID\020\352\007\022%\n OSD" + @@ -10519,38 +10538,39 @@ public final class GlobalTypes { "LECTION_POLICY_SORT_DCMAP\020\270\027\022#\n\036OSD_SELE", "CTION_POLICY_SORT_FQDN\020\271\027\022%\n OSD_SELECTI" + "ON_POLICY_SORT_RANDOM\020\272\027\022&\n!OSD_SELECTIO" + - "N_POLICY_SORT_VIVALDI\020\273\027\022#\n\036OSD_SELECTIO" + - "N_POLICY_SORT_UUID\020\236\037\022&\n!OSD_SELECTION_P" + - "OLICY_SORT_REVERSE\020\237\037*A\n\032ReplicaSelectio" + - "nPolicyType\022#\n\037REPLICA_SELECTION_POLICY_" + - "SIMPLE\020\001*i\n\nSnapConfig\022\036\n\032SNAP_CONFIG_SN" + - "APS_DISABLED\020\000\022\036\n\032SNAP_CONFIG_ACCESS_CUR" + - "RENT\020\001\022\033\n\027SNAP_CONFIG_ACCESS_SNAP\020\002*/\n\022S" + - "tripingPolicyType\022\031\n\025STRIPING_POLICY_RAI", - "D0\020\000*\270\001\n\005PORTS\022\033\n\025DIR_HTTP_PORT_DEFAULT\020" + - "\256\357\001\022\034\n\026DIR_PBRPC_PORT_DEFAULT\020\376\376\001\022\033\n\025MRC" + - "_HTTP_PORT_DEFAULT\020\254\357\001\022\034\n\026MRC_PBRPC_PORT" + - "_DEFAULT\020\374\376\001\022\033\n\025OSD_HTTP_PORT_DEFAULT\020\260\357" + - "\001\022\034\n\026OSD_PBRPC_PORT_DEFAULT\020\200\377\001*+\n\tCONST" + - "ANTS\022\036\n\032XCAP_RENEW_INTERVAL_IN_MIN\020\001*\202\003\n" + - "\016SYSTEM_V_FCNTL\022\035\n\031SYSTEM_V_FCNTL_H_O_RD" + - "ONLY\020\000\022\035\n\031SYSTEM_V_FCNTL_H_O_WRONLY\020\001\022\033\n" + - "\027SYSTEM_V_FCNTL_H_O_RDWR\020\002\022\035\n\031SYSTEM_V_F" + - "CNTL_H_O_APPEND\020\010\022\035\n\030SYSTEM_V_FCNTL_H_O_", - "CREAT\020\200\002\022\035\n\030SYSTEM_V_FCNTL_H_O_TRUNC\020\200\004\022" + - "\034\n\027SYSTEM_V_FCNTL_H_O_EXCL\020\200\010\022\033\n\027SYSTEM_" + - "V_FCNTL_H_O_SYNC\020\020\022\036\n\030SYSTEM_V_FCNTL_H_S" + - "_IFREG\020\200\200\002\022\036\n\030SYSTEM_V_FCNTL_H_S_IFDIR\020\200" + - "\200\001\022\036\n\030SYSTEM_V_FCNTL_H_S_IFLNK\020\200\300\002\022\035\n\030SY" + - "STEM_V_FCNTL_H_S_IFIFO\020\200 *\330\001\n\tREPL_FLAG\022" + - "\032\n\026REPL_FLAG_FULL_REPLICA\020\001\022\031\n\025REPL_FLAG" + - "_IS_COMPLETE\020\002\022\035\n\031REPL_FLAG_STRATEGY_RAN" + - "DOM\020\004\022#\n\037REPL_FLAG_STRATEGY_RAREST_FIRST" + - "\020\010\022!\n\035REPL_FLAG_STRATEGY_SEQUENTIAL\020\020\022-\n", - ")REPL_FLAG_STRATEGY_SEQUENTIAL_PREFETCHI" + - "NG\020 *%\n\010SERVICES\022\007\n\003DIR\020\001\022\007\n\003MRC\020\002\022\007\n\003OS" + - "D\020\003B(\n&org.xtreemfs.pbrpc.generatedinter" + - "faces" + "N_POLICY_SORT_VIVALDI\020\273\027\022/\n*OSD_SELECTIO" + + "N_POLICY_SORT_HOST_ROUND_ROBIN\020\274\027\022#\n\036OSD" + + "_SELECTION_POLICY_SORT_UUID\020\236\037\022&\n!OSD_SE" + + "LECTION_POLICY_SORT_REVERSE\020\237\037*A\n\032Replic" + + "aSelectionPolicyType\022#\n\037REPLICA_SELECTIO" + + "N_POLICY_SIMPLE\020\001*i\n\nSnapConfig\022\036\n\032SNAP_" + + "CONFIG_SNAPS_DISABLED\020\000\022\036\n\032SNAP_CONFIG_A" + + "CCESS_CURRENT\020\001\022\033\n\027SNAP_CONFIG_ACCESS_SN", + "AP\020\002*/\n\022StripingPolicyType\022\031\n\025STRIPING_P" + + "OLICY_RAID0\020\000*\270\001\n\005PORTS\022\033\n\025DIR_HTTP_PORT" + + "_DEFAULT\020\256\357\001\022\034\n\026DIR_PBRPC_PORT_DEFAULT\020\376" + + "\376\001\022\033\n\025MRC_HTTP_PORT_DEFAULT\020\254\357\001\022\034\n\026MRC_P" + + "BRPC_PORT_DEFAULT\020\374\376\001\022\033\n\025OSD_HTTP_PORT_D" + + "EFAULT\020\260\357\001\022\034\n\026OSD_PBRPC_PORT_DEFAULT\020\200\377\001" + + "*+\n\tCONSTANTS\022\036\n\032XCAP_RENEW_INTERVAL_IN_" + + "MIN\020\001*\202\003\n\016SYSTEM_V_FCNTL\022\035\n\031SYSTEM_V_FCN" + + "TL_H_O_RDONLY\020\000\022\035\n\031SYSTEM_V_FCNTL_H_O_WR" + + "ONLY\020\001\022\033\n\027SYSTEM_V_FCNTL_H_O_RDWR\020\002\022\035\n\031S", + "YSTEM_V_FCNTL_H_O_APPEND\020\010\022\035\n\030SYSTEM_V_F" + + "CNTL_H_O_CREAT\020\200\002\022\035\n\030SYSTEM_V_FCNTL_H_O_" + + "TRUNC\020\200\004\022\034\n\027SYSTEM_V_FCNTL_H_O_EXCL\020\200\010\022\033" + + "\n\027SYSTEM_V_FCNTL_H_O_SYNC\020\020\022\036\n\030SYSTEM_V_" + + "FCNTL_H_S_IFREG\020\200\200\002\022\036\n\030SYSTEM_V_FCNTL_H_" + + "S_IFDIR\020\200\200\001\022\036\n\030SYSTEM_V_FCNTL_H_S_IFLNK\020" + + "\200\300\002\022\035\n\030SYSTEM_V_FCNTL_H_S_IFIFO\020\200 *\330\001\n\tR" + + "EPL_FLAG\022\032\n\026REPL_FLAG_FULL_REPLICA\020\001\022\031\n\025" + + "REPL_FLAG_IS_COMPLETE\020\002\022\035\n\031REPL_FLAG_STR" + + "ATEGY_RANDOM\020\004\022#\n\037REPL_FLAG_STRATEGY_RAR", + "EST_FIRST\020\010\022!\n\035REPL_FLAG_STRATEGY_SEQUEN" + + "TIAL\020\020\022-\n)REPL_FLAG_STRATEGY_SEQUENTIAL_" + + "PREFETCHING\020 *%\n\010SERVICES\022\007\n\003DIR\020\001\022\007\n\003MR" + + "C\020\002\022\007\n\003OSD\020\003B(\n&org.xtreemfs.pbrpc.gener" + + "atedinterfaces" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { -- GitLab From 79f46c1872f5abd480e1cd05471a7e65b2446cb2 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Tue, 8 Jul 2014 18:35:57 +0200 Subject: [PATCH 050/192] servers, utils: Adapt to previous interface changes and allow to control the removal of metadata at the CleanupThread. --- .../common/benchmark/VolumeManager.java | 14 ++- .../common/libxtreemfs/AdminClient.java | 8 +- .../libxtreemfs/ClientImplementation.java | 8 +- .../mrc/operations/DeleteVolumeOperation.java | 5 +- .../osd/operations/CleanupStartOperation.java | 4 +- .../xtreemfs/osd/stages/DeletionStage.java | 2 +- .../xtreemfs/osd/storage/CleanupThread.java | 98 +++++++++++++------ .../org/xtreemfs/utils/xtfs_cleanup_osd.java | 15 ++- .../org/xtreemfs/test/osd/CleanupTest.java | 2 +- 9 files changed, 106 insertions(+), 50 deletions(-) diff --git a/java/servers/src/org/xtreemfs/common/benchmark/VolumeManager.java b/java/servers/src/org/xtreemfs/common/benchmark/VolumeManager.java index 126080039..6d7080465 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/VolumeManager.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/VolumeManager.java @@ -8,6 +8,15 @@ package org.xtreemfs.common.benchmark; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashMap; +import java.util.HashSet; +import java.util.LinkedList; +import java.util.List; +import java.util.Map; + import org.xtreemfs.common.libxtreemfs.AdminClient; import org.xtreemfs.common.libxtreemfs.Volume; import org.xtreemfs.common.libxtreemfs.exceptions.PosixErrorException; @@ -17,9 +26,6 @@ import org.xtreemfs.pbrpc.generatedinterfaces.DIR; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes; import org.xtreemfs.pbrpc.generatedinterfaces.MRC; -import java.io.IOException; -import java.util.*; - /** * Volume Manager (Singleton). *

@@ -413,7 +419,7 @@ class VolumeManager { for (String osd : uuids) { Logging.logMessage(Logging.LEVEL_INFO, Logging.Category.tool, this, "Starting cleanup of OSD %s", osd); - client.startCleanUp(osd, pwd, true, true, false); + client.startCleanUp(osd, pwd, true, true, false, true, 0); } boolean cleanUpIsRunning = true; diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminClient.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminClient.java index 5a1c8978d..ebeb7a0ff 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminClient.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminClient.java @@ -45,10 +45,14 @@ public interface AdminClient extends Client { * deletes volumes that might be dead * @param restore * restore zombies found on the OSD + * @param removeMetadata + * remove metadata from deleted or abandoned files + * @param metaDataTimeoutS + * time in seconds to wait after the last view update before deleting metadata * @throws IOException */ - public void startCleanUp(String osdUUID, String password, boolean remove, boolean deleteVolumes, - boolean restore) throws IOException; + public void startCleanUp(String osdUUID, String password, boolean remove, boolean deleteVolumes, boolean restore, + boolean removeMetadata, int metaDataTimeoutS) throws IOException; /** * Run a version cleanup (only if file content versioning is enabled). diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/ClientImplementation.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/ClientImplementation.java index eed8046c5..0caa0d019 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/ClientImplementation.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/ClientImplementation.java @@ -821,11 +821,12 @@ public class ClientImplementation implements UUIDResolver, Client, AdminClient { .setAuthPasswd(AuthPassword.newBuilder().setPassword(password).build()).build(); } - public void startCleanUp(String osdUUID, String password, boolean remove, boolean deleteVolumes, - boolean restore) throws IOException { + public void startCleanUp(String osdUUID, String password, boolean remove, boolean deleteVolumes, boolean restore, + boolean removeMetdata, int metaDataTimeoutS) throws IOException { try { xtreemfs_cleanup_startRequest request = xtreemfs_cleanup_startRequest.newBuilder() .setRemoveZombies(remove).setRemoveUnavailVolume(deleteVolumes).setLostAndFound(restore) + .setDeleteMetadata(removeMetdata).setMetadataTimeout(metaDataTimeoutS) .build(); Auth pw = StringToAuth(password); UUIDIterator it = new UUIDIterator(); @@ -838,8 +839,7 @@ public class ClientImplementation implements UUIDResolver, Client, AdminClient { public RPCResponse executeCall(InetSocketAddress server, Auth authHeader, UserCredentials userCreds, xtreemfs_cleanup_startRequest input) throws IOException { - return osdServiceClient.xtreemfs_cleanup_start(server, authHeader, userCreds, - input); + return osdServiceClient.xtreemfs_cleanup_start(server, authHeader, userCreds, input); } }); } catch (Exception e) { diff --git a/java/servers/src/org/xtreemfs/mrc/operations/DeleteVolumeOperation.java b/java/servers/src/org/xtreemfs/mrc/operations/DeleteVolumeOperation.java index 2099fba56..f99a3134e 100644 --- a/java/servers/src/org/xtreemfs/mrc/operations/DeleteVolumeOperation.java +++ b/java/servers/src/org/xtreemfs/mrc/operations/DeleteVolumeOperation.java @@ -68,7 +68,7 @@ public class DeleteVolumeOperation extends MRCOperation { // volume at the DIR which was already deregistered. master.pauseHeartbeatThread(); - // Selete the volume from the local database. + // Delete the volume from the local database. try { master.getVolumeManager().deleteVolume(volume.getId(), master, rq); master.notifyVolumeDeleted(); @@ -76,9 +76,6 @@ public class DeleteVolumeOperation extends MRCOperation { master.resumeHeartbeatThread(); } - master.getDirClient().xtreemfs_service_deregister(null, rq.getDetails().auth, RPCAuthentication.userService, - volume.getId()); - // Deregister the volume from the Directory Service asynchronously. // Ugly workaround for async call. diff --git a/java/servers/src/org/xtreemfs/osd/operations/CleanupStartOperation.java b/java/servers/src/org/xtreemfs/osd/operations/CleanupStartOperation.java index 34ab827a8..2ca825610 100644 --- a/java/servers/src/org/xtreemfs/osd/operations/CleanupStartOperation.java +++ b/java/servers/src/org/xtreemfs/osd/operations/CleanupStartOperation.java @@ -40,8 +40,10 @@ public final class CleanupStartOperation extends OSDOperation { return; } xtreemfs_cleanup_startRequest args = (xtreemfs_cleanup_startRequest) rq.getRequestArgs(); + master.getCleanupThread().cleanupStart(args.getRemoveZombies(), args.getRemoveUnavailVolume(), - args.getLostAndFound(), -1, rq.getRPCRequest().getHeader().getRequestHeader().getUserCreds()); + args.getLostAndFound(), args.getDeleteMetadata(), args.getMetadataTimeout(), + rq.getRPCRequest().getHeader().getRequestHeader().getUserCreds()); rq.sendSuccess(null, null); } diff --git a/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java b/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java index a65b6a3c2..b1462d295 100644 --- a/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java +++ b/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java @@ -189,7 +189,7 @@ public class DeletionStage extends Stage { // otherwise ... else - layout.deleteFile(fileId, true); + layout.deleteFile(fileId, deleteMetadata); yield(); diff --git a/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java b/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java index 7db7a3554..c9631b19a 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java +++ b/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java @@ -7,6 +7,7 @@ package org.xtreemfs.osd.storage; +import java.io.IOException; import java.text.DateFormat; import java.util.Collections; import java.util.Date; @@ -78,6 +79,8 @@ public class CleanupThread extends LifeCycleThread { */ private volatile boolean lostAndFound; + private volatile boolean removeMetadata; + private volatile int metaDataTimeoutS; private final List results; @@ -111,10 +114,12 @@ public class CleanupThread extends LifeCycleThread { this.filesChecked = 0L; this.mrcClient = new MRCServiceClient(master.getRPCClient(), null); this.openDeletes = new AtomicLong(0L); + this.removeMetadata = false; + this.metaDataTimeoutS = 0; } public boolean cleanupStart(boolean removeZombies, boolean removeDeadVolumes, boolean lostAndFound, - int metaDataTimeoutS, UserCredentials uc) { + boolean removeMetaData, int metaDataTimeoutS, UserCredentials uc) { synchronized (this) { if (isRunning) { @@ -123,6 +128,7 @@ public class CleanupThread extends LifeCycleThread { this.removeZombies = removeZombies; this.removeDeadVolumes = removeDeadVolumes; this.lostAndFound = lostAndFound; + this.removeMetadata = removeMetaData; this.metaDataTimeoutS = metaDataTimeoutS; this.uc = uc; isRunning = true; @@ -290,7 +296,7 @@ public class CleanupThread extends LifeCycleThread { for (int i = 0; i < files.size(); i++) { final FILE_STATE fileState = response.getFileStates(i); if (fileState == FILE_STATE.ABANDONED || fileState == FILE_STATE.DELETED) { - // remove abandoned replicas immediately TODO(jdillmann) + // remove abandoned replicas immediately final boolean abandoned = (fileState == FILE_STATE.ABANDONED); // retrieve the fileName @@ -316,7 +322,7 @@ public class CleanupThread extends LifeCycleThread { // deal with the unrestoreable replica if (!isDeleteOnClose && abandoned) { - deleteFile(fName, cowEnabled, false); + deleteFile(fName, cowEnabled); } if (openOFTChecks.decrementAndGet() <= 0) { @@ -396,43 +402,34 @@ public class CleanupThread extends LifeCycleThread { final boolean cowEnabled = false; // FIXME: fetch COW policy for current volume for (final String fileName : zombieFiles.keySet()) { - deleteFile(fileName, cowEnabled, false); + deleteFile(fileName, cowEnabled); } - synchronized (openDeletes) { - while (openDeletes.get() > 0) - openDeletes.wait(); - } results.add(String.format(ZOMBIES_DELETED_FORMAT, zombieFiles.keySet().size(), (volume.isDead() ? "dead" : "existing"), volume.id)); } } // Deal with metaData only directories. - for (Volume volume : zombieFilesPerVolume.keySet()) { - final boolean cowEnabled = false; // FIXME: fetch COW policy for current volume - - if (metaDataTimeoutS >= 0) { - long toTimeMs = TimeSync.getGlobalTime() - (metaDataTimeoutS * 1000); - List metaDataDirs = metaOnlyPerVolume.get(volume); - - for (String fName : metaDataDirs) { - XLocSetVersionState vs = layout.getXLocSetVersionState(fName); + if (removeMetadata) { + for (Volume volume : metaOnlyPerVolume.keySet()) { + final boolean cowEnabled = false; // FIXME: fetch COW policy for current volume - // Delete the directory if the version is too old. - if (!vs.hasModifiedTime() || vs.getModifiedTime() < toTimeMs) { - deleteFile(fName, cowEnabled, true); - } + List metaDataDirs = metaOnlyPerVolume.get(volume); + for (String fileId : metaDataDirs) { + // retrieve the fileName + final String fName = volume.id + ":" + fileId; + deleteFile(fName, cowEnabled); } + // TODO(jdillmann): results.add(...) + // results.add(String.format(ZOMBIES_DELETED_FORMAT, zombieFiles.keySet().size(), + // (volume.isDead() ? "dead" : "existing"), volume.id)); } + } - synchronized (openDeletes) { - while (openDeletes.get() > 0) - openDeletes.wait(); - } - // TODO(jdillmann): results.add(...) - // results.add(String.format(ZOMBIES_DELETED_FORMAT, zombieFiles.keySet().size(), - // (volume.isDead() ? "dead" : "existing"), volume.id)); + synchronized (openDeletes) { + while (openDeletes.get() > 0) + openDeletes.wait(); } synchronized (this) { @@ -456,14 +453,22 @@ public class CleanupThread extends LifeCycleThread { /** * Pass the fileName to the deletion stage, which will eventually delete the file.
* The openDeletes variable will be updated on progress and notified if no more deletes are open.
- * Errors will be stored in the results. + * Errors will be stored in the results.
+ * Metadata will be deleted if the XLocVersionState happened longer then metaDataTimeoutS seconds before. * * @param fileName * @param cowEnabled */ - private void deleteFile(final String fileName, final boolean cowEnabled, final boolean deleteMetadata) { + private void deleteFile(final String fileName, final boolean cowEnabled) { + boolean deleteMetadata; + try { + deleteMetadata = checkXLocVersionStateTimeout(fileName); + } catch (IOException e) { + deleteMetadata = false; + } + openDeletes.incrementAndGet(); - + master.getDeletionStage().deleteObjects(fileName, null, cowEnabled, null, deleteMetadata, new DeletionStage.DeleteObjectsCallback() { @@ -482,6 +487,37 @@ public class CleanupThread extends LifeCycleThread { }); } + /** + * Check if the XLocVersionState's last update happend more then metaDataTimeoutS seconds before. + * + * @param fileName + * @return + * @throws IOException + */ + private boolean checkXLocVersionStateTimeout(final String fileName) throws IOException { + if (!removeMetadata) { + return false; + } + + if (metaDataTimeoutS == 0) { + return true; + } + + if (metaDataTimeoutS > 0) { + long toTimeMs = TimeSync.getGlobalTime() - (metaDataTimeoutS * 1000); + XLocSetVersionState vs = layout.getXLocSetVersionState(fileName); + + // Delete the metaData if the version is too old. + if (!vs.hasModifiedTime() || vs.getModifiedTime() < toTimeMs) { + return true; + } else { + return false; + } + } + + return false; + } + /** * Contains VolumeId and MRC Address. * diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java b/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java index 2cae6ab17..87cb22249 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java @@ -52,6 +52,10 @@ public class xtfs_cleanup_osd { options.put("e", new CliOption(CliOption.OPTIONTYPE.SWITCH, "erase potential zombies", "")); options.put("delete_volumes", new CliOption(CliOption.OPTIONTYPE.SWITCH, "!dangerous! deletes volumes that might be dead", "")); + CliOption oDelMeta = new CliOption(CliOption.OPTIONTYPE.NUMBER, + "delete metadata of zombie files, if the view has not been updated during the last seconds", + ""); + options.put("delete_metadata", oDelMeta); options.put("i", new CliOption(CliOption.OPTIONTYPE.SWITCH, "interactive mode", "")); options.put("stop", new CliOption(CliOption.OPTIONTYPE.SWITCH, "suspends the currently running cleanup process", "")); @@ -83,6 +87,13 @@ public class xtfs_cleanup_osd { boolean waitForFinish = options.get("wait").switchValue; boolean versionCleanup = options.get("v").switchValue; + int metaDataTimeoutS = 0; + boolean removeMetadata = false; + if (options.get("delete_metadata").numValue != null) { + removeMetadata = true; + metaDataTimeoutS = options.get("delete_metadata").numValue.intValue(); + } + String[] dirURLs = (options.get("dir").stringValue != null) ? options.get("dir").stringValue .split(",") : null; @@ -195,7 +206,7 @@ public class xtfs_cleanup_osd { } else if (interactive) { if (client.isRunningCleanUp(osdUUID, password)) client.stopCleanUp(osdUUID, password); - client.startCleanUp(osdUUID, password, remove, deleteVolumes, restore); + client.startCleanUp(osdUUID, password, remove, deleteVolumes, restore, removeMetadata, metaDataTimeoutS); while (client.isRunningCleanUp(osdUUID, password)) { System.out.print(client.getCleanUpState(osdUUID, password) + "\r"); @@ -210,7 +221,7 @@ public class xtfs_cleanup_osd { if (client.isRunningCleanUp(osdUUID, password)) { client.stopCleanUp(osdUUID, password); } - client.startCleanUp(osdUUID, password, remove, deleteVolumes, restore); + client.startCleanUp(osdUUID, password, remove, deleteVolumes, restore, removeMetadata, metaDataTimeoutS); System.out.println("Cleanup is running."); } diff --git a/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java b/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java index c562fcfae..13eaeec9a 100644 --- a/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java @@ -287,7 +287,7 @@ public class CleanupTest extends TestCase { // start the cleanUp Operation r = env.getOSDClient().xtreemfs_cleanup_start(env.getOSDAddress(), passwd, RPCAuthentication.userService, - killZombies, deleteVolumes, restore); + killZombies, deleteVolumes, restore, true, 0); r.get(); r.freeBuffers(); -- GitLab From 8574f6ecb1d6e8dc00d138eb78d562c381a2bf85 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Thu, 10 Jul 2014 13:04:39 +0200 Subject: [PATCH 051/192] docs: Update xtfs_cleanup manpage. --- man/man1/xtfs_cleanup.1 | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/man/man1/xtfs_cleanup.1 b/man/man1/xtfs_cleanup.1 index fa9691d1c..e150b397b 100644 --- a/man/man1/xtfs_cleanup.1 +++ b/man/man1/xtfs_cleanup.1 @@ -7,7 +7,7 @@ xtfs_cleanup \- checks for each file on the OSD, if it has an entry at the Metad .SH DESCRIPTION .I xtfs_cleanup -performs a check of each file on the given Object Storage Device (OSD) whether it is registered at a MRC or not. +performs a check of each file on the given Object Storage Device (OSD) whether it is registered at a MRC or not and removes orphaned OSD metadata. .SH EXAMPLE USAGE .TP @@ -22,7 +22,10 @@ Path to a PKCS#12 credentials file (private key + certificate) to use for SSL au \fB-cpass \fI An optional passphrase to access the credentials file. .TP -\fB-deleteVolumes +\fB-delete_metadata \fI +Include metadata in file deletion and search for orphaned metadata. Metadata will be kept, unless the last view update was more then \fI\fR seconds ago. +.TP +\fB-delete_volumes Deletes volumes that might be dead. .TP \fB-dir \fI @@ -35,7 +38,7 @@ Automatically deletes orphaned files. Shows usage info. .TP \fB-i -Enables the interactive mode. Each time an orphaned file is detected, user interaction will be required. +Enables the interactive mode and displays the cleanup progress. .TP \fB-r Restores all orphaned files to a directory '/lost+found/' in the volume root directory. -- GitLab From fab0e9bbe66f2ff8fd684c48bbacdf8c87b8d5b4 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 10 Jul 2014 13:48:39 +0200 Subject: [PATCH 052/192] server: Added host round robin osd selection policy. --- .../SortHostRoundRobinPolicy.java | 66 +++++++++++++++++++ .../org/xtreemfs/test/mrc/OSDPolicyTest.java | 38 +++++++++++ 2 files changed, 104 insertions(+) create mode 100644 java/servers/src/org/xtreemfs/mrc/osdselection/SortHostRoundRobinPolicy.java diff --git a/java/servers/src/org/xtreemfs/mrc/osdselection/SortHostRoundRobinPolicy.java b/java/servers/src/org/xtreemfs/mrc/osdselection/SortHostRoundRobinPolicy.java new file mode 100644 index 000000000..7c8470e50 --- /dev/null +++ b/java/servers/src/org/xtreemfs/mrc/osdselection/SortHostRoundRobinPolicy.java @@ -0,0 +1,66 @@ +package org.xtreemfs.mrc.osdselection; + +import java.net.InetAddress; +import java.util.HashMap; +import java.util.LinkedList; + +import org.xtreemfs.common.uuids.ServiceUUID; +import org.xtreemfs.common.uuids.UnknownUUIDException; +import org.xtreemfs.foundation.logging.Logging; +import org.xtreemfs.mrc.metadata.XLocList; +import org.xtreemfs.pbrpc.generatedinterfaces.DIR.Service; +import org.xtreemfs.pbrpc.generatedinterfaces.DIR.ServiceSet; +import org.xtreemfs.pbrpc.generatedinterfaces.DIR.ServiceSet.Builder; +import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.OSDSelectionPolicyType; +import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.VivaldiCoordinates; + +public class SortHostRoundRobinPolicy implements OSDSelectionPolicy { + + public static final short POLICY_ID = (short) OSDSelectionPolicyType.OSD_SELECTION_POLICY_SORT_HOST_ROUND_ROBIN + .getNumber(); + @Override + public Builder getOSDs(Builder allOSDs, InetAddress clientIP, VivaldiCoordinates clientCoords, + XLocList currentXLoc, int numOSDs) { + return getOSDs(allOSDs); + } + + @Override + public Builder getOSDs(Builder allOSDs) { + + // Map OSDs to hosts + HashMap> hostToOsdsMap = new HashMap>(); + for (Service osd : allOSDs.getServicesList()) { + + try { + String host = new ServiceUUID(osd.getUuid()).getAddress().getHostString(); + if (hostToOsdsMap.containsKey(host)) { + hostToOsdsMap.get(host).add(osd); + } else { + hostToOsdsMap.put(host, new LinkedList()); + hostToOsdsMap.get(host).add(osd); + } + + } catch (UnknownUUIDException exc) { + Logging.logError(Logging.LEVEL_ERROR, this, exc); + continue; + } + } + + // Create result ServiceSet + Builder result = ServiceSet.newBuilder(); + while (result.getServicesCount() < allOSDs.getServicesCount()) { + for (LinkedList osds : hostToOsdsMap.values()) { + if (!osds.isEmpty()) { + result.addServices(osds.pop()); + } + } + } + + return result; + } + + @Override + public void setAttribute(String key, String value) { + // don't accept any attributes + } +} diff --git a/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java b/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java index bd985bff3..04fa5959d 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java @@ -23,6 +23,7 @@ import org.junit.Test; import org.xtreemfs.common.HeartbeatThread; import org.xtreemfs.common.KeyValuePairs; import org.xtreemfs.common.config.ServiceConfig; +import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.common.uuids.UUIDResolver; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.mrc.osdselection.FilterDefaultPolicy; @@ -32,6 +33,7 @@ import org.xtreemfs.mrc.osdselection.GroupFQDNPolicy; import org.xtreemfs.mrc.osdselection.Inet4AddressMatcher; import org.xtreemfs.mrc.osdselection.SortDCMapPolicy; import org.xtreemfs.mrc.osdselection.SortFQDNPolicy; +import org.xtreemfs.mrc.osdselection.SortHostRoundRobinPolicy; import org.xtreemfs.mrc.osdselection.SortVivaldiPolicy; import org.xtreemfs.osd.vivaldi.VivaldiNode; import org.xtreemfs.pbrpc.generatedinterfaces.DIR.Service; @@ -558,6 +560,42 @@ public class OSDPolicyTest extends TestCase { assertEquals("osd1", sortedList.getServices(4).getUuid()); } + public void testSortHostRoundRobinPolicy() throws Exception { + + SortHostRoundRobinPolicy policy = new SortHostRoundRobinPolicy(); + + ServiceSet.Builder osds = ServiceSet.newBuilder(); + osds.addServices(Service.newBuilder().setType(ServiceType.SERVICE_TYPE_OSD) + .setLastUpdatedS(System.currentTimeMillis() / 1000 - 1000).setName("osd1").setVersion(1) + .setUuid("osd1").setData(getDefaultServiceDataMap())); + osds.addServices(Service.newBuilder().setType(ServiceType.SERVICE_TYPE_OSD) + .setLastUpdatedS(System.currentTimeMillis() / 1000 - 5000).setName("osd2").setVersion(1) + .setUuid("osd2").setData(getDefaultServiceDataMap())); + osds.addServices(Service.newBuilder().setType(ServiceType.SERVICE_TYPE_OSD) + .setLastUpdatedS(System.currentTimeMillis() / 1000 - 1000).setName("osd3").setVersion(1) + .setUuid("osd3").setData(getDefaultServiceDataMap())); + osds.addServices(Service.newBuilder().setType(ServiceType.SERVICE_TYPE_OSD) + .setLastUpdatedS(System.currentTimeMillis() / 1000 - 1000).setName("osd4").setVersion(1) + .setUuid("osd4").setData(getDefaultServiceDataMap())); + osds.addServices(Service.newBuilder().setType(ServiceType.SERVICE_TYPE_OSD) + .setLastUpdatedS(System.currentTimeMillis() / 1000 - 1000).setName("osd5").setVersion(1) + .setUuid("osd5").setData(getDefaultServiceDataMap())); + + UUIDResolver.addTestMapping("osd1", "test.xyz.org", 32640, false); + UUIDResolver.addTestMapping("osd2", "test.xyz.org", 32642, false); + UUIDResolver.addTestMapping("osd3", "test2.xyz.org", 32640, false); + UUIDResolver.addTestMapping("osd4", "test2.xyz.org", 32642, false); + UUIDResolver.addTestMapping("osd5", "test3.xyz.org", 32640, false); + + ServiceSet.Builder sortedList = policy.getOSDs(osds); + + for (int i = 0; i < sortedList.getServicesCount()-1 ; i++) { + String host1 = new ServiceUUID(sortedList.getServices(i).getUuid()).getAddress().getHostName(); + String host2 = new ServiceUUID(sortedList.getServices(i + 1).getUuid()).getAddress().getHostName(); + assertNotSame(host1, host2); + } + } + private static ServiceDataMap getDefaultServiceDataMap() { return ServiceDataMap.newBuilder().build(); } -- GitLab From 9c756c57fcd2a1e8b19a59444cc3ed5fb2a3bdd8 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Thu, 10 Jul 2014 15:02:03 +0200 Subject: [PATCH 053/192] interface: servers: Refresh generated protobuf java interfaces and add default quota parameter (0) to mkvol() calls. --- .../org/xtreemfs/common/clients/Client.java | 4 +- .../pbrpc/generatedinterfaces/DIR.java | 48 +++++++++---------- .../generatedinterfaces/DIRServiceClient.java | 4 +- .../DIRServiceConstants.java | 4 +- .../generatedinterfaces/MRCServiceClient.java | 8 ++-- .../MRCServiceConstants.java | 4 +- .../generatedinterfaces/OSDServiceClient.java | 4 +- .../OSDServiceConstants.java | 4 +- .../xtreemfs/common/clients/ClientTest.java | 2 +- .../common/clients/ReplicatedClientTest.java | 2 +- .../test/org/xtreemfs/test/mrc/MRCTest.java | 42 ++++++++-------- .../org/xtreemfs/test/mrc/SnapshotTest.java | 2 +- 12 files changed, 64 insertions(+), 64 deletions(-) diff --git a/java/servers/src/org/xtreemfs/common/clients/Client.java b/java/servers/src/org/xtreemfs/common/clients/Client.java index 7a3bd1b24..d9d09eaf5 100644 --- a/java/servers/src/org/xtreemfs/common/clients/Client.java +++ b/java/servers/src/org/xtreemfs/common/clients/Client.java @@ -124,7 +124,7 @@ public class Client { MRCServiceClient m = new MRCServiceClient(mdClient, mrcUUID.getAddress()); r2 = m.xtreemfs_mkvol(null, authentication, credentials, accessCtrlPolicy, sp, "", permissions, volumeName, credentials.getUsername(), credentials.getGroups(0), - new LinkedList()); + new LinkedList(), 0); r2.get(); } catch (InterruptedException ex) { @@ -147,7 +147,7 @@ public class Client { MRCServiceClient m = new MRCServiceClient(mdClient, uuid.getAddress()); r = m.xtreemfs_mkvol(uuid.getAddress(), authentication, credentials, accessCtrlPolicy, sp, "", permissions, volumeName, credentials.getUsername(), credentials.getGroups(0), - new LinkedList()); + new LinkedList(), 0); r.get(); } catch (InterruptedException ex) { diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIR.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIR.java index d91409758..a9ae03589 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIR.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIR.java @@ -367,8 +367,8 @@ public final class DIR { * required string match_network = 6; * *

-     * Matching network, unused at the moment.
-     * Must be "*".
+     * Matching network. There has to exist exactly one default address 
+     * accessible from any network for which this is set to "*".
      * 
*/ boolean hasMatchNetwork(); @@ -376,8 +376,8 @@ public final class DIR { * required string match_network = 6; * *
-     * Matching network, unused at the moment.
-     * Must be "*".
+     * Matching network. There has to exist exactly one default address 
+     * accessible from any network for which this is set to "*".
      * 
*/ java.lang.String getMatchNetwork(); @@ -385,8 +385,8 @@ public final class DIR { * required string match_network = 6; * *
-     * Matching network, unused at the moment.
-     * Must be "*".
+     * Matching network. There has to exist exactly one default address 
+     * accessible from any network for which this is set to "*".
      * 
*/ com.google.protobuf.ByteString @@ -795,8 +795,8 @@ public final class DIR { * required string match_network = 6; * *
-     * Matching network, unused at the moment.
-     * Must be "*".
+     * Matching network. There has to exist exactly one default address 
+     * accessible from any network for which this is set to "*".
      * 
*/ public boolean hasMatchNetwork() { @@ -806,8 +806,8 @@ public final class DIR { * required string match_network = 6; * *
-     * Matching network, unused at the moment.
-     * Must be "*".
+     * Matching network. There has to exist exactly one default address 
+     * accessible from any network for which this is set to "*".
      * 
*/ public java.lang.String getMatchNetwork() { @@ -828,8 +828,8 @@ public final class DIR { * required string match_network = 6; * *
-     * Matching network, unused at the moment.
-     * Must be "*".
+     * Matching network. There has to exist exactly one default address 
+     * accessible from any network for which this is set to "*".
      * 
*/ public com.google.protobuf.ByteString @@ -1750,8 +1750,8 @@ public final class DIR { * required string match_network = 6; * *
-       * Matching network, unused at the moment.
-       * Must be "*".
+       * Matching network. There has to exist exactly one default address 
+       * accessible from any network for which this is set to "*".
        * 
*/ public boolean hasMatchNetwork() { @@ -1761,8 +1761,8 @@ public final class DIR { * required string match_network = 6; * *
-       * Matching network, unused at the moment.
-       * Must be "*".
+       * Matching network. There has to exist exactly one default address 
+       * accessible from any network for which this is set to "*".
        * 
*/ public java.lang.String getMatchNetwork() { @@ -1780,8 +1780,8 @@ public final class DIR { * required string match_network = 6; * *
-       * Matching network, unused at the moment.
-       * Must be "*".
+       * Matching network. There has to exist exactly one default address 
+       * accessible from any network for which this is set to "*".
        * 
*/ public com.google.protobuf.ByteString @@ -1801,8 +1801,8 @@ public final class DIR { * required string match_network = 6; * *
-       * Matching network, unused at the moment.
-       * Must be "*".
+       * Matching network. There has to exist exactly one default address 
+       * accessible from any network for which this is set to "*".
        * 
*/ public Builder setMatchNetwork( @@ -1819,8 +1819,8 @@ public final class DIR { * required string match_network = 6; * *
-       * Matching network, unused at the moment.
-       * Must be "*".
+       * Matching network. There has to exist exactly one default address 
+       * accessible from any network for which this is set to "*".
        * 
*/ public Builder clearMatchNetwork() { @@ -1833,8 +1833,8 @@ public final class DIR { * required string match_network = 6; * *
-       * Matching network, unused at the moment.
-       * Must be "*".
+       * Matching network. There has to exist exactly one default address 
+       * accessible from any network for which this is set to "*".
        * 
*/ public Builder setMatchNetworkBytes( diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIRServiceClient.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIRServiceClient.java index 38034a990..912affbb9 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIRServiceClient.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIRServiceClient.java @@ -1,5 +1,5 @@ -//automatically generated from DIR.proto at Mon Nov 11 11:46:59 CET 2013 -//(c) 2013. See LICENSE file for details. +//automatically generated from DIR.proto at Thu Jul 10 14:56:46 CEST 2014 +//(c) 2014. See LICENSE file for details. package org.xtreemfs.pbrpc.generatedinterfaces; diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIRServiceConstants.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIRServiceConstants.java index d67112bad..3834436f6 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIRServiceConstants.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/DIRServiceConstants.java @@ -1,5 +1,5 @@ -//automatically generated from DIR.proto at Mon Nov 11 11:46:59 CET 2013 -//(c) 2013. See LICENSE file for details. +//automatically generated from DIR.proto at Thu Jul 10 14:56:46 CEST 2014 +//(c) 2014. See LICENSE file for details. package org.xtreemfs.pbrpc.generatedinterfaces; diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRCServiceClient.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRCServiceClient.java index 8cf17455a..0029c345c 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRCServiceClient.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRCServiceClient.java @@ -1,5 +1,5 @@ -//automatically generated from MRC.proto at Mon Nov 11 11:46:59 CET 2013 -//(c) 2013. See LICENSE file for details. +//automatically generated from MRC.proto at Thu Jul 10 14:56:46 CEST 2014 +//(c) 2014. See LICENSE file for details. package org.xtreemfs.pbrpc.generatedinterfaces; @@ -370,8 +370,8 @@ public class MRCServiceClient { return response; } - public RPCResponse xtreemfs_mkvol(InetSocketAddress server, Auth authHeader, UserCredentials userCreds, GlobalTypes.AccessControlPolicyType access_control_policy, GlobalTypes.StripingPolicy default_striping_policy, String id, int mode, String name, String owner_group_id, String owner_user_id, List attrs) throws IOException { - final MRC.Volume msg = MRC.Volume.newBuilder().setAccessControlPolicy(access_control_policy).setDefaultStripingPolicy(default_striping_policy).setId(id).setMode(mode).setName(name).setOwnerGroupId(owner_group_id).setOwnerUserId(owner_user_id).addAllAttrs(attrs).build(); + public RPCResponse xtreemfs_mkvol(InetSocketAddress server, Auth authHeader, UserCredentials userCreds, GlobalTypes.AccessControlPolicyType access_control_policy, GlobalTypes.StripingPolicy default_striping_policy, String id, int mode, String name, String owner_group_id, String owner_user_id, List attrs, long quota) throws IOException { + final MRC.Volume msg = MRC.Volume.newBuilder().setAccessControlPolicy(access_control_policy).setDefaultStripingPolicy(default_striping_policy).setId(id).setMode(mode).setName(name).setOwnerGroupId(owner_group_id).setOwnerUserId(owner_user_id).addAllAttrs(attrs).setQuota(quota).build(); return xtreemfs_mkvol(server, authHeader, userCreds,msg); } diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRCServiceConstants.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRCServiceConstants.java index 3a934fd73..36f26ceb8 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRCServiceConstants.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/MRCServiceConstants.java @@ -1,5 +1,5 @@ -//automatically generated from MRC.proto at Mon Nov 11 11:46:59 CET 2013 -//(c) 2013. See LICENSE file for details. +//automatically generated from MRC.proto at Thu Jul 10 14:56:46 CEST 2014 +//(c) 2014. See LICENSE file for details. package org.xtreemfs.pbrpc.generatedinterfaces; diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceClient.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceClient.java index b18154887..866d31097 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceClient.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceClient.java @@ -1,5 +1,5 @@ -//automatically generated from OSD.proto at Mon Nov 11 11:46:59 CET 2013 -//(c) 2013. See LICENSE file for details. +//automatically generated from OSD.proto at Thu Jul 10 14:56:46 CEST 2014 +//(c) 2014. See LICENSE file for details. package org.xtreemfs.pbrpc.generatedinterfaces; diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceConstants.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceConstants.java index f7b732529..e0e95bb7e 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceConstants.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSDServiceConstants.java @@ -1,5 +1,5 @@ -//automatically generated from OSD.proto at Mon Nov 11 11:46:59 CET 2013 -//(c) 2013. See LICENSE file for details. +//automatically generated from OSD.proto at Thu Jul 10 14:56:46 CEST 2014 +//(c) 2014. See LICENSE file for details. package org.xtreemfs.pbrpc.generatedinterfaces; diff --git a/java/servers/test/org/xtreemfs/common/clients/ClientTest.java b/java/servers/test/org/xtreemfs/common/clients/ClientTest.java index 5939b8d04..d7784fbb8 100644 --- a/java/servers/test/org/xtreemfs/common/clients/ClientTest.java +++ b/java/servers/test/org/xtreemfs/common/clients/ClientTest.java @@ -61,7 +61,7 @@ public class ClientTest { RPCResponse r = testEnv.getMrcClient().xtreemfs_mkvol(testEnv.getMRCAddress(), RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, SetupUtils.getStripingPolicy(64, 1), "", 0777, - VOLUME_NAME, "test", "test", new LinkedList()); + VOLUME_NAME, "test", "test", new LinkedList(), 0); r.get(); r.freeBuffers(); } diff --git a/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java b/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java index 504ff7ab8..4f6d81ff5 100644 --- a/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java +++ b/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java @@ -65,7 +65,7 @@ public class ReplicatedClientTest { uc = UserCredentials.newBuilder().setUsername("test").addGroups("test").build(); RPCResponse r = testEnv.getMrcClient().xtreemfs_mkvol(testEnv.getMRCAddress(), RPCAuthentication.authNone, uc, - AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, SetupUtils.getStripingPolicy(1, 64), "", 0777, VOLUME_NAME, "test", "test", new LinkedList()); + AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, SetupUtils.getStripingPolicy(1, 64), "", 0777, VOLUME_NAME, "test", "test", new LinkedList(), 0); r.get(); r.freeBuffers(); } diff --git a/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java b/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java index f2fd8028f..0b36ad600 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java @@ -111,7 +111,7 @@ public class MRCTest { String name = "vol-" + j; invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, getDefaultStripingPolicy(), "", 0775, - name, "", "", getKVList("i", String.valueOf(i)))); + name, "", "", getKVList("i", String.valueOf(i)), 0)); } // Check number of created volumes @@ -124,7 +124,7 @@ public class MRCTest { try { invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, getDefaultStripingPolicy(), "", 0775, - name, "", "", getKVList("i", String.valueOf(i)))); + name, "", "", getKVList("i", String.valueOf(i)), 0)); fail(); } catch (Exception ex) { vols = invokeSync(client.xtreemfs_lsvol(mrcAddress, RPCAuthentication.authNone, uc)); @@ -159,7 +159,7 @@ public class MRCTest { invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, getDefaultStripingPolicy(), "", 0775, - name, "", "", getKVList("bla", "blub"))); + name, "", "", getKVList("bla", "blub"), 0)); volNames.add(name); } @@ -207,7 +207,7 @@ public class MRCTest { // create and delete a volume invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, getDefaultStripingPolicy(), "", 0775, - volumeName, "", "", getKVList("bla", "blub"))); + volumeName, "", "", getKVList("bla", "blub"), 0)); Volumes localVols = invokeSync(client.xtreemfs_lsvol(mrcAddress, RPCAuthentication.authNone, uc)); assertEquals(1, localVols.getVolumesCount()); @@ -222,7 +222,7 @@ public class MRCTest { // create a volume invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, getDefaultStripingPolicy(), "", 0775, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); // create some files and directories invokeSync(client.mkdir(mrcAddress, RPCAuthentication.authNone, uc, volumeName, "myDir", 0775)); @@ -305,7 +305,7 @@ public class MRCTest { invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, getDefaultStripingPolicy(), "", 0, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); invokeSync(client.readdir(mrcAddress, RPCAuthentication.authNone, uc, volumeName, "/", -1, 1000, false, 0)); } @@ -320,7 +320,7 @@ public class MRCTest { invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, getDefaultStripingPolicy(), "", 0, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); // create a file and add some user attributes invokeSync(client.open(mrcAddress, RPCAuthentication.authNone, uc, volumeName, "test.txt", @@ -442,7 +442,7 @@ public class MRCTest { invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, getDefaultStripingPolicy(), "", 0, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); // create a file and add some user attributes invokeSync(client.open(mrcAddress, RPCAuthentication.authNone, uc, volumeName, "test.txt", @@ -471,7 +471,7 @@ public class MRCTest { invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, getDefaultStripingPolicy(), "", 0, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); invokeSync(client.open(mrcAddress, RPCAuthentication.authNone, uc, volumeName, "test.txt", FileAccessManager.O_CREAT, 0, 0, getDefaultCoordinates())); @@ -495,7 +495,7 @@ public class MRCTest { invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, getDefaultStripingPolicy(), "", 0, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); invokeSync(client.open(mrcAddress, RPCAuthentication.authNone, uc, volumeName, "test1.txt", FileAccessManager.O_CREAT, 0, 0, getDefaultCoordinates())); @@ -577,7 +577,7 @@ public class MRCTest { invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, getDefaultStripingPolicy(), "", 0775, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); invokeSync(client.open(mrcAddress, RPCAuthentication.authNone, uc, volumeName, "test.txt", FileAccessManager.O_CREAT, 0774, 0, getDefaultCoordinates())); @@ -670,7 +670,7 @@ public class MRCTest { invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, getDefaultStripingPolicy(), "", 0775, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); final String uid2 = "bla"; final List gids2 = createGIDs("groupY"); @@ -697,7 +697,7 @@ public class MRCTest { invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, getDefaultStripingPolicy(), "", 0, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); // create some files and directories invokeSync(client.open(mrcAddress, RPCAuthentication.authNone, uc, volumeName, "test.txt", @@ -821,7 +821,7 @@ public class MRCTest { // create a volume invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc1, AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, getDefaultStripingPolicy(), "", 0, - noACVolumeName, "", "", getKVList())); + noACVolumeName, "", "", getKVList(), 0)); // test chown invokeSync(client.open(mrcAddress, RPCAuthentication.authNone, uc1, noACVolumeName, "chownTestFile", @@ -856,7 +856,7 @@ public class MRCTest { // create a volume invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc1, AccessControlPolicyType.ACCESS_CONTROL_POLICY_VOLUME, getDefaultStripingPolicy(), "", 0700, - volACVolumeName, "", "", getKVList())); + volACVolumeName, "", "", getKVList(), 0)); // create a new directory: should succeed for user1, fail // for user2 @@ -876,7 +876,7 @@ public class MRCTest { // create a volume invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc1, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, getDefaultStripingPolicy(), "", 0775, - posixVolName, "", "", getKVList())); + posixVolName, "", "", getKVList(), 0)); invokeSync(client.setattr(mrcAddress, RPCAuthentication.authNone, uc1, posixVolName, "", createChmodStat(0700), Setattrs.SETATTR_MODE.getNumber())); @@ -996,7 +996,7 @@ public class MRCTest { invokeSync(client.xtreemfs_rmvol(mrcAddress, RPCAuthentication.authNone, uc1, posixVolName)); invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc1, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, getDefaultStripingPolicy(), "", 0775, - posixVolName, "", "", getKVList())); + posixVolName, "", "", getKVList(), 0)); invokeSync(client.open(mrcAddress, RPCAuthentication.authNone, uc1, posixVolName, "someFile.txt", FileAccessManager.O_CREAT, 224, 0, getDefaultCoordinates())); @@ -1065,7 +1065,7 @@ public class MRCTest { // create a new file in a new volume invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, getDefaultStripingPolicy(), "", 0, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); invokeSync(client.open(mrcAddress, RPCAuthentication.authNone, uc, volumeName, fileName, FileAccessManager.O_CREAT, 0, 0, getDefaultCoordinates())); @@ -1168,7 +1168,7 @@ public class MRCTest { // create a new file in a directory in a new volume invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, - AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, sp1, "", 0, volumeName, "", "", getKVList())); + AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, sp1, "", 0, volumeName, "", "", getKVList(), 0)); invokeSync(client.mkdir(mrcAddress, RPCAuthentication.authNone, uc, volumeName, dirName, 0)); invokeSync(client.open(mrcAddress, RPCAuthentication.authNone, uc, volumeName, fileName1, @@ -1233,7 +1233,7 @@ public class MRCTest { // create a new file in a directory in a new volume invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, - AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, sp, "", 0, volumeName, "", "", getKVList())); + AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, sp, "", 0, volumeName, "", "", getKVList(), 0)); invokeSync(client.setxattr(mrcAddress, RPCAuthentication.authNone, uc, volumeName, "", "xtreemfs.default_rp", "", ByteString.copyFrom(Converter.replicationPolicyToJSONString(rp).getBytes()), 0)); @@ -1273,7 +1273,7 @@ public class MRCTest { // create a volume invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, getDefaultStripingPolicy(), "", 0775, - volumeName, "", "", getKVList())); + volumeName, "", "", getKVList(), 0)); // auto-assign three (two more) replicas to each newly-created file ReplicationPolicy rp = new ReplicationPolicy() { diff --git a/java/servers/test/org/xtreemfs/test/mrc/SnapshotTest.java b/java/servers/test/org/xtreemfs/test/mrc/SnapshotTest.java index 53495c5fe..5725f21b7 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/SnapshotTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/SnapshotTest.java @@ -143,7 +143,7 @@ public class SnapshotTest extends TestCase { // create a volume invokeSync(client.xtreemfs_mkvol(mrcAddress, RPCAuthentication.authNone, uc, AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, getDefaultStripingPolicy(), "", 0775, - volumeName, "", "", new LinkedList())); + volumeName, "", "", new LinkedList(), 0)); // enable snapshots on the volume invokeSync(client.setxattr(mrcAddress, RPCAuthentication.authNone, uc, volumeName, "", -- GitLab From 52d927811b91cbca3d5ba47d659b3d276f25b0ef Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Thu, 10 Jul 2014 17:42:33 +0200 Subject: [PATCH 054/192] servers: docs: Set default metadata timeout in xtfs_cleanup to 600 and document its usage. --- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 843769 -> 844136 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 8 ++++++++ .../xtreemfs/osd/storage/CleanupThread.java | 2 +- .../org/xtreemfs/utils/xtfs_cleanup_osd.java | 16 +++++++++------- man/man1/xtfs_cleanup.1 | 9 ++++++--- 5 files changed, 24 insertions(+), 11 deletions(-) diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index ff6bda8cb762f3adcdac7e097339da99b12490ef..fa073b70cdb9221ec506203be1b9cdd7cb6c501f 100644 GIT binary patch delta 10654 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 wpzhHz{07Q8*00000 delta 10273 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 ShdlCJ29_pVs;aL3Zd?H8z>2E? diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index c41699e21..9a5d2130f 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -2025,6 +2025,14 @@ The process will be started and can be stopped by setting the option \texttt{-stop}. To watch the cleanup progress use option \texttt{-i} for the interactive mode. For further information see \texttt{man xtfs\_cleanup}. +The cleanup tool is also responsible for the deletion of orhpaned metadata. Metadata can +not be deleted instantly because some information (particularly the XLocSets' version) is +required to preserve consistency, even if the file has been deleted or a replica has been +removed. Metadata must be retained until it is assured, that every client has a consistent +view on the set of participating replicas. By default metadata is deleted after 600 seconds, +which is equal to the time span a capability is valid. + + \subsection{Setting the OSD Status} The OSD's status field is shown in the service status page as \texttt{static.status}. The status can be online (new files be assigned to it), locked (new files will not be assigned to it) and removed (replicas assigned to this OSD will be replaced). Status online is the regular status for all services, even if they are temporarily offline. Status removed marks an OSD as permanently failed and the scrubber will removed replicas and files from these OSDs. Status locked will effectively set an OSD to ``read-only`` since no new files are placed on it. diff --git a/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java b/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java index c9631b19a..2732c4076 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java +++ b/java/servers/src/org/xtreemfs/osd/storage/CleanupThread.java @@ -488,7 +488,7 @@ public class CleanupThread extends LifeCycleThread { } /** - * Check if the XLocVersionState's last update happend more then metaDataTimeoutS seconds before. + * Check if the XLocVersionState's last update happened more then metaDataTimeoutS seconds before. * * @param fileName * @return diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java b/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java index 87cb22249..f3487c087 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java @@ -21,6 +21,7 @@ import org.xtreemfs.foundation.pbrpc.Schemes; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; import org.xtreemfs.foundation.util.CLIParser; import org.xtreemfs.foundation.util.CLIParser.CliOption; +import org.xtreemfs.foundation.util.CLIParser.CliOption.OPTIONTYPE; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.PORTS; /** @@ -53,9 +54,11 @@ public class xtfs_cleanup_osd { options.put("delete_volumes", new CliOption(CliOption.OPTIONTYPE.SWITCH, "!dangerous! deletes volumes that might be dead", "")); CliOption oDelMeta = new CliOption(CliOption.OPTIONTYPE.NUMBER, - "delete metadata of zombie files, if the view has not been updated during the last seconds", + "delete metadata of zombie files, if the XLocSet has not been updated during the last seconds (default: 600)", ""); - options.put("delete_metadata", oDelMeta); + options.put("metadata_delete", oDelMeta); + options.put("metadata_keep", new CliOption(OPTIONTYPE.SWITCH, + "keep metadata (by default metadata is deleted after seconds)", "")); options.put("i", new CliOption(CliOption.OPTIONTYPE.SWITCH, "interactive mode", "")); options.put("stop", new CliOption(CliOption.OPTIONTYPE.SWITCH, "suspends the currently running cleanup process", "")); @@ -87,11 +90,10 @@ public class xtfs_cleanup_osd { boolean waitForFinish = options.get("wait").switchValue; boolean versionCleanup = options.get("v").switchValue; - int metaDataTimeoutS = 0; - boolean removeMetadata = false; - if (options.get("delete_metadata").numValue != null) { - removeMetadata = true; - metaDataTimeoutS = options.get("delete_metadata").numValue.intValue(); + boolean removeMetadata = !options.get("metadata_keep").switchValue; + int metaDataTimeoutS = 600; + if (options.get("metadata_delete").numValue != null) { + metaDataTimeoutS = options.get("metadata_delete").numValue.intValue(); } String[] dirURLs = (options.get("dir").stringValue != null) ? options.get("dir").stringValue diff --git a/man/man1/xtfs_cleanup.1 b/man/man1/xtfs_cleanup.1 index e150b397b..df67e4647 100644 --- a/man/man1/xtfs_cleanup.1 +++ b/man/man1/xtfs_cleanup.1 @@ -22,9 +22,6 @@ Path to a PKCS#12 credentials file (private key + certificate) to use for SSL au \fB-cpass \fI An optional passphrase to access the credentials file. .TP -\fB-delete_metadata \fI -Include metadata in file deletion and search for orphaned metadata. Metadata will be kept, unless the last view update was more then \fI\fR seconds ago. -.TP \fB-delete_volumes Deletes volumes that might be dead. .TP @@ -40,6 +37,12 @@ Shows usage info. \fB-i Enables the interactive mode and displays the cleanup progress. .TP +\fB-metadata_delete \fI +Metadata will only be deleted, if the last XLocSet update was more than \fI\fR seconds ago. The default \fI\fR is equal to the default capability timeout: 600. If \fI\fR is 0, metadata will be deleted instantly. +.TP +\fB-metadata_keep +Keep metadata when files are deleted and don't search for orphaned metadata. By default metadata will be deleted after \fI\fR seconds. +.TP \fB-r Restores all orphaned files to a directory '/lost+found/' in the volume root directory. .TP -- GitLab From 6173e74ec892afc2ef381aeb75607425a7dd9477 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 15 Jul 2014 11:03:13 +0200 Subject: [PATCH 055/192] docs: Added description of host round robin osp to xtreemfs userguide. --- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 839521 -> 835529 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 172 ++++---------------------- 2 files changed, 24 insertions(+), 148 deletions(-) diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index 983e8c8e4aedbe1663771df370a0408aa1c882da..cfea43a0118286af26f169f63f919a131cf2c32c 100644 GIT binary patch delta 111184 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%0D6W!2^@ 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 A`Tzg` delta 115054 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 WrZ3pfBgbuKU}VIls_N?R#svUd-Z0t# diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index 8ad9bbec8..57b5090be 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -32,7 +32,7 @@ \begin{flushleft} \sffamily \begin{LARGE}The XtreemFS Installation and User Guide\end{LARGE} -Version 1.5.x +Version 1.4.x \end{flushleft} @@ -41,33 +41,12 @@ Version 1.5.x XtreemFS is available from the \href{http://www.XtreemFS.org}{XtreemFS website (www.XtreemFS.org)}. -This document is \copyright{} 2009-\the\year{} by Bj\"orn Kolbeck, Jan Stender, Michael Berlin, Christoph Kleineweber, Matthias Noack, Paul Seiferth, Felix Langner, NEC HPC Europe, Felix Hupfeld, Juan Gonzales, Patrick Sch\"afer, Lukas Kairies, Jens V. Fischer. All rights reserved. +This document is \copyright{} 2009-\the\year{} by Bj\"orn Kolbeck, Jan Stender, Michael Berlin, Matthias Noack, Paul Seiferth, Felix Langner, NEC HPC Europe, Felix Hupfeld, Juan Gonzales, Patrick Sch\"afer. All rights reserved. \setcounter{tocdepth}{2} \tableofcontents \chapter*{Changes} -Summary of important changes in release 1.5: - -\begin{itemize} - \item \textbf{Improved Hadoop support}\\ - Added support for multiple volumes and read and write buffer to speed up performance. See section~\ref{sec:hadoop_integration}. - \item \textbf{SSDs support}\\ - Support for multiple OSD storage threads to increase parallelism. See section~\ref{sec:ssds}. - \item \textbf{Replication Status Page}\\ - Status webpage as part of the DIR webinterface for replicated files to show current primary and backup replicas. - \item \textbf{Multi-Homing Support}\\ - XtreemFS can now be made available for multiple networks and clients will pick the correct address automatically. See option \hyperref[option:multihoming.enabled]{multihoming.enabled}. - \item \textbf{Multiple OSDs per Machine}\\ - Support for multiple OSDs per machine (e.g. one for each disk) through the xtreemfs-osd-farm init.d script. See section~\ref{sec:xtreemfs-osd-farm}. - \item \textbf{Improved Checksum Support}\\ - xtfs\_scrub now repairs replicas with an invalid checksum automatically. - \item \textbf{Major bugfixes for Read/Write and Read-Only Replication}\\ - There were problems with the fail-over of replicas which were fixed. - \item \textbf{Minor bugfixes and improvements across all components.}\\ - See the CHANGELOG for more details and references to the issue numbers. -\end{itemize} - Summary of important changes in release 1.4: \begin{itemize} @@ -571,7 +550,6 @@ $> cp SERVICE.p12 /etc/xos/xtreemfs/truststore/certs \subsection{Running XtreemFS on SSDs} -\label{sec:ssds} SSDs are replacing spinning hard disk drives increasingly. This trend is also relevant for the area of distributed file systems. As XtreemFS uses an underlying local file system for all services, XtreemFS can be used with SSDs without any modifications. @@ -1396,7 +1374,6 @@ To run init.d scripts, root permissions are required. Note that MRC and OSD will % The servers will be executed under the user ID of the user who called the xctl script. \subsection{Running multiple OSDs per Machine} -\label{sec:xtreemfs-osd-farm} Running more than one OSD service per host might be useful in various situations. Use cases for this might be machines with more than one disk as an alternative to a local RAID or testing purposes. We offer an extended \texttt{init.d} script, named \texttt{xtreemfs-osd-farm}, to start or stop a set of OSDs on one host by a single script. @@ -1830,7 +1807,7 @@ If one of these limits is reached, subsequent write() requests will block. \label{sec:object_cache} The client supports a per-file write-back object cache with LRU policy. This cache is enabled with \texttt{----object-cache-size=} where N is the maximum number of objects it may cache. The cache is currently mutually exclusive with async. writes. -The cache is still experimental and therefore disabled by default. +We recommend enabling the cache for most workloads. \section{Troubleshooting} @@ -2405,8 +2382,6 @@ A replication policy can either be specified for an existing file or as a defaul For details on how to define replication policies, please refer to Section \ref{sec:xtfsutil_files} and \ref{sec:xtfsutil_volumes}. -The DIR status page has a subpage which shows the replication status for open files. It's accessible at \url{http://localhost:30638/replica_status}. Replace \texttt{localhost} with the hostname of the DIR service if you're not on the same machine. - \section{Read-Only File Replication} \label{sec:ronly_replication} The read-only is designed for use-cases where you have many replicas that are not modified. Since files cannot be changed, the replicas don't need to be coordinated. Therefore, this replication mode can handle as many replicas as you like, e.g. to create copies of files close to consumers. One use-case for the read-only replication is to build a content-distribution network (CDN) like infrastructure. @@ -2666,6 +2641,8 @@ This policy uses domain names of clients and OSDs to determine the distance betw \item \textbf{Vivaldi network coordinates based sorting (policy ID 3003)}\\ Sorts the list of OSDs in ascending order of their distance to the client, according to the vivaldi coordinates of the client and OSDs. This policy requires to enable vivaldi in the client (see section~\ref{sec:vivaldi} for details). + \item \textbf{Host round robin based sorting (policy ID 3004)}\\ + Sorts the list of OSDs in a round robin manner regarding the host name of the OSDs. If multiple OSDs run per host, this policy guarantees a distribution over multiple hosts. \end{itemize} \subsection{OSD Selection based on Custom Attributes} @@ -2807,11 +2784,11 @@ Therefore it replaces the NameNode and the DataNodes provided by HDFS in a commo \centering \includegraphics[width=0.80\linewidth]{images/cluster_setup.png} % screenshot_status.png: 783x444 pixel, 72dpi, 28.82x29.88 cm, bb=0 0 783 444 - \caption{Hadoop 1.x cluster setup recommendation} + \caption{Hadoop cluster setup recommendation} \label{fig:cluster_setup} \end{figure} -The three master services JobTracker (Hadoop 1.x) or Resourcemanager (Hadoop 2.x), DIR and MRC are required in a Hadoop configuration. They can run alone or in arbitrary combinations on the same machine. Hadoop can be used with an arbitrary number of Slaves. It is recommended to run a TaskTracker (Hadoop 1.x) or NodeManager (Hadoop 2.x) together with an OSD on each Slave machine to improve performance, but it is not mandatory. +The three master services JobTracker, DIR and MRC are required in a Hadoop configuration. They can run alone or in arbitrary combinations on the same machine. Hadoop can be used with an arbitrary number of Slaves. It is recommended to run a TaskTracker together with an OSD on each Slave machine to improve performance, but it is not mandatory. \section{Quick Start} \label{sec:hadoop_quickstart} @@ -2821,7 +2798,7 @@ This section will help you to set up a simple Hadoop configuration with all nece \textbf{Required software:} \begin{itemize} \item XtreemFS (\href{http://code.google.com/p/xtreemfs/downloads/list}{www.XtreemFS.org}) -\item XtreemFSHadoopClient.jar (Download it from \href{http://www.xtreemfs.org/downloads/XtreemFSHadoopClient.jar}{www.XtreemFS.org} or build it by yourself by excecuting make hadoop-client) +\item XtreemFSHadoopClient.jar (Download it from \href{http://code.google.com/p/xtreemfs/downloads/list}{www.XtreemFS.org} or build it by yourself by excecuting make hadoop-client) \item Hadoop (v 1.0.1 or newer) (\href{http://hadoop.apache.org}{hadoop.apache.org}) \item JDK 1.6+ (\href{http://java.sun.com}{Oracle/SUN}) \end{itemize} @@ -2830,44 +2807,21 @@ This section will help you to set up a simple Hadoop configuration with all nece \begin{enumerate} \item Install and start XtreemFS:\\ Follow the instructions given by the quick start guide for XtreemFS, available at Sec.\ref{sec:quick_start}. Notice - that the DIR is reachable at \textit{localhost:32638}, because this information will be important later. + that the DIR is reachable at \textit{localhost:32638}, beause this information will be important later. \item Download and extract Hadoop -\item Setup Hadoop environment variables:\\ -For Hadoop you have so set the following environment variable: - \begin{itemize} - \item Hadoop 1.x: - \begin{verbatim} - export HADOOP_PREFIX= - \end{verbatim} - - \item Hadoop 2.x: - \begin{verbatim} - export HADOOP_PREFIX= - export HADOOP_MAPRED_HOME=$HADOOP_PREFIX - export HADOOP_COMMON_HOME=$HADOOP_PREFIX - export HADOOP_HDFS_HOME=$HADOOP_PREFIX - export HADOOP_YARN_HOME=$HADOOP_PREFIX - export HADOOP_CONF_DIR=$HADOOP_PREFIX/etc/hadoop - \end{verbatim} - \end{itemize} - \item Configure Hadoop to use XtreemFS instead of HDFS: \begin{enumerate} \item After downloading and extracting Hadoop you have to make sure it will find the XtreemFSHadoopClient package. - The easiest way to do so is to download XtreemFSHadoopClient.jar into Hadoop's \textit{lib} directory for Hadoop 1.x or \textit{share/hadoop/common/} directory for Hadoop 2.x, or to symlink it there. + The easiest way to do so is to download XtreemFSHadoopClient.jar into Hadoop's \textit{lib} directory, or to symlink it there. Alternativly, you can add it to Hadoop's classpath. It can be edited in \textit{hadoop-env.sh} which can be found in the \textit{conf} directory of Hadoop. Assuming you put XtreemFSHadoopClient.jar to the other jar-libraries located at '\textit{/usr/share/java/}', the resulting line should look like this. \begin{verbatim} export HADOOP_CLASSPATH="/usr/share/XtreemFSHadoopClient.jar" \end{verbatim} -Hint: If you use Hadoop 2.x and set Hadoop's classpath, you also have to set the -libjars parameter to the XtreemFSHadoopClient.jar path if you use the hadoop jar command, e.g. - \begin{verbatim} - hadoop jar [mainClass] \ - -libjars=/usr/share/XtreemFSHadoopClient.jar ... - \end{verbatim} - \item Now you have to specify some properties in \textit{core-site.xml} (in the \textit{conf} (Hadoop 1.x) or \textit{etc/hadoop} (Hadoop 2.x) + + \item Now you have to specify some properties in \textit{core-site.xml} (in the \textit{conf} directory of Hadoop). If this file does not exist you can safely create it. \begin{verbatim} @@ -2878,14 +2832,6 @@ Hint: If you use Hadoop 2.x and set Hadoop's classpath, you also have to set the The file system for xtreemfs: URIs. - - fs.AbstractFileSystem.xtreemfs.impl - org.xtreemfs.common.clients.hadoop.XtreemFS - - The abstract file system for xtreemfs: URIs. (Hadoop 2.x only) - - - fs.default.name xtreemfs://localhost:32638 @@ -2922,69 +2868,16 @@ Hint: If you use Hadoop 2.x and set Hadoop's classpath, you also have to set the xtreemfs.client.userid hadoopUserID - - UserID to be used by Hadoop while accessing XtreemFS. - + UserID to be used by Hadoop while accessing XtreemFS. xtreemfs.client.groupid hadoopGroupID - - GroupID to be used by Hadoop while accessing XtreemFS. - - - \end{verbatim} - - Hint: If you want to use the XtreemFSHadoopClient with a SSL encrypted XtreemFS installation, you have to specify the following additional properties: - \begin{verbatim} - - xtreemfs.ssl.enabled - true - - Enable/Disable SSL for the XtreemFSHadoopClient - - - - - xtreemfs.ssl.credentialFile - credentialFile.p12 - Path to a PKCS#12 credential file. - - - - xtreemfs.ssl.credentialFile.passphrase - passphrase - Passphrase for the credential file. - - - - xtreemfs.ssl.trustedCertificatesFile - trustedCertificates.jks - - Optional. Path to a JKS trusted certificates file. - - - - - xtreemfs.ssl.trustedCertificatesFile.passphrase - passphrase - - Optional. Passphrase for the JKS trusted certificates file. - - - - - xtreemfs.ssl.authenticationWithoutEncryption - true/false - - Enable/Disable grid SSL mode (disabled by default). - + GroupID to be used by Hadoop while accessing XtreemFS. \end{verbatim} - - For more information about SSL encryption in XtreemFS see section \ref{sec:cfg_ssl} - + \newpage Hint: The XtreemFSHadoopClient provides an experimental read- and write buffer (disabled by default). The buffers can be used to speed-up small read-/write requests, but in some cases the overhead of the buffer might slow-down the I/O performance. If you want to use the read-/write buffer in the XtreemFSHadoopClient, you have to enable the buffers and specify the buffer sizes with the following additional properties: \begin{verbatim} @@ -3021,41 +2914,23 @@ Hint: If you use Hadoop 2.x and set Hadoop's classpath, you also have to set the \end{verbatim} \end{enumerate} -\item To provide the minimum JobTracker configuration for Hadoop 1.x you also have to add the following property to the +\item To provide the minimum JobTracker configuration for Hadoop you also have to add the following property to the \textit{conf/mapred-site.xml}: \begin{verbatim} + + mapred.job.tracker localhost:9001 Listening address for the JobTracker. - \end{verbatim} - This specifies the address where the JobTracker will be running at. - -For Hadoop 2.x you have to add the following property to the \textit{etc/hadoop/mapred-site.xml}: - \begin{verbatim} - - mapreduce.framework.name - yarn - + \end{verbatim} - - and the following properties to \textit{etc/hadoop/yarn-site.xml}: - - \begin{verbatim} - - yarn.nodemanager.aux-services - mapreduce_shuffle - + This specifies the address where the JobTracker will be running at. - - yarn.nodemanager.aux-services.mapreduce_shuffle.class - org.apache.hadoop.mapred.ShuffleHandler - - \end{verbatim} -\item Finally you are now able to start the JobTracker and the TaskTracker by running '\textit{bin/start-mapred.sh}' (Hadoop 1.x) or the ResourceManager and Nodemanager by running '\textit{sbin/start-yarn.sh} (Hadoop 2.x) from within the Hadoop root-directory. +\item Finally you are now able to start the JobTracker and the TaskTracker by running '\textit{bin/start-mapred.sh}' from within the Hadoop root-directory. \end{enumerate} Congratulations! You successfully finished the quick start guide of the XtreemFS-Hadoop integration and are now able to use your Hadoop applications like as is well known or go on with the tutorials available on \href{http://hadoop.apache.org}{hadoop.apache.org}. @@ -3104,10 +2979,11 @@ Please note, that there are currently no build targets provided yet which allow In particular, you need boost and libssl-dev. On a Unix plattform, you also need libfuse-dev or you have to comment out the respective portions in the CMake configuration manually. At last, you have to install ``cmake'' which generates the build system. - \item Check out the XtreemFS master. + \item Check out the XtreemFS trunk. \begin{verbatim} -git clone https://code.google.com/p/xtreemfs +svn checkout http://xtreemfs.googlecode.com/svn/trunk/ \ + xtreemfs-read-only \end{verbatim} \item Compile the Client. -- GitLab From a14a2778b4556ac44812b1d8300ad3b2d59f66be Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 15 Jul 2014 11:33:17 +0200 Subject: [PATCH 056/192] docs: Updated xtreemfs userguide to latest version from master. --- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 835529 -> 839843 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 176 ++++++++++++++++++++++---- 2 files changed, 152 insertions(+), 24 deletions(-) diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index cfea43a0118286af26f169f63f919a131cf2c32c..e719b556e4e3f680dd3e01418571797648b4392f 100644 GIT binary patch delta 106804 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 F7XWXDV9Edh delta 102627 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 diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index 57b5090be..285f4c0e2 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -32,7 +32,7 @@ \begin{flushleft} \sffamily \begin{LARGE}The XtreemFS Installation and User Guide\end{LARGE} -Version 1.4.x +Version 1.5.x \end{flushleft} @@ -41,12 +41,33 @@ Version 1.4.x XtreemFS is available from the \href{http://www.XtreemFS.org}{XtreemFS website (www.XtreemFS.org)}. -This document is \copyright{} 2009-\the\year{} by Bj\"orn Kolbeck, Jan Stender, Michael Berlin, Matthias Noack, Paul Seiferth, Felix Langner, NEC HPC Europe, Felix Hupfeld, Juan Gonzales, Patrick Sch\"afer. All rights reserved. +This document is \copyright{} 2009-\the\year{} by Bj\"orn Kolbeck, Jan Stender, Michael Berlin, Christoph Kleineweber, Matthias Noack, Paul Seiferth, Felix Langner, NEC HPC Europe, Felix Hupfeld, Juan Gonzales, Patrick Sch\"afer, Lukas Kairies, Jens V. Fischer. All rights reserved. \setcounter{tocdepth}{2} \tableofcontents \chapter*{Changes} +Summary of important changes in release 1.5: + +\begin{itemize} + \item \textbf{Improved Hadoop support}\\ + Added support for multiple volumes and read and write buffer to speed up performance. See section~\ref{sec:hadoop_integration}. + \item \textbf{SSDs support}\\ + Support for multiple OSD storage threads to increase parallelism. See section~\ref{sec:ssds}. + \item \textbf{Replication Status Page}\\ + Status webpage as part of the DIR webinterface for replicated files to show current primary and backup replicas. + \item \textbf{Multi-Homing Support}\\ + XtreemFS can now be made available for multiple networks and clients will pick the correct address automatically. See option \hyperref[option:multihoming.enabled]{multihoming.enabled}. + \item \textbf{Multiple OSDs per Machine}\\ + Support for multiple OSDs per machine (e.g. one for each disk) through the xtreemfs-osd-farm init.d script. See section~\ref{sec:xtreemfs-osd-farm}. + \item \textbf{Improved Checksum Support}\\ + xtfs\_scrub now repairs replicas with an invalid checksum automatically. + \item \textbf{Major bugfixes for Read/Write and Read-Only Replication}\\ + There were problems with the fail-over of replicas which were fixed. + \item \textbf{Minor bugfixes and improvements across all components.}\\ + See the CHANGELOG for more details and references to the issue numbers. +\end{itemize} + Summary of important changes in release 1.4: \begin{itemize} @@ -550,6 +571,7 @@ $> cp SERVICE.p12 /etc/xos/xtreemfs/truststore/certs \subsection{Running XtreemFS on SSDs} +\label{sec:ssds} SSDs are replacing spinning hard disk drives increasingly. This trend is also relevant for the area of distributed file systems. As XtreemFS uses an underlying local file system for all services, XtreemFS can be used with SSDs without any modifications. @@ -1374,6 +1396,7 @@ To run init.d scripts, root permissions are required. Note that MRC and OSD will % The servers will be executed under the user ID of the user who called the xctl script. \subsection{Running multiple OSDs per Machine} +\label{sec:xtreemfs-osd-farm} Running more than one OSD service per host might be useful in various situations. Use cases for this might be machines with more than one disk as an alternative to a local RAID or testing purposes. We offer an extended \texttt{init.d} script, named \texttt{xtreemfs-osd-farm}, to start or stop a set of OSDs on one host by a single script. @@ -1807,7 +1830,7 @@ If one of these limits is reached, subsequent write() requests will block. \label{sec:object_cache} The client supports a per-file write-back object cache with LRU policy. This cache is enabled with \texttt{----object-cache-size=} where N is the maximum number of objects it may cache. The cache is currently mutually exclusive with async. writes. -We recommend enabling the cache for most workloads. +The cache is still experimental and therefore disabled by default. \section{Troubleshooting} @@ -2243,6 +2266,7 @@ sets a data center map-based OSD selection policy, which is invoked each time a \item[\texttt{fqdn}] Selects OSDs based on the size of the post-fix match of the fully qualified domain names and on the free space. \item[\texttt{dcmap}] Selects OSDs based on the distance defined in the datacenter map and on the free space. \item[\texttt{vivaldi}] Selects OSDs based on the distance of the Vivaldi coordinates between client and OSD and on the free space. + \end{description} In addition, custom policies can be set by passing a list of basic policy IDs to be successively applied instead of a predefined policy name. @@ -2382,6 +2406,8 @@ A replication policy can either be specified for an existing file or as a defaul For details on how to define replication policies, please refer to Section \ref{sec:xtfsutil_files} and \ref{sec:xtfsutil_volumes}. +The DIR status page has a subpage which shows the replication status for open files. It's accessible at \url{http://localhost:30638/replica_status}. Replace \texttt{localhost} with the hostname of the DIR service if you're not on the same machine. + \section{Read-Only File Replication} \label{sec:ronly_replication} The read-only is designed for use-cases where you have many replicas that are not modified. Since files cannot be changed, the replicas don't need to be coordinated. Therefore, this replication mode can handle as many replicas as you like, e.g. to create copies of files close to consumers. One use-case for the read-only replication is to build a content-distribution network (CDN) like infrastructure. @@ -2640,9 +2666,10 @@ This policy uses domain names of clients and OSDs to determine the distance betw \item \textbf{Vivaldi network coordinates based sorting (policy ID 3003)}\\ Sorts the list of OSDs in ascending order of their distance to the client, according to the vivaldi coordinates of the client and OSDs. This policy requires to enable vivaldi in the client (see section~\ref{sec:vivaldi} for details). - + \item \textbf{Host round robin based sorting (policy ID 3004)}\\ - Sorts the list of OSDs in a round robin manner regarding the host name of the OSDs. If multiple OSDs run per host, this policy guarantees a distribution over multiple hosts. + Sorts the list of OSDs in a round robin manner regarding the host name of the OSDs. If multiple OSDs run per host, this policy guarantees a distribution over multiple hosts. + \end{itemize} \subsection{OSD Selection based on Custom Attributes} @@ -2784,11 +2811,11 @@ Therefore it replaces the NameNode and the DataNodes provided by HDFS in a commo \centering \includegraphics[width=0.80\linewidth]{images/cluster_setup.png} % screenshot_status.png: 783x444 pixel, 72dpi, 28.82x29.88 cm, bb=0 0 783 444 - \caption{Hadoop cluster setup recommendation} + \caption{Hadoop 1.x cluster setup recommendation} \label{fig:cluster_setup} \end{figure} -The three master services JobTracker, DIR and MRC are required in a Hadoop configuration. They can run alone or in arbitrary combinations on the same machine. Hadoop can be used with an arbitrary number of Slaves. It is recommended to run a TaskTracker together with an OSD on each Slave machine to improve performance, but it is not mandatory. +The three master services JobTracker (Hadoop 1.x) or Resourcemanager (Hadoop 2.x), DIR and MRC are required in a Hadoop configuration. They can run alone or in arbitrary combinations on the same machine. Hadoop can be used with an arbitrary number of Slaves. It is recommended to run a TaskTracker (Hadoop 1.x) or NodeManager (Hadoop 2.x) together with an OSD on each Slave machine to improve performance, but it is not mandatory. \section{Quick Start} \label{sec:hadoop_quickstart} @@ -2798,7 +2825,7 @@ This section will help you to set up a simple Hadoop configuration with all nece \textbf{Required software:} \begin{itemize} \item XtreemFS (\href{http://code.google.com/p/xtreemfs/downloads/list}{www.XtreemFS.org}) -\item XtreemFSHadoopClient.jar (Download it from \href{http://code.google.com/p/xtreemfs/downloads/list}{www.XtreemFS.org} or build it by yourself by excecuting make hadoop-client) +\item XtreemFSHadoopClient.jar (Download it from \href{http://www.xtreemfs.org/downloads/XtreemFSHadoopClient.jar}{www.XtreemFS.org} or build it by yourself by excecuting make hadoop-client) \item Hadoop (v 1.0.1 or newer) (\href{http://hadoop.apache.org}{hadoop.apache.org}) \item JDK 1.6+ (\href{http://java.sun.com}{Oracle/SUN}) \end{itemize} @@ -2807,21 +2834,44 @@ This section will help you to set up a simple Hadoop configuration with all nece \begin{enumerate} \item Install and start XtreemFS:\\ Follow the instructions given by the quick start guide for XtreemFS, available at Sec.\ref{sec:quick_start}. Notice - that the DIR is reachable at \textit{localhost:32638}, beause this information will be important later. + that the DIR is reachable at \textit{localhost:32638}, because this information will be important later. \item Download and extract Hadoop +\item Setup Hadoop environment variables:\\ +For Hadoop you have so set the following environment variable: + \begin{itemize} + \item Hadoop 1.x: + \begin{verbatim} + export HADOOP_PREFIX= + \end{verbatim} + + \item Hadoop 2.x: + \begin{verbatim} + export HADOOP_PREFIX= + export HADOOP_MAPRED_HOME=$HADOOP_PREFIX + export HADOOP_COMMON_HOME=$HADOOP_PREFIX + export HADOOP_HDFS_HOME=$HADOOP_PREFIX + export HADOOP_YARN_HOME=$HADOOP_PREFIX + export HADOOP_CONF_DIR=$HADOOP_PREFIX/etc/hadoop + \end{verbatim} + \end{itemize} + \item Configure Hadoop to use XtreemFS instead of HDFS: \begin{enumerate} \item After downloading and extracting Hadoop you have to make sure it will find the XtreemFSHadoopClient package. - The easiest way to do so is to download XtreemFSHadoopClient.jar into Hadoop's \textit{lib} directory, or to symlink it there. + The easiest way to do so is to download XtreemFSHadoopClient.jar into Hadoop's \textit{lib} directory for Hadoop 1.x or \textit{share/hadoop/common/} directory for Hadoop 2.x, or to symlink it there. Alternativly, you can add it to Hadoop's classpath. It can be edited in \textit{hadoop-env.sh} which can be found in the \textit{conf} directory of Hadoop. Assuming you put XtreemFSHadoopClient.jar to the other jar-libraries located at '\textit{/usr/share/java/}', the resulting line should look like this. \begin{verbatim} export HADOOP_CLASSPATH="/usr/share/XtreemFSHadoopClient.jar" \end{verbatim} - - \item Now you have to specify some properties in \textit{core-site.xml} (in the \textit{conf} +Hint: If you use Hadoop 2.x and set Hadoop's classpath, you also have to set the -libjars parameter to the XtreemFSHadoopClient.jar path if you use the hadoop jar command, e.g. + \begin{verbatim} + hadoop jar [mainClass] \ + -libjars=/usr/share/XtreemFSHadoopClient.jar ... + \end{verbatim} + \item Now you have to specify some properties in \textit{core-site.xml} (in the \textit{conf} (Hadoop 1.x) or \textit{etc/hadoop} (Hadoop 2.x) directory of Hadoop). If this file does not exist you can safely create it. \begin{verbatim} @@ -2832,6 +2882,14 @@ This section will help you to set up a simple Hadoop configuration with all nece The file system for xtreemfs: URIs. + + fs.AbstractFileSystem.xtreemfs.impl + org.xtreemfs.common.clients.hadoop.XtreemFS + + The abstract file system for xtreemfs: URIs. (Hadoop 2.x only) + + + fs.default.name xtreemfs://localhost:32638 @@ -2868,16 +2926,69 @@ This section will help you to set up a simple Hadoop configuration with all nece xtreemfs.client.userid hadoopUserID - UserID to be used by Hadoop while accessing XtreemFS. + + UserID to be used by Hadoop while accessing XtreemFS. + xtreemfs.client.groupid hadoopGroupID - GroupID to be used by Hadoop while accessing XtreemFS. + + GroupID to be used by Hadoop while accessing XtreemFS. + + + \end{verbatim} + + Hint: If you want to use the XtreemFSHadoopClient with a SSL encrypted XtreemFS installation, you have to specify the following additional properties: + \begin{verbatim} + + xtreemfs.ssl.enabled + true + + Enable/Disable SSL for the XtreemFSHadoopClient + + + + + xtreemfs.ssl.credentialFile + credentialFile.p12 + Path to a PKCS#12 credential file. + + + + xtreemfs.ssl.credentialFile.passphrase + passphrase + Passphrase for the credential file. + + + + xtreemfs.ssl.trustedCertificatesFile + trustedCertificates.jks + + Optional. Path to a JKS trusted certificates file. + + + + + xtreemfs.ssl.trustedCertificatesFile.passphrase + passphrase + + Optional. Passphrase for the JKS trusted certificates file. + + + + + xtreemfs.ssl.authenticationWithoutEncryption + true/false + + Enable/Disable grid SSL mode (disabled by default). + \end{verbatim} - \newpage + + For more information about SSL encryption in XtreemFS see section \ref{sec:cfg_ssl} + Hint: The XtreemFSHadoopClient provides an experimental read- and write buffer (disabled by default). The buffers can be used to speed-up small read-/write requests, but in some cases the overhead of the buffer might slow-down the I/O performance. If you want to use the read-/write buffer in the XtreemFSHadoopClient, you have to enable the buffers and specify the buffer sizes with the following additional properties: \begin{verbatim} @@ -2914,23 +3025,41 @@ This section will help you to set up a simple Hadoop configuration with all nece \end{verbatim} \end{enumerate} -\item To provide the minimum JobTracker configuration for Hadoop you also have to add the following property to the +\item To provide the minimum JobTracker configuration for Hadoop 1.x you also have to add the following property to the \textit{conf/mapred-site.xml}: \begin{verbatim} - - mapred.job.tracker localhost:9001 Listening address for the JobTracker. - - \end{verbatim} This specifies the address where the JobTracker will be running at. -\item Finally you are now able to start the JobTracker and the TaskTracker by running '\textit{bin/start-mapred.sh}' from within the Hadoop root-directory. +For Hadoop 2.x you have to add the following property to the \textit{etc/hadoop/mapred-site.xml}: + + \begin{verbatim} + + mapreduce.framework.name + yarn + + \end{verbatim} + + and the following properties to \textit{etc/hadoop/yarn-site.xml}: + + \begin{verbatim} + + yarn.nodemanager.aux-services + mapreduce_shuffle + + + + yarn.nodemanager.aux-services.mapreduce_shuffle.class + org.apache.hadoop.mapred.ShuffleHandler + + \end{verbatim} +\item Finally you are now able to start the JobTracker and the TaskTracker by running '\textit{bin/start-mapred.sh}' (Hadoop 1.x) or the ResourceManager and Nodemanager by running '\textit{sbin/start-yarn.sh} (Hadoop 2.x) from within the Hadoop root-directory. \end{enumerate} Congratulations! You successfully finished the quick start guide of the XtreemFS-Hadoop integration and are now able to use your Hadoop applications like as is well known or go on with the tutorials available on \href{http://hadoop.apache.org}{hadoop.apache.org}. @@ -2979,11 +3108,10 @@ Please note, that there are currently no build targets provided yet which allow In particular, you need boost and libssl-dev. On a Unix plattform, you also need libfuse-dev or you have to comment out the respective portions in the CMake configuration manually. At last, you have to install ``cmake'' which generates the build system. - \item Check out the XtreemFS trunk. + \item Check out the XtreemFS master. \begin{verbatim} -svn checkout http://xtreemfs.googlecode.com/svn/trunk/ \ - xtreemfs-read-only +git clone https://code.google.com/p/xtreemfs \end{verbatim} \item Compile the Client. -- GitLab From 2734062c6f803942a4e46c50104a7799e69e6dd1 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 15 Jul 2014 11:43:34 +0200 Subject: [PATCH 057/192] client, docs: Added support of host round robin osp to xtfsutil. --- cpp/src/xtfsutil/xtfsutil.cpp | 6 ++++++ doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 839843 -> 839925 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/cpp/src/xtfsutil/xtfsutil.cpp b/cpp/src/xtfsutil/xtfsutil.cpp index a982de2fc..f72d7bead 100644 --- a/cpp/src/xtfsutil/xtfsutil.cpp +++ b/cpp/src/xtfsutil/xtfsutil.cpp @@ -695,6 +695,12 @@ bool SetOSP(const string& xctl_file, + "," + boost::lexical_cast( xtreemfs::pbrpc::OSD_SELECTION_POLICY_SORT_VIVALDI); + } else if (policy_uc == "ROUNDROBIN") { + request["policy"] = boost::lexical_cast( + xtreemfs::pbrpc::OSD_SELECTION_POLICY_FILTER_DEFAULT) + + "," + + boost::lexical_cast( + xtreemfs::pbrpc::OSD_SELECTION_POLICY_SORT_HOST_ROUND_ROBIN); } else { request["policy"] = policy; } diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index e719b556e4e3f680dd3e01418571797648b4392f..8edbf76fabbe737fd55c030e40daf745653786b5 100644 GIT binary patch delta 7134 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 delta 7035 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 diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index 285f4c0e2..afad43cf5 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -2266,7 +2266,7 @@ sets a data center map-based OSD selection policy, which is invoked each time a \item[\texttt{fqdn}] Selects OSDs based on the size of the post-fix match of the fully qualified domain names and on the free space. \item[\texttt{dcmap}] Selects OSDs based on the distance defined in the datacenter map and on the free space. \item[\texttt{vivaldi}] Selects OSDs based on the distance of the Vivaldi coordinates between client and OSD and on the free space. - + \item[\texttt{roundrobin}] Selects OSDs based on a round robin manner regarding the host name of the OSDs. \end{description} In addition, custom policies can be set by passing a list of basic policy IDs to be successively applied instead of a predefined policy name. -- GitLab From d4ba017aa3caf73227ba18fa08af6b7a646810a7 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 15 Jul 2014 12:33:52 +0200 Subject: [PATCH 058/192] server: Added host round robin policy to build in policies. --- java/servers/src/org/xtreemfs/mrc/MRCPolicyContainer.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/mrc/MRCPolicyContainer.java b/java/servers/src/org/xtreemfs/mrc/MRCPolicyContainer.java index 54fdaadf9..873b153f7 100644 --- a/java/servers/src/org/xtreemfs/mrc/MRCPolicyContainer.java +++ b/java/servers/src/org/xtreemfs/mrc/MRCPolicyContainer.java @@ -29,6 +29,7 @@ import org.xtreemfs.mrc.osdselection.GroupFQDNPolicy; import org.xtreemfs.mrc.osdselection.OSDSelectionPolicy; import org.xtreemfs.mrc.osdselection.SortDCMapPolicy; import org.xtreemfs.mrc.osdselection.SortFQDNPolicy; +import org.xtreemfs.mrc.osdselection.SortHostRoundRobinPolicy; import org.xtreemfs.mrc.osdselection.SortRandomPolicy; import org.xtreemfs.mrc.osdselection.SortReversePolicy; import org.xtreemfs.mrc.osdselection.SortUUIDPolicy; @@ -44,7 +45,7 @@ public class MRCPolicyContainer extends PolicyContainer { FilterDefaultPolicy.class.getName(), FilterFQDNPolicy.class.getName(), FilterUUIDPolicy.class.getName(), GroupDCMapPolicy.class.getName(), GroupFQDNPolicy.class.getName(), SortDCMapPolicy.class.getName(), SortFQDNPolicy.class.getName(), SortRandomPolicy.class.getName(), SortVivaldiPolicy.class.getName(), - SortUUIDPolicy.class.getName(), SortReversePolicy.class.getName() }; + SortUUIDPolicy.class.getName(), SortReversePolicy.class.getName(), SortHostRoundRobinPolicy.class.getName() }; private final MRCConfig config; -- GitLab From 49c543e702e509b843ccb86421d3b4b3728241ef Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Thu, 17 Jul 2014 15:20:07 +0200 Subject: [PATCH 059/192] docs: Add information for mixed ipv4/v6 and NATs. --- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 839925 -> 846063 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 16 ++++++++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index 8edbf76fabbe737fd55c030e40daf745653786b5..89080748f07b233210bac46c2c451e616a2968ba 100644 GIT binary patch delta 137022 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 delta 130931 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

_G9jE1fagTbE>HK=v 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

CIk@ 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

CB6d@DydA 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 ZEGnreN=@UkFg7zWHsw-Pb@g}S0su<)D%}78 diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index afad43cf5..647a417f0 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -366,12 +366,22 @@ XtreemFS services are configured via Java properties files that can be modified XtreemFS uses UUIDs\index{UUID} (Universally Unique Identifiers) to be able to identify services and their associated state independently from the machine they are installed on. This implies that you cannot change the UUID of an MRC or OSD after it has been used for the first time! -The Directory Service resolves UUIDs to service endpoints, where each service endpoint consists of an IP address or hostname and port number. Each endpoint is associated with a netmask that indicates the subnet in which the mapping is valid. In theory, multiple endpoints can be assigned to a single UUID if endpoints are associated with different netmasks. However, it is currently only possible to assign a single endpoint to each UUID; the netmask must be ``*'', which means that the mapping is valid in all networks. Upon first start-up, OSDs and MRCs will auto-generate the mapping if it does not exist, by using the first available network device with a public address. +The Directory Service resolves UUIDs to service endpoints, where each service endpoint consists of an IP address or hostname and port number. Each endpoint is associated with a netmask that indicates the subnet in which the mapping is valid. If \hyperref[option:multihoming.enabled]{multihoming} is enabled, multiple endpoints with different netmasks are assigned to a single UUID. In addition one default mapping, which is valid in all networks with the netmask ``*'', will be assigned. By default this will be the first available network device with a public address. -Changing the IP address, hostname or port is possible at any time. Due to the caching of UUIDs in all components, it can take some time until the new UUID mapping is used by all OSDs, MRCs and clients. The TTL (time-to-live) of a mapping defines how long an XtreemFS component is allowed to keep entries cached. The default value is 3600 seconds (1 hour). It should be set to shorter durations if services change their IP address frequently. +Changes to the IP address, hostname or port are possible at any time, but have to be propagated to the Directory Service by a \hyperref[option:multihoming.renewalsignal]{manual signal}. Due to the caching of UUIDs in all components, it can take some time until the new UUID mapping is used by all OSDs, MRCs and clients. The TTL (time-to-live) of a mapping defines how long an XtreemFS component is allowed to keep entries cached. The default value is 3600 seconds (1 hour). It should be set to shorter durations if services change their IP address frequently. To create a globally unique UUID you can use tools like \texttt{uuidgen}. During installation, the post-install script will automatically create a UUID for each OSD and MRC if it does not have a UUID assigned. + +\subsection{Configuration for mixed IPv4 / IPv6 networks and NATs} + +XtreemFS is IPv6 ready, but requires a hostname based configuration for mixed networks due to the way UUIDs are resolved. If no hostname is configured, the default endpoint will be set to the first available network device with a public address. If this is an IPv6 address, clients or services in IPv4 networks won't be able to access the service with the resolved UUID. Additional IPv4 endpoints may be available, but will be bound to a specific netmask. + +To enable mixed networks each service has to be configured with a \hyperref[options:hostname]{\texttt{hostname}}, which is resolvable to the IPv4 address as well as to the IPv6 address by clients and other services. This can be achieved by using the Domain Name System and setting the \texttt{A} and \texttt{AAAA} records for each hostname. + +Analogous problems occur in systems with NAT (network address translation) like on Amazon Virtual Private Cloud or OpenStack. By default each service will register its local address which is unreachable from other networks. To enable services with NAT you can add the external address to the internal network device with a corresponding route and use the DNS to resolve hostnames as described above. To ensure services from the same network are using a direct route it is advised to enable \hyperref[option:multihoming.enabled]{multihoming}. + + \subsection{Automatic DIR Discovery} \label{sec:autodiscover} OSDs and MRCs are capable of automatically discovering a Directory Service. If automatic DIR discovery is switched on, the service will broadcast requests to the local LAN and wait up to 10s for a response from a DIR. The services will select the first DIR which responded, which can lead to non-deterministic behavior if multiple DIR services are present. Note that the feature works only in a local LAN environment, as broadcast messages are not routed to other networks. Local firewalls on the computers on which the services are running can also prevent the automatic discovery from working. @@ -967,6 +977,7 @@ Note that it is possible to specify multiple categories by means of a comma or s \end{tabular} \subsubsection{\texttt{hostname} \textit{optional}} +\label{options:hostname} \begin{tabular}{lp{10cm}} Services & MRC, OSD\\ Values & String \\ @@ -1083,6 +1094,7 @@ Note that it is possible to specify multiple categories by means of a comma or s \end{tabular} \subsubsection{\texttt{multihoming.renewal\_signal} \textit{optional}} +\label{option:multihoming.renewalsignal} \begin{tabular}{lp{10cm}} Services & MRC, OSD\\ Values & true, false\\ -- GitLab From 35fb9fb48643ccf663caec9d80c7b8d47b0a25c9 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Wed, 30 Jul 2014 17:36:18 +0200 Subject: [PATCH 060/192] tests: Test on valid data on snapshots when the original files change. --- tests/test_scripts/system_snap_test.sh | 115 ++++++++++++++++++++++--- 1 file changed, 103 insertions(+), 12 deletions(-) diff --git a/tests/test_scripts/system_snap_test.sh b/tests/test_scripts/system_snap_test.sh index b0890e0c8..17f62a6d7 100755 --- a/tests/test_scripts/system_snap_test.sh +++ b/tests/test_scripts/system_snap_test.sh @@ -1,51 +1,142 @@ #!/bin/bash -TEST_DIR=$4 export XTREEMFS=$1 echo "XTREEMFS=$XTREEMFS" -if [[ "$2" == pbrpcs://* || "$2" == pbrpcg://* ]]; then - CREDS="-c $1/tests/certs/Client.p12 -cpass passphrase -t $1/tests/certs/trusted.jks -tpass passphrase" +DIR_URL=$2 +MRC_URL=$3 +TEST_DIR=$4 + +if [[ "$DIR_URL" == pbrpcs://* || "$DIR_URL" == pbrpcg://* ]]; then + CREDS="-c $XTREEMFS/tests/certs/Client.p12 -cpass passphrase -t $XTREEMFS/tests/certs/trusted.jks -tpass passphrase" fi +VOL_URL=$($XTREEMFS/bin/xtfsutil .. | grep "XtreemFS URL" | cut -b 13- | tr -d ' ') + +cleanup() { + TMP_MNT=$1 + + echo "Cleanup" + + COMMAND="$XTREEMFS/bin/umount.xtreemfs $TMP_MNT" + echo "Running $COMMAND"; $COMMAND + rmdir $TMP_MNT + + COMMAND="$XTREEMFS/bin/xtfsutil --delete-snapshot mySnap ." + echo "Running $COMMAND"; $COMMAND +} + # # enable and create a snapshot # # enable snapshots -COMMAND="$1/bin/xtfsutil --enable-snapshots .." +COMMAND="$XTREEMFS/bin/xtfsutil --enable-snapshots .." echo "Running ${COMMAND}" $COMMAND RESULT=$? if [ "$RESULT" -ne "0" ]; then echo "$COMMAND failed"; exit $RESULT; fi -# create an empty directory +# create an empty directory and a file +echo "Create a directory and files" mkdir ./newdir +echo "test" > test.txt +echo "hello" > world.txt + +# wait until the file is removed from the open file table and written to the mrc +echo "Waiting for 91s until the files are closed" +sleep 91s +echo "Continue" # take a snapshot -COMMAND="$1/bin/xtfsutil --create-snapshot mySnap ." +COMMAND="$XTREEMFS/bin/xtfsutil --create-snapshot mySnap ." echo "Running ${COMMAND}" $COMMAND RESULT=$? if [ "$RESULT" -ne "0" ]; then echo "$COMMAND failed"; exit $RESULT; fi # list all snapshots -COMMAND="$1/bin/xtfsutil --list-snapshots .." +COMMAND="$XTREEMFS/bin/xtfsutil --list-snapshots .." echo "Running ${COMMAND}" $COMMAND |grep mySnap RESULT=$? if [ "$RESULT" -ne "0" ]; then echo "$COMMAND failed"; exit $RESULT; fi -# create file -echo "test" > file.txt +# mount the snapshot +TMP_MNT=$(mktemp -d) +COMMAND="$XTREEMFS/bin/mount.xtreemfs $VOL_URL@mySnap $TMP_MNT" +echo "Running ${COMMAND}" +$COMMAND +RESULT=$? +if [ "$RESULT" -ne "0" ]; then echo "$COMMAND failed"; exit $RESULT; fi + +# check if the files exist +echo "Checking snapshot file consistency" +if [ ! -e $TMP_MNT/test.txt ] || [ ! -e $TMP_MNT/world.txt ]; then + ERROR="Files missing in snapshot" +fi + +if [ ! -e $TMP_MNT/newdir ]; then + ERROR="Directory 'newdir' missing in snapshot \n$ERROR" +fi + +CONT=$(<$TMP_MNT/world.txt) +if [ "$CONT" != "hello" ]; then + ERROR="world.txt mismatch in snapshot: '$CONT' != 'hello' \n$ERROR" +fi + +CONT=$(< $TMP_MNT/test.txt) +if [ "$CONT" != "test" ]; then + ERROR="test.txt mismatch in snapshot: '$CONT' != 'test' \n$ERROR" +fi + +# exit if some file errors occured +if [ -n "$ERROR" ]; then + echo -e "$ERROR" + cleanup $TMP_MNT + exit 1 +fi + + +# check that the data is retained in the snapshot on change and deletion +echo "Modifying original files and checking snapshot consistency" +rm test.txt +echo "goodbye" > world.txt + +# echo "Waiting for 61s until the files are closed/deleted" +# sleep 61s +# echo "Continue" + +CONT=$(<$TMP_MNT/world.txt) +if [ "$CONT" != "hello" ]; then + ERROR="changed world.txt mismatch in snapshot: '$CONT' != 'hello' \n$ERROR" +fi + +CONT=$(< $TMP_MNT/test.txt) +if [ "$CONT" != "test" ]; then + ERROR="removed test.txt mismatch in snapshot: '$CONT' != 'test' \n$ERROR" +fi + +# exit if some file errors occured +if [ -n "$ERROR" ]; then + echo -e "$ERROR" + cleanup $TMP_MNT + exit 1 +fi + +# unmount the snapshot and remove the directory +COMMAND="$XTREEMFS/bin/umount.xtreemfs $TMP_MNT" +echo "Running ${COMMAND}" +$COMMAND +RESULT=$? +if [ "$RESULT" -ne "0" ]; then echo "$COMMAND failed"; exit $RESULT; fi -# TODO: mount and check the snapshot +rmdir $TMP_MNT # delete a snapshot -COMMAND="$1/bin/xtfsutil --delete-snapshot mySnap ." +COMMAND="$XTREEMFS/bin/xtfsutil --delete-snapshot mySnap ." echo "Running ${COMMAND} ..." $COMMAND RESULT=$? if [ "$RESULT" -ne "0" ]; then echo "$COMMAND failed"; exit $RESULT; fi -# TODO: mount and access a snapshot -- GitLab From ec458fe976e20e6709299698ada5e3c1066555af Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Wed, 6 Aug 2014 14:40:20 +0200 Subject: [PATCH 061/192] servers: Log error if FileMetadata is missing for the deletion stage. For COW enabled files, the FileMetadata could be null and resulting in an unhandled NullPointerException. --- .../src/org/xtreemfs/osd/stages/DeletionStage.java | 9 +++++++++ .../src/org/xtreemfs/osd/storage/FileMetadata.java | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java b/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java index 291ef2197..b1b8e40c5 100644 --- a/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java +++ b/java/servers/src/org/xtreemfs/osd/stages/DeletionStage.java @@ -163,6 +163,15 @@ public class DeletionStage extends Stage { // if copy-on-write is enabled ... if (cow) { + if (fi == null) { + Logging.logMessage( + Logging.LEVEL_ERROR, + this, + "Deleting objects failed for COW enabled file %s, because FileMetadata is missing.", + fileId); + continue; + } + // if no previous versions exist, delete the file // including all its metadata if (fi.getVersionTable().getVersionCount() == 0) diff --git a/java/servers/src/org/xtreemfs/osd/storage/FileMetadata.java b/java/servers/src/org/xtreemfs/osd/storage/FileMetadata.java index d108e5b2e..0e1c3a2e7 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/FileMetadata.java +++ b/java/servers/src/org/xtreemfs/osd/storage/FileMetadata.java @@ -11,8 +11,8 @@ package org.xtreemfs.osd.storage; import java.io.RandomAccessFile; import java.util.HashMap; import java.util.Map; -import java.util.Set; import java.util.Map.Entry; +import java.util.Set; import org.xtreemfs.common.xloc.StripingPolicyImpl; @@ -139,7 +139,7 @@ public class FileMetadata { } public String toString() { - return "fileSize=" + filesize + ", lastObjNo=" + lastObjectNumber; + return "(fileSize=" + filesize + ", lastObjNo=" + lastObjectNumber + ")"; } public long getTruncateEpoch() { -- GitLab From d04a66f4b1cd4417997205416fd2fe8aa5968e63 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Tue, 5 Aug 2014 13:34:39 +0200 Subject: [PATCH 062/192] servers: Keep snapshot data if a file is deleted (fixes #325). In case of delete operations files will be closed from the OpenFileTable explicitly. Versioning, deletion etc. will be handled by EventCloseFile. OpenFileTableEntry had to be extended to enable the required changes. --- .../src/org/xtreemfs/osd/OpenFileTable.java | 238 +++++++++++------- .../osd/operations/DeleteOperation.java | 78 ++++-- .../osd/operations/EventCloseFile.java | 196 ++++++++------- .../operations/EventCreateFileVersion.java | 23 +- .../org/xtreemfs/osd/stages/PreprocStage.java | 113 ++++++--- .../org/xtreemfs/osd/stages/StorageStage.java | 3 +- .../xtreemfs/osd/storage/StorageThread.java | 2 +- 7 files changed, 395 insertions(+), 258 deletions(-) diff --git a/java/servers/src/org/xtreemfs/osd/OpenFileTable.java b/java/servers/src/org/xtreemfs/osd/OpenFileTable.java index d309886a7..e0d4f815c 100644 --- a/java/servers/src/org/xtreemfs/osd/OpenFileTable.java +++ b/java/servers/src/org/xtreemfs/osd/OpenFileTable.java @@ -10,22 +10,24 @@ package org.xtreemfs.osd; +import java.util.Comparator; import java.util.HashMap; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Map; +import java.util.Map.Entry; import java.util.SortedSet; import java.util.TreeSet; -import java.util.Map.Entry; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.logging.Logging.Category; +import org.xtreemfs.osd.operations.EventCreateFileVersion; import org.xtreemfs.osd.storage.CowPolicy; /** - * This class models an OpenFileTable, storing the set of files in an 'open' state; it makes available a - * 'clean' method that cleans the table by deleting entries whose expiration time is expired + * This class models an OpenFileTable, storing the set of files in an 'open' state; it makes available a 'clean' method + * that cleans the table by deleting entries whose expiration time is expired * * @author Eugenio Cesario */ @@ -41,16 +43,7 @@ public final class OpenFileTable { public OpenFileTable() { openFiles = new HashMap(); expTimes = new TreeSet(); - expTimesWrite = new TreeSet(); - } - - /** - * Insert a new entry in the table. - * - * @see #refresh(String, long, boolean, boolean) - */ - public CowPolicy refresh(String fId, long expTime, boolean write) { - return refresh(fId, expTime, write, false); + expTimesWrite = new TreeSet(OpenFileTableEntry.createWriteExpComparator()); } /** @@ -60,10 +53,8 @@ public final class OpenFileTable { * fileId * @param expTime * expiration time - * @param ignoreOlderExpTime - * If true, set expTime even if it's older than the current one. */ - public CowPolicy refresh(String fId, long expTime, boolean write, boolean ignoreOlderExpTime) { + public CowPolicy refresh(String fId, long expTime, boolean write) { OpenFileTableEntry currEntry = openFiles.get(fId); if (currEntry != null) { @@ -73,21 +64,22 @@ public final class OpenFileTable { // 'currEntry' isn't a new entry, so update it // if its expiration time is renewed - if (ignoreOlderExpTime || expTime > currEntry.expTime) { + if (expTime > currEntry.expTime) { // openFiles.remove(fId); expTimes.remove(currEntry); - if (write) - expTimesWrite.remove(currEntry); - currEntry.setExpirationTime(expTime); openFiles.put(fId, currEntry); boolean success = expTimes.add(currEntry); assert (success); - if (write) + if (write) { + expTimesWrite.remove(currEntry); + currEntry.setWriteExpirationTime(expTime); + currEntry.setWrite(); expTimesWrite.add(currEntry); + } } return currEntry.getCowPolicy(); } else { @@ -119,11 +111,14 @@ public final class OpenFileTable { // 'currEntry' is a new entry, so // insert it in the table OpenFileTableEntry newEntry = new OpenFileTableEntry(fId, expTime, policy); - OpenFileTableEntry newWriteEntry = new OpenFileTableEntry(fId, expTime, policy); openFiles.put(fId, newEntry); expTimes.add(newEntry); - if (write) - expTimesWrite.add(newWriteEntry); + + if (write) { + newEntry.setWriteExpirationTime(expTime); + newEntry.setWrite(); + expTimesWrite.add(newEntry); + } } /** @@ -142,7 +137,7 @@ public final class OpenFileTable { OpenFileTableEntry dummyEntry = new OpenFileTableEntry(null, toTime); - Iterator it = expTimes.iterator(); + Iterator it = expTimes.iterator(); // since entries in 'expTimes' are sorted w.r.t. their expiration time // (ascending order), 'expTimes' has to be scanned until there is an @@ -156,6 +151,7 @@ public final class OpenFileTable { String fId = currEntry.fileId; openFiles.remove(fId); it.remove(); + currEntry.setClosed(); closedFiles.add(currEntry); } else { break; @@ -165,8 +161,7 @@ public final class OpenFileTable { } /** - * Deletes all entries of files that were opened for writing whose expiration time is strictly less than - * 'toTime'. + * Deletes all entries of files that were opened for writing whose expiration time is strictly less than 'toTime'. * * @param toTime * @return @@ -242,21 +237,23 @@ public final class OpenFileTable { } /** - * Delete a file by setting its expiration timestamp to 0. + * Remove the entries for fileId from the OpenFileTable. * - * @return true if it's necessary to call {@link PreprocStage#checkOpenFileTable()} afterward. + * @param fileId + * @return the removed {@link OpenFileTableEntry} or null if it did not exist. */ - public boolean close(String fileId) { - if (contains(fileId)) { - // TODO(mberlin): "write" (here set to false) should be part of the OpenFileTableEntry - otherwise - // it is not possible to decide if a new file version should be retained upon deletion. {@link - // PreprocStage#doPingFile()} suffers the same problem. - refresh(fileId, 0, false, true); + public OpenFileTableEntry close(String fileId) { - return true; - } else { - return false; + OpenFileTableEntry currEntry = openFiles.get(fileId); + + if (currEntry != null) { + expTimes.remove(currEntry); + expTimesWrite.remove(currEntry); + openFiles.remove(fileId); + currEntry.setClosed(); } + + return currEntry; } public int getNumOpenFiles() { @@ -267,11 +264,6 @@ public final class OpenFileTable { return this.openFiles.get(fileId); } - /* - * public List getLeases(String fileId) { OpenFileTableEntry e = openFiles.get(fileId); - * assert (e != null); return e.getClientLeases(); } - */ - /** * Class used to model an entry in the OpenFileTable * @@ -282,25 +274,32 @@ public final class OpenFileTable { private final String fileId; - private long expTime; + private final CowPolicy fileCowPolicy; - private boolean deleteOnClose; + private long expTime; - // private List clientLeases; + private long writeExpTime; private Map advisoryLocks; - private CowPolicy fileCowPolicy; + private boolean closed; + + private boolean write; + + private boolean deleteOnClose; - public OpenFileTableEntry(String fid, long et) { + private OpenFileTableEntry(String fid, long et) { this(fid, et, null); } - public OpenFileTableEntry(String fid, long et, CowPolicy cow) { + private OpenFileTableEntry(String fid, long et, CowPolicy cow) { fileId = fid; expTime = et; + writeExpTime = 0; + + closed = false; deleteOnClose = false; - // clientLeases = new LinkedList(); + write = false; if (cow != null) fileCowPolicy = cow; @@ -308,60 +307,79 @@ public final class OpenFileTable { fileCowPolicy = new CowPolicy(CowPolicy.cowMode.NO_COW); } - @Override - public int compareTo(OpenFileTableEntry e) { - int res = 0; - if (this.expTime < e.expTime) { - res = -1; - } else if (this.expTime == e.expTime) { - res = e.fileId == null ? -1 : this.fileId.compareTo(e.fileId); - } else { - res = 1; - } - return res; + private void setExpirationTime(long newExpTime) { + this.expTime = newExpTime; } - @Override - public boolean equals(Object o) { - try { - final OpenFileTableEntry e = (OpenFileTableEntry) o; - if (fileId.equals(e.fileId)) { - return true; - } else { - return false; - } - } catch (ClassCastException ex) { - return false; - } + private void setWriteExpirationTime(long newExpTime) { + this.writeExpTime = newExpTime; } - @Override - public String toString() { - return "(" + fileId + "," + expTime + ")"; + /** + * Thread-safe method (access to final field). + * + * @return the fileId of this entry. + */ + public String getFileId() { + return this.fileId; } - public void setExpirationTime(long newExpTime) { - this.expTime = newExpTime; + /** + * Thread-safe method (access to final field). + * + * @return the cowPolicy of this entry. + */ + public CowPolicy getCowPolicy() { + return this.fileCowPolicy; + } + + /** + * @return if the entry has been removed from the OpenFileTable. + */ + public boolean isClosed() { + return closed; } - public void setDeleteOnClose() { + /** + * Mark that the entry has been removed from the OpenFileTable. + */ + private void setClosed() { + closed = true; + } + + /** + * Mark the file for deletion on close.
+ */ + private void setDeleteOnClose() { deleteOnClose = true; } + /** + * @return true if the file should be deleted on close. + */ public boolean isDeleteOnClose() { return deleteOnClose; } - public String getFileId() { - return this.fileId; + /** + * Mark pending copies on write for the file.
+ */ + private void setWrite() { + write = true; } - /* - * public List getClientLeases() { return this.clientLeases; } + /** + * Clear the write flag once a {@link EventCreateFileVersion} has been triggered. */ + public void clearWrite() { + write = false; + } - public CowPolicy getCowPolicy() { - return this.fileCowPolicy; + /** + * @return true if the file should be copied after a write. + */ + public boolean isWrite() { + return write; } public AdvisoryLock acquireLock(String client_uuid, int pid, long offset, long length, boolean exclusive) { @@ -432,5 +450,55 @@ public final class OpenFileTable { return String.format("%010d%s", pid, clientUuid); } + @Override + public boolean equals(Object o) { + try { + final OpenFileTableEntry e = (OpenFileTableEntry) o; + if (fileId.equals(e.fileId)) { + return true; + } else { + return false; + } + } catch (ClassCastException ex) { + return false; + } + } + + @Override + public int compareTo(OpenFileTableEntry e) { + int res = 0; + if (this.expTime < e.expTime) { + res = -1; + } else if (this.expTime == e.expTime) { + res = e.fileId == null ? -1 : this.fileId.compareTo(e.fileId); + } else { + res = 1; + } + return res; + } + + public static Comparator createWriteExpComparator() { + return new Comparator() { + @Override + public int compare(OpenFileTableEntry e1, OpenFileTableEntry e2) { + + int res = 0; + if (e1.writeExpTime < e2.writeExpTime) { + res = -1; + } else if (e1.writeExpTime == e2.writeExpTime) { + res = e1.fileId == null ? -1 : e2.fileId.compareTo(e1.fileId); + } else { + res = 1; + } + return res; + } + }; + } + + @Override + public String toString() { + return "(" + fileId + "," + expTime + "ms)"; + } + } } diff --git a/java/servers/src/org/xtreemfs/osd/operations/DeleteOperation.java b/java/servers/src/org/xtreemfs/osd/operations/DeleteOperation.java index b17556ee0..fda2748e1 100644 --- a/java/servers/src/org/xtreemfs/osd/operations/DeleteOperation.java +++ b/java/servers/src/org/xtreemfs/osd/operations/DeleteOperation.java @@ -25,15 +25,17 @@ import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.RPCHeader.ErrorResp import org.xtreemfs.foundation.pbrpc.utils.ErrorUtils; import org.xtreemfs.osd.OSDRequest; import org.xtreemfs.osd.OSDRequestDispatcher; +import org.xtreemfs.osd.OpenFileTable.OpenFileTableEntry; +import org.xtreemfs.osd.operations.EventCloseFile.EventCloseCallback; import org.xtreemfs.osd.stages.DeletionStage.DeleteObjectsCallback; +import org.xtreemfs.osd.stages.PreprocStage.CloseCallback; import org.xtreemfs.osd.stages.PreprocStage.DeleteOnCloseCallback; import org.xtreemfs.pbrpc.generatedinterfaces.OSD.unlink_osd_Request; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceConstants; public final class DeleteOperation extends OSDOperation { - - final String sharedSecret; + final String sharedSecret; final ServiceUUID localUUID; @@ -51,53 +53,84 @@ public final class DeleteOperation extends OSDOperation { @Override public void startRequest(final OSDRequest rq) { final unlink_osd_Request args = (unlink_osd_Request) rq.getRequestArgs(); + + // If the file is open, the deleteOnClose flag will be set. master.getPreprocStage().checkDeleteOnClose(args.getFileId(), new DeleteOnCloseCallback() { @Override public void deleteOnCloseResult(boolean isDeleteOnClose, ErrorResponse error) { - step2(rq, isDeleteOnClose, args, error); + closeFileIfNecessary(rq, isDeleteOnClose, args, error); } }); } - public void step2(final OSDRequest rq, boolean isDeleteOnClose, final unlink_osd_Request args, ErrorResponse error) { + public void closeFileIfNecessary(final OSDRequest rq, final boolean isDeleteOnClose, final unlink_osd_Request args, + final ErrorResponse error) { + if (error != null) { rq.sendError(error); return; } if (!isDeleteOnClose) { - // file is not open and can be deleted immediately + // File is not open and can be deleted immediately. - // cancel replication of file + // Cancel replication of file if (rq.getLocationList().getReplicaUpdatePolicy().equals(ReplicaUpdatePolicies.REPL_UPDATE_PC_RONLY)) master.getReplicationStage().cancelReplicationForFile(args.getFileId()); - - master.getDeletionStage().deleteObjects(args.getFileId(), null, rq.getCowPolicy().cowEnabled(), rq, new DeleteObjectsCallback() { + + master.getDeletionStage().deleteObjects(args.getFileId(), null, rq.getCowPolicy().cowEnabled(), rq, + new DeleteObjectsCallback() { + + @Override + public void deleteComplete(ErrorResponse error) { + disseminateDeletesIfNecessary(rq, args, error); + } + }); + } else { + // Close the file explicitly. + master.getPreprocStage().close(args.getFileId(), new CloseCallback() { @Override - public void deleteComplete(ErrorResponse error) { - disseminateDeletes(rq, args); + public void closeResult(OpenFileTableEntry entry, ErrorResponse error) { + // Send close event. + // This will create new versions if necessary and delete objects (because deleteOnClose is set). + OSDOperation closeEvent = master.getInternalEvent(EventCloseFile.class); + closeEvent.startInternalEvent(new Object[] { entry.getFileId(), true, + entry.getCowPolicy().cowEnabled(), entry.isWrite(), new EventCloseCallback() { + + @Override + public void closeEventResult(ErrorResponse error) { + disseminateDeletesIfNecessary(rq, args, error); + } + + } }); + } }); - } else { - //file marked for delete on close, send ok to client - disseminateDeletes(rq, args); } } - public void disseminateDeletes(final OSDRequest rq, final unlink_osd_Request args) { + + public void disseminateDeletesIfNecessary(final OSDRequest rq, final unlink_osd_Request args, + final ErrorResponse error) { + + if (error != null) { + rq.sendError(error); + return; + } + final Replica localReplica = rq.getLocationList().getLocalReplica(); if (localReplica.isStriped() && localReplica.getHeadOsd().equals(localUUID)) { - //striped replica, dissmeninate unlink requests + // striped replica, dissmeninate unlink requests try { final List osds = rq.getLocationList().getLocalReplica().getOSDs(); final RPCResponse[] gmaxRPCs = new RPCResponse[osds.size() - 1]; int cnt = 0; for (ServiceUUID osd : osds) { if (!osd.equals(localUUID)) { - gmaxRPCs[cnt++] = master.getOSDClient().unlink(osd.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - args.getFileCredentials(), args.getFileId()); + gmaxRPCs[cnt++] = master.getOSDClient().unlink(osd.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, args.getFileCredentials(), args.getFileId()); } } this.waitForResponses(gmaxRPCs, new ResponsesListener() { @@ -112,13 +145,13 @@ public final class DeleteOperation extends OSDOperation { return; } } else { - //non striped replica, fini + // non striped replica, fini sendResponse(rq); } } - public void analyzeUnlinkReponses(final OSDRequest rq,RPCResponse[] gmaxRPCs) { - //analyze results + public void analyzeUnlinkReponses(final OSDRequest rq, RPCResponse[] gmaxRPCs) { + // analyze results try { for (int i = 0; i < gmaxRPCs.length; i++) { gmaxRPCs[i].get(); @@ -131,14 +164,15 @@ public final class DeleteOperation extends OSDOperation { r.freeBuffers(); } } + public void sendResponse(OSDRequest rq) { - rq.sendSuccess(null,null); + rq.sendSuccess(null, null); } @Override public ErrorResponse parseRPCMessage(OSDRequest rq) { try { - unlink_osd_Request rpcrq = (unlink_osd_Request)rq.getRequestArgs(); + unlink_osd_Request rpcrq = (unlink_osd_Request) rq.getRequestArgs(); rq.setFileId(rpcrq.getFileId()); rq.setCapability(new Capability(rpcrq.getFileCredentials().getXcap(), sharedSecret)); rq.setLocationList(new XLocations(rpcrq.getFileCredentials().getXlocs(), localUUID)); diff --git a/java/servers/src/org/xtreemfs/osd/operations/EventCloseFile.java b/java/servers/src/org/xtreemfs/osd/operations/EventCloseFile.java index 6b3ebcdd9..61b38ad2b 100644 --- a/java/servers/src/org/xtreemfs/osd/operations/EventCloseFile.java +++ b/java/servers/src/org/xtreemfs/osd/operations/EventCloseFile.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2011 by Bjoern Kolbeck, + * Copyright (c) 2009-2014 by Bjoern Kolbeck, Johannes Dillmann * Zuse Institute Berlin * * Licensed under the BSD License, see LICENSE file for details. @@ -8,8 +8,6 @@ package org.xtreemfs.osd.operations; -import org.xtreemfs.common.Capability; -import org.xtreemfs.foundation.LRUCache; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.RPCHeader.ErrorResponse; import org.xtreemfs.foundation.pbrpc.utils.ErrorUtils; @@ -18,122 +16,130 @@ import org.xtreemfs.osd.OSDRequestDispatcher; import org.xtreemfs.osd.stages.DeletionStage.DeleteObjectsCallback; import org.xtreemfs.osd.stages.StorageStage.CachesFlushedCallback; import org.xtreemfs.osd.stages.StorageStage.CreateFileVersionCallback; -import org.xtreemfs.osd.storage.CowPolicy; import org.xtreemfs.osd.storage.FileMetadata; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SYSTEM_V_FCNTL; /** + * EventCloseFile flushes the internal metadata caches, creates create a new file version if versioning / COW is enabled + * and deletes the file along with its objects if the file has been marked for deletion.
* - * @author bjko + * It is not responsible for removing files from the open file table (which has to be ensured previously) and doesn't + * disseminate to other replicas. */ public class EventCloseFile extends OSDOperation { - + public EventCloseFile(OSDRequestDispatcher master) { super(master); } - - @Override - public int getProcedureId() { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void startRequest(OSDRequest rq) { - throw new UnsupportedOperationException("Not supported yet."); - - } - - - @Override - public boolean requiresCapability() { - throw new UnsupportedOperationException("Not supported yet."); + + public interface EventCloseCallback { + void closeEventResult(ErrorResponse error); } - + + /** + * @param args + * [ fileId, deleteOnClose, cowEnabled, createVersion, {@link EventCloseCallback} (optional) ] + */ @Override public void startInternalEvent(Object[] args) { - final String fileId = (String) args[0]; - final Boolean isDeleteOnClose = (Boolean) args[1]; - final FileMetadata fi = (FileMetadata) args[2]; - final CowPolicy cow = (CowPolicy) args[3]; - final LRUCache cachedCaps = (LRUCache) args[4]; - + final Boolean deleteOnClose = (Boolean) args[1]; + final Boolean cowEnabled = (Boolean) args[2]; + final Boolean createVersion = (Boolean) args[3]; + + final EventCloseCallback cb = args.length > 4 ? (EventCloseCallback) args[4] : null; + + flushCaches(fileId, deleteOnClose, cowEnabled, createVersion, cb); + } + + public void flushCaches(final String fileId, final boolean deleteOnClose, final boolean cowEnabled, + final boolean createVersion, final EventCloseCallback cb) { master.getStorageStage().flushCaches(fileId, new CachesFlushedCallback() { - @Override - public void cachesFlushed(ErrorResponse error) { - - if (error != null) - Logging.logMessage(Logging.LEVEL_ERROR, this, ErrorUtils.formatError(error)); - - // if COW is enabled, create a new version - if (cow.cowEnabled()) - createNewVersion(fileId, fi, cachedCaps, isDeleteOnClose); - - // if the file is marked for deletion, delete it - else if (isDeleteOnClose) - deleteObjects(fileId, fi, cow.cowEnabled()); - + public void cachesFlushed(ErrorResponse error, FileMetadata fi) { + createVersionIfNecessary(fileId, deleteOnClose, cowEnabled, createVersion, fi, cb, error); } + }); + // Asynchronously report close operation to read-write replication stage. master.getRWReplicationStage().fileClosed(fileId); - } - - public void deleteObjects(String fileId, FileMetadata fi, boolean isCow) { - - // cancel replication of file - master.getReplicationStage().cancelReplicationForFile(fileId); - - master.getDeletionStage().deleteObjects(fileId, fi, isCow, null, new DeleteObjectsCallback() { - - @Override - public void deleteComplete(ErrorResponse error) { - if (error != null) { - Logging.logMessage(Logging.LEVEL_ERROR, this, "exception in internal event: %s", ErrorUtils.formatError(error)); + + public void createVersionIfNecessary(final String fileId, final boolean deleteOnClose, final boolean cowEnabled, + final boolean createVersion, final FileMetadata fi, final EventCloseCallback cb, final ErrorResponse error) { + + if (error != null) { + finishEvent(cb, error); + return; + } + + // If versioning on close is enabled, create a new version. + if (cowEnabled && createVersion) { + + master.getStorageStage().createFileVersion(fileId, fi, null, new CreateFileVersionCallback() { + + @Override + public void createFileVersionComplete(long fileSize, ErrorResponse error) { + deleteIfNecessary(fileId, deleteOnClose, cowEnabled, fi, cb, error); } - - } - }); + }); + + } else { + deleteIfNecessary(fileId, deleteOnClose, cowEnabled, fi, cb, null); + } } - - public void createNewVersion(final String fileId, final FileMetadata fi, - LRUCache cachedCaps, final boolean isDeleteOnClose) { - - // first, check if there are any write capabilities among the cached - // capabilities - boolean writeCap = false; - if (cachedCaps != null) - for (Capability cap : cachedCaps.values()) { - int accessMode = cap.getAccessMode(); - if ((accessMode & SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber()) != 0 - || (accessMode & SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber()) != 0 - || (accessMode & SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_WRONLY.getNumber()) != 0 - || (accessMode & SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_APPEND.getNumber()) != 0) { - writeCap = true; - break; - } - } - - // if there are no write capabilities, there is no need to create a new - // version - if (!writeCap) + + public void deleteIfNecessary(final String fileId, final boolean deleteOnClose, final boolean cowEnabled, + final FileMetadata fi, final EventCloseCallback cb, final ErrorResponse error) { + + if (error != null) { + finishEvent(cb, error); return; - - master.getStorageStage().createFileVersion(fileId, fi, null, new CreateFileVersionCallback() { - public void createFileVersionComplete(long fileSize, ErrorResponse error) { - - if (error != null) { - Logging.logMessage(Logging.LEVEL_ERROR, this, "exception in internal event: %s", ErrorUtils.formatError(error)); + } + + if (deleteOnClose) { + + // Cancel replication of file. + master.getReplicationStage().cancelReplicationForFile(fileId); + + // Delete the file across all stripes. + master.getDeletionStage().deleteObjects(fileId, fi, cowEnabled, null, new DeleteObjectsCallback() { + + @Override + public void deleteComplete(ErrorResponse error) { + finishEvent(cb, error); } - - // if the file is marked for deletion, delete it - if (isDeleteOnClose) - deleteObjects(fileId, fi, true); - } - }); - + }); + + } else { + finishEvent(cb, null); + } + } + + public void finishEvent(final EventCloseCallback cb, final ErrorResponse error) { + if (cb != null) { + cb.closeEventResult(error); + + } else if (error != null) { + Logging.logMessage(Logging.LEVEL_ERROR, this, "exception in internal close event: %s", + ErrorUtils.formatError(error)); + } + } + + @Override + public int getProcedureId() { + throw new UnsupportedOperationException("Not supported yet."); + } + + @Override + public void startRequest(OSDRequest rq) { + throw new UnsupportedOperationException("Not supported yet."); + + } + + @Override + public boolean requiresCapability() { + throw new UnsupportedOperationException("Not supported yet."); } @Override diff --git a/java/servers/src/org/xtreemfs/osd/operations/EventCreateFileVersion.java b/java/servers/src/org/xtreemfs/osd/operations/EventCreateFileVersion.java index 6a2869f61..e308a09be 100644 --- a/java/servers/src/org/xtreemfs/osd/operations/EventCreateFileVersion.java +++ b/java/servers/src/org/xtreemfs/osd/operations/EventCreateFileVersion.java @@ -8,7 +8,6 @@ package org.xtreemfs.osd.operations; -import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.RPCHeader.ErrorResponse; import org.xtreemfs.foundation.pbrpc.utils.ErrorUtils; @@ -22,47 +21,47 @@ import org.xtreemfs.osd.storage.FileMetadata; * @author bjko */ public class EventCreateFileVersion extends OSDOperation { - + public EventCreateFileVersion(OSDRequestDispatcher master) { super(master); } - + @Override public int getProcedureId() { throw new UnsupportedOperationException("Not supported yet."); } - + @Override public void startRequest(OSDRequest rq) { throw new UnsupportedOperationException("Not supported yet."); - + } - @Override public boolean requiresCapability() { throw new UnsupportedOperationException("Not supported yet."); } - + @Override public void startInternalEvent(Object[] args) { - + final String fileId = (String) args[0]; final FileMetadata fi = (FileMetadata) args[1]; - + master.getStorageStage().createFileVersion(fileId, fi, null, new CreateFileVersionCallback() { public void createFileVersionComplete(long fileSize, ErrorResponse error) { if (error != null) { - Logging.logMessage(Logging.LEVEL_ERROR, this, "exception in internal event: %s", ErrorUtils.formatError(error)); + Logging.logMessage(Logging.LEVEL_ERROR, this, "exception in internal event: %s", + ErrorUtils.formatError(error)); } } }); - + } @Override public ErrorResponse parseRPCMessage(OSDRequest rq) { throw new UnsupportedOperationException("Not supported yet."); } - + } diff --git a/java/servers/src/org/xtreemfs/osd/stages/PreprocStage.java b/java/servers/src/org/xtreemfs/osd/stages/PreprocStage.java index d271f1e27..bfd64f1b5 100644 --- a/java/servers/src/org/xtreemfs/osd/stages/PreprocStage.java +++ b/java/servers/src/org/xtreemfs/osd/stages/PreprocStage.java @@ -32,7 +32,6 @@ import org.xtreemfs.osd.OSDRequest; import org.xtreemfs.osd.OSDRequestDispatcher; import org.xtreemfs.osd.OpenFileTable; import org.xtreemfs.osd.OpenFileTable.OpenFileTableEntry; -import org.xtreemfs.osd.operations.DeleteOperation; import org.xtreemfs.osd.operations.EventCloseFile; import org.xtreemfs.osd.operations.EventCreateFileVersion; import org.xtreemfs.osd.operations.OSDOperation; @@ -66,6 +65,8 @@ public class PreprocStage extends Stage { public final static int STAGEOP_PING_FILE = 14; + public final static int STAGEOP_CLOSE_FILE = 15; + private final static long OFT_CLEAN_INTERVAL = 1000 * 60; private final static long OFT_OPEN_EXTENSION = 1000 * 30; @@ -148,40 +149,34 @@ public class PreprocStage extends Stage { Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, "STAGEOP OPEN"); CowPolicy cowPolicy = CowPolicy.PolicyNoCow; - // Open file unless it is a DeleteOperation. - if (!(request.getOperation() instanceof DeleteOperation)) { - // check if snasphots are enabled and a write operation is executed; - // this is required to create new snapshots when files open for - // writing are closed, even if the same files are still open for - // reading - boolean write = request.getCapability() != null - && request.getCapability().getSnapConfig() != SnapConfig.SNAP_CONFIG_SNAPS_DISABLED - && ((SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber() - | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_WRONLY - .getNumber()) & request.getCapability().getAccessMode()) > 0; - - if (oft.contains(fileId)) { - cowPolicy = oft.refresh(fileId, TimeSync.getLocalSystemTime() + OFT_OPEN_EXTENSION, write); - } else { - // find out which COW mode to use, depending on the capability - if (request.getCapability() == null - || request.getCapability().getSnapConfig() == SnapConfig.SNAP_CONFIG_SNAPS_DISABLED) - cowPolicy = CowPolicy.PolicyNoCow; - else - cowPolicy = new CowPolicy(cowMode.COW_ONCE); + // check if snasphots are enabled and a write operation is executed; + // this is required to create new snapshots when files open for + // writing are closed, even if the same files are still open for + // reading + boolean write = request.getCapability() != null + && request.getCapability().getSnapConfig() != SnapConfig.SNAP_CONFIG_SNAPS_DISABLED + && ((SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber() + | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_WRONLY + .getNumber()) & request.getCapability().getAccessMode()) > 0; - oft.openFile(fileId, TimeSync.getLocalSystemTime() + OFT_OPEN_EXTENSION, cowPolicy, write); - request.setFileOpen(true); - } + if (oft.contains(fileId)) { + cowPolicy = oft.refresh(fileId, TimeSync.getLocalSystemTime() + OFT_OPEN_EXTENSION, write); } else { - // It's a DeleteOperation. Close the file first. - if (oft.close(fileId)) { - checkOpenFileTable(true); - } + + // find out which COW mode to use, depending on the capability + if (request.getCapability() == null + || request.getCapability().getSnapConfig() == SnapConfig.SNAP_CONFIG_SNAPS_DISABLED) + cowPolicy = CowPolicy.PolicyNoCow; + else + cowPolicy = new CowPolicy(cowMode.COW_ONCE); + + oft.openFile(fileId, TimeSync.getLocalSystemTime() + OFT_OPEN_EXTENSION, cowPolicy, write); + request.setFileOpen(true); } request.setCowPolicy(cowPolicy); } + callback.parseComplete(request, null); } @@ -316,6 +311,34 @@ public class PreprocStage extends Stage { } } + /** + * Closing the file clears the capability cache and removes the entry for fileId from the {@link OpenFileTable} if + * it exists.
+ * Attention: This will not trigger {@link EventCloseFile} or {@link EventCreateFileVersion} by itself. + * TODO(jdillmann): Discuss if this should trigger the event. + * + * @param fileId + * @param listener + */ + public void close(String fileId, CloseCallback listener) { + this.enqueueOperation(STAGEOP_CLOSE_FILE, new Object[] { fileId }, null, listener); + } + + public static interface CloseCallback { + public void closeResult( OpenFileTableEntry entry, ErrorResponse error); + } + + private void doClose(StageRequest m) { + + final String fileId = (String) m.getArgs()[0]; + final CloseCallback callback = (CloseCallback) m.getCallback(); + + OpenFileTableEntry entry = oft.close(fileId); + LRUCache cachedCaps = capCache.remove(entry.getFileId()); + + callback.closeResult(entry, null); + } + @Override public void run() { @@ -371,35 +394,40 @@ public class PreprocStage extends Stage { long currentTime = TimeSync.getLocalSystemTime(); // do OFT clean - List closedFiles = oft.clean(currentTime); + List closedFiles = oft.clean(currentTime); // Logging.logMessage(Logging.LEVEL_DEBUG,this,"closing // "+closedFiles.size()+" files"); - for (OpenFileTable.OpenFileTableEntry entry : closedFiles) { + for (OpenFileTableEntry entry : closedFiles) { if (Logging.isDebug()) Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, "send internal close event for %s, deleteOnClose=%b", entry.getFileId(), entry .isDeleteOnClose()); - LRUCache cachedCaps = capCache.remove(entry.getFileId()); + // Remove the cached capabilities. + capCache.remove(entry.getFileId()); - // send close event + // Send close event (creates a new file version if necessary). OSDOperation closeEvent = master.getInternalEvent(EventCloseFile.class); closeEvent.startInternalEvent(new Object[] { entry.getFileId(), entry.isDeleteOnClose(), - metadataCache.getFileInfo(entry.getFileId()), entry.getCowPolicy(), cachedCaps }); + entry.getCowPolicy().cowEnabled(), entry.isWrite() }); + } - // check if written files need to be closed; if no files were closed - // completely, generate close events w/o discarding the open state - List closedWrittenFiles = oft.cleanWritten(currentTime); - if (closedFiles.size() == 0) { - for (OpenFileTable.OpenFileTableEntry entry : closedWrittenFiles) { + + // Check if written files need to be versioned (copied on write). If the file has been already closed it + // unnecessary to create another version because EventCloseFile already did. + List closedWrittenFiles = oft.cleanWritten(currentTime); + for (OpenFileTableEntry entry : closedWrittenFiles) { + if (!entry.isClosed() && entry.isWrite()) { + entry.clearWrite(); + OSDOperation createVersionEvent = master.getInternalEvent(EventCreateFileVersion.class); createVersionEvent.startInternalEvent(new Object[] { entry.getFileId(), - metadataCache.getFileInfo(entry.getFileId()) }); + metadataCache.getFileInfo(entry.getFileId()) }); } } - + timeToNextOFTclean = OFT_CLEAN_INTERVAL; } lastOFTcheck = TimeSync.getLocalSystemTime(); @@ -429,6 +457,9 @@ public class PreprocStage extends Stage { case STAGEOP_PING_FILE: doPingFile(m); break; + case STAGEOP_CLOSE_FILE: + doClose(m); + break; default: Logging.logMessage(Logging.LEVEL_ERROR, this, "unknown stageop called: %d", requestedMethod); break; diff --git a/java/servers/src/org/xtreemfs/osd/stages/StorageStage.java b/java/servers/src/org/xtreemfs/osd/stages/StorageStage.java index 5205c5e9a..6d55c8d85 100644 --- a/java/servers/src/org/xtreemfs/osd/stages/StorageStage.java +++ b/java/servers/src/org/xtreemfs/osd/stages/StorageStage.java @@ -138,8 +138,7 @@ public class StorageStage extends Stage { } public static interface CachesFlushedCallback { - - public void cachesFlushed(ErrorResponse error); + public void cachesFlushed(ErrorResponse error, FileMetadata md); } public void receivedGMAX_ASYNC(String fileId, long epoch, long lastObject) { diff --git a/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java b/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java index f08674187..b5ad33b61 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java +++ b/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java @@ -244,7 +244,7 @@ public class StorageThread extends Stage { Logging.logMessage(Logging.LEVEL_DEBUG, Category.proc, this, "removed file info from cache for file %s", fileId); - cback.cachesFlushed(null); + cback.cachesFlushed(null, md); } catch (Exception ex) { rq.sendInternalServerError(ex); return; -- GitLab From d5775132fbdde22e4fc919c63a12f83c62e7faf7 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Wed, 6 Aug 2014 16:16:21 +0200 Subject: [PATCH 063/192] docs: Fix parameter order for snapshot examples. --- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 846063 -> 1005573 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 10 +++++----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index 89080748f07b233210bac46c2c451e616a2968ba..b6ac9d9c8ac9c51dc2ec3137d6c28cda35a1a3ae 100644 GIT binary patch delta 367589 zcmaEV(YSSkZM|xMi<_>Yo(Y%gg)2vIa2YBXDC8$)aoN}?=m#t4yXS}GE9ko@Xe4JO z7L=qG=^1J&*x7NV=B0oXnLrh51eRtdXDbAkBo>uu!X!?q?}ZRwEQB4+*Bm<&7sP18*i*xj})9n22c$e z&iO^D3T~;1C8b5F#c&53;ffqYAeevy73y9ic>FjPC1+%oq$Y#RLl_5&A*}v~MYb`D zY49k5MUFynYEfBcGO`N^MUydVG#MM!!@TU7S6q^qlamOFO}G<{K~aP?hDwuQo;KDq zL^Bi~O#wxzMX80QnZ=nUNRBi{j+c7mL|%+)DoW&=z#|9h(#*Vcg|wplT!nz5RNa8Y z4HeVrdVRL z9$dPh1iTTdgH7Sl33f2dy^!pdS&^Ee;2BV6qM#3=%oOrcOUm<$vWpcG^HLQ297B+7 zM~-%Qtk=6JXrS4S5)o$bXm>0v$eH4OA3kvd)O6httBBR?3 z*?e<&bO)8@<$=tGmkIfK3cES1(^m;GQRnFnI-w4;DSf21yK=;RZ;}u*h zf`SN?B7;lv3kpD-l8jVvl~fO^IVG6|IjIW%!7jxL z1*t^}zKO{hnR%&j&(&KH75~P1D8Xk5kN@!0B;BOM;?xvS?O#$_tPqfxjxgO4f8>{B z=GW)x8S5GAp=1h6c;tg}8nlv8z!Ec-IAa|-Zy4*LF$Yn={cE+APefj4Jktdobe4$zbHXuXaJAv zkfQw3q@2{^jQsqP%)E4vp-?k%#Vo9P2bow8Z_F7Y+D!1w?3|OCnulo88G@Tk_$nI{ z)T-DJsmX+`em69%Cn5?>&}(=@L`w;K6>o^Usf0)wAY+Z{kxLyzM2iW%+QnbV8yew^ zKUDira*?5tg+e`~xvhb2A9^)!XoM>^VeKFj)N0ev7@kMN@^eaaQx$v@^Agijb5SDH zxSn7R&C@f%Xk8n_bEtDsY9c7vDL^bil*ooC%`A9*3o4S4gQOmUn!OwK@5K!&)RPmqGOUe5%z@-alTop6?{INMCHk`=YWL9~|O1#3utehxUVK+AvJ ztt5yu^-R$UR&#g`gq9qrtwuxK4I)JDGu1QHt4Hb38^YT~8aN78Vj4prb5Z&nhKSY> z)U}{20`5H36DU}TX$XPrL(S@lmJqsq=;dm?A?^kcJm^t9gJ}FXrsQVkDZt|rQtc9M z^W^E7!b?=x_=h2)(c>HBtl*MZk_c*6DL5r2XO|X0x--uCd1a|Z#hLkeh&)eB69{A* ziWiI!O`!VVS$`$9F)Wp2f0=W4`#58?C=A(qa5u)i6oLT}dv_S1$|6mtr zD-mISJ?@qdazZsi&7?+%=8sEJVkWo;0&3zS%rziXU7A7)ad`P-glPVR7N-`W#i|kR zmJhNs(MoS4MDwSjB(1o#Br^xxZFS4cfsGK6@pW9AlelI@^dniGhvJzB&X!Ru03$^lsjtFXb=R4O=@loVwql_C%77~yUop+*o&(QIT~4{s&;=BH$) zRf4<;sl`D(&XS`190ic&;IbN=zm13)lLAE+N@u_b(P9eDODrhP$S;8y2_Anl!rfMa zgs+|{S}-A6Ng=7lCFqG2XZr|NKOx)(PJf7&5j18&O$9_=BG@1@L#>>Q5DlWB)Wj5h zaFwqBO7sdC=0ohqnOPBWXNKMhFhVqqLQ<16@-mYXa}-=sOA<37H7g{x2(^joL4(I2 zvr!93M4QMbGdHsYT)9Fb4AlEEBBn(IG8DB`M6`&4Q%j(QEF}JMw|$`TZ-&~qH$pUf zKq0K_pO;gKBY;795qBe~v>rZ=Y6h>9V8h3VmJrrJz}X5y8czcmiW;(r#t=9V>JiC| zU>nE`Qe?wgj7Eqy5U9!ol@p-x0*oXE3IUwWp?Va@qL<%@<`AAFMog2)45RdhHi_!9 zxHP~4fd~hjO&(b8MHwkGLbP?jr6WoqOt5WZUXPY_ks3EBD?I7=pmsZHpbl&0u`?Hkm)mX^p2-7qB(@6wlyZEIRr8jHAWE4 zp@5>)l+?7$ywv&>EI~s|dkADYO7UupXb*vc2hlbGwWCuM^79m&ON&eLb5UCl^^loN zW4w(dcwD0mR2n1NNMV^}i8(2m@HA_TyZr+<4b+oGjK3KpHGN8oGQp$77&+P)cQXfW zEJ_Q<7%>bKkW-qjo0*3i-r)Mj7-yR%v7jI|FD0`=&k=c?%owRPgEpUFjI${NH_8dw zsCr{WQ^q4PB|pDF!85NUH63kI${1&p1~&ZVgj$dpBib~cc_l^pDW%|qj))&m&7M?NA#tl5&T~NXu(W-II&&>@2H5+^~ z^HLQ;OEPmZOOUHiV_YqqXk&BG972$Sg1%d3i9#&W96pz^`DDj;!puenX45ymW74cI z?LWS4J>-yC z*7ASm3u|_kg%dL8HD5ci!{NsDC*SPa{%K2`$!fVcRj1}J^K$*7UyX86Ml%u^XBanX zF;_DrMlPw-r(AHWnRoAuPG&$x1U?@QU99dWs2mXo^!L->FZD5WFJ5K$C{i~ z6;Y+@dM|#dTNkrwbMgDr2Mrdt@>%g|W~muT`o4A%xw19ZNJ!)-WhvO$aOsCs7NjcZgQkGE^quqbN>cMOONteY z%|U~7L0tMlsl|}lYXxI-(71CDm%eXmN@k){euY9bC`3&yP4z&{Itvp+JqycNF8zSS zqSU++1!Hqi4dv6YRRolAKfpjkL_X#GLq?{PcXif|N8(E`3N%t)StQ6=Q5*9Aji=R+OjU zou8AGnw+i4r4JtB&M#8XC@(M9%goCzPEIUH)ypqR*W}U<0GBMOMG6|8PzeQ?3Izi_ z6H`$03Ti@Tex6HWNveW|iek7J3$z zrV8dJ=6aUqW(s+wIXST?AqgE>1V<=_W=n`>LvuX?BSS2jLD33J4Q}~)wj~On){UE? zg@Q4-4IZSR?`CMOU~CTR=Ldl@j(!Am$729le6k4>Bp#c>v(%(eMU za~@N@u?4bSm?^KMSiu0kreI=X zu4imwq+o7n3gX9d=?9l4l~fj_>icBoW$QcI*nsj`eX71AxJuIx)(;Kx1YwPgl9B=| zeSJ_mg^e_W)2W>uas*o-k_RMpfCDl}0h~GvO)T}y4e%rnaQNjXWod%bhg*IgG=_}~ z6^t!FNe3LmCJM$Dpg}EIEb=3VmWiRobivz9!kYuyDp~4HV68o{fsn96EHcR)Ek34NkIz6mY}i%M1$fIM1xa`f-$(C1LA{AF$H5wQ22rP z5Z@YudnX`1#6V+9a9O2b0`7kVDVTu!5Fi?2o{0e{-GcaF^Xe5$z&!zw0K`BO14zi3 zfZO{Zaj1cY5C@tVLL6uUZlVV%n1CDOAR26-0&-9r!+M8EfeTHT&_q?Q08Uoe6Dr6e z19(COmmHP~rlux(phz<`GuJaUFj6ozGt)D+G>+xccLZm4cJ&5xST_E80qdZHqbLNGg2_LG|;m!Hc>D&G0-zH1l1zA-DLz>fQRHTa4G;fjB4UV8k*=C8=EQ^8CvL>8Y`F@8S7b?!`xMmy3P{T_=K&mLUtJ_HmK_|6HAMF zJy0*k$kbd9lnzY|%=IkHEU?BU!fB8eA+pmzNt-;U)jLOn{DnwmuuwCxFwz6{LJcj= z^b8G66ih4)^^8nS2sjPWB}8@_D7WEpT74?<2@UQvP>MG&1gA7pGgAcFaAr>8od(UDCME`YMkb&k#WMrgg0ZM3w=6V(;IPw5!%miHRf(A^WJuW2oO&8q2BV12zL1qYXl7g{? zrJjYcxq`8giJpu164~@4Kh&cUC+YERKdv1RL|5LRM(q= z_%Qd?gPN-FmE%YQtcYcVX{h)r0yN*pr`;xw)R1g^_}hxv8G9k-37Ag(avE zBqn+x!-~k+16M6k59_dyp8Sl=4E4-S%oL0)Ec6VF6^zV{L0n>-2bt0YI}fs^#>9Z? zb%lbFiK(8MnSzm}sh**!u>z>oWNwVnB&kPVbY-juTiy(IA9&mf(#j_%da=YVq})?5 zGP2Y&H!`kQFfy^wGqSW)FfuU&31AODc)^F6GbpPvK!YyuP6Mo9F)}pPGXvFWrY3rZ zpcDuyXbg?8I}JH!V73BGU{e}6+D-MKK`2mPnV3!u%zdD$!pz7NT<2Pt87UZn3L0Wu z2dZ(AD_j#pkpDrOsBk!sEZ12W>X}(sDj1m==^0v@D;QcDgZS9pSC1Ne7|{#vKT;{> zL5pQWGgCb?b8`hFb3;ADdLv^6Lr_6uZjRl7sP4lk_`v;I3fxz(fYh6SIncyX&&&)| zAe-qK8W|}Vni+!l#JCTm-~;!!@wktqE(Oee#>RSPrltx;<|cY(h6;wDg2og_j{-IL zkP1FX!D0y8Q$mgO2Q66)4MEKTV+A7vb3J2F@EKX^nVH~dw!qdD!Dh>l3Oz&6PzEgM zToj@~;|K-{(6J|Q9|rf(lL>5&4(u-s&5)5vQwt+KH&CY=eOwbVU<9)oF>YmSs$c@1 zIRuScAq`^L*?~qMQOB*!3?buI`ja-X)War1z^=hQYz3bFKpB2CF$Dzx1;bV*hM-zE zNWrAu2-LU=QZO+Bb#Os6sJQ^5p$d#Z)gOot9ZdpHFM{}B7but*Lr0U0K`n(K1rzW@ zA&7>WXACvZ7-}AP&JQFHF|Xdl7*tDu1fT|jC-Q<6Ou$ohAR6jG6R3gU899(R)Ibxc z15F?XntdJb|JArb}tOnXEv}@FgGyO zvoN#(SE8Ur(xCBJOLJIlk2Y=t8|cC)%)rq^C5M@r=$V-sE0|fB>si(tnJE|2&h6w=|Y>p z=JJuUI@yT}=00OXJyR0}V?#4N&_srriLoB?*j7E#)@!tI!l=%{8J+BSM2$vR3ad9X z)-yE&HNegFj4c$*j7&jX?4buwVW5CRX$cvDayD5mtJlZq073%}G(~7?VGeGCgUT#3 z19Lr73ml0bQBxxJups9EPzi?Bef7}MaT0nkF!zBPK89fD85o)^j7>o!>R6oyYbas#s$dJpz-g|Y!X_Ln%nU%&Af{l4fi`!V7@F%DnZc&s&@u%y z%)mRX>QSc5Ax&L^fks@ILG!Dzg}EMR;|FMn3)E6FwzSkUvV@I?ptUZMN@CDvC(Hr` z)MTcn`|8cXgXYGDW(vmUkQS7&g`u9YA!y15%Zv@8KmoZAqagt98j#{XQ27I2E&(db zk@5p908I_`jEybfO(7R}WjN zgFWqmrXNgbsuKh19gYd-B+KNUqa421T=y{!{{capkZ`V zJu?$aaCgka6gh%%#xJD8s7GoggZt^|4kXik(7XW}N4Es6h%h$MGc_<&FfujOGl4IO zP|y!X>HokBX3Vf7yMuwVe_>=~u4f6V|BWmy^^C!l8fcjd5pj!Upc*`+K~B(No5F#` zt%0SUrG*hB?OB>A7#UjXnHmuhw^$l_urOMmYOFa{FQw0+P3q3P4 za|I&^hHfQP22>^@UtJyXkiGX-N)BRxY?O9jx-x~U~m@r%)>0uPyy<32p;&(PRZ z&(s7o`ER6WY-*-pXkxC1t6D=Y`i%83MykOhd03rCM*kaHv=|y0=ox^fzKjj^EKCd) z4DpRr!%G(Qn5{Q4L#}o~gU#UaUg$_Qp;eNQVP2Te5QEJ~YfSR%V;_eT}$u z=u%>%>cY1^ERE7IonGq%5cxBkAiw(H(K7t`36q_k8AV&l zFWkOu|3q!$%upZIy|0hlIukK7L(llsrzPe-`yARMEUe$|wSPO&xk&2T{!X*zUzfeD2>woNf3xD{R_TTe6 z#0tEFc-JXOaZNJHd@#X)b6wBLz72;L7e3n=T3r8Q-n{iK8_zr| ze(-~7hm@6zP}LD54K|hSA4+>BOkrG7E~m5N*SbB`cQ$VMd79;g<%31MU8!r_ybg6r z?_9OaM_5RCJL4qN!b=No?6S}`>~f#8tI=w6rgLP)^IX@Lk_)}%J&GJn!mbGjKWSXJug{^iLAd3HJpbdS z%9@SSOj_@{o(S8`vv0yP?IOwCBR}Ux|L-=IFu7<}|Kf~C^CVY`m0Sg{X4s$WTwvg+ zxNDK4e%h9#1z(=MbUyy&;6vR+u{68<8r@@8W4@anJl}a{zEo2{)@|>V_m=3raQ!u* zzM!(|kEMcX@!`MH;@z22e9K!hXH0!6bl~~+d&0hd_`l~x+%XGT^wj%EquGwl0)HxR zmQU2Z`_9wi<%8x#hqhCHJ6+tIe(F?zXPCWCdSc9hEjo7IS(In@a1>v)UEC zam`fE6EFX-(-e1pyY2MREhf2EReX%;cgy?#9Gg^swxdPkRMG~uDQnnrP%btsJPhEd@a$rVG_v~wS?~SD|{^d1b_ zyje}8F?*&!z4$7jivndIISThJ&#U=d>|3}x&U68<+Nm8M=1$){`^wsl%Q7{~DlR*1 zKkNGW$fh~n_mmV{8{XwueZANH)97l4Ym?^%|D#Iw{-?`r6jnaus(a0^K6z#N8m_+M zQ~5WrPKsk%r@P_TQ~vZR&D&-lU(dY%OZ1$QHwG5>9_DP=q6(8&Eqq_z*DRZR;P?@<2Wj&c z_9XBG&T>jOl4`AO*wxq5T~HRe^HS*QZ&t;6JU80k?|Xjy``*3(8Md5x_Xf1319fwU z33%xp{CaKx?zXs~Axyxxkx9DVgLl1&!~3rg}haV-O9UDgy7j2JyiM zCj}{(fH(huXs7}+P=gS}2aW84Xi&#ENWlcUU&jQxwZH_jfkeRsvJFMS1hPX#0n}~* zO-Gu5w-$r+LCu41S1^I>Ls2lXFaY&XgFu5s3SbT3W$_?Bq(C=;>^x8~0WY=(i9;P| z0W}c3E*m5cbs%`zaS&*cE7&}g;vO6tsIlOfS5ICG96ZMgn%gqg19=kMxUjGU?=?Wo zZJ~BfVIwxE)pvasmx(DTde9w4p1WX6Ye92cpmVW|OilDGOh8jxmU>18SX$rUgBzjs zw;9GlOi<^Czz{3(Bbd-BdNXrlJtX4J;!zupOEhy;9_Lh4p#F4YxuU zu$Y1}uaU8W5olf*v^m7WRL{f`N8G}T70hG@Dz3pnR}bIrNcKP>G;Tq2a-dubE>_GG zOwBBD?{h%pih9tI5*SenuIIq+qn`6X?lLx0faO|KQzJbS1B?1tZ2NtX1`9#%!zfn3 z^)FT2S04?n%0Lrc#wMl;h9;nS5fcSd&|s!9_HkBNRR%dh11Zab+XE!I3$(}&#~>jr z$r%{x8Gr|nO!Umm6-*5c^h|M01w&JuIc7x$ZlPdt86}InAzN$A6^so{K+9Q8EJ1rS za81R*4~PMsuz^T$(1Q~oEhjAQBWLsynjuWgO!X`+Ey3FiOf4)GOw29x4B!iIppBDy z=)v?zDGua7%oIocdcwriNYAL=0<``Hv?a+{!Nkl^&jL#u1$5XYJZ3RnMo~2ZYJVb4 zia^sGXj_e`p^<`-g|VKonYn_AiK(6`c%KcHNgKG+Fp4?wR$cs&T2JZ%TN6V|J#)~& zjG>X9rJrwnRm|1Hb}4}zh#9x=dV*@@FlfTi*w9eH*wjGJ$lR=6!PwGF&w}uvKFEC-5ez%n z2yYdOw}u6k|ENs>V{=1212YQ+BLf3H12Y9<3j;kf!VA1X&O;x4GXd|h#vi@Jr$1=c z0F9@DHd7fHnCgKJ8#OjF(KE)ifCHX2Fr5Y+7px~g=n!k;VNL_D<1Q+3sh$C7qSDwv&&(3EV8dL`)C7Bz1QMO~nH74F19gyHMyS_H zLeC2pW`>4(M#hHV{UDZxpk1N{dgkV)vGrJ+ztH%EoyCLfG%D5zAg9%v7%LcB8tIuD z8z~rp=8Qn0XJ7*2W3RH{PQ$3Iz++FO=1yEQ!%m<;)6e0E~*x7*(okO=c zZ)#`?YP2dCnV9H-&R7Cr znHw7^m{^$TnHga3rz3UhKzk=qN1n5|Ai;|z=*a058yi{bnVNt$v4a*tnJ9qzDHi6Y z3ZMmfCb&j-A%&@yo+;{-dp*c)peV=UHZnTI#s&s@<_1Oz#wI3u7KX+O#^3=;BL!nq zGd&9nEQ43zL2*Ri33RgxdT9?yiqvr*Xo-xasi^{NcbIX#k)fW6p$Yy;cZB<}t?e}h zpLzpxpNm4YDL7AqOB8~KSJj)MYz@WG4c#MV4q9D?ad;J^7=YP~D2!01=21!}LvX4A zPuM`p<;joOgi#7*Q$vf%6K@D_KDIWTqn_|VN2Ztu9hs7L&=Hox3A~*$NWruoyl*iG zbQ}%X$)?b)WXN+(ps@q8az3^r4=hde3@nTkK*Ro^K14leOD$+(%*@0B)S1BB7{F2} zft?SF9x}>H!CT4o(mKF+T2B3ZLmI|Q7)S$UKGegihIM}-punxa7#(^oOhQ#!5 zh#avt0iC#DVxeFPTHk7Ju3%ycngO#=Ff{{>yW;2+BJvcr{xl?}snlXOHZj&Swlq>O zu{6~)10SvdnyE8V0397!gROyKWD03u7;oFpRu4Pz72IHfBtrBC26(p^N;At8yw#5A zW)_w_4Beq>S`Xd>8>C1dX@$z3dUyUdX}J?+fvUGXA#pV#B)sS(?6^u_b7#1)QI-fp%o_ZvIMK&&A@)&ynpXL)_N>^fiOY=+6zORk7^3peNAd8AazNg+qq5a!Dl<8 zl@wq}m>*F}3c|-#g4*wvCWZi}=$#tu#WxXC~v5z5mFxo-^w5-I$5;Qnxq-O@+myF_Af^N;pPfpCq z$S*FjGBz+Xw$Mb`CS;1Tg$b1MjKSjs#N|}zxH7n6f$D|VfR>Pkt2vHiS53iN@nK$ zLp>t{vwAEJM;>*?r5m(t*#eu@pt1scRD;7C}J5>ZX+W@&@Lyi)!>c=>@YA>l)VNxbc0Tfu`s}5HOfW+T$({`dQ%I8)!^;6 zj#*rg!W8CfM3IiWV`prRZ~e9D^o8wABAX{3KE_m!WraO@=?-4yj@ljs?;9YwJ&07t z!IlI0Q&)^6;gQPib?Q5 zCd|7o3eokZSTviMo9J1ZnPSEx`VI+fnn82IhS*9_@WuxutHGMnV2w0rjRiUczz`!x zgOU(vBparis0I1;;7jfc`^iaMia^j@uud}1y`^MZ(e-En!6s$sxI`n1TU{b zEu6t?)F{c$;Kk%9*%|B*Xj~G=&fpP1SkeXsCyHK3el|0-&;xB9!e~yJBZsC-y+X7p z7Tut8u|XS>F?FLCC0I0@7@F!CVky*7Rt!O%U60;=H8M8T16^={X)|&&5Gg++a;?4_ zY6lFF2*CYPSho~144a=EoLZs~J^3XY4@z0jWeT}J;L~G2uF3m83fH5j2FR*?l$;G& z*iUNCM(T(`w+@(s*R-Ja!|Fl(CTb10g3dND1TXnA&@;3&RWLC&)HAX$Q2?!0GseFD zpk5;_GrhDZ6@K#@QVRp@Tv$4URE1;@CK;RSnHidZ4{bF7jg5d#vH(q~*IOFu8Q_@Z z$Kx`TM6M8R3SRaC&0T~_N>lJ11yFxM3Of|-1j6Lt z1*qac(p`^LyRo5xo`E@*vJ#vWVcHS71T|wIXBm_RF4DLTESF4v!X~H!Zl!~p%2`~d zC=>2Jsd?!o844DLCg7`VCO5pBS#P+?HLK;k#rE2Q9|jid)!}&in^yA|`mOp@5V-Wkwu~vY(x0c;e2cv*t20-HYk_u_NRJY0=uWqS3-_Gr zO=lV>=o!a-Bp`&^8(GRgYES8B^ekLmIKf`TWa8!f& z-XWvY%h*;3dy98*nZ5h-;Ml8;C5?CY8LG`<{G=Jir*iyQ=<6d>8+R~W*{n7_VaBpq zs~39TmT%mq$;vhBd5s5i*~Yy3_eG5!^Df?bq4BU@W=1G;%6SK+OEN2_%=vP5lmVB*l z`|kdLrzI%N%wQ77K@Ej{0g(rCc~KB%WPW~a7xP?uh z@5GIti>ui+52SstO*F5vc>7H!WMOYj;e+fo+m2d24vK9Iloa?MP=4HAUv1hapYZMb zdJgku**#)RDCjTp%(`Nr{8~6+W5cA+3JGjd;cv=zwz1E@A&}n0HIZLCi|hEg%p+W@ z{_I_SZvFL-CoB&7$w(I1&%aS0KU1$@OT+HM*)|Iob9#QM|DROP*c@>5IOgUxQ!L9` z(93&pa!0NG!535Dto=>UZzeK@Hszo<6Pbb+RwCa_WNL0X`M}3!M&rpYpY)k53?`R; z@&zBz8N{Vulv-?Ps9*}YPz1s?RWJpwiGa#lDwsm97Xix}87r7tf*OhtStD}=Q}F5O z5U#PIf*E8X0$8!Jse&0~IRb=hsbB^^k2{D6u%Y8(A7Dn3`CC#)}M1kOX77^xaDHz{C3r zW{|0DE`8UElGMBug=mG6qS90_0V;)&u7QH233T6PfPG1O?_%? za|08wXDy6Pjlh=$!9-Dg3##sdi1ID8<;evKcyNe=E)gTwx0ZS)rWT+zBA~{Av4x?r z8E94#8lRv}jy{wPwh7&{7NBzjj0}xIOZ|-X42(f>3>xz`H8VjGMD;2(R}vAipg=*7 z*piYo^3t)Pg`Sy-IVfF$SLzZ<$LM|~HyMLRCy0tzP`IG`mh5Cq1>cg9jKQNM#3f@; zxS;zsmAqtZXrgCfWNrjH3ffYSK8YB7E;unBg;X=>9xW+JB`XnIfY#v~TACPvk9o4B zQyPY>iXkEmLn={p&!&?XtGZP1EICOSJoH7BXQ9(jC?#Om7ohSjJfn(@^ce2^FYmD@NJVYc~JY+ z3_Q#jq+kYKcoh^2I_oD`5Ttx8}g!uBWNLkt=yjyFpghLxK#cg-E3^2RB8qhdFX|*Mp)8 z-tC~4-Ow>waLs_--!O02Q{8UlS_!}1AgduO4XNdC;fBTcu4zItQgSP<(^J9689r z{wJqQ1((WL{cVJtzrkVdYyiq`pd%{HK&v|RjLghH$1Q>mtgd%91k0HknnUEw%?!*f zOu*Xw6bzBZ86f39X*Oar6>6a|#KL;eMXYewpxOu-A%ocnF0&zHXT)D{ZHlsi3N+aS z9_oY609ab+f!7@2y5QOreDo4*7#&@=k%1BDlm_tXWkq)=gD~BQL3orYN=>98 zdC*up>J8UM3Z~Fwq#$btQO@==o4j$Y$aJnerd^PwzA&300fjbxX$GE-KpDR@11|!` zIev+2_!2SkV+LNUoS&4H4jw6SQHVAJuik}*E@(&v-~G@K`(ds|gbz}PpqzXN2?CT^ zIx{24^2zNt^O%BI>%q&ZVFuy|22e8yEf_#0C(*%R243`uJZx(QySoBDArD&phM3UA ze~CKsl3ma=5vpFuBrdM$c<_=~n15Xq>Z7q~HUZrbYJ|B^3cPF-p&6@QV>2T?b1aLj zz{8{%dh4MP4_}f2+E|7;IR!ex95IuLh=6ZCL5dnt;G{@$?nO+xgRVFMgyl{Gw`(sAR64a zLfME3Q4CA?5I2%L)eTL`EfyT6rO-%KSEEG&ljP(pHK_@!kJRwF)&lG(JCL}xwyR076u`EhS zEs6#$^f$nMV3M&pxX-CzYyjFBs$gOW3OvZ+>iD;=YU!DvZ*K%$F^Nd%A@$U_Sl$qH z`J$PEAv7+*2VsF`6z~NYbdL$*9DmSlwFrlS^DnqGQUGsp0;e0?TgK6sznX!w6|~ra zmdse|6VN?Eu(hJ_`W%a96C==~5zIAy(0(>Pt%l&sl`*uMf%C8%EQui12*@iGP|F{j zi+VuIyinT+Cg6RQ+qbndUE{0=wSUnr+(d6Ff!8jh7Bb)xm6AdRe6v81f?2%@Xut_| zX%A?`2oc?s6)K<;MNCZ16-+HaXDS#e7+D(VS%U6Hvb4}MHZ{j_6a`{e5opg7`iW;| zU^l~JhcfrogKj0YG&fN&u`t#%Gy^U4G1oHyT_SC1qGt%+Wq~uR=wTjt2D-2S5pUJs{Y^QbTAh3!165#L|iZH6&qyf?+dMud#u#o}~%W zO2`D5&EOOT(~d~-sEHgo`J=Rskk%=qY*55j$C?^VpUBT9vVGA+CPwyplr_OFiV&Y;#uG{(4mHvc`vK6li-Jz$z}WR|W(qlqWBZO7Onz+BdnPjB z*#Bk*TRM)|`DF%PT~AT8fa(>P??8zdwBWuTo&&&lHsP*n%)krW(Y3>ML-T-{r3LtG zLyU-lEoFz-7$D0Pf)wh()f_DQnVDMXf$kQ<)D9i!L)VU~+t^gk*w_fO%0XXL4!TJW z)C|;*h^&uNfLjhapA1{x2Xz?jSi4juC11oq?PE3VGIZB+>8<;A9cFuzOX_%poEybW{2k8bKEn)%LRD@FA zqAvhP3Ux%F*Bcod=ouOrV@4Wyxiul58yXwy85v-Sa&T^e>Bdv!8i3OVwEF_xEg2z08G-@}QKt;APUpXKwIf)gYvk zX3U^Vvd!ut3)dCQz>Cd;6wJU&ztP$tV8y6zB)4N@WNEBtVq&RaYHF@$YHFxZZw$J3 z(-d-Ctr>wc#4vB3F#|iF0;eG#=3r!Dsb>i~QN|Q>I34IxRYS-L1!l&27Pz`L$ju|n zn|mO^ipPDV9KQxWbJ)-Xbmg+1fd%MNRRcXs(8_ERLp=*zC(Iz+hwbW8vwCoR<8fdr z@h4*$fi_rzE_4AccQOU}@DfOv%Rq$@II9rZ zDnMCwj-eUSDgd1kUvGij0)v%mEd5k(-8tr-G^o~0pZcii@a zidnC8>@cga7kZdWYR$ky<`flrpk{fHLcJMy0ez5y8F&aEy|4o*LUkM2g`E-T z6hb2fQ%fT~&>B%A6C*uC6Qg?25?RoNd9hf}{zK$gtQ{^3(8v=-?n4~83fgmTVQj8o zY+edH>r;caAUqF`ufs%Ka$tYBzlp=V?QT3LXlL_rNc^mA9uERE2P+=C=WXt9E&SBR25G1@5Llnm1hZPa2N zK}pKu0#~sp{Tyt%A?LPZX;;D)F2mcj*mN5k8|fJtVQF1~7l%XQ1+=U}AsW@+P^TMO znCY2WVrf@`^BzPymp-C!K<(WS*CjQUM4b4c?*>{S4qg=w+fj)+J_9|BaJ$bMrdAe4 zGpq*^n!(nxBlUh@i{E`yQ!*2s@+%a;1Ba%TpoCJRRNIo z^Ppii&`}8Z=WWcv>*ulShVQO71D(5Uh}jl32d}orqd5q)H{aCIOwYs!b7B#6&Kv5e z2g2cSt3lgoEi94huIc(~m_)(-Uo5JP42<9*r^Y~zd6aPqP%_}e zoes_wUu-F0_$pGApPfg77ESIs|m@w}Ar6U>#_|Iar9?bOD<10$U58x&h5% zLOX|q52`drKa~zuH#8TTS(<}ZJYw{5%#lu|gJfc?+KtUE^(+jrBn{ZIA6N;3RX1pJ zr3ID^x{#oQ$F>(SJLZw28x+IP2uA5ILAppNn{UkxL7Q(yx9{G@#Kc-}4qjplvlx3! zgU@tBjcM2_WU^x#x*57Y3m#lxhd>K^0>e_~uw^gUHA7l~rk0?KbugnD>~xriy-Chk z_(K{x2|9Nhlk9f$!%Si9M4TsR4qi}#7QUc%63MMGL}!Pyvo_5@b#M#i9B%9ypOIc#AOICc>cgr_=0&I+g{ zACIAe88l;H%L_)69p4FWUwDeCkF6fIrUGm&_M8AY(+hd9z#O)^gSebv4xR8uiYeIA z2}GF(b_g`42;~IyMGWRBnjtv>G!AHJhEyRzdt&CW$GeJ)Hf?10_b%ED~pq2yRwG2d;16WcQ zY;qcrx?oELA|i>XQNc6vFjs@h0TkV^asYIqIhJAo?0BeVd*a%)I6@kdbx|6x<|c-a z*_A(+nS|M=>tDn*d~XiEHy$lmLCKHgU_~rlFb5wZhT69^H?F6+^9a9m!oiq4yrm(U-QELl$*F^BjRjH~LXrsG7kAO}zrn zk_J2r3rz~3wN_YkD;OJF=oy(|4!oG7%z}avA&R@fRx5x`*{`?6GV*N>o=AsTjg;Rh z&F-K{CFmIz3i<&qZVLL7Kd`Z)rBRFRg14FWun{r&ZH_tlZ4REQq$rt!mIeeV#MUDn zWMmGW^M?fpq$DDD493{VR1dU8*+LI=JSXT>O>@vt73hFzOXTx;>#^Qs4;q2NOr)T! z33DAdvO&2DS{o8sjb^&oPVK{{C!Wt;)6`vJ)%pffB`a|Uek_0dD71+4Yp`A3-TkR*vVH*StO z32P3XR-z<(fG4QYvjsh+u+v4RQcntMw`DPA9} zfRsUSt~4_TAN&P#8YqQ;!ws4@2(=W^r;N=Jnn7bOkYW@xY=W)TWQI}vBXq;tYo-IJ2N)} zmysy_67W2qdGDojJ@*^*}8eOA|c{Q_#G(8R*g~1<;hGg%Q%q zy?W%lfoS1iyOzKleTv;2JYx^dAOtH9ymCrnY>>flLe;uA7> zb`g1#fI0Y@aFn4CutT7ML#Wt9nYaUmEQ)4G0Rk#Djj*g#GY3zq!U7iD!N#K7)Z9qV zz!*!}1zwr}(~ZMw6Yy*$mL4|x1h2U{-9(0zp9sKQ}2=z=n1 z11uw<;249s8|SLW05KYHYeeCkUFDVCj~F z=Vf8hgUfDXa}&_j(3r!gD05XV^$O9D7=U>k>U1Lm&?F}o-N?(g5J>}4(hw|YFe_9J zka@7lEz~M>vco%(?Nz^+q}l4t!6Se$FJn(6;0Zv~k_WtljpULCX_NrGSRqKE-W)oa z2-@@kn$197nPm=Egz7f(t5ichBhVpHpd%bXR}q<;>KU7w)GL^Qt^>h#7ZJ+kw-|jf zu(K(5T77Z}=tc-bJqyr{5SHe8p!NU878ZJ@7DnJ3m(2{YZ*9PJ6Eq|oiFQ~${*4Ww z)qdudh7U&bYD7vAV4MDTZCRj#?z_}FWZbXrSRM}{vpG!*oD5C}B z;yU52tC{z*5OHxG=v;Jg#e%47EJ(Y!4p!G7iV+L&ly#7TMLpzbI0XyHk#GtYkh9=W z_DMk$!-4}+)R9}97=c!*SePo98ky-?T9_)-8ykX-PBT?71+PWJe(@*Dt#HN|*WX%z z{Xm}kFm7`-0yTcXw?Km~H8xZL?ZE(DHe+O>XMp2!d4kS^9wY#6_@D(}eNqW{rxNJO z3}UuSnV4AWS(t+MNLhkTP*pH7H`Fr*-4thRq-S7A#0nd<-~;Uwg2Xv_;pZF;YSkfb z!7(v6(=#y#9ie8fXJBlsU}9;mXK7@lU}R#TXJCLleg_$y0G-6DK`;P8Lyj=_xhO2ki!6}l;K8LQif;HQ7N}ulVS?F_u|S`LN6`-Jz?p(hel^D|KS8tluxU$7 z%MDEp>h(Z#`k-CCpi6@=N-^*RHcp>I8%DzNzWn<^Mt7-Bu= z-2ytF4xdiP>T}Qm--cL%4O~LOT#hJ0(OYGPCg9N&@cL{VMJS=ppoJm$B2eM&wXDnm zZ1pHJy^!37)+4llOj{!lZCHS3|4D9_A*NhG%@A-{!zaZ+CvAfoW{|oLe;sWBn_34K z5ug+f_64-AgVt7{9wC;suNJ8D>h%iIs5V2olO~|8V_42%w*c?)hs6^Pn?XkmVoBR5 zvz{=m@ckxGSA!O)SzuZE3JGzT#fSugRLA10Vo^GD$U|R~U$Jqc3=3O8u5lCI{)n6T z4NJWRc)lHGFZT2So<2uuw_8Bwp^4o=4y$mH(g$=>9nraiI0PES1Pd{gX?0LogS`RM z4J`;jWtcIRO(qtIY4v&=NHK&>yQ!JEo(Yy=C=1X%TJUX_xGV?VtO&Xu3Zo1|nORTA zr5$wf9JV!U7U0zlu=v8I+YnUE7$XfjOiy5C7DZZ#gI@07D0YyN70L_*WY7R*Cf))( z6F=+X7|M5EQd0?uJ-xVq&0&IgDk2G64(K zigD|Ju_5Rp8q8r;3-DYoa+1PgF(^eDW10Jf#1~96a=B#>zZwo-!G$^AfIQrQn!-%L zYds8PneQ-zZhc1tHTGf)JRy!+Y=MV$C`nwfd2&Rx2A;Kn6+8s?6oU3@AY2WKCluZA zV#`9$)C5Z`gQpuIK@Ay{vcRStG(}{IW&GO$Jo^pN4k`4o=?2Z4ftLDX6kDj*R)MNj zY}$=248bip4DIN%##o(hWMQFafUQnPpES0}#%8&pxuKqcDduP?s2z(4c0?K_st|+} zb*NRSso8YFSXPnkN{Y-(ob^~{GtpaE;7KmjqzIl&COIi0by>l4*=RGXpsok%1+~oz^HbtI*pjFgKEcE>c6d43zZ2!3NDZ1WIL;F@AKt zu%QoJyB5F$%gD(d#bQXYYG!7t2RgwXBiVx1h!W6S4?3p$xB=G;dDP%t;!aE|bz5k2PGLa%k`Kz(cRj{x}qRM5{yJ zP+;q>hYR~uen0&=&BK;|YKpUAkF8)_WlF@>C1>~D_#m=n{ZpnrlQ$YviZrTNx>&ef7f zKlx}t^yvlr+6#iOz12?t@}OYi+-2IKO5Mf%-ER%v{Abf=6S6&>Glz3#rv6V^{>Kur zF~zLQ`>aSL{YTVRzbyIbr>HriPRp#8KAqJ(-;8}jWqr+~5C1p* z|E7_)uH){tlr=Itx;keiPn+;P=Hj>P*syzk7uTsZZ`_k4@ZbWsbWe*$&_s#wvq!g8 zv8xBqExf$;uVZ@Qg=Jr^c;&FHop$flw#QMM!qp$F&h>q_dRv}(_^ao!A;*8+J@fpm zVouztg49YJQ@!8$lXXl=wbDZIcFM+{%hlmuM=LY zBnyPB;i-<8e4#P>=&p%AUnMk~ZqF(=>kbXxe&oJ*?f+AyElU|LYYVNIyP(}B(n@Sv z_BY;e&M?-aHRdhBoPr&B0y5Do7ZzN8@?w6UY0LiG7rC;V?l1b^ez;|Wti*BmIT80f zb7xXPUesA#W$;%cUiM?iGq}0q- zQX6H_(Kp2?VykN~XSyBdiKLdUg_pM|`&eJdUg+9$&+BBK{D)%<|5vP6^4h=Drc5_M zef!CiH(Rc5Pv};f_+0(&663RB?@bIooqLs|8O_5X&RSnPEqSl>p5*f+Xlh5UZzw3xCopXG{`dN$aeNEp{v~|VxlBo-Vwd!A+ z8Dw}Z+IBZ+Mcj>f>{oI_cYK~UwUj%9*P&y>#cFT4<`uV1-!&}E)2T{%WYoQDn}*&> zNoAELu~sgo)32fo>O-S-%BRkrv{l+Y`1`{XTP+S`mOXt|X}vq+oqidc zWcw~|&2r8=H}79guaI1=-C*SQMC$53TqibfuH|t7?(H!aZTm<%_pn7W`>% zU-vJ*r~W{t(94!uNsh;%$@9alY@0p&ol49Z)@!gY66s6kSDx1D^!i86`rEsn1YFR~ zH8+jf(jqctt{2;yTK35qk?&tUd@!@cA!Xj9CtPyp+C^=2UX?K=o|`pUyxn% z9)10Z1$ZS5v~nQW83eCef_Vm1&?4(LHURBiG*mFQwA3@gvfl_aDOHcsn?u$O8_+T` zHPJIR!E8IDkLaU19NM5WG&j=2c72}(Y_U;1xWj-bmG>h`@?!@NG%uW5SK;08KkXm z0a-``aUXQL!vd@b)otXqWQ+|h^-L{|6-P<~d^>AE9?va+C zUy_$!lB#E@sbFV^w7Am(>}sqoBjVC%BhXSD3vi>#q#m?o)d+Nj9i&xdXbc+fC+#BU z{DRcHl-z8+ti-ZJy}Z;CeblR%Awi47vGte-k{Ku%f=@>cN(D_Qg7*8GSb*m3%=JtR zEfqi$iY6w8;3gnBjs-iixHL~MIX_pwpr}4Sr8K#uSU)QzHygvAWT1y_A)W;|fy3-Z9NdY$^om7{D<5SQ2lo62So8dufp^dU{la3-HGSVJ797U_S%BN>sHF{fkqz;_1+Tn7J}JZkyf!IF z0W|0e8h^F`uQsX&34oFq>IMUdVwhhcF+y&sV`yxkXJKNgU~FuxXJ%@tU}$WnXJ(-Q zUcqe$+QN>x_Zv~@pdaT4aXob$W@K)xR}b2;Wn^TkXJTpwzK_t<$V9=&*h0_L0BKzy z(y~B=)6kbNKmru2({PuE^`I0DDq;)`jrEL7Oce}`%=HXSOcjhwKnFycDHs}C=vkP7 z@1iON&k5>-rUdl~UQC~!n3tZDnW$HsUs{x$nwDRbo{FtltVdb+g%Z)Y9gX2;LrAd* zDkhE0j7TXK>pk^DgFIn3g%wm5=j9dmXLNyaCjyGBzb*nT3%a`oWu!0LSXSdO{AwaG$ZUr51&4 zV>3fNLvvFFBSX;c5bP`8kXBik>KP$7^XpSU$MRdCFSxP*FaCn&2ZH4-`p6-QW=L^s zVqv0Zh-FSC5_Gf$Vz3mEw}@k*W!XbE0gMsij}lsuN;wN}U{?OTE!0u5=LB@Z-{LhOgR8WC8y3L-4+Q%mR)wC#Vm zS>@P>Sc7H>zVrtz7(grhNe%`?i3D2k0xp4&cM?JbVV*-Nfk@6IM#e^ZhDMeOCZ+~@ zpksNBObqo*K&RE38G-n*u)~~C2J{mPKpo7?3O#4EZm=c#Ng$TUtB?p~5A;<;$eQaF zpo8PMM)VEQSK=V+hG{l2HrF%6vIx@{DP@Sh$OA*S zrKy6Ev6-GRmO*_>9E*TZ@~e@ds)8}N(F0xtgxs@4%Kq3Au_0tof4jaAYcXp*N(e&| z4tib&uaHMe#Na*=(PKN%-WF0`hON+oPmo%I9YSPYHiRwv4OL5&m2rd%5|kDV%5k{*ZiYN2pvn?FK7ci@AjfuZ7iZPx zBI5iKOK_q^jVj2JC}N|^61*%5xnpbzIdewAvL2kBf)p$vi@s2X;UJ1&xdoDppe-Ph z%O4X1Gd)8K3k5S%BRxwCBL&b|>!2+?`k>i215@n%&SLm7aCnz^`h9Lz(R#|XQHW4k1{3*2|DTo6R5s3Ffmjx zvM|-NFtAWCG&j&Qu{2ZwEfqGkfGruVSI|ds8)DZUs4)W%D_9+gzM#$$vgVJd;WR_= zDjk^TKqaQ3Ip_>JXr3liSfej%LA4sv5&~_yGc&{7NMi_Iuz_YZsFKvL2c4|}wc60a zNDtJAz{t?xECSPw$k0gTDEiVA9Njn26a+Ry~e- zlxhN!RMAUc*b+L#GImSw;zOdF5U?zbRQiIKu_5on1Fba%hZiWgKq(8fycXAuP=+Ww z)Ikvq_69VbVN)SyrY7L5f*#t2NJ~7Rr7t$^pd;)|ERdF_!ICK0^O%u^s~Ly8^tH3Y z>|R?MS!`F+V%^PCZ;7&W5J%KtOnO*?D<+bo2B~!iSwyK&59(mT`j?hqL71N*Zh@Ar zg!`Aq#%6lv=AfPKW_rfPW(uIe8%xmXx}dY-4ME4%LQ80rk+b?#eMj(BZI~TQ&>fe0 z>G}ETIjN8Vdi{!$qSVyfv||0t;^NZOV*QlVlElm$`^*$uBO^=H?xrRBqDV+ML(>kT zIasfUZEcbv%5n#A%0nLRhZGVxn}g`{f2dYNG@F379GO@uWTGcqNX)|GfRaK2%Vh;9 z+vO~$E6(Q<-e%8Q!c`Am17GqJ#2 z^$&?KSkNNU7N}=|)W%0S^8;rM1nRp(N6Z3`u!>HXxy{6}z0;F5lC2(P(JGGA1kO*W zsfnZxD=al3)i$u29nsbYI|Ldth&+!q%UhzaS+zvg47y{;(8vNj<7jMwxh2gKdCe+l z(@ZpW?Pj3aRm@RkOV}b|w261pTLz#^&yCj9M{O6FfZ7G3(|`E0Zm&ma&R~xy$ihaH zh=Q(h)+a67BSjQ=B`nGS3)mshh$57QK&#lXjYi?BnX&bEOf0r<3}D?w%qdNl;B~5~ zeI0Pag!tMQ+!8_Q>wwqoq8EH%L0ImD#0I$qALztsW6)%urLmrYg@uBNA!uyHOu@v! zRL{^1|1mUrCdh-2;IT(b)YY~M(U#z~zt9LHkh2WYr@xUj*GIv|M{t&S;2CFFsDMg5 z6sw`Nsj0CZ=z1db%G3~jr6!WqV4K0m&=?yS=vkU!=1N2G^e+LcL7P;u%=CaRBEptP z@r|vZl)H$57D)O0Wl<(;V7g&9&p^AmxN@u|Y#AB2GDFb}I@kuP+tkt$d|?TC zmbC;gcSCnLn$@P}W_lJ_uAQ+2FA~J9xn2)6&0}h6re}&}AC@6_UJti!ux3zxH^ov| zSb~>v!!#q>Rwz}tI%*w-NI59IM@TY4t+ma-%XH$>SZ8t7V_AxZp5ei3!cglhaKn?5 z3=duvhtin`JA}v#54t4?Q6Pd+1&VHHh6jZ%s27TvDi9Y?`I3=kk!GDxMn)k)jhbW4 zp!W&!7P3~b*Q1;-g}rnIA0mYo*wE%Jkxe9M_C@L$f!q1$4Fs?tEQvwfLT&@W(8yR1 zv|$)@X{Nb3Xnl*h9%yjY$iP(3)RaI20rLzDON=@m9B$CGL7=oT0?*XI`~^-Lpu!8R z8PPxh-Ed@xWeNl|4~&+u;JU$eJSfW>8-R{Q!8n}85@jtJs?89+pvf1|0wrTCyT>iT z%hs^F8=@OL`C_SOWQbXXf$n7_=xjradh8eNS%Oc^B4D*4=-5dtwWlR``5{a*j-m=$ zQh{d-P)a9)`Ntf3$=<9A)=liwe-z-X_P~uZ)O-V397psd0yN(sReLDws6Y`4T3(0f zUK3bbXo<4G2BsZW`M^8p1_pYVORtT<6HBmAMbQhY_F$S#LD#jJVWtNo@T><`?Z_vI z8d>ULTb2YG#6qMdM3h2e(Ha(uC@oAJwGYZkZ;uNPC0Gy^fDpHkTRMW4*PDP&@h}8m<6~x_XKHG$ z06IF&$P6)R6s&-J$SrhY$PBadgudX+5*%va;w?&nK-p-C(N0Fz4BKmFYG|Nmh;=&v zs2+la2`Eh>>xQ<(jLeMnK*OaNbuKuXV44wW3aLedam)@%GZ~Sjqwi+S zgE-s+Yg}1?HkgWT*P6hp!O3Webyb`txb=*h(Meks2Ri*69Gl>5TdWYRUf)zOv~SQnJlYry7$ zv1EC$d#U6!3(%@wBLzdyh9MI(1!Dt4JySzVg?b}HLp@_7(8LPn%59j_u(Z_Bmyubb ztOUb<5Q?DzcySfjWAG#kDq^519$KQ9g7!^gIj+nIJOKyR4LRom)o#dGjvs=DRUWtN@jRM*!rKqVNM}mhWaRKD1FGB+ZQ}D{O?U^%K7qZub&)I@m21#3J z#SuscD3>93+YJrCYsV<4+6)cAYt8C|6bua@Yuiu~JyaUiVdN%y6VP@eOG^b)b8|h= zwkQ)*OUV7@7MAsTmWG5DK%g(YhdP)lZmW+rHZ|7+jr1B>8iJ>HL6<`NqB; z0KI?^~I*3=ALe8p^OWHz1g5sOCsUWwCvx6MB6i+||MFCuVS z+#yjf$x7XH(B_k&(Gjn!*QJG{s=X>|0&FwSi z?A`n8<-4qp$GX!yXSZ0*xtp8j`RJIZLHC{mQ=`tl+jLW1aL2sYXPEWH_Up&j7d*Q) z{n5FLkG_4IyLd^2RsFsCzndzUZ`ewn{~RmocA!N=rK4DNrtSxxG_ReW0vSiRI;SmeISbEnxK$hAINy4Y!B-0WS;{;pn?!`BzINbALeSiT7XCSO}} zgl=S*e{xDH4t_M%F{< z;Jy_cd8c|8D+e}aG)71}dH5H(C;1k&>y+zgiK#7pyLZa22h~>_&ux;)%SgO-B=d+( zZb1B%32VHim<;)II*xcHe-vhH`*P%9qjqZa0ye=FzkE7)W%4giGGjCIuTF}*{_|89 zGfUr2SLG#E_ZJ#evqXhORfokC)-=^`wb%c2KErf-2w>QAig5hmn+KSx;3Y(Rhc-c9wzB{y+=ZUv^(4(unrLJ}PSzlM| zlyYqq=00&+r~b@lv(zH>pNV%*`-@xmM<+xt-dlTcN9N34lSdpW@eB66l{<4`VavMd zD)lX&g!VqHZfZToJA-3u%6sJv>2I@(7AZD}9#(4-=M{2Xc_Xy&lB%YfL+Gr|o{y>` z%?l2{w&h<^Z5Cx?71g~Z<1EX1fuhJ`vYm%7vxq<4S@@(>q%mqk&8>s|CUM2aCfg(Qq6ri<5i6F?8n!pY+1A@`tmV0nVS7;c1`#y zd#OW9lzsBv10TA7v20w>mc_BgFll#-=j=U6&#tDedN%jcz3Fn*Q*Qna>OS+vcji@= z-0vP-;j-y2hSKb_zO{v(IC;Kh+AWq_o4o#S(5c9b7ybEb=7wb*cJ)?rWp~PsPccZ% zPF^Mwp%lKLv2ZbiMtXa@q^{kby|ZeY!UVcbTwQ!%k=B9@`Ynw=4s*KRFLrvBwXmXo z_nx08)F;nUXfbU($gp?OBS+b(7jG=+s5{f$6lT_xQt?bz$3pV+n&nr{`s`Jkv^v<# zbj@s*z5M*fQ4>CK+&4S>uWF-3y`17YuVJ{*kJt>%#r1IcVh^RnU@11#ZI@}#or~5S9 z)$Y1+Q|M66?Deu!6C9N1Xc^zp);PphvL~r?*RDgCrirWV-M3`a%Xs$v)nj0mFN5BJzK(Fv)|V9<+L!I?6Pq6)cd?L%a@rL{?{=7=0BO! zP36q&@@V5X{R=9T$|e_w3GC<$a<;2qSQp$QWd25Sp~kN;a z1j|qFiwrE1>puoDPe1tV%#(smZFXn8Z>v5{SheMWUh&&&ZM=)pBK;N~ERpQ|#Qf(_ zWLjY^%YjE}g{MQRQu)lx6?$^dUK96vJM)Iu#>jtVH5Z>PKgOf9X7%31wH|C5k0(fe zR^DIr=0`?;SxsRQJFkY6s3>#G_sNZi+!=b`d{aEYnsd4(Z@PW`?dLo;*Qcd_I(d1E z!ABtlDHeNM*|khB-s`O2xTVNreE>gSAI}ES8QXMcIhIt3r`rYdar`}Q>0fuZ$6e?7 z8@(;9bKiZ-+#G9iH7R^+YVxL|%4dZy^JW})wk>A1cj0bd!=hc1?EV_*1xII&iele8p`pzTEAF}y(_0ykWPOM@cS1fY$D+(F!3R)$XR?M4q*V@Thu-^Ij zM0pL(RGS%>Qf)H6&)8*V|L}_q%cD-I0}Zx!YtC>dzYcIa{#U-U;?JV#8)dUk)_+pH z-j=&hUEu0DiT|E6PI5N4oBft<@G5hk9k;3?tgxtzmF4>1H3m0Vc1?N;@|CijJY9W-zGC%$R_zTLmXyFT8elzlLDf85@GezM=g`l$C0@7pj$)m+KXm7N_c^r0UltrWci_ z=IJLU=ji8T=9O0HCMM?;>*wd?Wag!!E>SZy04+{OIqSjD06d5YZIKcf8ZtszCn3%bzU_oq>J&G z^UTJRTxHk)*Y3Ki8+TaEFVs(Alez!aSyMErij)LhwBb6rI{kMbr z@quv1J;6rbm?LgZ-yJ_!rJ(-)|BBCU%Zg9wd{$O$=wJBr{`d9w-{;%c@0i!Yr2Z{d zf7;5=r~e&(`}VeZxykPG*3a+m`sYbll%M$EdLU~}$p@Wme~lSaR34ZbbOtY9x%D+; z`@FWh6ZchKzR;idx!bNZ@6nf8X;tBt%jdk*mathHvBh{-*FX6fNvl}nIh8R_d`cd4 zZn`#It=#oNO_}SX5Y^QOjr!LGY}jA_GDgy(|3Jk4s0f=#y{l(FG5Gk^2&$xf3XgA= zc70>>)!p_>sk8EVX8A92(p_PX-keo^?{8jPUi_|Y+xksx!J)gG`J+gkcL^Qb5_1@ku_cv(>%7!oC1 z|9sA}H1=;oX_s!Std3e484~?a?ZPQx$rFs-7upQIY_?F7t}^fG;Sk7sbNoJoM4`;P zk1>UXb?YqhihrlK9GthvTG=?;aFYDX?8nS2tpeOEzaHOpcJ}_~JZ0OSHXUsHXDlD^ z=fS(_G8eA0`h@%S-OimO8>4vPsoJxsbLT2mT8-+z1Sg!o`SYxsjD|h0lXt+5M7GEz z7E!lLd!@D6|EMb-yT8c)^*3eiJ*P}&Rg^4sIPYLm)5O9p`**%dtN5ui{*O|u&CeA6 z_WxTOI=6ogw{Q59vnwy#svk6eeqQFOt>7QAQzzy)OZ@f})8l_U(?>{J@5`Hil}?EZ zncM?pK27x8S+AqHVPA>7KtONfROVor9&PpfNIzY-_-AuAKAU+axU>17lIT&XO98el zYWrCmGqik}#T4BI&AKavCzrl0n^aiab13xB<1;C8$9yEL?{9v@)U7wGKUJv7ODc9T z$K$XWyBcqQzW1Z6==|9pe*LxEcTPR=h~O8UbSWEvsGUwvY(et`+T_m z#-9bMrz6e&I`iwSUiNDBM(+9|!-%Ip_vd%%e60AHZ5wl^Ny@Q-n@O~ zire;{y&waw3BS4j#cRAbcv_etEO{vEdTe)YeVpSi z|6I8lidL^oxDEdb?`OYjD&fqx+`uoW*hhDsM*FrizQ5;rR-F@4mh+vi_Fr|yoXY|6 zs}>zQ6@KB%?%n_QFA;6l{jfSSwN>}btq!$>zezz#Pi8FJ^Rec|z`yH$Zd&qq@A+qUG^Tx8 zx8{Ag?Kjbuc|MgtA9DYCZE)r3>MsFLv^0v>Gc>$+-4t-ok&S&l&ncA-@0qg2N9#K0 z=k8eZ?!1JR><*#s*};2nX`O0NI3)OHk6X;nbMD2$GZyHG*ztjT1f!Oul|y=LKKgf=zfha^S=*;DT#)SXvYDq<;w#d8 zbN&j6q}$6^F8!RCq_xUn%a>YDk*!bD8Z89OepXC3jtP&Gt1ow5;OnbUe$ZvsoirfAQ+e4L-jh@%UrC(g0y02%4@Ui7G%r6`DT{;A`o+X?= zUSPaiafAK~y^LqF!luGkjI6L9A0b{tE$UHZft#3A1&mlPu_re_iREILD^*;$g?|`dt%^ zX9#6hoQr2N(^>pN;7EMz_q>H^tF*eWzFD`i`Ef$Yx<_*!-3@jMs9T%q+xPJN)y{`` z>xy3c{!h8S#%S&PZ>k-fffo$gk9vx^3wQm1gZi5q>q z+@il`qkQ5`o)4{lnwMW$R2x)X5;@pX$7Xz7cy@eMkz468c6&*c4w7*(8RRSACE9GqCr zvQU1h_6>Gbp#vwJeGMk@+6cDz8Mf%k(7+H`J9Kc;$lOTJ%m`a^ z4(tOrnEiQX z)-Ynj*3baFaVH4rge*e?&}KvQhBl033QC?WQ(1$P1^CA`HEqj)-K)&@wbC z8#l7bZdcvOYRp}4Xn-;njw3R`JDX4@1Pu+qJB*0#wZbD4G52q1U}OZjH{8$wvSm%d z&;Y#840U=Cqz)r5liPna0qyWLGg1Iur)ObiQm+8IN5c|yZ-$wAlJ0G&MyI^z%IVq*&&lZ1!~6H}}cCg5Pj;=p?B zSD~OC)@Ep;XKD&L^TNW&RKdj1K+nM3NWsX+Tn`jrr1i0L@{<#DGV+T{tc(rJ>WwY* zi&6`6GLsYIi%SwqN{i8Z)`%1JZNO(sLlZ2qg(+-pGommBr+1k4dT42CVqvIfVPuZ6 ztjq{~2N;_5Fzp70ddB9MyG%i6Hz8^vaCw7by=k@q_)u#@O9MR<1I!`=n#*7jM^ssk zSgV1u*b7nspsfEfGyv}#n`Y0-vVF#B)?#8dj~N)ogHkyu%Q8{)rr=yLfJM)sMU(H#0(P5po5BF1ue9o#MQJiGyrYd!)HI#08P0Ro!OO};LF43ThoeBsO=!cZ;xwz=_RKr14>{|>TjyZO z0#YDh^e@1zO|)hcczYpbQ3cw_hZa;|*FeJ>oRx9sWJ3ekraeTRh@u^m8;vau^$aaA zcib2nfPH|ae}N}Q;O$?a

k#qT~2ytZuCJ;4NZ=f*ITfNA1Reo9d(oGji(`w22S2 z-WYW*1tbbT)EN@*#5MIWDifT1;4`0+-cTbc4=IHN^>AqVivin z2@0Kh1IV^M$eA{Ta*z>t^(-iOK%oQDkE$J-e{jVu=#EK5_5o|JN3kBNAJmZr-Q|J4 z*4xkk90V}?5wSyLMToLc4O}alvnzlSCZr-nS@~^fUMI%O) z2-zxzT2_O%`jJppLvtf?Sq<81h*?&HM5$C(8ygwuf$oO|t+WL76-yC9UqOuA+QX8_kuckz=_<ybTi2 zVqMHsj@kJ`-cd-XI5ji?A9)XpYe<6x#Q3_)8VF$+VG zD3uCBBhYSqOA7@uZ*e3&sUY|IEsR0u?ZLba4s@_5P=o=9V8`89fiy|Lr8QbcMJm)Gp^n~hDE!1Evi+0{ z+ds~F1Mm(sn7?skPw7+9;9Gs0N&yXVnB9QDi|7o zy9HnoNb)fR9r*%keW8~5C}Ua>*OOG{*DDyrg4$r&h=dskncGM&4*x=HT4GI5Xa*}5*!FR3LLZq($vUE&&b#Wd`PdE z5$IAN6Fmb1&;$ua2-c&!5VO_KPi26~_^u$bjL%I-;U^#ayj4|6?KzoDg`p(*BAk}-I) z3>Iq$?Wnpz!)BIP&Sfw(02kIU?TE_77<5E1q$7&a48&2XLn;*1ww|E@q#9>3F`H~S zNpm`Lv^rn^k-$ zwXyBK?ZWr!m6UsS>-~-4qJ1UYPK7RQ0Yaf6_7b^0FM4mw-no8PBzD$ci8qIT-o5HB zv%-0Y087&3N$(1(*qFC%KP~jt;;yp<_v_uV-kXZARmO|kOiN*1y*}}{>ak`Wvs;zgu^?Wch@*XW~Owo)0_{_0-7lX6mN&bIDO=KSEt4 zk6GT_dG%}jsv|OuNqa;U+*99aWpKI)C9h)f)@8G3Z)g<|Kj4?OI3uh|^i!rQ(~>hq zkBqWdLUwE43fehy`^6r^Tdu9f-O9yZIH%rvah@;n(6P69_I!1c#Yz5;j~}UD9JXwl z@Vm>57p*vRgKI9Hy|G}^=5Td^n|rfX%c(C@Qj2U&Za;GQ2S-DG>e4l=hL!!QB1Rnl zb$k+}8z!qW9mwrdN_#SA)hC`Hqrj_&zuvw5f=4F8&(-YU!WF;IIeT5=4Agx0YFi28 z`&^?Nf(B`Ojw`I`-n#DVha9n`NBeHB>8f9NAn@+jy@h>_jyrv~C)=zPo!9*4@gudC zO&TS4rR!atzO`!WrZwwx1PFc(8cS=)c zNfa;YxO4q+S>o4|Q|`21sIl&t!d4v5ETfmmDY}vSnpS;_v<|QH_gg*gv+m7YV<&w2djsHKj~P6g}A2NzT(?>q55_{*dx8K+;LP?hZcd}Y27 zua{ejrJt=s*G_dK%lc`vX4Yu*$k+)5>{!#i@B1dRlA{gQy9_tpV|H8UbSKu2G4AE< zkk;8@Z;gefwj6gj7Vmbj?YxRf8B36qmwEp5*%!_8gI71Njz4hm>1(AMGvcmZ{o0-0 z6Z}4)-fgP(q{(mgTQ>f=nyd4SQ^-V|X~L<@Gb&aeExVp}8>_SAyWL5zUv8cAa{5Dt z2Y0?~c{6KScBUbpbrtV_p0^79cjR}u=l*z^Gxtw6$MZl-i%$}U36r}bJ7m`Ed-{dR zHsXln*_2Q9bMyFAb-k)qXP4%3{;6X+`TgUS$y>kP%KFj2uIv57tn1;+5+nSUUC^0c z_i69lZM{F9OnoV<83N1kQOKX|i8;E#)M3Df!~ z%QzNR%rD%XU3=Sf^VUzR{l3Yl9lgT!_V;Bm#&y3A>hmi~)EB?3bA40t_T5||{bfhy zC*D&QEqb6^({+g9zTu?v%}4xaTt1`r{>+l5`^pzCnO*zMyv|qCaPnj8J7?saD;AY} zy&=&i<{kWpx3G%i&~tqw$6v?zFV{1?w7%XyJ#jvp2oaZn7(#B7LTz&!f_JJ@*5(GC zupq2}zNo;$bn=0Z%G34rnR%x(>9RSq8k-v!noV!lXEtRvw=|u8K%ZH!{??nlTW)D%*Yl%xpibsnveC9?V|8LWU2lV$Px>3kb986j-MH@I#TQ5WVfeArM6} zeu0({MHa44L8gMV!qtOJ1#87(C_+8V(0Xj9!d>xW;s?LIk$30*^mpN4s$fd>PMV^- zl5s;_yye9EE3#^eY$AN$SgUv^wdk(qs$8>CGJ>&{wc{XHsOq8{|F~2&d^T*Jq-uK5 z=2TcB!-l8>4vIYg%Ip14)V72C@xxV9>v(;=ijI0y*C7Fk#Z`}2TX!i*rG6AiUwZui z&iq)#6%HpW7!nu+)(A{nckcG~*Dow1OQX`w(!QO%G;z|4>y@{qudRz(AE(>4k;OlG zllw_6o)eR#5(N%$HS$+@O-tY~n{fvm5bePs_Nq+_rUdxhUvuKG+ksjs*D{f#?ZH_h zZj0;JW~(t&Bwbv1HQJk{&dFx}eTCEyu2)x8v^B)r|NhnX$Ck&_$G7g+J;v?dUv7ES zy|sD%oRS?Yw!~g;Tg>+T?cKGu8W%k6R=PK^3F$|MqtN1FyO5&gEVDP*6BA_2l0&@9*BX&qoB$kXSA|dr8_6 zZN&(FmV=YD90Hsh{1rA$J>3lo-~x*|i+*V;vWPJ=bxU4(y{M__(A8}7<&j609u4*F zPClBO95=_f{(G=$-lWLw{?EVhe|tS~(lmvZua)=v=5GpcJ>s!P{@2wD?-sY;U(mIy zG}~w9)>Tt14`%JY{o6>O*G+wmrQO%d%6o4u;k8|FrO376kVYe;DtDr@Q`Q1KeMstE zzM`&4;LW8wy}{yjd+NUnD%@K3GqPURdQIZn5~j#+ia*rq^Vd%j+!k&2UTS;g`RhNc z@5z0ScWq5|?>e>Iw)*_^)%(w$z5gxsU7C{r$v%ni$BzB64KIDeps?EY?i8)g*XFsi z4O88Yv`l`r-RqN{(vACj$~OdVJ+g1@rL1Kc6HJ%-h@?bLObkEx0F+DIKlFv!UX8xE zSM$HJpi|Vhvvz_jb?Z}o15{Mh>-Yaj4JzKVpyckeT+Nl9ug%{^Y%hHt{?mF^O3427 z15a~}rLVs*ds9$YxM}H$9RxaB17JbxM~@5<$^Xm+k@`E> z_;M(}-&J-cw$|h9$EHnNu2iUMA2?+?J5;nqARsE>)3-nU(xK-is>9U+-SaNnF{TS0$RL^C#!-H`(f% z8E>u2{HotS?t8mg>grjG|8vw*lgx8&2AA!5(ww?lUb1ZMgtgP=&6qT+=)r@D#kWn? z2d+J}t+xHN@$UYyOz| zC@I8V)g$C)eFLM5uG72+cU4zk%e%R7LRRL<_r4WdGUu-1@z>JfpSJ$4Ohm0(#O|7p ztManVa%#W(uhjg=GV}i%=HTag^_Ab)@8{f`tD~W-VHFlpb^HY9@viRm?+XLVHm5yL zxytrugAfrZA=W2 z{yiJqnKq~zO=~%@CZTnbYFjZ&DX7vq|4sI-(dBw4mfXZ9KO?69`<|!y&-@y9V-`nu zXjicHw}a8|_rBzs5Sp4AwZHIp{;~c4ey*}%2yA|`WXV1%CFlG) z*}T^`HBBvNa@_u2SMS$fUwt}K`OHgBPJjD?&kN?sUeCW-eYm6W_xJbehq#s7?_FAc zSy+Gn&r56iqvl>sxOL-Uv-{qPB^sZeeg3}h+qbmsI-CHTT z^ZtCe<-5C2TvR`HbLQV^d;eekKWQ=N*X4CZFaD^lbk_H|xw|<3IHU6Gt7|?!TA|p# z=fkawhc5NU)$J&}JIhJTKudJmD^b-(r}}mJ+d)-D-L@SztLD#`leD$bD9|bGaMaJ+ z-`?6)ba-%k@VxjHH}_Y`Ny`8U*+19r@tce3+za|~@L2NfeaqK9zp~$8v)|SyDvBm6 zXK%~-+GhK^Pb;#atLwDTWFf2ajGe{b|4mv^|Fm`O?s@mO#a?C$FU`KcsBmxN{=c8! zFF*IQKI!VSb>ef4|LoEW6|Q{wY?3Vd>FG~g^IwOoPkftIY!|ur&E~Jg@jt$*um1FH zx`=M<)cZ@ydRLw7^b!5IVnH)+WYcM%a&Q_Eo9_NKxJlG-wr`iv4&QFI?qzoS^zwgC zT;z0GO@*U$ZZQu=dv z-iiB>`~ALV@7k7rbgJ|GdpqAZFkW93`*-H=U*BKdYD{4N_G(X7uHD2vMvwm<+q&wW z^@mL#uV0<@>*hxNecJbmOg1II-}uc}`tIHLr%a>E>b``=eLi!HEmbzJF6FDVzuAh} zf=m24I}WUIyE|zdLz4_kLF=A4*=f=X2=4f2BXG%ih-8Ro!bi9&NVz z|A`CxZkj%RF8SA}{Ihv<*_v7Zo}3Mjx5@qXd-J?~?lYI2`>WG4DUo^o+IccbVnGZF z>4~6}-Zx)=`RT=l0nHQ(={?z7~OsTYcG+k6@OX!ox-%cSn z6>m&3F!^BAAsfh}_0DH$ps?o~xqrq?@=sVZpE>r*WgoQ-k2tVG{}{7F2Zs&Q`+Kz? z-pudd;p|i8E|1G-qzWM5b2TA?z8%j=Z^e>z8-bRG8wJMCLpvm?3 zN(&+rXA0`3^RAYxx%~98+>V(H^EYOHZ+tB;wZHJQAM>`9zsY9Zt#vt~ptA7#yxpsd{a#zU@B4G^_)g{bJC^yT{rx_z&UC@|pThe* z_iaf0^r$jlL{vm~)~_G@`*a{Ji!daS0}4l4l#9~MrTX(B3IMqCb4PpqC2&(LGA!l{(ieTlH;-!%osx zTTbdHtF-Mk&tB;)ow2FKiR0?zNuRsD9(Q;;YCTS`FUVfcecLSim8R6y)%&uZy?>_r zPtCmEyQ=8Xfw;M!`(5_^(M!_Yl~{lA(b=W-Z{jxBz3r(NKgLu2;^*~6$Gz2k;;)#h zuXgP|Hn%A1>)T0x-<;`B(}|fjXOhW^{Pp&_b|x$8|4SOj-`@J#Vec=~o}vYIv2x(P zNnK=DSM!X{Hl5#Y{%?{+*#f%U1i2KsT3UD>wghjR5Guept##q@74!Swid~l3IDtnv z#I?tA?Y9kziA?p39QRJOG5%)uepfH#$+ajV!-cVFQmXA+Y11`NU+My(PbI%iydnVhVm(6p&lO7O5uXbVS}r-yUc!5l{B zCe_UAi!S=wTAz#A;AEomZ)=ha1Cu6hKBc`XW(rTA^qbDEQ@bZ$Rhe58-TCjUB+~~@hCMd~YeVac zAI)P4U$shyLv8hr)qykmujj;kJi4s^`m?1=j(mSH#dyVc*EMl@|Gsgv*$7RVuqib) zNLn#3X8Ef&*7{X@WKzAe;%4stw7ZsFIOCswazekFGI#(v-z}s9k?&VNdG+N$YN|@2%gXz0oV?T*L8g^_!2I@2Y-zhRJEg9zySOE8tLkdA z>IVPi_4n>`Y(1SbXWA?V2@MzC&9+ei({`u6&ivM{YP8B_%A`p*mQ^Yz>BR1R81Lz= zl)U!*oXcxGqp}WtY`PR0y-k>x*D;8RO+ zRGbjz>z6eJuUG$_Sb0A9Z&>MLN3M#1eva4Qr`GSSUq3^)^J0`{+~Y4lj=fA2 z@NhKbO+V!Dyi9lZw(~qsVi)XnIFWZx!_xAmzK-Bhj-QDVhbL|SZ@}HMI6l|v$DKE< z)#dVD-hMAG?mRqW;q}M{3o#v={kh%#*Pp3(hz1G${d|UhcS%O+4g;h7kLkU^lhf}` zm>Q<)BXnz@zSPGxTKDQ>Csx1zyxvc?`1z*k@{%9lNLzoGwTy}>c)8)e`TEGG`)03u zaoI5aT9at8x=mO}h)jz??I)YYZtw`ih7DDx!a{A2awoU( zzPf36V`b+0-~4Ya6+ZARdYWQ$QF~X~_KbT!T2B_&Oxxi4#iYAvo|03&OxQ=x{c?Az zpTwFkNxjc=z{ziCJ%>o^we_)!Yh(G> zfElH;%gSUwbTlxEiX|t`j5z6}msfv1>EV>)Hk(o;eZqb1wtni~{O8?yJO6VfuD;M)xjRqVRcr;O2^XJ!n{>!1Fxi7~OUAVihduk3sjIUEu0GtVTHaUra_`dDhqabI zv8}h-@%zO?^Dlef@7%vW;`!zfPp>$OhX>1aXK9>S{a#1@1ZLj+MKNhq`shvN>E}fhxn7HJK zr1rEPMHkV94%0U{6b3OS=Qv)@zPsn+s>u47{e{0DZLL(yww_yFwtKS_3ug)|>rzFd zwxe9?5%+dH-Tixh{okv{+b2mRE>TxMSNZJV+u!@{?|bghJ7vnWnP2Nex31U_;?e8x z+Nv7PU;A$MPyG;o)8=0#c_I66Jqo>VwsNvxmY8mI{E>f~w$3i!|M|J*V)pp|7k)Gy znzVem{yeMK&8@=nc{lf53>JPCYqV6gW$H;zEzp46pBT%p)_ojnJiL7?Dz9ufu+Z?u zK5r@84gW7}zHG0dp;MK0OUA#WzT?rK3ClTF&-{Ak@6}1dj~=RXPv0!n;#VIM*s&sU zg@(3?%C;w8o<#^IF(;plIx+jReeC{BX~i%4SuZ%wd{}ry%4ijvM3e??{R50@$>MIT*Tx&OXttgS!)k2oWB0N`l1O83d&J=HG#q|w?d|Jc!kV7QEFAs zV%NYK|E_;k;*1UcSvj+iwwJFMMBHu$>0Fm%nDS;zx&6-E zH%sEa_sg4peEa3f5%%BlmG95qy`5sl5**-I89M!Q1gBS`=;^u}vkonGJ!BCSQ}y$K zVd(9hl!m~NG zgK6HPJ%W#w7;&pR==h`e>vEaqo zN^QHCP2WDxOqRap%kDEj@8)}-x+nU^b`e{0?mnG+JATsKpFd82wmX0Kg>YWv-k(>~ z-@m;5bx$Gx9X{{kXZ115{eE??|NnRM*ZX_+mwbKX*OXXHhs;$ zCRLrTpQdeaw`f+=I_{e*f+AFQCH)d#(l9|fOKcA2`Mo~2E&r9nf5MJs{ns*8BN$nNY%sh)>zqR#j%azxN{ZP}XO~IO|O(`#kt@;8n8?cd~|*#0sG`8x*ICW`FwpY5Q@>wU$&B6)keTBG4ePV#$UN>pzF}NY%|1nzsHP z$A{1ScWx!zVP3Ogg7^8{Z_7OulvaQGBrX5-W!b$;`q#H--mCv`^Xc|w%T?;O|Nrnj zd;iJU$@|Mr_w6cOm0$n7HC$Y$`pHkz?qc(pOZ%oOJ>jtf54mv%hZyj5tZKZz!tdDP z@^7-A?_@h2d%o$wyivdZ3sN}?r!^ZwoL?0i z%i;1wSW-3AlWk(c^M8lCujdFbwK(ZCUamZR%XHS2l`92KvxJJKhB0qjbvi7c;drh3>0@W>eg1C?{gO6kamHkd zD$XW$ZEojT&9#kKSQ&6oLm{xxpURR8_xL}GJQ zxyh;6P0>731y8+=#f~~pT6N_8-P(i)&Gk$lPF2s>ssFj1|J(b24&KHtQrLFQiv~IVPWu|&u2x$Z??E^|0adbUwfNjL*oyo z!#wq>2Yy|+fA8Y<&pRW{!W36HI=FW7xOCbEF^4sE83ax_Qm`hkS3@9hmB=O$uGL!w zg1irOh0d;Dp3jtaaMSsHcWX{am^#@pikW|Zd1FDDFRPBA_RozaT8xRm{`jYzi+`!P zDCbZXtB=-q-koV*E@aP~GF4}a=TyhAmL1PG*hg#%s1Gty+$i{{d(-BBc26%VOi5A< z@KWhLu<5~^GsoiB++Cu=^ttfevdyziI@(XjzR@hsV{fPtKpe z3;uS|GAr@>`y+kbs>Cb1H)TG$RHGYg&$F@TXmp?cDf?^N$_{;fYqaTg#UX`I2az_d zy!8h@vnXsinRQ`(efsj7++l7Zj}~x-*>3f!iJpJXF7e+c{rvs^Tb=q3DSbS3`r5O- z`yO0gs^9Om^3_D6DVKwU>}HvKYBd)-H)sE*6)S#R%Cp?RYv*#oe^&YF8xz}97wtao zmoYii-g@&yt^WEA|8wu^TSdj(GutdE$XZpBeQ(|NY0t{+%wMmYy?%ye{l9~+G&%e2 z{%6(QJEt077rWo@Y_ZXKrWkH1a3f-lW$c9mQ4))JzB2D#JiDq~Z<#=&ZpRE=7uODt z*7v)2Za-9Ec-dRuN#K(QZ=`=>h-!d38&AW56xW$83Wm!0{h}&@ilzok`YdZs-u?1q z$mCtSUDSOm zz0ttyL`EAtYrKg;bG z2=AQ1lFHcXYL zVEgm#()uZHItq=As_&R*UAog&x;oUCGu*enOTOl^C|lbVF;UUKzi!Ule%JorvETE9 zH~IJM*y=ZT)^YCc`w=@n&6Ir4KG6&mBNla$hFXe`IYkuIKodr99u}@&8Y%PL#PKS( z&`#bPUP6`E`+ppEzbwbt#OlyuTJc)i@CaAXM#EAj#&(eL2e(-*tW7=dT-g-WL&fUlcZz zL4Kb4x2sd#^|B_+kPv?n=)KBmLBwoXL5Vh2pX+nNrf)ePqO?ioPNjCjw)CrOGClfR z|FASJpS5CM>;JcnhrO;H@cH%V!JV(IP9B`qd(ZjF-q^Ql(~1p~DnB+d&i+)McW2LJ zhb5PO-cfsP_I{4pk(IX60_^F%}QlwxP8ikx{bI_iaFd^mr#F<32Tk=-xZ!&w0h_5`O4C+4ze$JC$Ybk41+Z@jbpHB)uakuQ_gmL1u8Hp`{{NBBJkMZqSvb#D&q`{d7&3lngB{K$F5i^j;0%$>#6+&LUBtJ>E*k)OJ4D?`&E4OY&qRXRIofBTzvDti8!n=t_aMTuo$ z$G^=?Zi{7S>(uIQ41CyFYpwtL)$9G|{xeN*N`B<>*r9p-u87d-HPL_G{Yp|&UR8he z>AxP+<6TStoGZ>YY+SQ!*^)ZT&nu5+o7L>i41e#vY4$a*`@6ocP?Z+j#J2l;{r-xt z+pkV~e9UK7xUFj4oxj_cEmixIbztdx{qw#bDr4`hyKnP<`xlk`?_HXk=j~h{RbS4n}AwI+?}YRNs;j_kJe(Z_PdI z^J|l%@A)N8*?c6D<9GeMpLN^6>2h3KG097_lJk+eK+mG!-D?8Nzh3RSUY4rjlc?x( zCUL9Mk@{mDllbduD(**cPxlfzsLH@0BgwN_^uDoxQ+FD#S^lksM;QJn@cTSD^d`*l zS4hH}x?R$16Iw%Out|Pgo88j1`v{W;N1N7eHRkE&{+Yq%c^AIes=PY<`O0?{v)lp& zf8GacZ|_!mG6#~hd-(N^Xai>CZ}lqsc9Z1w^lsd9&@+!-KNs` zr}_4~UH8V#E#CEPi_#5dcjZ9mc{dV1nx8T%&wY7;FJRMcKDoNucgI&|KM zW1-vD)!$!Vti1L|bY82F>AKnfp0t!t)BS6d^x}8Zi8;^Tznpcq>fw_6?`~AD$o?(n zw)lA0BJJ?pS2x!>U)XV>ekpV$M`H0N9k-vi|K7JZd^$Jfw9_^976(&d;pzSrU+&cP zzrXu`ufd@(C4;A|N4NLaX5Kxc&dJuuIk_pp##LnA1eSBGEMcl?^Akkbx(+Pp5Vdn; zSgf)@XwsG^Eqa!^iZ;1dCX|`mPtuvAvu1+8%^3efm^0<46w~dChpU8HJw153qzoM__)`1#+nD=#=RWXa@YV`@{QgC8-QiuK z2Tz?+3=(BE*3n#&y*n&lFUC_Tk#`o?BJmK67dQPjkG;2l-d`( znoEt#=$|L=(M$h%x$SNR-Plm?7Lyk0oK$mc-y#joW)=aZAc5o8g0!RTxS#3$b2>0D zD&S1B-J-PP%VLAYbz}`6yqcWUt7H&swdGYwp0<;#d3HqW%Ued3@0KlYO?B+xQ+zn3 zLiEr%Tle$t|3^e7W(wZan!M-sulR3&n$4LFS~3^6Z_A0>zGK0b)X&F!v(tVosb`q@ z;PBJcJ)b(#<8N<#|KT$~Uq*oW<7IJk#q}cZ>TS-O@cw90ORsP!c-r{r(G@)g4YTDc z%&PWW5ju3rNnqpQU-2{N%=z=_hN5lTA3d!&rATKjulrBmOaHvow6Xka!-j%@`{|A! zJZxJhC5h=iRSouws*d()o6-MLbgGm12UOQv8Ab zPJ+n`ue|)TtoK!l#02>pae`haRy7@vE#AZ+vB7^*(n6O-%c6gWG1NSE?NDUMY&syM zz@t_#D)H1}>mrv63P^LW#zS(=5CD>od8f2)@+=5NdF$rHTV zsxW|MqeT&f>+#PwW2V%KuufTL1IUhl@(wTRA`8SzCE^ z_U7P8kD9IqIXj$va^dmxYc*9rCpxnRs!bM2&)>a3t)ag3=WXRyRl!Lisq;&2^?ZLX zS>bv)O49n9+>eB_&$i9v)jyl3%fpfP@?PqWi>bzap**j9Bc}eZ@jH}RpQ}8(?)t8$kAI3D-Xd*( z!|rp}4pZe>r4@<(^+%6wtG~JL)w{NP|Bs#t^|Q;rY5w<88}oEG|65mH_0PWkZ`aSv zyWZa6^IskLm(KsfzUG_!f*)C5XQgb*t9P8PT@`zKck<+vfA;o_pfdK)`3IMeu3+ey zWs)6y&o28$gYMx8$HG1LZvU^^cEQy8^`AG>J_dxQswOIK)%W>#dy#2CFuXvbDDDOXG0-X5RG5K2&vamxgqxZ-`ap%e8rPd6c*mPaJPrRk!LxxD#0TqUA znR~NJvzH&gm)cS!>U?WmrSpM$b1_b@wksV{1!o?_)+TY(gsO6!_~E#D|0xC`C$DL& zYZh`O`!D>PmY;I?-lhYWH^=Bs{&w2ad{M{E#aS1&N=ZrH+h4tT+E>Pi2-V<(6+IIb zUR2zR?O z?X_j$rrv2^rLTFaD~7QOC}s=Z+V}jzx4rk%`76F`S6&`#{iJ_;Z|%ec#~mi>*$0=n zzn85!{N}mal4WXwfr6(u9%^#fH_5G8DIk>L-u^Qt-q!U$zDlaM?S6jdoVNAfdl%n7 zJ9om~aLv8)AFiP*3SN)7eCxte<=+C`}T5d1}JmT1>FOz!MN$gNSsPDEjA9QcBsA^1ED|lWw zNtOBVA*Z&fj~4K3olvAEq|Xv`+C?Qn-bstcbAuO4Q0R@u>S&8Y`Dy zXrH9ChkTnK|^`}tG!V)e6iiN~rnqulZ|=x{-)-Bn zMj_79c=I>ax6yw~|6O|V@lt(J-?WKmYM-CZ{msWbwDQl7R8%z0oo(*c+8KCzn(y>8b+0lUI~(;IJI$rH?#q~=D$}yGrLg$? zIoaY(Gb9;Ssy=l4x{5iWB7ikepktQ($H2B9S%(@X_jIGtOO_nD8g%w3 z@1&qZG8%X4XZ#cOm~ipD*rBVzLh+K8EXwUHSDRS06&Pn++>&*}sFKUsOv|NXli{`H zEfq|E`maBU|9@b|rKU>@@;<)Q{QU3VrTnO^88S7g4Rg(^Ueub$m=!<0wQTFE`}dwF zX-HjL$L1g@7_evK?e8*Gx#!f+`_yXd>`6L%Of^`JeM82f!`b!b?=voM63p~jHGj{J zpZEW$scn%fiJttte!H&Ooqx}6|6F`~OP}@8dH>dZzxU(Wkqr+ISl?2aw{qs<==*bK zL>n4}+E!m-XLwVQ{OVU=y`BEY|L>ohuKoPrcJU>NhF?pM^S{6S?dtRSHCx|5`Eg^N zd3#(y$JXL@6W-nS`JlyXi?!>uG^DPd%Lv-cCdk=%m5sMta0=t9^)73c)oyNUtXcVI ziUG$pcAKxY-)vkjS6!WTZMBN%d}hsz2)MkgavHxqNCwD)@6UFBG}U0^|7!K$~LvKY5&czC)`n3eCzz_!wIIiKG; z4W7QI!Zr>Mq(2!6IbW4-T``fDOSIXhgmtys!Z-!tsjVCVx*A&Z&B}j%JY*!eYL?i$ z%eu=0&+;U3u-*#^n>u?*J6lS4Wp?Po_1BW?l{R#gWQH!yH1$7FUz6Eq8dE*1yjXg?ZEN;LjU7IU8)hl|d|N+ZvfOmj59g-sudYbW z*-?7UI$FLy`|hXtsg3)8@4bF)zC_x+!tB#Oj7^JwK9daATITqRcmMv{vmer%To3Kt ztiHbP)gHf-|LyJ9_pYyh^RnKfu}dz>`18sCyPmh6=hEILQfKgG*K@sJe;$SvzT=;B z_+h~uL%+SR)OlJPSQo8fIMaFW@P-EQA3jV90xqo#oVU*0R4}Sv;v!@GfoG1r=7iuQ z8$?sHr=E6bY~T<(!X(cas%pxmEE2&Wp%HMgpPUtHGWJn+;bU37e_YQxCOz?nQ+{)}CSzklqA+&}-* zwafLjuP=Ty-c)5{k$cdKAs{|+k-@1Y2HUr-{&wf<*6QsmZ>=h;d46V<@~#w{D~5M9 zHoIDCAB^bgkP7t`xVihkz)D5a@}8NOJ}#TMx6S7I&i{|6-}xD$VCcD+;o6z{AAffT z%gwd_`LHzKhIK*Q+a8OpOM7~j9C`muW`@mg<*=%(OVLgNp<&WBS{?4I{(a{TT)51f zFTXx%N9wcPxBVv0N%>y)BkEn}L(B4eS9EHYrRm-N@JjoBSX;NA^p)}hTYI(J+V9Q# z@$;knV?n;F8TF@sq{jR1-+0VZ`g(6|!nu08^x*de7Bcp`7OlFX3U8JeT}xv)aO2bjp~J?D zwmph!s{f)Nvce}!!)Jjk=e0iyHC-uP(#CTB9ea+rG}YOY@yZe97Z*P9Tm>R0y_MC73y1*AcXJaf1Iq2`DW}kT@goTT<~_@SHLO z&g?hoVGmj?jMeK~>UIc~K9bV*TmR`va(VNK3;cTaH}-$(P`7j4D9llB7rJw4k(s~$ zoK?&JmprfEv6++Sg|?ZPxCk>xqtYAJ%*1(zoTfd?Q;gUU9@4jby8OP{Z|hbs%h{Xz z?cMX~@_IcS3__xt93$TC(zDz=Pj=$fJ%ZX-*Ul|;-|v0gzGCw#F_9^5wn0XA*?T%n zZ*2R%;gHRjga7vHSQ!<6y~r;1Cc1v-W|kDjC910DEB}ReFSEI|Ji6@qoG@KuX_v;` zzhmWMoOV2Fn=#q%-~Pi_Ue=vgRe$6pypS< z-qcPNT(z2g{`9sTYi9oncU#$YuRinTcl#(mi>0N1zUJSWw8if8>Xhe4kNEbZr$r8}(Je4o@CU#o=p9h7aPnB7}HJ^2DPS4fX z6W_ql=E7`veR*;Fotge}=WA{2|Lyq5e|OTPSqU?%%FlZGd8%xExFY;nt&3SZN$i{HV`Soov;)>EHUEg}e^(Cqv zKW(lm51giZ-+g<%T&GaaBm>V0=j&A#<>%{gIF%gtIyJvO*>U~v`TI*wOxE{_uUNCe zMC@U}W6f1dkLk|&F}u#zdfWR8Sr4v0-*5l&qg$zw2uqmY#wV^wSge>NH77!8Ug14xyT>3fpuzW}E-7`?R}0-lu+1;N7Sd9y9Z2Url*6!`ic_KxgBc!m2;1XD{8m zT_v(8_qAHgJr!MzN5V~=rNTiQG$gG8d4K({>&z7A*{_%UY)bRNjI*od-^rS7aTL(I zbXYq+GID1`_|ogKva2sj&WhyIt$Nvfs>8o(y|vYmO_v1n$`0$EJ>J8k_3z8(>Gk*T zR^F~R{Wnogd-9}-OjE*my!)p{eebZA;X6LFt7=E|2VtdWGK@>YJYQT^P5<&CJ8$>0 z?9Dwqi7g3?ThTi8;_+RNeb<4l{bZ+phS_IlJXUKegr;YS7Cd~*{-fxVpTArmmT_p+M5ZW6Dx5 zFR4yD!@_g6$?7?$?z^h|oW1>fWkF3~V2kMrW1fwRGPfStd`U>;6xVznkyVbOOV|$T zE{;oRTK{K%%y%z~=ij1dhxF~MDZR+Z%~18_@_xP5^(JcTuh)D0eqwC8d4KgiZ*A@M ztK8;0+TT#T^W|1_bXZ^AmOc{(rTg!#P9A8yoTVc9{ep!IUwd#!U;V#rNvtJy#U^P> z*4cS#6l_|tqT|R^-$(NM_Z%~}&9b?x{P$dOwn{6Hh+U$~e{JE(!jg3>HwN<0^9cLA zthp+VW!lu$pB~lcM1)Ev&FmAOvgX`xKf$$M6q%Wd*@e2UstY9~Ciw|-NsD;D;@{)* z|9;2mT|duxbt=u@yXnaShN?fG!>5I;+ikitHQ;rNv1xJ1@7uzDpF%B6mL?m`^|4re z$yUTZ&3)FTT{^@&+ z>W>~$&93EVxHa$UkMO_xxiQ<933yEHuyKs?I`xe8aa?`+&rf&uOwl?y_x9Eud#|@P zEMJrvI;pSnqD5k8VnEqvwz=m{FPiarm7+wDMl|o5&&lrF*_@<=nl>1OFdq8v8lrON z%dy0p{QtE!+}<*O->y#|8l)dxuivwA$BLwOvF7}9UDm%LUzmO2m;PKXHSNIklCQ7+T)!9n>pN%v z*0WhGVk$){RE^qzGxw7-_?k7FF_t)EV zJ8*0XTDm);b!&J*OmoEfIsZRzRb7A3v^>@%>4Q2G!$tq}n#wiRSNH3#i@BI({^i)_ zL+M%1KKZWqzx^j)_AyWClAnrY_wNMizqRlTD3va$6a9VymPDFUSDQU~n$O>OwaV`2 zDT8T?j(g9a@#CEJ<9EVFx4+9&Bz>y4me+|64hfhvW74Jd$6FV-#|5jJs$RPs@b%8K z(rG@Gdp0@yIb4VebWE=+y>aDbVfpqC>fK5V0h>OZ)xUo2-;0FSb$b#j?zi2WIcw*a z)%*8-yUXc&JL|)Y+5StP{i%Kb|6}XZjn}HcEx_WrdcM}l+r7Qb{C0fp`{}B_?aHpN z^$)ePcI+tujh%I!`uP6BiacKbC3jXRNlD}ef49HE4?~%07LPww zuk(p9SdI^uO^sDV)#R`O)_1y1ncjZ;$!j zw!Zh5-8M+9-jwUo`LKM|8MmuTgEk4Ubu)&1J>F3oP&Ivbb?8j<*AfhGW`E9d{Xf0s z^!t5_)aI|8$-QsJhieB<1zr+8ylct)XK5ap0w{E`oH#cRSoYd=Hzax0BZZdiGj%^>(v$Gt0_OFMDp5FYxE}+`Z@J&421L>#;xLn3v_`^-1~gx`g;B%-xZkd0GYSnF5H{LD*wdtTp?+PqBe*TG{`-j$bo|Nnnu z_xT?d>wd@mNI!M%UHuuc5`nz}44h>`ERGwxrg(TQQCaQcm2zdnDcbek~Mq2EbX^DSlnhC(`4&z`u{-M zs?SsEpB=ubynpJSGu^L+cmCdzcJ1%I?`6E-eZ6WP8NWVOoqPRIe@#lomeuSA%D%7K z&i{Y&=cRo8iVL0goD2=W>vi3P&oE3;w-IJZ3hWa&R^cR(%p}O6Y$M2_sO?o;|81*( zkuK1*FIi%CGyw9{@`!?eE3-{!>z@6{NWQuhK|cFS8v{|e0Zp}^7AuQ zRn?DwzU;8{(0u#)wRQc!KZjbmFJHc#en9T5*<%^U)n7OL&)ORm|MFJrA{CI7r*1c~T+jbsS_SikEdHQ*;*>)?Y=y1;# zOV2d^%Hg+Z;gd&8TQ($IeP3(I>Jh@g@NxEvU%!6~3k&le-f;h*^8Z_lrth(zzU~F@ zhV^qNu2+^$_-|fsXt;6ze*1sl!N#8WB4B^xv2J8qfYs*y2T!C=MQ>V@|GhuLqGdBT zgF>C~)YQmt))vV+K@1)HCf$^u;$B6?FR?td6MgY!tAGF-`1W9d|Qz1{7{#NLBa3CV->C6mr|v_Zv7j7deaM) zm0$n=H2=TnwcCt)6F*Fiul-v8RDK?J-|tP2RaR-fpLn(YjkSL5zuoG8C*Mu{`e*;Y ztJmvFBX^s>HBj@uZu0ov8Y{lO1Qox#dzB^j{aU^L-&KCK8}mHPPUp^7c`RpodXw6p z-%g8|7-q1Uu6l7!W=hb!=PytE(>}7}+N~FZ8ld0cN;m@ zODgt68NNU6`|R_t0F9&`0XNO1GM!(HI^Qj{c_nw@%6E@~<)S(`#jWl{+;H^(YFZT{{QD`c=5mE=JU>% z`()iUe$VkLy#D9^KYy>P@Bh2B*Hb3BMPT*Ywg3OtUw04xzka>#JgLtdQB#bZR-{H= zJF-<*YERXNulM&yU%nujbY$j~{UxvG*OvH(Y`*i(Q|R>y*XuWwPJSwr=3-!Yq!H*^ z|1Q1f=Jkt$N146(**w1)$N&3t%SHLZ)si>g|9@ToKmLRM{$Iz7=WbjlU6Qf%i(i|d z)V@{0^SWcw-e_yrpa1+#xaRTo6>4`DuUWqT&!wpKk}r0arTsrQ|4*s!w=`Rf`sjF-sf&(<~Ds(x8GObL}RS@wmln;*uD#$AGs{?Xw^l-*~PPD z55BMv{mpUdVa;KFdGmE2uRo{eD6oQQpEq)`+uKvO#FJe{@e8K`pqJn-@7Gm zzI@cx{Pf#-D#Eg+yK9yDe;>`!*wf0$;M4CST3f96YoS)(V~NzBf<3{7C%crM>)-yB za`RyQn(PnpYWPkqi6@Lrg* zaBauC**W=BYxhdNo@92?Rw$-xQAOp^**jGCYfS$C?0fyMYpd4V%`g4h9{+FRkD2*( zMeF|G$glf!`|x$99t~D&yZ=9BZ}vsZJ}aTT@K^Z1XZp9TLm!=s-1_)%{U*cnM|-`Z zuC3)Yt$(!3kKOP8!zH2LCi2f-|K}0EdX?98b?z1cF^hlx@s+m!>ubLDf0AkWCi|;> z{r=rA*6;gNG3|iF#$We--#)+Jo#SN1tL*q&vuq?b&t05+zr?CZ<<+|TH{1&{v==Lh zB~H0?;pjqT3xBD-wkxmrg*=w!Tl{nG{P+CR{{Fmfx9QAb!FneTuc$CXMVD;JylDl0 z&rUBm7BThapLY2_75|@}YjEtCVUquu-TvE=MJ$aQ0^Q%%>+Sz_`=Rg~?)VBDcd7LY z85k0zR93yv4l5~tu+ab5w4+M%&#k;w_p2b*VczVe6AC`Rd;f2R)!Uut>yl?~e)+ck zcYl4g>HF34C%1RA_XK&Jso%DJ|MzC*d+KpNPMv!4;HP>0pULkp9MQKAf1#4}?3w?b zJ+^@hb3_0C{2TvwQN_XM*Hva+FRS~$d~4+SeLtoy<-FCKy#C)4Sts4gCY5@hR6?G# zd3;%R@1>le6Gvdz_4Pg$RlBzRWtN;`;3UC)ZSS|$QZHBj|DCUO>4wAlmyb1n8u(Z)X#~Ebwi@mSY(!ets%gw#lmh?cOC*>JvW- z)$V*9|4lA$^^J+DLWeZEUAUbjlb!!R)KGSMwCsHS)0Z~viZc0I-}K!*r?P92ac|#) z6(XiHl|3|*og33%a0IQ*{POLFz4>u#nXv0KZ`I3v-(){~xxwzMCr+%ASUhFY3GX90 z2bli%YX7}?e*d54OV2r6-Z%fx@&5YIA7A}-%O+2B*Nyp}KT&wi{^K76FPj|C)|j%A zf#K1S3fs$z^C!FR>wCp_Mq;6P-QTVM|Fuq!`*rB_{eM5VE=vD*yZCc#RdHyj`>}1y zwTkz=+j8{wwx`+kUzguHWD;b(;Ni1XtG=CiTfb?gimu|)gtPLt!9o_l?ukwf@_Mr6 zjL3Q&^)s=%4f|j3ySF@e?b8#T|K7YkzfRxF+vluq?40+{IHj*zny2MIUHMKh@#5;| zPg2Y|zplJ?_MQElB^++~#kU&{YHPl(;&zGw&dlGI}|G9Bez}tn( z1ePworRe7D`gK;`I;#t_b`+H^b3U~?=H1(MRt0a<{J+nxov0zJcj(Tae*sF#$=i+R zE_0vIv!~Sho8`}|`g=^Cbl<;s)%9e+7p0bqH*OzRvyyS!VDDn1srT>Ny@x43=15j` z8ipN}5S+3kWxl><_Qz+wmTtkd)9X&x2X>b>^lyQgJoaImVGZEj4nQ-33XJ$w9Hs ze-n-zDY?1hnzWJby7ynA_umUGUTW+(+2^#;A6rF3&B~0#>=jmrl~g&kjeb?u zFWLU7FUvYx94p;y5>dQ9Ve$%IorNvFMGP+@LPf13)jrPe6MZ2oW-^2o0jQJ-L5lfXO?SH z=-GY8WOpt#+9)A?%V%Cdw~>>^RvqnClZE^_Bsb5Mtv6qtFzx7#604@1B^%G3wCw+P z^my2hH|M#+%CGMKzvA4zoZW>P5RwHO*QC#+Z`e@`w{?tw+0;4ukx4ZC=! zq({p2zcTLH|NB>OuKuic)t$8}C!Ox~>DRAQQe4Hb?CRv%ie9T_G`N@Tu@-?r^TLh2o4ilZmYDdM}Sm-TUk2{uMVa7JmBv|J&($`MneWK7ISw z(5(7}k@*%iu~%9AmXmAvezWFnb3W77^=DPp%L6YJE`I;_c>4Y4Z|1mrJUDRlz@AjO zdoQ1CZJcm)hR33~&H@{Moy&V}UR5izcDI*3#xc{+{Q{qu@Vv>3)GbX-3pD~GyADiz z_~2kt-uWZ#&Hl5@?{D9|ZB=3Qy+eZawRacsX>{&!ITP9{y~v;Q&{4ZAl~*jkAL`eC zaXT0OZ^;EqKWJO3r}FyyYgG;^nJ&Nb4V>QmaA^JV^}OAay*oay-Ni6JFm7H&^7U-? zS5ejMzp8J~UiVdciqJjHthd*#n$<*~t%;g@ZQt{&-}TGBl*U^AxjlEfP3r5O3Lo8|M_j^w7CBc`Thq~dR+4TzdUoTFJ4uBT}E!+Cp}gz2yKaak|9+h$IhHd8|?>qf`Un^S_^e70`iUB6)c z)^~Tq>*}wD@6)?(xJfq2?8@1T9c=n?Ypxs1*M6*js=xQor_=iT|9qPM@6}P=muZg= ze*UXgxgs-|J8q=&$?x0 z6*cQs)+)bp$-uMqMt_8o*JK^BeR`taO>XPKealYk{$1ra<;xnCivgupb>Og1sJgPk zEq0eu{v+qV1#w)=-^tnS=JgLJuC4zk`0duZ`F|hJPIOvw{0&dRY@cIv}vOk3s>-$*ce;im8e(&G( z{C(#*9xiQZ66!R3cH+jDll`0T@BR6@zRF*@#e=g_G_NnPo6o;e?By11j;6l>e=ST` z6@KrSE_!L>YwP>BTsidBpNr_%{^OnfTN88s;Qc?3%_S9syiU%l@2{(hp4V)s=CDP{l|9kW?;;l^Vq9pUxIz56y|J^VAyZGe%$rE~$R!E5o8=KXBdi{bLKG(O3$8|inomKk$rmVc<-xuqy#r}W# ztGj;QP4^FF(q6y+iEk?VGjmH7`#D2~h8^ny@BVU=f602LFlI^qo4+%smR(WVv3Q<( z|DTdSQlT+#FRnQo8f@M4tv~Is;G7!ghfA0kI=;KOav1u4zE)oOyX^3ag@x~)r>cFr z^sW8tNBv!e`|8~{8wdJ+H4_6Rc~%=eE06%OCuBG^Pg9)Tq!Cl+S=M`oZO!_`(vNN)}CLE#d?oK7#M^^85kH2_#9Zw2^zJ4j80&ZnBx^t5lp2MR)EJppz@Gm5M&aY4v^K< z(@;-)EAZM-&w#}*6IL*!wHff5x6caob`54=IHE4-%OJ2_C++X`t^a>LoGLH(+SW}{ zwPi|`xBaaD7pHs0ed>_g!q4FF=Yd3W25W=G70Gvh79XxJS@HYAT6?Vm@i#Hsi#-ns zZ4m;;VUOq5E55(Yu70`Jv$ft~mhsv&Z{K~B`nNGLbg;j0XBFuGx9;EjW1Yb*6V?@6 zPxr4A<7H(KP!Cwl)M3qLdZ~Qbcj>>vdX*0^a&y;kt3}1W-Z%I7-q~{TGnII1+xh0) z-n%{dU|)OjuW$Wd7uRgAJ3nvQq__PdnsaVO{yp|DtvEw4&~w)0=uH`paZSy;>-WkU z-(FoNm$Oyr|98DR+j1xFuD&yM_P^KS=dQ(P%U{rVsFGiG@6Xb1ZXsD2MW6S3Yd(3r z2so{|7hGSleWF;-t&Li~GWo&6$9`~lF^k{7d3o1|kL^P1 z-&HQp{U|)UcnRn2L!aVzi=ET(Dek-5HaS|iUUtp)`dOmu=6_l3e{aRxEmhgyWy;sy z-gH1X&$|B4m8E?RM^CSG)z+GpqHVMApmciHIkT@T*o12%Kc7D3eR)aXZ}G+x3J+-5dGTglI-w8YL87KP;6mjC&(wQjP&xv6nMVP^WNLedU1?$v($@$uKT z1xI%Wb)O2W*FRYjDLj`Ud5+@tbzT|vKaMRd)6NoJ^2fJ7d`V04yM#Bw63f`X_^@|a zyI1x5sQC#xm2H1N&m!>dT>ki^Z^zWHpA+OXZnD+wP4|0Odw>7WhpH#He-(4$o$D=A zyVT%#D5nU{afdhIV$|9-*F(%_9(0zcQ^%QUvWd-ywVyw2g= z?RArT_D&Mg_vbL&B|TfVwRq>Yw!VU>ZN+nZ=W@K)ytgNLU9wT*u}|@P3r+IEg$5!9>TOhS@uE~X4C(o`dC_cDM`Ks@!Rcp^b(Wr`k``f+0Vq31>lHT_0sNk^t z+Y@x7ZA;m|h0gc8y-~~bl}LSOX~T^vVMm>=_sQjz=+yt1$)x{wcSXkiiNTrHT6@+W z@4NS5ZFPzBt|Lw1{BKuUP2I9sskVt%!6$p2WzEsZZC_vJSl%i6RPcA{zb{AMb^0~T zNcT7snwnSf?dOT(v)={3zqa9!OP#?rzGV>`{Sq7&F*U5*CAP=xrs~z~@70ej+Uu>i zCj4YOdZ+foldFf?yEE?Ie!pd!joGVH&VR+f?YTYC{QT96VjS%zcC~@2KV#NQnsvSq z*?DrE&HDdmS{tu?Iv)1qw2WfQiIYE1o1f@>>yps&U1V*&iszn>_m=K^5m0#AJaR|w zo2dd$Gp^mcuu>#HPJ!jS*|xS#T&aBmht%$bB-MX2m9Z{bczA-y{W&)BTR$IL`u%Ou zM6u-WwN6V)o2IYkGh;dQXW#bU;W=@WUq4dYeoLm4Eq{((*|Vtq2RW9f=&aC~Kiy={ zwG*q`U*E6XzBggv^2Iy-c~_ZKKHPO`5=){>r1mu?ojZZy!PP6>pIgM8iwKAdd$Gf; z$U1Vv-m_k@59>vHzP+w3N{rm*{-9&d&IMO?|1O#xHDRvF{zXR0-hv#0lZrOq{koQM z@=`bRq#ov!FTR9Z<56JDulH^iR^c}-U76Y%ppT`>DPTj?~r zgKQfDvYof*UtD}MuTj~{@8>ibCywCcxeQn8|2@0umo!(=FkG~@{@j;qviY8I8%?h| zZi%p-p>)J*HDf0i!?IJVJJfbAIpWQqCM>Jj8hL5ov$(|;#^tW5tB#vmRTbD6?w-`SLb(wvQJ+*^tSq7rsCCw)hs8{IrvwL_c4ilf2$$%7tr(gH9PgT`{$I z-Iqg5P8^E&MA#D-1~$IAmLFCBZ(3oP(~MhpF3gXKdKk9j=ga5k;`pDO|Ng1PK>6CT zqKgZk1f7knKle<1x(avH>yLZGb-ugo-oG%DB@)q}|Y+d@|TFfc#IT!Dq3CpRnaJ+E4|KGzCKi4&FmF)Xi zFCH=ZLeY~Cs?Sfk&pT7R`M}gwdqdNOG7Slu}yA4DM=5OQq$rjjR7XTH48^n6$?CZ1)kPW#6~)X<4ooc6I8= z_6yurv$y`xUHuTXs>5>=w$3rGek=UaWr~H9jA!IYr_Tv9Ce2tF<#FQtN6r?3i<4h0 zIy>v=i4$@8i^UBNR|WS^*>8FKtgw^K&d-<5&)e~CyI3zrNvwJOl_Qf>*cEjw%{{Hd z%l9r&isvkkS@VADipjUUTW5dY8+i9H`|ZNdDgW9ovCNzB zWvTY&d-h+h<@Nzmk$*ZSzYhw%*0>#X|edlElC_T2OT)x_GX$M^KF_3o=>;+g+; zngy9pmNrj_7yP87 zcy3|9(J=KuPSxgKsbcs}L$>)Gcl z^Zv~cR%vY0d2}v1ZlZaKqrYb4oZAHtqV~^J?b%x7Imy*{MP&IGx1*NFB0FzZ|E%w_ zU$OW9Zf*1Zk8|F{?$GjmlAM<{?@dQct7-C&dHl}{?pD=*n09x0a?FLRtABr=^JXK5 zV9>PnXC=zF>fEV)`K495Ht|^D84igh31|L3bKMiRS z{V?-bN4#-W9#2(quuO}9pXQ1+JTlf_-@V@2RBygnL;r5&%V*oHip^}l&sq7+WbUfE z_XgWbYa5OJoh)HromAyt`}N`JM@_xbUBa$TEB60;u<_oVv;Mk1QzKTq{j$%wed=0i zZuJ`shq(7B*TyAoIwCk}!hVJ4e-27Bo0R_%Za8A+?3J|U)Tz?WmJJ2f&a)R66eoRo zS+_eEG)GilFgsQB*uJ1oQ~j^hB^@c(b*l4knUL^zqpM9z!IR>n^G|!9QEr*BEK|Zw zK|rD9#zilY#s9WcE_XL#Z)WorZPT0fETKN)i-wZTe#MH+%m5nb)eGy>Ym< zDOz4h`nB!3>9)_jp3Umjz4XXkKHebYA{mdTl-Ukte$q6<;_Tz{jW0A#O?nag zwoXvxsy{#U2A3Q zXCr-?oNu#PyONux&%3p1#=Y8i2OfUg(xvNd{6za+$XE-ib>&?$k zEasZjQW*B`Ow2Beo%_rFZ#;Ic!EdGHt6Zy{`*&%+2|9AJewuu->ZY4@8=X&`?_|+E zq#gNl-MY4I0-KZav@ZXiwSLZ_<>vh6jOIOF8#CZ&omtU_?66@`C z+oa!xY&W?0+AlX$=T6zCUsXXzkIgRZ5;)|!&&7Sg&e97?Ee4D0_b*jmI}2 z<=z@1mr7#;McNO4T(AA#)cf48vb)<$SGkL=u#4Ecswgzg>)Go6Usg5u{BzLeXwo^o zNhf+*s)U<{$R?fB4-0m9U#nmD`25_}{|>L5aI(VEGW}kg@8`)bP8}0=d|3F^>Fv$v zdJ`>0gUwG5ystA3`RsK6DPt&Nzi z?fvJ|S8qR=^;M7eoU2Gr`nKq6YNX#esp_XK->2o=c(tow*}D_Bmmiw);oOlmi%jdI zy*A(3b8plC-otahxqW+EwRM`sXY;oa>%#B;I@`77hW5#X>G$7G{T#k)v0eD5cWaow z?`(U0a8Kn%v#CF$&(F)z^*sNnb5DNU&qMbX|1OU!JF)M~PFBv`*qo-j{r^h+e9p{w z?%%(AbNNT*+2TCmt;b?@)zkGg^Q?aTn|(cXx^->+ze!Jby7$T2z0mfbAG7F^(t10$ zwL0~ssSBQ6nK#$8$Kc}h?J1#69y?~=-kIPUG<`y#jR>bj__IfsrYVP7zxMU}^i(Hm zzml_(O772JOV#~lDp%|IbSf+to3dW>+J38 zW44uDJb8;b|609apTWV|n~UDo+*dJESX=Q{>ubi@b=RGyJvcdMe_80Z%Z^F&876MN zJ5el~@m%HWRc{j24>3A_;VFM!eB{nSLo@#CFJCe#*DxJnJ-w;vpu+jjdD~}q@7h~n zS@3iD^}1dAv+J|#vkx2dPPz2!*Dqdavzm9s^M5}Q-~Zxk)$#Y!{50!Ld7Q78T1VZq zcsK9+wGJNZnaXF6Ew(&eF3(`9#ZX~j;(OV|H&Db=s+LvnlSpmt#p|4k2NNzh+e}N< zjo9$uZu$MYdnz}dep>bMsJN}%d5eWz&nuT-epzBAnY?S=>s{+stWs1l88?XAAOEmv>)>)`pnrW}7f(?GgV zM!YkuE%C;87FNd%)tl@)K8iCiq>0@5%3P6f=wX3|$fVSpFH8J(6c|W+sjz8uIPkLM zR{tkitCAO;>hpfw-v9S@f6Wu+#qUJ@*pknf_{Lu6JuJX-a9z~Vo-my|RXOFMx97Ci z&s*Umo_zk0SZ>zkEsP94`6~h$Z5XCpN-*%?n367`Mlzt zG3V|7?^&d=U38U2-{#$+f=+K%O|{)JRd#J#`?jQq+k&^s{yF`i&{+(x0wVMo$2Yu`989<%F+sj|?y8m9>_2To- zy{55eT9iyzdCcq*`1I%V`TFP9_kVu2|Nr^>y=r|KzJ9*YJ-Z983jO?a@ztx#2M=|* zYAPwV6!68neUmvqW40nk)0;G}(TtKtqqtjlO)?JI0-!fzAws=tE z(lY6VmV42=2=12p+28m6di6SA{-sacHm=Px7!U9?*YPlXmr3>s4L!YSPu%+{n?qCr zT|e0Dule~&JG||fMM&t^WclAW&ds&f*3xo2e>Qb)6KwVA+vkzU>NKRe$SxjKJt>)U79cehI3XJ7!0e6|Wm|5b4R)$)%a z?m?b;4-Tz-_QrJQI>Tn4D>B70Z>_4-OfG!D-jaX;&{@`gEuG{MYZ_ z?Y~|L*5C8tkomrkyn!O}bw3iT8CZXN?wzQ)X8XGvqLnYFEsb>i<@dEydS&+Kl)jnG zbLT3apYvtn5&N&*&3Es*1;xc}I`eX^x%dNiaE&VZ((ls!vTqTw7j`Bl?&`j|d4_1Rm@&hQ zzzb6uAIvl0IsE?nZRhfPYb{(kGV}84e!W~iT{n7L!ojBZb>DaUE&sf9dR*1hso@gI zaqF)?|9o;5lzr>PkfwYqHIuUoI*#~10u>{oK$ zly3NWt8C@#t@r;t+nzt4D`o0>O-FYvh8ckdhtv!P>6yF9=CUx|juuOsSq7jN7+@wvv)@t}YGugkj8+fHoybD-SbC@Z69;aUcUG`$)x zmK~=n5550xe5}Uqer!*$vwVX^-sx$&prjEQdGp!X*{4sP+V_3$`^vrdM76_YtV%RQ zxQ-rXR|ynZ+`f&At(lpb`P*IpIdTjJ%?ss455x*{wU)%z@87+2Zmet!9sTbDWRb$?@I zsMt_&o&SN}1|4k)o=-ORtv|o!y;fy$?D#U}l1c9SdwZ+Dzl+_Haj}h8nv0uT-Pr!Y z+r+B(Pba%)@ox# zJx}V#8rmP$wUps=-^1$2(4bk@<08y(M-fyz1&gG9aV{$tJ^xv*zy0wJ50*l!xzXG6 zVt1G69xu$>{`;MHUBr&H&-PwUE8ErnzPsk~3#-x{^Yp5oyxb{wt3G=F{{s(yJz3i= z^y6cFck4P?+dD5J{(UfJjk{I;@xs31uad>nR9>uF)wL)?e4W5rhJ+|*d##3*n{`gV z|2})!%g;aGWzJD*DUdn-xu)dJ1B-JnOVrfW)m2qJCy7{3yl}9)y6(51b3(?AqRqd5 zNUsmy{&MlNuhOso9t_^{Z{n#*DfP!c%sPAT^xB$xhicY4ShyEmJapy4*4K5}i|#9d z#(9cd_xV2omDSgiSxxS}{ivd%;xTE->t6>BG}zknFBN$%%HZR^B9PH%V(hF*sXyP{ z&)z*-ewNKnSI+19cR57#KYTp$X8$!mBkfBnhYELUYX#e``}oRf&f(dQ6m&$s>WbBW zhlYzeL^g@Les{&O;UZT`j`1;{KiOS-#DDwO87zZsnGOIVzr$R1A;t95&!l z7UAM-O0ZX{*nQc9nZf47_GlBv18)~i;p5|zYJ2$k=OZgWK_?FNbn)dYe6O=>DqcJA zwM=ifM&z7|xc!C(rx&;sxYYRyRHjK@dotUvK6j;U$-Fc1v9k;woo#Mo(gR=M;3!V$h-H#8dDrB>*TWdbM zl%w*s(6O7JR#g72Xg5A4>v(SF1ckUafop4~J8&4XRhNdJN_jRpvFiIy=Jwl{wYKS; zE%4pMz039=lj4z0Irc!jxyw!Gye|}g zR$001yJ>vx$9~H;b?)tR*X)}Yva#?}q1G(hw3hSFKUdh;oL{}_*8ThISFK8vkoeEa z@QCHuVx}1k$vP4|L0)(B>c4N98*ucM{pR0uyU&SQ%SlSfcl|oQ|F2*6$z=26-CZ-4 zqQC7g++qCcrgi$iWwN4~Yu0}}^6}TUMuSo{alQDxHrLO(uh+enpL=rOhSvq@U#fdo z7kvKq>58WKERCgYi7$5LMNWIH*0Z01!6SsB@RZz}=t)Z|W*EKqOIld<^Y7lX^{&z8 z&rTa_ml_;Wo@}5`dd01}B z>6ayL$KnG*Lj_o@qZ0qHGVG|&2W5ggr}i0G%kV``TV8qa@GINB<@Z%>QxDEE{W#hhln6)sHX?=R0oTc}JyVje^{L7jau4Q;|??5$I z!(5RW%QAPZJAdSo2zU9Ft5@P)U9{|*ZY(xsx~S@>=CAMf+@2SGLN7LT>1yM3a&Ncn zkK6EcVb1@bvo8BGtGRb5SHA1|)LOjcz=uQJa(b6n-|MaaI6>jLrp{`g(_cGf6g_wD zoX73k%;qgW?{(6LEZ*XIn`FP-l1bc%oc;Mk5<0^cS*Ig zd~aV0f3E83Pb(I#&9V5;$k53Jtqr)E9(?|p7MI!8x=z-z=H$*#6V*T8(J5G(m49{S z5%=&NEazU-XBOw&`xmllg_)V_KEBwSoqM?84FeC6_AE|0#Mb{^)o?s(X5 zs`y}r@%Otb6~>p3&dPq9RkiLAQ|?+t|FTs}%Kc2dAKXm?Il^dZ$n{d+%S{IpQmzEp zsBnOiUGS33C<~cssgaYGNbYQ|3P&D`tOpN9##{9Z+?zXh_KOD`%7^3Icd!3y`8jOK zZVM+1)zuY#Zy!oChduhh1e%e*xo>0qyJu%=rQOcnahG}N9iFzg{>9q+^8{ud3=*>o zdGy#>cVjx|9{y0}dC%W2^m)5*?Hf)O!!4qqRC32`x5?4Zd#=BpyYqaLq4Q)|Yuov>qr?1arybZWxpvX<_zmwlVRaNkCs%^atYw+A)J|`@{Bq7k>r<8~ zo?rB8DsDT)hh(HU)}JYPSYTk?DVW)-z)>aUh`sk^Z})|c#XNYbQ-@e zTWaAqNyT%Ll5=#clOj(pE5qc!6>Vw_H`{`&EG#l4+Ri_p{j#u2z-h^qrj)l?$?eBD z65Z}EO?H1(N>?< z^zYRvhqEhft+OQ(7wPApT*Wf+^0A1Blkt140)l^k^J^}cqn-Qj)+V0L;Khq4SN%=- zy7v4p$-DKvXJ?(_d$*_Pv-P?|XK$Zga&5DEwD+aWHH&8K%6YqJ@>ceHYm#LWo6OUn z-uh`5r{H~E*QT)Mzx39`S3Y_=@z&?1-Q_>O30(80o$+m;Gjk(D+cu_#8}B6~`nl3L zy;lA`vuBaU4zWX15;L?J92Pa*JpC>&$NqNfwT9h?HtASLCDud4XZ9P4@vvzw&D$=$ zRC9;;n}ut64j=fz4NASnlWiYvRPo%Tv)J^3os0HwMaRn~u7O+Lb1FqKf{LEx9>dU3 zUr^)y#WSYw|G#X`=eTw8)H-mvsG`-7c}&mO5>zGzDmJjot<7mtxWNz8+RPnMuOVW@ z!@N|p#==~}cxgUc&e;Jo^(yOV8=?ulNq2T8^x z^kmLj_IlSMjfy7OW!$GXy~#-J->={)v`CaeNc2GS9v#+ZM@NBxSxqmi`EHxDXfFN6 z>sVs|>g(-T@3b($LMBYab&|>!wtAoPZ$G$qtxL|(235Sjzi+eywIbJRaLLVUl58_f zyDtE$5 zPOdc5>O;w%lTsqxvKj7(@#L~LxUf1%B!h-XJ30Fq-~CyyS(Tx^yP!1#Bx5{3c2<#v z%qE@3we|83^xRgTaBgZ+xM6$K@E;R{km#8+<$nS+QY6^Cf*HPl;m^HtAxxqkRIH}) zT{dYxr~nfF`TksAn9OlVdt$u;tZQ|uUszzVMx#r`GlREbhm+>ke2ye=Omw_HfAC|xl*#uOQ35gyN1hu;lw;X4<+->`>Y29l`RLK2lzY7{SDcpTm z!PQcdh$ulkcwGvmcbWzt?lYBBNqE>x_v8TSOHC z6$20MU5XqDY0g_Vafg5V!Trs-DMQR*5z`E--6pP@rMvI`*urIS+of&WqA9n`LB*^> zAmbe~L{yyl#2bu^FpYO-t46YRa-_aB*LK;zHP>dW~DH+Ai7-iiH%fN@kGwUwnPV!nFqfm=ppTdG@=uIVm1CxRYn@70h68@_R2Vssz`9qFo;rAqJ@v z1D!4V4qpgsaADp2QF&SHtRN9q{!a`CVt=-z-4|AAxp9#zHQ!-TljOO1A0h-;Tmu7U zF*WS2|HqdMPT~zNtj3Yx(cEdNo|7&}F%1c1lS< zpEu67vi?iWYA?>zb5|a13gx~$SEEQV@Sw>8TH%}n&<4zV+bLWQ~f_Lmr%G6)be5iU<@ZFAESM;7OQBBc{ zp558pE0J7zN+C{c&Z9Rz!o#$Go$JI^BflXJ8smifZ>AKvYGDq88h zeqPWfi|r2&Y^^i)FZ0=>6(?fh#PP7gsiNJ1L-Ed8Uy(`E^P(ZM z%E-)J+^VZ88te=Wq(GgMtXa>>cBe+VH8ULO+4bh*p3_f1RqeH#?=Rx&dzp=mt?A%` zb+40c{+#P+e74%0&BuuYGFi6sUD|%ji`;>0_wNqhs`P%%lmeS{zs%6ZhZb6I-coaT z8^6u(Cv8lhlfJIh6LuHvZHH@<;e)ESq`yy1r%Mo>#q}tsc+qyxDzida9+Y%C%K_>g-jYyf$0=zqwo4 zBy`BrllAH9OCQ=~)zyXEe$=x#b!5&eo6ZzD&G3Z*Lxb$vlGx{!_xi#r9M~tUNU)iB zY04sv?Z2OJGaShIaUj#by!g3u^vhY-O8@S9^WCLSRM$@ervLPc2| z14X7RV_-N|e|QV5%%1$`u0#F*pUv#~SFRg-wd)_SnI9dstKzX+xl=vUEb&gRWg7!D zmb~7jb9$1>LQ@6?wUe84ezz$sy|PcyqONiO-&0eSt;?kz7Mz)HHRs$Z{u+hkcQGb9 zLZUvWw>KvkocO$Fk;aTrHim>OaJy-Pjmc{g^AA5uE*j#cye8JU%!yf?~z~5p*Ss5 zuJ*I9RH?JTGG&`$%iVT4hHx!KfrZV)!U>|eZt-Ne~m;^nUg z4;CnJ*v;oJH`nj9tSmTW-Z%!H&1eY1p|ZJoH;)~=O;g` z{0uf;pXcz0-+yI}SMI%c(!Za9f#JK;zeh(W&q+KsdB%+W6^2nfom_G@psID%s$F;U zd@ivw2#8OQa9mOGh_i0dI`PRdJQG$tm}l&J`Tcicr#FSw7Zn&73YARN)6ZV^@2*ew zpReV0=~ntY&y(leqJ7I}T+gpc?r8;8x+1QU^{f0C7%Bpo{{BtBSHFMjM#EpTP8Y^} z+f(UnmitLXZBgfh6%QPZe1k(n9R&(z^D`*?YYpA{`IhO`_v$SgcJWnp`+@^6=y-&D zXlQj(jJ=*3IqjI98Z!fE(ECVQWSD_O{gcYLK#?__XI%u%c!4Wt28Is# z6@k9e-&&5#90yf&3`;Acuvn(&T65}ubOWyL$i-6l_qcE;$5M=>)n zB(T*x_r999V9KghUYbW+jx&IUi3~({ty{h7Rf$z9s5Q;Npb&WQZDP;LRauc@Ucpcm zZHX&ZX?adM{q)cpBL)VB&0JN>?z2wh?7y40U1O0aBLhR4?3ESorew}Km~i1?!HG>h zVDG(YX*zYq)hl?$2MGp-glW#bSzYySE=|$s0=JGC7z|D?bTbuQ7~pZe6zt#wZBkd? zZiI|$zc1SzIE#safk8SeWV<7%wI$*@QH66YC?*9zMl4QxcrAJN>RZojzPP0B^2qpb zZ04-ZzP76ly2M}mv+2_%lT4Rfjb}_ISIYkVSm`ax*gZYCJ1j)!WPRAXlvzoqH-&^g zweSlR@u}cpU|?8$B)+$+^|s&DvJXvjXT3;x{BYK_DOYcsrJN4)zuQ=Qb@}D8HD0p! z-pt^ha{79Ih`HwKZFZ9vzsTMCUf%Z6&22kR*dCo-@~!3gCLQa!esc^N7#IZpcXnm2 zUGB&GO#gho-P&8yGfW^04C|3r7eGv#VONvHCQs@L zUl%u}!-AE8f#I@ZpyAr5S6(_i+_kCYS=w*wJ#*$wPyX-oeY=TCW_{;TP362_N23m$ zucaJw@ZM~HjH&3_rS?tJgp$6`%=++bcPpo{Z1TYg2PLN3#!dIGSD3l< z>CB}qS+>*rWY^eD{Zx@^bqsVAL&FchkaKf-{h#yH`ogF0=9XRykzLJgWv=5>zA@qU z)w08}Z^UNYyMAfWucFPhN}Sv0?oDNk%eMOyx3~Q2v7;;hBwT*UX1iLcwyEyvw8S5w zp-(L530F2s=h#$i*`M(CR7`7qd6n=TrHh6FTA)~~U(|JW;@y6&sWuFanF2^Ccy;cB zXYEog-=9oPE1!2`_h%N>mdTU2PK7UB=m1KJ$ur(=zHmcW4m?O~2r5wP8GO$6=1ZJ))C>7Y-{A~XJlY_z;||wROsua-r@f9-(_TN@|i54)bVIeQ`64V)6>O7 zUG>wZFLMbDft02U4vVA~W#77JelKHxk?J#l<7ek$|2~;K>9i{cXRFh$b)X&?sCZMB zc=(~({`buNyQ}A<3e{h_WLEc~c~|Bq8(0a`u)B4>oEX}^=lXkN8^)*d9d8qKw zF0btCVmgsV|BPC_r%wwDdo+QWf#E=`d2yPTT8qh*D={lp86A2Uc)#3YZhiN)_4=Cn z$3L<$FfgdB>TGphC|z1A8@`^6osC2BT}z8)YwJ#KF^g15c4=@033AUPk$yE0?XU=x z1u;nm6;NuzLSibdhX`R&3o!#CjY&c@{IGv}_hxlS=svawTUQ&MS7c#I6cfB~LWPkr zy7fZs^}qY)b=%$Q;%#$V%IVy^sE5(%K#PHj;>sm$wR#>-SxTa}?CRHk+GoxceeKrk z@S~I8-&Fgm7{~}37y<9~5fTNj%us*|fsWKb5`qasg+OaKkc2=6APeEpTu+g1$~D)s zqIeOs!wG6A%r7_`4poKhMRGLPg9he_3~-MSH&AN?9zP(vK^W#zTH6n@=Z}_9=(CIV z|EoT|J9B4!(fNJr|LweD{Fz4xnlH!lwVSD0rJe!c$2wP|u^zkR9QU}R`%@!|Yz;leqbxwrY> z+`S-SyZ>M4|Id4mmv2|+m1n4UEEJme=-t_uXWf6@%Q|7Vw>V#IuCGt{TKj^W;Os9y z9!;O#wtekA5&l@otXtQ&?>DY~f9Cn&(m;{(clMX;-SzzPV(rPs&iDWPJ@sN1^J-}` z`F|GS%6|2X4EZUGyiCeUpYD74|M=$K*XB8QHf%DRnAhQ^S7$3RY3K9cnZI)8%&wfY zD*kSi?4nnp(zjN*Ii2wBvzu8_@bJlEjg}azaQmr!&ZVKTdp9yO$rb>h1b-B<_6r`0i$7^w#RWZ}sbZ`r>U1w|#jP=&|j+ z&8L&kew|pt*l>USrTa7I!Ui$ym;aBgbh6-*r-+*smTaQ-6GEo&7x7-DPF{`+010-^5*(m{dsgE_IIy6IV{Q0P;c&V zRewj=6rS^Sul_$QQhJiL`+MCD4L?SP{I>W{lA;U;W}hrp0dJCf(CZhn^W^XE>cxsn zq8Ig#4WEn+g^XXY^}z>4c!)|-!y)nn|QC6_o9B~|EJrS z8{#*6)nC)Mt@(B2Y}>h6FVp>(MQ>l{-_vVb{cF$9zxHopO^biuxhX9is3g7ht;LS= z*k{Lu(}mgl^YZbvx$$a%s8v6WZQ>XY40S>?z4DS@P`7)m^o@ic8w`zQorV z*~M;tTK~b_`qreKhq|5~DSDsc?40)E_5S{S*SDv;7L~oY60U4}{QEZFr_*iC{ifbl zO*x*g`#I+3!^`S+x@NnM_I8_i@>F1*3?TE9|hmZdb7sQ*VpEBsl3gm#k!Fj z9=Ek={C)BJa(eqF-m|&BmkUkIw=}A@RTe~l^807S-QG35e$A#h@%=IB$M3keEp7kp zZ*%9T=k=?TyYqj{U1dEz->!Dn@8_*;&AX%Id7ix8VbIn0?#RR6Tuic<%A?Q1LlR(Kd$lwTwUB+Ai*TG;`*&w|m?Bzg)Sudtz<&|AmKl&vwtV zpSP#}7azNqA1i;~lm1+5n)jcTr`|6)^512S ze)T)+x;M?H7k#Wk%cfg=m3rRw=t_$7`Qz=+ABAx2y!mp~SN1+x`+L`K|NHQ&pkC{o zwQJU@#M}S)`(`uYLD?-)1nGS8C=hZmYzPRI8Sbu z(UmRlUu^WZi!e2v*C)1WO}yTW*guOz_A!3Sv&g%3W%JUtwbAeIm0m2k*vGv%qtk0| zgnt^hny~1**}LMi&hF{_d7Aq`{s+lWj=9?DWfvRD`aIOz~_N(4F_Z>z7N%q^(yA zt)#`@&+xRX_q)12Yb}>z*6S?Ke=*A{cO}d?`ua)O+1d+PdApjlUiXFXWfZ&rVRc!~ ze0kTHUq?@g`7g7|U!QZ*^zsi7}PfZf9Pdsxpb(-$)}EDnEuFb9uaKTKaRpdG-Yrz7IF8{}Ft8$7Ipy-Rok0?ApI{=gNKiwECPE z?Ng1h`h3*?WJ-s$`TO@7Ihxx~zn-)Dg>>~K-Pz`D>3;KeT)wmMYq=F89Z z3#s}a81X;u`-7YMcI&gFF5Zg}JznT~_)kjs$GPY0b1!a4Ob`EG9zQQ5?`=l*x^q+J z6mQvZ?%vg_>wn8dylOU>wAOX9RRJh)wlfkfBa9PcR1hwZReO6_HT9xJ?9jg7rScFvU~TF_}}Gkxw!Mmimk!S z2kH+Q)nC&O4_WhjkzTn%oM~}wiOKpz^AzD%6~}%etVj>h;5W zeXab{=44CVyCP+~@5j@n4|7+Whwoi+`t9w@Ce{_Nt~~g$Ew&U=Xx-aw)idY!pTxKY zUZU}!vhVQ0$M3f;Y0G=Ec8?~w^je=^pZ@LM%=4f_slUxrnPs+T^RuWI@9tilw(s`; z;EMMV@!?;uyj|}fTes!gfmN+P_rA!t+qAuE$N%-yH@p9@SW)-owtl`{-MpQl1{=>E za?YJod-49CFz0VC=T;lP6tb_jEWiE!8vp#CR`pwd`ajeuy&+y%@bS^+t*@V*yCi2T zA62xC_osev_-Fp>-u3VK7=*4GrOX#M|GMu{;k6Skx#`}e9ZuKh@$Yu3s<>#?I{nd` z$@1rIJif`?zp>%PPWQt3d7*&^KZGRC{cu`Zqcn5f!R;AO@AxEk7jz0w)mP+u`fGOg z>W=PhdN1YEMeEMuc#)){Fx-C67pY3nDx$*PVDfMy84KAkh zD^8iKii^E|rgnP0Y^%jQ?cK4jf^4j1*XGq#6~Fj7OSkv){-3Yx?yh(d?_Iko?BY_5 znJf0J+`fd%yW_Nvj(OeIg4cikJ@e*34?-rw6aYtrP?D{cKu%FLF^*?AsMtpE1#XRx@N@z2*!;=Qh{zq@bs_q$L0pR+F) z6I;0?(;_fLJ?7-nM^n3_Te|zdNliU)H1x>PXz?%R_UA>#Z1yK@RpphkxO zt@Zo4^)~hCUmyDN25Q_ixpO<>hsn}?8~k=m@>UJA3%Q{b^C~0NyW@0cm)f*7ns;_p z*H`cOy=i}?Ypk>5!Oy3!o-$XRZk@AeooY$;U9LQ$pJimg0;h(SEQ3eJpj}XvcIJ^@E>SG`YVd>r+ zs6YRovHf-Ms_7G7vx?MPSSlDOi-f=?9l4m4Nv^nR(e< z`cC;pDXB%#1_}lW2C@1c`kwmE(S~3Smwr%ca*0B;iJ`fkxuvm!v9XDsnWch>v7w%& zp@OlAnVz|sX)Kq%qk@f%f_|`qzI%R1zJk7sf<|#_eR4@=ex9D0o{^@4ogJ5*okD6} zN`6unm!YA7F_Oz%6rv3c4M6qo>48 z$EV-O*ig^V*rHy+#MDgB7(=_UG03B^aKW_Q)BtR|v5}#kiG>k{c0)r0Wc_aWc_m=a zyBQfO7+aVr7$^iO=(`zPDEOI}fxHRknJbu>nZTq>6-(p1mL z+)Tm3#8A(|GL}m}Ah9SluSCJnz!GW(I5ib3M1zDZ6b$MWffT)HAU(S1>oIH`X(;G>pZX8cUOkQz7ZmSkFk$ z1U*F>Sb|)Q8gwK(upXLO3{8yn%nXrSXlANsU}mOZZa}mH&CwlbXaGtiFb6^sEhx63 zS;o>r&%!baPnIz>0L3v(KO)f@TPPrsDQXHvq*-v{6Bj^DdWHtzq&NM~61GkC2AIKz zk@5_|X&x=*fzm|~$te%HEHN}xFqnQ;jg2z}5-K24Py+%HM38`B z1qa0RocV0B+Yc>eYhbK5L=Id?^2YQ&IJ!{1ZwM|RNcKLY7zbxOLqj7-#sj+vUciDx zu^0W=%6bC@Lj_R2ft2-zW`=s^#+C}EhK72^=H?2N(FgG;UGcYp5QksL~0A@Q<#y~Emkm z9hZJUQGRl8YKcO$f_{LDn}Yu24{WT^L~(Bko80v9MV6^$#=G zdC#<*sQQ*KG;)c7c;Wn1@2h|4mO!a?2h;lX2l<@$ zE9JD9?!H(lE7fyp%JS7K1eOSWSreFeVBuolty81Th`;RyoQ;(h7 zZESK#>1pb_xc8H|xz=(TOxOKmzT}6F(DcOlY$EkWpn?#V;BaIXBTyk5gqm55j6kg; zq6<(%BT&K)LT*bM8W}1WOg{8cak{=fGw<~Lt!yqVCgzsL)7$i!&6v$CjHe&aXV$Ba zdlSo^5bAnu-%C!;g)Mw#fsQU4*R6j2YS*``Z(oa*|J`mLetoO<-sT34z1taHPSw&{ zv?avL6hP_f9##MKbr~zQPU1;&Sw@Z~NYy zwXeuDwfeeaMmoDS-#uIQ?{oU*x0Z#MC8{4PU9@rY=kAbmFE(t}et7=@^S>p!1qI&@ zmOgz~eZYK&=`QQKgL^ja_3-+$@5asojazN8%ChbCWv5$egYp*6ouc>AShW5BGogZ@ z`028IuaYOJ)YgAy?o$5Z#Q7m{-3lhDyEPS`3*Y|T>(0FEz0j^hXUe|koWI%{?Owt6 zY;DJmT_GVdxu?JOzdpJ(Y`MOE@2iVFTUI~kczbnOky5`{X{Pac+g+kM;n{CI;<9cQ zyDur4n*I4wV@>tC3foni=01A*eYMH?mwTQ(6Pxk+-phsr5DwmzQoTGkvy+FSI`~6Oyu}6eI$r;CgeseL_LpVWucignls+(&Ly4N(n zYuWeg!0d}^t5edObFMF}zqMg$XMgNsXEO)M30?=x{UXzs9!yxXe$raEOG17(pP0-_ zSv>P4`%N$F)v|7Lj(Hh0^V?i&u5Y|xpl+CQ_?P*0*R-1#v~FLxox1p7oA1}KU!B_w zrBi3em0g(lhA%RIQS^bGZ#JFM+wDvzvYQU(X{IN_at`=qm_KB=adFASw?C%m zE%RKu)ceT^4}Y$6danx~TbS47nVpV`%v<>TSn2DO<;S!h$L!FZnqxR??k2YA*}7)! z^^v*TlG1mvF3)MWk&$8bCarn9&_}0m@sBA-^``qXG3mzIMaF;dkthuCsOqyexaRR+ z!c22y`EDh zb!&s+JIAwzjiOvfa!g)q*m^GKc>2vm6UncC=K1j5;mdTk+Qix=SpKG=@Yq(R;Ke&M z=jLp`#Jl-@Vfc>Pv?Gb!yUfgYC5g=qd{%YdPulpb?=pqkXP#YhJ;PDb$hnR+cEY)b zB@qgI|5Rr#t`E3gvv0%9l-+?BXTEuqW3*-Ot%FCCCvJ7~Uab>8x$KB-W=gQE$g;Ce z?T1{FP0SP3ZS0xz4s_b?eE9Z)v}umpr%eg#EA+qI*k>#2!MUYGaPHFC8J>X-Rt`*S za}GaH+j`*QBw6R}vQdl9otqLI?QO|0>6~YMq(syqb}3FV1--rX8$J1Dk|#E1ZwavB z+kG|czQ$~y0~T65Q5w3!-wv!`h+=w^(9pS1RfdKA@@#`2Jez!#XD^iUDF3jqkL`l% zgTo7rO{Y&b+hnoePJ^FL%SEX}kd z{#E9tizjcEURr9!q5E*blDM5!NmcH9s&=ukM7?74_i*%%F|N2E#H;s**9E)6$me8EnQ;84+418Yc3dmEtww>`iSD3$n|7H7#v#a|2(!)Rgw# zZzX~^-d>zEd4c%j2dSI6Zk*2CEZuvCLnR>Sw2t25RTF)5v_(4ZEKsdr{g4vMyh1Q3 zc;!|L7KdqUT1VI}PgayzA+7D>D6XXPg}Jtk*F(GL?UDtmPT4nFw@l!UHQd7D!<_0e z!! z(p6V)$fqk^>v?RXzAm!0TB(*Xb}^%i@^kK+3wKEL)Mv6SDhXgKS?o|*^3*4DR^zT& zJPh6~R}}=Ou9|m0NITPdU7N%P=33PYmzKUgI{nEDCf!(}jb-l_NaV{bFu26g>nxut z6si{9`ZDo;@|}(HAK7PGn*5q+nsMcj&*3*dJ|=JU9Yimg`5Awi;KnUxVJMBHdOj`YpHXXc zl8O+Y*Y`6Qc>cA_E1jXUr24ItV3U>O<3Qw9gIh0o=aRkBYFJXYNN?ZwSUmZuwQYXcUiYURXlBz#DUY&^QwPMRAjDUXPdN+W2x{@ zZ^mSIpGukfliICU*;h54l0eP=wH zlrK!;bGx+Lrf`d5h^nF24t2le%Tp)h_g%Evq8?d#X7Teyn-VL9l>PR(h|hY`FloO8 zhlRe-m9MMMzHG^M*j8})TB51c*{aafq0UTB3nl&*F5fXf+qs@;{o%b%%)y_hHWkj^ zQG5Skx7holZ8zuiZkTU+y#L+u_;#LYf1H_^*!O&Vb=upVR_uSqF&_jP5pg$_Nj8ZUr5fldE1M-@2+W`$c3PeC%ZLOMayEm zXJ1WPvRR`|kT+r(@64UfR^F$Z*mTZb)PBbJ=)#ZBoU;r5Pd?gvEX=exXJ+V*ZO`ZJ z;8zZr#H4cn!uMzTi8A_^C#9X;B>7(G-9i6@&S9>qkM2oDM?c&9TdnuQ0Rwx@`Y%3V zyh^L0bdR_PYBa>8YgpRd3g_bGm{fCk>4ep*zieU*XVm5hnYj4jG{;LP99}-XKD|Md zUHIRx`u|+EzfQ5gKC8Clvx&iydDY)e3QjT!`ea$9BfCXfQ_ZNQ^ORatAJY<+s9iVC z)u?_G&UoqNvG=a!PP2q{hBGoGdKIb{WLwl9NW3pB#I%;jWI=)Mx*u{<u{m^{>*mS0(NnguqmCZ%`=U8l0G@A8+y)Wh3wWl(BzaJBH@Sarv zqisoY0JE-^t&*B$!(-pTjbHeUl^j=F_r}-FIb+EDX7zyyAD&j95Bprb$?Qbip~V}s z+4^>5)jwK%{(93)_P0q4uYLJyn|HCkdiUj{f3lrjpsS7Ty72eMD&4G^R{r?=soo>p z*sp!|Rvvpt--*V3-&maal)5hn1>3)2YdpvxKeeFr`jZ2NLh}VT)efhGvsqiC1$vLZ*6*jlO>##ZSR!(Nyz8^P27ar05 z>AmlC`Em2d+A{1g=qKRezPWg;hOITKF0BTv3}Z7vul1-Zthw zpJi@x+As9exll*DAdeReC+$m;&)m}zZ8e;@bJSMf*^_g0rhNVR|N9Nuf0O#3h%55WjNxHD>9A<+R@ZBx zr>`}|+Zw$*`%+s#U|#(n;TwIz^Zv;mQcB@wZFy9;CF<*R!`*EjK~Ys^?X%TBoVQ?^ zS^40v=c2sO+rm>EzFUX=zvaAOsrJA6J)&D&LQL2KSHEeHmM>%wS?w~1D}C~VbB)|* z8UvhKvkNCX=(RXLyrjjd+kQXRTCa*vy$SHMMBLl z47Q2Q*^$Li=)GaC-Ho4|QyT9%@QCr9`?^d#VbKGX*@E}X8)R-o=zfg8&hvG8!VJ%S zjP-)||N6GgQe762l~SBp`Rkzkzc1TMqj%-@-@=u$Tl&_g z`VJ$6#T6eDYk; z567L>M?7KJ?`!6Gf#m_)${e(O&wES>J@SH+h zZe7jr$8A%?Yf?(;7@2fS{~y#)KFB)zmh1s(-JOR-rwVd#EMAhPp<-;$H&aq1yYmRE zR8LJ$;JwK1yY+Xv4Eg15x?G%=a@ewTRlNOgmKQT~ciSDDus|>`aJyJtUF`;wL+l1e z{x{DES)iIy{le7Xh(_6@L(MlPEZLzf)#9O?SSc))uqn(v^_YbHvdvCy`*vpJuIzGB zOPqLdTHiI_)5|Bma{kO8DO}nR!lTKYaemq2YBScKp8J>&G1OkGcahIqoWUBi^WL2h ztJE_F4(6UxR=B0J^SrVS#_p8F%OceE3cD&y8cAe?v4n1e`+gkxkf8Zw8vE&jn?ItHAI)-&kNk3LeqFWEYZLyxCJ*dRZZWmg z?cx92#VL@n^7q|eMeh|aTzXnR?MLNvWs4<8v=~1++`O{U#C(IePL9XIJk1FcnA##3 zMfj3_RFp_oI2a!hciiuooj8r{R#RxI(3Md7*E1wC!aA3v0(H8Q$4SvA$nn3vZ+EuuifOzF$v7phD?Jg+p1S#D2H zy|H71U^naX6`HCWCNE`Qbg}t?Vdxu%DMBi@>sSB#bD3S~M7-s-^Z8DBq87?Aj=`QM zFYb5}F~?Hdw*1@e{8N3CZm$1l6Yy#O-*xlnWGl?@5L_p+|4P%h?&t9qGh+|E?@L(E zu4}k!wYrAac~g!pB}YRKZLedLy%4mU@44DEi;yJ2DJE4XVjMJ<%yxLRX7Y7`rb&xt z%Q#m@{5{SL{=wn36t5)_t5=<^g(8O zuOB_RKyO@)~h^gY?7QNc@=l#m`S<8#}%LOO@V7sq9Q%}cd zYS#gV_aE;#v>0k;oDBSVNLaW%Xvg8uh4swu*Is%$oB&oTO&JeZp`{czL443?V5i#at_uKjV|&T}Ax5Pfh|UvcaN_8Z7bdn)^>l-bkE-QJ~h=(O42m9`ulr-*8m>n zr1S25JbT~0I9Q@}+NHeSLH(gdz{=)B7liKov8g%0Dq{Iec)gr1W8<`Se;z9u_dKh1 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

NtEUTE90VE=FaxbNwg5FSK&P%4DVUjq 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 Vz;_2)nwuM#m~*MBy863u0RTozy@&t+ delta 208803 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

XYMlD#9NJV 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 xtfsutil --enable-snapshots /path/to/mounted/volume Once snapshots have been enabled, a snapshot named \texttt{mySnapshot} can be taken as follows: \begin{verbatim} -$> xtfsutil --create-snapshot /path/to/mounted/volume/directory \ - mySnapshot +$> xtfsutil --create-snapshot mySnapshot \ + /path/to/mounted/volume/directory \end{verbatim} Note that capturing snapshots requires privileged access rights (ownership or superuser rights) on the volume. @@ -2352,8 +2352,8 @@ Note that capturing snapshots requires privileged access rights (ownership or su It is also possible to capture a snapshot of a given directory without including any subdirectories: \begin{verbatim} -$> xtfsutil --create-snapshot-non-recursive \ - /path/to/mounted/volume/directory mySnapshot +$> xtfsutil --create-snapshot-non-recursive mySnapshot \ + /path/to/mounted/volume/directory \end{verbatim} A list of all snapshots that exist on the volume can be displayed as follows: @@ -2374,7 +2374,7 @@ A mounted volume snapshot can be browsed normally, and all files can be read as A snapshot \texttt{mySnapshot} that is no longer needed can be removed as follows: \begin{verbatim} -$> xtfsutil --delete-snapshot /path/to/mounted/volume mySnapshot +$> xtfsutil --delete-snapshot mySnapshot /path/to/mounted/volume \end{verbatim} Please be aware that removing a snapshot does not automatically reclaim any storage space occupied by prior versions. To dispose of obsolete and redundant versions on a specific OSD, it is necessary to perform a version cleanup run with the \texttt{xtfs\_cleanup} tool: -- GitLab From fa50493415405e2c6e96b99dbc481500bda42204 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 7 Aug 2014 14:42:50 +0200 Subject: [PATCH 064/192] interface: Added SMART test results to OSD interface --- cpp/generated/xtreemfs/OSD.pb.cc | 204 ++++++------ cpp/generated/xtreemfs/OSD.pb.h | 25 ++ interface/xtreemfs/OSD.proto | 9 + .../pbrpc/generatedinterfaces/OSD.java | 294 ++++++++++++------ 4 files changed, 347 insertions(+), 185 deletions(-) diff --git a/cpp/generated/xtreemfs/OSD.pb.cc b/cpp/generated/xtreemfs/OSD.pb.cc index 0051049b8..1f7eb9eeb 100644 --- a/cpp/generated/xtreemfs/OSD.pb.cc +++ b/cpp/generated/xtreemfs/OSD.pb.cc @@ -135,6 +135,7 @@ const ::google::protobuf::internal::GeneratedMessageReflection* const ::google::protobuf::Descriptor* xtreemfs_rwr_reset_completeRequest_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* xtreemfs_rwr_reset_completeRequest_reflection_ = NULL; +const ::google::protobuf::EnumDescriptor* SmartTestResult_descriptor_ = NULL; } // namespace @@ -796,6 +797,7 @@ void protobuf_AssignDesc_xtreemfs_2fOSD_2eproto() { ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(xtreemfs_rwr_reset_completeRequest)); + SmartTestResult_descriptor_ = file->enum_type(0); } namespace { @@ -1095,99 +1097,102 @@ void protobuf_AddDesc_xtreemfs_2fOSD_2eproto() { "eplicaState\"\207\001\n\"xtreemfs_rwr_reset_compl" "eteRequest\0229\n\020file_credentials\030\001 \002(\0132\037.x" "treemfs.pbrpc.FileCredentials\022\017\n\007file_id" - "\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\0072\253\034\n\nOSDSer" - "vice\022L\n\004read\022\033.xtreemfs.pbrpc.readReques" - "t\032\032.xtreemfs.pbrpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265" - "\030\001\022V\n\010truncate\022\037.xtreemfs.pbrpc.truncate" + "\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007*n\n\017SmartTe" + "stResult\022\034\n\030SMART_TEST_RESULT_PASSED\020\000\022\034" + "\n\030SMART_TEST_RESULT_FAILED\020\001\022\037\n\033SMART_TE" + "ST_RESULT_NOT_AVAIL\020\0022\253\034\n\nOSDService\022L\n\004" + "read\022\033.xtreemfs.pbrpc.readRequest\032\032.xtre" + "emfs.pbrpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010tr" + "uncate\022\037.xtreemfs.pbrpc.truncateRequest\032" + " .xtreemfs.pbrpc.OSDWriteResponse\"\007\215\265\030\013\000" + "\000\000\022T\n\006unlink\022\".xtreemfs.pbrpc.unlink_osd" + "_Request\032\035.xtreemfs.pbrpc.emptyResponse\"" + "\007\215\265\030\014\000\000\000\022T\n\005write\022\034.xtreemfs.pbrpc.write" "Request\032 .xtreemfs.pbrpc.OSDWriteRespons" - "e\"\007\215\265\030\013\000\000\000\022T\n\006unlink\022\".xtreemfs.pbrpc.un" - "link_osd_Request\032\035.xtreemfs.pbrpc.emptyR" - "esponse\"\007\215\265\030\014\000\000\000\022T\n\005write\022\034.xtreemfs.pbr" - "pc.writeRequest\032 .xtreemfs.pbrpc.OSDWrit" - "eResponse\"\013\215\265\030\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broad" - "cast_gmax\022..xtreemfs.pbrpc.xtreemfs_broa" - "dcast_gmaxRequest\032\035.xtreemfs.pbrpc.empty" - "Response\"\007\215\265\030\024\000\000\000\022j\n\025xtreemfs_check_obje" - "ct\022,.xtreemfs.pbrpc.xtreemfs_check_objec" - "tRequest\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265" - "\030\025\000\000\000\022{\n\034xtreemfs_cleanup_get_results\022\034." - "xtreemfs.pbrpc.emptyRequest\0324.xtreemfs.p" - "brpc.xtreemfs_cleanup_get_resultsRespons" - "e\"\007\215\265\030\036\000\000\000\022y\n\033xtreemfs_cleanup_is_runnin" - "g\022\034.xtreemfs.pbrpc.emptyRequest\0323.xtreem" - "fs.pbrpc.xtreemfs_cleanup_is_runningResp" - "onse\"\007\215\265\030\037\000\000\000\022o\n\026xtreemfs_cleanup_start\022" - "-.xtreemfs.pbrpc.xtreemfs_cleanup_startR" - "equest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215" - "\265\030 \000\000\000\022q\n\027xtreemfs_cleanup_status\022\034.xtre" - "emfs.pbrpc.emptyRequest\032/.xtreemfs.pbrpc" - ".xtreemfs_cleanup_statusResponse\"\007\215\265\030!\000\000" - "\000\022]\n\025xtreemfs_cleanup_stop\022\034.xtreemfs.pb" - "rpc.emptyRequest\032\035.xtreemfs.pbrpc.emptyR" - "esponse\"\007\215\265\030\"\000\000\000\022g\n\037xtreemfs_cleanup_ver" - "sions_start\022\034.xtreemfs.pbrpc.emptyReques" - "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030#\000\000" - "\000\022o\n\026xtreemfs_repair_object\022-.xtreemfs.p" - "brpc.xtreemfs_repair_objectRequest\032\035.xtr" - "eemfs.pbrpc.emptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xt" - "reemfs_rwr_fetch\022).xtreemfs.pbrpc.xtreem" - "fs_rwr_fetchRequest\032\032.xtreemfs.pbrpc.Obj" - "ectData\"\007\215\265\030I\000\000\000\022u\n\027xtreemfs_rwr_flease_" - "msg\022..xtreemfs.pbrpc.xtreemfs_rwr_flease" - "_msgRequest\032\035.xtreemfs.pbrpc.emptyRespon" - "se\"\013\215\265\030G\000\000\000\240\265\030\001\022^\n\023xtreemfs_rwr_notify\022\037" - ".xtreemfs.pbrpc.FileCredentials\032\035.xtreem" - "fs.pbrpc.emptyResponse\"\007\215\265\030K\000\000\000\022|\n\036xtree" - "mfs_rwr_set_primary_epoch\0225.xtreemfs.pbr" - "pc.xtreemfs_rwr_set_primary_epochRequest" - "\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n" - "\023xtreemfs_rwr_status\022*.xtreemfs.pbrpc.xt" - "reemfs_rwr_statusRequest\032\035.xtreemfs.pbrp" - "c.ReplicaStatus\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr" - "_truncate\022,.xtreemfs.pbrpc.xtreemfs_rwr_" - "truncateRequest\032\035.xtreemfs.pbrpc.emptyRe" - "sponse\"\007\215\265\030J\000\000\000\022m\n\023xtreemfs_rwr_update\022*" - ".xtreemfs.pbrpc.xtreemfs_rwr_updateReque" - "st\032\035.xtreemfs.pbrpc.emptyResponse\"\013\215\265\030H\000" - "\000\000\240\265\030\001\022q\n\027xtreemfs_rwr_auth_state\022..xtre" - "emfs.pbrpc.xtreemfs_rwr_auth_stateReques" - "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030O\000\000" - "\000\022y\n\033xtreemfs_rwr_reset_complete\0222.xtree" - "mfs.pbrpc.xtreemfs_rwr_reset_completeReq" - "uest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030" - "P\000\000\000\022v\n\032xtreemfs_internal_get_gmax\0221.xtr" - "eemfs.pbrpc.xtreemfs_internal_get_gmaxRe" - "quest\032\034.xtreemfs.pbrpc.InternalGmax\"\007\215\265\030" - "(\000\000\000\022h\n\032xtreemfs_internal_truncate\022\037.xtr" - "eemfs.pbrpc.truncateRequest\032 .xtreemfs.p" - "brpc.OSDWriteResponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtree" - "mfs_internal_get_file_size\0226.xtreemfs.pb" - "rpc.xtreemfs_internal_get_file_sizeReque" - "st\0327.xtreemfs.pbrpc.xtreemfs_internal_ge" - "t_file_sizeResponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemf" - "s_internal_read_local\0223.xtreemfs.pbrpc.x" - "treemfs_internal_read_localRequest\032).xtr" - "eemfs.pbrpc.InternalReadLocalResponse\"\007\215" - "\265\030+\000\000\000\022\200\001\n xtreemfs_internal_get_object_" - "set\0227.xtreemfs.pbrpc.xtreemfs_internal_g" - "et_object_setRequest\032\032.xtreemfs.pbrpc.Ob" - "jectList\"\007\215\265\030,\000\000\000\022\205\001\n!xtreemfs_internal_" - "get_fileid_list\022\034.xtreemfs.pbrpc.emptyRe" - "quest\0329.xtreemfs.pbrpc.xtreemfs_internal" - "_get_fileid_listResponse\"\007\215\265\030-\000\000\000\022S\n\025xtr" - "eemfs_lock_acquire\022\033.xtreemfs.pbrpc.lock" - "Request\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q" - "\n\023xtreemfs_lock_check\022\033.xtreemfs.pbrpc.l" - "ockRequest\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0303\000\000" - "\000\022\\\n\025xtreemfs_lock_release\022\033.xtreemfs.pb" - "rpc.lockRequest\032\035.xtreemfs.pbrpc.emptyRe" - "sponse\"\007\215\265\0304\000\000\000\022f\n\rxtreemfs_ping\022%.xtree" - "mfs.pbrpc.xtreemfs_pingMesssage\032%.xtreem" - "fs.pbrpc.xtreemfs_pingMesssage\"\007\215\265\030<\000\000\000\022" - "Y\n\021xtreemfs_shutdown\022\034.xtreemfs.pbrpc.em" - "ptyRequest\032\035.xtreemfs.pbrpc.emptyRespons" - "e\"\007\215\265\030F\000\000\000\032\007\225\265\0301u\000\000B(\n&org.xtreemfs.pbrp" - "c.generatedinterfaces", 8421); + "e\"\013\215\265\030\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broadcast_gma" + "x\022..xtreemfs.pbrpc.xtreemfs_broadcast_gm" + "axRequest\032\035.xtreemfs.pbrpc.emptyResponse" + "\"\007\215\265\030\024\000\000\000\022j\n\025xtreemfs_check_object\022,.xtr" + "eemfs.pbrpc.xtreemfs_check_objectRequest" + "\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030\025\000\000\000\022{\n" + "\034xtreemfs_cleanup_get_results\022\034.xtreemfs" + ".pbrpc.emptyRequest\0324.xtreemfs.pbrpc.xtr" + "eemfs_cleanup_get_resultsResponse\"\007\215\265\030\036\000" + "\000\000\022y\n\033xtreemfs_cleanup_is_running\022\034.xtre" + "emfs.pbrpc.emptyRequest\0323.xtreemfs.pbrpc" + ".xtreemfs_cleanup_is_runningResponse\"\007\215\265" + "\030\037\000\000\000\022o\n\026xtreemfs_cleanup_start\022-.xtreem" + "fs.pbrpc.xtreemfs_cleanup_startRequest\032\035" + ".xtreemfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022q" + "\n\027xtreemfs_cleanup_status\022\034.xtreemfs.pbr" + "pc.emptyRequest\032/.xtreemfs.pbrpc.xtreemf" + "s_cleanup_statusResponse\"\007\215\265\030!\000\000\000\022]\n\025xtr" + "eemfs_cleanup_stop\022\034.xtreemfs.pbrpc.empt" + "yRequest\032\035.xtreemfs.pbrpc.emptyResponse\"" + "\007\215\265\030\"\000\000\000\022g\n\037xtreemfs_cleanup_versions_st" + "art\022\034.xtreemfs.pbrpc.emptyRequest\032\035.xtre" + "emfs.pbrpc.emptyResponse\"\007\215\265\030#\000\000\000\022o\n\026xtr" + "eemfs_repair_object\022-.xtreemfs.pbrpc.xtr" + "eemfs_repair_objectRequest\032\035.xtreemfs.pb" + "rpc.emptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xtreemfs_r" + "wr_fetch\022).xtreemfs.pbrpc.xtreemfs_rwr_f" + "etchRequest\032\032.xtreemfs.pbrpc.ObjectData\"" + "\007\215\265\030I\000\000\000\022u\n\027xtreemfs_rwr_flease_msg\022..xt" + "reemfs.pbrpc.xtreemfs_rwr_flease_msgRequ" + "est\032\035.xtreemfs.pbrpc.emptyResponse\"\013\215\265\030G" + "\000\000\000\240\265\030\001\022^\n\023xtreemfs_rwr_notify\022\037.xtreemf" + "s.pbrpc.FileCredentials\032\035.xtreemfs.pbrpc" + ".emptyResponse\"\007\215\265\030K\000\000\000\022|\n\036xtreemfs_rwr_" + "set_primary_epoch\0225.xtreemfs.pbrpc.xtree" + "mfs_rwr_set_primary_epochRequest\032\032.xtree" + "mfs.pbrpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023xtreemf" + "s_rwr_status\022*.xtreemfs.pbrpc.xtreemfs_r" + "wr_statusRequest\032\035.xtreemfs.pbrpc.Replic" + "aStatus\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_truncat" + "e\022,.xtreemfs.pbrpc.xtreemfs_rwr_truncate" + "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" + "\215\265\030J\000\000\000\022m\n\023xtreemfs_rwr_update\022*.xtreemf" + "s.pbrpc.xtreemfs_rwr_updateRequest\032\035.xtr" + "eemfs.pbrpc.emptyResponse\"\013\215\265\030H\000\000\000\240\265\030\001\022q" + "\n\027xtreemfs_rwr_auth_state\022..xtreemfs.pbr" + "pc.xtreemfs_rwr_auth_stateRequest\032\035.xtre" + "emfs.pbrpc.emptyResponse\"\007\215\265\030O\000\000\000\022y\n\033xtr" + "eemfs_rwr_reset_complete\0222.xtreemfs.pbrp" + "c.xtreemfs_rwr_reset_completeRequest\032\035.x" + "treemfs.pbrpc.emptyResponse\"\007\215\265\030P\000\000\000\022v\n\032" + "xtreemfs_internal_get_gmax\0221.xtreemfs.pb" + "rpc.xtreemfs_internal_get_gmaxRequest\032\034." + "xtreemfs.pbrpc.InternalGmax\"\007\215\265\030(\000\000\000\022h\n\032" + "xtreemfs_internal_truncate\022\037.xtreemfs.pb" + "rpc.truncateRequest\032 .xtreemfs.pbrpc.OSD" + "WriteResponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemfs_inte" + "rnal_get_file_size\0226.xtreemfs.pbrpc.xtre" + "emfs_internal_get_file_sizeRequest\0327.xtr" + "eemfs.pbrpc.xtreemfs_internal_get_file_s" + "izeResponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_intern" + "al_read_local\0223.xtreemfs.pbrpc.xtreemfs_" + "internal_read_localRequest\032).xtreemfs.pb" + "rpc.InternalReadLocalResponse\"\007\215\265\030+\000\000\000\022\200" + "\001\n xtreemfs_internal_get_object_set\0227.xt" + "reemfs.pbrpc.xtreemfs_internal_get_objec" + "t_setRequest\032\032.xtreemfs.pbrpc.ObjectList" + "\"\007\215\265\030,\000\000\000\022\205\001\n!xtreemfs_internal_get_file" + "id_list\022\034.xtreemfs.pbrpc.emptyRequest\0329." + "xtreemfs.pbrpc.xtreemfs_internal_get_fil" + "eid_listResponse\"\007\215\265\030-\000\000\000\022S\n\025xtreemfs_lo" + "ck_acquire\022\033.xtreemfs.pbrpc.lockRequest\032" + "\024.xtreemfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023xtreem" + "fs_lock_check\022\033.xtreemfs.pbrpc.lockReque" + "st\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022\\\n\025xtr" + "eemfs_lock_release\022\033.xtreemfs.pbrpc.lock" + "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" + "\215\265\0304\000\000\000\022f\n\rxtreemfs_ping\022%.xtreemfs.pbrp" + "c.xtreemfs_pingMesssage\032%.xtreemfs.pbrpc" + ".xtreemfs_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n\021xtree" + "mfs_shutdown\022\034.xtreemfs.pbrpc.emptyReque" + "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030F\000" + "\000\000\032\007\225\265\0301u\000\000B(\n&org.xtreemfs.pbrpc.genera" + "tedinterfaces", 8533); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "xtreemfs/OSD.proto", &protobuf_RegisterTypes); InternalGmax::default_instance_ = new InternalGmax(); @@ -1275,6 +1280,21 @@ struct StaticDescriptorInitializer_xtreemfs_2fOSD_2eproto { protobuf_AddDesc_xtreemfs_2fOSD_2eproto(); } } static_descriptor_initializer_xtreemfs_2fOSD_2eproto_; +const ::google::protobuf::EnumDescriptor* SmartTestResult_descriptor() { + protobuf_AssignDescriptorsOnce(); + return SmartTestResult_descriptor_; +} +bool SmartTestResult_IsValid(int value) { + switch(value) { + case 0: + case 1: + case 2: + return true; + default: + return false; + } +} + // =================================================================== diff --git a/cpp/generated/xtreemfs/OSD.pb.h b/cpp/generated/xtreemfs/OSD.pb.h index 36ef02178..6b981aed0 100644 --- a/cpp/generated/xtreemfs/OSD.pb.h +++ b/cpp/generated/xtreemfs/OSD.pb.h @@ -23,6 +23,7 @@ #include #include #include +#include #include #include "include/PBRPC.pb.h" #include "include/Common.pb.h" @@ -76,6 +77,26 @@ class xtreemfs_pingMesssage; class xtreemfs_rwr_auth_stateRequest; class xtreemfs_rwr_reset_completeRequest; +enum SmartTestResult { + SMART_TEST_RESULT_PASSED = 0, + SMART_TEST_RESULT_FAILED = 1, + SMART_TEST_RESULT_NOT_AVAIL = 2 +}; +bool SmartTestResult_IsValid(int value); +const SmartTestResult SmartTestResult_MIN = SMART_TEST_RESULT_PASSED; +const SmartTestResult SmartTestResult_MAX = SMART_TEST_RESULT_NOT_AVAIL; +const int SmartTestResult_ARRAYSIZE = SmartTestResult_MAX + 1; + +const ::google::protobuf::EnumDescriptor* SmartTestResult_descriptor(); +inline const ::std::string& SmartTestResult_Name(SmartTestResult value) { + return ::google::protobuf::internal::NameOfEnum( + SmartTestResult_descriptor(), value); +} +inline bool SmartTestResult_Parse( + const ::std::string& name, SmartTestResult* value) { + return ::google::protobuf::internal::ParseNamedEnum( + SmartTestResult_descriptor(), name, value); +} // =================================================================== class InternalGmax : public ::google::protobuf::Message { @@ -8536,6 +8557,10 @@ inline void xtreemfs_rwr_reset_completeRequest::set_primary_epoch(::google::prot namespace google { namespace protobuf { +template <> +inline const EnumDescriptor* GetEnumDescriptor< ::xtreemfs::pbrpc::SmartTestResult>() { + return ::xtreemfs::pbrpc::SmartTestResult_descriptor(); +} } // namespace google } // namespace protobuf diff --git a/interface/xtreemfs/OSD.proto b/interface/xtreemfs/OSD.proto index 16c775f4a..60baca0af 100644 --- a/interface/xtreemfs/OSD.proto +++ b/interface/xtreemfs/OSD.proto @@ -334,6 +334,15 @@ message xtreemfs_rwr_reset_completeRequest { required fixed32 primary_epoch = 3; } +// Status of S.M.A.R.T health test +enum SmartTestResult { + SMART_TEST_RESULT_PASSED = 0; + SMART_TEST_RESULT_FAILED = 1; + // Status is not available, + // i.e. the test is disabled or an error occurred + SMART_TEST_RESULT_NOT_AVAIL = 2; +} + service OSDService { option(interface_id)=30001; diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java index 3e9793eee..8a0e4f519 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java @@ -8,6 +8,111 @@ public final class OSD { public static void registerAllExtensions( com.google.protobuf.ExtensionRegistry registry) { } + /** + * Protobuf enum {@code xtreemfs.pbrpc.SmartTestResult} + * + *

+   * Status of S.M.A.R.T health test
+   * 
+ */ + public enum SmartTestResult + implements com.google.protobuf.ProtocolMessageEnum { + /** + * SMART_TEST_RESULT_PASSED = 0; + */ + SMART_TEST_RESULT_PASSED(0, 0), + /** + * SMART_TEST_RESULT_FAILED = 1; + */ + SMART_TEST_RESULT_FAILED(1, 1), + /** + * SMART_TEST_RESULT_NOT_AVAIL = 2; + * + *
+     * Status is not available,
+     * i.e. the test is disabled or an error occurred
+     * 
+ */ + SMART_TEST_RESULT_NOT_AVAIL(2, 2), + ; + + /** + * SMART_TEST_RESULT_PASSED = 0; + */ + public static final int SMART_TEST_RESULT_PASSED_VALUE = 0; + /** + * SMART_TEST_RESULT_FAILED = 1; + */ + public static final int SMART_TEST_RESULT_FAILED_VALUE = 1; + /** + * SMART_TEST_RESULT_NOT_AVAIL = 2; + * + *
+     * Status is not available,
+     * i.e. the test is disabled or an error occurred
+     * 
+ */ + public static final int SMART_TEST_RESULT_NOT_AVAIL_VALUE = 2; + + + public final int getNumber() { return value; } + + public static SmartTestResult valueOf(int value) { + switch (value) { + case 0: return SMART_TEST_RESULT_PASSED; + case 1: return SMART_TEST_RESULT_FAILED; + case 2: return SMART_TEST_RESULT_NOT_AVAIL; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static com.google.protobuf.Internal.EnumLiteMap + internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public SmartTestResult findValueByNumber(int number) { + return SmartTestResult.valueOf(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + return getDescriptor().getValues().get(index); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return org.xtreemfs.pbrpc.generatedinterfaces.OSD.getDescriptor().getEnumTypes().get(0); + } + + private static final SmartTestResult[] VALUES = values(); + + public static SmartTestResult valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + return VALUES[desc.getIndex()]; + } + + private final int index; + private final int value; + + private SmartTestResult(int index, int value) { + this.index = index; + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:xtreemfs.pbrpc.SmartTestResult) + } + public interface InternalGmaxOrBuilder extends com.google.protobuf.MessageOrBuilder { @@ -30770,99 +30875,102 @@ public final class OSD { "eplicaState\"\207\001\n\"xtreemfs_rwr_reset_compl" + "eteRequest\0229\n\020file_credentials\030\001 \002(\0132\037.x" + "treemfs.pbrpc.FileCredentials\022\017\n\007file_id" + - "\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\0072\253\034\n\nOSDSer" + - "vice\022L\n\004read\022\033.xtreemfs.pbrpc.readReques", - "t\032\032.xtreemfs.pbrpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265" + - "\030\001\022V\n\010truncate\022\037.xtreemfs.pbrpc.truncate" + - "Request\032 .xtreemfs.pbrpc.OSDWriteRespons" + - "e\"\007\215\265\030\013\000\000\000\022T\n\006unlink\022\".xtreemfs.pbrpc.un" + - "link_osd_Request\032\035.xtreemfs.pbrpc.emptyR" + - "esponse\"\007\215\265\030\014\000\000\000\022T\n\005write\022\034.xtreemfs.pbr" + - "pc.writeRequest\032 .xtreemfs.pbrpc.OSDWrit" + - "eResponse\"\013\215\265\030\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broad" + - "cast_gmax\022..xtreemfs.pbrpc.xtreemfs_broa" + - "dcast_gmaxRequest\032\035.xtreemfs.pbrpc.empty", - "Response\"\007\215\265\030\024\000\000\000\022j\n\025xtreemfs_check_obje" + - "ct\022,.xtreemfs.pbrpc.xtreemfs_check_objec" + - "tRequest\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265" + - "\030\025\000\000\000\022{\n\034xtreemfs_cleanup_get_results\022\034." + - "xtreemfs.pbrpc.emptyRequest\0324.xtreemfs.p" + - "brpc.xtreemfs_cleanup_get_resultsRespons" + - "e\"\007\215\265\030\036\000\000\000\022y\n\033xtreemfs_cleanup_is_runnin" + - "g\022\034.xtreemfs.pbrpc.emptyRequest\0323.xtreem" + - "fs.pbrpc.xtreemfs_cleanup_is_runningResp" + - "onse\"\007\215\265\030\037\000\000\000\022o\n\026xtreemfs_cleanup_start\022", - "-.xtreemfs.pbrpc.xtreemfs_cleanup_startR" + - "equest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215" + - "\265\030 \000\000\000\022q\n\027xtreemfs_cleanup_status\022\034.xtre" + - "emfs.pbrpc.emptyRequest\032/.xtreemfs.pbrpc" + - ".xtreemfs_cleanup_statusResponse\"\007\215\265\030!\000\000" + - "\000\022]\n\025xtreemfs_cleanup_stop\022\034.xtreemfs.pb" + - "rpc.emptyRequest\032\035.xtreemfs.pbrpc.emptyR" + - "esponse\"\007\215\265\030\"\000\000\000\022g\n\037xtreemfs_cleanup_ver" + - "sions_start\022\034.xtreemfs.pbrpc.emptyReques" + - "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030#\000\000", - "\000\022o\n\026xtreemfs_repair_object\022-.xtreemfs.p" + - "brpc.xtreemfs_repair_objectRequest\032\035.xtr" + - "eemfs.pbrpc.emptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xt" + - "reemfs_rwr_fetch\022).xtreemfs.pbrpc.xtreem" + - "fs_rwr_fetchRequest\032\032.xtreemfs.pbrpc.Obj" + - "ectData\"\007\215\265\030I\000\000\000\022u\n\027xtreemfs_rwr_flease_" + - "msg\022..xtreemfs.pbrpc.xtreemfs_rwr_flease" + - "_msgRequest\032\035.xtreemfs.pbrpc.emptyRespon" + - "se\"\013\215\265\030G\000\000\000\240\265\030\001\022^\n\023xtreemfs_rwr_notify\022\037" + - ".xtreemfs.pbrpc.FileCredentials\032\035.xtreem", - "fs.pbrpc.emptyResponse\"\007\215\265\030K\000\000\000\022|\n\036xtree" + - "mfs_rwr_set_primary_epoch\0225.xtreemfs.pbr" + - "pc.xtreemfs_rwr_set_primary_epochRequest" + - "\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n" + - "\023xtreemfs_rwr_status\022*.xtreemfs.pbrpc.xt" + - "reemfs_rwr_statusRequest\032\035.xtreemfs.pbrp" + - "c.ReplicaStatus\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr" + - "_truncate\022,.xtreemfs.pbrpc.xtreemfs_rwr_" + - "truncateRequest\032\035.xtreemfs.pbrpc.emptyRe" + - "sponse\"\007\215\265\030J\000\000\000\022m\n\023xtreemfs_rwr_update\022*", - ".xtreemfs.pbrpc.xtreemfs_rwr_updateReque" + - "st\032\035.xtreemfs.pbrpc.emptyResponse\"\013\215\265\030H\000" + - "\000\000\240\265\030\001\022q\n\027xtreemfs_rwr_auth_state\022..xtre" + - "emfs.pbrpc.xtreemfs_rwr_auth_stateReques" + - "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030O\000\000" + - "\000\022y\n\033xtreemfs_rwr_reset_complete\0222.xtree" + - "mfs.pbrpc.xtreemfs_rwr_reset_completeReq" + - "uest\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030" + - "P\000\000\000\022v\n\032xtreemfs_internal_get_gmax\0221.xtr" + - "eemfs.pbrpc.xtreemfs_internal_get_gmaxRe", - "quest\032\034.xtreemfs.pbrpc.InternalGmax\"\007\215\265\030" + - "(\000\000\000\022h\n\032xtreemfs_internal_truncate\022\037.xtr" + - "eemfs.pbrpc.truncateRequest\032 .xtreemfs.p" + - "brpc.OSDWriteResponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtree" + - "mfs_internal_get_file_size\0226.xtreemfs.pb" + - "rpc.xtreemfs_internal_get_file_sizeReque" + - "st\0327.xtreemfs.pbrpc.xtreemfs_internal_ge" + - "t_file_sizeResponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemf" + - "s_internal_read_local\0223.xtreemfs.pbrpc.x" + - "treemfs_internal_read_localRequest\032).xtr", - "eemfs.pbrpc.InternalReadLocalResponse\"\007\215" + - "\265\030+\000\000\000\022\200\001\n xtreemfs_internal_get_object_" + - "set\0227.xtreemfs.pbrpc.xtreemfs_internal_g" + - "et_object_setRequest\032\032.xtreemfs.pbrpc.Ob" + - "jectList\"\007\215\265\030,\000\000\000\022\205\001\n!xtreemfs_internal_" + - "get_fileid_list\022\034.xtreemfs.pbrpc.emptyRe" + - "quest\0329.xtreemfs.pbrpc.xtreemfs_internal" + - "_get_fileid_listResponse\"\007\215\265\030-\000\000\000\022S\n\025xtr" + - "eemfs_lock_acquire\022\033.xtreemfs.pbrpc.lock" + - "Request\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q", - "\n\023xtreemfs_lock_check\022\033.xtreemfs.pbrpc.l" + - "ockRequest\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0303\000\000" + - "\000\022\\\n\025xtreemfs_lock_release\022\033.xtreemfs.pb" + - "rpc.lockRequest\032\035.xtreemfs.pbrpc.emptyRe" + - "sponse\"\007\215\265\0304\000\000\000\022f\n\rxtreemfs_ping\022%.xtree" + - "mfs.pbrpc.xtreemfs_pingMesssage\032%.xtreem" + - "fs.pbrpc.xtreemfs_pingMesssage\"\007\215\265\030<\000\000\000\022" + - "Y\n\021xtreemfs_shutdown\022\034.xtreemfs.pbrpc.em" + - "ptyRequest\032\035.xtreemfs.pbrpc.emptyRespons" + - "e\"\007\215\265\030F\000\000\000\032\007\225\265\0301u\000\000B(\n&org.xtreemfs.pbrp", - "c.generatedinterfaces" + "\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007*n\n\017SmartTe" + + "stResult\022\034\n\030SMART_TEST_RESULT_PASSED\020\000\022\034", + "\n\030SMART_TEST_RESULT_FAILED\020\001\022\037\n\033SMART_TE" + + "ST_RESULT_NOT_AVAIL\020\0022\253\034\n\nOSDService\022L\n\004" + + "read\022\033.xtreemfs.pbrpc.readRequest\032\032.xtre" + + "emfs.pbrpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010tr" + + "uncate\022\037.xtreemfs.pbrpc.truncateRequest\032" + + " .xtreemfs.pbrpc.OSDWriteResponse\"\007\215\265\030\013\000" + + "\000\000\022T\n\006unlink\022\".xtreemfs.pbrpc.unlink_osd" + + "_Request\032\035.xtreemfs.pbrpc.emptyResponse\"" + + "\007\215\265\030\014\000\000\000\022T\n\005write\022\034.xtreemfs.pbrpc.write" + + "Request\032 .xtreemfs.pbrpc.OSDWriteRespons", + "e\"\013\215\265\030\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broadcast_gma" + + "x\022..xtreemfs.pbrpc.xtreemfs_broadcast_gm" + + "axRequest\032\035.xtreemfs.pbrpc.emptyResponse" + + "\"\007\215\265\030\024\000\000\000\022j\n\025xtreemfs_check_object\022,.xtr" + + "eemfs.pbrpc.xtreemfs_check_objectRequest" + + "\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030\025\000\000\000\022{\n" + + "\034xtreemfs_cleanup_get_results\022\034.xtreemfs" + + ".pbrpc.emptyRequest\0324.xtreemfs.pbrpc.xtr" + + "eemfs_cleanup_get_resultsResponse\"\007\215\265\030\036\000" + + "\000\000\022y\n\033xtreemfs_cleanup_is_running\022\034.xtre", + "emfs.pbrpc.emptyRequest\0323.xtreemfs.pbrpc" + + ".xtreemfs_cleanup_is_runningResponse\"\007\215\265" + + "\030\037\000\000\000\022o\n\026xtreemfs_cleanup_start\022-.xtreem" + + "fs.pbrpc.xtreemfs_cleanup_startRequest\032\035" + + ".xtreemfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022q" + + "\n\027xtreemfs_cleanup_status\022\034.xtreemfs.pbr" + + "pc.emptyRequest\032/.xtreemfs.pbrpc.xtreemf" + + "s_cleanup_statusResponse\"\007\215\265\030!\000\000\000\022]\n\025xtr" + + "eemfs_cleanup_stop\022\034.xtreemfs.pbrpc.empt" + + "yRequest\032\035.xtreemfs.pbrpc.emptyResponse\"", + "\007\215\265\030\"\000\000\000\022g\n\037xtreemfs_cleanup_versions_st" + + "art\022\034.xtreemfs.pbrpc.emptyRequest\032\035.xtre" + + "emfs.pbrpc.emptyResponse\"\007\215\265\030#\000\000\000\022o\n\026xtr" + + "eemfs_repair_object\022-.xtreemfs.pbrpc.xtr" + + "eemfs_repair_objectRequest\032\035.xtreemfs.pb" + + "rpc.emptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xtreemfs_r" + + "wr_fetch\022).xtreemfs.pbrpc.xtreemfs_rwr_f" + + "etchRequest\032\032.xtreemfs.pbrpc.ObjectData\"" + + "\007\215\265\030I\000\000\000\022u\n\027xtreemfs_rwr_flease_msg\022..xt" + + "reemfs.pbrpc.xtreemfs_rwr_flease_msgRequ", + "est\032\035.xtreemfs.pbrpc.emptyResponse\"\013\215\265\030G" + + "\000\000\000\240\265\030\001\022^\n\023xtreemfs_rwr_notify\022\037.xtreemf" + + "s.pbrpc.FileCredentials\032\035.xtreemfs.pbrpc" + + ".emptyResponse\"\007\215\265\030K\000\000\000\022|\n\036xtreemfs_rwr_" + + "set_primary_epoch\0225.xtreemfs.pbrpc.xtree" + + "mfs_rwr_set_primary_epochRequest\032\032.xtree" + + "mfs.pbrpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023xtreemf" + + "s_rwr_status\022*.xtreemfs.pbrpc.xtreemfs_r" + + "wr_statusRequest\032\035.xtreemfs.pbrpc.Replic" + + "aStatus\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_truncat", + "e\022,.xtreemfs.pbrpc.xtreemfs_rwr_truncate" + + "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" + + "\215\265\030J\000\000\000\022m\n\023xtreemfs_rwr_update\022*.xtreemf" + + "s.pbrpc.xtreemfs_rwr_updateRequest\032\035.xtr" + + "eemfs.pbrpc.emptyResponse\"\013\215\265\030H\000\000\000\240\265\030\001\022q" + + "\n\027xtreemfs_rwr_auth_state\022..xtreemfs.pbr" + + "pc.xtreemfs_rwr_auth_stateRequest\032\035.xtre" + + "emfs.pbrpc.emptyResponse\"\007\215\265\030O\000\000\000\022y\n\033xtr" + + "eemfs_rwr_reset_complete\0222.xtreemfs.pbrp" + + "c.xtreemfs_rwr_reset_completeRequest\032\035.x", + "treemfs.pbrpc.emptyResponse\"\007\215\265\030P\000\000\000\022v\n\032" + + "xtreemfs_internal_get_gmax\0221.xtreemfs.pb" + + "rpc.xtreemfs_internal_get_gmaxRequest\032\034." + + "xtreemfs.pbrpc.InternalGmax\"\007\215\265\030(\000\000\000\022h\n\032" + + "xtreemfs_internal_truncate\022\037.xtreemfs.pb" + + "rpc.truncateRequest\032 .xtreemfs.pbrpc.OSD" + + "WriteResponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemfs_inte" + + "rnal_get_file_size\0226.xtreemfs.pbrpc.xtre" + + "emfs_internal_get_file_sizeRequest\0327.xtr" + + "eemfs.pbrpc.xtreemfs_internal_get_file_s", + "izeResponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_intern" + + "al_read_local\0223.xtreemfs.pbrpc.xtreemfs_" + + "internal_read_localRequest\032).xtreemfs.pb" + + "rpc.InternalReadLocalResponse\"\007\215\265\030+\000\000\000\022\200" + + "\001\n xtreemfs_internal_get_object_set\0227.xt" + + "reemfs.pbrpc.xtreemfs_internal_get_objec" + + "t_setRequest\032\032.xtreemfs.pbrpc.ObjectList" + + "\"\007\215\265\030,\000\000\000\022\205\001\n!xtreemfs_internal_get_file" + + "id_list\022\034.xtreemfs.pbrpc.emptyRequest\0329." + + "xtreemfs.pbrpc.xtreemfs_internal_get_fil", + "eid_listResponse\"\007\215\265\030-\000\000\000\022S\n\025xtreemfs_lo" + + "ck_acquire\022\033.xtreemfs.pbrpc.lockRequest\032" + + "\024.xtreemfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023xtreem" + + "fs_lock_check\022\033.xtreemfs.pbrpc.lockReque" + + "st\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022\\\n\025xtr" + + "eemfs_lock_release\022\033.xtreemfs.pbrpc.lock" + + "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" + + "\215\265\0304\000\000\000\022f\n\rxtreemfs_ping\022%.xtreemfs.pbrp" + + "c.xtreemfs_pingMesssage\032%.xtreemfs.pbrpc" + + ".xtreemfs_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n\021xtree", + "mfs_shutdown\022\034.xtreemfs.pbrpc.emptyReque" + + "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030F\000" + + "\000\000\032\007\225\265\0301u\000\000B(\n&org.xtreemfs.pbrpc.genera" + + "tedinterfaces" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { -- GitLab From 7d7ccf446fd573e45765a9083f2e6485b0869b40 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Thu, 7 Aug 2014 20:07:02 +0200 Subject: [PATCH 065/192] client: fixed compiler warning and indentation in xtfsutil_server --- cpp/src/xtfsutil/xtfsutil_server.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp/src/xtfsutil/xtfsutil_server.cpp b/cpp/src/xtfsutil/xtfsutil_server.cpp index 7e3c7fd50..d709b7f0c 100644 --- a/cpp/src/xtfsutil/xtfsutil_server.cpp +++ b/cpp/src/xtfsutil/xtfsutil_server.cpp @@ -198,14 +198,14 @@ void XtfsUtilServer::OpStat(const xtreemfs::pbrpc::UserCredentials& uc, // Get more volume details. uint64_t quota = boost::lexical_cast(xtfs_attrs["xtreemfs.quota"]); - uint64_t quota_free_space = quota - boost::lexical_cast(xtfs_attrs["xtreemfs.used_space"]); + int64_t quota_free_space = quota - boost::lexical_cast(xtfs_attrs["xtreemfs.used_space"]); // Use minimum of free space relative to the quota and free space on osds as free space. if (quota != 0 && quota_free_space < boost::lexical_cast(xtfs_attrs["xtreemfs.free_space"])) { - quota_free_space = quota_free_space < 0 ? 0 : quota_free_space; - result["free_space"] = Json::Value(boost::lexical_cast(quota_free_space)); + quota_free_space = quota_free_space < 0 ? 0 : quota_free_space; + result["free_space"] = Json::Value(boost::lexical_cast(quota_free_space)); } else { - result["free_space"] = Json::Value(xtfs_attrs["xtreemfs.free_space"]); + result["free_space"] = Json::Value(xtfs_attrs["xtreemfs.free_space"]); } result["used_space"] = Json::Value(xtfs_attrs["xtreemfs.used_space"]); -- GitLab From 8508a99d058e8cd21c9aa8e5339d4a43aa47066a Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Fri, 8 Aug 2014 14:08:59 +0200 Subject: [PATCH 066/192] servers: Added smart script parameter to OSD config. --- .../src/org/xtreemfs/common/config/ServiceConfig.java | 1 + java/servers/src/org/xtreemfs/osd/OSDConfig.java | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java b/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java index c13f8bd74..7ce36f075 100644 --- a/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java +++ b/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java @@ -121,6 +121,7 @@ public class ServiceConfig extends Config { VIVALDI_MAX_REQUEST_TIMEOUT_IN_MS("vivaldi.max_request_timeout_ms", 10000, Integer.class, false), VIVALDI_TIMER_INTERVAL_IN_MS("vivaldi.timer_interval_ms", 60000, Integer.class, false), STORAGE_THREADS("storage_threads", 1, Integer.class, false), + SMART_SCRIPT("smart_script", "", String.class, false), /* * Benchmark specific configuration parameter diff --git a/java/servers/src/org/xtreemfs/osd/OSDConfig.java b/java/servers/src/org/xtreemfs/osd/OSDConfig.java index 8e2883f4f..1ae3dbd1a 100644 --- a/java/servers/src/org/xtreemfs/osd/OSDConfig.java +++ b/java/servers/src/org/xtreemfs/osd/OSDConfig.java @@ -79,7 +79,8 @@ public class OSDConfig extends ServiceConfig { Parameter.VIVALDI_TIMER_INTERVAL_IN_MS, Parameter.STORAGE_THREADS, Parameter.USE_RENEWAL_SIGNAL, - Parameter.USE_MULTIHOMING + Parameter.USE_MULTIHOMING, + Parameter.SMART_SCRIPT }; /* * @formatter:on @@ -285,4 +286,8 @@ public class OSDConfig extends ServiceConfig { public int getStorageThreads() { return (Integer) parameter.get(Parameter.STORAGE_THREADS); } + + public String getSmartScript() { + return (String) parameter.get(Parameter.SMART_SCRIPT); + } } -- GitLab From 18297173774c1199aad33ed8541b8b7f1ae52fc0 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Fri, 8 Aug 2014 14:15:00 +0200 Subject: [PATCH 067/192] servers: Added SMART test result to OSD ServiceData. --- .../xtreemfs/osd/OSDRequestDispatcher.java | 395 +++++++++--------- 1 file changed, 207 insertions(+), 188 deletions(-) diff --git a/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java b/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java index e6d32b809..bfe534b1a 100644 --- a/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java +++ b/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java @@ -11,6 +11,7 @@ package org.xtreemfs.osd; import java.io.File; import java.io.FileInputStream; import java.io.IOException; +import java.io.InputStreamReader; import java.lang.management.ManagementFactory; import java.lang.management.OperatingSystemMXBean; import java.net.InetSocketAddress; @@ -117,77 +118,78 @@ import org.xtreemfs.pbrpc.generatedinterfaces.DIRServiceClient; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.VivaldiCoordinates; import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; +import org.xtreemfs.pbrpc.generatedinterfaces.OSD.SmartTestResult; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceConstants; import com.google.protobuf.Message; public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycleListener { - + private static final int RPC_TIMEOUT = 15000; - + private static final int CONNECTION_TIMEOUT = 5 * 60 * 1000; - + protected final Map operations; - + protected final Map, OSDOperation> internalEvents; - + protected final HeartbeatThread heartbeatThread; - + protected final OSDConfig config; - + protected final DIRClient dirClient; - + protected final MRCServiceClient mrcClient; - + protected final OSDServiceClient osdClient; - + protected final OSDServiceClient osdClientForReplication; - + protected final RPCNIOSocketClient rpcClientForReplication; - + protected final RPCNIOSocketClient rpcClient; - + protected final RPCNIOSocketServer rpcServer; - + protected long requestId; - + protected String authString; - + protected final PreprocStage preprocStage; - + protected final StorageStage stStage; - + protected final DeletionStage delStage; - + protected final ReplicationStage replStage; - + protected final RPCUDPSocketServer udpCom; - + protected final StatusServer statusServer; - + protected final long startupTime; - - protected final AtomicLong numBytesTX, numBytesRX, numObjsTX, numObjsRX, - numReplBytesRX, numReplObjsRX; - + + protected final AtomicLong numBytesTX, numBytesRX, numObjsTX, numObjsRX, numReplBytesRX, + numReplObjsRX; + protected final VivaldiStage vStage; - + protected final AtomicReference myCoordinates; - + protected final CleanupThread cThread; - + protected final CleanupVersionsThread cvThread; - + protected final RWReplicationStage rwrStage; - + private List statusListener; - + /** * reachability of services */ private final ServiceAvailability serviceAvailability; - + public OSDRequestDispatcher(final OSDConfig config) throws Exception { Logging.logMessage(Logging.LEVEL_INFO, this, "XtreemFS OSD version " @@ -384,6 +386,34 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle long totalRAM = Runtime.getRuntime().maxMemory(); long usedRAM = Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory(); + // Get SMART health test result from user-defined script. + SmartTestResult smartTestResult = SmartTestResult.SMART_TEST_RESULT_NOT_AVAIL; + InputStreamReader scriptOutputStream = null; + if (!config.getSmartScript().equals("")) { + try { + scriptOutputStream = new InputStreamReader(Runtime.getRuntime() + .exec(new String[] { config.getSmartScript(), config.getObjDir() }).getInputStream()); + int scriptOutput = Integer.parseInt(String.valueOf((char) scriptOutputStream.read())); + smartTestResult = SmartTestResult.valueOf(scriptOutput); + if (smartTestResult == null) { + Logging.logMessage(Logging.LEVEL_WARN, Category.misc, this, + "SMART script returns invalid value (" + scriptOutput + ")"); + smartTestResult = SmartTestResult.SMART_TEST_RESULT_NOT_AVAIL; + } + } catch (IOException e) { + Logging.logMessage(Logging.LEVEL_WARN, Category.misc, this, + "Exception while reading SMART health result: " + e.getMessage()); + } finally { + if (scriptOutputStream != null) { + try { + scriptOutputStream.close(); + } catch (IOException e1) { + // do nothing + } + } + } + } + ServiceSet.Builder data = ServiceSet.newBuilder(); ServiceDataMap.Builder dmap = ServiceDataMap.newBuilder(); @@ -395,6 +425,8 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle .build()); dmap.addData(KeyValuePair.newBuilder().setKey("usedRAM").setValue(Long.toString(usedRAM)) .build()); + dmap.addData(KeyValuePair.newBuilder().setKey("smart_health_test") + .setValue(String.valueOf(smartTestResult.getNumber())).build()); dmap.addData(KeyValuePair.newBuilder().setKey("proto_version").setValue( Integer.toString(OSDServiceConstants.INTERFACE_ID)).build()); VivaldiCoordinates coord = myCoordinates.get(); @@ -474,26 +506,26 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle Logging.logMessage(Logging.LEVEL_DEBUG, Category.lifecycle, this, "OSD at %s ready", this .getConfig().getUUID().toString()); } - + public CleanupThread getCleanupThread() { return cThread; } - + public CleanupVersionsThread getCleanupVersionsThread() { return cvThread; } - + public void start() { - + try { - + rpcServer.start(); rpcClient.start(); rpcClientForReplication.start(); - + rpcServer.waitForStartup(); rpcClient.waitForStartup(); - + udpCom.start(); preprocStage.start(); delStage.start(); @@ -503,7 +535,7 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle cThread.start(); cvThread.start(); rwrStage.start(); - + udpCom.waitForStartup(); preprocStage.waitForStartup(); delStage.waitForStartup(); @@ -512,25 +544,25 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle cThread.waitForStartup(); cvThread.waitForStartup(); rwrStage.waitForStartup(); - + heartbeatThread.initialize(); heartbeatThread.start(); heartbeatThread.waitForStartup(); - + if (Logging.isInfo()) Logging.logMessage(Logging.LEVEL_INFO, Category.lifecycle, this, - "OSD RequestController and all services operational"); - + "OSD RequestController and all services operational"); + } catch (Exception ex) { Logging.logMessage(Logging.LEVEL_ERROR, this, "STARTUP FAILED!"); Logging.logError(Logging.LEVEL_ERROR, this, ex); System.exit(1); } - + } - + public void shutdown() { - + try { for (OSDStatusListener listener : statusListener) { @@ -539,17 +571,17 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle heartbeatThread.shutdown(); heartbeatThread.waitForShutdown(); - + rpcServer.shutdown(); rpcClient.shutdown(); rpcClientForReplication.shutdown(); - + rpcServer.waitForShutdown(); rpcClient.waitForShutdown(); rpcClientForReplication.waitForShutdown(); - + serviceAvailability.shutdown(); - + udpCom.shutdown(); preprocStage.shutdown(); delStage.shutdown(); @@ -562,7 +594,7 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle cvThread.cleanupStop(); cvThread.shutdown(); serviceAvailability.shutdown(); - + udpCom.waitForShutdown(); preprocStage.waitForShutdown(); delStage.waitForShutdown(); @@ -572,34 +604,33 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle vStage.waitForShutdown(); cThread.waitForShutdown(); cvThread.waitForShutdown(); - + if (statusServer != null) { statusServer.shutdown(); } - + if (Logging.isInfo()) - Logging.logMessage(Logging.LEVEL_INFO, Category.lifecycle, this, - "OSD and all stages terminated"); - + Logging.logMessage(Logging.LEVEL_INFO, Category.lifecycle, this, "OSD and all stages terminated"); + } catch (Exception ex) { Logging.logMessage(Logging.LEVEL_ERROR, this, "shutdown failed"); Logging.logError(Logging.LEVEL_ERROR, this, ex); } } - + public void asyncShutdown() { try { - + for (OSDStatusListener listener : statusListener) { listener.shuttingDown(); } - + heartbeatThread.shutdown(); - + rpcServer.shutdown(); rpcClient.shutdown(); rpcClientForReplication.shutdown(); - + udpCom.shutdown(); preprocStage.shutdown(); delStage.shutdown(); @@ -612,107 +643,105 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle cvThread.cleanupStop(); cvThread.shutdown(); serviceAvailability.shutdown(); - + statusServer.shutdown(); - + if (Logging.isInfo()) Logging.logMessage(Logging.LEVEL_INFO, Category.lifecycle, this, "OSD and all stages terminated"); - + } catch (Exception ex) { Logging.logMessage(Logging.LEVEL_ERROR, this, "shutdown failed"); Logging.logError(Logging.LEVEL_ERROR, this, ex); } } - + public OSDOperation getOperation(int procId) { return operations.get(procId); } - + public OSDOperation getInternalEvent(Class clazz) { return internalEvents.get(clazz); } - + public OSDConfig getConfig() { return config; } - + public DIRClient getDIRClient() { return dirClient; } - + public MRCServiceClient getMRCClient() { return mrcClient; } - + public OSDServiceClient getOSDClient() { return osdClient; } - + public OSDServiceClient getOSDClientForReplication() { return osdClientForReplication; } - + public RPCNIOSocketClient getRPCClient() { return rpcClient; } - + @Override public void startupPerformed() { - + } - + @Override public void shutdownPerformed() { - + } - + @Override public void crashPerformed(Throwable cause) { - final String report = CrashReporter - .createCrashReport("OSD", VersionManagement.RELEASE_VERSION, cause); + final String report = CrashReporter.createCrashReport("OSD", VersionManagement.RELEASE_VERSION, cause); System.out.println(report); CrashReporter.reportXtreemFSCrash(report); this.shutdown(); } - + /** - * Checks if the local OSD is the head OSD in one of the given X-Locations - * list. + * Checks if the local OSD is the head OSD in one of the given X-Locations list. * * @param xloc * the X-Locations list - * @return true, if the local OSD is the head OSD of the - * given X-Locations list; false, otherwise + * @return true, if the local OSD is the head OSD of the given X-Locations list; + * false, otherwise */ public boolean isHeadOSD(XLocations xloc) { final ServiceUUID headOSD = xloc.getLocalReplica().getOSDs().get(0); return config.getUUID().equals(headOSD); } - + public long getFreeSpace() { return FSUtils.getFreeSpace(config.getObjDir()); } - + public long getTotalSpace() { File f = new File(config.getObjDir()); long s = f.getTotalSpace(); return s; } - + @Override public void receiveRecord(RPCServerRequest rq) { - + // final ONCRPCRequestHeader hdr = rq.getRequestHeader(); RPCHeader hdr = rq.getHeader(); - + if (hdr.getMessageType() != MessageType.RPC_REQUEST) { rq.sendError(ErrorType.GARBAGE_ARGS, POSIXErrno.POSIX_ERROR_EIO, - "expected RPC request message type but got " + hdr.getMessageType()); + "expected RPC request message type but got " + hdr.getMessageType()); return; } - + final RPCHeader.RequestHeader rqHdr = hdr.getRequestHeader(); - + if (rqHdr.getInterfaceId() != OSDServiceConstants.INTERFACE_ID) { rq.sendError( ErrorType.INVALID_INTERFACE_ID, @@ -720,14 +749,13 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle "Invalid interface id. This is an OSD service. You probably wanted to contact another service. Check the used address and port."); return; } - + try { OSDRequest request = new OSDRequest(rq); if (Logging.isDebug()) - Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, "received new request: %s", rq - .toString()); + Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, "received new request: %s", rq.toString()); preprocStage.prepareRequest(request, new PreprocStage.ParseCompleteCallback() { - + @Override public void parseComplete(OSDRequest result, ErrorResponse error) { if (error == null) { @@ -742,190 +770,181 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle Logging.logError(Logging.LEVEL_ERROR, this, ex); } } - + public int getNumClientConnections() { return rpcServer.getNumConnections(); } - + public long getPendingRequests() { return rpcServer.getPendingRequests(); } - + private void initializeOperations() { // register all ops OSDOperation op = new ReadOperation(this); operations.put(op.getProcedureId(), op); - + op = new WriteOperation(this); operations.put(op.getProcedureId(), op); - + op = new DeleteOperation(this); operations.put(op.getProcedureId(), op); - + op = new TruncateOperation(this); operations.put(op.getProcedureId(), op); - + /* - * op = new KeepFileOpenOperation(this); - * operations.put(op.getProcedureId(),op); + * op = new KeepFileOpenOperation(this); operations.put(op.getProcedureId(),op); */ op = new InternalGetGmaxOperation(this); operations.put(op.getProcedureId(), op); - + op = new InternalTruncateOperation(this); operations.put(op.getProcedureId(), op); - + op = new CheckObjectOperation(this); operations.put(op.getProcedureId(), op); - + op = new RepairObjectOperation(this); operations.put(op.getProcedureId(), op); op = new InternalGetFileSizeOperation(this); operations.put(op.getProcedureId(), op); - + op = new ShutdownOperation(this); operations.put(op.getProcedureId(), op); - + op = new LocalReadOperation(this); operations.put(op.getProcedureId(), op); - + op = new CleanupStartOperation(this); operations.put(op.getProcedureId(), op); - + op = new CleanupIsRunningOperation(this); operations.put(op.getProcedureId(), op); - + op = new CleanupStopOperation(this); operations.put(op.getProcedureId(), op); - + op = new CleanupGetStatusOperation(this); operations.put(op.getProcedureId(), op); - + op = new CleanupGetResultsOperation(this); operations.put(op.getProcedureId(), op); - + op = new CleanupVersionsStartOperation(this); operations.put(op.getProcedureId(), op); - + op = new GetObjectSetOperation(this); operations.put(op.getProcedureId(), op); - + op = new LockAcquireOperation(this); operations.put(op.getProcedureId(), op); - + op = new LockCheckOperation(this); operations.put(op.getProcedureId(), op); - + op = new LockReleaseOperation(this); operations.put(op.getProcedureId(), op); - + op = new VivaldiPingOperation(this); operations.put(op.getProcedureId(), op); - + op = new FleaseMessageOperation(this); operations.put(op.getProcedureId(), op); - + op = new InternalRWRUpdateOperation(this); operations.put(op.getProcedureId(), op); - + op = new InternalRWRTruncateOperation(this); operations.put(op.getProcedureId(), op); - + op = new InternalRWRStatusOperation(this); operations.put(op.getProcedureId(), op); - + op = new InternalRWRFetchOperation(this); operations.put(op.getProcedureId(), op); - + op = new GetFileIDListOperation(this); operations.put(op.getProcedureId(), op); - + op = new RWRNotifyOperation(this); operations.put(op.getProcedureId(), op); op = new InternalRWRAuthStateOperation(this); operations.put(op.getProcedureId(), op); - + // --internal events here-- - + op = new EventCloseFile(this); internalEvents.put(EventCloseFile.class, op); - + op = new EventCreateFileVersion(this); internalEvents.put(EventCreateFileVersion.class, op); - + op = new EventWriteObject(this); internalEvents.put(EventWriteObject.class, op); - + op = new EventInsertPaddingObject(this); internalEvents.put(EventInsertPaddingObject.class, op); - + op = new EventRWRStatus(this); internalEvents.put(EventRWRStatus.class, op); } - + public StorageStage getStorageStage() { return this.stStage; } - + public DeletionStage getDeletionStage() { return delStage; } - + public PreprocStage getPreprocStage() { return preprocStage; } - + public ReplicationStage getReplicationStage() { return replStage; } - - public void sendUDPMessage(RPCHeader header, Message message, InetSocketAddress receiver) - throws IOException { + + public void sendUDPMessage(RPCHeader header, Message message, InetSocketAddress receiver) throws IOException { udpCom.sendRequest(header, message, receiver); } - + public VivaldiStage getVivaldiStage() { return this.vStage; } - + public RWReplicationStage getRWReplicationStage() { return this.rwrStage; } - + // FIXME: implement operations for Gmax, Ping /* - * @Override public void receiveUDP(UDPMessage msg) { assert - * (msg.isRequest() || msg.isResponse()); + * @Override public void receiveUDP(UDPMessage msg) { assert (msg.isRequest() || msg.isResponse()); * * try { * - * if (msg.isRequest()) { if (msg.getRequestData() instanceof - * xtreemfs_broadcast_gmaxRequest) { xtreemfs_broadcast_gmaxRequest rq = - * (xtreemfs_broadcast_gmaxRequest) msg.getRequestData(); if - * (Logging.isDebug()) Logging.logMessage(Logging.LEVEL_DEBUG, - * Category.stage, this, "received GMAX packet for: %s from %s", + * if (msg.isRequest()) { if (msg.getRequestData() instanceof xtreemfs_broadcast_gmaxRequest) { + * xtreemfs_broadcast_gmaxRequest rq = (xtreemfs_broadcast_gmaxRequest) msg.getRequestData(); if (Logging.isDebug()) + * Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, "received GMAX packet for: %s from %s", * rq.getFile_id(), msg.getAddress()); * - * BufferPool.free(msg.getPayload()); - * stStage.receivedGMAX_ASYNC(rq.getFile_id(), rq.getTruncate_epoch(), - * rq.getLast_object()); } else if (msg.getRequestData() instanceof - * xtreemfs_pingRequest) { xtreemfs_pingRequest rq = (xtreemfs_pingRequest) - * msg.getRequestData(); if (Logging.isDebug()) - * Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, - * "received ping request from: %s", msg.getAddress()); + * BufferPool.free(msg.getPayload()); stStage.receivedGMAX_ASYNC(rq.getFile_id(), rq.getTruncate_epoch(), + * rq.getLast_object()); } else if (msg.getRequestData() instanceof xtreemfs_pingRequest) { xtreemfs_pingRequest rq + * = (xtreemfs_pingRequest) msg.getRequestData(); if (Logging.isDebug()) Logging.logMessage(Logging.LEVEL_DEBUG, + * Category.stage, this, "received ping request from: %s", msg.getAddress()); * - * vStage.receiveVivaldiMessage(msg); } } else { if (msg.getResponseData() - * instanceof xtreemfs_pingResponse) { xtreemfs_pingResponse resp = - * (xtreemfs_pingResponse) msg.getResponseData(); if (Logging.isDebug()) - * Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, - * "received ping response from: %s", msg.getAddress()); + * vStage.receiveVivaldiMessage(msg); } } else { if (msg.getResponseData() instanceof xtreemfs_pingResponse) { + * xtreemfs_pingResponse resp = (xtreemfs_pingResponse) msg.getResponseData(); if (Logging.isDebug()) + * Logging.logMessage(Logging.LEVEL_DEBUG, Category.stage, this, "received ping response from: %s", + * msg.getAddress()); * - * vStage.receiveVivaldiMessage(msg); } } } catch (Exception ex) { - * Logging.logError(Logging.LEVEL_DEBUG, this,ex); } } + * vStage.receiveVivaldiMessage(msg); } } } catch (Exception ex) { Logging.logError(Logging.LEVEL_DEBUG, this,ex); } + * } */ /** @@ -934,81 +953,81 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle public ServiceAvailability getServiceAvailability() { return serviceAvailability; } - + public void objectReceived() { long num = numObjsRX.incrementAndGet(); for (OSDStatusListener listener : statusListener) { listener.numObjsRXChanged(num); } } - + public void objectReplicated() { long num = numReplObjsRX.incrementAndGet(); for (OSDStatusListener listener : statusListener) { listener.numReplObjsRX(num); } } - + public void objectSent() { long num = numObjsTX.incrementAndGet(); for (OSDStatusListener listener : statusListener) { listener.numObjsTXChanged(num); } } - + public void replicatedDataReceived(int numBytes) { long num = numReplBytesRX.addAndGet(numBytes); for (OSDStatusListener listener : statusListener) { listener.numReplBytesRXChanged(num); } } - + public void dataReceived(int numBytes) { long num = numBytesRX.addAndGet(numBytes); for (OSDStatusListener listener : statusListener) { listener.numBytesRXChanged(num); } } - + public void dataSent(int numBytes) { long num = numBytesTX.addAndGet(numBytes); for (OSDStatusListener listener : statusListener) { listener.numBytesTXChanged(num); } } - + public long getObjectsReceived() { return numObjsRX.get(); } - + public long getObjectsSent() { return numObjsTX.get(); } - + public long getBytesReceived() { return numBytesRX.get(); } - + public long getBytesSent() { return numBytesTX.get(); } - + public long getReplicatedObjectsReceived() { return numReplObjsRX.get(); } - + public long getReplicatedBytesReceived() { return numReplBytesRX.get(); } - + public void updateVivaldiCoordinates(VivaldiCoordinates newVC) { myCoordinates.set(newVC); } - + public String getHostName() { return heartbeatThread.getAdvertisedHostName(); } - + public void addStatusListener(OSDStatusListener listener) { this.statusListener.add(listener); } @@ -1016,7 +1035,7 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle public void removeStatusListener(OSDStatusListener listener) { this.statusListener.remove(listener); } - + /** * Tells all listeners when the configuration has changed. */ @@ -1025,19 +1044,19 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle listener.OSDConfigChanged(this.config); } } - - + /** * Getter for a timestamp when the heartbeatthread sent his last heartbeat + * * @return long - timestamp as returned by System.currentTimeMillis() */ public long getLastHeartbeat() { return heartbeatThread.getLastHeartbeat(); } - + /** - * Returns primary OSD UUID for the file with ID "fileId" (if OSD is primary or backup) or null (if OSD - * does not know the file). + * Returns primary OSD UUID for the file with ID "fileId" (if OSD is primary or backup) or null (if OSD does not + * know the file). * * @param fileId */ -- GitLab From 79c7bce794e79b0d3d858d31340cec711f7e2bcd Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Fri, 8 Aug 2014 14:21:50 +0200 Subject: [PATCH 068/192] servers: Added OSD smart health test result to DIR status page. --- java/servers/src/org/xtreemfs/dir/StatusPage.java | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/dir/StatusPage.java b/java/servers/src/org/xtreemfs/dir/StatusPage.java index 17db39078..9ff0a26d0 100644 --- a/java/servers/src/org/xtreemfs/dir/StatusPage.java +++ b/java/servers/src/org/xtreemfs/dir/StatusPage.java @@ -38,6 +38,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.DIR.ServiceType; import org.xtreemfs.pbrpc.generatedinterfaces.DIRServiceConstants; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.VivaldiCoordinates; +import org.xtreemfs.pbrpc.generatedinterfaces.OSD.SmartTestResult; import com.sun.net.httpserver.HttpExchange; @@ -213,7 +214,8 @@ public class StatusPage extends StatusServerModule { dump.append("\">"); } - if (!dataEntry.getKey().equals(HeartbeatThread.STATUS_ATTR)) { + if (!(dataEntry.getKey().equals(HeartbeatThread.STATUS_ATTR) || dataEntry.getKey().equals( + "smart_health_test"))) { dump.append(dataEntry.getValue()); } @@ -250,6 +252,17 @@ public class StatusPage extends StatusServerModule { dump.append(" err "); dump.append(coord.getLocalError()); dump.append(")"); + } else if (dataEntry.getKey().equals("smart_health_test")) { + switch (SmartTestResult.valueOf(Integer.valueOf(dataEntry.getValue()))) { + case SMART_TEST_RESULT_PASSED: + dump.append("passed"); + break; + case SMART_TEST_RESULT_FAILED: + dump.append("failed"); + break; + case SMART_TEST_RESULT_NOT_AVAIL: + dump.append("Not available"); + } } dump.append("
"); } -- GitLab From dccbdee8a0049f06d30c78f6960958fbbac247d0 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Fri, 8 Aug 2014 14:24:34 +0200 Subject: [PATCH 069/192] servers: Added check of OSDs SMART test results to default OSP --- .../xtreemfs/mrc/osdselection/FilterDefaultPolicy.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java index 2dd3eb04e..62af6c067 100644 --- a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java +++ b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java @@ -24,6 +24,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.DIR.ServiceSet; import org.xtreemfs.pbrpc.generatedinterfaces.DIR.ServiceStatus; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.OSDSelectionPolicyType; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.VivaldiCoordinates; +import org.xtreemfs.pbrpc.generatedinterfaces.OSD.SmartTestResult; /** * Filters all those OSDs that haven't been assigned to the current XLoc list @@ -73,7 +74,7 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { ServiceSet.Builder filteredOSDs = ServiceSet.newBuilder(); for (Service osd : allOSDs.getServicesList()) { - if (!hasTimedOut(osd) && hasFreeCapacity(osd) && isAvailable(osd)) { + if (!hasTimedOut(osd) && hasFreeCapacity(osd) && isAvailable(osd) && isHealthy(osd)) { // if no custom filters have been assigned, add the OSD to the // list @@ -176,6 +177,11 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { } } + private boolean isHealthy(Service osd) { + int smartTestResult = Integer.valueOf(KeyValuePairs.getValue(osd.getData().getDataList(), "smart_health_test")); + return smartTestResult != SmartTestResult.SMART_TEST_RESULT_FAILED_VALUE; + } + private static boolean matches(String filterString, String customProperty) { StringTokenizer st = new StringTokenizer(filterString); @@ -186,5 +192,4 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { return false; } - } -- GitLab From 0c8d1f21201566bbd2890ec94a5ee2d8e4dcb531 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 11 Aug 2014 13:43:20 +0200 Subject: [PATCH 070/192] servers: Fixed error in default OSP. --- .../org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java index 62af6c067..4dd5887a2 100644 --- a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java +++ b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java @@ -178,8 +178,11 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { } private boolean isHealthy(Service osd) { - int smartTestResult = Integer.valueOf(KeyValuePairs.getValue(osd.getData().getDataList(), "smart_health_test")); - return smartTestResult != SmartTestResult.SMART_TEST_RESULT_FAILED_VALUE; + String smartTestResult = KeyValuePairs.getValue(osd.getData().getDataList(), "smart_health_test"); + if (smartTestResult == null) { + return true; + } + return Integer.valueOf(smartTestResult) != SmartTestResult.SMART_TEST_RESULT_FAILED_VALUE; } private static boolean matches(String filterString, String customProperty) { -- GitLab From ba02be0b5cbe11549898ccba34eb8a2fe58eea78 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 11 Aug 2014 14:31:42 +0200 Subject: [PATCH 071/192] interface: Changed Smart Test Result to OSD Health Result and added WARNING as possible result. --- cpp/generated/xtreemfs/OSD.pb.cc | 204 +++++++------- cpp/generated/xtreemfs/OSD.pb.h | 35 +-- interface/xtreemfs/OSD.proto | 11 +- .../pbrpc/generatedinterfaces/OSD.java | 258 +++++++++--------- 4 files changed, 261 insertions(+), 247 deletions(-) diff --git a/cpp/generated/xtreemfs/OSD.pb.cc b/cpp/generated/xtreemfs/OSD.pb.cc index 1f7eb9eeb..33f73b953 100644 --- a/cpp/generated/xtreemfs/OSD.pb.cc +++ b/cpp/generated/xtreemfs/OSD.pb.cc @@ -135,7 +135,7 @@ const ::google::protobuf::internal::GeneratedMessageReflection* const ::google::protobuf::Descriptor* xtreemfs_rwr_reset_completeRequest_descriptor_ = NULL; const ::google::protobuf::internal::GeneratedMessageReflection* xtreemfs_rwr_reset_completeRequest_reflection_ = NULL; -const ::google::protobuf::EnumDescriptor* SmartTestResult_descriptor_ = NULL; +const ::google::protobuf::EnumDescriptor* OSDHealthResult_descriptor_ = NULL; } // namespace @@ -797,7 +797,7 @@ void protobuf_AssignDesc_xtreemfs_2fOSD_2eproto() { ::google::protobuf::DescriptorPool::generated_pool(), ::google::protobuf::MessageFactory::generated_factory(), sizeof(xtreemfs_rwr_reset_completeRequest)); - SmartTestResult_descriptor_ = file->enum_type(0); + OSDHealthResult_descriptor_ = file->enum_type(0); } namespace { @@ -1097,102 +1097,103 @@ void protobuf_AddDesc_xtreemfs_2fOSD_2eproto() { "eplicaState\"\207\001\n\"xtreemfs_rwr_reset_compl" "eteRequest\0229\n\020file_credentials\030\001 \002(\0132\037.x" "treemfs.pbrpc.FileCredentials\022\017\n\007file_id" - "\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007*n\n\017SmartTe" - "stResult\022\034\n\030SMART_TEST_RESULT_PASSED\020\000\022\034" - "\n\030SMART_TEST_RESULT_FAILED\020\001\022\037\n\033SMART_TE" - "ST_RESULT_NOT_AVAIL\020\0022\253\034\n\nOSDService\022L\n\004" - "read\022\033.xtreemfs.pbrpc.readRequest\032\032.xtre" - "emfs.pbrpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010tr" - "uncate\022\037.xtreemfs.pbrpc.truncateRequest\032" - " .xtreemfs.pbrpc.OSDWriteResponse\"\007\215\265\030\013\000" - "\000\000\022T\n\006unlink\022\".xtreemfs.pbrpc.unlink_osd" - "_Request\032\035.xtreemfs.pbrpc.emptyResponse\"" - "\007\215\265\030\014\000\000\000\022T\n\005write\022\034.xtreemfs.pbrpc.write" - "Request\032 .xtreemfs.pbrpc.OSDWriteRespons" - "e\"\013\215\265\030\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broadcast_gma" - "x\022..xtreemfs.pbrpc.xtreemfs_broadcast_gm" - "axRequest\032\035.xtreemfs.pbrpc.emptyResponse" - "\"\007\215\265\030\024\000\000\000\022j\n\025xtreemfs_check_object\022,.xtr" - "eemfs.pbrpc.xtreemfs_check_objectRequest" - "\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030\025\000\000\000\022{\n" - "\034xtreemfs_cleanup_get_results\022\034.xtreemfs" - ".pbrpc.emptyRequest\0324.xtreemfs.pbrpc.xtr" - "eemfs_cleanup_get_resultsResponse\"\007\215\265\030\036\000" - "\000\000\022y\n\033xtreemfs_cleanup_is_running\022\034.xtre" - "emfs.pbrpc.emptyRequest\0323.xtreemfs.pbrpc" - ".xtreemfs_cleanup_is_runningResponse\"\007\215\265" - "\030\037\000\000\000\022o\n\026xtreemfs_cleanup_start\022-.xtreem" - "fs.pbrpc.xtreemfs_cleanup_startRequest\032\035" - ".xtreemfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022q" - "\n\027xtreemfs_cleanup_status\022\034.xtreemfs.pbr" - "pc.emptyRequest\032/.xtreemfs.pbrpc.xtreemf" - "s_cleanup_statusResponse\"\007\215\265\030!\000\000\000\022]\n\025xtr" - "eemfs_cleanup_stop\022\034.xtreemfs.pbrpc.empt" - "yRequest\032\035.xtreemfs.pbrpc.emptyResponse\"" - "\007\215\265\030\"\000\000\000\022g\n\037xtreemfs_cleanup_versions_st" - "art\022\034.xtreemfs.pbrpc.emptyRequest\032\035.xtre" - "emfs.pbrpc.emptyResponse\"\007\215\265\030#\000\000\000\022o\n\026xtr" - "eemfs_repair_object\022-.xtreemfs.pbrpc.xtr" - "eemfs_repair_objectRequest\032\035.xtreemfs.pb" - "rpc.emptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xtreemfs_r" - "wr_fetch\022).xtreemfs.pbrpc.xtreemfs_rwr_f" - "etchRequest\032\032.xtreemfs.pbrpc.ObjectData\"" - "\007\215\265\030I\000\000\000\022u\n\027xtreemfs_rwr_flease_msg\022..xt" - "reemfs.pbrpc.xtreemfs_rwr_flease_msgRequ" - "est\032\035.xtreemfs.pbrpc.emptyResponse\"\013\215\265\030G" - "\000\000\000\240\265\030\001\022^\n\023xtreemfs_rwr_notify\022\037.xtreemf" - "s.pbrpc.FileCredentials\032\035.xtreemfs.pbrpc" - ".emptyResponse\"\007\215\265\030K\000\000\000\022|\n\036xtreemfs_rwr_" - "set_primary_epoch\0225.xtreemfs.pbrpc.xtree" - "mfs_rwr_set_primary_epochRequest\032\032.xtree" - "mfs.pbrpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023xtreemf" - "s_rwr_status\022*.xtreemfs.pbrpc.xtreemfs_r" - "wr_statusRequest\032\035.xtreemfs.pbrpc.Replic" - "aStatus\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_truncat" - "e\022,.xtreemfs.pbrpc.xtreemfs_rwr_truncate" - "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" - "\215\265\030J\000\000\000\022m\n\023xtreemfs_rwr_update\022*.xtreemf" - "s.pbrpc.xtreemfs_rwr_updateRequest\032\035.xtr" - "eemfs.pbrpc.emptyResponse\"\013\215\265\030H\000\000\000\240\265\030\001\022q" - "\n\027xtreemfs_rwr_auth_state\022..xtreemfs.pbr" - "pc.xtreemfs_rwr_auth_stateRequest\032\035.xtre" - "emfs.pbrpc.emptyResponse\"\007\215\265\030O\000\000\000\022y\n\033xtr" - "eemfs_rwr_reset_complete\0222.xtreemfs.pbrp" - "c.xtreemfs_rwr_reset_completeRequest\032\035.x" - "treemfs.pbrpc.emptyResponse\"\007\215\265\030P\000\000\000\022v\n\032" - "xtreemfs_internal_get_gmax\0221.xtreemfs.pb" - "rpc.xtreemfs_internal_get_gmaxRequest\032\034." - "xtreemfs.pbrpc.InternalGmax\"\007\215\265\030(\000\000\000\022h\n\032" - "xtreemfs_internal_truncate\022\037.xtreemfs.pb" - "rpc.truncateRequest\032 .xtreemfs.pbrpc.OSD" - "WriteResponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemfs_inte" - "rnal_get_file_size\0226.xtreemfs.pbrpc.xtre" - "emfs_internal_get_file_sizeRequest\0327.xtr" - "eemfs.pbrpc.xtreemfs_internal_get_file_s" - "izeResponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_intern" - "al_read_local\0223.xtreemfs.pbrpc.xtreemfs_" - "internal_read_localRequest\032).xtreemfs.pb" - "rpc.InternalReadLocalResponse\"\007\215\265\030+\000\000\000\022\200" - "\001\n xtreemfs_internal_get_object_set\0227.xt" - "reemfs.pbrpc.xtreemfs_internal_get_objec" - "t_setRequest\032\032.xtreemfs.pbrpc.ObjectList" - "\"\007\215\265\030,\000\000\000\022\205\001\n!xtreemfs_internal_get_file" - "id_list\022\034.xtreemfs.pbrpc.emptyRequest\0329." - "xtreemfs.pbrpc.xtreemfs_internal_get_fil" - "eid_listResponse\"\007\215\265\030-\000\000\000\022S\n\025xtreemfs_lo" - "ck_acquire\022\033.xtreemfs.pbrpc.lockRequest\032" - "\024.xtreemfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023xtreem" - "fs_lock_check\022\033.xtreemfs.pbrpc.lockReque" - "st\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022\\\n\025xtr" - "eemfs_lock_release\022\033.xtreemfs.pbrpc.lock" - "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" - "\215\265\0304\000\000\000\022f\n\rxtreemfs_ping\022%.xtreemfs.pbrp" - "c.xtreemfs_pingMesssage\032%.xtreemfs.pbrpc" - ".xtreemfs_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n\021xtree" - "mfs_shutdown\022\034.xtreemfs.pbrpc.emptyReque" - "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030F\000" - "\000\000\032\007\225\265\0301u\000\000B(\n&org.xtreemfs.pbrpc.genera" - "tedinterfaces", 8533); + "\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007*\215\001\n\017OSDHea" + "lthResult\022\034\n\030OSD_HEALTH_RESULT_PASSED\020\000\022" + "\034\n\030OSD_HEALTH_RESULT_FAILED\020\001\022\035\n\031OSD_HEA" + "LTH_RESULT_WARNING\020\002\022\037\n\033OSD_HEALTH_RESUL" + "T_NOT_AVAIL\020\0032\253\034\n\nOSDService\022L\n\004read\022\033.x" + "treemfs.pbrpc.readRequest\032\032.xtreemfs.pbr" + "pc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010truncate\022\037" + ".xtreemfs.pbrpc.truncateRequest\032 .xtreem" + "fs.pbrpc.OSDWriteResponse\"\007\215\265\030\013\000\000\000\022T\n\006un" + "link\022\".xtreemfs.pbrpc.unlink_osd_Request" + "\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\014\000\000\000" + "\022T\n\005write\022\034.xtreemfs.pbrpc.writeRequest\032" + " .xtreemfs.pbrpc.OSDWriteResponse\"\013\215\265\030\r\000" + "\000\000\240\265\030\001\022q\n\027xtreemfs_broadcast_gmax\022..xtre" + "emfs.pbrpc.xtreemfs_broadcast_gmaxReques" + "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\024\000\000" + "\000\022j\n\025xtreemfs_check_object\022,.xtreemfs.pb" + "rpc.xtreemfs_check_objectRequest\032\032.xtree" + "mfs.pbrpc.ObjectData\"\007\215\265\030\025\000\000\000\022{\n\034xtreemf" + "s_cleanup_get_results\022\034.xtreemfs.pbrpc.e" + "mptyRequest\0324.xtreemfs.pbrpc.xtreemfs_cl" + "eanup_get_resultsResponse\"\007\215\265\030\036\000\000\000\022y\n\033xt" + "reemfs_cleanup_is_running\022\034.xtreemfs.pbr" + "pc.emptyRequest\0323.xtreemfs.pbrpc.xtreemf" + "s_cleanup_is_runningResponse\"\007\215\265\030\037\000\000\000\022o\n" + "\026xtreemfs_cleanup_start\022-.xtreemfs.pbrpc" + ".xtreemfs_cleanup_startRequest\032\035.xtreemf" + "s.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022q\n\027xtreem" + "fs_cleanup_status\022\034.xtreemfs.pbrpc.empty" + "Request\032/.xtreemfs.pbrpc.xtreemfs_cleanu" + "p_statusResponse\"\007\215\265\030!\000\000\000\022]\n\025xtreemfs_cl" + "eanup_stop\022\034.xtreemfs.pbrpc.emptyRequest" + "\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\"\000\000\000" + "\022g\n\037xtreemfs_cleanup_versions_start\022\034.xt" + "reemfs.pbrpc.emptyRequest\032\035.xtreemfs.pbr" + "pc.emptyResponse\"\007\215\265\030#\000\000\000\022o\n\026xtreemfs_re" + "pair_object\022-.xtreemfs.pbrpc.xtreemfs_re" + "pair_objectRequest\032\035.xtreemfs.pbrpc.empt" + "yResponse\"\007\215\265\030$\000\000\000\022d\n\022xtreemfs_rwr_fetch" + "\022).xtreemfs.pbrpc.xtreemfs_rwr_fetchRequ" + "est\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030I\000\000\000" + "\022u\n\027xtreemfs_rwr_flease_msg\022..xtreemfs.p" + "brpc.xtreemfs_rwr_flease_msgRequest\032\035.xt" + "reemfs.pbrpc.emptyResponse\"\013\215\265\030G\000\000\000\240\265\030\001\022" + "^\n\023xtreemfs_rwr_notify\022\037.xtreemfs.pbrpc." + "FileCredentials\032\035.xtreemfs.pbrpc.emptyRe" + "sponse\"\007\215\265\030K\000\000\000\022|\n\036xtreemfs_rwr_set_prim" + "ary_epoch\0225.xtreemfs.pbrpc.xtreemfs_rwr_" + "set_primary_epochRequest\032\032.xtreemfs.pbrp" + "c.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023xtreemfs_rwr_st" + "atus\022*.xtreemfs.pbrpc.xtreemfs_rwr_statu" + "sRequest\032\035.xtreemfs.pbrpc.ReplicaStatus\"" + "\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_truncate\022,.xtre" + "emfs.pbrpc.xtreemfs_rwr_truncateRequest\032" + "\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030J\000\000\000\022" + "m\n\023xtreemfs_rwr_update\022*.xtreemfs.pbrpc." + "xtreemfs_rwr_updateRequest\032\035.xtreemfs.pb" + "rpc.emptyResponse\"\013\215\265\030H\000\000\000\240\265\030\001\022q\n\027xtreem" + "fs_rwr_auth_state\022..xtreemfs.pbrpc.xtree" + "mfs_rwr_auth_stateRequest\032\035.xtreemfs.pbr" + "pc.emptyResponse\"\007\215\265\030O\000\000\000\022y\n\033xtreemfs_rw" + "r_reset_complete\0222.xtreemfs.pbrpc.xtreem" + "fs_rwr_reset_completeRequest\032\035.xtreemfs." + "pbrpc.emptyResponse\"\007\215\265\030P\000\000\000\022v\n\032xtreemfs" + "_internal_get_gmax\0221.xtreemfs.pbrpc.xtre" + "emfs_internal_get_gmaxRequest\032\034.xtreemfs" + ".pbrpc.InternalGmax\"\007\215\265\030(\000\000\000\022h\n\032xtreemfs" + "_internal_truncate\022\037.xtreemfs.pbrpc.trun" + "cateRequest\032 .xtreemfs.pbrpc.OSDWriteRes" + "ponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemfs_internal_get" + "_file_size\0226.xtreemfs.pbrpc.xtreemfs_int" + "ernal_get_file_sizeRequest\0327.xtreemfs.pb" + "rpc.xtreemfs_internal_get_file_sizeRespo" + "nse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_internal_read_" + "local\0223.xtreemfs.pbrpc.xtreemfs_internal" + "_read_localRequest\032).xtreemfs.pbrpc.Inte" + "rnalReadLocalResponse\"\007\215\265\030+\000\000\000\022\200\001\n xtree" + "mfs_internal_get_object_set\0227.xtreemfs.p" + "brpc.xtreemfs_internal_get_object_setReq" + "uest\032\032.xtreemfs.pbrpc.ObjectList\"\007\215\265\030,\000\000" + "\000\022\205\001\n!xtreemfs_internal_get_fileid_list\022" + "\034.xtreemfs.pbrpc.emptyRequest\0329.xtreemfs" + ".pbrpc.xtreemfs_internal_get_fileid_list" + "Response\"\007\215\265\030-\000\000\000\022S\n\025xtreemfs_lock_acqui" + "re\022\033.xtreemfs.pbrpc.lockRequest\032\024.xtreem" + "fs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023xtreemfs_lock_" + "check\022\033.xtreemfs.pbrpc.lockRequest\032\024.xtr" + "eemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022\\\n\025xtreemfs_lo" + "ck_release\022\033.xtreemfs.pbrpc.lockRequest\032" + "\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\0304\000\000\000\022" + "f\n\rxtreemfs_ping\022%.xtreemfs.pbrpc.xtreem" + "fs_pingMesssage\032%.xtreemfs.pbrpc.xtreemf" + "s_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n\021xtreemfs_shut" + "down\022\034.xtreemfs.pbrpc.emptyRequest\032\035.xtr" + "eemfs.pbrpc.emptyResponse\"\007\215\265\030F\000\000\000\032\007\225\265\0301" + "u\000\000B(\n&org.xtreemfs.pbrpc.generatedinter" + "faces", 8565); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "xtreemfs/OSD.proto", &protobuf_RegisterTypes); InternalGmax::default_instance_ = new InternalGmax(); @@ -1280,15 +1281,16 @@ struct StaticDescriptorInitializer_xtreemfs_2fOSD_2eproto { protobuf_AddDesc_xtreemfs_2fOSD_2eproto(); } } static_descriptor_initializer_xtreemfs_2fOSD_2eproto_; -const ::google::protobuf::EnumDescriptor* SmartTestResult_descriptor() { +const ::google::protobuf::EnumDescriptor* OSDHealthResult_descriptor() { protobuf_AssignDescriptorsOnce(); - return SmartTestResult_descriptor_; + return OSDHealthResult_descriptor_; } -bool SmartTestResult_IsValid(int value) { +bool OSDHealthResult_IsValid(int value) { switch(value) { case 0: case 1: case 2: + case 3: return true; default: return false; diff --git a/cpp/generated/xtreemfs/OSD.pb.h b/cpp/generated/xtreemfs/OSD.pb.h index 6b981aed0..62f7fad76 100644 --- a/cpp/generated/xtreemfs/OSD.pb.h +++ b/cpp/generated/xtreemfs/OSD.pb.h @@ -77,25 +77,26 @@ class xtreemfs_pingMesssage; class xtreemfs_rwr_auth_stateRequest; class xtreemfs_rwr_reset_completeRequest; -enum SmartTestResult { - SMART_TEST_RESULT_PASSED = 0, - SMART_TEST_RESULT_FAILED = 1, - SMART_TEST_RESULT_NOT_AVAIL = 2 +enum OSDHealthResult { + OSD_HEALTH_RESULT_PASSED = 0, + OSD_HEALTH_RESULT_FAILED = 1, + OSD_HEALTH_RESULT_WARNING = 2, + OSD_HEALTH_RESULT_NOT_AVAIL = 3 }; -bool SmartTestResult_IsValid(int value); -const SmartTestResult SmartTestResult_MIN = SMART_TEST_RESULT_PASSED; -const SmartTestResult SmartTestResult_MAX = SMART_TEST_RESULT_NOT_AVAIL; -const int SmartTestResult_ARRAYSIZE = SmartTestResult_MAX + 1; +bool OSDHealthResult_IsValid(int value); +const OSDHealthResult OSDHealthResult_MIN = OSD_HEALTH_RESULT_PASSED; +const OSDHealthResult OSDHealthResult_MAX = OSD_HEALTH_RESULT_NOT_AVAIL; +const int OSDHealthResult_ARRAYSIZE = OSDHealthResult_MAX + 1; -const ::google::protobuf::EnumDescriptor* SmartTestResult_descriptor(); -inline const ::std::string& SmartTestResult_Name(SmartTestResult value) { +const ::google::protobuf::EnumDescriptor* OSDHealthResult_descriptor(); +inline const ::std::string& OSDHealthResult_Name(OSDHealthResult value) { return ::google::protobuf::internal::NameOfEnum( - SmartTestResult_descriptor(), value); + OSDHealthResult_descriptor(), value); } -inline bool SmartTestResult_Parse( - const ::std::string& name, SmartTestResult* value) { - return ::google::protobuf::internal::ParseNamedEnum( - SmartTestResult_descriptor(), name, value); +inline bool OSDHealthResult_Parse( + const ::std::string& name, OSDHealthResult* value) { + return ::google::protobuf::internal::ParseNamedEnum( + OSDHealthResult_descriptor(), name, value); } // =================================================================== @@ -8558,8 +8559,8 @@ namespace google { namespace protobuf { template <> -inline const EnumDescriptor* GetEnumDescriptor< ::xtreemfs::pbrpc::SmartTestResult>() { - return ::xtreemfs::pbrpc::SmartTestResult_descriptor(); +inline const EnumDescriptor* GetEnumDescriptor< ::xtreemfs::pbrpc::OSDHealthResult>() { + return ::xtreemfs::pbrpc::OSDHealthResult_descriptor(); } } // namespace google diff --git a/interface/xtreemfs/OSD.proto b/interface/xtreemfs/OSD.proto index 60baca0af..22a31ac84 100644 --- a/interface/xtreemfs/OSD.proto +++ b/interface/xtreemfs/OSD.proto @@ -334,13 +334,14 @@ message xtreemfs_rwr_reset_completeRequest { required fixed32 primary_epoch = 3; } -// Status of S.M.A.R.T health test -enum SmartTestResult { - SMART_TEST_RESULT_PASSED = 0; - SMART_TEST_RESULT_FAILED = 1; +// Status of OSD health test +enum OSDHealthResult { + OSD_HEALTH_RESULT_PASSED = 0; + OSD_HEALTH_RESULT_FAILED = 1; + OSD_HEALTH_RESULT_WARNING = 2; // Status is not available, // i.e. the test is disabled or an error occurred - SMART_TEST_RESULT_NOT_AVAIL = 2; + OSD_HEALTH_RESULT_NOT_AVAIL = 3; } service OSDService { diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java index 8a0e4f519..600d590a9 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java @@ -9,72 +9,81 @@ public final class OSD { com.google.protobuf.ExtensionRegistry registry) { } /** - * Protobuf enum {@code xtreemfs.pbrpc.SmartTestResult} + * Protobuf enum {@code xtreemfs.pbrpc.OSDHealthResult} * *
-   * Status of S.M.A.R.T health test
+   * Status of OSD health test
    * 
*/ - public enum SmartTestResult + public enum OSDHealthResult implements com.google.protobuf.ProtocolMessageEnum { /** - * SMART_TEST_RESULT_PASSED = 0; + * OSD_HEALTH_RESULT_PASSED = 0; */ - SMART_TEST_RESULT_PASSED(0, 0), + OSD_HEALTH_RESULT_PASSED(0, 0), /** - * SMART_TEST_RESULT_FAILED = 1; + * OSD_HEALTH_RESULT_FAILED = 1; */ - SMART_TEST_RESULT_FAILED(1, 1), + OSD_HEALTH_RESULT_FAILED(1, 1), /** - * SMART_TEST_RESULT_NOT_AVAIL = 2; + * OSD_HEALTH_RESULT_WARNING = 2; + */ + OSD_HEALTH_RESULT_WARNING(2, 2), + /** + * OSD_HEALTH_RESULT_NOT_AVAIL = 3; * *
      * Status is not available,
      * i.e. the test is disabled or an error occurred
      * 
*/ - SMART_TEST_RESULT_NOT_AVAIL(2, 2), + OSD_HEALTH_RESULT_NOT_AVAIL(3, 3), ; /** - * SMART_TEST_RESULT_PASSED = 0; + * OSD_HEALTH_RESULT_PASSED = 0; + */ + public static final int OSD_HEALTH_RESULT_PASSED_VALUE = 0; + /** + * OSD_HEALTH_RESULT_FAILED = 1; */ - public static final int SMART_TEST_RESULT_PASSED_VALUE = 0; + public static final int OSD_HEALTH_RESULT_FAILED_VALUE = 1; /** - * SMART_TEST_RESULT_FAILED = 1; + * OSD_HEALTH_RESULT_WARNING = 2; */ - public static final int SMART_TEST_RESULT_FAILED_VALUE = 1; + public static final int OSD_HEALTH_RESULT_WARNING_VALUE = 2; /** - * SMART_TEST_RESULT_NOT_AVAIL = 2; + * OSD_HEALTH_RESULT_NOT_AVAIL = 3; * *
      * Status is not available,
      * i.e. the test is disabled or an error occurred
      * 
*/ - public static final int SMART_TEST_RESULT_NOT_AVAIL_VALUE = 2; + public static final int OSD_HEALTH_RESULT_NOT_AVAIL_VALUE = 3; public final int getNumber() { return value; } - public static SmartTestResult valueOf(int value) { + public static OSDHealthResult valueOf(int value) { switch (value) { - case 0: return SMART_TEST_RESULT_PASSED; - case 1: return SMART_TEST_RESULT_FAILED; - case 2: return SMART_TEST_RESULT_NOT_AVAIL; + case 0: return OSD_HEALTH_RESULT_PASSED; + case 1: return OSD_HEALTH_RESULT_FAILED; + case 2: return OSD_HEALTH_RESULT_WARNING; + case 3: return OSD_HEALTH_RESULT_NOT_AVAIL; default: return null; } } - public static com.google.protobuf.Internal.EnumLiteMap + public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } - private static com.google.protobuf.Internal.EnumLiteMap + private static com.google.protobuf.Internal.EnumLiteMap internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - public SmartTestResult findValueByNumber(int number) { - return SmartTestResult.valueOf(number); + new com.google.protobuf.Internal.EnumLiteMap() { + public OSDHealthResult findValueByNumber(int number) { + return OSDHealthResult.valueOf(number); } }; @@ -91,9 +100,9 @@ public final class OSD { return org.xtreemfs.pbrpc.generatedinterfaces.OSD.getDescriptor().getEnumTypes().get(0); } - private static final SmartTestResult[] VALUES = values(); + private static final OSDHealthResult[] VALUES = values(); - public static SmartTestResult valueOf( + public static OSDHealthResult valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException( @@ -105,12 +114,12 @@ public final class OSD { private final int index; private final int value; - private SmartTestResult(int index, int value) { + private OSDHealthResult(int index, int value) { this.index = index; this.value = value; } - // @@protoc_insertion_point(enum_scope:xtreemfs.pbrpc.SmartTestResult) + // @@protoc_insertion_point(enum_scope:xtreemfs.pbrpc.OSDHealthResult) } public interface InternalGmaxOrBuilder @@ -30875,102 +30884,103 @@ public final class OSD { "eplicaState\"\207\001\n\"xtreemfs_rwr_reset_compl" + "eteRequest\0229\n\020file_credentials\030\001 \002(\0132\037.x" + "treemfs.pbrpc.FileCredentials\022\017\n\007file_id" + - "\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007*n\n\017SmartTe" + - "stResult\022\034\n\030SMART_TEST_RESULT_PASSED\020\000\022\034", - "\n\030SMART_TEST_RESULT_FAILED\020\001\022\037\n\033SMART_TE" + - "ST_RESULT_NOT_AVAIL\020\0022\253\034\n\nOSDService\022L\n\004" + - "read\022\033.xtreemfs.pbrpc.readRequest\032\032.xtre" + - "emfs.pbrpc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010tr" + - "uncate\022\037.xtreemfs.pbrpc.truncateRequest\032" + - " .xtreemfs.pbrpc.OSDWriteResponse\"\007\215\265\030\013\000" + - "\000\000\022T\n\006unlink\022\".xtreemfs.pbrpc.unlink_osd" + - "_Request\032\035.xtreemfs.pbrpc.emptyResponse\"" + - "\007\215\265\030\014\000\000\000\022T\n\005write\022\034.xtreemfs.pbrpc.write" + - "Request\032 .xtreemfs.pbrpc.OSDWriteRespons", - "e\"\013\215\265\030\r\000\000\000\240\265\030\001\022q\n\027xtreemfs_broadcast_gma" + - "x\022..xtreemfs.pbrpc.xtreemfs_broadcast_gm" + - "axRequest\032\035.xtreemfs.pbrpc.emptyResponse" + - "\"\007\215\265\030\024\000\000\000\022j\n\025xtreemfs_check_object\022,.xtr" + - "eemfs.pbrpc.xtreemfs_check_objectRequest" + - "\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030\025\000\000\000\022{\n" + - "\034xtreemfs_cleanup_get_results\022\034.xtreemfs" + - ".pbrpc.emptyRequest\0324.xtreemfs.pbrpc.xtr" + - "eemfs_cleanup_get_resultsResponse\"\007\215\265\030\036\000" + - "\000\000\022y\n\033xtreemfs_cleanup_is_running\022\034.xtre", - "emfs.pbrpc.emptyRequest\0323.xtreemfs.pbrpc" + - ".xtreemfs_cleanup_is_runningResponse\"\007\215\265" + - "\030\037\000\000\000\022o\n\026xtreemfs_cleanup_start\022-.xtreem" + - "fs.pbrpc.xtreemfs_cleanup_startRequest\032\035" + - ".xtreemfs.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022q" + - "\n\027xtreemfs_cleanup_status\022\034.xtreemfs.pbr" + - "pc.emptyRequest\032/.xtreemfs.pbrpc.xtreemf" + - "s_cleanup_statusResponse\"\007\215\265\030!\000\000\000\022]\n\025xtr" + - "eemfs_cleanup_stop\022\034.xtreemfs.pbrpc.empt" + - "yRequest\032\035.xtreemfs.pbrpc.emptyResponse\"", - "\007\215\265\030\"\000\000\000\022g\n\037xtreemfs_cleanup_versions_st" + - "art\022\034.xtreemfs.pbrpc.emptyRequest\032\035.xtre" + - "emfs.pbrpc.emptyResponse\"\007\215\265\030#\000\000\000\022o\n\026xtr" + - "eemfs_repair_object\022-.xtreemfs.pbrpc.xtr" + - "eemfs_repair_objectRequest\032\035.xtreemfs.pb" + - "rpc.emptyResponse\"\007\215\265\030$\000\000\000\022d\n\022xtreemfs_r" + - "wr_fetch\022).xtreemfs.pbrpc.xtreemfs_rwr_f" + - "etchRequest\032\032.xtreemfs.pbrpc.ObjectData\"" + - "\007\215\265\030I\000\000\000\022u\n\027xtreemfs_rwr_flease_msg\022..xt" + - "reemfs.pbrpc.xtreemfs_rwr_flease_msgRequ", - "est\032\035.xtreemfs.pbrpc.emptyResponse\"\013\215\265\030G" + - "\000\000\000\240\265\030\001\022^\n\023xtreemfs_rwr_notify\022\037.xtreemf" + - "s.pbrpc.FileCredentials\032\035.xtreemfs.pbrpc" + - ".emptyResponse\"\007\215\265\030K\000\000\000\022|\n\036xtreemfs_rwr_" + - "set_primary_epoch\0225.xtreemfs.pbrpc.xtree" + - "mfs_rwr_set_primary_epochRequest\032\032.xtree" + - "mfs.pbrpc.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023xtreemf" + - "s_rwr_status\022*.xtreemfs.pbrpc.xtreemfs_r" + - "wr_statusRequest\032\035.xtreemfs.pbrpc.Replic" + - "aStatus\"\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_truncat", - "e\022,.xtreemfs.pbrpc.xtreemfs_rwr_truncate" + - "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" + - "\215\265\030J\000\000\000\022m\n\023xtreemfs_rwr_update\022*.xtreemf" + - "s.pbrpc.xtreemfs_rwr_updateRequest\032\035.xtr" + - "eemfs.pbrpc.emptyResponse\"\013\215\265\030H\000\000\000\240\265\030\001\022q" + - "\n\027xtreemfs_rwr_auth_state\022..xtreemfs.pbr" + - "pc.xtreemfs_rwr_auth_stateRequest\032\035.xtre" + - "emfs.pbrpc.emptyResponse\"\007\215\265\030O\000\000\000\022y\n\033xtr" + - "eemfs_rwr_reset_complete\0222.xtreemfs.pbrp" + - "c.xtreemfs_rwr_reset_completeRequest\032\035.x", - "treemfs.pbrpc.emptyResponse\"\007\215\265\030P\000\000\000\022v\n\032" + - "xtreemfs_internal_get_gmax\0221.xtreemfs.pb" + - "rpc.xtreemfs_internal_get_gmaxRequest\032\034." + - "xtreemfs.pbrpc.InternalGmax\"\007\215\265\030(\000\000\000\022h\n\032" + - "xtreemfs_internal_truncate\022\037.xtreemfs.pb" + - "rpc.truncateRequest\032 .xtreemfs.pbrpc.OSD" + - "WriteResponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemfs_inte" + - "rnal_get_file_size\0226.xtreemfs.pbrpc.xtre" + - "emfs_internal_get_file_sizeRequest\0327.xtr" + - "eemfs.pbrpc.xtreemfs_internal_get_file_s", - "izeResponse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_intern" + - "al_read_local\0223.xtreemfs.pbrpc.xtreemfs_" + - "internal_read_localRequest\032).xtreemfs.pb" + - "rpc.InternalReadLocalResponse\"\007\215\265\030+\000\000\000\022\200" + - "\001\n xtreemfs_internal_get_object_set\0227.xt" + - "reemfs.pbrpc.xtreemfs_internal_get_objec" + - "t_setRequest\032\032.xtreemfs.pbrpc.ObjectList" + - "\"\007\215\265\030,\000\000\000\022\205\001\n!xtreemfs_internal_get_file" + - "id_list\022\034.xtreemfs.pbrpc.emptyRequest\0329." + - "xtreemfs.pbrpc.xtreemfs_internal_get_fil", - "eid_listResponse\"\007\215\265\030-\000\000\000\022S\n\025xtreemfs_lo" + - "ck_acquire\022\033.xtreemfs.pbrpc.lockRequest\032" + - "\024.xtreemfs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023xtreem" + - "fs_lock_check\022\033.xtreemfs.pbrpc.lockReque" + - "st\032\024.xtreemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022\\\n\025xtr" + - "eemfs_lock_release\022\033.xtreemfs.pbrpc.lock" + - "Request\032\035.xtreemfs.pbrpc.emptyResponse\"\007" + - "\215\265\0304\000\000\000\022f\n\rxtreemfs_ping\022%.xtreemfs.pbrp" + - "c.xtreemfs_pingMesssage\032%.xtreemfs.pbrpc" + - ".xtreemfs_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n\021xtree", - "mfs_shutdown\022\034.xtreemfs.pbrpc.emptyReque" + - "st\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030F\000" + - "\000\000\032\007\225\265\0301u\000\000B(\n&org.xtreemfs.pbrpc.genera" + - "tedinterfaces" + "\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007*\215\001\n\017OSDHea" + + "lthResult\022\034\n\030OSD_HEALTH_RESULT_PASSED\020\000\022", + "\034\n\030OSD_HEALTH_RESULT_FAILED\020\001\022\035\n\031OSD_HEA" + + "LTH_RESULT_WARNING\020\002\022\037\n\033OSD_HEALTH_RESUL" + + "T_NOT_AVAIL\020\0032\253\034\n\nOSDService\022L\n\004read\022\033.x" + + "treemfs.pbrpc.readRequest\032\032.xtreemfs.pbr" + + "pc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010truncate\022\037" + + ".xtreemfs.pbrpc.truncateRequest\032 .xtreem" + + "fs.pbrpc.OSDWriteResponse\"\007\215\265\030\013\000\000\000\022T\n\006un" + + "link\022\".xtreemfs.pbrpc.unlink_osd_Request" + + "\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\014\000\000\000" + + "\022T\n\005write\022\034.xtreemfs.pbrpc.writeRequest\032", + " .xtreemfs.pbrpc.OSDWriteResponse\"\013\215\265\030\r\000" + + "\000\000\240\265\030\001\022q\n\027xtreemfs_broadcast_gmax\022..xtre" + + "emfs.pbrpc.xtreemfs_broadcast_gmaxReques" + + "t\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\024\000\000" + + "\000\022j\n\025xtreemfs_check_object\022,.xtreemfs.pb" + + "rpc.xtreemfs_check_objectRequest\032\032.xtree" + + "mfs.pbrpc.ObjectData\"\007\215\265\030\025\000\000\000\022{\n\034xtreemf" + + "s_cleanup_get_results\022\034.xtreemfs.pbrpc.e" + + "mptyRequest\0324.xtreemfs.pbrpc.xtreemfs_cl" + + "eanup_get_resultsResponse\"\007\215\265\030\036\000\000\000\022y\n\033xt", + "reemfs_cleanup_is_running\022\034.xtreemfs.pbr" + + "pc.emptyRequest\0323.xtreemfs.pbrpc.xtreemf" + + "s_cleanup_is_runningResponse\"\007\215\265\030\037\000\000\000\022o\n" + + "\026xtreemfs_cleanup_start\022-.xtreemfs.pbrpc" + + ".xtreemfs_cleanup_startRequest\032\035.xtreemf" + + "s.pbrpc.emptyResponse\"\007\215\265\030 \000\000\000\022q\n\027xtreem" + + "fs_cleanup_status\022\034.xtreemfs.pbrpc.empty" + + "Request\032/.xtreemfs.pbrpc.xtreemfs_cleanu" + + "p_statusResponse\"\007\215\265\030!\000\000\000\022]\n\025xtreemfs_cl" + + "eanup_stop\022\034.xtreemfs.pbrpc.emptyRequest", + "\032\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030\"\000\000\000" + + "\022g\n\037xtreemfs_cleanup_versions_start\022\034.xt" + + "reemfs.pbrpc.emptyRequest\032\035.xtreemfs.pbr" + + "pc.emptyResponse\"\007\215\265\030#\000\000\000\022o\n\026xtreemfs_re" + + "pair_object\022-.xtreemfs.pbrpc.xtreemfs_re" + + "pair_objectRequest\032\035.xtreemfs.pbrpc.empt" + + "yResponse\"\007\215\265\030$\000\000\000\022d\n\022xtreemfs_rwr_fetch" + + "\022).xtreemfs.pbrpc.xtreemfs_rwr_fetchRequ" + + "est\032\032.xtreemfs.pbrpc.ObjectData\"\007\215\265\030I\000\000\000" + + "\022u\n\027xtreemfs_rwr_flease_msg\022..xtreemfs.p", + "brpc.xtreemfs_rwr_flease_msgRequest\032\035.xt" + + "reemfs.pbrpc.emptyResponse\"\013\215\265\030G\000\000\000\240\265\030\001\022" + + "^\n\023xtreemfs_rwr_notify\022\037.xtreemfs.pbrpc." + + "FileCredentials\032\035.xtreemfs.pbrpc.emptyRe" + + "sponse\"\007\215\265\030K\000\000\000\022|\n\036xtreemfs_rwr_set_prim" + + "ary_epoch\0225.xtreemfs.pbrpc.xtreemfs_rwr_" + + "set_primary_epochRequest\032\032.xtreemfs.pbrp" + + "c.ObjectData\"\007\215\265\030N\000\000\000\022i\n\023xtreemfs_rwr_st" + + "atus\022*.xtreemfs.pbrpc.xtreemfs_rwr_statu" + + "sRequest\032\035.xtreemfs.pbrpc.ReplicaStatus\"", + "\007\215\265\030L\000\000\000\022m\n\025xtreemfs_rwr_truncate\022,.xtre" + + "emfs.pbrpc.xtreemfs_rwr_truncateRequest\032" + + "\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\030J\000\000\000\022" + + "m\n\023xtreemfs_rwr_update\022*.xtreemfs.pbrpc." + + "xtreemfs_rwr_updateRequest\032\035.xtreemfs.pb" + + "rpc.emptyResponse\"\013\215\265\030H\000\000\000\240\265\030\001\022q\n\027xtreem" + + "fs_rwr_auth_state\022..xtreemfs.pbrpc.xtree" + + "mfs_rwr_auth_stateRequest\032\035.xtreemfs.pbr" + + "pc.emptyResponse\"\007\215\265\030O\000\000\000\022y\n\033xtreemfs_rw" + + "r_reset_complete\0222.xtreemfs.pbrpc.xtreem", + "fs_rwr_reset_completeRequest\032\035.xtreemfs." + + "pbrpc.emptyResponse\"\007\215\265\030P\000\000\000\022v\n\032xtreemfs" + + "_internal_get_gmax\0221.xtreemfs.pbrpc.xtre" + + "emfs_internal_get_gmaxRequest\032\034.xtreemfs" + + ".pbrpc.InternalGmax\"\007\215\265\030(\000\000\000\022h\n\032xtreemfs" + + "_internal_truncate\022\037.xtreemfs.pbrpc.trun" + + "cateRequest\032 .xtreemfs.pbrpc.OSDWriteRes" + + "ponse\"\007\215\265\030)\000\000\000\022\233\001\n\037xtreemfs_internal_get" + + "_file_size\0226.xtreemfs.pbrpc.xtreemfs_int" + + "ernal_get_file_sizeRequest\0327.xtreemfs.pb", + "rpc.xtreemfs_internal_get_file_sizeRespo" + + "nse\"\007\215\265\030*\000\000\000\022\207\001\n\034xtreemfs_internal_read_" + + "local\0223.xtreemfs.pbrpc.xtreemfs_internal" + + "_read_localRequest\032).xtreemfs.pbrpc.Inte" + + "rnalReadLocalResponse\"\007\215\265\030+\000\000\000\022\200\001\n xtree" + + "mfs_internal_get_object_set\0227.xtreemfs.p" + + "brpc.xtreemfs_internal_get_object_setReq" + + "uest\032\032.xtreemfs.pbrpc.ObjectList\"\007\215\265\030,\000\000" + + "\000\022\205\001\n!xtreemfs_internal_get_fileid_list\022" + + "\034.xtreemfs.pbrpc.emptyRequest\0329.xtreemfs", + ".pbrpc.xtreemfs_internal_get_fileid_list" + + "Response\"\007\215\265\030-\000\000\000\022S\n\025xtreemfs_lock_acqui" + + "re\022\033.xtreemfs.pbrpc.lockRequest\032\024.xtreem" + + "fs.pbrpc.Lock\"\007\215\265\0302\000\000\000\022Q\n\023xtreemfs_lock_" + + "check\022\033.xtreemfs.pbrpc.lockRequest\032\024.xtr" + + "eemfs.pbrpc.Lock\"\007\215\265\0303\000\000\000\022\\\n\025xtreemfs_lo" + + "ck_release\022\033.xtreemfs.pbrpc.lockRequest\032" + + "\035.xtreemfs.pbrpc.emptyResponse\"\007\215\265\0304\000\000\000\022" + + "f\n\rxtreemfs_ping\022%.xtreemfs.pbrpc.xtreem" + + "fs_pingMesssage\032%.xtreemfs.pbrpc.xtreemf", + "s_pingMesssage\"\007\215\265\030<\000\000\000\022Y\n\021xtreemfs_shut" + + "down\022\034.xtreemfs.pbrpc.emptyRequest\032\035.xtr" + + "eemfs.pbrpc.emptyResponse\"\007\215\265\030F\000\000\000\032\007\225\265\0301" + + "u\000\000B(\n&org.xtreemfs.pbrpc.generatedinter" + + "faces" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { -- GitLab From 3fa5fc020b3ca514b1598dd55b4f66ece3adeb88 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 11 Aug 2014 14:40:57 +0200 Subject: [PATCH 072/192] servers: Changed parameter name from smart_script to health_script. --- .../servers/src/org/xtreemfs/common/config/ServiceConfig.java | 2 +- java/servers/src/org/xtreemfs/osd/OSDConfig.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java b/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java index 7ce36f075..2947ab9fc 100644 --- a/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java +++ b/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java @@ -121,7 +121,7 @@ public class ServiceConfig extends Config { VIVALDI_MAX_REQUEST_TIMEOUT_IN_MS("vivaldi.max_request_timeout_ms", 10000, Integer.class, false), VIVALDI_TIMER_INTERVAL_IN_MS("vivaldi.timer_interval_ms", 60000, Integer.class, false), STORAGE_THREADS("storage_threads", 1, Integer.class, false), - SMART_SCRIPT("smart_script", "", String.class, false), + HEALTH_SCRIPT("health_script", "", String.class, false), /* * Benchmark specific configuration parameter diff --git a/java/servers/src/org/xtreemfs/osd/OSDConfig.java b/java/servers/src/org/xtreemfs/osd/OSDConfig.java index 1ae3dbd1a..cea045ac6 100644 --- a/java/servers/src/org/xtreemfs/osd/OSDConfig.java +++ b/java/servers/src/org/xtreemfs/osd/OSDConfig.java @@ -80,7 +80,7 @@ public class OSDConfig extends ServiceConfig { Parameter.STORAGE_THREADS, Parameter.USE_RENEWAL_SIGNAL, Parameter.USE_MULTIHOMING, - Parameter.SMART_SCRIPT + Parameter.HEALTH_SCRIPT }; /* * @formatter:on @@ -288,6 +288,6 @@ public class OSDConfig extends ServiceConfig { } public String getSmartScript() { - return (String) parameter.get(Parameter.SMART_SCRIPT); + return (String) parameter.get(Parameter.HEALTH_SCRIPT); } } -- GitLab From 472d295ac05274d014835644c35ae408c381ae4b Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 11 Aug 2014 15:54:07 +0200 Subject: [PATCH 073/192] servers: Added color highlighting to OSD health status in DIR status page. --- .../src/org/xtreemfs/dir/StatusPage.java | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/java/servers/src/org/xtreemfs/dir/StatusPage.java b/java/servers/src/org/xtreemfs/dir/StatusPage.java index 9ff0a26d0..0611e4686 100644 --- a/java/servers/src/org/xtreemfs/dir/StatusPage.java +++ b/java/servers/src/org/xtreemfs/dir/StatusPage.java @@ -38,7 +38,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.DIR.ServiceType; import org.xtreemfs.pbrpc.generatedinterfaces.DIRServiceConstants; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.VivaldiCoordinates; -import org.xtreemfs.pbrpc.generatedinterfaces.OSD.SmartTestResult; +import org.xtreemfs.pbrpc.generatedinterfaces.OSD.OSDHealthResult; import com.sun.net.httpserver.HttpExchange; @@ -215,7 +215,7 @@ public class StatusPage extends StatusServerModule { } if (!(dataEntry.getKey().equals(HeartbeatThread.STATUS_ATTR) || dataEntry.getKey().equals( - "smart_health_test"))) { + "osd_health_test"))) { dump.append(dataEntry.getValue()); } @@ -252,16 +252,19 @@ public class StatusPage extends StatusServerModule { dump.append(" err "); dump.append(coord.getLocalError()); dump.append(")"); - } else if (dataEntry.getKey().equals("smart_health_test")) { - switch (SmartTestResult.valueOf(Integer.valueOf(dataEntry.getValue()))) { - case SMART_TEST_RESULT_PASSED: - dump.append("passed"); + } else if (dataEntry.getKey().equals("osd_health_test")) { + switch (OSDHealthResult.valueOf(Integer.valueOf(dataEntry.getValue()))) { + case OSD_HEALTH_RESULT_PASSED: + dump.append("passed (" + dataEntry.getValue() + ")"); break; - case SMART_TEST_RESULT_FAILED: - dump.append("failed"); + case OSD_HEALTH_RESULT_FAILED: + dump.append("failed (" + dataEntry.getValue() + ")"); break; - case SMART_TEST_RESULT_NOT_AVAIL: - dump.append("Not available"); + case OSD_HEALTH_RESULT_WARNING: + dump.append("warning (" + dataEntry.getValue() + ")"); + break; + case OSD_HEALTH_RESULT_NOT_AVAIL: + dump.append("Not available (" + dataEntry.getValue() + ")"); } } dump.append("
"); -- GitLab From f19ba008a879f01af2e04faf66e037ddb55e5795 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 11 Aug 2014 15:56:45 +0200 Subject: [PATCH 074/192] servers: Updated default OSP. An OSD with "warning" as health status is now treated as unhealthy. --- .../org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java index 4dd5887a2..5e48ceea2 100644 --- a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java +++ b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java @@ -24,7 +24,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.DIR.ServiceSet; import org.xtreemfs.pbrpc.generatedinterfaces.DIR.ServiceStatus; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.OSDSelectionPolicyType; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.VivaldiCoordinates; -import org.xtreemfs.pbrpc.generatedinterfaces.OSD.SmartTestResult; +import org.xtreemfs.pbrpc.generatedinterfaces.OSD.OSDHealthResult; /** * Filters all those OSDs that haven't been assigned to the current XLoc list @@ -178,11 +178,12 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { } private boolean isHealthy(Service osd) { - String smartTestResult = KeyValuePairs.getValue(osd.getData().getDataList(), "smart_health_test"); + String smartTestResult = KeyValuePairs.getValue(osd.getData().getDataList(), "osd_health_test"); if (smartTestResult == null) { return true; } - return Integer.valueOf(smartTestResult) != SmartTestResult.SMART_TEST_RESULT_FAILED_VALUE; + return Integer.valueOf(smartTestResult) != OSDHealthResult.OSD_HEALTH_RESULT_FAILED_VALUE + || Integer.valueOf(smartTestResult) != OSDHealthResult.OSD_HEALTH_RESULT_WARNING_VALUE; } private static boolean matches(String filterString, String customProperty) { -- GitLab From 147a4cbd5e612243aec962fedd93e9074b4bb95d Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 11 Aug 2014 16:00:05 +0200 Subject: [PATCH 075/192] servers: Renamed smart_health_test to osd_health_test. --- .../src/org/xtreemfs/osd/OSDRequestDispatcher.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java b/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java index bfe534b1a..d00df9f7b 100644 --- a/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java +++ b/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java @@ -118,7 +118,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.DIRServiceClient; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.VivaldiCoordinates; import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; -import org.xtreemfs.pbrpc.generatedinterfaces.OSD.SmartTestResult; +import org.xtreemfs.pbrpc.generatedinterfaces.OSD.OSDHealthResult; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceConstants; @@ -386,19 +386,19 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle long totalRAM = Runtime.getRuntime().maxMemory(); long usedRAM = Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory(); - // Get SMART health test result from user-defined script. - SmartTestResult smartTestResult = SmartTestResult.SMART_TEST_RESULT_NOT_AVAIL; + // Get OSD health result from user-defined script. + OSDHealthResult smartTestResult = OSDHealthResult.OSD_HEALTH_RESULT_NOT_AVAIL; InputStreamReader scriptOutputStream = null; if (!config.getSmartScript().equals("")) { try { scriptOutputStream = new InputStreamReader(Runtime.getRuntime() .exec(new String[] { config.getSmartScript(), config.getObjDir() }).getInputStream()); int scriptOutput = Integer.parseInt(String.valueOf((char) scriptOutputStream.read())); - smartTestResult = SmartTestResult.valueOf(scriptOutput); + smartTestResult = OSDHealthResult.valueOf(scriptOutput); if (smartTestResult == null) { Logging.logMessage(Logging.LEVEL_WARN, Category.misc, this, "SMART script returns invalid value (" + scriptOutput + ")"); - smartTestResult = SmartTestResult.SMART_TEST_RESULT_NOT_AVAIL; + smartTestResult = OSDHealthResult.OSD_HEALTH_RESULT_NOT_AVAIL; } } catch (IOException e) { Logging.logMessage(Logging.LEVEL_WARN, Category.misc, this, @@ -425,7 +425,7 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle .build()); dmap.addData(KeyValuePair.newBuilder().setKey("usedRAM").setValue(Long.toString(usedRAM)) .build()); - dmap.addData(KeyValuePair.newBuilder().setKey("smart_health_test") + dmap.addData(KeyValuePair.newBuilder().setKey("osd_health_test") .setValue(String.valueOf(smartTestResult.getNumber())).build()); dmap.addData(KeyValuePair.newBuilder().setKey("proto_version").setValue( Integer.toString(OSDServiceConstants.INTERFACE_ID)).build()); -- GitLab From 5ca2e801be2caa237c169e1dd49b720185863d71 Mon Sep 17 00:00:00 2001 From: noma Date: Mon, 11 Aug 2014 18:35:07 +0200 Subject: [PATCH 076/192] client: Added experimental LD_PRELOAD library. --- cpp/include/ld_preload/environment.h | 47 +++ cpp/include/ld_preload/misc.h | 58 ++++ cpp/include/ld_preload/open_file_table.h | 61 ++++ cpp/include/ld_preload/passthrough.h | 79 +++++ cpp/include/ld_preload/path.h | 29 ++ cpp/include/ld_preload/preload.h | 39 +++ cpp/include/ld_preload/preload_options.h | 45 +++ cpp/src/ld_preload/environment.cpp | 118 +++++++ cpp/src/ld_preload/functions.cpp | 377 +++++++++++++++++++++++ cpp/src/ld_preload/misc.cpp | 97 ++++++ cpp/src/ld_preload/open_file_table.cpp | 101 ++++++ cpp/src/ld_preload/passthrough.cpp | 94 ++++++ cpp/src/ld_preload/path.cpp | 38 +++ cpp/src/ld_preload/preload.cpp | 300 ++++++++++++++++++ cpp/src/ld_preload/preload_options.cpp | 94 ++++++ cpp/test/ld_preload/cp.sh | 4 + cpp/test/ld_preload/preload_test.cpp | 71 +++++ cpp/test/ld_preload/preload_test.sh | 4 + cpp/test/ld_preload/setfattr.sh | 4 + 19 files changed, 1660 insertions(+) create mode 100644 cpp/include/ld_preload/environment.h create mode 100644 cpp/include/ld_preload/misc.h create mode 100644 cpp/include/ld_preload/open_file_table.h create mode 100644 cpp/include/ld_preload/passthrough.h create mode 100644 cpp/include/ld_preload/path.h create mode 100644 cpp/include/ld_preload/preload.h create mode 100644 cpp/include/ld_preload/preload_options.h create mode 100644 cpp/src/ld_preload/environment.cpp create mode 100644 cpp/src/ld_preload/functions.cpp create mode 100644 cpp/src/ld_preload/misc.cpp create mode 100644 cpp/src/ld_preload/open_file_table.cpp create mode 100644 cpp/src/ld_preload/passthrough.cpp create mode 100644 cpp/src/ld_preload/path.cpp create mode 100644 cpp/src/ld_preload/preload.cpp create mode 100644 cpp/src/ld_preload/preload_options.cpp create mode 100755 cpp/test/ld_preload/cp.sh create mode 100644 cpp/test/ld_preload/preload_test.cpp create mode 100755 cpp/test/ld_preload/preload_test.sh create mode 100755 cpp/test/ld_preload/setfattr.sh diff --git a/cpp/include/ld_preload/environment.h b/cpp/include/ld_preload/environment.h new file mode 100644 index 000000000..fb221a509 --- /dev/null +++ b/cpp/include/ld_preload/environment.h @@ -0,0 +1,47 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#ifndef PRELOAD_ENVIRONMENT_H_ +#define PRELOAD_ENVIRONMENT_H_ + +#include +#include +#include + +#include "libxtreemfs/system_user_mapping_unix.h" +#include "libxtreemfs/volume_implementation.h" + +#include "ld_preload/open_file_table.h" +#include "ld_preload/path.h" +#include "ld_preload/preload_options.h" + +namespace xtreemfs { +class Client; +class VolumeHandle; +} + +class Environment { + public: + Environment(); + ~Environment(); + //xtreemfs::Volume* GetVolume(const std::string& volume_name); + xtreemfs::Volume* GetVolume(); + xtreemfs::SystemUserMappingUnix& GetSystemUserMapping(); + + + xtreemfs::PreloadOptions options_; + xtreemfs::Client* client_; + xtreemfs::Volume* volume_; + std::string volume_name_; + + /** Translates between local and remote usernames and groups. */ + xtreemfs::SystemUserMappingUnix system_user_mapping_; + xtreemfs::pbrpc::UserCredentials user_creds_; + OpenFileTable open_file_table_; +}; + +#endif // PRELOAD_ENVIRONMENT_H_ diff --git a/cpp/include/ld_preload/misc.h b/cpp/include/ld_preload/misc.h new file mode 100644 index 000000000..231082405 --- /dev/null +++ b/cpp/include/ld_preload/misc.h @@ -0,0 +1,58 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#ifndef PRELOAD_MISC_H_ +#define PRELOAD_MISC_H_ + +#include +#include +#include + +#include "libxtreemfs/pbrpc_url.h" +#include "xtreemfs/GlobalTypes.pb.h" + +#include "ld_preload/environment.h" +#include "ld_preload/passthrough.h" + +xtreemfs::pbrpc::SYSTEM_V_FCNTL ConvertFlagsUnixToXtreemFS(int flags); +int TranslateMode(const char* mode); +int ConvertXtreemFSErrnoToUnix(xtreemfs::pbrpc::POSIXErrno xtreemfs_errno); + +template +void ConvertXtreemFSStatToUnix(const xtreemfs::pbrpc::Stat& xtreemfs_stat, T* unix_stat, xtreemfs::SystemUserMappingUnix& system_user_mapping) { + unix_stat->st_dev = xtreemfs_stat.dev(); + unix_stat->st_blksize = 8 * 128 * 1024; + unix_stat->st_ino = xtreemfs_stat.ino(); // = fileId + unix_stat->st_mode = xtreemfs_stat.mode(); + unix_stat->st_nlink = xtreemfs_stat.nlink(); + + // Map user- and groupnames. + unix_stat->st_uid = system_user_mapping.UsernameToUID(xtreemfs_stat.user_id()); + unix_stat->st_gid = system_user_mapping.GroupnameToGID(xtreemfs_stat.group_id()); + + unix_stat->st_size = xtreemfs_stat.size(); +#ifdef __linux + unix_stat->st_atim.tv_sec = xtreemfs_stat.atime_ns() / 1000000000; + unix_stat->st_atim.tv_nsec = xtreemfs_stat.atime_ns() % 1000000000; + unix_stat->st_mtim.tv_sec = xtreemfs_stat.mtime_ns() / 1000000000; + unix_stat->st_mtim.tv_nsec = xtreemfs_stat.mtime_ns() % 1000000000; + unix_stat->st_ctim.tv_sec = xtreemfs_stat.ctime_ns() / 1000000000; + unix_stat->st_ctim.tv_nsec = xtreemfs_stat.ctime_ns() % 1000000000; +#elif __APPLE__ + unix_stat->st_atimespec.tv_sec = xtreemfs_stat.atime_ns() / 1000000000; + unix_stat->st_atimespec.tv_nsec = xtreemfs_stat.atime_ns() % 1000000000; + unix_stat->st_mtimespec.tv_sec = xtreemfs_stat.mtime_ns() / 1000000000; + unix_stat->st_mtimespec.tv_nsec = xtreemfs_stat.mtime_ns() % 1000000000; + unix_stat->st_ctimespec.tv_sec = xtreemfs_stat.ctime_ns() / 1000000000; + unix_stat->st_ctimespec.tv_nsec = xtreemfs_stat.ctime_ns() % 1000000000; +#endif + + unix_stat->st_rdev = 0; + unix_stat->st_blocks = xtreemfs_stat.size() / 512; +} + +#endif // PRELOAD_MISC_H_ diff --git a/cpp/include/ld_preload/open_file_table.h b/cpp/include/ld_preload/open_file_table.h new file mode 100644 index 000000000..42bc67c2c --- /dev/null +++ b/cpp/include/ld_preload/open_file_table.h @@ -0,0 +1,61 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#ifndef PRELOAD_OPEN_FILE_TABLE_H_ +#define PRELOAD_OPEN_FILE_TABLE_H_ + +#include +#include +#include +#include + +#include +#include "libxtreemfs/file_handle.h" + +namespace xtreemfs { +class Client; +class VolumeHandle; +} + +class OpenFile { + public: + OpenFile(xtreemfs::FileHandle* fh); + + void Initialise(); + void Deinitialise(); + int GetFileDescriptor(); + + xtreemfs::FileHandle* fh_; + uint64_t offset_; + +private: + FILE * tmp_file_; + int tmp_file_fd_; +}; + +class OpenFileTable { + public: + OpenFileTable(); + ~OpenFileTable(); + + int Register(xtreemfs::FileHandle* handle); + void Unregister(int fd); + OpenFile Get(int fd); + int Set(int fd, xtreemfs::FileHandle* handle); + void SetOffset(int fd, uint64_t offset); + bool Has(int fd); + + private: + boost::mutex mutex_; + typedef std::map FileTable; + FileTable open_files_;// GUARDED_BY(mutex_); + FILE * tmp_file_; + int tmp_file_fd_; + int next_fd_; +}; + +#endif // PRELOAD_OPEN_FILE_TABLE_H_ diff --git a/cpp/include/ld_preload/passthrough.h b/cpp/include/ld_preload/passthrough.h new file mode 100644 index 000000000..08a29c1d0 --- /dev/null +++ b/cpp/include/ld_preload/passthrough.h @@ -0,0 +1,79 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#ifndef PRELOAD_PASSTHROUGH_H_ +#define PRELOAD_PASSTHROUGH_H_ + +#include +#include + +typedef int (*funcptr_open)(const char*, int, int); +typedef int (*funcptr_close)(int); + +typedef ssize_t (*funcptr_read)(int, void*, size_t); +typedef ssize_t (*funcptr_write)(int, const void*, size_t); +typedef ssize_t (*funcptr_pread)(int, void*, size_t, off_t); +typedef ssize_t (*funcptr_pwrite)(int, const void*, size_t, off_t); + +typedef int (*funcptr_dup)(int); +typedef int (*funcptr_dup2)(int, int); +typedef off_t (*funcptr_lseek)(int, off_t, int); + +typedef int (*funcptr_stat)(const char*, struct stat*); +typedef int (*funcptr_fstat)(int, struct stat*); +typedef int (*funcptr___xstat)(int, const char*, struct stat*); +typedef int (*funcptr___xstat64)(int, const char*, struct stat64*); +typedef int (*funcptr___fxstat)(int, int, struct stat*); +typedef int (*funcptr___fxstat64)(int, int, struct stat64*); +typedef int (*funcptr___lxstat)(int, const char*, struct stat*); +typedef int (*funcptr___lxstat64)(int, const char*, struct stat64*); + +typedef FILE* (*funcptr_fopen)(const char*, const char*); +typedef int (*funcptr_truncate)(const char*, off_t); +typedef int (*funcptr_ftruncate)(int, off_t); + +typedef int (*funcptr_setxattr)(const char*, const char*, const void*, size_t, int); +typedef int (*funcptr_fsetxattr)(int, const char*, const void*, size_t, int); + + +extern void* libc_open; +extern void* libc_close; +extern void* libc___close; +extern void* libc_pread; +extern void* libc_read; +extern void* libc_write; +extern void* libc_dup; +extern void* libc_dup2; +extern void* libc_lseek; + +extern void* libc_stat; +extern void* libc_fstat; +extern void* libc___xstat; +extern void* libc___xstat64; +extern void* libc___fxstat; +extern void* libc___fxstat64; +extern void* libc___lxstat; +extern void* libc___lxstat64; + +extern void* libc_fopen; +extern void* libc_truncate; +extern void* libc_ftruncate; + +extern void* libattr_setxattr; +extern void* libattr_fsetxattr; + +void initialize_passthrough_if_necessary(); + +#ifdef XTREEMFS_PRELOAD_QUIET + #define xprintf(...) +#else + #define xprintf(...) fprintf(xtreemfs_stdout() ? xtreemfs_stdout() : stdout, __VA_ARGS__) +#endif + +FILE* xtreemfs_stdout(); + +#endif // PRELOAD_PASSTHROUGH_H_ diff --git a/cpp/include/ld_preload/path.h b/cpp/include/ld_preload/path.h new file mode 100644 index 000000000..c0e442594 --- /dev/null +++ b/cpp/include/ld_preload/path.h @@ -0,0 +1,29 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#ifndef PRELOAD_PATH_H_ +#define PRELOAD_PATH_H_ + +#include + +class Path { + public: + Path(const char* pathname); + + bool IsXtreemFS(); + void Parse(); + const char* GetXtreemFSPath(); + static void SetXtreemFSPrefix(const std::string& prefix); + +private: + static std::string& GetXtreemFSPrefix(); + + const char* pathname_; + const char* xtreemfs_path_; +}; + +#endif // PRELOAD_PATH_H_ diff --git a/cpp/include/ld_preload/preload.h b/cpp/include/ld_preload/preload.h new file mode 100644 index 000000000..b70c23489 --- /dev/null +++ b/cpp/include/ld_preload/preload.h @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#ifndef PRELOAD_PRELOAD_H_ +#define PRELOAD_PRELOAD_H_ + +#include +#include + +#include "ld_preload/environment.h" + +bool overlay_initialized(bool toggle = false); +Environment* get_env(); + +bool is_xtreemfs_fd(int fd); +bool is_xtreemfs_path(const char *path); + +int xtreemfs_open(const char* pathname, int flags, int mode); +int xtreemfs_close(int fd); +uint64_t xtreemfs_pread(int fd, void* buf, uint64_t nbyte, uint64_t offset); +uint64_t xtreemfs_read(int fd, void* buf, uint64_t nbyte); +uint64_t xtreemfs_write(int fd, const void* buf, uint64_t nbyte); +int xtreemfs_dup2(int oldfd, int newfd); +int xtreemfs_dup(int fd); +off_t xtreemfs_lseek(int fd, off_t offset, int mode); +int xtreemfs_stat(const char *path, struct stat *buf); +int xtreemfs_stat64(const char *pathname, struct stat64 *buf); +int xtreemfs_fstat(int fd, struct stat *buf); +int xtreemfs_fstat64(int fd, struct stat64 *buf); + +int xtreemfs_setxattr(const char *pathname, const char *name, const void *value, size_t size, int flags); +int xtreemfs_fsetxattr(int fd, const char *name, const void *value, size_t size, int flags); + +#endif // PRELOAD_PRELOAD_H_ + diff --git a/cpp/include/ld_preload/preload_options.h b/cpp/include/ld_preload/preload_options.h new file mode 100644 index 000000000..233919d3d --- /dev/null +++ b/cpp/include/ld_preload/preload_options.h @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#ifndef CPP_INCLUDE_LD_PRELOAD_PRELOAD_OPTIONS_H_ +#define CPP_INCLUDE_LD_PRELOAD_PRELOAD_OPTIONS_H_ + +#include "libxtreemfs/options.h" + +#include +#include +#include + +namespace xtreemfs { + +class PreloadOptions : public Options { + public: + /** Sets the default values. */ + PreloadOptions(); + + /** Set options parsed from command line which must contain at least the URL + * to an XtreemFS volume. + * + * Calls Options::ParseCommandLine() to parse general options. + * + * @throws InvalidCommandLineParametersException + * @throws InvalidURLException */ + void ParseCommandLine(int argc, char** argv); + + /** Outputs usage of the command line parameters. */ + virtual std::string ShowCommandLineHelp(); + + // TODO: add preload-specific options here + + private: + /** Contains all available preload options and its descriptions. */ + boost::program_options::options_description preload_descriptions_; +}; + +} // namespace xtreemfs + +#endif // CPP_INCLUDE_LD_PRELOAD_PRELOAD_OPTIONS_H_ diff --git a/cpp/src/ld_preload/environment.cpp b/cpp/src/ld_preload/environment.cpp new file mode 100644 index 000000000..f955c8ad8 --- /dev/null +++ b/cpp/src/ld_preload/environment.cpp @@ -0,0 +1,118 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#include "ld_preload/environment.h" + +#include +#include +#include +#include +#include +#include +#include "libxtreemfs/client.h" +#include "libxtreemfs/file_handle.h" +#include "libxtreemfs/options.h" +#include "libxtreemfs/pbrpc_url.h" +#include "util/logging.h" + +#include "ld_preload/misc.h" +#include "ld_preload/preload_options.h" + +Environment::Environment() : volume_(NULL) { + xprintf("Environment::Environment()\n"); + + // get options string from the environment + const char program_name_dummy[] = "program "; // prefix dummy for options string + const char* options_env = std::getenv("XTREEMFS_PRELOAD_OPTIONS"); + xprintf("Environment::Environment(): getenv returned: %p\n", options_env); + if (!options_env) { + exit(-1); + } + //const char options_env[] = "demo.xtreemfs.org/demo /home/b/bemnoack/bqcd/remote-test"; + + // test for null-string and exit + if (!options_env) { + xprintf("Environment::Environment(): error: XTREEMFS_PRELOAD_OPTIONS environment variable not set or empty.\n"); + } + size_t options_c_str_length = std::strlen(options_env) + std::strlen(program_name_dummy); + char* options_c_str = new char[options_c_str_length + 1]; + xprintf("Environment::Environment(): XTREEMFS_PRELOAD_OPTIONS='%s'\n", options_env); + + std::strcpy(options_c_str, program_name_dummy); + std::strcat(options_c_str, options_env); + xprintf("Environment::Environment(): options_c_str='%s'\n", options_c_str); + // tokenise by space (overwrite first space after each token with null-termination) + char *pos; + std::vector arg_vector; + pos = strtok(options_c_str, " "); + arg_vector.push_back(pos); + while (pos != NULL) { + //xprintf("Environment::Environment(): token: %s\n", pos); + pos = strtok(NULL, " "); + arg_vector.push_back(pos); // last strtok returns NULL, by standard: argv[argc] == 0 + } + xprintf("Environment::Environment()\n"); + char** argv = new char*[arg_vector.size()]; + for (int i = 0; i < arg_vector.size(); ++i) { + argv[i] = arg_vector[i]; + } + int argc = arg_vector.size() - 1; // last NULL entry does not count + xprintf("Environment::Environment()\n"); + // generate argc, argv like arguments for command line parsing + options_.ParseCommandLine(argc, argv); + xprintf("Environment::Environment()\n"); + delete [] argv; + delete [] options_c_str; + + xtreemfs::util::initialize_logger(options_.log_level_string, + options_.log_file_path, + xtreemfs::util::LEVEL_WARN); + + xprintf("enable_async_writes: %d\n", options_.enable_async_writes); + + // user credentials: + uid_t uid = getuid(); + gid_t gid = getgid(); + pid_t pid = getpid(); + + user_creds_.set_username(system_user_mapping_.UIDToUsername(uid)); + std::list groupnames; + system_user_mapping_.GetGroupnames(uid, gid, pid, &groupnames); + for (std::list::iterator it = groupnames.begin(); + it != groupnames.end(); ++it) { + user_creds_.add_groups(*it); + } + + // client setup + xprintf("Environment::Environment(): Client setup start\n"); + client_ = xtreemfs::Client::CreateClient(options_.service_addresses, user_creds_, NULL, options_); + client_->Start(); + xprintf("Environment::Environment(): Client setup end\n"); + + // open volume + xprintf("Environment::Environment(): Opening volume %s\n", options_.volume_name.c_str()); + volume_ = client_->OpenVolume(options_.volume_name, NULL, options_); + volume_name_ = options_.volume_name; + + std::string prefix_env(options_.mount_point); + Path::SetXtreemFSPrefix(prefix_env); +} + +Environment::~Environment() { + xprintf("Environment::~Environment(): Closing volume.\n"); +// volume_ = client_->CloseVolume(volume_); // not in the Client interface, but performed implicitly in ClientImplementation::Shutdown + client_->Shutdown(); + xprintf("Environment::~Environment()\n"); +} + +xtreemfs::Volume* Environment::GetVolume() { + return volume_; +} + +xtreemfs::SystemUserMappingUnix& Environment::GetSystemUserMapping() { + return system_user_mapping_; +} diff --git a/cpp/src/ld_preload/functions.cpp b/cpp/src/ld_preload/functions.cpp new file mode 100644 index 000000000..a50832eb0 --- /dev/null +++ b/cpp/src/ld_preload/functions.cpp @@ -0,0 +1,377 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#include +#include +#include +#include + +#include "ld_preload/passthrough.h" +#include "ld_preload/preload.h" + +/* Interceptor functions */ + +extern "C" { + +int open(__const char *path, int flags, ...) { + initialize_passthrough_if_necessary(); + xprintf(" open(%s)\n", path); + + // if O_CREAT is set, mode MUST be specified and is ignored otherwise (at least on linux, see man 2 open) + // we only need to acquire the mode, when it must be specified, and ignore it otherwise + mode_t mode; + if (flags & O_CREAT) { + va_list ap; + va_start(ap, flags); + mode = va_arg(ap, mode_t); + va_end(ap); + } + + if (overlay_initialized() && is_xtreemfs_path(path)) { + return xtreemfs_open(path, flags, mode); + } else { + xprintf(" open calling libc_open(%s)\n", path); + int ret = ((funcptr_open)libc_open)(path, flags, mode); + xprintf(" open libc_open(%s) returned %d\n", path, ret); + return ret; + } +} + +int open64(__const char *path, int flags, ...) { + initialize_passthrough_if_necessary(); + xprintf(" open64(%s)\n", path); + + mode_t mode; + if (flags & O_CREAT) { + va_list ap; + va_start(ap, flags); + mode = va_arg(ap, mode_t); + va_end(ap); + } + + return open(path, flags | O_LARGEFILE, mode); +} + +#undef creat +int creat(__const char *name, mode_t mode) { + return open(name, O_CREAT | O_WRONLY | O_TRUNC, mode); +} + +int close(int fd) { + initialize_passthrough_if_necessary(); + xprintf(" close(%d)\n", fd); + + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + return xtreemfs_close(fd); + } else { + xprintf(" close passthrough(%d)\n", fd); + return ((funcptr_close)libc_close)(fd); + } +} + +// failed attempt to intercept libc-internal close calls + +int _close(int fd) { + xprintf(" _close(%d)\n", fd); + return close(fd); +} + +int __close(int fd) { + xprintf(" __close(%d)\n", fd); + return close(fd); +} + +// TODO: do we need this? +/* +int fclose(FILE *fp) { + initialize_passthrough_if_necessary(); + xprintf(" fclose(%d)\n", fd); + + if (is_xtreemfs_fd(fd)) { + return xtreemfs_fclose(fd); + } else { + xprintf(" fclose passthrough(%d)\n", fd); + return ((funcptr_close)libc_fclose)(fd); + } +} +*/ + +ssize_t pread(int fd, void* buf, size_t nbyte, off_t offset) { + initialize_passthrough_if_necessary(); + xprintf(" pread(%d)\n", fd); + + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + return xtreemfs_pread(fd, buf, nbyte, offset); + } else { + return ((funcptr_pread)libc_pread)(fd, buf, nbyte, offset); + } +} + +ssize_t pread64(int fd, void* buf, size_t nbyte, __off64_t offset) { + initialize_passthrough_if_necessary(); + xprintf(" pread64(%d)\n", fd); + + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + return xtreemfs_pread(fd, buf, nbyte, offset); + } else { + return ((funcptr_pread)libc_pread)(fd, buf, nbyte, offset); + } +} + +ssize_t read(int fd, void* buf, size_t nbyte) { + initialize_passthrough_if_necessary(); + xprintf(" read(%d)\n", fd); + + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + return xtreemfs_read(fd, buf, nbyte); + } else { + return ((funcptr_read)libc_read)(fd, buf, nbyte); + } +} + +ssize_t write(int fd, const void* buf, size_t nbyte) { + initialize_passthrough_if_necessary(); + xprintf(" write(%d)\n", fd); + + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + xprintf(" write(%d) xtreemfs\n", fd); + return xtreemfs_write(fd, buf, nbyte); + } else { + xprintf(" write(%d) passthrough\n", fd); + return ((funcptr_write)libc_write)(fd, buf, nbyte); + } +} + +int dup(int oldfd) { + initialize_passthrough_if_necessary(); + xprintf(" dup(%d)\n", oldfd); + + if (overlay_initialized() && is_xtreemfs_fd(oldfd)) { + //xprintf("calling xtreemfs dup(%d)\n", oldfd); + //return xtreemfs_dup(oldfd); + xprintf(" NOT IMPLEMENTED: dup for xtreemfs fd(%d)\n", oldfd); + return -1; + } else { + xprintf(" calling pasthrought dup(%d)\n", oldfd); + return ((funcptr_dup)libc_dup)(oldfd); + } +} + +int dup2(int oldfd, int newfd) { + initialize_passthrough_if_necessary(); + xprintf(" dup2(%d, %d)\n", oldfd, newfd); + + if (overlay_initialized() && (is_xtreemfs_fd(newfd) || is_xtreemfs_fd(oldfd))) { + xprintf(" NOT IMPLEMENTED: dup2 for xtreemfs fd(%d, %d)\n", oldfd, newfd); + return -1; + } else { + return ((funcptr_dup2)libc_dup2)(oldfd, newfd); + } + +// if (overlay_initialized() && is_xtreemfs_fd(newfd)) { +// xprintf(" dest is xtreemfs fd\n"); +// xtreemfs_close(newfd); +// } else { +// xprintf(" dest is system fd\n"); +// ((funcptr_close)libc_close)(newfd); +// } +// +// if (overlay_initialized() && is_xtreemfs_fd(oldfd)) { +// return xtreemfs_dup2(oldfd, newfd); +// } else { +// xprintf(" dup2 passthrough\n"); +// return ((funcptr_dup2)libc_dup2)(oldfd, newfd); +// } +} + +off_t lseek(int fd, off_t offset, int mode) { + initialize_passthrough_if_necessary(); + xprintf(" lseek(%d, %ld, %d)\n", fd, offset, mode); + + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + return xtreemfs_lseek(fd, offset, mode); + } else { + return ((funcptr_lseek)libc_lseek)(fd, offset, mode); + } +} + +int stat(const char *path, struct stat *buf) { + initialize_passthrough_if_necessary(); + xprintf(" stat(%s, ...)\n", path); + + if (overlay_initialized() && is_xtreemfs_path(path)) { + return xtreemfs_stat(path, buf); + } else { + return ((funcptr_stat)libc_stat)(path, buf); + } +} + +int fstat(int fd, struct stat *buf) { + initialize_passthrough_if_necessary(); + xprintf(" fstat(%d, ...)\n", fd); + + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + return xtreemfs_fstat(fd, buf); + } else { + return ((funcptr_fstat)libc_fstat)(fd, buf); + } +} + +int __xstat(int ver, const char *path, struct stat *buf) { + initialize_passthrough_if_necessary(); + xprintf(" __xstat(%d, %s, ...)\n", ver, path); + + if (overlay_initialized() && is_xtreemfs_path(path)) { + return xtreemfs_stat(path, buf); + } else { + return ((funcptr___xstat)libc___xstat)(ver, path, buf); + } +} + +int __xstat64(int ver, const char *path, struct stat64 *buf) { + initialize_passthrough_if_necessary(); + xprintf(" __xstat64(%d, %s, ...)\n", ver, path); + xprintf(" __xstat64(%d, %s, ...), errno(%d)\n", ver, path, errno); + return -1; + +// int i = strstr(path, "/gfs1/work/bzaztsch/job-output") == path; +// xprintf(" __xstat64(%s), returning -1 WITHOUT actually calling GetAttr, errno(%d), path(%p), strstr(%p)\n", path, errno, path, i); +// return -1; +// //if (overlay_initialized() && (strstr(path, "/gfs1/work/bzaztsch/job-output") == path)) { +// if ((strstr(path, "/gfs1/work/bzaztsch/job-output") == path)) { +// xprintf(" __xstat64(%s), returning -1 WITHOUT actually calling GetAttr, errno(%d)\n", path, errno); +// return -1; + if (overlay_initialized() && is_xtreemfs_path(path)) { + return xtreemfs_stat64(path, buf); + } else { + return ((funcptr___xstat64)libc___xstat64)(ver, path, buf); + } +} + +int __fxstat(int ver, int fd, struct stat *buf) { + initialize_passthrough_if_necessary(); + xprintf(" __fxstat(%d, %d, ...)\n", ver, fd); + + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + return xtreemfs_fstat(fd, buf); + } else { + return ((funcptr___fxstat)libc___fxstat)(ver, fd, buf); + } +} + +int __fxstat64(int ver, int fd, struct stat64 *buf) { + initialize_passthrough_if_necessary(); + xprintf(" __fxstat64(%d, %d, ...)\n", ver, fd); + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + return xtreemfs_fstat64(fd, buf); + } else { + return ((funcptr___fxstat64)libc___fxstat64)(ver, fd, buf); + } +} + +extern int __lxstat(int ver, const char *path, struct stat *buf) { + initialize_passthrough_if_necessary(); + xprintf(" __lxstat(%d, %s, ...)\n", ver, path); + + if (overlay_initialized() && is_xtreemfs_path(path)) { + xprintf(" NOT IMPLEMENTED: lstat for xtreemfs (%s)\n", path); + return -1; + } else { + return ((funcptr___lxstat)libc___lxstat)(ver, path, buf); + } +} + +extern int __lxstat64(int ver, const char *path, struct stat64 *buf) { + initialize_passthrough_if_necessary(); + xprintf(" __lxstat64(%d, %s, ...)\n", ver, path); + + if (overlay_initialized() && is_xtreemfs_path(path)) { + xprintf(" NOT IMPLEMENTED: lstat64 for xtreemfs (%s)\n", path); + return -1; + } else { + return ((funcptr___lxstat64)libc___lxstat64)(ver, path, buf); + } +} + +/* +extern int __fxstatat(int __ver, int __fildes, const char *__filename, struct stat *__stat_buf, int __flag) { + initialize_passthrough_if_necessary(); + xprintf(" __fxstatat\n"); + return -1; +} + +extern int __fxstatat64(int __ver, int __fildes, const char *__filename, struct stat64 *__stat_buf, int __flag) { + initialize_passthrough_if_necessary(); + xprintf(" __fxstatat64\n"); + return -1; +} +*/ + +FILE *fopen(const char *path, const char *mode) { + initialize_passthrough_if_necessary(); + + if (overlay_initialized() && is_xtreemfs_path(path)) { + xprintf(" WARNING: fopen(%s, %s) called for xtreemfs\n", path, mode); + } + + return ((funcptr_fopen)libc_fopen)(path, mode); +} + +int truncate(const char *path, off_t length) { + initialize_passthrough_if_necessary(); + xprintf(" truncate(%s, %ld)\n", path, length); + + if (overlay_initialized() && is_xtreemfs_path(path)) { + xprintf(" NOT IMPLEMENTED: truncate for xtreemfs (%s)\n", path); + return -1; + } else { + return ((funcptr_truncate)libc_truncate)(path, length); + } +} + +int ftruncate(int fd, off_t length) { + initialize_passthrough_if_necessary(); + xprintf(" ftruncate(%d, %ld)\n", fd, length); + + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + xprintf(" NOT IMPLEMENTED: ftruncate for xtreemfs fd(%d)", fd); + return -1; + } else { + return ((funcptr_ftruncate)libc_ftruncate)(fd, length); + } +} + +int setxattr(const char *path, const char *name, const void *value, size_t size, int flags) { + initialize_passthrough_if_necessary(); + xprintf(" setxattr(%s, %s, ...)\n", path, name); + + if (overlay_initialized() && is_xtreemfs_path(path)) { + xprintf(" xtreemfs_setxattr(%s, %s, ...)", path, name); + return xtreemfs_setxattr(path, name, value, size, flags); + } else { + return ((funcptr_setxattr)libattr_setxattr)(path, name, value, size, flags); + } +} + +//int lsetxattr (const char *path, const char *name, +// const void *value, size_t size, int flags); + +int fsetxattr(int fd, const char *name, const void *value, size_t size, int flags) { + initialize_passthrough_if_necessary(); + xprintf(" fsetxattr(%d, %s, ...)\n", fd, name); + + if (overlay_initialized() && is_xtreemfs_fd(fd)) { + xprintf(" NOT IMPLEMENTED: fsetxattr for xtreemfs fd(%d)", fd); + return -1; + } else { + return ((funcptr_fsetxattr)libattr_fsetxattr)(fd, name, value, size, flags); + } +} + + + +} // extern "C" diff --git a/cpp/src/ld_preload/misc.cpp b/cpp/src/ld_preload/misc.cpp new file mode 100644 index 000000000..0a3567a66 --- /dev/null +++ b/cpp/src/ld_preload/misc.cpp @@ -0,0 +1,97 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#include "ld_preload/misc.h" + +#include +#include +#include +#include +#include +#include +#include +#include "libxtreemfs/client.h" +#include "libxtreemfs/file_handle.h" +#include "libxtreemfs/options.h" +#include "libxtreemfs/pbrpc_url.h" +#include "libxtreemfs/system_user_mapping_unix.h" +#include "libxtreemfs/volume_implementation.h" + +xtreemfs::pbrpc::SYSTEM_V_FCNTL ConvertFlagsUnixToXtreemFS(int flags) { + int result = 0; + + #define CHECK(result, flags, unix, proto) { \ + if ((flags & unix) != 0) result |= proto; \ + } + CHECK(result, flags, O_RDONLY , xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_RDONLY); + CHECK(result, flags, O_WRONLY , xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_WRONLY); + CHECK(result, flags, O_RDWR , xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_RDWR); + CHECK(result, flags, O_APPEND , xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_APPEND); + CHECK(result, flags, O_CREAT , xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_CREAT); + CHECK(result, flags, O_TRUNC , xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_TRUNC); + CHECK(result, flags, O_EXCL , xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_EXCL); + CHECK(result, flags, O_SYNC , xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_SYNC); + #ifdef __linux + CHECK(result, flags, O_DSYNC , xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_SYNC); + #endif + + xprintf("flags: %o\nresult: %o\n", flags, result); + return xtreemfs::pbrpc::SYSTEM_V_FCNTL(result); +} + +int TranslateMode(const char* mode) { + if (strcmp(mode, "r") == 0) { + return O_RDONLY; + } else if (strcmp(mode, "r+") == 0) { + return O_RDWR; + } else if (strcmp(mode, "w") == 0) { + return O_WRONLY | O_CREAT | O_TRUNC; + } else if (strcmp(mode, "w+") == 0) { + return O_RDWR | O_CREAT | O_TRUNC; + } else if (strcmp(mode, "a") == 0) { + return O_APPEND | O_WRONLY | O_CREAT; + } else if (strcmp(mode, "a+") == 0) { + return O_APPEND | O_RDWR | O_CREAT; + } + return 0; +} + +int ConvertXtreemFSErrnoToUnix(xtreemfs::pbrpc::POSIXErrno xtreemfs_errno) { + switch (xtreemfs_errno) { + case xtreemfs::pbrpc::POSIX_ERROR_EPERM: + return EPERM; + case xtreemfs::pbrpc::POSIX_ERROR_ENOENT: + return ENOENT; + case xtreemfs::pbrpc::POSIX_ERROR_EINTR: + return EINTR; + case xtreemfs::pbrpc::POSIX_ERROR_EIO: + return EIO; + case xtreemfs::pbrpc::POSIX_ERROR_EAGAIN: + return EAGAIN; + case xtreemfs::pbrpc::POSIX_ERROR_EACCES: + return EACCES; + case xtreemfs::pbrpc::POSIX_ERROR_EEXIST: + return EEXIST; + case xtreemfs::pbrpc::POSIX_ERROR_EXDEV: + return EXDEV; + case xtreemfs::pbrpc::POSIX_ERROR_ENODEV: + return ENODEV; + case xtreemfs::pbrpc::POSIX_ERROR_ENOTDIR: + return ENOTDIR; + case xtreemfs::pbrpc::POSIX_ERROR_EISDIR: + return EISDIR; + case xtreemfs::pbrpc::POSIX_ERROR_EINVAL: + return EINVAL; + case xtreemfs::pbrpc::POSIX_ERROR_ENOTEMPTY: + return ENOTEMPTY; + case xtreemfs::pbrpc::POSIX_ERROR_ENODATA: + return ENODATA; + + default: + return xtreemfs_errno; + } +} diff --git a/cpp/src/ld_preload/open_file_table.cpp b/cpp/src/ld_preload/open_file_table.cpp new file mode 100644 index 000000000..6ca7b71d9 --- /dev/null +++ b/cpp/src/ld_preload/open_file_table.cpp @@ -0,0 +1,101 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#include "ld_preload/open_file_table.h" + +#include + +#include "ld_preload/passthrough.h" + +OpenFile::OpenFile(xtreemfs::FileHandle* fh) : fh_(fh), offset_(0), tmp_file_(NULL), tmp_file_fd_(-1) { +} + +void OpenFile::Initialise() { + tmp_file_ = tmpfile(); + tmp_file_fd_ = fileno(tmp_file_); +} + +void OpenFile::Deinitialise() { + if (tmp_file_ != NULL) { + fclose(tmp_file_); + tmp_file_ = NULL; + tmp_file_fd_ = -1; + } +} + +int OpenFile::GetFileDescriptor() { + return tmp_file_fd_; +} + +OpenFileTable::OpenFileTable() { + // open a temporary file as base for returning valid file descriptors that do no interfere with the passthrough values + tmp_file_ = tmpfile(); + tmp_file_fd_ = fileno(tmp_file_); + next_fd_ = 10000; +} + +OpenFileTable::~OpenFileTable() { + fclose(tmp_file_); +} + +int OpenFileTable::Register(xtreemfs::FileHandle* handle) { + boost::lock_guard guard(mutex_); + //const int fd = ((funcptr_dup)libc_dup)(tmp_file_fd_); // NOTE: calling dup(tmp_file_fd_) would lead to a deadlock here + OpenFile open_file(handle); + open_file.Initialise(); + const int fd = open_file.GetFileDescriptor(); +// const int fd = next_fd_++; + open_files_.insert(std::make_pair(fd, open_file)); + xprintf(" +fd(%d)\n", fd); + return fd; +} + +void OpenFileTable::Unregister(int fd) { + boost::lock_guard guard(mutex_); + FileTable::iterator i = open_files_.find(fd); + if (i == open_files_.end()) { + assert(false); + } else { + i->second.Deinitialise(); + } + open_files_.erase(fd); + //((funcptr_close)libc_close)(fd); // close(fd); + xprintf(" -fd(%d)\n", fd); +} + +OpenFile OpenFileTable::Get(int fd) { + boost::lock_guard guard(mutex_); + FileTable::iterator i = open_files_.find(fd); + if (i == open_files_.end()) { + return OpenFile(NULL); + } else { + return i->second; + } +} + +int OpenFileTable::Set(int fd, xtreemfs::FileHandle* handle) { + xprintf(" +fd(%d)\n", fd); + boost::lock_guard guard(mutex_); + // TODO: fix, see Register + open_files_.insert(std::make_pair(fd, OpenFile(handle))); + return fd; +} + +void OpenFileTable::SetOffset(int fd, uint64_t offset) { + boost::lock_guard guard(mutex_); + FileTable::iterator i = open_files_.find(fd); + if (i == open_files_.end()) { + return; + } else { + i->second.offset_ = offset; + } +} + +bool OpenFileTable::Has(int fd) { + boost::lock_guard guard(mutex_); + return open_files_.find(fd) != open_files_.end(); +} diff --git a/cpp/src/ld_preload/passthrough.cpp b/cpp/src/ld_preload/passthrough.cpp new file mode 100644 index 000000000..6dee886ad --- /dev/null +++ b/cpp/src/ld_preload/passthrough.cpp @@ -0,0 +1,94 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#include "ld_preload/passthrough.h" + +#include +#include +#include + +void* libc; +void* libc_open; +void* libc_close; +void* libc___close; +void* libc_read; +void* libc_write; +void* libc_pread; +void* libc_pwrite; +void* libc_dup; +void* libc_dup2; +void* libc_lseek; +void* libc_stat; +void* libc_fstat; +void* libc___xstat; +void* libc___xstat64; +void* libc___fxstat; +void* libc___fxstat64; +void* libc___lxstat; +void* libc___lxstat64; + +void* libc_fopen; +void* libc_truncate; +void* libc_ftruncate; + +void* libattr; +void* libattr_setxattr; +void* libattr_fsetxattr; + + +// Our "copy" of stdout, because the application might close stdout +// or reuse the first file descriptors for other purposes. +static FILE* fdout = 0; + +FILE* xtreemfs_stdout() { + return fdout; +} + +static void initialize_passthrough() { + xprintf("initialize_passthrough(): Setting up pass-through\n"); + libc = dlopen("libc.so.6", RTLD_LAZY); // TODO: link with correct libc, version vs. 32 bit vs. 64 bit + libc_open = dlsym(libc, "open"); + libc_close = dlsym(libc, "close"); + libc___close = dlsym(libc, "__close"); + libc_read = dlsym(libc, "read"); + libc_write = dlsym(libc, "write"); + libc_pread = dlsym(libc, "pread"); + libc_pwrite = dlsym(libc, "pwrite"); + libc_dup = dlsym(libc, "dup"); + libc_dup2 = dlsym(libc, "dup2"); + libc_lseek = dlsym(libc, "lseek"); + + libc_stat = dlsym(libc, "stat"); + libc_fstat = dlsym(libc, "fstat"); + libc___xstat = dlsym(libc, "__xstat"); + libc___xstat64 = dlsym(libc, "__xstat64"); + libc___fxstat = dlsym(libc, "__fxstat"); + libc___fxstat64 = dlsym(libc, "__fxstat64"); + libc___lxstat = dlsym(libc, "__lxstat"); + libc___lxstat64 = dlsym(libc, "__lxstat64"); + + libc_fopen = dlsym(libc, "fopen"); + libc_truncate = dlsym(libc, "truncate"); + libc_ftruncate = dlsym(libc, "ftruncate"); + + libattr = dlopen("libattr.so.1", RTLD_LAZY); + libattr_setxattr = dlsym(libattr, "setxattr"); + libattr_fsetxattr = dlsym(libattr, "setxattr"); + + int stdout2 = ((funcptr_dup)libc_dup)(1); + + if (stdout2 != -1) { + fdout = fdopen(stdout2, "a"); + } + xprintf("initialize_passthrough(): New stdout %d\n", stdout2); +} + +static pthread_once_t passthrough_initialized = PTHREAD_ONCE_INIT; + +void initialize_passthrough_if_necessary() { + pthread_once(&passthrough_initialized, initialize_passthrough); +} diff --git a/cpp/src/ld_preload/path.cpp b/cpp/src/ld_preload/path.cpp new file mode 100644 index 000000000..fd1d5fe0a --- /dev/null +++ b/cpp/src/ld_preload/path.cpp @@ -0,0 +1,38 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#include "ld_preload/path.h" + +#include + +#include "ld_preload/passthrough.h" + +Path::Path(const char* pathname) : pathname_(pathname), xtreemfs_path_(NULL) { +} + +void Path::SetXtreemFSPrefix(const std::string& prefix) { + GetXtreemFSPrefix() = prefix; +} + +bool Path::IsXtreemFS() { + xprintf("Debug: IsXtreemFS: pathname=%s, prefix=%s\n", pathname_, GetXtreemFSPrefix().c_str()); + return strstr(pathname_, GetXtreemFSPrefix().c_str()) == pathname_; +} + +std::string& Path::GetXtreemFSPrefix() { + static std::string xtreemFSPrefix; + return xtreemFSPrefix; +} + +void Path::Parse() { + xtreemfs_path_ = &pathname_[GetXtreemFSPrefix().size()]; + xprintf("Info: Path::Parse(): path=%s\n", xtreemfs_path_); +} + +const char* Path::GetXtreemFSPath() { + return xtreemfs_path_; +} diff --git a/cpp/src/ld_preload/preload.cpp b/cpp/src/ld_preload/preload.cpp new file mode 100644 index 000000000..6a69a6e70 --- /dev/null +++ b/cpp/src/ld_preload/preload.cpp @@ -0,0 +1,300 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#include "ld_preload/preload.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "libxtreemfs/client.h" +#include "libxtreemfs/file_handle.h" +#include "libxtreemfs/options.h" +#include "libxtreemfs/pbrpc_url.h" +#include "libxtreemfs/system_user_mapping_unix.h" +#include "libxtreemfs/volume_implementation.h" +#include "libxtreemfs/xtreemfs_exception.h" +#include "util/logging.h" + +#include "ld_preload/environment.h" +#include "ld_preload/misc.h" +#include "ld_preload/passthrough.h" + +static Environment* env = NULL; + +/** + * The environment should be initialised exactly once during shared library initialisation. + * Prior to that, all operations work in pass-through mode. + * To overcome undefined global initialisation order, we use a local static variable. + * This variable is accesd by a single writer (lib (de)initialisation), and multiple readers (exported operations). + * Writer: toggle == true (toggles is_initialised) + * Reader: toggle == false (returns the current value of is_initialised) + * + * NOTE: pthread_once initialisation for the overlay leads to a deadlock due to a re-entry situation: + * - environment ctor is called the first time via pthread_once + * - which leads a write somewhere (probably to a socket during client initialisation) + * - which then enters the pthread_once initialisation mechanism again and blocks deadlocks + */ +bool overlay_initialized(bool toggle /* defaults to: false */) { + static boost::atomic is_initilized(false); + + // writer + if(toggle) { + return is_initilized.exchange(!is_initilized.load()); + } + + // reader + return is_initilized.load(); +} + +void initialize_env() { + env = new Environment(); + xprintf("env initialised\n"); +} + +void deinitialize_env() { + xprintf("deinitialize_env()\n"); + delete env; + xprintf("env deinitialised\n"); +} + +Environment* get_env() { + return env; +} + +bool is_xtreemfs_fd(int fd) { + return env->open_file_table_.Has(fd); +} + +bool is_xtreemfs_path(const char *path) { + Path path_obj(path); + return path_obj.IsXtreemFS(); +} + +/* Library constructor */ +void +__attribute__((constructor)) +init_preload(void) { + initialize_passthrough_if_necessary(); + xprintf("library initialisation 1\n"); + xprintf("library initialisation 2\n"); + initialize_env(); + xprintf("library initialisation 3\n"); + bool ret = overlay_initialized(true); // activate overlay filesystem + xprintf("library initialised! %d\n", ret); +} + +/* Library destructor */ +void +__attribute__((destructor)) +deinit_preload(void) { + xprintf("library deinitialisation started.\n"); + bool ret = overlay_initialized(true); // deactivate overlay filesystem + deinitialize_env(); + xprintf("library deinitialised! %d\n", ret); +} + +/* XtreemFS equivalents to POSIX file system calls */ + +int xtreemfs_open(const char* pathname, int flags, int mode) { + xprintf(" open on xtreemfs(%s)\n", pathname); + Path path(pathname); + path.Parse(); + + xtreemfs::Volume* volume = env->GetVolume(); + const xtreemfs::pbrpc::SYSTEM_V_FCNTL xtreem_flags = ConvertFlagsUnixToXtreemFS(flags); + + xtreemfs::FileHandle* handle = volume->OpenFile( + env->user_creds_, + path.GetXtreemFSPath(), + xtreem_flags, + mode); + + int fd = env->open_file_table_.Register(handle); + xprintf(" open on xtreemfs(%s) -> %d\n", pathname, fd); + return fd; +} + +int xtreemfs_close(int fd) { + xprintf(" close xtreemfs(%d)\n", fd); + OpenFile handle = env->open_file_table_.Get(fd); + env->open_file_table_.Unregister(fd); + //handle.fh_->Flush(); // implicit by close + handle.fh_->Close(); // TODO: error code + return 0; +} + +uint64_t xtreemfs_pread(int fd, void* buf, uint64_t nbyte, uint64_t offset) { + xprintf(" read xtreemfs(%d)\n", fd); + OpenFile handle = env->open_file_table_.Get(fd); + return handle.fh_->Read((char*)buf, nbyte, offset); +} + +uint64_t xtreemfs_read(int fd, void* buf, uint64_t nbyte) { + xprintf(" read xtreemfs(%d)\n", fd); + OpenFile handle = env->open_file_table_.Get(fd); + int read = handle.fh_->Read((char*)buf, nbyte, handle.offset_); + env->open_file_table_.SetOffset(fd, handle.offset_ + read); + return read; +} + +uint64_t xtreemfs_write(int fd, const void* buf, uint64_t nbyte) { + xprintf(" write xtreemfs(%d)\n", fd); + OpenFile handle = env->open_file_table_.Get(fd); + int written = handle.fh_->Write((char*)buf, nbyte, handle.offset_); + env->open_file_table_.SetOffset(fd, handle.offset_ + written); + return written; +} + +int xtreemfs_dup2(int oldfd, int newfd) { + xprintf(" dup2 xtreemfs(%d, %d)\n", oldfd, newfd); + OpenFile handle = env->open_file_table_.Get(oldfd); + if (handle.fh_ == NULL) { + xprintf(" dup2 error(%d, %d)\n", oldfd, newfd); + return -1; + } + xprintf(" dup2 fffxtreemfs(%d, %d)\n", oldfd, newfd); + xtreemfs::FileHandle* new_handle; // = handle.fh_->Duplicate(); // TODO: implement Duplicate + + xprintf(" dup2 yxtreemfs(%d, %d)\n", oldfd, newfd); + env->open_file_table_.Set(newfd, new_handle); + return newfd; +} + +int xtreemfs_dup(int fd) { + xprintf(" dup xtreemfs(%d)\n", fd); + OpenFile handle = env->open_file_table_.Get(fd); + xtreemfs::FileHandle* new_handle; // = handle.fh_->Duplicate(); // TODO: implement Duplicate + return env->open_file_table_.Register(new_handle); +} + +off_t xtreemfs_lseek(int fd, off_t offset, int mode) { + xprintf(" lseek xtreemfs(%d)\n", fd); + OpenFile handle = env->open_file_table_.Get(fd); + + switch (mode) { + case SEEK_SET: + env->open_file_table_.SetOffset(fd, offset); + return offset; + case SEEK_CUR: + env->open_file_table_.SetOffset(fd, handle.offset_ + offset); + return handle.offset_ + offset; + case SEEK_END: + env->open_file_table_.SetOffset(fd, offset); // TODO + return offset; + } + return EINVAL; +} + +/* T should be "struct stat" or "struct stat64" */ +template +static int xtreemfs_stat_impl(const char *pathname, T *buf) { + Path path(pathname); + path.Parse(); + xtreemfs::pbrpc::Stat stat; + + try { + env->GetVolume()->GetAttr(env->user_creds_, path.GetXtreemFSPath(), &stat); + } catch(const xtreemfs::PosixErrorException& e) { + errno = ConvertXtreemFSErrnoToUnix(e.posix_errno()); + xprintf(" xtreemfs_stat_impl(%s), returning -1, errno(%d)\n", pathname, errno); + return -1; + } catch(const xtreemfs::XtreemFSException& e) { + xprintf(" xtreemfs_stat_impl(%s), returning -1, errno(%d)\n", pathname, errno); + errno = EIO; + return -1; + } catch(const std::exception& e) { + xprintf("A non-XtreemFS exception occurred: %s", std::string(e.what()).c_str()); + xprintf(" xtreemfs_stat_impl(%s), returning -1, errno(%d)\n", pathname, errno); + errno = EIO; + return -1; + } + + ConvertXtreemFSStatToUnix(stat, buf, env->GetSystemUserMapping()); + xprintf(" xtreemfs_fstat_impl(%s), returning 0\n", pathname); + return 0; +} + +/* T should be "struct stat" or "struct stat64" */ +template +static int xtreemfs_fstat_impl(int fd, T *buf) { + OpenFile handle = env->open_file_table_.Get(fd); + xtreemfs::pbrpc::Stat stat; + + try { + handle.fh_->GetAttr(env->user_creds_, &stat); + } catch(const xtreemfs::PosixErrorException& e) { + errno = ConvertXtreemFSErrnoToUnix(e.posix_errno()); + return -1; + } catch(const xtreemfs::XtreemFSException& e) { + errno = EIO; + return -1; + } catch(const std::exception& e) { + xprintf("A non-XtreemFS exception occurred: %s", std::string(e.what()).c_str()); + errno = EIO; + return -1; + } + + ConvertXtreemFSStatToUnix(stat, buf, env->GetSystemUserMapping()); + return 0; +} + + +int xtreemfs_stat(const char *pathname, struct stat *buf) { + xprintf(" xtreemfs_stat(%s)\n", pathname); + return xtreemfs_stat_impl(pathname, buf); +} + +int xtreemfs_stat64(const char *pathname, struct stat64 *buf) { + xprintf(" xtreemfs_stat64(%s)\n", pathname); + return xtreemfs_stat_impl(pathname, buf); +} + +int xtreemfs_fstat(int fd, struct stat *buf) { + xprintf(" xtreemfs_fstat(%d)\n", fd); + return xtreemfs_fstat_impl(fd, buf); +} + +int xtreemfs_fstat64(int fd, struct stat64 *buf) { + xprintf(" xtreemfs_fstat64(%d)\n", fd); + return xtreemfs_fstat_impl(fd, buf); +} + + +int xtreemfs_setxattr(const char *pathname, const char *name, const void *value, size_t size, int flags) { + Path path(pathname); + path.Parse(); + + try { + env->GetVolume()->SetXAttr(env->user_creds_, path.GetXtreemFSPath(), std::string(name), + std::string(static_cast(value), size), static_cast(flags)); + } catch(const xtreemfs::PosixErrorException& e) { + errno = ConvertXtreemFSErrnoToUnix(e.posix_errno()); + return -1; + } catch(const xtreemfs::XtreemFSException& e) { + errno = EIO; + return -1; + } catch(const std::exception& e) { + xprintf("A non-XtreemFS exception occurred: %s", std::string(e.what()).c_str()); + errno = EIO; + return -1; + } + return 0; +} + +int xtreemfs_fsetxattr(int fd, const char *name, const void *value, size_t size, int flags) { +// OpenFile handle = env->open_file_table_.Get(fd); +// env->GetVolume()->SetXAttr(env->user_creds_, path.GetXtreemFSPath(), name, value, flags); +// +// handle.fh_->SetX + return 0; +} diff --git a/cpp/src/ld_preload/preload_options.cpp b/cpp/src/ld_preload/preload_options.cpp new file mode 100644 index 000000000..e179679c8 --- /dev/null +++ b/cpp/src/ld_preload/preload_options.cpp @@ -0,0 +1,94 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#include "ld_preload/preload_options.h" + +#include + +#include +#include +#include +#include +#include + +#include "libxtreemfs/helper.h" +#include "libxtreemfs/xtreemfs_exception.h" + +#include "ld_preload/passthrough.h" + +using namespace std; + +namespace po = boost::program_options; +namespace style = boost::program_options::command_line_style; + +namespace xtreemfs { + +PreloadOptions::PreloadOptions() : Options(), preload_descriptions_("Preload Options") { + // TODO: + //preload_descriptions_.add_options() +} + +void PreloadOptions::ParseCommandLine(int argc, char** argv) { + // Parse general options and retrieve unregistered options for own parsing. + vector options = Options::ParseCommandLine(argc, argv); + // Read Volume URL and mount point from command line. + po::positional_options_description p; + p.add("xtreemfs_url", 1); + p.add("mount_point", 1); + po::options_description mount("Mount options"); + mount.add_options() + ("xtreemfs_url", po::value(&xtreemfs_url), "DIR to use (without volume)") + ("mount_point", po::value(&mount_point), "where to virtually mount the volume") + ; + // Parse command line. + po::options_description all_descriptions_; + all_descriptions_.add(mount).add(preload_descriptions_); + po::variables_map vm; + try { + po::store(po::command_line_parser(options) + .options(all_descriptions_) + .positional(p) + .style(style::default_style & ~style::allow_guessing) + .run(), vm); + po::notify(vm); + } catch(const std::exception& e) { + // Rethrow boost errors due to invalid command line parameters. + throw InvalidCommandLineParametersException(string(e.what())); + } + // Do not check parameters if the help shall be shown. + if (show_help || empty_arguments_list || show_version) { + return; + } + + // Extract information from command line. + try { + Options::ParseURL(kDIR); + } catch(const xtreemfs::XtreemFSException& e) { + xprintf("excpetion\n"); + cout << "ParseURL, error: " << e.what() << endl << endl; + } + + // Check for required parameters. + if (service_addresses.empty()) { + throw InvalidCommandLineParametersException("missing DIR host."); + } + if (volume_name.empty()) { + throw InvalidCommandLineParametersException("missing volume name."); + } + if (mount_point.empty()) { + throw InvalidCommandLineParametersException("missing virtual mount point."); + } +} + +std::string PreloadOptions::ShowCommandLineHelp() { + ostringstream stream; + stream << preload_descriptions_ + << Options::ShowCommandLineHelp(); + return stream.str(); +} + +} // namespace xtreemfs diff --git a/cpp/test/ld_preload/cp.sh b/cpp/test/ld_preload/cp.sh new file mode 100755 index 000000000..5164b9518 --- /dev/null +++ b/cpp/test/ld_preload/cp.sh @@ -0,0 +1,4 @@ +#!/bin/bash +BUILD_DIR="../../build" +#LD_DEBUG=all +XTREEMFS_PRELOAD_OPTIONS="--log-level DEBUG demo.xtreemfs.org/demo /xtreemfs" LD_PRELOAD=$BUILD_DIR"/libxtreemfs_preload.so" cp $1 $2 diff --git a/cpp/test/ld_preload/preload_test.cpp b/cpp/test/ld_preload/preload_test.cpp new file mode 100644 index 000000000..369240018 --- /dev/null +++ b/cpp/test/ld_preload/preload_test.cpp @@ -0,0 +1,71 @@ +/* + * Copyright (c) 2014 by Matthias Noack, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +int main(int argc, char* argv[]) { + + const char default_path[] = "/xtreemfs/temp_b.file"; + const char* path = default_path; + + // take path from command line if specified + if (argc > 1) { + path = argv[1]; + } + + // open() file + std::cout << "TEST: open()" << std::endl; + //FILE* file_a = std::fopen("/xtreemfs/demo/temp_a.file", "w"); + int file_b = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0777); + //int file_b = open("/xtreemfs/demo/temp.file", O_WRONLY | O_CREAT); // this is wrong by open specification, mode is not set, but O_CREAT is + + const char data_to_write[] = "Hello World!"; + char data_to_read[256] = ""; + + ssize_t write_ret = write(file_b, (void*)data_to_write, sizeof(data_to_write)); + + lseek(file_b, 0, SEEK_SET); + + // close() file + close(file_b); + + // open() same file for reading + file_b = open(path, O_RDONLY, 0); + + ssize_t read_ret = read(file_b, (void*)data_to_read, sizeof(data_to_write)); + + // close() file + std::cout << "TEST: close()" << std::endl; + //std::fclose(file_a); + close(file_b); + + // compare written and read + if (0 == std::strcmp(data_to_write, data_to_read)) + std::cout << "PASS" << std::endl; + else + std::cout << "FAIL" << std::endl; + + // stat(), fstat() + + // access() + + // ftruncate() + + // getcwd() + + std::cout << "TEST: done()" << std::endl; + + return 0; +} diff --git a/cpp/test/ld_preload/preload_test.sh b/cpp/test/ld_preload/preload_test.sh new file mode 100755 index 000000000..10b237b15 --- /dev/null +++ b/cpp/test/ld_preload/preload_test.sh @@ -0,0 +1,4 @@ +#!/bin/bash +BUILD_DIR="../../build" +#LD_DEBUG=all +XTREEMFS_PRELOAD_OPTIONS="--log-level ERR demo.xtreemfs.org/demo /xtreemfs" LD_PRELOAD=$BUILD_DIR"/libxtreemfs_preload.so" $BUILD_DIR/preload_test $1 diff --git a/cpp/test/ld_preload/setfattr.sh b/cpp/test/ld_preload/setfattr.sh new file mode 100755 index 000000000..3dca82bd5 --- /dev/null +++ b/cpp/test/ld_preload/setfattr.sh @@ -0,0 +1,4 @@ +#!/bin/bash +BUILD_DIR="../../build" +#LD_DEBUG=all +XTREEMFS_PRELOAD_OPTIONS="--log-level DEBUG demo.xtreemfs.org/demo /xtreemfs" LD_PRELOAD=$BUILD_DIR"/libxtreemfs_preload.so" setfattr "$@" -- GitLab From 6d34509134e15fa759752b786f030757f0330d0f Mon Sep 17 00:00:00 2001 From: noma Date: Mon, 11 Aug 2014 18:44:46 +0200 Subject: [PATCH 077/192] client: minor xtfsutil fix: when open() is called with O_CREAT, the third mode argument must be specified. --- cpp/src/xtfsutil/xtfsutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/xtfsutil/xtfsutil.cpp b/cpp/src/xtfsutil/xtfsutil.cpp index f72d7bead..fd8366b55 100644 --- a/cpp/src/xtfsutil/xtfsutil.cpp +++ b/cpp/src/xtfsutil/xtfsutil.cpp @@ -42,7 +42,7 @@ bool executeOperation(const string& xctl_file, Json::FastWriter writer; const string json_out = writer.write(request); - int fd = open(xctl_file.c_str(), O_CREAT | O_RDWR); + int fd = open(xctl_file.c_str(), O_CREAT | O_RDWR, S_IRUSR | S_IWUSR); if (fd == -1) { cerr << "Cannot open xctl file: " << strerror(errno) << endl; unlink(xctl_file.c_str()); -- GitLab From 1093a9524a55b976a9079c68e0ec3e1c92f9525c Mon Sep 17 00:00:00 2001 From: noma Date: Tue, 12 Aug 2014 17:37:51 +0200 Subject: [PATCH 078/192] client: Some minor changes for the LD_PRELOAD library to avoid possibly uninitialised global state. --- cpp/include/libxtreemfs/async_write_handler.h | 10 +- .../libxtreemfs/client_implementation.h | 7 + cpp/include/libxtreemfs/pbrpc_url.h | 22 +- cpp/src/libxtreemfs/async_write_handler.cpp | 12 +- cpp/src/libxtreemfs/client_implementation.cpp | 15 +- cpp/src/libxtreemfs/file_info.cpp | 3 +- cpp/src/libxtreemfs/options.cpp | 4 +- cpp/src/libxtreemfs/pbrpc_url.cpp | 13 +- cpp/test/common/test_rpc_server_dir.cpp | 2 +- .../client_implementation_test.cpp | 2 +- cpp/test/libxtreemfs/pbprpc_url_test.cpp | 6 +- cpp/thirdparty/protobuf-2.5.0/configure | 267 +++++++++--------- 12 files changed, 194 insertions(+), 169 deletions(-) diff --git a/cpp/include/libxtreemfs/async_write_handler.h b/cpp/include/libxtreemfs/async_write_handler.h index 95e7ecc7e..0f4be0610 100644 --- a/cpp/include/libxtreemfs/async_write_handler.h +++ b/cpp/include/libxtreemfs/async_write_handler.h @@ -65,7 +65,8 @@ class AsyncWriteHandler xtreemfs::pbrpc::OSDServiceClient* osd_service_client, const xtreemfs::pbrpc::Auth& auth_bogus, const xtreemfs::pbrpc::UserCredentials& user_credentials_bogus, - const Options& volume_options); + const Options& volume_options, + util::SynchronizedQueue& callback_queue_); ~AsyncWriteHandler(); @@ -91,7 +92,7 @@ class AsyncWriteHandler /** This static method runs in its own thread and does the real callback * handling to avoid load and blocking on the RPC thread. */ - static void ProcessCallbacks(); + static void ProcessCallbacks(util::SynchronizedQueue& callback_queue); private: /** Possible states of this object. */ @@ -290,9 +291,8 @@ class AsyncWriteHandler /** The write buffer to whom the worst_error_ belongs. */ AsyncWriteBuffer* worst_write_buffer_; - /** Holds the Callbacks enqueued be CallFinished() (producer). They are - * processed by ProcessCallbacks(consumer), running in its own thread. */ - static util::SynchronizedQueue callback_queue; + /** Used by CallFinished (enqueue) */ + util::SynchronizedQueue& callback_queue_; }; } // namespace xtreemfs diff --git a/cpp/include/libxtreemfs/client_implementation.h b/cpp/include/libxtreemfs/client_implementation.h index eb14f6025..caf7d8727 100644 --- a/cpp/include/libxtreemfs/client_implementation.h +++ b/cpp/include/libxtreemfs/client_implementation.h @@ -19,6 +19,8 @@ #include "libxtreemfs/simple_uuid_iterator.h" #include "libxtreemfs/typedefs.h" #include "libxtreemfs/uuid_resolver.h" +#include "util/synchronized_queue.h" +#include "libxtreemfs/async_write_handler.h" namespace boost { class thread; @@ -134,6 +136,8 @@ class ClientImplementation : public Client { const pbrpc::VivaldiCoordinates& GetVivaldiCoordinates() const; + util::SynchronizedQueue& GetAsyncWriteCallbackQueue(); + private: /** True if Shutdown() was executed. */ bool was_shutdown_; @@ -167,6 +171,9 @@ class ClientImplementation : public Client { /** Thread that handles the callbacks for asynchronous writes. */ boost::scoped_ptr async_write_callback_thread_; + /** Holds the Callbacks enqueued be CallFinished() (producer). They are + * processed by ProcessCallbacks(consumer), running in its own thread. */ + util::SynchronizedQueue async_write_callback_queue_; FRIEND_TEST(rpc::ClientTestFastLingerTimeout, LingerTests); FRIEND_TEST(rpc::ClientTestFastLingerTimeoutConnectTimeout, LingerTests); diff --git a/cpp/include/libxtreemfs/pbrpc_url.h b/cpp/include/libxtreemfs/pbrpc_url.h index 49235e315..d672ad6f1 100644 --- a/cpp/include/libxtreemfs/pbrpc_url.h +++ b/cpp/include/libxtreemfs/pbrpc_url.h @@ -20,11 +20,6 @@ namespace xtreemfs { class PBRPCURL { public: - static const std::string SCHEME_PBRPC; - static const std::string SCHEME_PBRPCG; - static const std::string SCHEME_PBRPCS; - static const std::string SCHEME_PBRPCU; - PBRPCURL(); /** Parses the URL of the form [scheme://]host[:port][/volume]. @@ -50,6 +45,23 @@ class PBRPCURL { ServiceAddresses GetAddresses() const; + static const std::string& GetSchemePBRPC() { + static const std::string SCHEME_PBRPC_STRING = "pbrpc"; + return SCHEME_PBRPC_STRING; + } + static const std::string& GetSchemePBRPCS() { + static const std::string SCHEME_PBRPCS_STRING = "pbrpcs"; + return SCHEME_PBRPCS_STRING; + } + static const std::string& GetSchemePBRPCG() { + static const std::string SCHEME_PBRPCG_STRING = "pbrpcg"; + return SCHEME_PBRPCG_STRING; + } + static const std::string GetSchemePBRPCU() { + static const std::string SCHEME_PBRPCU_STRING = "pbrpcu"; + return SCHEME_PBRPCU_STRING; + } + private: /** List of servers (hostnames only) */ typedef std::list ServerList; diff --git a/cpp/src/libxtreemfs/async_write_handler.cpp b/cpp/src/libxtreemfs/async_write_handler.cpp index 7a4c2fcc9..6821dff49 100644 --- a/cpp/src/libxtreemfs/async_write_handler.cpp +++ b/cpp/src/libxtreemfs/async_write_handler.cpp @@ -32,8 +32,6 @@ using namespace xtreemfs::pbrpc; namespace xtreemfs { -util::SynchronizedQueue AsyncWriteHandler::callback_queue; - AsyncWriteHandler::AsyncWriteHandler( FileInfo* file_info, UUIDIterator* uuid_iterator, @@ -41,7 +39,8 @@ AsyncWriteHandler::AsyncWriteHandler( xtreemfs::pbrpc::OSDServiceClient* osd_service_client, const xtreemfs::pbrpc::Auth& auth_bogus, const xtreemfs::pbrpc::UserCredentials& user_credentials_bogus, - const Options& volume_options) + const Options& volume_options, + util::SynchronizedQueue& callback_queue) : state_(IDLE), pending_bytes_(0), pending_writes_(0), @@ -64,7 +63,8 @@ AsyncWriteHandler::AsyncWriteHandler( max_write_tries_(volume_options.max_write_tries), redirected_(false), fast_redirect_(false), - worst_write_buffer_(0) { + worst_write_buffer_(0), + callback_queue_(callback_queue) { assert(file_info && uuid_iterator && uuid_resolver && osd_service_client); } @@ -264,7 +264,7 @@ bool AsyncWriteHandler::WaitForPendingWritesNonBlocking( } } -void AsyncWriteHandler::ProcessCallbacks() { +void AsyncWriteHandler::ProcessCallbacks(util::SynchronizedQueue& callback_queue) { while (!(boost::this_thread::interruption_requested() && boost::this_thread::interruption_enabled())) { const CallbackEntry& entry = callback_queue.Dequeue(); @@ -291,7 +291,7 @@ void AsyncWriteHandler::CallFinished( uint32_t data_length, xtreemfs::pbrpc::RPCHeader::ErrorResponse* error, void* context) { - callback_queue.Enqueue(CallbackEntry(this, + callback_queue_.Enqueue(CallbackEntry(this, response_message, data, data_length, diff --git a/cpp/src/libxtreemfs/client_implementation.cpp b/cpp/src/libxtreemfs/client_implementation.cpp index 658794d3b..32614d9d6 100644 --- a/cpp/src/libxtreemfs/client_implementation.cpp +++ b/cpp/src/libxtreemfs/client_implementation.cpp @@ -100,10 +100,10 @@ void DIRUUIDResolver::UUIDToAddressWithOptions(const std::string& uuid, AddressMapping found_address_mapping; for (int i = 0; i < set->mappings_size(); i++) { const AddressMapping& am = set->mappings(i); - if (am.protocol() != PBRPCURL::SCHEME_PBRPC - && am.protocol() != PBRPCURL::SCHEME_PBRPCS - && am.protocol() != PBRPCURL::SCHEME_PBRPCG - && am.protocol() != PBRPCURL::SCHEME_PBRPCU) { + if (am.protocol() != PBRPCURL::GetSchemePBRPC() + && am.protocol() != PBRPCURL::GetSchemePBRPCS() + && am.protocol() != PBRPCURL::GetSchemePBRPCG() + && am.protocol() != PBRPCURL::GetSchemePBRPCU()) { Logging::log->getLog(LEVEL_ERROR) << "Unknown scheme: " << am.protocol() << endl; response->DeleteBuffers(); @@ -355,7 +355,8 @@ void ClientImplementation::Start() { } async_write_callback_thread_.reset( - new boost::thread(&xtreemfs::AsyncWriteHandler::ProcessCallbacks)); + new boost::thread(&xtreemfs::AsyncWriteHandler::ProcessCallbacks, + boost::ref(async_write_callback_queue_))); } void ClientImplementation::Shutdown() { @@ -559,4 +560,8 @@ const VivaldiCoordinates& ClientImplementation::GetVivaldiCoordinates() const { return vivaldi_->GetVivaldiCoordinates(); } +util::SynchronizedQueue& ClientImplementation::GetAsyncWriteCallbackQueue() { + return async_write_callback_queue_; +} + } // namespace xtreemfs diff --git a/cpp/src/libxtreemfs/file_info.cpp b/cpp/src/libxtreemfs/file_info.cpp index 27c466eca..f420f748a 100644 --- a/cpp/src/libxtreemfs/file_info.cpp +++ b/cpp/src/libxtreemfs/file_info.cpp @@ -54,7 +54,8 @@ FileInfo::FileInfo( volume->osd_service_client(), volume->auth_bogus(), volume->user_credentials_bogus(), - volume->volume_options()) { + volume->volume_options(), + client->GetAsyncWriteCallbackQueue()) { #ifdef _MSC_VER #pragma warning(pop) #endif // _MSC_VER diff --git a/cpp/src/libxtreemfs/options.cpp b/cpp/src/libxtreemfs/options.cpp index 6568f7d5e..0de728699 100644 --- a/cpp/src/libxtreemfs/options.cpp +++ b/cpp/src/libxtreemfs/options.cpp @@ -512,7 +512,7 @@ void Options::ParseURL(XtreemFSServiceType service_type) { } PBRPCURL url_parser; - url_parser.ParseURL(xtreemfs_url, PBRPCURL::SCHEME_PBRPC, default_port); + url_parser.ParseURL(xtreemfs_url, PBRPCURL::GetSchemePBRPC(), default_port); volume_name = url_parser.volume(); service_addresses = url_parser.GetAddresses(); protocol = url_parser.scheme(); @@ -567,7 +567,7 @@ xtreemfs::rpc::SSLOptions* Options::GenerateSSLOptions() const { ssl_pem_key_path, ssl_pem_cert_path, ssl_pem_key_pass, // PEM. ssl_pkcs12_path, ssl_pkcs12_pass, // PKCS12. boost::asio::ssl::context::pem, - grid_ssl || protocol == PBRPCURL::SCHEME_PBRPCG); + grid_ssl || protocol == PBRPCURL::GetSchemePBRPCG()); } #else opts = new xtreemfs::rpc::SSLOptions(); diff --git a/cpp/src/libxtreemfs/pbrpc_url.cpp b/cpp/src/libxtreemfs/pbrpc_url.cpp index f47c9e13b..8755c0771 100644 --- a/cpp/src/libxtreemfs/pbrpc_url.cpp +++ b/cpp/src/libxtreemfs/pbrpc_url.cpp @@ -18,11 +18,6 @@ using namespace std; namespace xtreemfs { -const std::string PBRPCURL::SCHEME_PBRPC = "pbrpc"; -const std::string PBRPCURL::SCHEME_PBRPCS = "pbrpcs"; -const std::string PBRPCURL::SCHEME_PBRPCG = "pbrpcg"; -const std::string PBRPCURL::SCHEME_PBRPCU = "pbrpcu"; - PBRPCURL::PBRPCURL() : scheme_(""), servers_(), ports_(), volume_("") {} void PBRPCURL::ParseURL(const std::string& original_url, @@ -48,10 +43,10 @@ void PBRPCURL::ParseURL(const std::string& original_url, if (scheme_pos != string::npos) { // scheme specified scheme = address.substr(0, scheme_pos); - if ((scheme != SCHEME_PBRPC) - && (scheme != SCHEME_PBRPCS) - && (scheme != SCHEME_PBRPCG) - && (scheme != SCHEME_PBRPCU)) { + if ((scheme != GetSchemePBRPC()) + && (scheme != GetSchemePBRPCS()) + && (scheme != GetSchemePBRPCG()) + && (scheme != GetSchemePBRPCU())) { throw InvalidURLException(scheme_ + " is not a valid scheme"); } diff --git a/cpp/test/common/test_rpc_server_dir.cpp b/cpp/test/common/test_rpc_server_dir.cpp index 36bc88363..55676ef7c 100644 --- a/cpp/test/common/test_rpc_server_dir.cpp +++ b/cpp/test/common/test_rpc_server_dir.cpp @@ -129,7 +129,7 @@ google::protobuf::Message* TestRPCServerDIR::GetAddressMappingOperation( size_t uuid_split_pos = rq->uuid().find_last_of(":"); mapping->set_uuid(rq->uuid()); mapping->set_version(0); - mapping->set_protocol(PBRPCURL::SCHEME_PBRPC); + mapping->set_protocol(PBRPCURL::GetSchemePBRPC()); mapping->set_address(rq->uuid().substr(0, uuid_split_pos)); mapping->set_port(atoi(rq->uuid().substr(uuid_split_pos+1).c_str())); mapping->set_match_network("*"); diff --git a/cpp/test/libxtreemfs/client_implementation_test.cpp b/cpp/test/libxtreemfs/client_implementation_test.cpp index 536dfd127..4acd9406a 100644 --- a/cpp/test/libxtreemfs/client_implementation_test.cpp +++ b/cpp/test/libxtreemfs/client_implementation_test.cpp @@ -101,7 +101,7 @@ class ClientImplementationTest : public ::testing::Test { AddressMapping mapping; mapping.set_uuid(kTestUUID_); mapping.set_version(0); - mapping.set_protocol(PBRPCURL::SCHEME_PBRPC); + mapping.set_protocol(PBRPCURL::GetSchemePBRPC()); mapping.set_address(hostname); mapping.set_port(kTestPort_); mapping.set_match_network(match_network); diff --git a/cpp/test/libxtreemfs/pbprpc_url_test.cpp b/cpp/test/libxtreemfs/pbprpc_url_test.cpp index 7aea0eed1..e7b3e0e08 100644 --- a/cpp/test/libxtreemfs/pbprpc_url_test.cpp +++ b/cpp/test/libxtreemfs/pbprpc_url_test.cpp @@ -27,7 +27,7 @@ class PBRPCURLTest : public ::testing::Test { initialize_logger(LEVEL_WARN); volume_name = "test"; - default_scheme = PBRPCURL::SCHEME_PBRPC; + default_scheme = PBRPCURL::GetSchemePBRPC(); default_port = DIR_PBRPC_PORT_DEFAULT; servers.push_back("localhost"); @@ -66,7 +66,7 @@ TEST_F(PBRPCURLTest, URLWithOneAddressAndVolume) { EXPECT_FALSE(addresses.empty()); EXPECT_EQ(volume_name, pbrpc_url_->volume()); - EXPECT_EQ(PBRPCURL::SCHEME_PBRPC, pbrpc_url_->scheme()); + EXPECT_EQ(PBRPCURL::GetSchemePBRPC(), pbrpc_url_->scheme()); stringstream expected_address; expected_address << "localhost:" << DIR_PBRPC_PORT_DEFAULT; @@ -214,7 +214,7 @@ TEST_F(PBRPCURLTest, URLWithMultipleAddressesProtocolsAndVolume) { TEST_F(PBRPCURLTest, URLAddressesWithDifferentProtocols) { EXPECT_THROW({ pbrpc_url_->ParseURL("pbrpc://localhost,pbrpcg://remote/" + volume_name, - PBRPCURL::SCHEME_PBRPC, + PBRPCURL::GetSchemePBRPC(), DIR_PBRPC_PORT_DEFAULT); }, InvalidURLException); } diff --git a/cpp/thirdparty/protobuf-2.5.0/configure b/cpp/thirdparty/protobuf-2.5.0/configure index 80443b2fd..9092afde3 100755 --- a/cpp/thirdparty/protobuf-2.5.0/configure +++ b/cpp/thirdparty/protobuf-2.5.0/configure @@ -1,13 +1,11 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for Protocol Buffers 2.5.0. +# Generated by GNU Autoconf 2.69 for Protocol Buffers 2.5.0. # # Report bugs to . # # -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software -# Foundation, Inc. +# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation @@ -136,6 +134,31 @@ export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH +# Use a proper internal environment variable to ensure we don't fall + # into an infinite loop, continuously re-executing ourselves. + if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then + _as_can_reexec=no; export _as_can_reexec; + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +as_fn_exit 255 + fi + # We don't want this to propagate to other subprocesses. + { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh @@ -169,7 +192,8 @@ if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi -test x\$exitcode = x0 || exit 1" +test x\$exitcode = x0 || exit 1 +test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && @@ -222,21 +246,25 @@ IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : - # We cannot yet assume a decent shell, so we have to provide a - # neutralization value for shells without unset; and this also - # works around shells that cannot unset nonexistent variables. - # Preserve -v and -x to the replacement shell. - BASH_ENV=/dev/null - ENV=/dev/null - (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV - export CONFIG_SHELL - case $- in # (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; - esac - exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} + export CONFIG_SHELL + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +exit 255 fi if test x$as_have_required = xno; then : @@ -339,6 +367,14 @@ $as_echo X"$as_dir" | } # as_fn_mkdir_p + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take @@ -460,6 +496,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + # If we had to re-execute with $CONFIG_SHELL, we're ensured to have + # already done that, so ensure we don't try to do so again and fall + # in an infinite loop. This has already happened in practice. + _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). @@ -494,16 +534,16 @@ if (echo >conf$$.file) 2>/dev/null; then # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. + # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' + as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else - as_ln_s='cp -p' + as_ln_s='cp -pR' fi else - as_ln_s='cp -p' + as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null @@ -515,28 +555,8 @@ else as_mkdir_p=false fi -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in #( - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x +as_test_x='test -x' +as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" @@ -1236,8 +1256,6 @@ target=$target_alias if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe - $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi @@ -1506,9 +1524,9 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF Protocol Buffers configure 2.5.0 -generated by GNU Autoconf 2.68 +generated by GNU Autoconf 2.69 -Copyright (C) 2010 Free Software Foundation, Inc. +Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF @@ -1869,7 +1887,7 @@ $as_echo "$ac_try_echo"; } >&5 test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext + test -x conftest$ac_exeext }; then : ac_retval=0 else @@ -2013,7 +2031,7 @@ $as_echo "$ac_try_echo"; } >&5 test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || - $as_test_x conftest$ac_exeext + test -x conftest$ac_exeext }; then : ac_retval=0 else @@ -2103,7 +2121,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by Protocol Buffers $as_me 2.5.0, which was -generated by GNU Autoconf 2.68. Invocation command line was +generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2668,7 +2686,7 @@ case $as_dir/ in #(( # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. @@ -2837,7 +2855,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -2877,7 +2895,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -2928,7 +2946,7 @@ do test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do - { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue + as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ @@ -2981,7 +2999,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3149,7 +3167,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3189,7 +3207,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3242,7 +3260,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3283,7 +3301,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue @@ -3341,7 +3359,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3385,7 +3403,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -3831,8 +3849,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include -#include -#include +struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); @@ -4136,7 +4153,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -4180,7 +4197,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -4650,7 +4667,7 @@ do for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue + as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in @@ -4716,7 +4733,7 @@ do for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue + as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in @@ -4923,8 +4940,8 @@ else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -# define __EXTENSIONS__ 1 - $ac_includes_default +# define __EXTENSIONS__ 1 + $ac_includes_default int main () { @@ -5054,7 +5071,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ISAINFO="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -5247,7 +5264,7 @@ do for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue + as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in @@ -5326,7 +5343,7 @@ do for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue + as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in @@ -5582,7 +5599,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -5626,7 +5643,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6050,7 +6067,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6090,7 +6107,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6396,7 +6413,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6436,7 +6453,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6539,7 +6556,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6583,7 +6600,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6708,7 +6725,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6748,7 +6765,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6807,7 +6824,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -6847,7 +6864,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7497,7 +7514,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7537,7 +7554,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7617,7 +7634,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7657,7 +7674,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7709,7 +7726,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7749,7 +7766,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7801,7 +7818,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7841,7 +7858,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7893,7 +7910,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7933,7 +7950,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -7985,7 +8002,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -8025,7 +8042,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -16092,7 +16109,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_acx_pthread_config="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -16247,7 +16264,7 @@ do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_PTHREAD_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 @@ -17129,16 +17146,16 @@ if (echo >conf$$.file) 2>/dev/null; then # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. + # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' + as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else - as_ln_s='cp -p' + as_ln_s='cp -pR' fi else - as_ln_s='cp -p' + as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null @@ -17198,28 +17215,16 @@ else as_mkdir_p=false fi -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in #( - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" @@ -17241,7 +17246,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # values after options handling. ac_log=" This file was extended by Protocol Buffers $as_me 2.5.0, which was -generated by GNU Autoconf 2.68. Invocation command line was +generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -17307,10 +17312,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ Protocol Buffers config.status 2.5.0 -configured by $0, generated by GNU Autoconf 2.68, +configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" -Copyright (C) 2010 Free Software Foundation, Inc. +Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." @@ -17401,7 +17406,7 @@ fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then - set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' -- GitLab From 533b62c7944cec4d8e892ead0b9764672975586a Mon Sep 17 00:00:00 2001 From: noma Date: Tue, 12 Aug 2014 17:43:07 +0200 Subject: [PATCH 079/192] Changed CMAKE_BIN's default to just cmake (assuming it is somewhere in PATH) instead of /usr/bin/cmake (which is only true for some systems). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 04d801ce2..dd6805e20 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ else endif ifeq "$(CMAKE_HOME)" "" - CMAKE_BIN = /usr/bin/cmake + CMAKE_BIN = cmake else CMAKE_BIN = $(CMAKE_HOME)/bin/cmake endif -- GitLab From e65529782742c48951511e1ddfc593098f8d1052 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Wed, 13 Aug 2014 13:42:43 +0200 Subject: [PATCH 080/192] contrib: Added osd health example script. The script supports RAID and single device configuartions. --- .../osd-health/osd_health_example_script.sh | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 contrib/osd-health/osd_health_example_script.sh diff --git a/contrib/osd-health/osd_health_example_script.sh b/contrib/osd-health/osd_health_example_script.sh new file mode 100755 index 000000000..0f53f6304 --- /dev/null +++ b/contrib/osd-health/osd_health_example_script.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +OBJECT_DIR=$1 + +# get device for object_dir +IFS=' ' read -r DEVICE TMP <<< $(df $OBJECT_DIR | grep dev) + +# Determine device type +if [[ $DEVICE == *md* ]]; then + # DEVICE is a RAID configuration + DEVICES=$(IFS=' ' read -a FOO <<< $(cat /proc/mdstat | grep md0)) + DEVICES=${DEVICES[@]:4} +elif [[ $DEVICE == *sd* || $DEVICE == *hd* ]]; then + # DEVICE is a single disk + DEVICES=$DEVICE +else + # unsupported device type + echo 3; exit +fi + +for DEVICE in $DEVICES; do + SMART_STATUS="$(sudo smartctl --health $DEVICE)" + if [[ $SMART_STATUS == *FAILED* ]]; then + echo 1; exit; + fi +done + +# If no device's health test failed, return 0 (i.e. health test PASSED). +echo 0 -- GitLab From 0ae6427811b30201cabfb66211beeae3bc890cb5 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Wed, 13 Aug 2014 17:56:18 +0200 Subject: [PATCH 081/192] servers: Minor refactoring due to the review in kleingeist/xtreemfs#2 --- .../servers/src/org/xtreemfs/common/libxtreemfs/Volume.java | 2 +- .../xtreemfs/common/libxtreemfs/VolumeImplementation.java | 5 +++-- ...tionPolicy.java => ReplicationPolicyImplementation.java} | 6 ++++-- java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java | 6 +++--- .../test/org/xtreemfs/test/mrc/VersionedXLocSetTest.java | 2 +- man/man1/xtfs_cleanup.1 | 2 +- 6 files changed, 13 insertions(+), 10 deletions(-) rename java/servers/src/org/xtreemfs/common/xloc/{ReplicationPolicy.java => ReplicationPolicyImplementation.java} (73%) diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/Volume.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/Volume.java index 5307a5428..7964244da 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/Volume.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/Volume.java @@ -15,9 +15,9 @@ import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.libxtreemfs.exceptions.AddressToUUIDNotFoundException; import org.xtreemfs.common.libxtreemfs.exceptions.PosixErrorException; import org.xtreemfs.common.xloc.ReplicationFlags; -import org.xtreemfs.common.xloc.ReplicationPolicy; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; +import org.xtreemfs.mrc.metadata.ReplicationPolicy; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.REPL_FLAG; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replica; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replicas; diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/VolumeImplementation.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/VolumeImplementation.java index b14cca914..70c73b778 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/VolumeImplementation.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/VolumeImplementation.java @@ -24,7 +24,7 @@ import org.xtreemfs.common.libxtreemfs.RPCCaller.CallGenerator; import org.xtreemfs.common.libxtreemfs.exceptions.AddressToUUIDNotFoundException; import org.xtreemfs.common.libxtreemfs.exceptions.PosixErrorException; import org.xtreemfs.common.libxtreemfs.exceptions.XtreemFSException; -import org.xtreemfs.common.xloc.ReplicationPolicy; +import org.xtreemfs.common.xloc.ReplicationPolicyImplementation; import org.xtreemfs.foundation.SSLOptions; import org.xtreemfs.foundation.json.JSONException; import org.xtreemfs.foundation.json.JSONParser; @@ -37,6 +37,7 @@ import org.xtreemfs.foundation.pbrpc.client.RPCResponse; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.POSIXErrno; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; +import org.xtreemfs.mrc.metadata.ReplicationPolicy; import org.xtreemfs.mrc.utils.MRCHelper; import org.xtreemfs.pbrpc.generatedinterfaces.Common.emptyResponse; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.FileCredentials; @@ -1548,7 +1549,7 @@ public class VolumeImplementation implements Volume, AdminVolume { throw new IOException(e); } - return new ReplicationPolicy(updatePolicy, replicationFactor, replicationFlags); + return new ReplicationPolicyImplementation(updatePolicy, replicationFactor, replicationFlags); } /** diff --git a/java/servers/src/org/xtreemfs/common/xloc/ReplicationPolicy.java b/java/servers/src/org/xtreemfs/common/xloc/ReplicationPolicyImplementation.java similarity index 73% rename from java/servers/src/org/xtreemfs/common/xloc/ReplicationPolicy.java rename to java/servers/src/org/xtreemfs/common/xloc/ReplicationPolicyImplementation.java index dedf9e368..e85bccbd5 100644 --- a/java/servers/src/org/xtreemfs/common/xloc/ReplicationPolicy.java +++ b/java/servers/src/org/xtreemfs/common/xloc/ReplicationPolicyImplementation.java @@ -6,13 +6,15 @@ */ package org.xtreemfs.common.xloc; -public class ReplicationPolicy implements org.xtreemfs.mrc.metadata.ReplicationPolicy { +import org.xtreemfs.mrc.metadata.ReplicationPolicy; + +public class ReplicationPolicyImplementation implements ReplicationPolicy { final String updatePolicy; final int replicationFactor; final int replicationFlags; - public ReplicationPolicy(String updatePolicy, int replicationFactor, int replicationFlags) { + public ReplicationPolicyImplementation(String updatePolicy, int replicationFactor, int replicationFlags) { this.updatePolicy = updatePolicy; this.replicationFactor = replicationFactor; this.replicationFlags = replicationFlags; diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java b/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java index f3487c087..eef450364 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java @@ -56,7 +56,7 @@ public class xtfs_cleanup_osd { CliOption oDelMeta = new CliOption(CliOption.OPTIONTYPE.NUMBER, "delete metadata of zombie files, if the XLocSet has not been updated during the last seconds (default: 600)", ""); - options.put("metadata_delete", oDelMeta); + options.put("metadata_timeout", oDelMeta); options.put("metadata_keep", new CliOption(OPTIONTYPE.SWITCH, "keep metadata (by default metadata is deleted after seconds)", "")); options.put("i", new CliOption(CliOption.OPTIONTYPE.SWITCH, "interactive mode", "")); @@ -92,8 +92,8 @@ public class xtfs_cleanup_osd { boolean removeMetadata = !options.get("metadata_keep").switchValue; int metaDataTimeoutS = 600; - if (options.get("metadata_delete").numValue != null) { - metaDataTimeoutS = options.get("metadata_delete").numValue.intValue(); + if (options.get("metadata_timeout").numValue != null) { + metaDataTimeoutS = options.get("metadata_timeout").numValue.intValue(); } String[] dirURLs = (options.get("dir").stringValue != null) ? options.get("dir").stringValue diff --git a/java/servers/test/org/xtreemfs/test/mrc/VersionedXLocSetTest.java b/java/servers/test/org/xtreemfs/test/mrc/VersionedXLocSetTest.java index 0943f6953..e5e201e5c 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/VersionedXLocSetTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/VersionedXLocSetTest.java @@ -30,7 +30,6 @@ import org.xtreemfs.common.libxtreemfs.Volume; import org.xtreemfs.common.libxtreemfs.exceptions.AddressToUUIDNotFoundException; import org.xtreemfs.common.libxtreemfs.exceptions.InvalidViewException; import org.xtreemfs.common.xloc.ReplicationFlags; -import org.xtreemfs.common.xloc.ReplicationPolicy; import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; @@ -38,6 +37,7 @@ import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; import org.xtreemfs.foundation.pbrpc.server.RPCServerRequest; import org.xtreemfs.foundation.util.FSUtils; +import org.xtreemfs.mrc.metadata.ReplicationPolicy; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.osd.OSDRequestDispatcher; diff --git a/man/man1/xtfs_cleanup.1 b/man/man1/xtfs_cleanup.1 index df67e4647..c22e73e02 100644 --- a/man/man1/xtfs_cleanup.1 +++ b/man/man1/xtfs_cleanup.1 @@ -37,7 +37,7 @@ Shows usage info. \fB-i Enables the interactive mode and displays the cleanup progress. .TP -\fB-metadata_delete \fI +\fB-metadata_timeout \fI Metadata will only be deleted, if the last XLocSet update was more than \fI\fR seconds ago. The default \fI\fR is equal to the default capability timeout: 600. If \fI\fR is 0, metadata will be deleted instantly. .TP \fB-metadata_keep -- GitLab From 219686e5c60f31ed9fd9778a6dbd6fc695e58d1e Mon Sep 17 00:00:00 2001 From: Philippe Lieser Date: Wed, 13 Aug 2014 21:19:34 +0200 Subject: [PATCH 082/192] servers: fixed filesize getting reduced on write --- java/servers/src/org/xtreemfs/osd/storage/StorageThread.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java b/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java index b5ad33b61..bccedaf78 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java +++ b/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java @@ -540,6 +540,9 @@ public class StorageThread extends Stage { } else { newFS = newObjSize; } + if (newFS < fi.getFilesize()) { + newFS = fi.getFilesize(); + } // check whether the file size might have changed; in this case, // ensure that the X-New-Filesize header will be set -- GitLab From 1f5709eb6f17c91e4e7301cb03183c5c19cfb61e Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 14 Aug 2014 11:00:39 +0200 Subject: [PATCH 083/192] servers: Improved exception handling in osd health status code. --- java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java b/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java index d00df9f7b..d97f13b2f 100644 --- a/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java +++ b/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java @@ -400,7 +400,7 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle "SMART script returns invalid value (" + scriptOutput + ")"); smartTestResult = OSDHealthResult.OSD_HEALTH_RESULT_NOT_AVAIL; } - } catch (IOException e) { + } catch (Exception e) { Logging.logMessage(Logging.LEVEL_WARN, Category.misc, this, "Exception while reading SMART health result: " + e.getMessage()); } finally { -- GitLab From 3632f4fb11b068f9c84a3610b58e90c8caeb95ff Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 14 Aug 2014 11:01:56 +0200 Subject: [PATCH 084/192] doc: Added description of OSD health monitoring and health_script parameter to xtreemfs userguide --- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 839521 -> 842866 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index 983e8c8e4aedbe1663771df370a0408aa1c882da..ac66dd92b821ba3ab4bac7d86103f8e41f5616a1 100644 GIT binary patch delta 163373 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 delta 160205 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
Kkb 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 z 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 diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index 8ad9bbec8..4fcabe7a9 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -974,6 +974,13 @@ Note that it is possible to specify multiple categories by means of a comma or s Description & If specified and \texttt{multihoming.enabled} is \texttt{false}, it defines the host name that is used to register the service at the directory service. If neither \texttt{hostname} nor \texttt{listen.address} are specified, the service itself will search for an externally reachable network interface and advertise its address. To use multiple interfaces see \hyperref[option:multihoming.enabled]{multihoming.enabled}. \end{tabular} +\subsubsection{\texttt{health\_script} \textit{optional}} +\begin{tabular}{lp{10cm}} + Services & OSD\\ + Values & String \\ + Default & \\ + Description & If specified, the OSD will use this script to determine the health status of the storage devices which stores the \texttt{object\_dir}. See section~\ref{sec:xtreemfs-osd-farm} for more information. +\end{tabular} \subsubsection{\texttt{http\_port}} \begin{tabular}{lp{10cm}} Services & DIR, MRC, OSD\\ @@ -1404,6 +1411,20 @@ The \texttt{xtreemfs-osd-farm} script can be found in the /usr/share/xtreemfs di Using the \texttt{xtreemfs-osd-farm} script demands two steps. First, a list names for all of the used OSDs hat to be set to the OSD\_INSTANCES variable in the script. The list elements have to be separated by spaces. In the second step, a configuration file with the name \texttt{.config.properties} has to be created in \texttt{/etc/xos/xtreemfs} for all of the defined OSD names, whereas has to be replaced by the particular OSD name. After these steps, the \texttt{init.d} script can be executed with the usual arguments \texttt{start}, \texttt{stop}, \texttt{status}, \texttt{restart}, and \texttt{try-restart}. A single OSD can be controlled by \texttt{xtreemfs-osd-farm }. +\subsection{Monitoring OSD's storage devices} +\label{sec:osd-health-script} +The health status of OSDs storage devices (e.g. SMART health test) can be used to determine if an OSD will fail soon or actually failed. If the health status is available, the default OSD selection policy will use it to exclude OSDs with a critical status (WARNING or FAILED). To test the health status, the OSD executes a user-defined script, that can be configurated in the OSD config with the \texttt{health\_script} parameter. If you want to write such a script you must consider the following thinks: +\begin{itemize} +\item The script will be executed with the object dir as the first (and only) parameter +\item The script must print one of the following numbers to stdout: +\begin{itemize} +\item \texttt{0} - PASSED: Storage device is in an uncritical state. The OSD will not filtered out when the default OSD selection policy is used. +\item \texttt{1} - FAILED: Storage device is in an critical state. The OSD will filtered out when the default OSD selection policy is used. +\item \texttt{2} - WARNING: Storage could be in an critical state soon. The OSD will filtered out when the default OSD selection policy is used. +\item \texttt{3} - Not Available: The health status is not available. Also used when an error occurs or an invalid value is returned from the script. +\end{itemize} +\end{itemize} +An example script for Linux systems is provided in \texttt{/usr/share/xtreemfs/osd\_health\_example\_script.sh}. This script uses the SMART health test result of the devices which stores the object dir. The Script supports software RAID configurations (\texttt{/dev/md*}) and single devices(\texttt{/dev/sd*} or \texttt{/dev/hd*}). In order to use this script the package smartmontools must be installed. \subsection{Web-based Status Page} -- GitLab From 3fd918279d7f57bcae5df2cab39ee6bd65b43854 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 14 Aug 2014 11:02:39 +0200 Subject: [PATCH 085/192] servers: Added health_script parameter to osd config file. --- etc/xos/xtreemfs/osdconfig.properties | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/etc/xos/xtreemfs/osdconfig.properties b/etc/xos/xtreemfs/osdconfig.properties index 47eb3b00d..904ece410 100644 --- a/etc/xos/xtreemfs/osdconfig.properties +++ b/etc/xos/xtreemfs/osdconfig.properties @@ -121,4 +121,11 @@ policy_dir = /etc/xos/xtreemfs/policies #snmp.port = 34640 #snmp.aclfile = /etc/xos/xtreemfs/snmp.acl + +# Optional user-definied script to determine the health status of the OSD. +# The health status will be used in the default OSD selection policy to +# exclude OSDs with FAILED or WARNING health status. +# See the xtreemfs user guide for more information. +#health_script = /usr/share/xtreemfs/osd_health_example_script.sh + uuid = default-OSD -- GitLab From c593c330cd6961fcfc9073feb0776f3c739cde3a Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 14 Aug 2014 11:30:10 +0200 Subject: [PATCH 086/192] servers: Modified sort host round robin osp to be compatible with Java 1.6 --- .../org/xtreemfs/mrc/osdselection/SortHostRoundRobinPolicy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/mrc/osdselection/SortHostRoundRobinPolicy.java b/java/servers/src/org/xtreemfs/mrc/osdselection/SortHostRoundRobinPolicy.java index 7c8470e50..bb55230e1 100644 --- a/java/servers/src/org/xtreemfs/mrc/osdselection/SortHostRoundRobinPolicy.java +++ b/java/servers/src/org/xtreemfs/mrc/osdselection/SortHostRoundRobinPolicy.java @@ -32,7 +32,7 @@ public class SortHostRoundRobinPolicy implements OSDSelectionPolicy { for (Service osd : allOSDs.getServicesList()) { try { - String host = new ServiceUUID(osd.getUuid()).getAddress().getHostString(); + String host = new ServiceUUID(osd.getUuid()).getAddress().getHostName(); if (hostToOsdsMap.containsKey(host)) { hostToOsdsMap.get(host).add(osd); } else { -- GitLab From 64974937db7def276815e7a57a327e83ca2b9e61 Mon Sep 17 00:00:00 2001 From: noma Date: Fri, 15 Aug 2014 16:05:16 +0200 Subject: [PATCH 087/192] Integrated LD_PRELOAD library into the build files (set BUILD_PRELOAD when building the client to generate it). --- Makefile | 7 +++++- cpp/CMakeLists.txt | 62 +++++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 65 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index dd6805e20..f230c1940 100644 --- a/Makefile +++ b/Makefile @@ -223,6 +223,11 @@ endif ifdef SKIP_FUSE CMAKE_SKIP_FUSE = -DSKIP_FUSE=true endif +# Trigger building the experimental LD_PRELOAD library +ifdef BUILD_PRELOAD + CMAKE_BUILD_PRELOAD = -DBUILD_PRELOAD=true +endif + client_thirdparty: $(CLIENT_THIRDPARTY_REQUIREMENTS) @@ -265,7 +270,7 @@ client_debug: CLIENT_DEBUG = -DCMAKE_BUILD_TYPE=Debug client_debug: client client: check_client client_thirdparty set_version - $(CMAKE_BIN) -Hcpp -B$(XTREEMFS_CLIENT_BUILD_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 $(CLIENT_DEBUG) $(CMAKE_BOOST_ROOT) $(CMAKE_BUILD_CLIENT_TESTS) $(CMAKE_SKIP_FUSE) + $(CMAKE_BIN) -Hcpp -B$(XTREEMFS_CLIENT_BUILD_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 $(CLIENT_DEBUG) $(CMAKE_BOOST_ROOT) $(CMAKE_BUILD_CLIENT_TESTS) $(CMAKE_SKIP_FUSE) ${CMAKE_BUILD_PRELOAD} @$(MAKE) -C $(XTREEMFS_CLIENT_BUILD_DIR) @cd $(XTREEMFS_CLIENT_BUILD_DIR); for i in *.xtreemfs xtfsutil; do [ -f $(XTREEMFS_BINARIES_DIR)/$$i ] && rm -f $(XTREEMFS_BINARIES_DIR)/$$i; done; true @cp -p $(XTREEMFS_CLIENT_BUILD_DIR)/*.xtreemfs $(XTREEMFS_BINARIES_DIR) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 91b3459e3..440679fa8 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -1,9 +1,12 @@ cmake_minimum_required(VERSION 2.6) -PROJECT(cpp CXX) +PROJECT(cpp CXX C) #SET (CMAKE_VERBOSE_MAKEFILE true) -add_definitions(-D_FILE_OFFSET_BITS=64) +# used for everything, but the preload library (which struggles with implicitly +# generated symbols suffixed with 64, e.g. open64) +set(COMPILE_DEFS "_FILE_OFFSET_BITS=64") + # Uncomment this to enable boost::asio debug output. #add_definitions(-DBOOST_ASIO_ENABLE_HANDLER_TRACKING) @@ -34,7 +37,12 @@ set(CLIENT_GOOGLE_PROTOBUF_CPP "${CMAKE_SOURCE_DIR}/thirdparty/protobuf-2.5.0") if (WIN32) set(CLIENT_GOOGLE_PROTOBUF_CPP_LIBRARY "${CLIENT_GOOGLE_PROTOBUF_CPP}/vsprojects/Release/libprotobuf.lib") else() - set(CLIENT_GOOGLE_PROTOBUF_CPP_LIBRARY "${CLIENT_GOOGLE_PROTOBUF_CPP}/src/.libs/libprotobuf.a") + FIND_FILE(CLIENT_GOOGLE_PROTOBUF_CPP_LIBRARY + "libprotobuf.a" + PATHS "${CLIENT_GOOGLE_PROTOBUF_CPP}/src/.libs/") + FIND_FILE(CLIENT_GOOGLE_PROTOBUF_CPP_DYNAMIC_LIBRARY + "libprotobuf.so" + PATHS "${CLIENT_GOOGLE_PROTOBUF_CPP}/src/.libs/") endif(WIN32) set(CLIENT_GOOGLE_TEST_CPP "${CMAKE_SOURCE_DIR}/thirdparty/gtest-1.5.0") if (WIN32) @@ -121,6 +129,7 @@ ENDIF(WIN32) # Set required thirdparty libraries. # Boost +#set(Boost_DEBUG ON) set(REQUIRED_BOOST_LIBRARIES "system" "thread" "program_options" "regex") if (BOOST_ROOT) message(STATUS "Info: BOOST_ROOT is set to: ${BOOST_ROOT}") @@ -228,18 +237,22 @@ add_library(xtreemfs ${SRCS_RPC} ${SRCS_UTIL} ${SRCS_GENERATED} ${SRCS_XTREEMFS} TARGET_LINK_LIBRARIES(xtreemfs optimized protobuf debug protobuf_debug ${Boost_LIBRARIES} ${LIBPTHREAD} ${OPENSSL_LIBRARIES} ${LIBSOCKET_SOLARIS} ${LIBNSL_SOLARIS}) ADD_EXECUTABLE(example_libxtreemfs src/example_libxtreemfs/example_libxtreemfs.cpp) +SET_TARGET_PROPERTIES(example_libxtreemfs PROPERTIES COMPILE_DEFINITIONS ${COMPILE_DEFS}) TARGET_LINK_LIBRARIES(example_libxtreemfs xtreemfs) file(GLOB_RECURSE SRCS_MKFS src/mkfs.xtreemfs/*.cpp) ADD_EXECUTABLE(mkfs.xtreemfs ${SRCS_MKFS}) +SET_TARGET_PROPERTIES(mkfs.xtreemfs PROPERTIES COMPILE_DEFINITIONS ${COMPILE_DEFS}) TARGET_LINK_LIBRARIES(mkfs.xtreemfs xtreemfs) file(GLOB_RECURSE SRCS_RMFS src/rmfs.xtreemfs/*.cpp) ADD_EXECUTABLE(rmfs.xtreemfs ${SRCS_RMFS}) +SET_TARGET_PROPERTIES(rmfs.xtreemfs PROPERTIES COMPILE_DEFINITIONS ${COMPILE_DEFS}) TARGET_LINK_LIBRARIES(rmfs.xtreemfs xtreemfs) file(GLOB_RECURSE SRCS_LSFS src/lsfs.xtreemfs/*.cpp) ADD_EXECUTABLE(lsfs.xtreemfs ${SRCS_LSFS}) +SET_TARGET_PROPERTIES(lsfs.xtreemfs PROPERTIES COMPILE_DEFINITIONS ${COMPILE_DEFS}) TARGET_LINK_LIBRARIES(lsfs.xtreemfs xtreemfs) file(GLOB_RECURSE SRCS_XTFS_UTIL src/xtfsutil/xtfsutil_server.cpp) @@ -251,6 +264,7 @@ if (NOT WIN32) file(GLOB_RECURSE SRCS_FUSE_ADAPTER src/fuse/fuse*.cpp) file(GLOB_RECURSE SRCS_FUSE_ADAPTER_MAIN src/fuse/mount.xtreemfs.cpp) ADD_EXECUTABLE(mount.xtreemfs ${SRCS_FUSE_ADAPTER} ${SRCS_FUSE_ADAPTER_MAIN} ${SRCS_XTFS_UTIL} ${SRCS_JSONCPP}) + SET_TARGET_PROPERTIES(mount.xtreemfs PROPERTIES COMPILE_DEFINITIONS ${COMPILE_DEFS}) TARGET_LINK_LIBRARIES(mount.xtreemfs xtreemfs ${LIBFUSE}) set(UNITTESTS_REQUIRED_SOURCES_fuse ${SRCS_FUSE_ADAPTER} ${SRCS_XTFS_UTIL} ${SRCS_JSONCPP}) @@ -271,6 +285,47 @@ if(WIN32 AND CBFS_FOUND) set(UNITTESTS_SKIP_fuse true) endif(WIN32 AND CBFS_FOUND) +function(find_source_files RESULT) + set(RESULT "") + foreach(GLOBEXPR ${ARGV}) + file(GLOB_RECURSE FILES ${GLOBEXPR}) + foreach(TEST ${FILES}) + get_filename_component(DIRNAME ${TEST} PATH) + get_filename_component(COMPONENT ${DIRNAME} NAME) + get_filename_component(FILENAME ${TEST} NAME) + if (${FILENAME} MATCHES "_test.cpp$") + #skip + elseif (${FILENAME} MATCHES "_main.cpp$") + #skip + else() + LIST(APPEND RESULT ${TEST}) + endif() + endforeach(TEST) + endforeach(GLOBEXPR) + set(FIND_RESULT ${RESULT} PARENT_SCOPE) +endfunction(find_source_files) + +#SET(BUILD_PRELOAD TRUE) +if (BUILD_PRELOAD) + find_source_files("src/ld_preload/*.cpp" "include/ld_preload/*.h") + set(SRCS_PRELOAD ${FIND_RESULT}) + + # The LD_PRELOAD dynamic library + add_library(xtreemfs_preload SHARED ${SRCS_PRELOAD} + ${SRCS_RPC} ${SRCS_UTIL} ${SRCS_GENERATED} ${SRCS_XTREEMFS}) + + IF(NOT ${CMAKE_BUILD_TYPE} MATCHES "Debug") + SET_TARGET_PROPERTIES(xtreemfs_preload PROPERTIES COMPILE_DEFINITIONS "XTREEMFS_PRELOAD_QUIET") + ENDIF(NOT ${CMAKE_BUILD_TYPE} MATCHES "Debug") + + SET_TARGET_PROPERTIES(xtreemfs_preload PROPERTIES LINKER_LANGUAGE C) + TARGET_LINK_LIBRARIES(xtreemfs_preload + xtreemfs + -ldl + ${CLIENT_GOOGLE_PROTOBUF_CPP_DYNAMIC_LIBRARY}) + ADD_EXECUTABLE(preload_test "test/ld_preload/preload_test.cpp") +endif(BUILD_PRELOAD) + ################################################################################ # Define building of unittests. ################################################################################ @@ -317,6 +372,7 @@ if(BUILD_CLIENT_TESTS) MESSAGE(STATUS "\tConfiguring test: ${testname}.") add_executable(${testname} ${TEST} ${UNITTESTS_REQUIRED_SOURCES_${COMPONENT}}) + SET_TARGET_PROPERTIES(${testname} PROPERTIES COMPILE_DEFINITIONS ${COMPILE_DEFS}) TARGET_LINK_LIBRARIES(${testname} gtest_main gtest test_common xtreemfs ${UNITTESTS_REQUIRED_LIBRARIES_${COMPONENT}}) ADD_TEST(${testname} ${testname}) else() -- GitLab From d4c69a7180af2272abb3fb3060a156670bbc19ce Mon Sep 17 00:00:00 2001 From: noma Date: Mon, 18 Aug 2014 18:07:46 +0200 Subject: [PATCH 088/192] Fixes #315 --- cpp/src/libxtreemfs/vivaldi.cpp | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/cpp/src/libxtreemfs/vivaldi.cpp b/cpp/src/libxtreemfs/vivaldi.cpp index 53fd2239e..9e8353ad0 100644 --- a/cpp/src/libxtreemfs/vivaldi.cpp +++ b/cpp/src/libxtreemfs/vivaldi.cpp @@ -73,29 +73,33 @@ void Vivaldi::Run() { assert(dir_client_.get() != NULL); assert(osd_client_.get() != NULL); - // Initialized to (0,0) by default - my_vivaldi_coordinates_.set_local_error(0.0); - my_vivaldi_coordinates_.set_x_coordinate(0.0); - my_vivaldi_coordinates_.set_y_coordinate(0.0); - + bool loaded_from_file = false; ifstream vivaldi_coordinates_file(vivaldi_options_.vivaldi_filename.c_str()); if (vivaldi_coordinates_file.is_open()) { my_vivaldi_coordinates_.ParseFromIstream(&vivaldi_coordinates_file); - if (!my_vivaldi_coordinates_.IsInitialized()) { + loaded_from_file = my_vivaldi_coordinates_.IsInitialized(); + if (!loaded_from_file) { Logging::log->getLog(LEVEL_ERROR) << "Vivaldi: Could not load coordinates from file: " << my_vivaldi_coordinates_.InitializationErrorString() << endl; my_vivaldi_coordinates_.Clear(); } - } else { + vivaldi_coordinates_file.close(); + } + + if (!loaded_from_file) { if (Logging::log->loggingActive(LEVEL_INFO)) { Logging::log->getLog(LEVEL_INFO) - << "Vivaldi: Coordinates file does not exist," + << "Vivaldi: Coordinates file does not exist or could not be parsed," << "starting with empty coordinates." << endl << "Initialization might take some time." << endl; } + + // Initialize coordinates to (0,0) by default + my_vivaldi_coordinates_.set_local_error(0.0); + my_vivaldi_coordinates_.set_x_coordinate(0.0); + my_vivaldi_coordinates_.set_y_coordinate(0.0); } - vivaldi_coordinates_file.close(); VivaldiNode own_node(my_vivaldi_coordinates_); -- GitLab From ba0d20eeb5192caf02f0579cfcf8c8bc031184f7 Mon Sep 17 00:00:00 2001 From: noma Date: Mon, 18 Aug 2014 18:46:38 +0200 Subject: [PATCH 089/192] Fix for #321 --- cpp/src/libxtreemfs/vivaldi.cpp | 158 ++++++++++++++++---------------- 1 file changed, 80 insertions(+), 78 deletions(-) diff --git a/cpp/src/libxtreemfs/vivaldi.cpp b/cpp/src/libxtreemfs/vivaldi.cpp index 9e8353ad0..3378788ba 100644 --- a/cpp/src/libxtreemfs/vivaldi.cpp +++ b/cpp/src/libxtreemfs/vivaldi.cpp @@ -163,76 +163,95 @@ void Vivaldi::Run() { SimpleUUIDIterator pinged_osd; pinged_osd.AddUUID(chosen_osd_service->GetUUID()); - // start timing - boost::posix_time::ptime start_time(boost::posix_time - ::microsec_clock::local_time()); - // execute sync ping - ping_response.reset( - ExecuteSyncRequest( - boost::bind( - &xtreemfs::pbrpc::OSDServiceClient::xtreemfs_ping_sync, - osd_client_.get(), - _1, - boost::cref(auth_bogus_), - boost::cref(user_credentials_bogus_), - &ping_message), - &pinged_osd, - uuid_resolver_, - RPCOptionsFromOptions(vivaldi_options_))); - - // stop timing - boost::posix_time::ptime end_time( - boost::posix_time::microsec_clock::local_time()); - boost::posix_time::time_duration rtt = end_time - start_time; - uint64_t measured_rtt = rtt.total_milliseconds(); - - xtreemfs::pbrpc::xtreemfs_pingMesssage* ping_response_obj = - static_cast( - ping_response->response()); - random_osd_vivaldi_coordinates = ping_response_obj->mutable_coordinates(); + try { + // start timing + boost::posix_time::ptime start_time(boost::posix_time + ::microsec_clock::local_time()); + + ping_response.reset( + ExecuteSyncRequest( + boost::bind( + &xtreemfs::pbrpc::OSDServiceClient::xtreemfs_ping_sync, + osd_client_.get(), + _1, + boost::cref(auth_bogus_), + boost::cref(user_credentials_bogus_), + &ping_message), + &pinged_osd, + uuid_resolver_, + RPCOptionsFromOptions(vivaldi_options_))); + + // stop timing + boost::posix_time::ptime end_time( + boost::posix_time::microsec_clock::local_time()); + boost::posix_time::time_duration rtt = end_time - start_time; + uint64_t measured_rtt = rtt.total_milliseconds(); + + xtreemfs::pbrpc::xtreemfs_pingMesssage* ping_response_obj = + static_cast( + ping_response->response()); + random_osd_vivaldi_coordinates = ping_response_obj->mutable_coordinates(); - if (Logging::log->loggingActive(LEVEL_DEBUG)) { - Logging::log->getLog(LEVEL_DEBUG) - << "Vivaldi: ping response received. Measured time: " - << measured_rtt << " ms" << endl; - } + if (Logging::log->loggingActive(LEVEL_DEBUG)) { + Logging::log->getLog(LEVEL_DEBUG) + << "Vivaldi: ping response received. Measured time: " + << measured_rtt << " ms" << endl; + } - // Recalculate coordinates here - if (retries_in_a_row < vivaldi_options_.vivaldi_max_request_retries) { - if (!own_node.RecalculatePosition(*random_osd_vivaldi_coordinates, - measured_rtt, - false)) { - // The movement has been postponed because the measured RTT - // seems to be a peak - current_retries.push_back(measured_rtt); - retries_in_a_row++; + // Recalculate coordinates here + if (retries_in_a_row < vivaldi_options_.vivaldi_max_request_retries) { + if (!own_node.RecalculatePosition(*random_osd_vivaldi_coordinates, + measured_rtt, + false)) { + // The movement has been postponed because the measured RTT + // seems to be a peak + current_retries.push_back(measured_rtt); + retries_in_a_row++; + } else { + // The movement has been accepted + current_retries.clear(); + retries_in_a_row = 0; + } } else { - // The movement has been accepted + // Choose the lowest RTT + uint64_t lowest_rtt = measured_rtt; + for (vector::iterator retries_iterator = + current_retries.begin(); + retries_iterator < current_retries.end(); + ++retries_iterator) { + if (*retries_iterator < lowest_rtt) { + lowest_rtt = *retries_iterator; + } + } + + // Force recalculation after too many retries + own_node.RecalculatePosition(*random_osd_vivaldi_coordinates, + lowest_rtt, + true); current_retries.clear(); retries_in_a_row = 0; + + // set measured_rtt to the actually used one for trace output + measured_rtt = lowest_rtt; } - } else { - // Choose the lowest RTT - uint64_t lowest_rtt = measured_rtt; - for (vector::iterator retries_iterator = - current_retries.begin(); - retries_iterator < current_retries.end(); - ++retries_iterator) { - if (*retries_iterator < lowest_rtt) { - lowest_rtt = *retries_iterator; - } + } catch (const XtreemFSException& e) { + if (ping_response.get()) { + ping_response->DeleteBuffers(); } - // Force recalculation after too many retries - own_node.RecalculatePosition(*random_osd_vivaldi_coordinates, - lowest_rtt, - true); - current_retries.clear(); - retries_in_a_row = 0; - - // set measured_rtt to the actually used one for trace output - measured_rtt = lowest_rtt; + Logging::log->getLog(LEVEL_ERROR) + << "Vivaldi: could not ping OSDs: " << e.what() << endl; + + // We must avoid to keep retrying indefinitely against an OSD which is not + // responding + if (retries_in_a_row > 0 + && (++retries_in_a_row >= + vivaldi_options_.vivaldi_max_request_retries)) { + // If the last retry times out all the previous retries are discarded + current_retries.clear(); + retries_in_a_row = 0; + } } // update local coordinate copy here @@ -375,23 +394,6 @@ void Vivaldi::Run() { } boost::this_thread::sleep(boost::posix_time::seconds(sleep_in_s)); - } catch (const XtreemFSException& e) { - if (ping_response.get()) { - ping_response->DeleteBuffers(); - } - - Logging::log->getLog(LEVEL_ERROR) - << "Vivaldi: could not ping OSDs: " << e.what() << endl; - - // We must avoid to keep retrying indefinitely against an OSD which is not - // responding - if (retries_in_a_row > 0 - && (++retries_in_a_row >= - vivaldi_options_.vivaldi_max_request_retries)) { - // If the last retry times out all the previous retries are discarded - current_retries.clear(); - retries_in_a_row = 0; - } } catch(const boost::thread_interrupted&) { if (ping_response.get()) { ping_response->DeleteBuffers(); -- GitLab From 45386dbe1dc6ee89e28881debc5c8fc376c8ee4c Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Wed, 20 Aug 2014 16:58:59 +0200 Subject: [PATCH 090/192] servers: Return DIR hostname as part of the XtreemFS URL. Fixes #317. If the MRC hostname has been configured, it was erroneously used for the DIRs hostname as part of a XtreemFS file URL. --- java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java b/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java index e6f0819be..8e29d295f 100644 --- a/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java +++ b/java/servers/src/org/xtreemfs/mrc/utils/MRCHelper.java @@ -353,13 +353,9 @@ public class MRCHelper { case object_type: String ref = sMan.getSoftlinkTarget(file.getId()); return ref != null ? "3" : file.isDirectory() ? "2" : "1"; - case url: { + case url: InetSocketAddress addr = config.getDirectoryService(); - final String hostname = (config.getHostName().length() > 0) ? config.getHostName() : addr.getAddress() - .getCanonicalHostName(); - - return config.getURLScheme() + "://" + hostname + ":" + addr.getPort() + "/" + path; - } + return config.getURLScheme() + "://" + addr.getHostName() + ":" + addr.getPort() + "/" + path; case owner: return file.getOwnerId(); case group: -- GitLab From 5ea3ab8d42c3c14d009a23a6d38309739fd9549f Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Fri, 22 Aug 2014 15:32:26 +0200 Subject: [PATCH 091/192] Tests: Migrate JUnit 3 tests to JUnit 4. --- .../xtreemfs/common/clients/ClientTest.java | 7 +- .../common/clients/ReplicatedClientTest.java | 7 +- .../internal/RAID0ObjectMapperTest.java | 13 +- .../common/libxtreemfs/ClientTest.java | 5 + .../common/libxtreemfs/FileHandleTest.java | 25 +- .../libxtreemfs/FileSizeUpdateThreadTest.java | 5 + .../common/libxtreemfs/MetadataCacheTest.java | 6 +- .../common/libxtreemfs/RPCCallerTest.java | 8 +- .../libxtreemfs/ReadOnlyReplicationTest.java | 9 +- .../libxtreemfs/StripeTranslatorTest.java | 9 +- .../common/libxtreemfs/UUIDIteratorTest.java | 74 +-- .../common/libxtreemfs/UUIDResolverTest.java | 63 +- .../common/libxtreemfs/VolumeTest.java | 7 +- .../common/statusserver/StatusServerTest.java | 5 + .../ExternalIntegrationTest.java | 45 +- .../org/xtreemfs/test/TestEnvironment.java | 7 + .../test/org/xtreemfs/test/TestHelper.java | 15 + .../xtreemfs/test/common/CapabilityTest.java | 58 +- .../benchmark/ControllerIntegrationTest.java | 31 +- .../common/monitoring/DIRMonitoringTest.java | 48 +- .../monitoring/GeneralMonitoringTest.java | 206 ++++--- .../common/monitoring/MRCMonitoringTest.java | 96 ++- .../common/monitoring/OSDMonitoringTest.java | 81 ++- .../common/striping/LocationsCacheTest.java | 46 +- .../test/common/striping/LocationsTest.java | 76 +-- .../test/common/striping/RAID0Test.java | 75 ++- .../test/common/uuid/UUIDResolverTest.java | 80 +-- .../org/xtreemfs/test/dir/DIRClientTest.java | 89 +-- .../test/org/xtreemfs/test/dir/DIRTest.java | 8 +- .../test/mrc/BabuDBStorageManagerTest.java | 52 +- .../test/mrc/BufferBackedMetadataTest.java | 240 ++++---- .../test/org/xtreemfs/test/mrc/MRCTest.java | 5 + .../org/xtreemfs/test/mrc/OSDPolicyTest.java | 31 +- .../test/mrc/SetReadOnlyXattrTest.java | 39 +- .../test/mrc/SetReplicaUpdatePolicyTest.java | 33 +- .../org/xtreemfs/test/mrc/SnapshotTest.java | 30 +- .../xtreemfs/test/osd/AdvisoryLocksTest.java | 237 ++++---- .../org/xtreemfs/test/osd/CleanupTest.java | 26 +- .../org/xtreemfs/test/osd/CowPolicyTest.java | 33 +- .../xtreemfs/test/osd/FastDeleteOpenFile.java | 18 +- .../test/osd/OSDDataIntegrityTest.java | 282 +++++---- .../org/xtreemfs/test/osd/OSDDrainTest.java | 132 +++-- .../org/xtreemfs/test/osd/OSDRangeReads.java | 273 +++++---- .../xtreemfs/test/osd/OSDTruncateTest.java | 298 +++++----- .../test/osd/SimpleVivaldiStageTest.java | 69 ++- .../xtreemfs/test/osd/StorageLayoutTest.java | 164 +++--- .../xtreemfs/test/osd/StorageStageTest.java | 10 +- .../org/xtreemfs/test/osd/StripingTest.java | 554 +++++++++--------- .../xtreemfs/test/osd/StripingTestCOW.java | 57 +- .../test/osd/VersionManagementTest.java | 341 +++++------ .../xtreemfs/test/osd/VersionTableTest.java | 63 +- .../test/osd/replication/ObjectSetTest.java | 15 +- .../test/osd/replication/ReplicationTest.java | 305 +++++----- .../replication/ServiceAvailabilityTest.java | 22 +- .../replication/TransferStrategiesTest.java | 214 ++++--- .../FixWrongMasterEpochDirectoryTest.java | 9 +- .../osd/rwre/RWQuorumReplicationTest.java | 162 +++-- .../osd/rwre/RWReplicationFailureTest.java | 93 +-- .../test/osd/rwre/RWReplicationTest.java | 44 +- .../test/org/xtreemfs/utils/ScrubberTest.java | 13 +- 60 files changed, 2561 insertions(+), 2507 deletions(-) create mode 100644 java/servers/test/org/xtreemfs/test/TestHelper.java diff --git a/java/servers/test/org/xtreemfs/common/clients/ClientTest.java b/java/servers/test/org/xtreemfs/common/clients/ClientTest.java index d7784fbb8..4641c16b1 100644 --- a/java/servers/test/org/xtreemfs/common/clients/ClientTest.java +++ b/java/servers/test/org/xtreemfs/common/clients/ClientTest.java @@ -17,7 +17,9 @@ import java.util.Map; import org.junit.After; import org.junit.Before; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; @@ -28,12 +30,15 @@ import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.Stat; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * * @author bjko */ public class ClientTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private TestEnvironment testEnv; @@ -47,8 +52,6 @@ public class ClientTest { @Before public void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName()); - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_CLIENT, diff --git a/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java b/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java index 4f6d81ff5..643761752 100644 --- a/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java +++ b/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java @@ -16,7 +16,9 @@ import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.xloc.ReplicationFlags; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; @@ -26,12 +28,15 @@ import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyTyp import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * * @author bjko */ public class ReplicatedClientTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private TestEnvironment testEnv; @@ -53,8 +58,6 @@ public class ReplicatedClientTest { @Before public void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName()); - testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, TestEnvironment.Services.DIR_SERVICE, diff --git a/java/servers/test/org/xtreemfs/common/clients/internal/RAID0ObjectMapperTest.java b/java/servers/test/org/xtreemfs/common/clients/internal/RAID0ObjectMapperTest.java index 2b143e759..5798615b2 100644 --- a/java/servers/test/org/xtreemfs/common/clients/internal/RAID0ObjectMapperTest.java +++ b/java/servers/test/org/xtreemfs/common/clients/internal/RAID0ObjectMapperTest.java @@ -7,25 +7,32 @@ package org.xtreemfs.common.clients.internal; +import static org.junit.Assert.assertEquals; + import java.util.ArrayList; import java.util.List; + import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; -import static org.junit.Assert.*; +import org.junit.rules.TestRule; import org.xtreemfs.common.clients.internal.ObjectMapper.ObjectRequest; import org.xtreemfs.common.xloc.Replica; import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy; import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestHelper; /** * * @author bjko */ public class RAID0ObjectMapperTest { + @Rule + public final TestRule testLog = TestHelper.testLog; public RAID0ObjectMapperTest() { } @@ -51,8 +58,6 @@ public class RAID0ObjectMapperTest { */ @Test public void testReadRequest() { - System.out.println("readRequest"); - StripingPolicy sp = SetupUtils.getStripingPolicy(3, 7); List s = new ArrayList(3); s.add("1"); @@ -130,8 +135,6 @@ public class RAID0ObjectMapperTest { */ @Test public void testWriteRequest() { - System.out.println("writeRequest"); - StripingPolicy sp = SetupUtils.getStripingPolicy(3, 7); List s = new ArrayList(3); s.add("1"); diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/ClientTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/ClientTest.java index c67d1caea..6dab18bcc 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/ClientTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/ClientTest.java @@ -14,7 +14,9 @@ import java.util.List; import org.junit.AfterClass; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.dir.DIRClient; import org.xtreemfs.dir.DIRConfig; import org.xtreemfs.dir.DIRRequestDispatcher; @@ -37,8 +39,11 @@ import org.xtreemfs.pbrpc.generatedinterfaces.MRC.Stat; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.Volumes; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; public class ClientTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private static DIRRequestDispatcher dir; diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/FileHandleTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/FileHandleTest.java index 095e3ceee..335c5c496 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/FileHandleTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/FileHandleTest.java @@ -14,7 +14,9 @@ import java.io.FileWriter; import org.junit.After; import org.junit.Before; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.libxtreemfs.exceptions.InvalidChecksumException; import org.xtreemfs.common.libxtreemfs.exceptions.PosixErrorException; @@ -39,6 +41,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.pbrpc.generatedinterfaces.OSD.Lock; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * @@ -46,29 +49,29 @@ import org.xtreemfs.test.TestEnvironment; * Dec 15, 2011 */ public class FileHandleTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - private static TestEnvironment testEnv; + private static TestEnvironment testEnv; - private static UserCredentials userCredentials; + private static UserCredentials userCredentials; - private static Auth auth = RPCAuthentication.authNone; + private static Auth auth = RPCAuthentication.authNone; - private static String mrcAddress; + private static String mrcAddress; - private static String dirAddress; + private static String dirAddress; - private static StripingPolicy defaultStripingPolicy; + private static StripingPolicy defaultStripingPolicy; - private static MRCServiceClient mrcClient; + private static MRCServiceClient mrcClient; - private static AdminClient client; + private static AdminClient client; - private static Options options; + private static Options options; @Before public void setUp() throws Exception { - System.out.println("TEST: " + VolumeTest.class.getSimpleName()); - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); Logging.start(Logging.LEVEL_WARN); diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/FileSizeUpdateThreadTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/FileSizeUpdateThreadTest.java index eadf3c4d7..0eee8f639 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/FileSizeUpdateThreadTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/FileSizeUpdateThreadTest.java @@ -10,7 +10,9 @@ import static org.junit.Assert.assertEquals; import org.junit.AfterClass; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.dir.DIRConfig; import org.xtreemfs.dir.DIRRequestDispatcher; import org.xtreemfs.foundation.logging.Logging; @@ -23,11 +25,14 @@ import org.xtreemfs.pbrpc.generatedinterfaces.MRC.Stat; import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * Tests if FileSizeUpdateThread works correctly. */ public class FileSizeUpdateThreadTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private static DIRRequestDispatcher dir; diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/MetadataCacheTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/MetadataCacheTest.java index f93c2634c..91a9e40cc 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/MetadataCacheTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/MetadataCacheTest.java @@ -16,9 +16,10 @@ import static org.junit.Assert.assertTrue; import java.util.Random; import org.junit.Before; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.foundation.logging.Logging; -import org.xtreemfs.foundation.logging.Logging.Category; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.OSDWriteResponse; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.DirectoryEntries; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.DirectoryEntry; @@ -27,6 +28,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.MRC.Stat; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.XAttr; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.listxattrResponse; import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestHelper; /** * @@ -34,6 +36,8 @@ import org.xtreemfs.test.SetupUtils; * Sep 30, 2011 */ public class MetadataCacheTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private class MetadataCacheSmasherThread extends Thread { diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/RPCCallerTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/RPCCallerTest.java index 187469f45..6fe624e56 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/RPCCallerTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/RPCCallerTest.java @@ -14,7 +14,9 @@ import java.util.Map; import org.junit.AfterClass; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.libxtreemfs.RPCCaller.CallGenerator; import org.xtreemfs.dir.DIRConfig; @@ -23,7 +25,6 @@ import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.json.JSONParser; import org.xtreemfs.foundation.json.JSONString; import org.xtreemfs.foundation.logging.Logging; -import org.xtreemfs.foundation.logging.Logging.Category; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; @@ -41,8 +42,11 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.writeRequest; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; public class RPCCallerTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private static DIRRequestDispatcher dir; @@ -63,8 +67,6 @@ public class RPCCallerTest { @BeforeClass public static void initializeTest() throws Exception { - System.out.println("TEST: " + RPCCallerTest.class.getSimpleName()); - Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/ReadOnlyReplicationTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/ReadOnlyReplicationTest.java index 6346317af..bb73d5cff 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/ReadOnlyReplicationTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/ReadOnlyReplicationTest.java @@ -11,7 +11,9 @@ import java.io.IOException; import org.junit.AfterClass; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.xloc.ReplicationFlags; import org.xtreemfs.foundation.logging.Logging; @@ -19,12 +21,12 @@ import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; import org.xtreemfs.foundation.util.FSUtils; -import org.xtreemfs.mrc.osdselection.OSDSelectionPolicy; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.OSDSelectionPolicyType; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SYSTEM_V_FCNTL; import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * Read a partial replica "simultaneously" by two threads. @@ -37,6 +39,9 @@ import org.xtreemfs.test.TestEnvironment; * */ public class ReadOnlyReplicationTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + private static TestEnvironment testEnv; private static UserCredentials userCredentials; @@ -53,8 +58,6 @@ public class ReadOnlyReplicationTest { @BeforeClass public static void initializeTest() throws Exception { - System.out.println("TEST: " + ReadOnlyReplicationTest.class.getSimpleName()); - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); Logging.start(Logging.LEVEL_WARN); diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/StripeTranslatorTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/StripeTranslatorTest.java index 2c9d56b09..fb4c95286 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/StripeTranslatorTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/StripeTranslatorTest.java @@ -13,14 +13,13 @@ import static org.junit.Assert.assertTrue; import java.lang.reflect.Field; import java.util.Vector; +import org.junit.Rule; import org.junit.Test; -import org.xtreemfs.common.libxtreemfs.ReadOperation; -import org.xtreemfs.common.libxtreemfs.StripeTranslator; -import org.xtreemfs.common.libxtreemfs.StripeTranslatorRaid0; -import org.xtreemfs.common.libxtreemfs.WriteOperation; +import org.junit.rules.TestRule; import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicyType; +import org.xtreemfs.test.TestHelper; /** * Test against the bug from Issue 277 (erroneous calculation of object offsets for read requests). The test @@ -31,6 +30,8 @@ import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicyType; * @author jensvfischer */ public class StripeTranslatorTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private static final int XTREEMFS_BLOCK_SIZE_IN_BYTES = 128 * 1024; private static final int GiB_IN_BYTES = 1024 * 1024 * 1024; diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/UUIDIteratorTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/UUIDIteratorTest.java index 55be531c4..95d181b89 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/UUIDIteratorTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/UUIDIteratorTest.java @@ -6,75 +6,37 @@ */ package org.xtreemfs.common.libxtreemfs; -import java.io.IOException; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; + import java.util.LinkedList; import java.util.List; -import junit.framework.TestCase; - -import org.junit.After; -import org.xtreemfs.common.libxtreemfs.UUIDIterator; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.libxtreemfs.exceptions.UUIDIteratorListIsEmpyException; -import org.xtreemfs.dir.DIRClient; -import org.xtreemfs.dir.DIRConfig; -import org.xtreemfs.dir.DIRRequestDispatcher; -import org.xtreemfs.foundation.logging.Logging; -import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; -import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; -import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.test.SetupUtils; -import org.xtreemfs.test.TestEnvironment; - - - - -/** - * - *
Sep 6, 2011 - */ -public class UUIDIteratorTest extends TestCase { - - DIRRequestDispatcher dir; - - TestEnvironment testEnv; +import org.xtreemfs.test.TestHelper; - DIRConfig dirConfig; - UserCredentials userCredentials; - - Auth auth = RPCAuthentication.authNone; - - DIRClient dirClient; +public class UUIDIteratorTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - /** - * - */ - public UUIDIteratorTest() throws IOException { - dirConfig = SetupUtils.createDIRConfig(); - Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); + @BeforeClass + public static void initializeTest() throws Exception { } - - /* (non-Javadoc) - * @see junit.framework.TestCase#setUp() - */ - @Override - protected void setUp() throws Exception { - super.setUp(); - - System.out.println("TEST: " + getClass().getSimpleName()); + @Before + public void setUp() throws Exception { FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); - } - - @Override - @After - public void tearDown() throws Exception { - - } - + @Test public void testUUIDIterator() throws Exception { final String UUID_STRING1 = "uuidstring1"; @@ -126,6 +88,7 @@ public class UUIDIteratorTest extends TestCase { } + @Test public void testAddUuidCollection() { List uuidList = new LinkedList(); uuidList.add("uuidstring1"); @@ -138,6 +101,7 @@ public class UUIDIteratorTest extends TestCase { assertEquals(3, iterator.size()); } + @Test public void testSetCurrentUuid() throws Exception { final String UUID_STRING1 = "uuidstring1"; final String UUID_STRING2 = "uuidstring2"; diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/UUIDResolverTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/UUIDResolverTest.java index 43eb8d2ab..92ba658c6 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/UUIDResolverTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/UUIDResolverTest.java @@ -1,72 +1,51 @@ package org.xtreemfs.common.libxtreemfs; -import java.io.IOException; - -import junit.framework.TestCase; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; import org.junit.After; import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.libxtreemfs.exceptions.AddressToUUIDNotFoundException; import org.xtreemfs.common.libxtreemfs.exceptions.VolumeNotFoundException; -import org.xtreemfs.dir.DIRConfig; -import org.xtreemfs.dir.DIRRequestDispatcher; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; -public class UUIDResolverTest extends TestCase { - private DIRRequestDispatcher dir; - - private TestEnvironment testEnv; +public class UUIDResolverTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - private final DIRConfig dirConfig; + private TestEnvironment testEnv; - private UserCredentials userCredentials; + private UserCredentials userCredentials; - private final Auth auth = RPCAuthentication.authNone; - - /** - * - */ - public UUIDResolverTest() throws IOException { - Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); + private final Auth auth = RPCAuthentication.authNone; - dirConfig = SetupUtils.createDIRConfig(); - } - - @Override @Before public void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName()); - - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); - - dir = new DIRRequestDispatcher(dirConfig, SetupUtils.createDIRdbsConfig()); - dir.startup(); - dir.waitForStartup(); + Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_CLIENT, - TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.RPC_CLIENT, - TestEnvironment.Services.MRC, TestEnvironment.Services.OSD }); + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.TIME_SYNC, + TestEnvironment.Services.RPC_CLIENT, TestEnvironment.Services.MRC, TestEnvironment.Services.OSD }); testEnv.start(); userCredentials = UserCredentials.newBuilder().setUsername("test").addGroups("test").build(); } - @Override @After public void tearDown() throws Exception { testEnv.shutdown(); - - dir.shutdown(); - - dir.waitForShutdown(); } + @Test public void testUUIDResolver() throws Exception { final String VOLUME_NAME_1 = "foobar"; final String VOLUME_NAME_2 = "barfoo"; @@ -75,8 +54,8 @@ public class UUIDResolverTest extends TestCase { String dirAddress = testEnv.getDIRAddress().getHostName() + ":" + testEnv.getDIRAddress().getPort(); - ClientImplementation client = (ClientImplementation) ClientFactory.createClient(dirAddress, - userCredentials, null, options); + ClientImplementation client = (ClientImplementation) ClientFactory.createClient(dirAddress, userCredentials, + null, options); client.start(); UUIDResolver resolver = client; @@ -137,8 +116,8 @@ public class UUIDResolverTest extends TestCase { // should throw an VolumeNotFoundException // Do not retry here to avoid unnecessary lengthy executions. options.setMaxTries(1); - ClientImplementation clientFail = (ClientImplementation) ClientFactory.createClient( - "doesntexists:44444", userCredentials, null, options); + ClientImplementation clientFail = (ClientImplementation) ClientFactory.createClient("doesntexists:44444", + userCredentials, null, options); clientFail.start(); UUIDResolver resolverFail = clientFail; try { diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java index 273483dda..f0d885bb5 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java @@ -19,7 +19,9 @@ import java.util.List; import org.junit.AfterClass; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.libxtreemfs.Volume.StripeLocation; import org.xtreemfs.common.libxtreemfs.exceptions.PosixErrorException; @@ -57,8 +59,11 @@ import org.xtreemfs.pbrpc.generatedinterfaces.MRC.statvfsRequest; import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; public class VolumeTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private static DIRRequestDispatcher dir; @@ -91,8 +96,6 @@ public class VolumeTest { @BeforeClass public static void initializeTest() throws Exception { - System.out.println("TEST: " + VolumeTest.class.getSimpleName()); - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); diff --git a/java/servers/test/org/xtreemfs/common/statusserver/StatusServerTest.java b/java/servers/test/org/xtreemfs/common/statusserver/StatusServerTest.java index 6bc8c112d..a8881fdfd 100644 --- a/java/servers/test/org/xtreemfs/common/statusserver/StatusServerTest.java +++ b/java/servers/test/org/xtreemfs/common/statusserver/StatusServerTest.java @@ -8,12 +8,17 @@ package org.xtreemfs.common.statusserver; import java.io.IOException; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.pbrpc.generatedinterfaces.DIR.ServiceType; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.PORTS; import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestHelper; public class StatusServerTest { + @Rule + public final TestRule testLog = TestHelper.testLog; /* * Start two servers concurrently at the same port. The second server should keep retrying to bind the diff --git a/java/servers/test/org/xtreemfs/integrationtest/ExternalIntegrationTest.java b/java/servers/test/org/xtreemfs/integrationtest/ExternalIntegrationTest.java index 9ae15f778..c26d6365a 100644 --- a/java/servers/test/org/xtreemfs/integrationtest/ExternalIntegrationTest.java +++ b/java/servers/test/org/xtreemfs/integrationtest/ExternalIntegrationTest.java @@ -7,16 +7,20 @@ package org.xtreemfs.integrationtest; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + import java.io.File; -import java.io.FileInputStream; -import java.io.FileOutputStream; import java.io.FileWriter; -import java.io.RandomAccessFile; - -import junit.framework.TestCase; -import junit.textui.TestRunner; +import org.junit.After; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.foundation.util.FSUtils; +import org.xtreemfs.test.TestHelper; /** * This test case externally tests the integration of all XtreemFS components at @@ -40,21 +44,22 @@ import org.xtreemfs.foundation.util.FSUtils; * @author stender * */ -public class ExternalIntegrationTest extends TestCase { +public class ExternalIntegrationTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private static File xtreemFSMountPoint = new File("/tmp/xtreemfs"); - protected void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - + @Before + public void setUp() throws Exception { FSUtils.delTree(xtreemFSMountPoint); xtreemFSMountPoint.mkdirs(); assertEquals(0, xtreemFSMountPoint.list().length); } - protected void tearDown() throws Exception { + @After + public void tearDown() throws Exception { } @@ -63,6 +68,7 @@ public class ExternalIntegrationTest extends TestCase { * * @throws Exception */ + @Test public void testCreateDelete() throws Exception { assertEquals(0, xtreemFSMountPoint.listFiles().length); @@ -102,6 +108,7 @@ public class ExternalIntegrationTest extends TestCase { delete(file2); } + @Test public void testRename() throws Exception { // create a file and a directory @@ -144,6 +151,7 @@ public class ExternalIntegrationTest extends TestCase { } + @Test public void testBatchCreateDeleteRename() throws Exception { final int numFiles = 100; @@ -315,19 +323,6 @@ public class ExternalIntegrationTest extends TestCase { // raf.close(); // } - public static void main(String[] args) { - - // if (args.length != 1) { - // System.out - // .println("usage: java " - // + ExternalIntegrationTest.class.getName() - // + " "); - // System.exit(1); - // } - // xtreemFSMountPoint = new File(args[0]); - - TestRunner.run(ExternalIntegrationTest.class); - } private File createDir(File parentDir, String name) { diff --git a/java/servers/test/org/xtreemfs/test/TestEnvironment.java b/java/servers/test/org/xtreemfs/test/TestEnvironment.java index 12226040c..90036c9a4 100644 --- a/java/servers/test/org/xtreemfs/test/TestEnvironment.java +++ b/java/servers/test/org/xtreemfs/test/TestEnvironment.java @@ -132,6 +132,13 @@ public class TestEnvironment { return osds.get(osdUuid).getConfig(); } + /** + * Returns the OSD config of the first OSD. + */ + public OSDConfig getOSDConfig() { + return osdConfigs[0]; + } + /** * Stops the OSD with the UUID "osdUuid". * diff --git a/java/servers/test/org/xtreemfs/test/TestHelper.java b/java/servers/test/org/xtreemfs/test/TestHelper.java new file mode 100644 index 000000000..29a3c41fd --- /dev/null +++ b/java/servers/test/org/xtreemfs/test/TestHelper.java @@ -0,0 +1,15 @@ +package org.xtreemfs.test; + +import org.junit.rules.TestRule; +import org.junit.rules.TestWatcher; +import org.junit.runner.Description; + +public class TestHelper { + public static final TestRule testLog = new TestWatcher() { + protected void starting(Description description) { + System.out.println("TEST: " + description.getTestClass().getSimpleName() + + "." + description.getMethodName()); + } + }; + +} diff --git a/java/servers/test/org/xtreemfs/test/common/CapabilityTest.java b/java/servers/test/org/xtreemfs/test/common/CapabilityTest.java index 6dd6fd17f..94c8a4288 100644 --- a/java/servers/test/org/xtreemfs/test/common/CapabilityTest.java +++ b/java/servers/test/org/xtreemfs/test/common/CapabilityTest.java @@ -8,53 +8,61 @@ package org.xtreemfs.test.common; -import junit.framework.TestCase; -import junit.textui.TestRunner; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; +import org.junit.After; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.osd.storage.HashStorageLayout; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SnapConfig; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; + +public class CapabilityTest { + @Rule + public final TestRule testLog = TestHelper.testLog; -public class CapabilityTest extends TestCase { - private static final String SECRET = "secret"; - + private TestEnvironment te; - - protected void setUp() throws Exception { + + @Before + public void setUp() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - + + te = new TestEnvironment(TestEnvironment.Services.TIME_SYNC); te.start(); } - - protected void tearDown() throws Exception { + + @After + public void tearDown() throws Exception { te.shutdown(); } - + + @Test public void testCapability() throws Exception { - + // create and test capability that is valid for an hour - Capability cap = new Capability("1254" + ((HashStorageLayout.WIN) ? ":" : "_") + "AB", 1, 60, System - .currentTimeMillis() / 1000 + 100, "", 1, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, SECRET); - + Capability cap = new Capability("1254" + ((HashStorageLayout.WIN) ? ":" : "_") + "AB", 1, 60, + System.currentTimeMillis() / 1000 + 100, "", 1, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, SECRET); + assertTrue(cap.isValid()); assertEquals(cap.getFileId(), "1254" + ((HashStorageLayout.WIN) ? ":" : "_") + "AB"); assertEquals(cap.getAccessMode(), 1); - + // assert that a capability is invalid if it has timed out - Capability cap4 = new Capability("bla" + ((HashStorageLayout.WIN) ? ":" : "_") + "2", 1, 60, System - .currentTimeMillis() / 1000 - 3600, "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, SECRET); + Capability cap4 = new Capability("bla" + ((HashStorageLayout.WIN) ? ":" : "_") + "2", 1, 60, + System.currentTimeMillis() / 1000 - 3600, "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, + SECRET); assertFalse(cap4.isValid()); - - } - - public static void main(String[] args) { - TestRunner.run(CapabilityTest.class); + } - } diff --git a/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java b/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java index 72fc0621a..7ad2142ce 100644 --- a/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java +++ b/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java @@ -1,9 +1,11 @@ package org.xtreemfs.test.common.benchmark; -import static org.junit.Assert.*; import static org.junit.Assert.assertEquals; -import static org.xtreemfs.common.benchmark.BenchmarkConfig.ConfigBuilder; -import static org.xtreemfs.common.benchmark.BenchmarkUtils.*; +import static org.junit.Assert.assertSame; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; +import static org.xtreemfs.common.benchmark.BenchmarkUtils.KiB_IN_BYTES; +import static org.xtreemfs.common.benchmark.BenchmarkUtils.MiB_IN_BYTES; import static org.xtreemfs.foundation.pbrpc.client.RPCAuthentication.authNone; import java.io.IOException; @@ -12,9 +14,23 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.List; -import org.junit.*; -import org.xtreemfs.common.benchmark.*; -import org.xtreemfs.common.libxtreemfs.*; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; +import org.xtreemfs.common.benchmark.BenchmarkConfig; +import org.xtreemfs.common.benchmark.BenchmarkConfig.ConfigBuilder; +import org.xtreemfs.common.benchmark.BenchmarkResult; +import org.xtreemfs.common.benchmark.BenchmarkUtils; +import org.xtreemfs.common.benchmark.BenchmarkUtils.BenchmarkType; +import org.xtreemfs.common.benchmark.Controller; +import org.xtreemfs.common.libxtreemfs.Client; +import org.xtreemfs.common.libxtreemfs.ClientFactory; +import org.xtreemfs.common.libxtreemfs.Options; +import org.xtreemfs.common.libxtreemfs.Volume; import org.xtreemfs.common.libxtreemfs.exceptions.VolumeNotFoundException; import org.xtreemfs.dir.DIRClient; import org.xtreemfs.dir.DIRConfig; @@ -30,8 +46,11 @@ import org.xtreemfs.pbrpc.generatedinterfaces.DIRServiceClient; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; public class ControllerIntegrationTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private static DIRRequestDispatcher dir; private static TestEnvironment testEnv; diff --git a/java/servers/test/org/xtreemfs/test/common/monitoring/DIRMonitoringTest.java b/java/servers/test/org/xtreemfs/test/common/monitoring/DIRMonitoringTest.java index 57b33554d..2d782d034 100644 --- a/java/servers/test/org/xtreemfs/test/common/monitoring/DIRMonitoringTest.java +++ b/java/servers/test/org/xtreemfs/test/common/monitoring/DIRMonitoringTest.java @@ -7,27 +7,30 @@ package org.xtreemfs.test.common.monitoring; -import java.io.IOException; -import java.net.InetSocketAddress; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; -import junit.framework.TestCase; +import java.net.InetSocketAddress; import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.clients.Client; import org.xtreemfs.common.monitoring.generatedcode.XTREEMFS_MIBOidTable; import org.xtreemfs.dir.DIRConfig; -import org.xtreemfs.dir.DIRRequestDispatcher; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.mrc.MRCConfig; import org.xtreemfs.mrc.MRCRequestDispatcher; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; import com.sun.management.snmp.SnmpDefinitions; import com.sun.management.snmp.SnmpInt; @@ -40,43 +43,33 @@ import com.sun.management.snmp.manager.SnmpPeer; import com.sun.management.snmp.manager.SnmpRequest; import com.sun.management.snmp.manager.SnmpSession; -public class DIRMonitoringTest extends TestCase { - - DIRRequestDispatcher dir; +public class DIRMonitoringTest { + @Rule + public final TestRule testLog = TestHelper.testLog; TestEnvironment testEnv; - DIRConfig dirConfig; - SnmpPeer dirAgent, mrcAgent, osdAgent; SnmpSession session; - public DIRMonitoringTest() throws IOException { + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - - dirConfig = SetupUtils.createDIRConfig(); } @Before public void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName()); - - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); - - dir = new DIRRequestDispatcher(dirConfig, SetupUtils.createDIRdbsConfig()); - dir.startup(); - dir.waitForStartup(); - - testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_CLIENT, - TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.RPC_CLIENT, - TestEnvironment.Services.MRC, TestEnvironment.Services.OSD }); + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.TIME_SYNC, + TestEnvironment.Services.RPC_CLIENT, TestEnvironment.Services.MRC, TestEnvironment.Services.OSD }); testEnv.start(); final SnmpOidTableSupport oidTable = new XTREEMFS_MIBOidTable(); SnmpOid.setSnmpOidTable(oidTable); + DIRConfig dirConfig = SetupUtils.createDIRConfig(); MRCConfig mrcConfig = SetupUtils.createMRC1Config(); OSDConfig osdConfig = SetupUtils.createMultipleOSDConfigs(1)[0]; @@ -105,11 +98,6 @@ public class DIRMonitoringTest extends TestCase { session.destroySession(); testEnv.shutdown(); - - dir.shutdown(); - - dir.waitForShutdown(); - } /** @@ -144,6 +132,7 @@ public class DIRMonitoringTest extends TestCase { } + @Test public void testAddressMappingCount() throws Exception { SnmpVarBindList result = makeSnmpGet(dirAgent, "addressMappingCount.0"); @@ -173,6 +162,7 @@ public class DIRMonitoringTest extends TestCase { } + @Test public void testServiceCount() throws Exception { SnmpVarBindList result = makeSnmpGet(dirAgent, "serviceCount.0"); diff --git a/java/servers/test/org/xtreemfs/test/common/monitoring/GeneralMonitoringTest.java b/java/servers/test/org/xtreemfs/test/common/monitoring/GeneralMonitoringTest.java index 4e5c69949..ddbdf914b 100644 --- a/java/servers/test/org/xtreemfs/test/common/monitoring/GeneralMonitoringTest.java +++ b/java/servers/test/org/xtreemfs/test/common/monitoring/GeneralMonitoringTest.java @@ -7,18 +7,19 @@ package org.xtreemfs.test.common.monitoring; -import java.io.IOException; - -import junit.framework.TestCase; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.babudb.BabuDBFactory; import org.xtreemfs.common.monitoring.generatedcode.XTREEMFS_MIBOidTable; import org.xtreemfs.dir.DIRConfig; -import org.xtreemfs.dir.DIRRequestDispatcher; import org.xtreemfs.foundation.logging.Logging; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.mrc.MRCConfig; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.DIRServiceConstants; @@ -26,6 +27,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceConstants; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceConstants; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; import com.sun.management.snmp.SnmpDefinitions; import com.sun.management.snmp.SnmpInt; @@ -39,82 +41,69 @@ import com.sun.management.snmp.manager.SnmpPeer; import com.sun.management.snmp.manager.SnmpRequest; import com.sun.management.snmp.manager.SnmpSession; -public class GeneralMonitoringTest extends TestCase { - - private DIRRequestDispatcher dir; - - private TestEnvironment testEnv; - - private DIRConfig dirConfig; - - private MRCConfig mrcConfig; - - private OSDConfig osdConfig; - - private SnmpPeer dirAgent, mrcAgent, osdAgent; - - private SnmpSession session; - - public GeneralMonitoringTest() throws IOException { - Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); +public class GeneralMonitoringTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - dirConfig = SetupUtils.createDIRConfig(); + private TestEnvironment testEnv; + + private DIRConfig dirConfig; + + private MRCConfig mrcConfig; + + private OSDConfig osdConfig; + + private SnmpPeer dirAgent, mrcAgent, osdAgent; + + private SnmpSession session; + + @BeforeClass + public static void setUpClass() throws Exception { + Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } - + @Before public void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName()); - - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); - - dir = new DIRRequestDispatcher(dirConfig, SetupUtils.createDIRdbsConfig()); - dir.startup(); - dir.waitForStartup(); - - testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_CLIENT, - TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.RPC_CLIENT, TestEnvironment.Services.MRC, - TestEnvironment.Services.OSD }); + + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.TIME_SYNC, + TestEnvironment.Services.RPC_CLIENT, TestEnvironment.Services.MRC, TestEnvironment.Services.OSD }); testEnv.start(); - + final SnmpOidTableSupport oidTable = new XTREEMFS_MIBOidTable(); SnmpOid.setSnmpOidTable(oidTable); - + + dirConfig = SetupUtils.createDIRConfig(); mrcConfig = SetupUtils.createMRC1Config(); osdConfig = SetupUtils.createMultipleOSDConfigs(1)[0]; - + dirAgent = new SnmpPeer(dirConfig.getSnmpAddress().getHostName(), dirConfig.getSnmpPort()); mrcAgent = new SnmpPeer(mrcConfig.getSnmpAddress().getHostName(), mrcConfig.getSnmpPort()); osdAgent = new SnmpPeer(osdConfig.getSnmpAddress().getHostName(), osdConfig.getSnmpPort()); - + // Create and set Parameters, i.e. the community strings for read-only // and read-write. // Since the config don't provide an ACL file it doens't matter what // community strings are // used here final SnmpParameters params = new SnmpParameters("public", "private"); - + dirAgent.setParams(params); mrcAgent.setParams(params); osdAgent.setParams(params); - + session = new SnmpSession("UnitTest Session"); - + } - + @After public void tearDown() throws Exception { - + session.destroySession(); - + testEnv.shutdown(); - - dir.shutdown(); - - dir.waitForShutdown(); - } - + /** * Make an SNMP get * @@ -127,183 +116,190 @@ public class GeneralMonitoringTest extends TestCase { */ private SnmpVarBindList makeSnmpGet(SnmpPeer agent, String varDesc) throws Exception { final SnmpVarBindList list = new SnmpVarBindList("UnitTest varbind list"); - + // We want to read the "sysDescr" variable. list.addVarBind(varDesc); - + // Make the SNMP get request and wait for the result. SnmpRequest request = session.snmpGetRequest(agent, null, list); final boolean completed = request.waitForCompletion(10000); - + // Check for a timeout of the request. assertTrue(completed); - + // Check if the response contains an error. int errorStatus = request.getErrorStatus(); assertEquals(SnmpDefinitions.snmpRspNoError, errorStatus); - + // Now we can extract the content of the result. return request.getResponseVarBindList(); - + } - + + @Test public void testRpcInterface() throws Exception { - + // DIR InterfaceID SnmpVarBindList result = makeSnmpGet(dirAgent, "rpcInterface.0"); SnmpVarBind varBind = result.getVarBindAt(0); SnmpInt snmpInt = varBind.getSnmpIntValue(); - + assertEquals(DIRServiceConstants.INTERFACE_ID, snmpInt.intValue()); - + // MRC InterfaceID result = makeSnmpGet(mrcAgent, "rpcInterface.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); - + assertEquals(MRCServiceConstants.INTERFACE_ID, snmpInt.intValue()); - + // OSD InterfaceID result = makeSnmpGet(osdAgent, "rpcInterface.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); - + assertEquals(OSDServiceConstants.INTERFACE_ID, snmpInt.intValue()); - + } - + + @Test public void testDatabaseVersion() throws Exception { // DIR BaduDB Version SnmpVarBindList result = makeSnmpGet(dirAgent, "databaseVersion.0"); SnmpVarBind varBind = result.getVarBindAt(0); SnmpString snmpString = varBind.getSnmpStringValue(); - + assertEquals(BabuDBFactory.BABUDB_VERSION, snmpString.toString()); - + // MRC BaduDB Version result = makeSnmpGet(mrcAgent, "databaseVersion.0"); varBind = result.getVarBindAt(0); snmpString = varBind.getSnmpStringValue(); - + assertEquals(BabuDBFactory.BABUDB_VERSION, snmpString.toString()); } - + + @Test public void testTcpPort() throws Exception { - + // DIR TCPPort SnmpVarBindList result = makeSnmpGet(dirAgent, "tcpPort.0"); SnmpVarBind varBind = result.getVarBindAt(0); SnmpInt snmpInt = varBind.getSnmpIntValue(); - + assertEquals(dirConfig.getPort(), snmpInt.intValue()); - + // MRC TCPPort result = makeSnmpGet(mrcAgent, "tcpPort.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); - + assertEquals(mrcConfig.getPort(), snmpInt.intValue()); - + // OSD TCPPort result = makeSnmpGet(osdAgent, "tcpPort.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); - + assertEquals(osdConfig.getPort(), snmpInt.intValue()); - + } - + + @Test public void testDebugLevel() throws Exception { // DIR DebugLevel SnmpVarBindList result = makeSnmpGet(dirAgent, "debugLevel.0"); SnmpVarBind varBind = result.getVarBindAt(0); SnmpInt snmpInt = varBind.getSnmpIntValue(); - + assertEquals(dirConfig.getDebugLevel(), snmpInt.intValue()); - + // MRC DebugLevel result = makeSnmpGet(mrcAgent, "debugLevel.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); - + assertEquals(mrcConfig.getDebugLevel(), snmpInt.intValue()); - + // OSD DebugLevel result = makeSnmpGet(osdAgent, "debugLevel.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); - + assertEquals(osdConfig.getDebugLevel(), snmpInt.intValue()); } - + + @Test public void testIsRunning() throws Exception { // DIR isRunning SnmpVarBindList result = makeSnmpGet(dirAgent, "isRunning.0"); SnmpVarBind varBind = result.getVarBindAt(0); SnmpString snmpString = varBind.getSnmpStringValue(); - + assertEquals("ONLINE", snmpString.toString()); - + // MRC isRunning result = makeSnmpGet(mrcAgent, "isRunning.0"); varBind = result.getVarBindAt(0); snmpString = varBind.getSnmpStringValue(); - + assertEquals("ONLINE", snmpString.toString()); - + // OSD isRunning result = makeSnmpGet(osdAgent, "isRunning.0"); varBind = result.getVarBindAt(0); snmpString = varBind.getSnmpStringValue(); - + assertEquals("ONLINE", snmpString.toString()); - + } - + + @Test public void testServiceType() throws Exception { // DIR TYPE SnmpVarBindList result = makeSnmpGet(dirAgent, "serviceType.0"); SnmpVarBind varBind = result.getVarBindAt(0); SnmpString snmpString = varBind.getSnmpStringValue(); - + assertEquals("DIR", snmpString.toString()); - + // MRC TYPE result = makeSnmpGet(mrcAgent, "serviceType.0"); varBind = result.getVarBindAt(0); snmpString = varBind.getSnmpStringValue(); - + assertEquals("MRC", snmpString.toString()); - + // OSD TYPE result = makeSnmpGet(osdAgent, "serviceType.0"); varBind = result.getVarBindAt(0); snmpString = varBind.getSnmpStringValue(); - + assertEquals("OSD", snmpString.toString()); } - + + @Test public void testServiceUUID() throws Exception { // DIR UUID SnmpVarBindList result = makeSnmpGet(dirAgent, "serviceUUID.0"); SnmpVarBind varBind = result.getVarBindAt(0); SnmpString snmpString = varBind.getSnmpStringValue(); - + assertEquals(dirConfig.getUUID().toString(), snmpString.toString()); - + // MRC UUID result = makeSnmpGet(mrcAgent, "serviceUUID.0"); varBind = result.getVarBindAt(0); snmpString = varBind.getSnmpStringValue(); - + assertEquals(mrcConfig.getUUID().toString(), snmpString.toString()); - + // OSD UUID result = makeSnmpGet(osdAgent, "serviceUUID.0"); varBind = result.getVarBindAt(0); snmpString = varBind.getSnmpStringValue(); - + assertEquals(osdConfig.getUUID().toString(), snmpString.toString()); } - + } diff --git a/java/servers/test/org/xtreemfs/test/common/monitoring/MRCMonitoringTest.java b/java/servers/test/org/xtreemfs/test/common/monitoring/MRCMonitoringTest.java index d3f09b520..f241f28ce 100644 --- a/java/servers/test/org/xtreemfs/test/common/monitoring/MRCMonitoringTest.java +++ b/java/servers/test/org/xtreemfs/test/common/monitoring/MRCMonitoringTest.java @@ -7,24 +7,29 @@ package org.xtreemfs.test.common.monitoring; -import java.io.IOException; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + import java.net.InetSocketAddress; import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.clients.Client; import org.xtreemfs.common.monitoring.generatedcode.XTREEMFS_MIBOidTable; import org.xtreemfs.dir.DIRConfig; -import org.xtreemfs.dir.DIRRequestDispatcher; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.mrc.MRCConfig; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; import com.sun.management.snmp.SnmpDefinitions; import com.sun.management.snmp.SnmpInt; @@ -37,50 +42,39 @@ import com.sun.management.snmp.manager.SnmpPeer; import com.sun.management.snmp.manager.SnmpRequest; import com.sun.management.snmp.manager.SnmpSession; -import junit.framework.TestCase; - -public class MRCMonitoringTest extends TestCase { +public class MRCMonitoringTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - private DIRRequestDispatcher dir; + private TestEnvironment testEnv; - private TestEnvironment testEnv; + private DIRConfig dirConfig; - private DIRConfig dirConfig; + private MRCConfig mrcConfig; - private MRCConfig mrcConfig; + private OSDConfig osdConfig; - private OSDConfig osdConfig; + private SnmpPeer dirAgent, mrcAgent, osdAgent; - private SnmpPeer dirAgent, mrcAgent, osdAgent; + private SnmpSession session; - private SnmpSession session; - - public MRCMonitoringTest() throws IOException { + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - - dirConfig = SetupUtils.createDIRConfig(); } @Before public void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName()); - - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); - - - dir = new DIRRequestDispatcher(dirConfig, SetupUtils.createDIRdbsConfig()); - dir.startup(); - dir.waitForStartup(); - - testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_CLIENT, - TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.RPC_CLIENT, - TestEnvironment.Services.MRC, TestEnvironment.Services.OSD }); + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.TIME_SYNC, + TestEnvironment.Services.RPC_CLIENT, TestEnvironment.Services.MRC, TestEnvironment.Services.OSD }); testEnv.start(); final SnmpOidTableSupport oidTable = new XTREEMFS_MIBOidTable(); SnmpOid.setSnmpOidTable(oidTable); + dirConfig = SetupUtils.createDIRConfig(); mrcConfig = SetupUtils.createMRC1Config(); osdConfig = SetupUtils.createMultipleOSDConfigs(1)[0]; @@ -107,11 +101,6 @@ public class MRCMonitoringTest extends TestCase { session.destroySession(); testEnv.shutdown(); - - dir.shutdown(); - - dir.waitForShutdown(); - } /** @@ -146,6 +135,7 @@ public class MRCMonitoringTest extends TestCase { } + @Test public void testVolumeCount() throws Exception { // At first there should be no volumes @@ -157,8 +147,8 @@ public class MRCMonitoringTest extends TestCase { Client c = new Client(new InetSocketAddress[] { testEnv.getDIRAddress() }, 10000, 60000, null); c.start(); - - UserCredentials uc = UserCredentials.newBuilder().setUsername("test").addGroups("test").build(); + + UserCredentials uc = UserCredentials.newBuilder().setUsername("test").addGroups("test").build(); c.createVolume("foobar", RPCAuthentication.authNone, uc, SetupUtils.getStripingPolicy(64, 1), AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, 0777); @@ -183,63 +173,59 @@ public class MRCMonitoringTest extends TestCase { snmpInt = varBind.getSnmpIntValue(); assertEquals(4, snmpInt.intValue()); - - + c.deleteVolume("foobar3", RPCAuthentication.authNone, uc); c.deleteVolume("foobar", RPCAuthentication.authNone, uc); - + // Now there should be two volumes result = makeSnmpGet(mrcAgent, "volumeCount.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); assertEquals(2, snmpInt.intValue()); - - + c.deleteVolume("foobar2", RPCAuthentication.authNone, uc); - + // Now there should be one volumes - + result = makeSnmpGet(mrcAgent, "volumeCount.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); assertEquals(1, snmpInt.intValue()); - + try { c.createVolume("foobar4", RPCAuthentication.authNone, uc, SetupUtils.getStripingPolicy(64, 1), AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, 0777); - + } catch (Exception e) { - //Ignore + // Ignore } - + // Now there should be still one volume result = makeSnmpGet(mrcAgent, "volumeCount.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); assertEquals(1, snmpInt.intValue()); - try { c.deleteVolume("foobar2", RPCAuthentication.authNone, uc); - + } catch (Exception e) { // Ignore } - - // Now there should be still one volume + + // Now there should be still one volume result = makeSnmpGet(mrcAgent, "volumeCount.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); assertEquals(1, snmpInt.intValue()); - - + c.deleteVolume("foobar4", RPCAuthentication.authNone, uc); - - // Now there should be zero volumes + + // Now there should be zero volumes result = makeSnmpGet(mrcAgent, "volumeCount.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); diff --git a/java/servers/test/org/xtreemfs/test/common/monitoring/OSDMonitoringTest.java b/java/servers/test/org/xtreemfs/test/common/monitoring/OSDMonitoringTest.java index e69bd13df..2fdc0045d 100644 --- a/java/servers/test/org/xtreemfs/test/common/monitoring/OSDMonitoringTest.java +++ b/java/servers/test/org/xtreemfs/test/common/monitoring/OSDMonitoringTest.java @@ -7,27 +7,32 @@ package org.xtreemfs.test.common.monitoring; -import java.io.IOException; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + import java.net.InetSocketAddress; import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.clients.Client; import org.xtreemfs.common.clients.File; import org.xtreemfs.common.clients.RandomAccessFile; import org.xtreemfs.common.clients.Volume; import org.xtreemfs.common.monitoring.generatedcode.XTREEMFS_MIBOidTable; import org.xtreemfs.dir.DIRConfig; -import org.xtreemfs.dir.DIRRequestDispatcher; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.mrc.MRCConfig; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; import com.sun.management.snmp.SnmpDefinitions; import com.sun.management.snmp.SnmpInt; @@ -40,50 +45,39 @@ import com.sun.management.snmp.manager.SnmpPeer; import com.sun.management.snmp.manager.SnmpRequest; import com.sun.management.snmp.manager.SnmpSession; -import junit.framework.TestCase; - -public class OSDMonitoringTest extends TestCase { - - private DIRRequestDispatcher dir; +public class OSDMonitoringTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - private TestEnvironment testEnv; + private TestEnvironment testEnv; - private DIRConfig dirConfig; + private DIRConfig dirConfig; - private MRCConfig mrcConfig; + private MRCConfig mrcConfig; - private OSDConfig osdConfig; + private OSDConfig osdConfig; - private SnmpPeer dirAgent, mrcAgent, osdAgent; + private SnmpPeer dirAgent, mrcAgent, osdAgent; - private SnmpSession session; + private SnmpSession session; - public OSDMonitoringTest() throws IOException { + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - - dirConfig = SetupUtils.createDIRConfig(); } @Before - @Override public void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName()); - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); - - dir = new DIRRequestDispatcher(dirConfig, SetupUtils.createDIRdbsConfig()); - dir.startup(); - dir.waitForStartup(); - - testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_CLIENT, - TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.RPC_CLIENT, - TestEnvironment.Services.MRC, TestEnvironment.Services.OSD }); + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.TIME_SYNC, + TestEnvironment.Services.RPC_CLIENT, TestEnvironment.Services.MRC, TestEnvironment.Services.OSD }); testEnv.start(); final SnmpOidTableSupport oidTable = new XTREEMFS_MIBOidTable(); SnmpOid.setSnmpOidTable(oidTable); + dirConfig = SetupUtils.createDIRConfig(); mrcConfig = SetupUtils.createMRC1Config(); osdConfig = SetupUtils.createMultipleOSDConfigs(1)[0]; @@ -105,17 +99,11 @@ public class OSDMonitoringTest extends TestCase { } @After - @Override public void tearDown() throws Exception { session.destroySession(); testEnv.shutdown(); - - dir.shutdown(); - - dir.waitForShutdown(); - } /** @@ -150,43 +138,42 @@ public class OSDMonitoringTest extends TestCase { } + @Test public void testNumOpenFiles() throws Exception { - // there should be no open files because nothing is written/read on the OSD SnmpVarBindList result = makeSnmpGet(osdAgent, "numOpenFiles.0"); SnmpVarBind varBind = result.getVarBindAt(0); SnmpInt snmpInt = varBind.getSnmpIntValue(); - + assertEquals(0, snmpInt.intValue()); - - + Client c = new Client(new InetSocketAddress[] { testEnv.getDIRAddress() }, 10000, 60000, null); c.start(); - UserCredentials uc = UserCredentials.newBuilder().setUsername("test").addGroups("test").build(); + UserCredentials uc = UserCredentials.newBuilder().setUsername("test").addGroups("test").build(); c.createVolume("foobar", RPCAuthentication.authNone, uc, SetupUtils.getStripingPolicy(64, 1), AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, 0777); Volume v = c.getVolume("foobar", uc); - + File f = v.getFile("/foo"); - + f.createFile(); RandomAccessFile raf = f.open("rw", 0777); - + byte[] data = new byte[2048]; raf.write(data, 0, data.length); - + result = makeSnmpGet(osdAgent, "numOpenFiles.0"); varBind = result.getVarBindAt(0); snmpInt = varBind.getSnmpIntValue(); - + assertEquals(1, snmpInt.intValue()); - + raf.close(); f.delete(); c.deleteVolume("foobar", RPCAuthentication.authNone, uc); - + } } diff --git a/java/servers/test/org/xtreemfs/test/common/striping/LocationsCacheTest.java b/java/servers/test/org/xtreemfs/test/common/striping/LocationsCacheTest.java index 34971d757..3d29e26c2 100644 --- a/java/servers/test/org/xtreemfs/test/common/striping/LocationsCacheTest.java +++ b/java/servers/test/org/xtreemfs/test/common/striping/LocationsCacheTest.java @@ -9,45 +9,51 @@ package org.xtreemfs.test.common.striping; -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; + +import org.junit.After; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.xloc.XLocations; import org.xtreemfs.osd.LocationsCache; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.XLocSet; +import org.xtreemfs.test.TestHelper; /** * This class implements the tests for LocationsCache * * @author jmalo */ -public class LocationsCacheTest extends TestCase { +public class LocationsCacheTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private LocationsCache cache; - private final int maximumSize = 3; - - /** Creates a new instance of LocationsCacheTest */ - public LocationsCacheTest(String testName) { - super(testName); - } + private final int maximumSize = 3; - protected void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); + @Before + public void setUp() throws Exception { cache = new LocationsCache(maximumSize); } - protected void tearDown() throws Exception { + @After + public void tearDown() throws Exception { cache = null; } /** * It tests the update method */ + @Test public void testUpdate() throws Exception { XLocSet xlocSet = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").setVersion(1).build(); - XLocations loc = new XLocations(xlocSet,null); + XLocations loc = new XLocations(xlocSet, null); for (int i = 0; i < 3 * maximumSize; i++) { cache.update("F" + i, loc); @@ -67,13 +73,14 @@ public class LocationsCacheTest extends TestCase { /** * It tests the getVersion method */ + @Test public void testGetVersion() throws Exception { XLocSet xlocSet0 = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").setVersion(1).build(); XLocSet xlocSet1 = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").setVersion(2).build(); - XLocations loc0 = new XLocations(xlocSet0,null); - XLocations loc1 = new XLocations(xlocSet1,null); + XLocations loc0 = new XLocations(xlocSet0, null); + XLocations loc1 = new XLocations(xlocSet1, null); String fileId = "F0"; // It asks the version number of an inexistent entry @@ -91,10 +98,11 @@ public class LocationsCacheTest extends TestCase { /** * It tests the getLocations method */ + @Test public void testGetLocations() throws Exception { XLocSet xlocSet = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").setVersion(1).build(); - XLocations loc = new XLocations(xlocSet,null); + XLocations loc = new XLocations(xlocSet, null); // It fills the cache for (int i = 0; i < maximumSize; i++) { @@ -124,8 +132,4 @@ public class LocationsCacheTest extends TestCase { } } } - - public static void main(String[] args) { - TestRunner.run(LocationsCacheTest.class); - } } diff --git a/java/servers/test/org/xtreemfs/test/common/striping/LocationsTest.java b/java/servers/test/org/xtreemfs/test/common/striping/LocationsTest.java index 1f2dbf6e2..23b4d4014 100644 --- a/java/servers/test/org/xtreemfs/test/common/striping/LocationsTest.java +++ b/java/servers/test/org/xtreemfs/test/common/striping/LocationsTest.java @@ -9,13 +9,20 @@ package org.xtreemfs.test.common.striping; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; + import java.util.ArrayList; import java.util.List; -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.common.xloc.ReplicationFlags; import org.xtreemfs.common.xloc.XLocations; @@ -24,21 +31,21 @@ import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replica; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.XLocSet; import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestHelper; /** * This class implements the tests for Locations * * @author jmalo */ -public class LocationsTest extends TestCase { +public class LocationsTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - List osds = new ArrayList(); + static List osds = new ArrayList(); - /** - * Creates a new instance of LocationsTest - */ - public LocationsTest(String testName) { - super(testName); + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); osds.add(new ServiceUUID("http://127.0.0.1:65535")); @@ -47,18 +54,17 @@ public class LocationsTest extends TestCase { osds.add(new ServiceUUID("http://10.0.0.1:65535")); } - @Override - protected void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); + @Before + public void setUp() throws Exception { } - @Override - protected void tearDown() throws Exception { + @After + public void tearDown() throws Exception { } + @Test public void testLocalReplica() throws Exception { - List osdList = new ArrayList(); for (ServiceUUID osd : osds) { osdList.add(osd.toString()); @@ -67,9 +73,12 @@ public class LocationsTest extends TestCase { List rep2List = new ArrayList(); rep2List.add(osds.get(3).toString()); - Replica r1 = Replica.newBuilder().setReplicationFlags(0).setStripingPolicy(SetupUtils.getStripingPolicy(4, 128)).addAllOsdUuids(osdList).build(); - Replica r2 = Replica.newBuilder().setReplicationFlags(0).setStripingPolicy(SetupUtils.getStripingPolicy(4, 128)).addAllOsdUuids(rep2List).build(); - XLocSet xlocset = XLocSet.newBuilder().setReadOnlyFileSize(0).setVersion(1).addReplicas(r1).addReplicas(r2).setReplicaUpdatePolicy("").build();// XLocSet(0, rset, "", 1); + Replica r1 = Replica.newBuilder().setReplicationFlags(0) + .setStripingPolicy(SetupUtils.getStripingPolicy(4, 128)).addAllOsdUuids(osdList).build(); + Replica r2 = Replica.newBuilder().setReplicationFlags(0) + .setStripingPolicy(SetupUtils.getStripingPolicy(4, 128)).addAllOsdUuids(rep2List).build(); + XLocSet xlocset = XLocSet.newBuilder().setReadOnlyFileSize(0).setVersion(1).addReplicas(r1).addReplicas(r2) + .setReplicaUpdatePolicy("").build();// XLocSet(0, rset, "", 1); XLocations loc = new XLocations(xlocset, osds.get(1)); // System.out.println(loc.getLocalReplica().toString()); @@ -78,7 +87,7 @@ public class LocationsTest extends TestCase { assertNotNull(loc.getLocalReplica().getStripingPolicy()); } - + @Test public void testCorrectSetOfReplicationFlags() { List osdList = new ArrayList(); @@ -88,10 +97,11 @@ public class LocationsTest extends TestCase { StripingPolicy stripingPolicy = SetupUtils.getStripingPolicy(4, 128); org.xtreemfs.common.xloc.Replica r; int flags = 0; - + // set none - Replica interfR = Replica.newBuilder().setStripingPolicy(stripingPolicy).setReplicationFlags(flags).addAllOsdUuids(osdList).build(); - r = new org.xtreemfs.common.xloc.Replica(interfR,null); + Replica interfR = Replica.newBuilder().setStripingPolicy(stripingPolicy).setReplicationFlags(flags) + .addAllOsdUuids(osdList).build(); + r = new org.xtreemfs.common.xloc.Replica(interfR, null); assertFalse(r.isComplete()); assertTrue(r.isPartialReplica()); assertFalse(ReplicationFlags.isRandomStrategy(r.getTransferStrategyFlags())); @@ -99,8 +109,9 @@ public class LocationsTest extends TestCase { // set complete flags = ReplicationFlags.setReplicaIsComplete(0); - interfR = Replica.newBuilder().setStripingPolicy(stripingPolicy).setReplicationFlags(flags).addAllOsdUuids(osdList).build(); - r = new org.xtreemfs.common.xloc.Replica(interfR,null); + interfR = Replica.newBuilder().setStripingPolicy(stripingPolicy).setReplicationFlags(flags) + .addAllOsdUuids(osdList).build(); + r = new org.xtreemfs.common.xloc.Replica(interfR, null); assertTrue(r.isComplete()); assertTrue(r.isPartialReplica()); assertFalse(ReplicationFlags.isRandomStrategy(r.getTransferStrategyFlags())); @@ -108,8 +119,9 @@ public class LocationsTest extends TestCase { // set partial replica and RandomStrategy flags = ReplicationFlags.setPartialReplica(ReplicationFlags.setSequentialPrefetchingStrategy(0)); - interfR = Replica.newBuilder().setStripingPolicy(stripingPolicy).setReplicationFlags(flags).addAllOsdUuids(osdList).build(); - r = new org.xtreemfs.common.xloc.Replica(interfR,null); + interfR = Replica.newBuilder().setStripingPolicy(stripingPolicy).setReplicationFlags(flags) + .addAllOsdUuids(osdList).build(); + r = new org.xtreemfs.common.xloc.Replica(interfR, null); assertFalse(r.isComplete()); assertTrue(r.isPartialReplica()); assertFalse(ReplicationFlags.isRandomStrategy(r.getTransferStrategyFlags())); @@ -117,8 +129,9 @@ public class LocationsTest extends TestCase { // set full replica and RandomStrategy flags = ReplicationFlags.setRandomStrategy(ReplicationFlags.setFullReplica(0)); - interfR = Replica.newBuilder().setStripingPolicy(stripingPolicy).setReplicationFlags(flags).addAllOsdUuids(osdList).build(); - r = new org.xtreemfs.common.xloc.Replica(interfR,null); + interfR = Replica.newBuilder().setStripingPolicy(stripingPolicy).setReplicationFlags(flags) + .addAllOsdUuids(osdList).build(); + r = new org.xtreemfs.common.xloc.Replica(interfR, null); assertFalse(r.isComplete()); assertFalse(r.isPartialReplica()); assertTrue(ReplicationFlags.isRandomStrategy(r.getTransferStrategyFlags())); @@ -131,7 +144,7 @@ public class LocationsTest extends TestCase { flags = ReplicationFlags.setSequentialStrategy(flags); assertTrue(ReplicationFlags.isSequentialStrategy(flags)); assertTrue(ReplicationFlags.isFullReplica(flags)); - + // test correct set of strategies // random flags = ReplicationFlags.setRandomStrategy(0); @@ -159,7 +172,4 @@ public class LocationsTest extends TestCase { assertTrue(ReplicationFlags.isRarestFirstStrategy(flags)); } - public static void main(String[] args) { - TestRunner.run(LocationsTest.class); - } } diff --git a/java/servers/test/org/xtreemfs/test/common/striping/RAID0Test.java b/java/servers/test/org/xtreemfs/test/common/striping/RAID0Test.java index c357c9cf6..b00be1e34 100644 --- a/java/servers/test/org/xtreemfs/test/common/striping/RAID0Test.java +++ b/java/servers/test/org/xtreemfs/test/common/striping/RAID0Test.java @@ -9,44 +9,55 @@ package org.xtreemfs.test.common.striping; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; import java.util.Iterator; -import junit.framework.TestCase; - +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.xloc.StripingPolicyImpl; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replica; import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestHelper; /** * It tests the RAID0 class * * @author clorenz */ -public class RAID0Test extends TestCase { +public class RAID0Test { + @Rule + public final TestRule testLog = TestHelper.testLog; private static final long KILOBYTE = 1024L; - /** Creates a new instance of RAID0Test */ - public RAID0Test(String testName) { - super(testName); + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); } - protected void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); + @Before + public void setUp() throws Exception { } - protected void tearDown() throws Exception { + @After + public void tearDown() throws Exception { } - + @Test public void testGetObjectsAndBytes() throws Exception { - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, 128)).setReplicationFlags(0).build(); + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, 128)).setReplicationFlags(0) + .build(); - StripingPolicyImpl policy = StripingPolicyImpl.getPolicy(r,0); + StripingPolicyImpl policy = StripingPolicyImpl.getPolicy(r, 0); long objectID, offset; @@ -72,9 +83,11 @@ public class RAID0Test extends TestCase { assertEquals(768 * KILOBYTE, offset); } + @Test public void testGetOSDs() throws Exception { - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(8, 128)).setReplicationFlags(0).build(); - StripingPolicyImpl policy = StripingPolicyImpl.getPolicy(r,0); + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(8, 128)).setReplicationFlags(0) + .build(); + StripingPolicyImpl policy = StripingPolicyImpl.getPolicy(r, 0); int osd0 = policy.getOSDforObject(0); assertEquals(0, osd0); @@ -107,32 +120,38 @@ public class RAID0Test extends TestCase { assertEquals(osd21, osd21b); } + @Test public void testGetStripeSize() throws Exception { - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, 256)).setReplicationFlags(0).build(); - StripingPolicyImpl policy = StripingPolicyImpl.getPolicy(r,0); + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, 256)).setReplicationFlags(0) + .build(); + StripingPolicyImpl policy = StripingPolicyImpl.getPolicy(r, 0); assertEquals(256 * KILOBYTE, policy.getStripeSizeForObject(5)); } + @Test public void testCalculateLastObject() throws Exception { - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, 256)).setReplicationFlags(0).build(); - StripingPolicyImpl policy = StripingPolicyImpl.getPolicy(r,0); - assertEquals(41, policy.getObjectNoForOffset(256L * KILOBYTE * 42-1)); // filesize + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, 256)).setReplicationFlags(0) + .build(); + StripingPolicyImpl policy = StripingPolicyImpl.getPolicy(r, 0); + assertEquals(41, policy.getObjectNoForOffset(256L * KILOBYTE * 42 - 1)); // filesize // = // offset // + // 1 - assertEquals(42, policy.getObjectNoForOffset(256L * KILOBYTE * 42 + 32000-1)); - assertEquals(42, policy.getObjectNoForOffset(256L * KILOBYTE * 43 - 1-1)); + assertEquals(42, policy.getObjectNoForOffset(256L * KILOBYTE * 42 + 32000 - 1)); + assertEquals(42, policy.getObjectNoForOffset(256L * KILOBYTE * 43 - 1 - 1)); } + @Test public void testGetObjectsOfOSDiterator() throws Exception { - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, 128)).setReplicationFlags(0).build(); - StripingPolicyImpl policy = StripingPolicyImpl.getPolicy(r,0); + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, 128)).setReplicationFlags(0) + .build(); + StripingPolicyImpl policy = StripingPolicyImpl.getPolicy(r, 0); long startObject = 0, endObject = 12; Iterator objectsIt = policy.getObjectsOfOSD(0, startObject, endObject); long objectNo = startObject; - while(objectsIt.hasNext()) { + while (objectsIt.hasNext()) { assertEquals(objectNo, objectsIt.next().longValue()); assertTrue(objectNo <= endObject); objectNo += policy.getWidth(); @@ -142,7 +161,7 @@ public class RAID0Test extends TestCase { endObject = 25; objectsIt = policy.getObjectsOfOSD(2, startObject, endObject); objectNo = startObject; - while(objectsIt.hasNext()) { + while (objectsIt.hasNext()) { assertEquals(objectNo, objectsIt.next().longValue()); assertTrue(objectNo <= endObject); objectNo += policy.getWidth(); @@ -152,7 +171,7 @@ public class RAID0Test extends TestCase { endObject = 5; objectsIt = policy.getObjectsOfOSD(0, startObject, endObject); objectNo = startObject; - while(objectsIt.hasNext()) { + while (objectsIt.hasNext()) { assertEquals(objectNo, objectsIt.next().longValue()); assertTrue(objectNo <= endObject); objectNo += policy.getWidth(); @@ -162,7 +181,7 @@ public class RAID0Test extends TestCase { endObject = 4; objectsIt = policy.getObjectsOfOSD(1, startObject, endObject); objectNo = 1; - while(objectsIt.hasNext()) { + while (objectsIt.hasNext()) { assertEquals(objectNo, objectsIt.next().longValue()); assertTrue(objectNo <= endObject); objectNo += policy.getWidth(); @@ -178,7 +197,7 @@ public class RAID0Test extends TestCase { endObject = 32435; objectsIt = policy.getObjectsOfOSD(0, startObject, endObject); objectNo = 32214; - while(objectsIt.hasNext()) { + while (objectsIt.hasNext()) { assertEquals(objectNo, objectsIt.next().longValue()); assertTrue(objectNo <= endObject); objectNo += policy.getWidth(); diff --git a/java/servers/test/org/xtreemfs/test/common/uuid/UUIDResolverTest.java b/java/servers/test/org/xtreemfs/test/common/uuid/UUIDResolverTest.java index 77c5bda7c..ddabdf17f 100644 --- a/java/servers/test/org/xtreemfs/test/common/uuid/UUIDResolverTest.java +++ b/java/servers/test/org/xtreemfs/test/common/uuid/UUIDResolverTest.java @@ -7,88 +7,58 @@ */ package org.xtreemfs.test.common.uuid; -import java.io.File; -import java.net.InetSocketAddress; -import java.util.List; +import static org.junit.Assert.fail; -import junit.framework.TestCase; +import java.util.List; -import org.xtreemfs.babudb.config.BabuDBConfig; +import org.junit.After; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.util.NetUtils; import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.common.uuids.UUIDResolver; import org.xtreemfs.common.uuids.UnknownUUIDException; -import org.xtreemfs.dir.DIRConfig; -import org.xtreemfs.dir.DIRRequestDispatcher; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.Schemes; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; -import org.xtreemfs.foundation.pbrpc.client.RPCNIOSocketClient; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.pbrpc.generatedinterfaces.DIR.AddressMapping; import org.xtreemfs.pbrpc.generatedinterfaces.DIR.AddressMappingSet; import org.xtreemfs.pbrpc.generatedinterfaces.DIR.addressMappingSetResponse; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** - * + * * @author bjko */ -public class UUIDResolverTest extends TestCase { - - - private DIRRequestDispatcher dirCtrl = null; - - private InetSocketAddress localhost; - - private RPCNIOSocketClient rpcClient; +public class UUIDResolverTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - private final int TIMEOUT = 10000; - - private TestEnvironment testEnv; - - - public UUIDResolverTest(String testName) { - super(testName); - } - - @Override - protected void setUp() throws Exception { - super.setUp(); + private TestEnvironment testEnv; + @Before + public void setUp() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - // cleanup - File testDir = new File(SetupUtils.TEST_DIR); - FSUtils.delTree(testDir); - testDir.mkdirs(); - - DIRConfig conf = SetupUtils.createDIRConfig(); - BabuDBConfig dbConf = SetupUtils.createDIRdbsConfig(); - - localhost = new InetSocketAddress("localhost", conf.getPort()); - - dirCtrl = new DIRRequestDispatcher(conf,dbConf); - dirCtrl.startup(); - - testEnv = new TestEnvironment(new TestEnvironment.Services[]{TestEnvironment.Services.DIR_CLIENT, - TestEnvironment.Services.TIME_SYNC,TestEnvironment.Services.UUID_RESOLVER}); + + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.TIME_SYNC, + TestEnvironment.Services.UUID_RESOLVER }); testEnv.start(); UUIDResolver.addLocalMapping("localhost", 32636, Schemes.SCHEME_PBRPC); - } - @Override - protected void tearDown() throws Exception { - super.tearDown(); - dirCtrl.shutdown(); + @After + public void tearDown() throws Exception { testEnv.shutdown(); } + @Test public void testSimpleMapping() throws Exception { List mpgs = NetUtils.getReachableEndpoints(32636, "http"); // Use the first endoint found for testing purposes. @@ -97,7 +67,8 @@ public class UUIDResolverTest extends TestCase { AddressMappingSet.Builder ams = AddressMappingSet.newBuilder(); ams.addMappings(testMapping); - RPCResponse r = testEnv.getDirClient().xtreemfs_address_mappings_set(null,RPCAuthentication.authNone, RPCAuthentication.userService, ams.build()); + RPCResponse r = testEnv.getDirClient().xtreemfs_address_mappings_set(null, + RPCAuthentication.authNone, RPCAuthentication.userService, ams.build()); r.get(); ServiceUUID uuid = new ServiceUUID("MY_TEST_UUID"); uuid.resolve(); @@ -109,7 +80,7 @@ public class UUIDResolverTest extends TestCase { uuid2.getMappings(); fail("returned result for unknown address mapping"); } catch (UnknownUUIDException ex) { - //supi + // supi } Thread.sleep(200); @@ -123,5 +94,4 @@ public class UUIDResolverTest extends TestCase { // System.out.println(uuid); } - } diff --git a/java/servers/test/org/xtreemfs/test/dir/DIRClientTest.java b/java/servers/test/org/xtreemfs/test/dir/DIRClientTest.java index 59625471b..e06394d96 100644 --- a/java/servers/test/org/xtreemfs/test/dir/DIRClientTest.java +++ b/java/servers/test/org/xtreemfs/test/dir/DIRClientTest.java @@ -8,17 +8,21 @@ package org.xtreemfs.test.dir; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + import java.io.IOException; import java.net.InetSocketAddress; -import junit.framework.TestCase; - import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.dir.DIRClient; import org.xtreemfs.foundation.logging.Logging; -import org.xtreemfs.foundation.logging.Logging.Category; import org.xtreemfs.foundation.pbrpc.client.PBRPCException; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.ErrorType; @@ -29,39 +33,41 @@ import org.xtreemfs.foundation.pbrpc.server.RPCServerRequest; import org.xtreemfs.foundation.pbrpc.server.RPCServerRequestListener; import org.xtreemfs.pbrpc.generatedinterfaces.DIR.AddressMappingSet; import org.xtreemfs.pbrpc.generatedinterfaces.DIR.addressMappingGetResponse; -import org.xtreemfs.pbrpc.generatedinterfaces.DIR.globalTimeSGetResponse; import org.xtreemfs.pbrpc.generatedinterfaces.DIRServiceConstants; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * * @author bjko */ -public class DIRClientTest extends TestCase { - +public class DIRClientTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + TestEnvironment testEnv; - + RPCNIOSocketServer dummy1, dummy2; - + DummyDir dir1, dir2; - + InetSocketAddress[] servers; - + static final int PORT_DIR1 = 32638 + SetupUtils.PORT_RANGE_OFFSET; static final int PORT_DIR2 = 32639 + SetupUtils.PORT_RANGE_OFFSET; - + protected class DummyDir implements RPCServerRequestListener { public volatile boolean resetAfterCall = false; public volatile String sendRedirectTo = null; public volatile boolean sendException = false; public volatile boolean donotAnswer = false; final int id; - + public DummyDir(int id) { this.id = id; } - + @Override public void receiveRecord(RPCServerRequest rq) { try { @@ -69,7 +75,7 @@ public class DIRClientTest extends TestCase { assertTrue(hdr.hasRequestHeader()); assertEquals(DIRServiceConstants.PROC_ID_XTREEMFS_ADDRESS_MAPPINGS_GET, hdr.getRequestHeader() .getProcId()); - + if (sendRedirectTo != null) { rq.sendRedirect(sendRedirectTo); } else if (sendException) { @@ -78,7 +84,7 @@ public class DIRClientTest extends TestCase { // don't do anything rq.freeBuffers(); } else { - + addressMappingGetResponse response = addressMappingGetResponse.getDefaultInstance(); try { rq.sendResponse(response, null); @@ -97,32 +103,33 @@ public class DIRClientTest extends TestCase { } } } - - public DIRClientTest() { + + @BeforeClass + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } - + @Before public void setUp() throws Exception { testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.RPC_CLIENT }); testEnv.start(); - + dir1 = new DummyDir(1); dir2 = new DummyDir(2); - + dummy1 = new RPCNIOSocketServer(PORT_DIR1, null, dir1, null); dummy1.start(); dummy1.waitForStartup(); - + dummy2 = new RPCNIOSocketServer(PORT_DIR2, null, dir2, null); dummy2.start(); dummy2.waitForStartup(); - + servers = new InetSocketAddress[] { new InetSocketAddress("localhost", PORT_DIR1), new InetSocketAddress("localhost", PORT_DIR2) }; } - + @After public void tearDown() throws Exception { try { @@ -138,9 +145,9 @@ public class DIRClientTest extends TestCase { ex.printStackTrace(); } testEnv.shutdown(); - + } - + @Test public void testStandardCase() throws Exception { DIRClient client = new DIRClient(testEnv.getDirClient(), servers, 10, 2); @@ -148,79 +155,79 @@ public class DIRClientTest extends TestCase { RPCAuthentication.userService, "*"); assertEquals(0, result.getMappingsCount()); } - + @Test public void testRedirect() throws Exception { dir1.sendRedirectTo = "localhost:" + PORT_DIR2; - + DIRClient client = new DIRClient(testEnv.getDirClient(), servers, 10, 2); AddressMappingSet result = client.xtreemfs_address_mappings_get(null, RPCAuthentication.authNone, RPCAuthentication.userService, "*"); assertEquals(0, result.getMappingsCount()); } - + @Test public void testRedirect2() throws Exception { dir1.sendRedirectTo = "localhost:" + PORT_DIR2; dir2.sendRedirectTo = "localhost:" + PORT_DIR1; - + try { DIRClient client = new DIRClient(testEnv.getDirClient(), servers, 10, 2); client.xtreemfs_address_mappings_get(null, RPCAuthentication.authNone, RPCAuthentication.userService, "*"); fail("Expected exception."); } catch (IOException ex) { - + } } - + @Test public void testFailover() throws Exception { dir1.donotAnswer = true; - + DIRClient client = new DIRClient(testEnv.getDirClient(), servers, 10, 2); AddressMappingSet result = client.xtreemfs_address_mappings_get(null, RPCAuthentication.authNone, RPCAuthentication.userService, "*"); assertEquals(0, result.getMappingsCount()); } - + @Test public void testFailover2() throws Exception { dir1.donotAnswer = true; dir1.resetAfterCall = true; dir2.donotAnswer = true; - + DIRClient client = new DIRClient(testEnv.getDirClient(), servers, 10, 2); AddressMappingSet result = client.xtreemfs_address_mappings_get(null, RPCAuthentication.authNone, RPCAuthentication.userService, "*"); assertEquals(0, result.getMappingsCount()); } - + @Test public void testNoAnswer() throws Exception { dir1.donotAnswer = true; dir2.donotAnswer = true; - + try { DIRClient client = new DIRClient(testEnv.getDirClient(), servers, 5, 2); client.xtreemfs_address_mappings_get(null, RPCAuthentication.authNone, RPCAuthentication.userService, "*"); fail("Expected exception."); } catch (IOException ex) { - + } } - + @Test public void testException() throws Exception { dir1.donotAnswer = true; dir2.sendException = true; - + try { DIRClient client = new DIRClient(testEnv.getDirClient(), servers, 10, 2); client.xtreemfs_address_mappings_get(null, RPCAuthentication.authNone, RPCAuthentication.userService, "*"); fail("Expected exception."); } catch (PBRPCException ex) { - + } } - + } \ No newline at end of file diff --git a/java/servers/test/org/xtreemfs/test/dir/DIRTest.java b/java/servers/test/org/xtreemfs/test/dir/DIRTest.java index 399d2eaa7..fb5b707e9 100644 --- a/java/servers/test/org/xtreemfs/test/dir/DIRTest.java +++ b/java/servers/test/org/xtreemfs/test/dir/DIRTest.java @@ -17,13 +17,12 @@ import java.util.Set; import org.junit.After; import org.junit.Before; +import org.junit.Rule; import org.junit.Test; -import org.xtreemfs.babudb.config.BabuDBConfig; +import org.junit.rules.TestRule; import org.xtreemfs.common.libxtreemfs.AdminClient; import org.xtreemfs.common.libxtreemfs.ClientFactory; import org.xtreemfs.common.libxtreemfs.Options; -import org.xtreemfs.dir.DIRConfig; -import org.xtreemfs.dir.DIRRequestDispatcher; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.Schemes; import org.xtreemfs.foundation.pbrpc.client.PBRPCException; @@ -48,12 +47,15 @@ import org.xtreemfs.pbrpc.generatedinterfaces.DIRServiceClient; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * * @author bjko */ public class DIRTest { + @Rule + public final TestRule testLog = TestHelper.testLog; TestEnvironment testEnv; diff --git a/java/servers/test/org/xtreemfs/test/mrc/BabuDBStorageManagerTest.java b/java/servers/test/org/xtreemfs/test/mrc/BabuDBStorageManagerTest.java index 0bd94ec4e..d3d752b9c 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/BabuDBStorageManagerTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/BabuDBStorageManagerTest.java @@ -8,21 +8,26 @@ package org.xtreemfs.test.mrc; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + import java.io.File; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import org.junit.After; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.babudb.BabuDBFactory; import org.xtreemfs.babudb.api.BabuDB; import org.xtreemfs.babudb.config.BabuDBConfig; import org.xtreemfs.babudb.log.DiskLogger.SyncMode; import org.xtreemfs.dir.DIRConfig; -import org.xtreemfs.dir.DIRRequestDispatcher; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.mrc.database.AtomicDBUpdate; @@ -33,15 +38,16 @@ import org.xtreemfs.mrc.metadata.FileMetadata; import org.xtreemfs.mrc.utils.Path; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; -public class BabuDBStorageManagerTest extends TestCase { +public class BabuDBStorageManagerTest { + @Rule + public final TestRule testLog = TestHelper.testLog; public static final String DB_DIRECTORY = "/tmp/xtreemfs-test"; private BabuDBStorageManager mngr; - private DIRRequestDispatcher dir; - private BabuDB database; private Exception exc; @@ -75,20 +81,17 @@ public class BabuDBStorageManagerTest extends TestCase { Logging.start(SetupUtils.DEBUG_LEVEL); } - protected void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - + @Before + public void setUp() throws Exception { // initialize Directory Service (for synchronized clocks...) DIRConfig config = SetupUtils.createDIRConfig(); BabuDBConfig dbsConfig = SetupUtils.createDIRdbsConfig(); - dir = new DIRRequestDispatcher(config, dbsConfig); - dir.startup(); - testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_CLIENT, - TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER }); + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.TIME_SYNC, + TestEnvironment.Services.UUID_RESOLVER }); testEnv.start(); - + // reset database File dbDir = new File(DB_DIRECTORY); FSUtils.delTree(dbDir); @@ -102,13 +105,14 @@ public class BabuDBStorageManagerTest extends TestCase { exc = null; } - protected void tearDown() throws Exception { + @After + public void tearDown() throws Exception { database.shutdown(); - dir.shutdown(); testEnv.shutdown(); } + @Test public void testCreateDelete() throws Exception { // retrieve root directory @@ -220,7 +224,8 @@ public class BabuDBStorageManagerTest extends TestCase { assertTrue(tmp.contains(dirName)); assertTrue(tmp.contains(fileName)); } - + + @Test public void testCreateDeleteWithCollidingHashCodes() throws Exception { // create two files w/ colliding hash codes in nested dir @@ -274,7 +279,8 @@ public class BabuDBStorageManagerTest extends TestCase { assertEquals(name2, children.next().getFileName()); assertFalse(children.hasNext()); } - + + @Test public void testPathResolution() throws Exception { final String userId = "me"; @@ -330,7 +336,8 @@ public class BabuDBStorageManagerTest extends TestCase { assertEquals(1, tmp.size()); assertTrue(tmp.contains("comp2")); } - + + @Test public void testPartialReaddir() throws Exception { final String userId = "me"; @@ -530,9 +537,6 @@ public class BabuDBStorageManagerTest extends TestCase { // // ((FileEntity) copy).getXLocationsList()); // // } - public static void main(String[] args) { - TestRunner.run(BabuDBStorageManagerTest.class); - } private static Map getDefaultStripingPolicy() { Map map = new HashMap(); diff --git a/java/servers/test/org/xtreemfs/test/mrc/BufferBackedMetadataTest.java b/java/servers/test/org/xtreemfs/test/mrc/BufferBackedMetadataTest.java index 2130a7039..021cae337 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/BufferBackedMetadataTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/BufferBackedMetadataTest.java @@ -8,13 +8,18 @@ package org.xtreemfs.test.mrc; +import static org.junit.Assert.assertEquals; + import java.util.ArrayList; import java.util.Iterator; import java.util.List; -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.mrc.metadata.BufferBackedACLEntry; import org.xtreemfs.mrc.metadata.BufferBackedFileMetadata; @@ -26,190 +31,199 @@ import org.xtreemfs.mrc.metadata.FileMetadata; import org.xtreemfs.mrc.metadata.StripingPolicy; import org.xtreemfs.mrc.metadata.XLoc; import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestHelper; + +public class BufferBackedMetadataTest { + @Rule + public final TestRule testLog = TestHelper.testLog; -public class BufferBackedMetadataTest extends TestCase { - - public BufferBackedMetadataTest() { + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); } - - protected void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); + + @Before + public void setUp() throws Exception { } - - protected void tearDown() throws Exception { + + @After + public void tearDown() throws Exception { } - + + @Test public void testBufferBackedACLEntry() throws Exception { - + { final long fileId = 3322; final String entity = "test"; final short rights = 509; - + // create ACL entry BufferBackedACLEntry acl1 = new BufferBackedACLEntry(fileId, entity, rights); checkACLEntry(entity, rights, acl1); - + // copy ACL entry BufferBackedACLEntry acl2 = new BufferBackedACLEntry(acl1.getKeyBuf(), acl1.getValBuf()); checkACLEntry(entity, rights, acl2); } - + { final long fileId = 0; final String entity = ""; final short rights = Short.MAX_VALUE; - + // create ACL entry BufferBackedACLEntry acl1 = new BufferBackedACLEntry(fileId, entity, rights); checkACLEntry(entity, rights, acl1); - + // copy ACL entry BufferBackedACLEntry acl2 = new BufferBackedACLEntry(acl1.getKeyBuf(), acl1.getValBuf()); checkACLEntry(entity, rights, acl2); } } - + + @Test public void testBufferBackedStripingPolicy() throws Exception { - + { final String pattern = "RAID0"; final int stripeSize = 256; final int width = 5; - + // create striping policy BufferBackedStripingPolicy sp1 = new BufferBackedStripingPolicy(pattern, stripeSize, width); checkSP(pattern, stripeSize, width, sp1); - + // copy striping policy BufferBackedStripingPolicy sp2 = new BufferBackedStripingPolicy(sp1.getBuffer()); checkSP(pattern, stripeSize, width, sp2); } - + { final String pattern = "RAID0"; final int stripeSize = 16; final int width = 1; - + // create striping policy BufferBackedStripingPolicy sp1 = new BufferBackedStripingPolicy(pattern, stripeSize, width); checkSP(pattern, stripeSize, width, sp1); - + // copy striping policy BufferBackedStripingPolicy sp2 = new BufferBackedStripingPolicy(sp1.getBuffer()); checkSP(pattern, stripeSize, width, sp2); } } - + + @Test public void testBufferBackedXAttrs() throws Exception { - + { final long fileId = 4389; final String key = "someAttr"; final byte[] val = "fadsjkkj".getBytes(); final String uid = "myUID"; - + // create XAttrs BufferBackedXAttr xattr1 = new BufferBackedXAttr(fileId, uid, key, val, (short) 0); checkXAttr(key, val, uid, xattr1); - + // copy XAttrs BufferBackedXAttr xattr2 = new BufferBackedXAttr(xattr1.getKeyBuf(), xattr1.getValBuf()); checkXAttr(key, val, uid, xattr2); } - + { final long fileId = 32; final String key = "fasd"; final byte[] val = "".getBytes(); final String uid = "gffg"; - + // create XAttrs BufferBackedXAttr xattr1 = new BufferBackedXAttr(fileId, uid, key, val, (short) 0); checkXAttr(key, val, uid, xattr1); - + // copy XAttrs BufferBackedXAttr xattr2 = new BufferBackedXAttr(xattr1.getKeyBuf(), xattr1.getValBuf()); checkXAttr(key, val, uid, xattr2); } - + { final long fileId = 11; final String key = ""; final byte[] val = "".getBytes(); final String uid = ""; - + // create XAttrs BufferBackedXAttr xattr1 = new BufferBackedXAttr(fileId, uid, key, val, (short) 0); checkXAttr(key, val, uid, xattr1); - + // copy XAttrs BufferBackedXAttr xattr2 = new BufferBackedXAttr(xattr1.getKeyBuf(), xattr1.getValBuf()); checkXAttr(key, val, uid, xattr2); } - + } - + + @Test public void testBufferBackedXLoc() throws Exception { - + { final String[] osds = { "someOSD", "anotherOSD", "myOSD" }; final BufferBackedStripingPolicy sp = new BufferBackedStripingPolicy("RAID0", 1024, 4); final int replFlags = 237; - + // create XLoc BufferBackedXLoc xloc1 = new BufferBackedXLoc(sp, osds, replFlags); checkXLoc(osds, sp, replFlags, xloc1); - + byte[] tmpBuf = new byte[xloc1.getBuffer().length + 10]; System.arraycopy(xloc1.getBuffer(), 0, tmpBuf, 3, xloc1.getBuffer().length); - + // copy XLoc BufferBackedXLoc xloc2 = new BufferBackedXLoc(tmpBuf, 3, xloc1.getBuffer().length); checkXLoc(osds, sp, replFlags, xloc2); - + final int newReplFlags = Integer.MIN_VALUE; xloc2.setReplicationFlags(newReplFlags); assertEquals(Integer.MIN_VALUE, xloc2.getReplicationFlags()); } - + } - + + @Test public void testBufferBackedXLocList() throws Exception { - + { - final List sp = generateSPList(new BufferBackedStripingPolicy( - "RAID0", 5, 1), new BufferBackedStripingPolicy("RAID5", 99, 33), - new BufferBackedStripingPolicy("asfd", 34, -1)); - - final List replicas = generateXLocList(new BufferBackedXLoc(sp.get(0), - new String[] { "11111", "22222", "33333" }, 43), new BufferBackedXLoc(sp.get(1), - new String[] { "fdsay", "34", "4" }, 99), new BufferBackedXLoc(sp.get(2), new String[] { - "354", ",mn", "asdf" }, 45)); + final List sp = generateSPList(new BufferBackedStripingPolicy("RAID0", 5, 1), + new BufferBackedStripingPolicy("RAID5", 99, 33), new BufferBackedStripingPolicy("asfd", 34, -1)); + + final List replicas = generateXLocList(new BufferBackedXLoc(sp.get(0), new String[] { + "11111", "22222", "33333" }, 43), new BufferBackedXLoc(sp.get(1), + new String[] { "fdsay", "34", "4" }, 99), new BufferBackedXLoc(sp.get(2), new String[] { "354", + ",mn", "asdf" }, 45)); int version = 37; String updatePolicy = "bla"; - + // create XLocList - BufferBackedXLocList xlocList1 = new BufferBackedXLocList(toArray(replicas), updatePolicy, - version); + BufferBackedXLocList xlocList1 = new BufferBackedXLocList(toArray(replicas), updatePolicy, version); checkXLocList(replicas, version, updatePolicy, xlocList1); - + // copy XLocList - BufferBackedXLocList xlocList2 = new BufferBackedXLocList(xlocList1.getBuffer(), 0, xlocList1 - .getBuffer().length); + BufferBackedXLocList xlocList2 = new BufferBackedXLocList(xlocList1.getBuffer(), 0, + xlocList1.getBuffer().length); checkXLocList(replicas, version, updatePolicy, xlocList2); - + // test iterator Iterator it = xlocList2.iterator(); while (it.hasNext()) it.next(); } - + } - + + @Test public void testBufferBackedDirObject() throws Exception { - + { long parentId = 99999; String dirName = "bla"; @@ -221,19 +235,19 @@ public class BufferBackedMetadataTest extends TestCase { long w32Attrs = 12; String owner = "someone"; String group = "somegroup"; - + // create dir object - BufferBackedFileMetadata dirObj = new BufferBackedFileMetadata(parentId, dirName, owner, group, - fileId, atime, ctime, mtime, perms, w32Attrs, (short) 1); + BufferBackedFileMetadata dirObj = new BufferBackedFileMetadata(parentId, dirName, owner, group, fileId, + atime, ctime, mtime, perms, w32Attrs, (short) 1); checkDirObject(owner, group, fileId, atime, ctime, mtime, perms, w32Attrs, dirObj); - + fileId = 77; atime = 111; ctime = 111; mtime = 111; perms = 277; w32Attrs = 3232; - + dirObj.setAtime(atime); dirObj.setCtime(ctime); dirObj.setMtime(mtime); @@ -242,11 +256,12 @@ public class BufferBackedMetadataTest extends TestCase { dirObj.setW32Attrs(w32Attrs); checkDirObject(owner, group, fileId, atime, ctime, mtime, perms, w32Attrs, dirObj); } - + } - + + @Test public void testBufferBackedFileObject() throws Exception { - + { long parentId = 4343; String fileName = "asfd"; @@ -264,66 +279,66 @@ public class BufferBackedMetadataTest extends TestCase { String owner = "vyxcvcxy"; String group = "afdsafdsafds"; // create file object - BufferBackedFileMetadata fileObj = new BufferBackedFileMetadata(parentId, fileName, owner, group, - fileId, atime, ctime, mtime, size, perms, w32Attrs, linkcount, epoch, issuedEpoch, readonly); - checkFileObject(owner, group, fileId, atime, ctime, mtime, perms, w32Attrs, size, linkcount, - epoch, issuedEpoch, readonly, fileObj); + BufferBackedFileMetadata fileObj = new BufferBackedFileMetadata(parentId, fileName, owner, group, fileId, + atime, ctime, mtime, size, perms, w32Attrs, linkcount, epoch, issuedEpoch, readonly); + checkFileObject(owner, group, fileId, atime, ctime, mtime, perms, w32Attrs, size, linkcount, epoch, + issuedEpoch, readonly, fileObj); } - + } - + private void checkACLEntry(String entity, short rights, BufferBackedACLEntry entry) { assertEquals(entity, entry.getEntity()); assertEquals(rights, entry.getRights()); } - + private void checkSP(String pattern, int stripeSize, int width, BufferBackedStripingPolicy sp) { assertEquals(pattern, sp.getPattern().toString()); assertEquals(width, sp.getWidth()); assertEquals(stripeSize, sp.getStripeSize()); } - + private void checkXAttr(String key, byte[] val, String owner, BufferBackedXAttr xattr) { - + assertEquals(key, xattr.getKey()); - + assertEquals(val.length, xattr.getValue().length); - for(int i = 0; i < val.length; i++) + for (int i = 0; i < val.length; i++) assertEquals(val[i], xattr.getValue()[i]); - + assertEquals(owner, xattr.getOwner()); } - + private void checkXLoc(String[] osds, StripingPolicy sp, int flags, BufferBackedXLoc xloc) { - + final StripingPolicy xlocSP = xloc.getStripingPolicy(); - + assertEquals(sp.toString(), xlocSP.toString()); assertEquals(sp.getPattern(), xlocSP.getPattern()); assertEquals(sp.getWidth(), xlocSP.getWidth()); assertEquals(sp.getStripeSize(), xlocSP.getStripeSize()); - + assertEquals(osds.length, xloc.getOSDCount()); for (int i = 0; i < osds.length; i++) assertEquals(osds[i], xloc.getOSD(i).toString()); - + assertEquals(flags, xloc.getReplicationFlags()); } - + private void checkXLocList(List replicas, int version, String updatePolicy, - BufferBackedXLocList xlocList) { - + BufferBackedXLocList xlocList) { + assertEquals(version, xlocList.getVersion()); assertEquals(updatePolicy, xlocList.getReplUpdatePolicy()); assertEquals(replicas.size(), xlocList.getReplicaCount()); - + for (int i = 0; i < replicas.size(); i++) assertEquals(replicas.get(i).toString(), xlocList.getReplica(i).toString()); } - - private void checkDirObject(String owner, String group, long fileId, int atime, int ctime, int mtime, - short perms, long w32Attrs, FileMetadata obj) { - + + private void checkDirObject(String owner, String group, long fileId, int atime, int ctime, int mtime, short perms, + long w32Attrs, FileMetadata obj) { + assertEquals(fileId, obj.getId()); assertEquals(atime, obj.getAtime()); assertEquals(ctime, obj.getCtime()); @@ -332,13 +347,12 @@ public class BufferBackedMetadataTest extends TestCase { assertEquals(w32Attrs, obj.getW32Attrs()); assertEquals(owner, obj.getOwnerId().toString()); assertEquals(group, obj.getOwningGroupId().toString()); - + } - - private void checkFileObject(String owner, String group, long fileId, int atime, int ctime, int mtime, - short perms, long w32Attrs, long size, short linkcount, int epoch, int issuedEpoch, boolean readonly, - FileMetadata obj) { - + + private void checkFileObject(String owner, String group, long fileId, int atime, int ctime, int mtime, short perms, + long w32Attrs, long size, short linkcount, int epoch, int issuedEpoch, boolean readonly, FileMetadata obj) { + assertEquals(fileId, obj.getId()); assertEquals(atime, obj.getAtime()); assertEquals(ctime, obj.getCtime()); @@ -353,35 +367,25 @@ public class BufferBackedMetadataTest extends TestCase { assertEquals(owner, obj.getOwnerId().toString()); assertEquals(group, obj.getOwningGroupId().toString()); } - - public static void main(String[] args) { - TestRunner.run(BufferBackedMetadataTest.class); - } - + public List generateXLocList(BufferBackedXLoc... arr) { List list = new ArrayList(arr.length); for (BufferBackedXLoc x : arr) list.add(x); - + return list; } - + public List generateSPList(BufferBackedStripingPolicy... arr) { List list = new ArrayList(arr.length); for (BufferBackedStripingPolicy s : arr) list.add(s); - + return list; } - + private BufferBackedXLoc[] toArray(List list) { return list.toArray(new BufferBackedXLoc[list.size()]); } - - private void assertEquals(short[] s1, short[] s2) { - assertEquals(s1.length, s2.length); - for (int i = 0; i < s1.length; i++) - assertEquals(s1[i], s2[i]); - } - + } diff --git a/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java b/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java index 0b36ad600..7474f5635 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java @@ -22,7 +22,9 @@ import java.util.Set; import org.junit.After; import org.junit.Before; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.xloc.ReplicationFlags; import org.xtreemfs.foundation.buffer.BufferPool; @@ -56,6 +58,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; import org.xtreemfs.test.TestEnvironment.Services; +import org.xtreemfs.test.TestHelper; import com.google.protobuf.ByteString; import com.google.protobuf.Message; @@ -66,6 +69,8 @@ import com.google.protobuf.Message; * @author stender */ public class MRCTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private MRCServiceClient client; diff --git a/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java b/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java index 04fa5959d..e370eaa7e 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java @@ -8,18 +8,23 @@ package org.xtreemfs.test.mrc; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotSame; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + import java.net.Inet4Address; import java.net.InetAddress; import java.util.Properties; -import junit.framework.TestCase; -import junit.textui.TestRunner; - import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.HeartbeatThread; import org.xtreemfs.common.KeyValuePairs; import org.xtreemfs.common.config.ServiceConfig; @@ -46,21 +51,21 @@ import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.VivaldiCoordinates; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; import org.xtreemfs.test.TestEnvironment.Services; +import org.xtreemfs.test.TestHelper; /** * * @author bjko */ -public class OSDPolicyTest extends TestCase { +public class OSDPolicyTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private TestEnvironment testEnv; - public OSDPolicyTest() { - Logging.start(SetupUtils.DEBUG_LEVEL); - } - @BeforeClass public static void setUpClass() throws Exception { + Logging.start(SetupUtils.DEBUG_LEVEL); } @AfterClass @@ -69,9 +74,6 @@ public class OSDPolicyTest extends TestCase { @Before public void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - testEnv = new TestEnvironment(Services.TIME_SYNC, Services.UUID_RESOLVER); testEnv.start(); } @@ -560,6 +562,7 @@ public class OSDPolicyTest extends TestCase { assertEquals("osd1", sortedList.getServices(4).getUuid()); } + @Test public void testSortHostRoundRobinPolicy() throws Exception { SortHostRoundRobinPolicy policy = new SortHostRoundRobinPolicy(); @@ -606,9 +609,5 @@ public class OSDPolicyTest extends TestCase { .setValue(String.valueOf(status.getNumber())).build()).build(); return sdm; } - - public static void main(String[] args) { - TestRunner.run(OSDPolicyTest.class); - } - + } \ No newline at end of file diff --git a/java/servers/test/org/xtreemfs/test/mrc/SetReadOnlyXattrTest.java b/java/servers/test/org/xtreemfs/test/mrc/SetReadOnlyXattrTest.java index 321117606..056c17a10 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/SetReadOnlyXattrTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/SetReadOnlyXattrTest.java @@ -8,38 +8,41 @@ package org.xtreemfs.test.mrc; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + import java.net.InetSocketAddress; import java.util.LinkedList; import java.util.List; +import org.junit.After; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.clients.Client; import org.xtreemfs.common.clients.File; import org.xtreemfs.common.clients.Volume; import org.xtreemfs.foundation.buffer.BufferPool; import org.xtreemfs.foundation.logging.Logging; - import org.xtreemfs.foundation.pbrpc.client.RPCResponse; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.AuthPassword; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.AuthType; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; -import org.xtreemfs.foundation.util.FSUtils; - import org.xtreemfs.mrc.utils.Path; - -import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; -import org.xtreemfs.pbrpc.generatedinterfaces.Common.emptyResponse; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy; -import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_set_read_only_xattrRequest; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.xtreemfs_set_read_only_xattrResponse; +import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; import org.xtreemfs.test.TestEnvironment.Services; +import org.xtreemfs.test.TestHelper; -import junit.framework.TestCase; - -public class SetReadOnlyXattrTest extends TestCase { +public class SetReadOnlyXattrTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private MRCServiceClient client; @@ -51,17 +54,8 @@ public class SetReadOnlyXattrTest extends TestCase { Logging.start(SetupUtils.DEBUG_LEVEL); } + @Before public void setUp() throws Exception { - - java.io.File testDir = new java.io.File(SetupUtils.TEST_DIR); - - FSUtils.delTree(testDir); - testDir.mkdirs(); - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - mrcAddress = SetupUtils.getMRC1Addr(); - // register an OSD at the directory service (needed in order to assign // it to a new file on 'open') @@ -69,14 +63,17 @@ public class SetReadOnlyXattrTest extends TestCase { Services.MRC_CLIENT, Services.DIR_SERVICE, Services.MRC, Services.OSD); testEnv.start(); + mrcAddress = testEnv.getMRCAddress(); client = testEnv.getMrcClient(); } - protected void tearDown() throws Exception { + @After + public void tearDown() throws Exception { testEnv.shutdown(); Logging.logMessage(Logging.LEVEL_DEBUG, this, BufferPool.getStatus()); } + @Test public void testSetReadOnlyXattrOperation() throws Exception { final String uid = "root"; final List gids = createGIDs("root"); diff --git a/java/servers/test/org/xtreemfs/test/mrc/SetReplicaUpdatePolicyTest.java b/java/servers/test/org/xtreemfs/test/mrc/SetReplicaUpdatePolicyTest.java index f5bf08eac..259697427 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/SetReplicaUpdatePolicyTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/SetReplicaUpdatePolicyTest.java @@ -8,15 +8,18 @@ package org.xtreemfs.test.mrc; +import static org.junit.Assert.assertTrue; + import java.net.InetSocketAddress; import java.util.LinkedList; import java.util.List; -import junit.framework.TestCase; - import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.clients.Client; import org.xtreemfs.common.clients.File; @@ -28,7 +31,6 @@ import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.AuthPassword; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.AuthType; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.mrc.utils.Path; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy; @@ -39,8 +41,11 @@ import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; import org.xtreemfs.test.TestEnvironment.Services; +import org.xtreemfs.test.TestHelper; -public class SetReplicaUpdatePolicyTest extends TestCase { +public class SetReplicaUpdatePolicyTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private MRCServiceClient client; @@ -48,24 +53,13 @@ public class SetReplicaUpdatePolicyTest extends TestCase { private TestEnvironment testEnv; - public SetReplicaUpdatePolicyTest() { + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); } @Before public void setUp() throws Exception { - - java.io.File testDir = new java.io.File(SetupUtils.TEST_DIR); - - FSUtils.delTree(testDir); - testDir.mkdirs(); - - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - - mrcAddress = SetupUtils.getMRC1Addr(); - // register an OSD at the directory service (needed in order to assign // it to a new file on 'open') @@ -73,17 +67,18 @@ public class SetReplicaUpdatePolicyTest extends TestCase { Services.MRC_CLIENT, Services.DIR_SERVICE, Services.MRC, Services.OSD, Services.OSD); testEnv.start(); + mrcAddress = testEnv.getMRCAddress(); client = testEnv.getMrcClient(); } @After - protected void tearDown() throws Exception { + public void tearDown() throws Exception { testEnv.shutdown(); Logging.logMessage(Logging.LEVEL_DEBUG, this, BufferPool.getStatus()); } @Test - public void testSetReplicaUpdatePolicyOperation() throws Exception { + public void testSetReplicaUpdatePolicyOperation() throws Exception { final String uid = "root"; final List gids = createGIDs("root"); final String volumeName = "testVolume"; diff --git a/java/servers/test/org/xtreemfs/test/mrc/SnapshotTest.java b/java/servers/test/org/xtreemfs/test/mrc/SnapshotTest.java index 5725f21b7..4d66aad4f 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/SnapshotTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/SnapshotTest.java @@ -24,9 +24,11 @@ import java.util.Random; import java.util.SortedSet; import java.util.TreeSet; -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import org.junit.After; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.foundation.buffer.BufferPool; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.PBRPCException; @@ -47,6 +49,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; import org.xtreemfs.test.TestEnvironment.Services; +import org.xtreemfs.test.TestHelper; import com.google.protobuf.ByteString; import com.google.protobuf.Message; @@ -56,7 +59,9 @@ import com.google.protobuf.Message; * * @author stender */ -public class SnapshotTest extends TestCase { +public class SnapshotTest { + @Rule + public final TestRule testLog = TestHelper.testLog; static class TreeEntry implements Comparable, Serializable { @@ -106,12 +111,8 @@ public class SnapshotTest extends TestCase { Logging.start(SetupUtils.DEBUG_LEVEL); } - protected void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - mrcAddress = SetupUtils.getMRC1Addr(); - + @Before + public void setUp() throws Exception { uid = "userXY"; gids = createGIDs("groupZ"); @@ -124,14 +125,17 @@ public class SnapshotTest extends TestCase { Services.MRC_CLIENT, Services.DIR_SERVICE, Services.MRC, Services.OSD); testEnv.start(); + mrcAddress = testEnv.getMRCAddress(); client = testEnv.getMrcClient(); } - protected void tearDown() throws Exception { + @After + public void tearDown() throws Exception { testEnv.shutdown(); Logging.logMessage(Logging.LEVEL_DEBUG, this, BufferPool.getStatus()); } + @Test public void testSnapshots() throws Exception { final int maxFilesPerDir = 4; @@ -274,10 +278,6 @@ public class SnapshotTest extends TestCase { } } - public static void main(String[] args) { - TestRunner.run(SnapshotTest.class); - } - private static StripingPolicy getDefaultStripingPolicy() { return StripingPolicy.newBuilder().setType(StripingPolicyType.STRIPING_POLICY_RAID0) .setStripeSize(1000).setWidth(1).build(); diff --git a/java/servers/test/org/xtreemfs/test/osd/AdvisoryLocksTest.java b/java/servers/test/org/xtreemfs/test/osd/AdvisoryLocksTest.java index b87873708..606fc8788 100644 --- a/java/servers/test/org/xtreemfs/test/osd/AdvisoryLocksTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/AdvisoryLocksTest.java @@ -7,11 +7,16 @@ package org.xtreemfs.test.osd; -import java.io.File; - -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.foundation.logging.Logging; @@ -19,81 +24,59 @@ import org.xtreemfs.foundation.pbrpc.client.PBRPCException; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.POSIXErrno; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.osd.AdvisoryLock; -import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; -import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.FileCredentials; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replica; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SnapConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.XLocSet; import org.xtreemfs.pbrpc.generatedinterfaces.OSD.Lock; +import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** - * Class for testing the NewOSD It uses the old OSDTest tests. It checks if the - * OSD works without replicas neither striping - * + * Class for testing the NewOSD It uses the old OSDTest tests. It checks if the OSD works without replicas neither + * striping + * * @author bjko */ -public class AdvisoryLocksTest extends TestCase { - - private final ServiceUUID serverID; - - private final FileCredentials fcred; - - private final String fileId; +public class AdvisoryLocksTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - private final Capability cap; + private static ServiceUUID serverID; - private final OSDConfig osdConfig; + private static FileCredentials fcred; + private static String fileId; - private OSDServiceClient osdClient; + private static Capability cap; + private static OSDConfig osdConfig; - private OSD osdServer; + private OSDServiceClient osdClient; - private TestEnvironment testEnv; + private TestEnvironment testEnv; - public AdvisoryLocksTest(String testName) throws Exception { - super(testName); + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - - osdConfig = SetupUtils.createOSD1Config(); - serverID = SetupUtils.getOSD1UUID(); - - fileId = "ABCDEF:1"; - cap = new Capability(fileId, 0, 60, System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, osdConfig.getCapabilitySecret()); - - Replica r = Replica.newBuilder().setReplicationFlags(0).setStripingPolicy(SetupUtils.getStripingPolicy(1, 2)).addOsdUuids(serverID.toString()).build(); - XLocSet xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").addReplicas(r).setVersion(1).build(); - - fcred = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xloc).build(); } - @Override - protected void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - // cleanup - File testDir = new File(SetupUtils.TEST_DIR); - - FSUtils.delTree(testDir); - testDir.mkdirs(); + @Before + public void setUp() throws Exception { // startup: DIR - testEnv = new TestEnvironment(new TestEnvironment.Services[]{ - TestEnvironment.Services.DIR_SERVICE,TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, - TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT - }); + testEnv = new TestEnvironment( + new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, + TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT, + TestEnvironment.Services.OSD }); testEnv.start(); - osdServer = new OSD(osdConfig); synchronized (this) { try { @@ -103,154 +86,172 @@ public class AdvisoryLocksTest extends TestCase { } } - osdClient = new OSDServiceClient(testEnv.getRpcClient(),null); - } + osdClient = testEnv.getOSDClient(); + osdConfig = testEnv.getOSDConfig(); + serverID = osdConfig.getUUID(); + + fileId = "ABCDEF:1"; + cap = new Capability(fileId, 0, 60, System.currentTimeMillis(), "", 0, false, + SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, osdConfig.getCapabilitySecret()); - @Override - protected void tearDown() throws Exception { - osdServer.shutdown(); + Replica r = Replica.newBuilder().setReplicationFlags(0).setStripingPolicy(SetupUtils.getStripingPolicy(1, 2)) + .addOsdUuids(serverID.toString()).build(); + XLocSet xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").addReplicas(r) + .setVersion(1).build(); + fcred = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xloc).build(); + } + + @After + public void tearDown() throws Exception { testEnv.shutdown(); } + @Test public void testAcquireCheckReleaseLock() throws Exception { - Lock request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(100).setLength(AdvisoryLock.LENGTH_LOCK_TO_EOF).build(); - RPCResponse r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, request); + Lock request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(100) + .setLength(AdvisoryLock.LENGTH_LOCK_TO_EOF).build(); + RPCResponse r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); Lock l = r.get(); - assertEquals("test",l.getClientUuid()); + assertEquals("test", l.getClientUuid()); assertEquals(1, l.getClientPid()); Lock checkRq = request.toBuilder().setClientPid(2).setLength(1).build(); - r = osdClient.xtreemfs_lock_check(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, - checkRq); + r = osdClient.xtreemfs_lock_check(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, checkRq); l = r.get(); - assertEquals("test",l.getClientUuid()); + assertEquals("test", l.getClientUuid()); assertEquals(1, l.getClientPid()); - RPCResponse r2 = osdClient.xtreemfs_lock_release(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, request); + RPCResponse r2 = osdClient.xtreemfs_lock_release(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); r2.get(); } - + + @Test public void testAcquireCheckReleaseLockRange01() throws Exception { - Lock request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(0).setLength(1).build(); - RPCResponse r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, request); + Lock request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(0) + .setLength(1).build(); + RPCResponse r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); Lock l = r.get(); - assertEquals("test",l.getClientUuid()); + assertEquals("test", l.getClientUuid()); assertEquals(1, l.getClientPid()); Lock checkRq = request.toBuilder().setClientPid(2).setLength(0).setExclusive(false).build(); - r = osdClient.xtreemfs_lock_check(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, - checkRq); + r = osdClient.xtreemfs_lock_check(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, checkRq); l = r.get(); - assertEquals("test",l.getClientUuid()); + assertEquals("test", l.getClientUuid()); assertEquals(1, l.getClientPid()); assertEquals(0, l.getOffset()); assertEquals(1, l.getLength()); assertTrue(l.getExclusive()); - RPCResponse r2 = osdClient.xtreemfs_lock_release(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, request); + RPCResponse r2 = osdClient.xtreemfs_lock_release(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); r2.get(); } - + @Test public void testAcquireModify() throws Exception { - Lock request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(100).setLength(AdvisoryLock.LENGTH_LOCK_TO_EOF).build(); - RPCResponse r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, request); + Lock request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(100) + .setLength(AdvisoryLock.LENGTH_LOCK_TO_EOF).build(); + RPCResponse r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); Lock l = r.get(); - assertEquals("test",l.getClientUuid()); + assertEquals("test", l.getClientUuid()); assertEquals(1, l.getClientPid()); - request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(0).setLength(100).build(); - r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, request); + request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(0) + .setLength(100).build(); + r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); l = r.get(); - assertEquals("test",l.getClientUuid()); + assertEquals("test", l.getClientUuid()); assertEquals(1, l.getClientPid()); - request = Lock.newBuilder().setClientPid(2).setClientUuid("test").setExclusive(true).setOffset(0).setLength(100).build(); - r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, request); + request = Lock.newBuilder().setClientPid(2).setClientUuid("test").setExclusive(true).setOffset(0) + .setLength(100).build(); + r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); try { l = r.get(); fail(); } catch (PBRPCException ex) { - assertEquals(POSIXErrno.POSIX_ERROR_EAGAIN,ex.getPOSIXErrno()); + assertEquals(POSIXErrno.POSIX_ERROR_EAGAIN, ex.getPOSIXErrno()); } - request = Lock.newBuilder().setClientPid(2).setClientUuid("test").setExclusive(true).setOffset(100).setLength(100).build(); - r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, request); + request = Lock.newBuilder().setClientPid(2).setClientUuid("test").setExclusive(true).setOffset(100) + .setLength(100).build(); + r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); l = r.get(); - assertEquals("test",l.getClientUuid()); + assertEquals("test", l.getClientUuid()); assertEquals(2, l.getClientPid()); - - } + @Test public void testAcquireUnlockAcquire() throws Exception { - Lock request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(100).setLength(AdvisoryLock.LENGTH_LOCK_TO_EOF).build(); - RPCResponse r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, request); + Lock request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(100) + .setLength(AdvisoryLock.LENGTH_LOCK_TO_EOF).build(); + RPCResponse r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); Lock l = r.get(); - assertEquals("test",l.getClientUuid()); + assertEquals("test", l.getClientUuid()); assertEquals(1, l.getClientPid()); - request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(0).setLength(100).build(); - r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, request); + request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(0) + .setLength(100).build(); + r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); l = r.get(); - assertEquals("test",l.getClientUuid()); + assertEquals("test", l.getClientUuid()); assertEquals(1, l.getClientPid()); - request = Lock.newBuilder().setClientPid(2).setClientUuid("test").setExclusive(true).setOffset(0).setLength(100).build(); - r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, request); + request = Lock.newBuilder().setClientPid(2).setClientUuid("test").setExclusive(true).setOffset(0) + .setLength(100).build(); + r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); try { l = r.get(); fail(); } catch (PBRPCException ex) { - assertEquals(POSIXErrno.POSIX_ERROR_EAGAIN,ex.getPOSIXErrno()); + assertEquals(POSIXErrno.POSIX_ERROR_EAGAIN, ex.getPOSIXErrno()); } - - request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(0).setLength(0).build(); - r = osdClient.xtreemfs_lock_release(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, request); + request = Lock.newBuilder().setClientPid(1).setClientUuid("test").setExclusive(true).setOffset(0).setLength(0) + .build(); + r = osdClient.xtreemfs_lock_release(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); r.get(); - request = Lock.newBuilder().setClientPid(2).setClientUuid("test").setExclusive(true).setOffset(0).setLength(100).build(); - r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, request); + request = Lock.newBuilder().setClientPid(2).setClientUuid("test").setExclusive(true).setOffset(0) + .setLength(100).build(); + r = osdClient.xtreemfs_lock_acquire(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, request); l = r.get(); - assertEquals("test",l.getClientUuid()); + assertEquals("test", l.getClientUuid()); assertEquals(2, l.getClientPid()); - - } - - - public static void main(String[] args) { - TestRunner.run(AdvisoryLocksTest.class); - } } diff --git a/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java b/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java index c562fcfae..ac033748b 100644 --- a/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java @@ -7,19 +7,23 @@ package org.xtreemfs.test.osd; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; + import java.io.IOException; import java.net.InetSocketAddress; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; -import junit.framework.TestCase; - import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.clients.Client; import org.xtreemfs.common.clients.File; import org.xtreemfs.common.clients.RandomAccessFile; @@ -39,32 +43,31 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.xtreemfs_cleanup_is_runningRes import org.xtreemfs.pbrpc.generatedinterfaces.OSD.xtreemfs_cleanup_statusResponse; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * * @author bjko */ -public class CleanupTest extends TestCase { +public class CleanupTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private TestEnvironment env; - private final Auth passwd; - - public CleanupTest() { - super(); - Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - passwd = Auth.newBuilder().setAuthType(AuthType.AUTH_PASSWORD).setAuthPasswd(AuthPassword.newBuilder().setPassword("")).build(); - } + private static Auth passwd; @BeforeClass public static void setUpClass() throws Exception { + Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); + passwd = Auth.newBuilder().setAuthType(AuthType.AUTH_PASSWORD) + .setAuthPasswd(AuthPassword.newBuilder().setPassword("")).build(); } @AfterClass public static void tearDownClass() throws Exception { } - @Override @Before public void setUp() throws Exception { env = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.TIME_SYNC, @@ -74,7 +77,6 @@ public class CleanupTest extends TestCase { env.start(); } - @Override @After public void tearDown() { env.shutdown(); diff --git a/java/servers/test/org/xtreemfs/test/osd/CowPolicyTest.java b/java/servers/test/org/xtreemfs/test/osd/CowPolicyTest.java index 164406fbe..1aa7946a5 100644 --- a/java/servers/test/org/xtreemfs/test/osd/CowPolicyTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/CowPolicyTest.java @@ -7,30 +7,25 @@ package org.xtreemfs.test.osd; -import junit.framework.TestCase; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.osd.storage.CowPolicy; import org.xtreemfs.osd.storage.CowPolicy.cowMode; +import org.xtreemfs.test.TestHelper; /** * * @author bjko */ -public class CowPolicyTest extends TestCase { - - public CowPolicyTest(String testName) { - super(testName); - } - - @Override - protected void setUp() throws Exception { - super.setUp(); - } - - @Override - protected void tearDown() throws Exception { - super.tearDown(); - } +public class CowPolicyTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + @Test public void testNoCow() throws Exception { CowPolicy p = new CowPolicy(cowMode.NO_COW); assertFalse(p.isCOW(0)); @@ -39,7 +34,8 @@ public class CowPolicyTest extends TestCase { p.objectChanged(0); assertFalse(p.isCOW(0)); } - + + @Test public void testAlwaysCow() throws Exception { CowPolicy p = new CowPolicy(cowMode.ALWAYS_COW); assertTrue(p.isCOW(0)); @@ -48,7 +44,8 @@ public class CowPolicyTest extends TestCase { p.objectChanged(0); assertTrue(p.isCOW(0)); } - + + @Test public void testCowOnce() throws Exception { CowPolicy p = new CowPolicy(cowMode.COW_ONCE); p.initCowFlagsIfRequired(115); diff --git a/java/servers/test/org/xtreemfs/test/osd/FastDeleteOpenFile.java b/java/servers/test/org/xtreemfs/test/osd/FastDeleteOpenFile.java index 71bf5de11..9f8ecb878 100644 --- a/java/servers/test/org/xtreemfs/test/osd/FastDeleteOpenFile.java +++ b/java/servers/test/org/xtreemfs/test/osd/FastDeleteOpenFile.java @@ -6,28 +6,30 @@ */ package org.xtreemfs.test.osd; -import static org.junit.Assert.*; +import static org.junit.Assert.assertFalse; import java.io.File; + import org.junit.AfterClass; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; -import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; +import org.junit.rules.TestRule; import org.xtreemfs.common.libxtreemfs.AdminClient; import org.xtreemfs.common.libxtreemfs.AdminFileHandle; import org.xtreemfs.common.libxtreemfs.AdminVolume; import org.xtreemfs.common.libxtreemfs.ClientFactory; import org.xtreemfs.common.libxtreemfs.ClientImplementation; import org.xtreemfs.common.libxtreemfs.Options; -import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; -import org.xtreemfs.foundation.util.FSUtils; +import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; import org.xtreemfs.osd.storage.HashStorageLayout; import org.xtreemfs.osd.storage.MetadataCache; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SYSTEM_V_FCNTL; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** @@ -40,6 +42,9 @@ import org.xtreemfs.test.TestEnvironment; * */ public class FastDeleteOpenFile { + @Rule + public final TestRule testLog = TestHelper.testLog; + private static TestEnvironment testEnv; private static UserCredentials userCredentials; @@ -56,11 +61,6 @@ public class FastDeleteOpenFile { @BeforeClass public static void initializeTest() throws Exception { - System.out.println("TEST: " + FastDeleteOpenFile.class.getSimpleName()); - - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); - Logging.start(Logging.LEVEL_WARN); - testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.RPC_CLIENT, TestEnvironment.Services.MRC, TestEnvironment.Services.OSD, TestEnvironment.Services.OSD}); diff --git a/java/servers/test/org/xtreemfs/test/osd/OSDDataIntegrityTest.java b/java/servers/test/org/xtreemfs/test/osd/OSDDataIntegrityTest.java index 3cfad4d9a..ae0369007 100644 --- a/java/servers/test/org/xtreemfs/test/osd/OSDDataIntegrityTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/OSDDataIntegrityTest.java @@ -8,11 +8,16 @@ package org.xtreemfs.test.osd; -import java.io.File; - -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; + +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.foundation.buffer.BufferPool; @@ -20,7 +25,6 @@ import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.FileCredentials; @@ -33,63 +37,45 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectData; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; + +public class OSDDataIntegrityTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + + private static ServiceUUID serverID; + + private static FileCredentials fcred; + + private static String fileId; + + private static Capability cap; -public class OSDDataIntegrityTest extends TestCase { - - private final ServiceUUID serverID; - - private final FileCredentials fcred; - - private final String fileId; - - private final Capability cap; - - private final OSDConfig osdConfig; - - - private OSDServiceClient osdClient; - - - private OSD osdServer; - private TestEnvironment testEnv; - - public OSDDataIntegrityTest(String testName) throws Exception { - super(testName); - + private static OSDConfig osdConfig; + + private OSDServiceClient osdClient; + + private OSD osdServer; + private TestEnvironment testEnv; + + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - + osdConfig = SetupUtils.createOSD1Config(); serverID = SetupUtils.getOSD1UUID(); - - fileId = "ABCDEF:1"; - cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, osdConfig.getCapabilitySecret()); - - Replica r = Replica.newBuilder().setReplicationFlags(0).setStripingPolicy(SetupUtils.getStripingPolicy(1, 2)).addOsdUuids(serverID.toString()).build(); - XLocSet xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").addReplicas(r).setVersion(1).build(); - - fcred = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xloc).build(); } - - @Override - protected void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - // cleanup - File testDir = new File(SetupUtils.TEST_DIR); - - FSUtils.delTree(testDir); - testDir.mkdirs(); - + + @Before + public void setUp() throws Exception { // startup: DIR - testEnv = new TestEnvironment(new TestEnvironment.Services[]{ - TestEnvironment.Services.DIR_SERVICE,TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, - TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT - }); + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, + TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT }); testEnv.start(); - + osdServer = new OSD(osdConfig); - + synchronized (this) { try { this.wait(50); @@ -97,19 +83,32 @@ public class OSDDataIntegrityTest extends TestCase { ex.printStackTrace(); } } - - osdClient = new OSDServiceClient(testEnv.getRpcClient(),null); + + osdClient = new OSDServiceClient(testEnv.getRpcClient(), null); + + fileId = "ABCDEF:1"; + cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, + System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, + osdConfig.getCapabilitySecret()); + + Replica r = Replica.newBuilder().setReplicationFlags(0).setStripingPolicy(SetupUtils.getStripingPolicy(1, 2)) + .addOsdUuids(serverID.toString()).build(); + XLocSet xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").addReplicas(r) + .setVersion(1).build(); + + fcred = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xloc).build(); } - - @Override - protected void tearDown() throws Exception { + + @After + public void tearDown() throws Exception { osdServer.shutdown(); - + testEnv.shutdown(); } - + + @Test public void testWriteRanges() throws Exception { - + // test for obj 1,2,3... for (int objId = 0; objId < 5; objId++) { // write half object @@ -118,50 +117,50 @@ public class OSDDataIntegrityTest extends TestCase { buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, objId, 0, 0, 0, data, buf.createViewBuffer()); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, objId, 0, 0, 0, data, buf.createViewBuffer()); OSDWriteResponse resp = r.get(); assertTrue(resp.hasSizeInBytes()); assertEquals(1024 + (objId) * 2048, resp.getSizeInBytes()); r.freeBuffers(); - + // read data - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, objId, 0, 0, buf.capacity()); + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, objId, 0, 0, buf.capacity()); data = r2.get(); ReusableBuffer dataOut = r2.getData(); - + dataOut.position(0); assertEquals(1024, dataOut.capacity()); for (int i = 0; i < 1024; i++) assertEquals((byte) 'A', dataOut.get()); r2.freeBuffers(); - + // write second half BufferPool.free(buf); buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) buf.put((byte) 'a'); buf.flip(); - RPCResponse r3 = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, objId, 0, 1024, 0, data, buf); + RPCResponse r3 = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, objId, 0, 1024, 0, data, buf); resp = r3.get(); r3.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(2048 + (objId) * 2048, resp.getSizeInBytes()); - + // read data - RPCResponse r4 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, objId, 0, 0, 2048); + RPCResponse r4 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, objId, 0, 0, 2048); data = r4.get(); dataOut = r4.getData(); - - + dataOut.position(0); assertEquals(2048, dataOut.capacity()); for (int i = 0; i < 1024; i++) @@ -170,23 +169,23 @@ public class OSDDataIntegrityTest extends TestCase { assertEquals((byte) 'a', dataOut.get()); r4.freeBuffers(); - + // write somewhere in the middle buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) buf.put((byte) 'x'); buf.flip(); - RPCResponse r5 = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, objId, 0, 512, 0, data, buf); + RPCResponse r5 = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, objId, 0, 512, 0, data, buf); resp = r5.get(); r5.freeBuffers(); - + // read data - RPCResponse r6 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, objId, 0, 0, 2048); + RPCResponse r6 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, objId, 0, 0, 2048); data = r6.get(); dataOut = r6.getData(); - + dataOut.position(0); assertEquals(2048, dataOut.capacity()); for (int i = 0; i < 512; i++) @@ -198,9 +197,10 @@ public class OSDDataIntegrityTest extends TestCase { r6.freeBuffers(); } - + } - + + @Test public void testReadRanges() throws Exception { // test for obj 1,2,3... @@ -217,15 +217,16 @@ public class OSDDataIntegrityTest extends TestCase { buf.put((byte) 'D'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, objId, 0, 0, 0, data,buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, objId, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); // read data 1st 512 bytes - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, objId, 0, 0, 512); + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, objId, 0, 0, 512); data = r2.get(); ReusableBuffer dataOut = r2.getData(); @@ -240,7 +241,6 @@ public class OSDDataIntegrityTest extends TestCase { ObjectData data2 = r2.get(); dataOut = r2.getData(); - dataOut.position(0); assertEquals(512, dataOut.capacity()); for (int i = 0; i < 512; i++) @@ -250,7 +250,7 @@ public class OSDDataIntegrityTest extends TestCase { } } - + @Test public void testImplicitTruncateWithinObject() throws Exception { // first test implicit truncate through write within a single object @@ -259,19 +259,19 @@ public class OSDDataIntegrityTest extends TestCase { buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 1024, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 1024, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(2048, resp.getSizeInBytes()); - // read data - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 2048); + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 2048); data = r2.get(); ReusableBuffer dataOut = r2.getData(); @@ -286,7 +286,7 @@ public class OSDDataIntegrityTest extends TestCase { r2.freeBuffers(); } - + @Test public void testImplicitTruncate() throws Exception { // first test implicit truncate through write within a single object @@ -294,9 +294,10 @@ public class OSDDataIntegrityTest extends TestCase { for (int i = 0; i < 1024; i++) buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 1024, 0, data,buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 1, 0, 1024, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); @@ -304,18 +305,18 @@ public class OSDDataIntegrityTest extends TestCase { // read data - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 2048); + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 2048); data = r2.get(); ReusableBuffer dataOut = r2.getData(); - assertTrue( (data.getZeroPadding() == 2048) && (dataOut == null) || - (data.getZeroPadding() == 0) && (dataOut.capacity() == 2048) ); + assertTrue((data.getZeroPadding() == 2048) && (dataOut == null) || (data.getZeroPadding() == 0) + && (dataOut.capacity() == 2048)); r2.freeBuffers(); // read data - r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 0, 2048); + r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 1, 0, 0, 2048); data = r2.get(); dataOut = r2.getData(); @@ -329,6 +330,7 @@ public class OSDDataIntegrityTest extends TestCase { r2.freeBuffers(); } + @Test public void testEOF() throws Exception { // first test implicit truncate through write within a single object @@ -336,21 +338,20 @@ public class OSDDataIntegrityTest extends TestCase { for (int i = 0; i < 1023; i++) buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 1024, 0, data,buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 1, 0, 1024, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); - assertEquals(2047+2048, resp.getSizeInBytes()); - + assertEquals(2047 + 2048, resp.getSizeInBytes()); - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 0, 2048); + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 1, 0, 0, 2048); data = r2.get(); ReusableBuffer dataOut = r2.getData(); - dataOut.position(0); assertEquals(2047, dataOut.capacity()); for (int i = 0; i < 1024; i++) @@ -359,10 +360,9 @@ public class OSDDataIntegrityTest extends TestCase { assertEquals((byte) 'A', dataOut.get()); r2.freeBuffers(); - // read non-existing object (EOF) - r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 2, 0, 0, 2048); + r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 2, 0, 0, 2048); data = r2.get(); dataOut = r2.getData(); @@ -370,7 +370,7 @@ public class OSDDataIntegrityTest extends TestCase { r2.freeBuffers(); } - + @Test public void testReadBeyonEOF() throws Exception { // first test implicit truncate through write within a single object @@ -378,17 +378,17 @@ public class OSDDataIntegrityTest extends TestCase { for (int i = 0; i < 1023; i++) buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 1024, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 1, 0, 1024, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); - assertEquals(2047+2048, resp.getSizeInBytes()); + assertEquals(2047 + 2048, resp.getSizeInBytes()); - - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 10, 0, 0, 2048); + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 10, 0, 0, 2048); data = r2.get(); ReusableBuffer dataOut = r2.getData(); @@ -397,7 +397,7 @@ public class OSDDataIntegrityTest extends TestCase { r2.freeBuffers(); } - + @Test public void testOverlappingWrites() throws Exception { // first test implicit truncate through write within a single object @@ -406,26 +406,27 @@ public class OSDDataIntegrityTest extends TestCase { buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 0, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 1, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); - assertEquals(2048+1024, resp.getSizeInBytes()); + assertEquals(2048 + 1024, resp.getSizeInBytes()); buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) buf.put((byte) 'B'); buf.flip(); - r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 512, 0, data, buf); + r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 1, 0, 512, 0, data, buf); resp = r.get(); r.freeBuffers(); // read data - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 0, 2048); + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 1, 0, 0, 2048); data = r2.get(); ReusableBuffer dataOut = r2.getData(); @@ -439,9 +440,4 @@ public class OSDDataIntegrityTest extends TestCase { r2.freeBuffers(); } - - public static void main(String[] args) { - TestRunner.run(OSDDataIntegrityTest.class); - } - } diff --git a/java/servers/test/org/xtreemfs/test/osd/OSDDrainTest.java b/java/servers/test/org/xtreemfs/test/osd/OSDDrainTest.java index 49ca09e86..7027294e1 100644 --- a/java/servers/test/org/xtreemfs/test/osd/OSDDrainTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/OSDDrainTest.java @@ -7,14 +7,21 @@ package org.xtreemfs.test.osd; -import java.io.IOException; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + import java.net.InetSocketAddress; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; -import junit.framework.TestCase; - +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.clients.Client; import org.xtreemfs.common.clients.File; @@ -28,8 +35,6 @@ import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; -import org.xtreemfs.foundation.util.FSUtils; -import org.xtreemfs.mrc.MRC; import org.xtreemfs.mrc.MRCConfig; import org.xtreemfs.mrc.MRCRequestDispatcher; import org.xtreemfs.osd.OSD; @@ -43,6 +48,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replica; import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * @author bzcseife @@ -51,38 +57,41 @@ import org.xtreemfs.test.TestEnvironment; * Mar 31, 2011 */ -public class OSDDrainTest extends TestCase { - private TestEnvironment testEnv; +public class OSDDrainTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + + private TestEnvironment testEnv; - private static final String VOLNAME = "testvolume"; - private static final String VOLNAME2 = "testvolume2"; + private static final String VOLNAME = "testvolume"; + private static final String VOLNAME2 = "testvolume2"; - private final int STRIPESIZE = 1024; + private static int STRIPESIZE = 1024; - private final OSDConfig osdConfig1; - private final OSDConfig osdConfig2; - private final OSDConfig osdConfig3; + private static OSDConfig osdConfig1; + private static OSDConfig osdConfig2; + private static OSDConfig osdConfig3; - private List osdServer; + private List osdServer; - private MRCServiceClient mrcClient; + private MRCServiceClient mrcClient; - private StripingPolicyImpl sp; + private static StripingPolicyImpl sp; - private final Auth authHeader = RPCAuthentication.authNone; + private final Auth authHeader = RPCAuthentication.authNone; - private final UserCredentials uc = RPCAuthentication.userService; + private final UserCredentials uc = RPCAuthentication.userService; - private UUIDResolver resolver; + private UUIDResolver resolver; - private OSDDrain osdDrain; + private OSDDrain osdDrain; - private MRCConfig mrc2Config; - - private MRCRequestDispatcher mrc2; + private MRCConfig mrc2Config; - public OSDDrainTest(String testName) throws IOException { - super(testName); + private MRCRequestDispatcher mrc2; + + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); osdConfig1 = SetupUtils.createOSD1Config(); @@ -94,20 +103,16 @@ public class OSDDrainTest extends TestCase { sp = StripingPolicyImpl.getPolicy(r, 0); } - protected void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); - + @Before + public void setUp() throws Exception { // startup: DIR testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, - TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT, - TestEnvironment.Services.MRC, + TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT, TestEnvironment.Services.MRC, }); testEnv.start(); - + mrc2Config = SetupUtils.createMRC2Config(); mrc2 = new MRCRequestDispatcher(mrc2Config, SetupUtils.createMRC2dbsConfig()); mrc2.startup(); @@ -116,20 +121,21 @@ public class OSDDrainTest extends TestCase { mrcClient = testEnv.getMrcClient(); - - DIRClient dir = new DIRClient(testEnv.getDirClient(), new InetSocketAddress[]{testEnv.getDIRAddress()}, 10, 1000 * 5); + DIRClient dir = new DIRClient(testEnv.getDirClient(), new InetSocketAddress[] { testEnv.getDIRAddress() }, 10, + 1000 * 5); resolver = UUIDResolver.startNonSingelton(dir, 1000, 10 * 10 * 1000); - osdDrain = new OSDDrain(dir, testEnv.getOSDClient(), testEnv.getMrcClient(), - osdConfig1.getUUID(), authHeader, uc, resolver); + osdDrain = new OSDDrain(dir, testEnv.getOSDClient(), testEnv.getMrcClient(), osdConfig1.getUUID(), authHeader, + uc, resolver); } - protected void tearDown() throws Exception { + @After + public void tearDown() throws Exception { if (mrc2 != null) { mrc2.shutdown(); } - + testEnv.shutdown(); } @@ -138,6 +144,7 @@ public class OSDDrainTest extends TestCase { * * @throws Exception */ + @Test public void testHandleNonExistingFile() throws Exception { osdServer.add(new OSD(osdConfig1)); @@ -145,8 +152,8 @@ public class OSDDrainTest extends TestCase { final Client c = new Client(new InetSocketAddress[] { testEnv.getDIRAddress() }, 15000, 300000, null); c.start(); - c.createVolume(VOLNAME, authHeader, uc, sp.getPolicy(), - AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, 0777); + c.createVolume(VOLNAME, authHeader, uc, sp.getPolicy(), AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, + 0777); Volume volume = c.getVolume(VOLNAME, uc); @@ -186,7 +193,7 @@ public class OSDDrainTest extends TestCase { raf1.close(); file1.delete(); - + c.deleteVolume(VOLNAME, authHeader, uc); c.stop(); @@ -199,6 +206,7 @@ public class OSDDrainTest extends TestCase { } + @Test public void testRemoveOSD() throws Exception { // start only one OSD to ensure that all file lay on the same OSD (easier to make assertions) @@ -215,8 +223,8 @@ public class OSDDrainTest extends TestCase { final Client c = new Client(new InetSocketAddress[] { testEnv.getDIRAddress() }, 15000, 300000, null); c.start(); - c.createVolume(VOLNAME, authHeader, uc, sp.getPolicy(), - AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, 0777); + c.createVolume(VOLNAME, authHeader, uc, sp.getPolicy(), AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, + 0777); Volume volume = c.getVolume(VOLNAME, uc); @@ -310,7 +318,7 @@ public class OSDDrainTest extends TestCase { } catch (OSDDrainException e) { osdDrain.handleException(e, true); } - + // test if files are the samel like before for (int i = 0; i < NUMBER_OF_FILES; i++) { RandomAccessFile raf = files[i].open("r", 0777); @@ -327,7 +335,7 @@ public class OSDDrainTest extends TestCase { for (File file : files) { file.delete(); } - + c.deleteVolume(VOLNAME, authHeader, uc); c.stop(); @@ -340,27 +348,27 @@ public class OSDDrainTest extends TestCase { } + @Test public void testMultipleMRCs() throws Exception { osdServer.add(new OSD(osdConfig1)); osdServer.add(new OSD(osdConfig2)); osdServer.add(new OSD(osdConfig3)); - + String mrc2UUID = mrc2Config.getUUID().toString(); - + final int NUMBER_OF_FILES = 10; LinkedList fileNames = new LinkedList(); for (int i = 0; i < NUMBER_OF_FILES; i++) { - fileNames.add("foo"+i); + fileNames.add("foo" + i); } final Client c = new Client(new InetSocketAddress[] { testEnv.getDIRAddress() }, 15000, 300000, null); c.start(); - - c.createVolume(VOLNAME, authHeader, uc, sp.getPolicy(), - AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, 0777, - SetupUtils.getMRC1UUID().toString()); - c.createVolume(VOLNAME2, authHeader, uc, sp.getPolicy(), - AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL , 0777, mrc2UUID); + + c.createVolume(VOLNAME, authHeader, uc, sp.getPolicy(), AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, + 0777, SetupUtils.getMRC1UUID().toString()); + c.createVolume(VOLNAME2, authHeader, uc, sp.getPolicy(), AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, + 0777, mrc2UUID); Volume volume1 = c.getVolume(VOLNAME, uc); Volume volume2 = c.getVolume(VOLNAME2, uc); @@ -371,12 +379,12 @@ public class OSDDrainTest extends TestCase { File files[] = new File[NUMBER_OF_FILES]; for (int i = 0; i < NUMBER_OF_FILES; i++) { - if (i%2 == 0) { - files[i] = volume1.getFile(fileNames.get(i)); + if (i % 2 == 0) { + files[i] = volume1.getFile(fileNames.get(i)); } else { files[i] = volume2.getFile(fileNames.get(i)); } - + files[i].createFile(); for (int j = 0; j < SIZE; j++) { @@ -388,7 +396,7 @@ public class OSDDrainTest extends TestCase { raf.flush(); raf.close(); } - + // remove first osd List fileInfos = null; try { @@ -397,7 +405,7 @@ public class OSDDrainTest extends TestCase { // get all files the OSD has fileInfos = osdDrain.getFileListOfOSD(); - + // get address of MRC which is responsible for every file osdDrain.updateMRCAddresses(fileInfos); @@ -459,7 +467,7 @@ public class OSDDrainTest extends TestCase { for (File file : files) { file.delete(); } - + c.deleteVolume(VOLNAME, authHeader, uc); c.deleteVolume(VOLNAME2, authHeader, uc); c.stop(); @@ -468,7 +476,7 @@ public class OSDDrainTest extends TestCase { osd.shutdown(); } osdServer.clear(); - + TimeSync.initializeLocal(50).waitForStartup(); } diff --git a/java/servers/test/org/xtreemfs/test/osd/OSDRangeReads.java b/java/servers/test/org/xtreemfs/test/osd/OSDRangeReads.java index 74fa18db7..afeaa473f 100644 --- a/java/servers/test/org/xtreemfs/test/osd/OSDRangeReads.java +++ b/java/servers/test/org/xtreemfs/test/osd/OSDRangeReads.java @@ -7,11 +7,16 @@ package org.xtreemfs.test.osd; -import java.io.File; - -import junit.framework.TestCase; -import junit.textui.TestRunner; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.foundation.buffer.BufferPool; @@ -19,7 +24,6 @@ import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.FileCredentials; @@ -32,63 +36,46 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectData; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; + +public class OSDRangeReads { + @Rule + public final TestRule testLog = TestHelper.testLog; + + private static ServiceUUID serverID; + + private static FileCredentials fcred; + + private static String fileId; + + private static Capability cap; + + private static OSDConfig osdConfig; + + private OSDServiceClient osdClient; -public class OSDRangeReads extends TestCase { - - private final ServiceUUID serverID; - - private final FileCredentials fcred; - - private final String fileId; - - private final Capability cap; - - private final OSDConfig osdConfig; - - - private OSDServiceClient osdClient; - - - private OSD osdServer; - private TestEnvironment testEnv; - - public OSDRangeReads(String testName) throws Exception { - super(testName); - + private OSD osdServer; + private TestEnvironment testEnv; + + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - + osdConfig = SetupUtils.createOSD1Config(); serverID = SetupUtils.getOSD1UUID(); - - fileId = "ABCDEF:1"; - cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, osdConfig.getCapabilitySecret()); + } - Replica r = Replica.newBuilder().setReplicationFlags(0).setStripingPolicy(SetupUtils.getStripingPolicy(1, 2)).addOsdUuids(serverID.toString()).build(); - XLocSet xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").addReplicas(r).setVersion(1).build(); + @Before + public void setUp() throws Exception { - fcred = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xloc).build(); - } - - @Override - protected void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - // cleanup - File testDir = new File(SetupUtils.TEST_DIR); - - FSUtils.delTree(testDir); - testDir.mkdirs(); - // startup: DIR - testEnv = new TestEnvironment(new TestEnvironment.Services[]{ - TestEnvironment.Services.DIR_SERVICE,TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, - TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT - }); + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, + TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT }); testEnv.start(); - + osdServer = new OSD(osdConfig); - + synchronized (this) { try { this.wait(50); @@ -96,106 +83,118 @@ public class OSDRangeReads extends TestCase { ex.printStackTrace(); } } - - osdClient = new OSDServiceClient(testEnv.getRpcClient(),null); + + osdClient = new OSDServiceClient(testEnv.getRpcClient(), null); + + fileId = "ABCDEF:1"; + cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, + System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, + osdConfig.getCapabilitySecret()); + + Replica r = Replica.newBuilder().setReplicationFlags(0).setStripingPolicy(SetupUtils.getStripingPolicy(1, 2)) + .addOsdUuids(serverID.toString()).build(); + XLocSet xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").addReplicas(r) + .setVersion(1).build(); + + fcred = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xloc).build(); } - - @Override - protected void tearDown() throws Exception { + + @After + public void tearDown() throws Exception { osdServer.shutdown(); - + testEnv.shutdown(); } + @Test public void testRandomRanges() throws Exception { - System.out.println("TEST testRandomRanges"); - //write object + // write object ReusableBuffer buf = BufferPool.allocate(2048); for (int i = 0; i < 2048; i++) - buf.put((byte)((i%26) + 65)); + buf.put((byte) ((i % 26) + 65)); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 0, data,buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(2048, resp.getSizeInBytes()); - //do random reads + // do random reads for (int round = 0; round < 200; round++) { - final int offset = (int)(Math.random()*2048.0); - final int size = (int)(Math.random()*(2048.0-(offset))); - System.out.println("offset: "+offset+" size: "+size); - assert (offset+size <= 2048); - RPCResponse rr = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, offset, size); + final int offset = (int) (Math.random() * 2048.0); + final int size = (int) (Math.random() * (2048.0 - (offset))); + System.out.println("offset: " + offset + " size: " + size); + assert (offset + size <= 2048); + RPCResponse rr = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, offset, size); data = rr.get(); ReusableBuffer dataOut = rr.getData(); if (size == 0) assertNull(dataOut); else - assertEquals(size,dataOut.remaining()); + assertEquals(size, dataOut.remaining()); for (int i = 0; i < size; i++) { - assertEquals((byte)(((i+offset)%26) + 65), dataOut.get()); + assertEquals((byte) (((i + offset) % 26) + 65), dataOut.get()); } rr.freeBuffers(); } } + @Test public void testRandomRangesWithEOF() throws Exception { - System.out.println("TEST testRandomRangesWithEOF"); - //write object + // write object ReusableBuffer buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) - buf.put((byte)((i%26) + 65)); + buf.put((byte) ((i % 26) + 65)); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(1024, resp.getSizeInBytes()); - //do random reads + // do random reads for (int round = 0; round < 200; round++) { - final int offset = (int)(Math.random()*2048.0); - final int size = (int)(Math.random()*(2048.0-(offset))); - System.out.println("offset: "+offset+" size: "+size); - assert (offset+size <= 2048); - RPCResponse rr = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, offset, size); + final int offset = (int) (Math.random() * 2048.0); + final int size = (int) (Math.random() * (2048.0 - (offset))); + System.out.println("offset: " + offset + " size: " + size); + assert (offset + size <= 2048); + RPCResponse rr = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, offset, size); data = rr.get(); ReusableBuffer dataOut = rr.getData(); - if (offset+size < 1024) { + if (offset + size < 1024) { if (size == 0) assertNull(dataOut); else - assertEquals(size,dataOut.remaining()); + assertEquals(size, dataOut.remaining()); } else { if (offset >= 1024) { assertNull(dataOut); } else { - assertEquals(1024-offset, dataOut.remaining()); + assertEquals(1024 - offset, dataOut.remaining()); } } final int remain = (dataOut == null) ? 0 : dataOut.remaining(); for (int i = 0; i < remain; i++) { - assertEquals((byte)(((i+offset)%26) + 65),dataOut.get()); + assertEquals((byte) (((i + offset) % 26) + 65), dataOut.get()); } rr.freeBuffers(); } } - - + + @Test public void testRangeReads() throws Exception { - + /* - * layout is - * obj 0: never written, does not exist on disk - * obj 1: 1024 written, 1024 implicit padding - * obj 2: 1024 written + * layout is obj 0: never written, does not exist on disk obj 1: 1024 written, 1024 implicit padding obj 2: 1024 + * written */ // first test implicit truncate through write within a single object @@ -203,89 +202,85 @@ public class OSDRangeReads extends TestCase { for (int i = 0; i < 1024; i++) buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 0, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 1, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); - assertEquals(2048+1024, resp.getSizeInBytes()); + assertEquals(2048 + 1024, resp.getSizeInBytes()); buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) buf.put((byte) 'A'); buf.flip(); - r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 2, 0, 0, 0, data, buf); + r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 2, 0, 0, 0, data, buf); resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); - assertEquals(4096+1024, resp.getSizeInBytes()); + assertEquals(4096 + 1024, resp.getSizeInBytes()); - //get a range on a fully zero padded object - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 128, 2048-128); + // get a range on a fully zero padded object + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 128, 2048 - 128); data = r2.get(); ReusableBuffer dataOut = r2.getData(); - assertEquals(2048-128,data.getZeroPadding()); - assertNull(dataOut); //0 length is now a NULL buffer + assertEquals(2048 - 128, data.getZeroPadding()); + assertNull(dataOut); // 0 length is now a NULL buffer r2.freeBuffers(); - - //get only the buffer, not the padding from object 1 - r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 0, 1024); + // get only the buffer, not the padding from object 1 + r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 1, 0, 0, 1024); data = r2.get(); dataOut = r2.getData(); - assertEquals(0,data.getZeroPadding()); - assertEquals(1024,dataOut.capacity()); + assertEquals(0, data.getZeroPadding()); + assertEquals(1024, dataOut.capacity()); r2.freeBuffers(); - //get only the padding, not the buffer - r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 1024, 1024); + // get only the padding, not the buffer + r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 1, 0, 1024, 1024); data = r2.get(); dataOut = r2.getData(); - assertEquals(1024,data.getZeroPadding()); + assertEquals(1024, data.getZeroPadding()); assertNull(dataOut); // 0 length = null buffer r2.freeBuffers(); - //get a bit of the buffer and a bit of the padding - r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 1, 0, 512, 1024); + // get a bit of the buffer and a bit of the padding + r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 1, 0, 512, 1024); data = r2.get(); dataOut = r2.getData(); - assertEquals(512,data.getZeroPadding()); - assertEquals(512,dataOut.capacity()); + assertEquals(512, data.getZeroPadding()); + assertEquals(512, dataOut.capacity()); r2.freeBuffers(); - //get beyond EOF - r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 2, 0, 512, 1024); + // get beyond EOF + r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 2, 0, 512, 1024); data = r2.get(); dataOut = r2.getData(); - assertEquals(0,data.getZeroPadding()); - assertEquals(512,dataOut.capacity()); + assertEquals(0, data.getZeroPadding()); + assertEquals(512, dataOut.capacity()); r2.freeBuffers(); - //get beyond EOF - r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 2, 0, 1024, 1024); + // get beyond EOF + r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 2, 0, 1024, 1024); data = r2.get(); dataOut = r2.getData(); - assertEquals(0,data.getZeroPadding()); + assertEquals(0, data.getZeroPadding()); assertNull(dataOut); // 0 length = null buffer r2.freeBuffers(); } - - public static void main(String[] args) { - TestRunner.run(OSDRangeReads.class); - } - + } diff --git a/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java b/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java index 83cf28ef7..a468c5e73 100644 --- a/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java @@ -7,11 +7,16 @@ package org.xtreemfs.test.osd; -import java.io.File; - -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; + +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.foundation.buffer.BufferPool; @@ -19,7 +24,6 @@ import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.mrc.ac.FileAccessManager; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; @@ -34,63 +38,46 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectData; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; + +public class OSDTruncateTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + + private static ServiceUUID serverID; + + private static FileCredentials fcred; + + private static String fileId; + + private static Capability cap; + + private static OSDConfig osdConfig; + + private OSDServiceClient osdClient; + + private OSD osdServer; + private TestEnvironment testEnv; + + @BeforeClass + public static void setUpClass() throws Exception { -public class OSDTruncateTest extends TestCase { - - private final ServiceUUID serverID; - - private FileCredentials fcred; - - private final String fileId; - - private final Capability cap; - - private final OSDConfig osdConfig; - - - private OSDServiceClient osdClient; - - - private OSD osdServer; - private TestEnvironment testEnv; - - public OSDTruncateTest(String testName) throws Exception { - super(testName); - Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - + osdConfig = SetupUtils.createOSD1Config(); serverID = SetupUtils.getOSD1UUID(); - - fileId = "ABCDEF:1"; - cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber() | FileAccessManager.NON_POSIX_DELETE, 60, System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, osdConfig.getCapabilitySecret()); - - Replica r = Replica.newBuilder().setReplicationFlags(0).setStripingPolicy(SetupUtils.getStripingPolicy(1, 2)).addOsdUuids(serverID.toString()).build(); - XLocSet xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").addReplicas(r).setVersion(1).build(); - - fcred = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xloc).build(); } - - @Override - protected void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - // cleanup - File testDir = new File(SetupUtils.TEST_DIR); - - FSUtils.delTree(testDir); - testDir.mkdirs(); - + + @Before + public void setUp() throws Exception { // startup: DIR - testEnv = new TestEnvironment(new TestEnvironment.Services[]{ - TestEnvironment.Services.DIR_SERVICE,TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, - TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT - }); + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, + TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT }); testEnv.start(); - + osdServer = new OSD(osdConfig); - + synchronized (this) { try { this.wait(50); @@ -98,45 +85,63 @@ public class OSDTruncateTest extends TestCase { ex.printStackTrace(); } } - - osdClient = new OSDServiceClient(testEnv.getRpcClient(),null); + + osdClient = new OSDServiceClient(testEnv.getRpcClient(), null); + + fileId = "ABCDEF:1"; + cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() + | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber() | FileAccessManager.NON_POSIX_DELETE, 60, + System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, + osdConfig.getCapabilitySecret()); + + Replica r = Replica.newBuilder().setReplicationFlags(0).setStripingPolicy(SetupUtils.getStripingPolicy(1, 2)) + .addOsdUuids(serverID.toString()).build(); + XLocSet xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy("").addReplicas(r) + .setVersion(1).build(); + + fcred = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xloc).build(); } - - @Override - protected void tearDown() throws Exception { + + @After + public void tearDown() throws Exception { osdServer.shutdown(); - + testEnv.shutdown(); } + @Test public void testDeleteFile() throws Exception { // wirte first 1024 bytes to object 0 ReusableBuffer buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(1024, resp.getSizeInBytes()); - RPCResponse dr = osdClient.unlink(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, fileId); + RPCResponse dr = osdClient.unlink(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId); dr.get(); dr.freeBuffers(); } + @Test public void testTruncateShrink() throws Exception { // wirte first 1024 bytes to object 0 ReusableBuffer buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); @@ -146,91 +151,92 @@ public class OSDTruncateTest extends TestCase { for (int i = 0; i < 1024; i++) buf.put((byte) 'C'); buf.flip(); - r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 3, 0, 0, 0, data, buf); + r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 3, 0, 0, 0, data, buf); resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); - assertEquals(3*2048+1024, resp.getSizeInBytes()); - + assertEquals(3 * 2048 + 1024, resp.getSizeInBytes()); XCap newCap = fcred.getXcap().toBuilder().setTruncateEpoch(1).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - //truncate shrink to 3 object, 3rd object half - r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 2048*2+1024); + // truncate shrink to 3 object, 3rd object half + r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 2048 * 2 + 1024); resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); - assertEquals(2*2048+1024, resp.getSizeInBytes()); - + assertEquals(2 * 2048 + 1024, resp.getSizeInBytes()); - //get object 2 should be 1024 bytes long, no padding - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 2, 0, 0, 2048); + // get object 2 should be 1024 bytes long, no padding + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 2, 0, 0, 2048); data = r2.get(); - assertEquals(0,data.getZeroPadding()); - assertEquals(1024,r2.getData().capacity()); + assertEquals(0, data.getZeroPadding()); + assertEquals(1024, r2.getData().capacity()); r2.freeBuffers(); - //get object 0 should be 2048 bytes long, either half data + half zeros or padding - r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 2048); + // get object 0 should be 2048 bytes long, either half data + half zeros or padding + r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 0, 0, 0, 2048); data = r2.get(); ReusableBuffer dataOut = r2.getData(); - assertTrue( (data.getZeroPadding() == 0) && (dataOut.capacity() == 2048) || - (data.getZeroPadding() == 1024) && (dataOut.capacity() == 1024) ); + assertTrue((data.getZeroPadding() == 0) && (dataOut.capacity() == 2048) || (data.getZeroPadding() == 1024) + && (dataOut.capacity() == 1024)); r2.freeBuffers(); } + @Test public void testTruncateShrink2() throws Exception { // wirte first 1024 bytes to object 0 ReusableBuffer buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 6, 0, 0, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 6, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); - assertEquals(6*2048+1024, resp.getSizeInBytes()); + assertEquals(6 * 2048 + 1024, resp.getSizeInBytes()); XCap newCap = fcred.getXcap().toBuilder().setTruncateEpoch(1).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - //truncate shrink to 3 object, 3rd object half - r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 2048*2+1024); + // truncate shrink to 3 object, 3rd object half + r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 2048 * 2 + 1024); resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); - assertEquals(2*2048+1024, resp.getSizeInBytes()); + assertEquals(2 * 2048 + 1024, resp.getSizeInBytes()); - - //get object 2 should be 1024 bytes long, no padding - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 6, 0, 0, 2048); + // get object 2 should be 1024 bytes long, no padding + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 6, 0, 0, 2048); data = r2.get(); - assertEquals(0,data.getZeroPadding()); + assertEquals(0, data.getZeroPadding()); assertNull(r2.getData()); // null equals length 0 r2.freeBuffers(); } + @Test public void testTruncateShrinkInObject() throws Exception { // wirte first 1024 bytes to object 0 ReusableBuffer buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); @@ -239,23 +245,22 @@ public class OSDTruncateTest extends TestCase { XCap newCap = fcred.getXcap().toBuilder().setTruncateEpoch(1).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - //truncate shrink to 512 - r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 512); + // truncate shrink to 512 + r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 512); resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(512, resp.getSizeInBytes()); - - //get a range on a fully zero padded object - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 2048); + // get a range on a fully zero padded object + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 2048); data = r2.get(); ReusableBuffer dataOut = r2.getData(); - assertEquals(0,data.getZeroPadding()); - assertEquals(512,dataOut.capacity()); + assertEquals(0, data.getZeroPadding()); + assertEquals(512, dataOut.capacity()); for (int i = 0; i < 512; i++) assertEquals((byte) 'A', dataOut.get()); @@ -263,16 +268,17 @@ public class OSDTruncateTest extends TestCase { r2.freeBuffers(); } - + @Test public void testTruncateExtendInObject() throws Exception { // wirte first 1024 bytes to object 0 ReusableBuffer buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); @@ -281,42 +287,42 @@ public class OSDTruncateTest extends TestCase { XCap newCap = fcred.getXcap().toBuilder().setTruncateEpoch(1).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - //truncate extend to 2047 - r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 2047); + // truncate extend to 2047 + r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 2047); resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(2047, resp.getSizeInBytes()); - - //get a range on a fully zero padded object - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 2048); + // get a range on a fully zero padded object + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 2048); data = r2.get(); ReusableBuffer dataOut = r2.getData(); - assertEquals(0,data.getZeroPadding()); - assertEquals(2047,dataOut.capacity()); + assertEquals(0, data.getZeroPadding()); + assertEquals(2047, dataOut.capacity()); for (int i = 0; i < 1024; i++) assertEquals((byte) 'A', dataOut.get()); for (int i = 0; i < 1023; i++) assertEquals((byte) 0, dataOut.get()); - r2.freeBuffers(); } + @Test public void testTruncateExtend() throws Exception { // wirte first 1024 bytes to object 0 ReusableBuffer buf = BufferPool.allocate(1024); for (int i = 0; i < 1024; i++) buf.put((byte) 'A'); buf.flip(); - ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 0, 0, 0, 0, data, buf); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 0, data, buf); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); @@ -325,38 +331,34 @@ public class OSDTruncateTest extends TestCase { XCap newCap = fcred.getXcap().toBuilder().setTruncateEpoch(1).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - //truncate extend to 4 objects + // truncate extend to 4 objects - r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 2048*4); + r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 2048 * 4); resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); - assertEquals(2048*4, resp.getSizeInBytes()); + assertEquals(2048 * 4, resp.getSizeInBytes()); - - //get a range on a fully zero padded object - RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 2, 0, 0, 2048); + // get a range on a fully zero padded object + RPCResponse r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 2, 0, 0, 2048); data = r2.get(); ReusableBuffer dataOut = r2.getData(); - assertEquals(2048,data.getZeroPadding()); - assertNull(dataOut); // null equals length 0 + assertEquals(2048, data.getZeroPadding()); + assertNull(dataOut); // null equals length 0 r2.freeBuffers(); - r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, fileId, 3, 0, 0, 2048); + r2 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 3, 0, 0, 2048); data = r2.get(); dataOut = r2.getData(); - assertEquals(0,data.getZeroPadding()); - assertEquals(2048,dataOut.capacity()); + assertEquals(0, data.getZeroPadding()); + assertEquals(2048, dataOut.capacity()); r2.freeBuffers(); } - - public static void main(String[] args) { - TestRunner.run(OSDTruncateTest.class); - } - + + } diff --git a/java/servers/test/org/xtreemfs/test/osd/SimpleVivaldiStageTest.java b/java/servers/test/org/xtreemfs/test/osd/SimpleVivaldiStageTest.java index 3d062abcb..8e54f9dda 100644 --- a/java/servers/test/org/xtreemfs/test/osd/SimpleVivaldiStageTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/SimpleVivaldiStageTest.java @@ -7,15 +7,18 @@ package org.xtreemfs.test.osd; +import static org.junit.Assert.assertEquals; + import java.net.DatagramPacket; import java.net.DatagramSocket; -import java.net.InetSocketAddress; -import junit.framework.TestCase; + import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; @@ -29,35 +32,34 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceConstants; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; import org.xtreemfs.test.TestEnvironment.Services; +import org.xtreemfs.test.TestHelper; /** - * + * * @author bjko */ -public class SimpleVivaldiStageTest extends TestCase { - - TestEnvironment env; +public class SimpleVivaldiStageTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - public SimpleVivaldiStageTest() { - Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - } + TestEnvironment env; @BeforeClass public static void setUpClass() throws Exception { + Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } @AfterClass public static void tearDownClass() throws Exception { } - @Override @Before public void setUp() throws Exception { - env = new TestEnvironment(new TestEnvironment.Services[]{Services.DIR_SERVICE,Services.OSD, Services.OSD_CLIENT}); + env = new TestEnvironment(new TestEnvironment.Services[] { Services.DIR_SERVICE, Services.OSD, + Services.OSD_CLIENT }); env.start(); } - @Override @After public void tearDown() { env.shutdown(); @@ -65,12 +67,18 @@ public class SimpleVivaldiStageTest extends TestCase { @Test public void testVivaldiPing() throws Exception { - xtreemfs_pingMesssage payload = xtreemfs_pingMesssage.newBuilder().setRequestResponse(true).setCoordinates(VivaldiCoordinates.newBuilder().setXCoordinate(1.1).setYCoordinate(1.2).setLocalError(0.5)).build(); - - RPCHeader.RequestHeader rqHdr = RPCHeader.RequestHeader.newBuilder().setAuthData(RPCAuthentication.authNone). - setUserCreds(RPCAuthentication.userService).setInterfaceId(OSDServiceConstants.INTERFACE_ID). - setProcId(OSDServiceConstants.PROC_ID_XTREEMFS_PING).build(); - RPCHeader hdr = RPCHeader.newBuilder().setCallId(5).setMessageType(MessageType.RPC_REQUEST).setRequestHeader(rqHdr).build(); + xtreemfs_pingMesssage payload = xtreemfs_pingMesssage + .newBuilder() + .setRequestResponse(true) + .setCoordinates( + VivaldiCoordinates.newBuilder().setXCoordinate(1.1).setYCoordinate(1.2).setLocalError(0.5)) + .build(); + + RPCHeader.RequestHeader rqHdr = RPCHeader.RequestHeader.newBuilder().setAuthData(RPCAuthentication.authNone) + .setUserCreds(RPCAuthentication.userService).setInterfaceId(OSDServiceConstants.INTERFACE_ID) + .setProcId(OSDServiceConstants.PROC_ID_XTREEMFS_PING).build(); + RPCHeader hdr = RPCHeader.newBuilder().setCallId(5).setMessageType(MessageType.RPC_REQUEST) + .setRequestHeader(rqHdr).build(); PBRPCDatagramPacket dpack = new PBRPCDatagramPacket(hdr, payload); @@ -91,24 +99,25 @@ public class SimpleVivaldiStageTest extends TestCase { dsock.close(); } - /*@Test - public void testVivaldiPingTCP() throws Exception { - RPCResponse vc = env.getOSDClient().internal_vivaldi_ping(env.getOSDAddress(), new VivaldiCoordinates(1.1, 1.2, 0.5)); - VivaldiCoordinates rv = vc.get(); - vc.freeBuffers(); - - - }*/ + /* + * @Test public void testVivaldiPingTCP() throws Exception { RPCResponse vc = + * env.getOSDClient().internal_vivaldi_ping(env.getOSDAddress(), new VivaldiCoordinates(1.1, 1.2, 0.5)); + * VivaldiCoordinates rv = vc.get(); vc.freeBuffers(); + * + * + * } + */ @Test public void testVivaldiCoordinates() throws Exception { - final VivaldiCoordinates c1 = VivaldiCoordinates.newBuilder().setXCoordinate(1.1).setYCoordinate(1.2).setLocalError(0.5).build(); + final VivaldiCoordinates c1 = VivaldiCoordinates.newBuilder().setXCoordinate(1.1).setYCoordinate(1.2) + .setLocalError(0.5).build(); final String c1s = VivaldiNode.coordinatesToString(c1); final VivaldiCoordinates c2 = VivaldiNode.stringToCoordinates(c1s); - assertEquals(c1.getXCoordinate(),c2.getXCoordinate()); - assertEquals(c1.getYCoordinate(),c2.getYCoordinate()); - assertEquals(c1.getLocalError(),c2.getLocalError()); + assertEquals((Double) c1.getXCoordinate(), (Double) c2.getXCoordinate()); + assertEquals((Double) c1.getYCoordinate(), (Double) c2.getYCoordinate()); + assertEquals((Double) c1.getLocalError(), (Double) c2.getLocalError()); } // public void hello() {} diff --git a/java/servers/test/org/xtreemfs/test/osd/StorageLayoutTest.java b/java/servers/test/org/xtreemfs/test/osd/StorageLayoutTest.java index 23aed3191..582114c8d 100644 --- a/java/servers/test/org/xtreemfs/test/osd/StorageLayoutTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/StorageLayoutTest.java @@ -8,16 +8,21 @@ package org.xtreemfs.test.osd; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; + import java.io.File; import java.io.IOException; import java.util.ArrayList; -import java.util.HashMap; -import java.util.Map; -import java.util.concurrent.ArrayBlockingQueue; - -import junit.framework.TestCase; -import junit.textui.TestRunner; +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.xloc.StripingPolicyImpl; import org.xtreemfs.foundation.buffer.BufferPool; import org.xtreemfs.foundation.buffer.ReusableBuffer; @@ -35,35 +40,41 @@ import org.xtreemfs.osd.storage.SingleFileStorageLayout; import org.xtreemfs.osd.storage.StorageLayout; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replica; import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestHelper; /** - * + * * @author bjko */ -public class StorageLayoutTest extends TestCase { +public class StorageLayoutTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - final OSDConfig config; + static OSDConfig config; - public StorageLayoutTest(String testName) throws IOException { - super(testName); + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); config = SetupUtils.createOSD1Config(); } - protected void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); + @Before + public void setUp() throws Exception { FSUtils.delTree(new File(config.getObjDir())); } - protected void tearDown() throws Exception { + @After + public void tearDown() throws Exception { } + @Test public void testHashStorageLayoutBasics() throws Exception { HashStorageLayout layout = new HashStorageLayout(config, new MetadataCache()); basicTests(layout); } + @Test public void testHashStorageLayoutWithChecksumsBasics() throws Exception { JavaChecksumProvider j = new JavaChecksumProvider(); @@ -75,11 +86,13 @@ public class StorageLayoutTest extends TestCase { basicTests(layout); } + @Test public void testSingleFileLayout() throws Exception { SingleFileStorageLayout layout = new SingleFileStorageLayout(config, new MetadataCache()); basicTests(layout); } + @Test public void testSingleFileStorageLayoutWithChecksumsBasics() throws Exception { JavaChecksumProvider j = new JavaChecksumProvider(); @@ -91,24 +104,28 @@ public class StorageLayoutTest extends TestCase { basicTests(layout); } + @Test public void testHashStorageLayoutGetObjectList() throws Exception { HashStorageLayout layout = new HashStorageLayout(config, new MetadataCache()); getObjectListTest(layout); } + @Test public void testSingleFileStorageLayoutGetObjectList() throws Exception { SingleFileStorageLayout layout = new SingleFileStorageLayout(config, new MetadataCache()); getObjectListTest(layout); } - + + @Test public void testHashStorageLayoutGetFileIDList() throws Exception { HashStorageLayout layout = new HashStorageLayout(config, new MetadataCache()); getFileIDListTest(layout); } + @Test public void testSingleFileStorageLayoutGetFileIDList() throws Exception { SingleFileStorageLayout layout = new SingleFileStorageLayout(config, new MetadataCache()); @@ -122,17 +139,18 @@ public class StorageLayoutTest extends TestCase { private void basicTests(StorageLayout layout) throws IOException { final String fileId = "ABCDEFG:0001"; - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 64)).setReplicationFlags(0).build(); - StripingPolicyImpl sp = StripingPolicyImpl.getPolicy(r,0);//new RAID0(64, 1); + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 64)).setReplicationFlags(0) + .build(); + StripingPolicyImpl sp = StripingPolicyImpl.getPolicy(r, 0);// new RAID0(64, 1); - /*FileMetadata md = new FileMetadata(sp); - md.initLatestObjectVersions(new HashMap()); - md.initLargestObjectVersions(new HashMap()); - md.initObjectChecksums(new HashMap());*/ + /* + * FileMetadata md = new FileMetadata(sp); md.initLatestObjectVersions(new HashMap()); + * md.initLargestObjectVersions(new HashMap()); md.initObjectChecksums(new HashMap()); + */ FileMetadata md = layout.getFileMetadata(sp, fileId); assertNotNull(md); - + assertFalse(layout.fileExists(fileId)); ReusableBuffer data = BufferPool.allocate(64); @@ -140,10 +158,10 @@ public class StorageLayoutTest extends TestCase { data.put((byte) (48 + i)); } data.flip(); - //write 64 bytes + // write 64 bytes layout.writeObject(fileId, md, data, 0l, 0, 1l, false, false); - //read full object + // read full object ObjectInformation oinfo = layout.readObject(fileId, md, 0l, 0, StorageLayout.FULL_OBJECT_LENGTH, 1l); assertEquals(64, oinfo.getData().capacity()); for (int i = 0; i < 64; i++) { @@ -151,68 +169,67 @@ public class StorageLayoutTest extends TestCase { } BufferPool.free(oinfo.getData()); - //read object 1 (does not exist) - oinfo = layout.readObject(fileId,md, 1l, 0, StorageLayout.FULL_OBJECT_LENGTH, 1l); - assertEquals(ObjectInformation.ObjectStatus.DOES_NOT_EXIST,oinfo.getStatus()); + // read object 1 (does not exist) + oinfo = layout.readObject(fileId, md, 1l, 0, StorageLayout.FULL_OBJECT_LENGTH, 1l); + assertEquals(ObjectInformation.ObjectStatus.DOES_NOT_EXIST, oinfo.getStatus()); - //range test - oinfo = layout.readObject(fileId,md, 0l, 32, 32, 1l); + // range test + oinfo = layout.readObject(fileId, md, 0l, 32, 32, 1l); assertEquals(32, oinfo.getData().capacity()); for (int i = 32; i < 64; i++) { assertEquals((byte) (48 + i), oinfo.getData().get()); } BufferPool.free(oinfo.getData()); - //range test - oinfo = layout.readObject(fileId,md, 0l, 32, 1, 1l); + // range test + oinfo = layout.readObject(fileId, md, 0l, 32, 1, 1l); assertEquals(1, oinfo.getData().capacity()); for (int i = 32; i < 33; i++) { assertEquals((byte) (48 + i), oinfo.getData().get()); } BufferPool.free(oinfo.getData()); - oinfo = layout.readObject(fileId,md, 0l, 32, 64, 1l); + oinfo = layout.readObject(fileId, md, 0l, 32, 64, 1l); assertEquals(32, oinfo.getData().capacity()); for (int i = 32; i < 64; i++) { assertEquals((byte) (48 + i), oinfo.getData().get()); } BufferPool.free(oinfo.getData()); - //truncate to 32 byte + // truncate to 32 byte layout.truncateObject(fileId, md, 0l, 32, 1, false); - oinfo = layout.readObject(fileId,md, 0l, 32, 64, 1l); + oinfo = layout.readObject(fileId, md, 0l, 32, 64, 1l); assertTrue(((oinfo.getData() == null) || (oinfo.getData().capacity() == 0))); BufferPool.free(oinfo.getData()); - //read (non-existent) data from offset 32 - oinfo = layout.readObject(fileId,md, 0l, 0, 32, 1l); + // read (non-existent) data from offset 32 + oinfo = layout.readObject(fileId, md, 0l, 0, 32, 1l); assertEquals(32, oinfo.getData().capacity()); for (int i = 0; i < 32; i++) { assertEquals((byte) (48 + i), oinfo.getData().get()); } BufferPool.free(oinfo.getData()); - //truncate extend to 64 bytes + // truncate extend to 64 bytes layout.truncateObject(fileId, md, 0l, 64, 2, false); - oinfo = layout.readObject(fileId,md, 0l, 32, 64, 2l); + oinfo = layout.readObject(fileId, md, 0l, 32, 64, 2l); assertEquals(32, oinfo.getData().capacity()); for (int i = 0; i < 32; i++) { assertEquals((byte) 0, oinfo.getData().get()); } BufferPool.free(oinfo.getData()); - - //write more objects... - //obj 1 = hole - //obj 2 = second half - //obj 3 = full + // write more objects... + // obj 1 = hole + // obj 2 = second half + // obj 3 = full data = BufferPool.allocate(32); for (int i = 0; i < 32; i++) { data.put((byte) (48 + i)); } data.flip(); - //write 64 bytes + // write 64 bytes layout.writeObject(fileId, md, data, 2l, 0, 1l, false, false); data = BufferPool.allocate(64); @@ -220,39 +237,38 @@ public class StorageLayoutTest extends TestCase { data.put((byte) (48 + i)); } data.flip(); - //write 64 bytes + // write 64 bytes layout.writeObject(fileId, md, data, 3l, 0, 1l, false, false); - //read object 1... should be all zeros or zero padding - oinfo = layout.readObject(fileId,md, 1l, 0, sp.getStripeSizeForObject(1), 1l); + // read object 1... should be all zeros or zero padding + oinfo = layout.readObject(fileId, md, 1l, 0, sp.getStripeSizeForObject(1), 1l); if (oinfo.getStatus() == ObjectInformation.ObjectStatus.PADDING_OBJECT) { - //fine + // fine } else if (oinfo.getStatus() == ObjectInformation.ObjectStatus.DOES_NOT_EXIST) { - //also fine + // also fine } else { - //we expect full stripe size of zeros - assertEquals(sp.getStripeSizeForObject(1),oinfo.getData().capacity()); + // we expect full stripe size of zeros + assertEquals(sp.getStripeSizeForObject(1), oinfo.getData().capacity()); for (int i = 0; i < sp.getStripeSizeForObject(1); i++) { assertEquals((byte) 0, oinfo.getData().get()); } BufferPool.free(oinfo.getData()); } - - } private void getObjectListTest(StorageLayout layout) throws IOException { final String fileId = "ABCDEFG:0001"; - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 64)).setReplicationFlags(0).build(); - StripingPolicyImpl sp = StripingPolicyImpl.getPolicy(r,0);// new RAID0(64, 1); + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 64)).setReplicationFlags(0) + .build(); + StripingPolicyImpl sp = StripingPolicyImpl.getPolicy(r, 0);// new RAID0(64, 1); FileMetadata md = layout.getFileMetadata(sp, fileId); assertNotNull(md); assertFalse(layout.fileExists(fileId)); - assertEquals(0, layout.getObjectSet(fileId,md).size()); + assertEquals(0, layout.getObjectSet(fileId, md).size()); ReusableBuffer data = BufferPool.allocate(64); for (int i = 0; i < 64; i++) { @@ -268,7 +284,7 @@ public class StorageLayoutTest extends TestCase { } BufferPool.free(data); - ObjectSet objectList = layout.getObjectSet(fileId,md); + ObjectSet objectList = layout.getObjectSet(fileId, md); // check ObjectSet objectNosList = new ObjectSet(1, 0, objectNos.length); for (long object : objectNos) @@ -282,39 +298,35 @@ public class StorageLayoutTest extends TestCase { fileIDs.add("0012:GHIJKL"); fileIDs.add("0123:MNOPQR"); fileIDs.add("1234:STUVWX"); - - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 64)).setReplicationFlags(0).build(); - StripingPolicyImpl sp = StripingPolicyImpl.getPolicy(r,0);// new RAID0(64, 1); - - //create some data + + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 64)).setReplicationFlags(0) + .build(); + StripingPolicyImpl sp = StripingPolicyImpl.getPolicy(r, 0);// new RAID0(64, 1); + + // create some data ReusableBuffer data = BufferPool.allocate(64); for (int i = 0; i < 64; i++) { data.put((byte) (48 + i)); } data.flip(); - - //create some files - for (String f: fileIDs) { + + // create some files + for (String f : fileIDs) { String fileId = f; FileMetadata md = layout.getFileMetadata(sp, fileId); - + assertNotNull(md); - + assertFalse(layout.fileExists(fileId)); - - //write 64 bytes + + // write 64 bytes layout.writeObject(fileId, md, data.createViewBuffer(), 0l, 0, 1l, false, false); } - - + ArrayList newFileIDs = layout.getFileIDList(); - //compare fileIDs with newFileIDs + // compare fileIDs with newFileIDs assertTrue(newFileIDs.containsAll(fileIDs)); assertTrue(fileIDs.containsAll(newFileIDs)); } - - public static void main(String[] args) { - TestRunner.run(StorageLayoutTest.class); - } } diff --git a/java/servers/test/org/xtreemfs/test/osd/StorageStageTest.java b/java/servers/test/org/xtreemfs/test/osd/StorageStageTest.java index 0ddde73a0..fc923569e 100644 --- a/java/servers/test/org/xtreemfs/test/osd/StorageStageTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/StorageStageTest.java @@ -8,11 +8,17 @@ package org.xtreemfs.test.osd; -import junit.framework.TestCase; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; +import org.xtreemfs.test.TestHelper; // TODO -public class StorageStageTest extends TestCase { +public class StorageStageTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + @Test public void testDummy() { } diff --git a/java/servers/test/org/xtreemfs/test/osd/StripingTest.java b/java/servers/test/org/xtreemfs/test/osd/StripingTest.java index 915eb0562..999aca808 100644 --- a/java/servers/test/org/xtreemfs/test/osd/StripingTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/StripingTest.java @@ -8,15 +8,22 @@ package org.xtreemfs.test.osd; -import java.io.File; -import java.io.IOException; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; + import java.util.ArrayList; import java.util.LinkedList; import java.util.List; -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.common.xloc.StripingPolicyImpl; @@ -26,303 +33,299 @@ import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; import org.xtreemfs.foundation.pbrpc.client.RPCResponseAvailableListener; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SYSTEM_V_FCNTL; -import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.FileCredentials; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.OSDWriteResponse; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replica; +import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SYSTEM_V_FCNTL; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SnapConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.XCap; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.XLocSet; import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectData; +import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; + +public class StripingTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + + private static final boolean COW = false; -public class StripingTest extends TestCase { - - private static final boolean COW = false; - private TestEnvironment testEnv; - + static class MRCDummy implements RPCResponseAvailableListener { - - private long issuedEpoch; - - private long epoch; - - private long fileSize; - + + private long issuedEpoch; + + private long epoch; + + private long fileSize; + private final String capSecret; - + public MRCDummy(String capSecret) { this.capSecret = capSecret; } - + Capability open(char mode) { if (mode == 't') issuedEpoch++; - + return new Capability(FILE_ID, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber(), 60, System.currentTimeMillis(), "", (int) issuedEpoch, false, COW ? SnapConfig.SNAP_CONFIG_ACCESS_CURRENT : SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, capSecret); } - + synchronized long getFileSize() { return fileSize; } - + @Override public void responseAvailable(RPCResponse r) { try { - + OSDWriteResponse resp = r.get(); // System.out.println("fs-update: " + resp); - + if (resp.hasSizeInBytes()) { - + final long newFileSize = resp.getSizeInBytes(); final long epochNo = resp.getTruncateEpoch(); - + if (epochNo < epoch) return; - + if (epochNo > epoch || newFileSize > fileSize) { epoch = epochNo; fileSize = newFileSize; } } - + } catch (Exception exc) { exc.printStackTrace(); System.exit(1); } } - + } - - private static final String FILE_ID = "1:1"; - - private static final int KB = 1; - - private static final int SIZE = KB * 1024; - - private static final byte[] ZEROS_HALF = new byte[SIZE / 2]; - - private static final byte[] ZEROS = new byte[SIZE]; - - private final DIRConfig dirConfig; - - private final OSDConfig osdCfg1; - - private final OSDConfig osdCfg2; - - private final OSDConfig osdCfg3; - - private final String capSecret; - - private List osdServer; - - private List osdIDs; - - private OSDServiceClient client; - - private final StripingPolicyImpl sp; - - private XLocSet xloc; - - /** Creates a new instance of StripingTest */ - public StripingTest(String testName) throws IOException { - super(testName); + + private static final String FILE_ID = "1:1"; + + private static final int KB = 1; + + private static final int SIZE = KB * 1024; + + private static final byte[] ZEROS_HALF = new byte[SIZE / 2]; + + private static final byte[] ZEROS = new byte[SIZE]; + + private static DIRConfig dirConfig; + + private static OSDConfig osdCfg1; + + private static OSDConfig osdCfg2; + + private static OSDConfig osdCfg3; + + private static String capSecret; + + private List osdServer; + + private List osdIDs; + + private OSDServiceClient client; + + private static StripingPolicyImpl sp; + + private XLocSet xloc; + + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - + osdCfg1 = SetupUtils.createOSD1Config(); osdCfg2 = SetupUtils.createOSD2Config(); osdCfg3 = SetupUtils.createOSD3Config(); - + capSecret = osdCfg1.getCapabilitySecret(); - - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, KB)) - .setReplicationFlags(0).build(); + + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, KB)).setReplicationFlags(0) + .build(); sp = StripingPolicyImpl.getPolicy(r, 0); dirConfig = SetupUtils.createDIRConfig(); - + } - - @Override - protected void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - FSUtils.delTree(new File(SetupUtils.TEST_DIR)); - + + @Before + public void setUp() throws Exception { + // startup: DIR testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, - TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, - TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT }); + TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, + TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT }); testEnv.start(); - + osdIDs = new ArrayList(3); osdIDs.add(SetupUtils.getOSD1UUID()); osdIDs.add(SetupUtils.getOSD2UUID()); osdIDs.add(SetupUtils.getOSD3UUID()); - + osdServer = new ArrayList(3); osdServer.add(new OSD(osdCfg1)); osdServer.add(new OSD(osdCfg2)); osdServer.add(new OSD(osdCfg3)); - + client = testEnv.getOSDClient(); - + List osdset = new ArrayList(3); osdset.add(SetupUtils.getOSD1UUID().toString()); osdset.add(SetupUtils.getOSD2UUID().toString()); osdset.add(SetupUtils.getOSD3UUID().toString()); - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, KB)) - .setReplicationFlags(0).addAllOsdUuids(osdset).build(); - xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setVersion(1).addReplicas(r) - .setReplicaUpdatePolicy("").build(); - + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, KB)).setReplicationFlags(0) + .addAllOsdUuids(osdset).build(); + xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setVersion(1).addReplicas(r).setReplicaUpdatePolicy("") + .build(); + } - + private Capability getCap(String fname) { return new Capability(fname, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber(), 60, System.currentTimeMillis(), "", 0, false, COW ? SnapConfig.SNAP_CONFIG_ACCESS_CURRENT : SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, capSecret); } - - @Override - protected void tearDown() throws Exception { - + + @After + public void tearDown() throws Exception { + osdServer.get(0).shutdown(); osdServer.get(1).shutdown(); osdServer.get(2).shutdown(); - + testEnv.shutdown(); } - - /* TODO: test delete/truncate epochs! */ + /* TODO: test delete/truncate epochs! */ + @Test public void testPUTandGET() throws Exception { - + final int numObjs = 5; final int[] testSizes = { 1, 2, SIZE - 1, SIZE }; - + for (int ts : testSizes) { - + ReusableBuffer data = SetupUtils.generateData(ts); String file = "1:1" + ts; - final FileCredentials fcred = FileCredentials.newBuilder().setXcap(getCap(file).getXCap()) - .setXlocs(xloc).build(); - + final FileCredentials fcred = FileCredentials.newBuilder().setXcap(getCap(file).getXCap()).setXlocs(xloc) + .build(); + for (int i = 0, osdIndex = 0; i < numObjs; i++, osdIndex = i % osdIDs.size()) { - + // write an object with the given test size - + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0) .setInvalidChecksumOnOsd(false).build(); RPCResponse r = client.write(osdIDs.get(osdIndex).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, file, i, 0, 0, 0, - objdata, data.createViewBuffer()); + RPCAuthentication.authNone, RPCAuthentication.userService, fcred, file, i, 0, 0, 0, objdata, + data.createViewBuffer()); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(i * SIZE + ts, resp.getSizeInBytes()); - + // read and check the previously written object - - RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, file, i, 0, 0, data - .capacity()); + + RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, file, i, 0, 0, data.capacity()); ObjectData result = r2.get(); checkResponse(data.array(), result, r2.getData()); r2.freeBuffers(); } } } - + + @Test public void testIntermediateHoles() throws Exception { - - final FileCredentials fcred = FileCredentials.newBuilder().setXcap(getCap(FILE_ID).getXCap()) - .setXlocs(xloc).build(); - + + final FileCredentials fcred = FileCredentials.newBuilder().setXcap(getCap(FILE_ID).getXCap()).setXlocs(xloc) + .build(); + final ReusableBuffer data = SetupUtils.generateData(3); - + // write the nineth object, check the file size int obj = 8; - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0) - .setInvalidChecksumOnOsd(false).build(); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); RPCResponse r = client.write(osdIDs.get(obj % osdIDs.size()).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, obj, 0, 0, 0, objdata, - data.createViewBuffer()); + RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, obj, 0, 0, 0, objdata, + data.createViewBuffer()); OSDWriteResponse resp = r.get(); r.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(obj * SIZE + data.limit(), resp.getSizeInBytes()); - + // write the fifth object, check the file size obj = 5; - + r = client.write(osdIDs.get(obj % osdIDs.size()).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, obj, 0, 0, 0, objdata, data.createViewBuffer()); + RPCAuthentication.userService, fcred, FILE_ID, obj, 0, 0, 0, objdata, data.createViewBuffer()); resp = r.get(); r.freeBuffers(); assertTrue(!resp.hasSizeInBytes() - || (resp.hasSizeInBytes() && (obj * SIZE + data.limit() == resp.getSizeInBytes()))); - + || (resp.hasSizeInBytes() && (obj * SIZE + data.limit() == resp.getSizeInBytes()))); + // check whether the first object consists of zeros obj = 0; RPCResponse r2 = client.read(osdIDs.get(obj % osdIDs.size()).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, obj, 0, 0, data - .capacity()); + RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, obj, 0, 0, data.capacity()); ObjectData result = r2.get(); // either padding data or all zeros if (result.getZeroPadding() == 0) checkResponse(ZEROS, result, r2.getData()); else assertEquals(data.capacity(), result.getZeroPadding()); - + r2.freeBuffers(); - + // write the first object, check the file size header (must be null) r = client.write(osdIDs.get(obj % osdIDs.size()).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, obj, 0, 0, 0, objdata, data.createViewBuffer()); + RPCAuthentication.userService, fcred, FILE_ID, obj, 0, 0, 0, objdata, data.createViewBuffer()); resp = r.get(); r.freeBuffers(); assertFalse(resp.hasSizeInBytes()); } - + + @Test public void testWriteExtend() throws Exception { - - final FileCredentials fcred = FileCredentials.newBuilder().setXcap(getCap(FILE_ID).getXCap()) - .setXlocs(xloc).build(); - + + final FileCredentials fcred = FileCredentials.newBuilder().setXcap(getCap(FILE_ID).getXCap()).setXlocs(xloc) + .build(); + final ReusableBuffer data = SetupUtils.generateData(3); final byte[] paddedData = new byte[SIZE]; System.arraycopy(data.array(), 0, paddedData, 0, data.limit()); - + // write first object - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0) - .setInvalidChecksumOnOsd(false).build(); - RPCResponse r = client.write(osdIDs.get(0).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, 0, 0, 0, 0, objdata, - data.createViewBuffer()); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = client.write(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, 0, 0, 0, 0, objdata, data.createViewBuffer()); OSDWriteResponse resp = r.get(); r.freeBuffers(); - + // write second object - r = client.write(osdIDs.get(1).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, 1, 0, 0, 0, objdata, data.createViewBuffer()); + r = client.write(osdIDs.get(1).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + FILE_ID, 1, 0, 0, 0, objdata, data.createViewBuffer()); resp = r.get(); r.freeBuffers(); - + // read first object - + RPCResponse r2 = client.read(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, 0, 0, 0, SIZE); + RPCAuthentication.userService, fcred, FILE_ID, 0, 0, 0, SIZE); ObjectData result = r2.get(); ReusableBuffer dataOut = r2.getData(); // System.out.println(result); @@ -331,19 +334,19 @@ public class StripingTest extends TestCase { assertEquals(3, dataOut.capacity()); assertEquals(SIZE - 3, result.getZeroPadding()); r2.freeBuffers(); - + } - + /** * tests the truncation of striped files */ + @Test public void testTruncate() throws Exception { - + ReusableBuffer data = SetupUtils.generateData(SIZE); - - FileCredentials fcred = FileCredentials.newBuilder().setXcap(getCap(FILE_ID).getXCap()) - .setXlocs(xloc).build(); - + + FileCredentials fcred = FileCredentials.newBuilder().setXcap(getCap(FILE_ID).getXCap()).setXlocs(xloc).build(); + // ------------------------------- // create a file with five objects // ------------------------------- @@ -351,67 +354,67 @@ public class StripingTest extends TestCase { ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0) .setInvalidChecksumOnOsd(false).build(); RPCResponse r = client.write(osdIDs.get(osdIndex).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, 0, - objdata, data.createViewBuffer()); + RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, 0, objdata, + data.createViewBuffer()); OSDWriteResponse resp = r.get(); r.freeBuffers(); } - + // ---------------------------------------------- // shrink the file to a length of one full object // ---------------------------------------------- - + XCap newCap = fcred.getXcap().toBuilder().setTruncateEpoch(1).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - - RPCResponse rt = client.truncate(osdIDs.get(0).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, SIZE); + + RPCResponse rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, SIZE); OSDWriteResponse resp = rt.get(); rt.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(SIZE, resp.getSizeInBytes()); - + // check whether all objects have the expected content for (int i = 0, osdIndex = 0; i < 5; i++, osdIndex = i % osdIDs.size()) { - + // try to read the object - RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); + RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); ObjectData result = r2.get(); ReusableBuffer dataOut = r2.getData(); - + // the first object must exist, all other ones must have been // deleted if (i == 0) checkResponse(data.array(), result, dataOut); else checkResponse(null, result, dataOut); - + r2.freeBuffers(); } - + // ------------------------------------------------- // extend the file to a length of eight full objects // ------------------------------------------------- newCap = fcred.getXcap().toBuilder().setTruncateEpoch(2).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - - rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, SIZE * 8); + + rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, + fcred, FILE_ID, SIZE * 8); resp = rt.get(); rt.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(SIZE * 8, resp.getSizeInBytes()); - + // check whether all objects have the expected content for (int i = 0, osdIndex = 0; i < 8; i++, osdIndex = i % osdIDs.size()) { - + // try to read the object - RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); + RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); ObjectData result = r2.get(); ReusableBuffer dataOut = r2.getData(); - + // the first object must contain data, all other ones must contain // zeros if (i == 0) @@ -422,35 +425,35 @@ public class StripingTest extends TestCase { } else { checkResponse(ZEROS, result, dataOut); } - + } - + r2.freeBuffers(); } - + // ------------------------------------------ // shrink the file to a length of 3.5 objects // ------------------------------------------ newCap = fcred.getXcap().toBuilder().setTruncateEpoch(3).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - + final long size3p5 = (long) (SIZE * 3.5f); - rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, size3p5); + rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, + fcred, FILE_ID, size3p5); resp = rt.get(); rt.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(size3p5, resp.getSizeInBytes()); - + // check whether all objects have the expected content for (int i = 0, osdIndex = 0; i < 5; i++, osdIndex = i % osdIDs.size()) { - + // try to read the object - RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); + RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); ObjectData result = r2.get(); ReusableBuffer dataOut = r2.getData(); - + // the first object must contain data, all other ones must contain // zeros, where the last one must only be half an object size if (i == 0) @@ -467,32 +470,32 @@ public class StripingTest extends TestCase { checkResponse(ZEROS, result, dataOut); } } - + r2.freeBuffers(); } - + // -------------------------------------------------- // truncate the file to the same length it had before // -------------------------------------------------- newCap = fcred.getXcap().toBuilder().setTruncateEpoch(4).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - - rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, size3p5); + + rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, + fcred, FILE_ID, size3p5); resp = rt.get(); rt.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(size3p5, resp.getSizeInBytes()); - + // check whether all objects have the expected content for (int i = 0, osdIndex = 0; i < 5; i++, osdIndex = i % osdIDs.size()) { - + // try to read the object - RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); + RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); ObjectData result = r2.get(); ReusableBuffer dataOut = r2.getData(); - + // the first object must contain data, all other ones must contain // zeros, where the last one must only be half an object size if (i == 0) @@ -509,142 +512,142 @@ public class StripingTest extends TestCase { checkResponse(ZEROS, result, dataOut); } } - + r2.freeBuffers(); } - + // -------------------------------- // truncate the file to zero length // -------------------------------- newCap = fcred.getXcap().toBuilder().setTruncateEpoch(5).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - - rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, 0); + + rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, + fcred, FILE_ID, 0); resp = rt.get(); rt.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(0, resp.getSizeInBytes()); - + // check whether all objects have the expected content for (int i = 0, osdIndex = 0; i < 5; i++, osdIndex = i % osdIDs.size()) { - + // try to read the object - RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); + RPCResponse r2 = client.read(osdIDs.get(osdIndex).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); ObjectData result = r2.get(); - + assertEquals(0, result.getZeroPadding()); assertNull(r2.getData()); - + r2.freeBuffers(); } - + data = SetupUtils.generateData(5); - + // ---------------------------------- // write new data to the first object // ---------------------------------- - - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0) - .setInvalidChecksumOnOsd(false).build(); - rt = client.write(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, 0, 0, 0, 0, objdata, data.createViewBuffer()); + + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + rt = client.write(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + FILE_ID, 0, 0, 0, 0, objdata, data.createViewBuffer()); resp = rt.get(); rt.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(5, resp.getSizeInBytes()); - + // ---------------------------------------------- // extend the file to a length of one full object // ---------------------------------------------- newCap = fcred.getXcap().toBuilder().setTruncateEpoch(6).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - - rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, SIZE); + + rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, + fcred, FILE_ID, SIZE); resp = rt.get(); rt.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(SIZE, resp.getSizeInBytes()); - + // try to read the object RPCResponse r2 = client.read(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, 0, 0, 0, SIZE); + RPCAuthentication.userService, fcred, FILE_ID, 0, 0, 0, SIZE); ObjectData result = r2.get(); - + // the object must contain data plus padding zeros - + final byte[] dataWithZeros = new byte[SIZE]; System.arraycopy(data.array(), 0, dataWithZeros, 0, data.limit()); - + checkResponse(dataWithZeros, result, r2.getData()); r2.freeBuffers(); - + // --------------------------------------------- // shrink the file to a length of half an object // --------------------------------------------- newCap = fcred.getXcap().toBuilder().setTruncateEpoch(7).build(); fcred = fcred.toBuilder().setXcap(newCap).build(); - - rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, SIZE / 2); + + rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, + fcred, FILE_ID, SIZE / 2); resp = rt.get(); rt.freeBuffers(); assertTrue(resp.hasSizeInBytes()); assertEquals(SIZE / 2, resp.getSizeInBytes()); - + // try to read the object - r2 = client.read(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, - RPCAuthentication.userService, fcred, FILE_ID, 0, 0, 0, SIZE); + r2 = client.read(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + FILE_ID, 0, 0, 0, SIZE); result = r2.get(); - + // the object must contain data plus padding zeros - + final byte[] dataWithHalfZeros = new byte[SIZE / 2]; System.arraycopy(data.array(), 0, dataWithHalfZeros, 0, data.limit()); - + checkResponse(dataWithHalfZeros, result, r2.getData()); r2.freeBuffers(); } - + + @Test public void testInterleavedWriteAndTruncate() throws Exception { - + final int numIterations = 20; final int maxObject = 20; final int maxSize = maxObject * SIZE; final int numWrittenObjs = 5; - + final MRCDummy mrcDummy = new MRCDummy(capSecret); - - FileCredentials fcred = FileCredentials.newBuilder().setXcap(getCap(FILE_ID).getXCap()) - .setXlocs(xloc).build(); - + + FileCredentials fcred = FileCredentials.newBuilder().setXcap(getCap(FILE_ID).getXCap()).setXlocs(xloc).build(); + final List responses = new LinkedList(); - + for (int l = 0; l < numIterations; l++) { - + Capability cap = mrcDummy.open('w'); - + // randomly write 'numWrittenObjs' objects for (int i = 0; i < numWrittenObjs; i++) { - + final int objId = (int) (Math.random() * maxObject); final int osdIndex = objId % osdIDs.size(); - + // write an object with a random amount of bytes final int size = (int) ((SIZE - 1) * Math.random()) + 1; ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0) .setInvalidChecksumOnOsd(false).build(); RPCResponse r = client.write(osdIDs.get(osdIndex).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, objId, 0, 0, - 0, objdata, SetupUtils.generateData(size)); + RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, objId, 0, 0, 0, + objdata, SetupUtils.generateData(size)); responses.add(r); - + // update the file size when the response is received r.registerListener(mrcDummy); } - + // wait until all write requests have been completed, i.e. all file // size updates have been performed for (RPCResponse r : responses) { @@ -652,31 +655,31 @@ public class StripingTest extends TestCase { r.freeBuffers(); } responses.clear(); - + fcred = fcred.toBuilder().setXcap(mrcDummy.open('t').getXCap()).build(); - + // truncate the file long newSize = (long) (Math.random() * maxSize); - RPCResponse rt = client.truncate(osdIDs.get(0).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, newSize); + RPCResponse rt = client.truncate(osdIDs.get(0).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, newSize); rt.registerListener(mrcDummy); rt.waitForResult(); rt.freeBuffers(); - + long fileSize = mrcDummy.getFileSize(); - + // read the previously truncated objects, check size for (int i = 0; i < maxObject; i++) { RPCResponse r2 = client.read(osdIDs.get(i % osdIDs.size()).getAddress(), - RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); + RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, i, 0, 0, SIZE); ObjectData result = r2.get(); ReusableBuffer dataOut = r2.getData(); int dataOutLen = (dataOut == null) ? 0 : dataOut.capacity(); - + // check inner objects - should be full if (i < fileSize / SIZE) assertEquals(SIZE, result.getZeroPadding() + dataOutLen); - + // check last object - should either be an EOF (null) or partial // object else if (i == fileSize / SIZE) { @@ -689,14 +692,14 @@ public class StripingTest extends TestCase { // check outer objects - should be EOF (null) else assertEquals(0, result.getZeroPadding() + dataOutLen); - + r2.freeBuffers(); } - + } - + } - + /** * tests the deletion of striped files */ @@ -727,14 +730,9 @@ public class StripingTest extends TestCase { // dr.get(); // dr.freeBuffers(); // } - - public static void main(String[] args) { - TestRunner.run(StripingTest.class); - } - + /** - * Checks whether the data array received with the response is equal to the - * given one. + * Checks whether the data array received with the response is equal to the given one. * * @param data * the data array @@ -743,12 +741,12 @@ public class StripingTest extends TestCase { * @throws Exception */ public void checkResponse(byte[] data, ObjectData response, ReusableBuffer objData) throws Exception { - + if (data == null) { if (objData != null) /* - * System.out.println("body (" + response.getBody().capacity() + - * "): " + new String(response.getBody().array())); + * System.out.println("body (" + response.getBody().capacity() + "): " + new + * String(response.getBody().array())); */ assertEquals(0, objData.remaining()); } @@ -760,5 +758,5 @@ public class StripingTest extends TestCase { assertEquals(data[i], responseData[i]); } } - + } diff --git a/java/servers/test/org/xtreemfs/test/osd/StripingTestCOW.java b/java/servers/test/org/xtreemfs/test/osd/StripingTestCOW.java index c530b0f10..dfb65919f 100644 --- a/java/servers/test/org/xtreemfs/test/osd/StripingTestCOW.java +++ b/java/servers/test/org/xtreemfs/test/osd/StripingTestCOW.java @@ -8,26 +8,26 @@ package org.xtreemfs.test.osd; -import java.io.File; -import java.io.IOException; +import static org.junit.Assert.assertEquals; + import java.util.ArrayList; import java.util.LinkedList; import java.util.List; -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.common.xloc.StripingPolicyImpl; import org.xtreemfs.dir.DIRConfig; -import org.xtreemfs.foundation.buffer.BufferPool; import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; -import org.xtreemfs.foundation.pbrpc.client.RPCResponseAvailableListener; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.FileCredentials; @@ -40,9 +40,12 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectData; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; import org.xtreemfs.test.osd.StripingTest.MRCDummy; -public class StripingTestCOW extends TestCase { +public class StripingTestCOW { + @Rule + public final TestRule testLog = TestHelper.testLog; private static final boolean COW = true; @@ -114,15 +117,15 @@ public class StripingTestCOW extends TestCase { private static final byte[] ZEROS = new byte[SIZE]; - private final DIRConfig dirConfig; + private static DIRConfig dirConfig; - private final OSDConfig osdCfg1; + private static OSDConfig osdCfg1; - private final OSDConfig osdCfg2; + private static OSDConfig osdCfg2; - private final OSDConfig osdCfg3; + private static OSDConfig osdCfg3; - private final String capSecret; + private static String capSecret; private List osdServer; @@ -132,11 +135,10 @@ public class StripingTestCOW extends TestCase { private StripingPolicyImpl sp; - private XLocSet xloc; + private XLocSet xloc; - /** Creates a new instance of StripingTest */ - public StripingTestCOW(String testName) throws IOException { - super(testName); + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); osdCfg1 = SetupUtils.createOSD1Config(); @@ -144,21 +146,11 @@ public class StripingTestCOW extends TestCase { osdCfg3 = SetupUtils.createOSD3Config(); capSecret = osdCfg1.getCapabilitySecret(); - - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(3, KB)).setReplicationFlags(0).build(); - xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setVersion(1).addReplicas(r).setReplicaUpdatePolicy("").build(); - dirConfig = SetupUtils.createDIRConfig(); - } - @Override - protected void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - FSUtils.delTree(new File(SetupUtils.TEST_DIR)); - + @Before + public void setUp() throws Exception { // startup: DIR testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, @@ -192,8 +184,8 @@ public class StripingTestCOW extends TestCase { COW ? SnapConfig.SNAP_CONFIG_ACCESS_CURRENT : SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, capSecret); } - @Override - protected void tearDown() throws Exception { + @After + public void tearDown() throws Exception { osdServer.get(0).shutdown(); osdServer.get(1).shutdown(); @@ -204,6 +196,7 @@ public class StripingTestCOW extends TestCase { /* TODO: test delete/truncate epochs! */ + @Test public void testInterleavedWriteAndTruncate() throws Exception { final int numIterations = 20; diff --git a/java/servers/test/org/xtreemfs/test/osd/VersionManagementTest.java b/java/servers/test/org/xtreemfs/test/osd/VersionManagementTest.java index 5892f9864..c28435639 100644 --- a/java/servers/test/org/xtreemfs/test/osd/VersionManagementTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/VersionManagementTest.java @@ -7,21 +7,23 @@ */ package org.xtreemfs.test.osd; -import java.io.File; -import java.io.IOException; +import static org.junit.Assert.assertEquals; + import java.util.ArrayList; import java.util.List; -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.FileCredentials; @@ -34,307 +36,312 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectData; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; + +public class VersionManagementTest { + @Rule + public final TestRule testLog = TestHelper.testLog; -public class VersionManagementTest extends TestCase { - private TestEnvironment testEnv; - + private static final String FILE_ID = "1:1"; - + private static final int KB = 1; - + private static final int OBJ_SIZE = KB * 1024; - - private final OSDConfig osdCfg; - - private final String capSecret; - + + private static OSDConfig osdCfg; + + private static String capSecret; + private OSD osdServer; - + private ServiceUUID osdId; - + private OSDServiceClient client; - + private XLocSet xloc; - - /** Creates a new instance of StripingTest */ - public VersionManagementTest(String testName) throws IOException { - - super(testName); + + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - + osdCfg = SetupUtils.createOSD1Config(); capSecret = osdCfg.getCapabilitySecret(); - - } - - @Override - protected void setUp() throws Exception { - - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - - FSUtils.delTree(new File(SetupUtils.TEST_DIR)); - + + @Before + public void setUp() throws Exception { + // startup: DIR testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, - TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, - TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT }); + TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, + TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD_CLIENT }); testEnv.start(); - + osdId = SetupUtils.getOSD1UUID(); - + osdServer = new OSD(osdCfg); client = testEnv.getOSDClient(); - List osdset = new ArrayList(1); osdset.add(SetupUtils.getOSD1UUID().toString()); - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, KB)).setReplicationFlags(0).addAllOsdUuids(osdset).build(); - xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setVersion(1).addReplicas(r).setReplicaUpdatePolicy("").build(); - + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, KB)).setReplicationFlags(0) + .addAllOsdUuids(osdset).build(); + xloc = XLocSet.newBuilder().setReadOnlyFileSize(0).setVersion(1).addReplicas(r).setReplicaUpdatePolicy("") + .build(); + } - + private FileCredentials getFileCredentials(int truncateEpoch, boolean write) { - return FileCredentials.newBuilder().setXcap(new Capability(FILE_ID, - write ? (SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR - .getNumber()) : SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDONLY.getNumber(), 60, - System.currentTimeMillis(), "", truncateEpoch, false, - SnapConfig.SNAP_CONFIG_ACCESS_CURRENT, 0, capSecret).getXCap()).setXlocs(xloc).build(); + return FileCredentials + .newBuilder() + .setXcap( + new Capability( + FILE_ID, + write ? (SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR + .getNumber()) : SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDONLY.getNumber(), 60, + System.currentTimeMillis(), "", truncateEpoch, false, + SnapConfig.SNAP_CONFIG_ACCESS_CURRENT, 0, capSecret).getXCap()).setXlocs(xloc).build(); } - + private FileCredentials getFileCredentials(int truncateEpoch, long snapTimestamp) { - return FileCredentials.newBuilder().setXcap(new Capability(FILE_ID, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDONLY.getNumber(), 60, - System.currentTimeMillis(), "", truncateEpoch, false, SnapConfig.SNAP_CONFIG_ACCESS_SNAP, - snapTimestamp, capSecret).getXCap()).setXlocs(xloc).build(); + return FileCredentials + .newBuilder() + .setXcap( + new Capability(FILE_ID, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDONLY.getNumber(), 60, System + .currentTimeMillis(), "", truncateEpoch, false, SnapConfig.SNAP_CONFIG_ACCESS_SNAP, + snapTimestamp, capSecret).getXCap()).setXlocs(xloc).build(); } - - @Override - protected void tearDown() throws Exception { + + @After + public void tearDown() throws Exception { osdServer.shutdown(); testEnv.shutdown(); - + } - + + @Test public void testTruncate() throws Exception { - + FileCredentials fcred = getFileCredentials(1, true); - + // write a new file - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = client.write(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, FILE_ID, 5, 0, 0, 0, objdata, SetupUtils.generateData(OBJ_SIZE, (byte) 'x')); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = client.write(osdId.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, 5, 0, 0, 0, objdata, + SetupUtils.generateData(OBJ_SIZE, (byte) 'x')); r.get(); r.freeBuffers(); - + // truncate-extend the file and read it - RPCResponse r1 = client.truncate(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, FILE_ID, OBJ_SIZE * 8); + RPCResponse r1 = client.truncate(osdId.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, OBJ_SIZE * 8); r1.get(); r1.freeBuffers(); - - RPCResponse r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, FILE_ID, 5, 0, 0, OBJ_SIZE); + + RPCResponse r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, FILE_ID, 5, 0, 0, OBJ_SIZE); ObjectData result = r2.get(); checkData(result, OBJ_SIZE, (byte) 'x', r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, FILE_ID, 7, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, + 7, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 0, r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, FILE_ID, 0, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, + 0, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 0, r2.getData()); r2.freeBuffers(); - + // truncate-shrink the file and read it fcred = getFileCredentials(2, true); - - r1 = client.truncate(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, FILE_ID, OBJ_SIZE * 1); + + r1 = client.truncate(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + FILE_ID, OBJ_SIZE * 1); r1.get(); r1.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, FILE_ID, 0, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, + 0, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 0, r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fcred, FILE_ID, 5, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, FILE_ID, + 5, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, 0, (byte) 0, r2.getData()); r2.freeBuffers(); - + } - + + @Test public void testImplicitVersionCreation() throws Exception { - + final long timeoutSpan = 61000; - + final long t0 = System.currentTimeMillis(); - + FileCredentials wCred = getFileCredentials(1, true); FileCredentials rCred = getFileCredentials(1, false); - + // write a new file that consists of two objects - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = client.write(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - wCred, FILE_ID, 0, 0, 0, 0, objdata, SetupUtils.generateData(OBJ_SIZE, (byte) 'x')); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = client.write(osdId.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, wCred, FILE_ID, 0, 0, 0, 0, objdata, + SetupUtils.generateData(OBJ_SIZE, (byte) 'x')); r.get(); r.freeBuffers(); - - r = client.write(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - wCred, FILE_ID, 1, 0, 0, 0, objdata, SetupUtils.generateData(OBJ_SIZE, (byte) 'y')); + + r = client.write(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, wCred, FILE_ID, + 1, 0, 0, 0, objdata, SetupUtils.generateData(OBJ_SIZE, (byte) 'y')); r.get(); r.freeBuffers(); - + // wait for OSD-internal file close, which will implicitly cause a new // version to be created // System.out.println("\n########## waiting " + timeoutSpan / 1000 + "s ##########\n"); Thread.sleep(timeoutSpan); - + // overwrite the first object - r = client.write(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - wCred, FILE_ID, 0, 0, 0, 0, objdata, SetupUtils.generateData(OBJ_SIZE, (byte) 'z')); + r = client.write(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, wCred, FILE_ID, + 0, 0, 0, 0, objdata, SetupUtils.generateData(OBJ_SIZE, (byte) 'z')); r.get(); r.freeBuffers(); - + final long t1 = System.currentTimeMillis(); - + // read and check the old version FileCredentials rCredV = getFileCredentials(0, t1); - - RPCResponse r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCredV, FILE_ID, 0, 0, 0, OBJ_SIZE); + + RPCResponse r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, rCredV, FILE_ID, 0, 0, 0, OBJ_SIZE); ObjectData result = r2.get(); checkData(result, OBJ_SIZE, (byte) 'x', r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCredV, FILE_ID, 1, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCredV, + FILE_ID, 1, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 'y', r2.getData()); r2.freeBuffers(); - + // read and check the current version - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCred, FILE_ID, 0, 0, 0, OBJ_SIZE); + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCred, FILE_ID, + 0, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 'z', r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCred, FILE_ID, 1, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCred, FILE_ID, + 1, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 'y', r2.getData()); r2.freeBuffers(); - + // try to read a non-existing version rCredV = getFileCredentials(0, t0 - 999999); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCredV, FILE_ID, 0, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCredV, + FILE_ID, 0, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, 0, (byte) 0, r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCredV, FILE_ID, 1, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCredV, + FILE_ID, 1, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, 0, (byte) 0, r2.getData()); r2.freeBuffers(); - + // truncate the file to zero length and wait, so that a new version is // created and append another object FileCredentials tCred = getFileCredentials(1, true); - r = client.truncate(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - tCred, FILE_ID, 0); + r = client.truncate(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, tCred, + FILE_ID, 0); r.get(); r.freeBuffers(); - + // System.out.println("\n########## waiting " + timeoutSpan / 1000 + "s ##########\n"); Thread.sleep(timeoutSpan); - - r = client.write(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - wCred, FILE_ID, 2, 0, 0, 0, objdata, SetupUtils.generateData(OBJ_SIZE, (byte) 'w')); + + r = client.write(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, wCred, FILE_ID, + 2, 0, 0, 0, objdata, SetupUtils.generateData(OBJ_SIZE, (byte) 'w')); r.get(); r.freeBuffers(); - + final long t2 = System.currentTimeMillis(); - + // read and check the current version - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCred, FILE_ID, 0, 0, 0, OBJ_SIZE); + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCred, FILE_ID, + 0, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 0, r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCred, FILE_ID, 1, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCred, FILE_ID, + 1, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 0, r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCred, FILE_ID, 2, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCred, FILE_ID, + 2, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 'w', r2.getData()); r2.freeBuffers(); - + // read and check the version at t1 rCredV = getFileCredentials(0, t1); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCredV, FILE_ID, 0, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCredV, + FILE_ID, 0, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 'x', r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCredV, FILE_ID, 1, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCredV, + FILE_ID, 1, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, OBJ_SIZE, (byte) 'y', r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCredV, FILE_ID, 2, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCredV, + FILE_ID, 2, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, 0, (byte) 0, r2.getData()); r2.freeBuffers(); - + // read and check the version at t2 rCredV = getFileCredentials(0, t2); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCredV, FILE_ID, 0, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCredV, + FILE_ID, 0, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, 0, (byte) 0, r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCredV, FILE_ID, 1, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCredV, + FILE_ID, 1, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, 0, (byte) 0, r2.getData()); r2.freeBuffers(); - - r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - rCredV, FILE_ID, 2, 0, 0, OBJ_SIZE); + + r2 = client.read(osdId.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, rCredV, + FILE_ID, 2, 0, 0, OBJ_SIZE); result = r2.get(); checkData(result, 0, (byte) 0, r2.getData()); r2.freeBuffers(); - - } - - public static void main(String[] args) { - TestRunner.run(VersionManagementTest.class); + } - + private void checkData(ObjectData data, long size, byte content, ReusableBuffer dataOut) throws Exception { int dataOutLen = (dataOut == null) ? 0 : dataOut.capacity(); @@ -343,7 +350,7 @@ public class VersionManagementTest extends TestCase { for (byte b : dataOut.array()) assertEquals(content, b); } - + } - + } diff --git a/java/servers/test/org/xtreemfs/test/osd/VersionTableTest.java b/java/servers/test/org/xtreemfs/test/osd/VersionTableTest.java index 7fe06d544..c07e5621b 100644 --- a/java/servers/test/org/xtreemfs/test/osd/VersionTableTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/VersionTableTest.java @@ -8,40 +8,44 @@ package org.xtreemfs.test.osd; +import static org.junit.Assert.assertEquals; + import java.io.File; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; -import junit.framework.TestCase; -import junit.textui.TestRunner; - +import org.junit.After; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.osd.storage.VersionTable; +import org.xtreemfs.test.TestHelper; /** * * @author stender */ -public class VersionTableTest extends TestCase { - +public class VersionTableTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + public static final File VT_FILE = new File("/tmp/vttest"); - - public VersionTableTest(String testName) { - super(testName); - } - - @Override - protected void setUp() throws Exception { + + @Before + public void setUp() throws Exception { VT_FILE.delete(); } - - @Override - protected void tearDown() throws Exception { + + @After + public void tearDown() throws Exception { VT_FILE.delete(); } - + + @Test public void testInsertLookup() throws Exception { - + Map map = new HashMap(); map.put(10000L, new int[] { 2, 4, 5, 1, 2 }); map.put(10005L, new int[] { 3, 4, 5, 2, 3 }); @@ -49,11 +53,11 @@ public class VersionTableTest extends TestCase { map.put(11000L, new int[] { 5, 5, 8, 3, 3, 1, 1, 1 }); map.put(12000L, new int[] { 5, 5 }); map.put(32000L, new int[] {}); - + VersionTable vt = new VersionTable(VT_FILE); for (Entry entry : map.entrySet()) vt.addVersion(entry.getKey(), entry.getValue(), entry.getValue().length * 1024); - + for (int i = 0; i < 10; i++) { assertEquals(i < 5 ? map.get(10000L)[i] : 0, vt.getLatestVersionBefore(10001).getObjVersion(i)); assertEquals(i < 5 ? map.get(10000L)[i] : 0, vt.getLatestVersionBefore(10005).getObjVersion(i)); @@ -68,11 +72,12 @@ public class VersionTableTest extends TestCase { assertEquals(0, vt.getLatestVersionBefore(33000).getObjVersion(i)); assertEquals(0, vt.getLatestVersionBefore(Long.MAX_VALUE).getObjVersion(i)); } - + } - + + @Test public void testLoadSave() throws Exception { - + Map map = new HashMap(); map.put(10000L, new int[] { 2, 4, 5, 1, 2 }); map.put(10005L, new int[] { 3, 4, 5, 2, 3 }); @@ -80,14 +85,14 @@ public class VersionTableTest extends TestCase { map.put(11000L, new int[] { 5, 5, 8, 3, 3, 1, 1, 1 }); map.put(12000L, new int[] { 5, 5 }); map.put(32000L, new int[] {}); - + VersionTable vt = new VersionTable(VT_FILE); for (Entry entry : map.entrySet()) vt.addVersion(entry.getKey(), entry.getValue(), entry.getValue().length * 1024); - + vt.save(); vt.load(); - + for (int i = 0; i < 10; i++) { assertEquals(i < 5 ? map.get(10000L)[i] : 0, vt.getLatestVersionBefore(10001).getObjVersion(i)); assertEquals(i < 5 ? map.get(10000L)[i] : 0, vt.getLatestVersionBefore(10005).getObjVersion(i)); @@ -102,11 +107,7 @@ public class VersionTableTest extends TestCase { assertEquals(0, vt.getLatestVersionBefore(33000).getObjVersion(i)); assertEquals(0, vt.getLatestVersionBefore(Long.MAX_VALUE).getObjVersion(i)); } - - } - - public static void main(String[] args) { - TestRunner.run(VersionTableTest.class); + } - + } diff --git a/java/servers/test/org/xtreemfs/test/osd/replication/ObjectSetTest.java b/java/servers/test/org/xtreemfs/test/osd/replication/ObjectSetTest.java index ade0a09e6..73a5224f2 100755 --- a/java/servers/test/org/xtreemfs/test/osd/replication/ObjectSetTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/replication/ObjectSetTest.java @@ -8,6 +8,11 @@ package org.xtreemfs.test.osd.replication; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotSame; +import static org.junit.Assert.assertTrue; + import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectOutputStream; @@ -16,19 +21,23 @@ import java.util.Iterator; import java.util.List; import java.util.Random; -import junit.framework.TestCase; - import org.junit.After; import org.junit.Before; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.osd.replication.ObjectSet; +import org.xtreemfs.test.TestHelper; /** * *
* 02.07.2009 */ -public class ObjectSetTest extends TestCase { +public class ObjectSetTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + List changeableSets; List fixedSets; diff --git a/java/servers/test/org/xtreemfs/test/osd/replication/ReplicationTest.java b/java/servers/test/org/xtreemfs/test/osd/replication/ReplicationTest.java index b52eb9baa..e8ec08852 100755 --- a/java/servers/test/org/xtreemfs/test/osd/replication/ReplicationTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/replication/ReplicationTest.java @@ -5,25 +5,25 @@ * Licensed under the BSD License, see LICENSE file for details. * */ - + package org.xtreemfs.test.osd.replication; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; -import java.io.File; import java.util.ArrayList; import java.util.Arrays; import java.util.LinkedList; import java.util.List; -import junit.framework.TestCase; -import junit.textui.TestRunner; - import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; import org.junit.Rule; import org.junit.Test; -import org.junit.rules.TestName; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.uuids.ServiceUUID; @@ -35,7 +35,6 @@ import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.osd.replication.ObjectSet; @@ -51,6 +50,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectList; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * @@ -60,25 +60,25 @@ import org.xtreemfs.test.TestEnvironment; */ public class ReplicationTest { @Rule - public TestName name = new TestName(); + public final TestRule testLog = TestHelper.testLog; - OSD[] osds; - OSDConfig[] configs; - OSDServiceClient client; + OSD[] osds; + OSDConfig[] configs; + OSDServiceClient client; - private Capability cap; - private String fileID; - private XLocations xLoc; + private Capability cap; + private String fileID; + private XLocations xLoc; // needed for dummy classes - private int stripeSize; - private ReusableBuffer data; + private int stripeSize; + private ReusableBuffer data; - private long objectNo; + private long objectNo; private TestEnvironment testEnv; - public ReplicationTest() { - // Auto-generated constructor stub + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } @@ -87,17 +87,9 @@ public class ReplicationTest { */ @Before public void setUp() throws Exception { -// System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - this.stripeSize = 128 * 1024; // byte this.data = SetupUtils.generateData(stripeSize); - // cleanup - File testDir = new File(SetupUtils.TEST_DIR); - - FSUtils.delTree(testDir); - testDir.mkdirs(); - // startup: DIR testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, @@ -114,7 +106,9 @@ public class ReplicationTest { fileID = "1:1"; objectNo = 0; - cap = new Capability(fileID, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); + cap = new Capability(fileID, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, + System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, + configs[0].getCapabilitySecret()); xLoc = createLocations(4, 3); } @@ -131,16 +125,18 @@ public class ReplicationTest { osdset.add(configs[startOSD + stripe].getUUID().toString()); } - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(osdset.size(), stripeSize / 1024)). - setReplicationFlags(0).addAllOsdUuids(osdset).build(); + Replica r = Replica.newBuilder() + .setStripingPolicy(SetupUtils.getStripingPolicy(osdset.size(), stripeSize / 1024)) + .setReplicationFlags(0).addAllOsdUuids(osdset).build(); rlist.add(r); } - XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_NONE).setVersion(1).addAllReplicas(rlist).build(); + XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(0) + .setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_NONE).setVersion(1).addAllReplicas(rlist) + .build(); // set the first replica as current replica // set the first replica as current replica - XLocations locations = new XLocations(locSet, - new ServiceUUID(locSet.getReplicas(0).getOsdUuids(0))); + XLocations locations = new XLocations(locSet, new ServiceUUID(locSet.getReplicas(0).getOsdUuids(0))); return locations; } @@ -149,18 +145,25 @@ public class ReplicationTest { List rlist = new LinkedList(); - for(int i = 0; i < xLoc.getXLocSet().getReplicasCount(); i++) { + for (int i = 0; i < xLoc.getXLocSet().getReplicasCount(); i++) { Replica r = xLoc.getXLocSet().getReplicas(i); if (i == indexOfFullReplica) - rlist.add(r.toBuilder().setReplicationFlags(ReplicationFlags.setReplicaIsComplete(ReplicationFlags.setPartialReplica(ReplicationFlags.setRandomStrategy(0)))).build()); + rlist.add(r + .toBuilder() + .setReplicationFlags( + ReplicationFlags.setReplicaIsComplete(ReplicationFlags + .setPartialReplica(ReplicationFlags.setRandomStrategy(0)))).build()); else - rlist.add(r.toBuilder().setReplicationFlags(ReplicationFlags.setPartialReplica(ReplicationFlags.setRandomStrategy(0))).build()); + rlist.add(r.toBuilder() + .setReplicationFlags(ReplicationFlags.setPartialReplica(ReplicationFlags.setRandomStrategy(0))) + .build()); } - XLocSet locSet = xLoc.getXLocSet().toBuilder().clearReplicas().addAllReplicas(rlist).setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_RONLY).setReadOnlyFileSize(filesize).build(); + XLocSet locSet = xLoc.getXLocSet().toBuilder().clearReplicas().addAllReplicas(rlist) + .setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_RONLY).setReadOnlyFileSize(filesize) + .build(); - xLoc = new XLocations(locSet, - new ServiceUUID(locSet.getReplicas(0).getOsdUuids(0))); + xLoc = new XLocations(locSet, new ServiceUUID(locSet.getReplicas(0).getOsdUuids(0))); } @@ -173,29 +176,26 @@ public class ReplicationTest { osd.shutdown(); testEnv.shutdown(); - + // free buffers BufferPool.free(data); } - /*private ObjectData getObjectData(ReusableBuffer data) { - return new ObjectData(0, false, 0, data.createViewBuffer()); - }*/ - - private void printTestName() { - System.out.println(".TEST: " + getClass().getSimpleName() + "." + name.getMethodName()); - } + /* + * private ObjectData getObjectData(ReusableBuffer data) { return new ObjectData(0, false, 0, + * data.createViewBuffer()); } + */ @Test public void testStriped() throws Exception { - printTestName(); - FileCredentials fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xLoc.getXLocSet()).build(); // write object to replica 3 - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse w = client.write(xLoc.getOSDsForObject(objectNo).get(2).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, 0, objdata, data.createViewBuffer()); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse w = client.write(xLoc.getOSDsForObject(objectNo).get(2).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, 0, objdata, + data.createViewBuffer()); OSDWriteResponse wResp = w.get(); w.freeBuffers(); @@ -204,28 +204,26 @@ public class ReplicationTest { fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xLoc.getXLocSet()).build(); // read object from replica 3 (object exists on this OSD) => normal read - RPCResponse r = client.read(xLoc.getOSDsForObject(objectNo).get(2).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, stripeSize); + RPCResponse r = client.read(xLoc.getOSDsForObject(objectNo).get(2).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, stripeSize); ObjectData rResp = r.get(); assertTrue(Arrays.equals(data.array(), r.getData().array())); r.freeBuffers(); // read object from replica 2 (object not exists on this OSD) => replication - r = client.read(xLoc.getOSDsForObject(objectNo).get(1).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, - stripeSize); + r = client.read(xLoc.getOSDsForObject(objectNo).get(1).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, stripeSize); rResp = r.get(); if (data.capacity() > 0) { assertNotNull(r.getData()); assertTrue(Arrays.equals(data.array(), r.getData().array())); - } else + } else assertNull(r.getData()); r.freeBuffers(); // read object from replica 4 (object not exists on this OSD) => replication - r = client.read(xLoc.getOSDsForObject(objectNo).get(3).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, - stripeSize); + r = client.read(xLoc.getOSDsForObject(objectNo).get(3).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, stripeSize); rResp = r.get(); if (data.capacity() > 0) assertTrue(Arrays.equals(data.array(), r.getData().array())); @@ -234,11 +232,10 @@ public class ReplicationTest { r.freeBuffers(); // read part of object from replica 1 (object not exists on this OSD) => replication - r = client.read(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, - stripeSize / 4, stripeSize / 4); + r = client.read(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo, 0, stripeSize / 4, stripeSize / 4); rResp = r.get(); - int j=stripeSize / 4; + int j = stripeSize / 4; byte[] responseData = r.getData().array(); byte[] dataBytes = data.array(); for (int i = 0; i < responseData.length; i++) { @@ -250,15 +247,14 @@ public class ReplicationTest { @Test public void testHoleAndEOF() throws Exception { - printTestName(); - FileCredentials fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xLoc.getXLocSet()).build(); - // write object 1 to replica 1 => full object - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse w = client.write(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, 0, objdata, data.createViewBuffer()); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse w = client.write(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, 0, objdata, + data.createViewBuffer()); OSDWriteResponse wResp = w.get(); w.freeBuffers(); @@ -266,16 +262,15 @@ public class ReplicationTest { ReusableBuffer data2 = SetupUtils.generateData(stripeSize / 2); // write half object 3 to replica 1 with offset => half object, HOLE - w = client.write(xLoc.getOSDsForObject(objectNo + 2).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, - objectNo + 2, 0, stripeSize / 4, 0, objdata, data2.createViewBuffer()); + w = client.write(xLoc.getOSDsForObject(objectNo + 2).get(0).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 2, 0, stripeSize / 4, 0, objdata, + data2.createViewBuffer()); wResp = w.get(); w.freeBuffers(); // write half object 4 to replica 1 => half object, EOF - w = client.write(xLoc.getOSDsForObject(objectNo + 3).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, - objectNo + 3, 0, 0, 0, objdata, data2.createViewBuffer()); + w = client.write(xLoc.getOSDsForObject(objectNo + 3).get(0).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 3, 0, 0, 0, objdata, data2.createViewBuffer()); wResp = w.get(); w.freeBuffers(); @@ -284,8 +279,8 @@ public class ReplicationTest { fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xLoc.getXLocSet()).build(); // read object from replica 2 - RPCResponse r = client.read(xLoc.getOSDsForObject(objectNo).get(1).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, stripeSize); + RPCResponse r = client.read(xLoc.getOSDsForObject(objectNo).get(1).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, stripeSize); ObjectData rResp = r.get(); if (data.capacity() > 0) assertTrue(Arrays.equals(data.array(), r.getData().array())); @@ -294,9 +289,8 @@ public class ReplicationTest { r.freeBuffers(); // read hole from replica 2 - r = client.read(xLoc.getOSDsForObject(objectNo + 1).get(1).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 1, - 0, 0, stripeSize); + r = client.read(xLoc.getOSDsForObject(objectNo + 1).get(1).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 1, 0, 0, stripeSize); rResp = r.get(); // filled with zeros if (rResp.getZeroPadding() == 0) { @@ -308,24 +302,22 @@ public class ReplicationTest { // check whether a padding object for object 2 has been created on // replica 2 - RPCResponse intRLRsp = client.xtreemfs_internal_read_local(xLoc.getOSDsForObject( - objectNo + 1).get(1).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 1, 0, 0, stripeSize, false, new ArrayList()); + RPCResponse intRLRsp = client.xtreemfs_internal_read_local( + xLoc.getOSDsForObject(objectNo + 1).get(1).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 1, 0, 0, stripeSize, false, new ArrayList()); InternalReadLocalResponse intRL = intRLRsp.get(); assertEquals(stripeSize, intRL.getData().getZeroPadding()); // read EOF from replica 2 - r = client.read(xLoc.getOSDsForObject(objectNo + 4).get(1).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 4, - 0, 0, stripeSize); + r = client.read(xLoc.getOSDsForObject(objectNo + 4).get(1).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 4, 0, 0, stripeSize); rResp = r.get(); assertNull(r.getData()); r.freeBuffers(); // read hole within an object from replica 2 - r = client.read(xLoc.getOSDsForObject(objectNo + 2).get(1).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 2, - 0, 0, stripeSize); + r = client.read(xLoc.getOSDsForObject(objectNo + 2).get(1).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 2, 0, 0, stripeSize); rResp = r.get(); byte[] responseData = r.getData().array(); // correct length @@ -345,17 +337,15 @@ public class ReplicationTest { r.freeBuffers(); // read EOF within data from replica 2 - r = client.read(xLoc.getOSDsForObject(objectNo + 3).get(1).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 3, - 0, 0, stripeSize); + r = client.read(xLoc.getOSDsForObject(objectNo + 3).get(1).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 3, 0, 0, stripeSize); rResp = r.get(); assertTrue(Arrays.equals(data2.array(), r.getData().array())); r.freeBuffers(); // read hole within an object from replica 2 with offset and length - r = client.read(xLoc.getOSDsForObject(objectNo + 2).get(2).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 2, - 0, stripeSize / 4, data2.limit()); + r = client.read(xLoc.getOSDsForObject(objectNo + 2).get(2).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 2, 0, stripeSize / 4, data2.limit()); rResp = r.get(); // correct length and data assertEquals(data2.limit(), r.getData().array().length); @@ -374,8 +364,6 @@ public class ReplicationTest { */ @Test public void testObjectLocalAvailable() throws Exception { - printTestName(); - // Default case. helperObjectLocalAvailable(); } @@ -385,10 +373,10 @@ public class ReplicationTest { FileCredentials fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xLoc.getXLocSet()).build(); // write data - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); - RPCResponse r = client.write(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, - 0, objdata, this.data.createViewBuffer()); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = client.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, 0, objdata, this.data.createViewBuffer()); OSDWriteResponse resp = r.get(); r.freeBuffers(); @@ -397,8 +385,9 @@ public class ReplicationTest { fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xLoc.getXLocSet()).build(); // read data - RPCResponse r2 = client.xtreemfs_internal_read_local(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, stripeSize, false, new ArrayList()); + RPCResponse r2 = client.xtreemfs_internal_read_local(serverID.getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, stripeSize, + false, new ArrayList()); InternalReadLocalResponse resp2 = r2.get(); assertTrue(Arrays.equals(data.array(), r2.getData().array())); @@ -407,14 +396,15 @@ public class ReplicationTest { r2.freeBuffers(); // read only part of data - r2 = client.xtreemfs_internal_read_local(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, stripeSize/4, stripeSize/2, true, new ArrayList()); + r2 = client.xtreemfs_internal_read_local(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo, 0, stripeSize / 4, stripeSize / 2, true, + new ArrayList()); resp2 = r2.get(); int j = stripeSize / 4; byte[] responseData = r2.getData().array(); byte[] dataBytes = data.array(); - assertEquals(stripeSize/2, responseData.length); + assertEquals(stripeSize / 2, responseData.length); for (int i = 0; i < responseData.length; i++) { assertEquals(dataBytes[j++], responseData[i]); } @@ -422,7 +412,8 @@ public class ReplicationTest { // check object list ObjectList objectList = resp2.getObjectSet(0); - ObjectSet list = new ObjectSet(objectList.getStripeWidth(), objectList.getFirst(), objectList.getSet().toByteArray()); + ObjectSet list = new ObjectSet(objectList.getStripeWidth(), objectList.getFirst(), objectList.getSet() + .toByteArray()); assertNotNull(list); assertEquals(1, list.size()); assertTrue(list.contains(objectNo)); @@ -435,8 +426,6 @@ public class ReplicationTest { */ @Test public void testObjectLocalNOTAvailable() throws Exception { - printTestName(); - helperObjectLocalNOTAvailable(); } @@ -444,24 +433,29 @@ public class ReplicationTest { FileCredentials fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xLoc.getXLocSet()).build(); // read object, before one has been written - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); RPCResponse r = client.xtreemfs_internal_read_local(xLoc.getOSDsForObject(objectNo) - .get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, stripeSize, true, new ArrayList()); + .get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo, + 0, 0, stripeSize, true, new ArrayList()); InternalReadLocalResponse resp = r.get(); assertNull(r.getData()); assertEquals(1, resp.getObjectSetCount()); - ObjectSet list = new ObjectSet(resp.getObjectSet(0).getStripeWidth(), resp.getObjectSet(0).getFirst(), resp.getObjectSet(0).getSet().toByteArray()); + ObjectSet list = new ObjectSet(resp.getObjectSet(0).getStripeWidth(), resp.getObjectSet(0).getFirst(), resp + .getObjectSet(0).getSet().toByteArray()); assertEquals(0, list.size()); r.freeBuffers(); // write data - RPCResponse r2 = client.write(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, 0, objdata, this.data.createViewBuffer()); + RPCResponse r2 = client.write(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, 0, objdata, + this.data.createViewBuffer()); OSDWriteResponse resp2 = r2.get(); r2.freeBuffers(); - r2 = client.write(xLoc.getOSDsForObject(objectNo + 2).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 2, 0, 0, 0, objdata, this.data.createViewBuffer()); + r2 = client + .write(xLoc.getOSDsForObject(objectNo + 2).get(0).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 2, 0, 0, 0, objdata, + this.data.createViewBuffer()); resp2 = r2.get(); r2.freeBuffers(); @@ -470,27 +464,31 @@ public class ReplicationTest { fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xLoc.getXLocSet()).build(); // read data - r = client.xtreemfs_internal_read_local(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, stripeSize, false, new ArrayList()); + r = client.xtreemfs_internal_read_local(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, stripeSize, + false, new ArrayList()); resp = r.get(); assertTrue(Arrays.equals(data.array(), r.getData().array())); r.freeBuffers(); - r = client.xtreemfs_internal_read_local(xLoc.getOSDsForObject(objectNo + 2).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 2, 0, 0, stripeSize, false, new ArrayList()); + r = client.xtreemfs_internal_read_local(xLoc.getOSDsForObject(objectNo + 2).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo + 2, 0, 0, stripeSize, + false, new ArrayList()); resp = r.get(); assertTrue(Arrays.equals(data.array(), r.getData().array())); r.freeBuffers(); // read higher object than has been written (EOF) - r = client.xtreemfs_internal_read_local(xLoc.getOSDsForObject(objectNo + 3).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 3, 0, 0, stripeSize, false, new ArrayList()); + r = client.xtreemfs_internal_read_local(xLoc.getOSDsForObject(objectNo + 3).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo + 3, 0, 0, stripeSize, + false, new ArrayList()); resp = r.get(); assertNull(r.getData()); r.freeBuffers(); // read object that has not been written (hole) - r = client.xtreemfs_internal_read_local(xLoc.getOSDsForObject(objectNo + 1).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 1, 0, 0, stripeSize, false, new ArrayList()); + r = client.xtreemfs_internal_read_local(xLoc.getOSDsForObject(objectNo + 1).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo + 1, 0, 0, stripeSize, + false, new ArrayList()); resp = r.get(); assertNull(r.getData()); r.freeBuffers(); @@ -498,8 +496,6 @@ public class ReplicationTest { @Test public void testObjectLocalAvailableNONStriped() throws Exception { - printTestName(); - this.xLoc = createLocations(2, 1); // reuse test helperObjectLocalAvailable(); @@ -507,8 +503,6 @@ public class ReplicationTest { @Test public void testObjectLocalNOTAvailableNONStriped() throws Exception { - printTestName(); - this.xLoc = createLocations(2, 1); // reuse test helperObjectLocalNOTAvailable(); @@ -516,28 +510,29 @@ public class ReplicationTest { @Test public void testGetObjectList() throws Exception { - printTestName(); - FileCredentials fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(xLoc.getXLocSet()).build(); - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); // read data RPCResponse r = client.xtreemfs_internal_get_object_set(xLoc.getOSDsForObject(objectNo).get(0) .getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID); ObjectList objectList = r.get(); r.freeBuffers(); - ObjectSet list = new ObjectSet(objectList.getStripeWidth(), objectList.getFirst(), objectList.getSet().toByteArray()); + ObjectSet list = new ObjectSet(objectList.getStripeWidth(), objectList.getFirst(), objectList.getSet() + .toByteArray()); assertEquals(0, list.size()); // write object to replica 1 : OSD 1 - RPCResponse w = client.write(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo, 0, 0, 0, objdata, this.data.createViewBuffer()); + RPCResponse w = client.write(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID, objectNo, 0, 0, 0, objdata, + this.data.createViewBuffer()); OSDWriteResponse wResp = w.get(); w.freeBuffers(); // read data - r = client.xtreemfs_internal_get_object_set(xLoc.getOSDsForObject(objectNo).get(0) - .getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID); + r = client.xtreemfs_internal_get_object_set(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID); objectList = r.get(); r.freeBuffers(); list = new ObjectSet(objectList.getStripeWidth(), objectList.getFirst(), objectList.getSet().toByteArray()); @@ -545,26 +540,32 @@ public class ReplicationTest { assertTrue(list.contains(objectNo)); // write object to replica 1 : OSD 2 - w = client.write(xLoc.getOSDsForObject(objectNo + 1).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 1, 0, 0, 0, objdata, this.data.createViewBuffer()); + w = client + .write(xLoc.getOSDsForObject(objectNo + 1).get(0).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 1, 0, 0, 0, objdata, + this.data.createViewBuffer()); wResp = w.get(); w.freeBuffers(); // write object to replica 1 : OSD 3 - w = client.write(xLoc.getOSDsForObject(objectNo + 2).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 2, 0, 0, 0, objdata, this.data.createViewBuffer()); + w = client + .write(xLoc.getOSDsForObject(objectNo + 2).get(0).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 2, 0, 0, 0, objdata, + this.data.createViewBuffer()); wResp = w.get(); w.freeBuffers(); // write object to replica 1 : OSD 1 - w = client.write(xLoc.getOSDsForObject(objectNo + 3).get(0).getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileID, objectNo + 3, 0, 0, 0, objdata, this.data.createViewBuffer()); + w = client + .write(xLoc.getOSDsForObject(objectNo + 3).get(0).getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fc, fileID, objectNo + 3, 0, 0, 0, objdata, + this.data.createViewBuffer()); wResp = w.get(); w.freeBuffers(); // read object list from OSD 1 : OSD 1 - r = client.xtreemfs_internal_get_object_set(xLoc.getOSDsForObject(objectNo).get(0) - .getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID); + r = client.xtreemfs_internal_get_object_set(xLoc.getOSDsForObject(objectNo).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID); objectList = r.get(); r.freeBuffers(); list = new ObjectSet(objectList.getStripeWidth(), objectList.getFirst(), objectList.getSet().toByteArray()); @@ -573,8 +574,8 @@ public class ReplicationTest { assertTrue(list.contains(objectNo + 3)); // read object list from OSD 1 : OSD 2 - r = client.xtreemfs_internal_get_object_set(xLoc.getOSDsForObject(objectNo+1).get(0) - .getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID); + r = client.xtreemfs_internal_get_object_set(xLoc.getOSDsForObject(objectNo + 1).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID); objectList = r.get(); r.freeBuffers(); list = new ObjectSet(objectList.getStripeWidth(), objectList.getFirst(), objectList.getSet().toByteArray()); @@ -582,8 +583,8 @@ public class ReplicationTest { assertTrue(list.contains(objectNo + 1)); // read object list from OSD 1 : OSD 3 - r = client.xtreemfs_internal_get_object_set(xLoc.getOSDsForObject(objectNo+2).get(0) - .getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID); + r = client.xtreemfs_internal_get_object_set(xLoc.getOSDsForObject(objectNo + 2).get(0).getAddress(), + RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileID); objectList = r.get(); r.freeBuffers(); list = new ObjectSet(objectList.getStripeWidth(), objectList.getFirst(), objectList.getSet().toByteArray()); diff --git a/java/servers/test/org/xtreemfs/test/osd/replication/ServiceAvailabilityTest.java b/java/servers/test/org/xtreemfs/test/osd/replication/ServiceAvailabilityTest.java index f2d3f89bb..8a5e92eb4 100755 --- a/java/servers/test/org/xtreemfs/test/osd/replication/ServiceAvailabilityTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/replication/ServiceAvailabilityTest.java @@ -9,38 +9,48 @@ package org.xtreemfs.test.osd.replication; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + import java.util.ArrayList; import java.util.List; -import junit.framework.TestCase; - import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.ServiceAvailability; import org.xtreemfs.common.uuids.ServiceUUID; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestHelper; /** * * 06.04.2009 */ -public class ServiceAvailabilityTest extends TestCase { +public class ServiceAvailabilityTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + public final static int INITIAL_TIMEOUT = 100; // 0.1 second public final static int CLEANUP_INTERVAL = 1000; // 1 second public final static int MAX_LAST_ACCESS = 1000 * 3; // 3 seconds ServiceAvailability serviceAvailability; + @BeforeClass + public static void setUpClass() throws Exception { + Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); + } + /** * @throws java.lang.Exception */ @Before public void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); - Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - serviceAvailability = new ServiceAvailability(INITIAL_TIMEOUT, MAX_LAST_ACCESS, CLEANUP_INTERVAL); } diff --git a/java/servers/test/org/xtreemfs/test/osd/replication/TransferStrategiesTest.java b/java/servers/test/org/xtreemfs/test/osd/replication/TransferStrategiesTest.java index ed5b6bdd7..57034feec 100644 --- a/java/servers/test/org/xtreemfs/test/osd/replication/TransferStrategiesTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/replication/TransferStrategiesTest.java @@ -8,16 +8,22 @@ package org.xtreemfs.test.osd.replication; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + import java.util.ArrayList; import java.util.LinkedList; import java.util.List; -import junit.framework.TestCase; - import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; -import org.xtreemfs.common.Capability; +import org.junit.rules.TestRule; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.ServiceAvailability; import org.xtreemfs.common.uuids.ServiceUUID; @@ -33,10 +39,9 @@ import org.xtreemfs.osd.replication.transferStrategies.TransferStrategy; import org.xtreemfs.osd.replication.transferStrategies.TransferStrategy.NextRequest; import org.xtreemfs.osd.replication.transferStrategies.TransferStrategy.TransferStrategyException; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replica; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SnapConfig; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicyType; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.XLocSet; import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestHelper; /** * @@ -44,42 +49,32 @@ import org.xtreemfs.test.SetupUtils; * * @author clorenz */ -public class TransferStrategiesTest extends TestCase { - private Capability cap; - private String fileID; - private XLocations xLoc; - private org.xtreemfs.common.xloc.Replica localReplica; +public class TransferStrategiesTest { + @Rule + public final TestRule testLog = TestHelper.testLog; + + private final static String fileID = "1:1"; + private static XLocations xLoc; // needed for dummy classes - private int stripeSize; + private final static int stripeSize = 128 * 1024; // byte - private TransferStrategy strategy; - private int osdNumber; - private long objectNo; - private long filesize; + private TransferStrategy strategy; + private final static int osdNumber = 12; + private final static long objectNo = 2; + private final static long filesize = 1024 * 1024 * 128; // byte - /** - * @throws InvalidXLocationsException - * - */ - public TransferStrategiesTest() throws InvalidXLocationsException { + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - fileID = "1:1"; - cap = new Capability(fileID, 0, 60, System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, "secretPassphrase"); - - this.stripeSize = 128 * 1024; // byte - osdNumber = 12; - objectNo = 2; - filesize = 1024 * 1024 * 128; // byte - xLoc = createLocations(4, 3); } /* * copied from org.xtreemfs.test.osd.replication.ReplicationTest */ - private XLocations createLocations(int numberOfReplicas, int numberOfStripedOSDs) + private static XLocations createLocations(int numberOfReplicas, int numberOfStripedOSDs) throws InvalidXLocationsException { assert (numberOfReplicas * numberOfStripedOSDs <= osdNumber); @@ -98,24 +93,26 @@ public class TransferStrategiesTest extends TestCase { else flags = ReplicationFlags.setPartialReplica(ReplicationFlags.setRandomStrategy(0)); - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(osdset.size(), stripeSize / 1024)).setReplicationFlags(flags).addAllOsdUuids(osdset).build(); + Replica r = Replica.newBuilder() + .setStripingPolicy(SetupUtils.getStripingPolicy(osdset.size(), stripeSize / 1024)) + .setReplicationFlags(flags).addAllOsdUuids(osdset).build(); rlist.add(r); } - XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(1024 * 1024 * 100).setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_NONE).setVersion(1).addAllReplicas(rlist).build(); + XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(1024 * 1024 * 100) + .setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_NONE).setVersion(1).addAllReplicas(rlist) + .build(); // set the first replica as current replica // set the first replica as current replica - XLocations locations = new XLocations(locSet, - new ServiceUUID(locSet.getReplicas(0).getOsdUuids(0))); + XLocations locations = new XLocations(locSet, new ServiceUUID(locSet.getReplicas(0).getOsdUuids(0))); return locations; } @Before public void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName() + "." + getName()); this.strategy = new RandomStrategy(fileID, xLoc, new ServiceAvailability()); } @@ -124,8 +121,8 @@ public class TransferStrategiesTest extends TestCase { } /** - * Test method for {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#addRequiredObject(long)} and - * {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#removeRequiredObject(long)} . + * Test method for {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#addRequiredObject(long)} + * and {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#removeRequiredObject(long)} . */ @Test public void testAddAndRemoveRequiredObject() { @@ -134,8 +131,8 @@ public class TransferStrategiesTest extends TestCase { } /** - * Test method for {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#addPreferredObject(long)} and - * {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#removePreferredObject(long)} . + * Test method for {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#addPreferredObject(long)} + * and {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#removePreferredObject(long)} . */ @Test public void testAddAndRemovePreferredObject() { @@ -144,7 +141,8 @@ public class TransferStrategiesTest extends TestCase { } /** - * Test method for {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#getRequiredObjectsCount()} and + * Test method for + * {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#getRequiredObjectsCount()} and * {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#getPreferredObjectsCount()} . */ @Test @@ -161,8 +159,7 @@ public class TransferStrategiesTest extends TestCase { } /** - * No assert in this test possible due to information hiding. Check debug output for correctness. Test - * method for + * No assert in this test possible due to information hiding. Check debug output for correctness. Test method for * {@link org.xtreemfs.osd.replication.transferStrategies.TransferStrategy#setOSDsObjectSet(set, osd)} . */ @Test @@ -312,7 +309,8 @@ public class TransferStrategiesTest extends TestCase { } /** - * Test method for {@link org.xtreemfs.osd.replication.transferStrategies.SequentialPrefetchingStrategy#selectNext()}. + * Test method for + * {@link org.xtreemfs.osd.replication.transferStrategies.SequentialPrefetchingStrategy#selectNext()}. */ @Test public void testSelectNextForSequentialPrefetchingTransfer() { @@ -352,77 +350,77 @@ public class TransferStrategiesTest extends TestCase { this.strategy.selectNext(); next = this.strategy.getNext(); assertEquals(3, next.objectNo); - + // ... and more } catch (TransferStrategyException e) { fail(e.getLocalizedMessage()); } } - -// /** -// * Test method for {@link org.xtreemfs.osd.replication.transferStrategies.RarestFirstStrategy#selectNext()}. -// */ -// @Test -// public void testSelectNextForRarestFirstTransfer() { -// this.strategy = new RarestFirstStrategy(fileID, xLoc, new ServiceAvailability()); -// -// // prepare objects to fetch -// long[] objectsToRequest = { 0, 1, 2, 3, 4, 5, 6, 7, 8,9,10,11,12,13 }; -// this.strategy.addObject(0, false); -// this.strategy.addObject(1, true); -// this.strategy.addObject(2, true); -// for(int i=3; i< objectsToRequest.length-1; i++) -// this.strategy.addObject(i, false); -// -// // prepare object sets of OSDs -// ObjectSet set = fillObjectSet(0, 2, 4); -// this.strategy.setOSDsObjectSet(set, xLoc.getReplica(0).getOSDs().get(0)); -// set = fillObjectSet(1, 3); -// this.strategy.setOSDsObjectSet(set, xLoc.getReplica(0).getOSDs().get(1)); -// set = fillObjectSet(0, 2, 10); -// this.strategy.setOSDsObjectSet(set, xLoc.getReplica(2).getOSDs().get(0)); -// set = fillObjectSet(1, 7, 9); -// this.strategy.setOSDsObjectSet(set, xLoc.getReplica(2).getOSDs().get(1)); -// set = fillObjectSet(0, 4, 6, 10, 12); -// this.strategy.setOSDsObjectSet(set, xLoc.getReplica(3).getOSDs().get(0)); -// set = fillObjectSet(1, 7, 9, 11); -// this.strategy.setOSDsObjectSet(set, xLoc.getReplica(3).getOSDs().get(1)); -// -// // set complete replica set later -// set = fillObjectSet(0, 2, 4, 6, 8, 10, 12); -// this.strategy.setOSDsObjectSet(set, xLoc.getReplica(1).getOSDs().get(0)); // complete replica -// set = fillObjectSet(1, 3, 5, 7, 9, 11, 13); -// this.strategy.setOSDsObjectSet(set, xLoc.getReplica(1).getOSDs().get(1)); // complete replica -// -// ArrayList requestedObjects = new ArrayList(); -// -// try { -// NextRequest next; -// for (int i = 0; i < objectsToRequest.length; i++) { -// this.strategy.selectNext(); -// next = this.strategy.getNext(); -// requestedObjects.add(Long.valueOf(next.objectNo)); -// boolean contained = false; -// for (org.xtreemfs.common.xloc.Replica r : xLoc.getReplicas()) { -// if (r.getOSDs().contains(next.osd)) -// contained = true; -// } -// assertTrue(contained); -// } -// -//// for (int i = 0; i < objectsToRequest.length; i++) -//// assertTrue(requestedObjects.contains(objectsToRequest.get(i))); -// -// // no more requests possible -// this.strategy.selectNext(); -// next = this.strategy.getNext(); -// assertNull(next); -// } catch (TransferStrategyException e) { -// fail(e.getLocalizedMessage()); -// } -// } - - private ObjectSet fillObjectSet(long...objects) { + + // /** + // * Test method for {@link org.xtreemfs.osd.replication.transferStrategies.RarestFirstStrategy#selectNext()}. + // */ + // @Test + // public void testSelectNextForRarestFirstTransfer() { + // this.strategy = new RarestFirstStrategy(fileID, xLoc, new ServiceAvailability()); + // + // // prepare objects to fetch + // long[] objectsToRequest = { 0, 1, 2, 3, 4, 5, 6, 7, 8,9,10,11,12,13 }; + // this.strategy.addObject(0, false); + // this.strategy.addObject(1, true); + // this.strategy.addObject(2, true); + // for(int i=3; i< objectsToRequest.length-1; i++) + // this.strategy.addObject(i, false); + // + // // prepare object sets of OSDs + // ObjectSet set = fillObjectSet(0, 2, 4); + // this.strategy.setOSDsObjectSet(set, xLoc.getReplica(0).getOSDs().get(0)); + // set = fillObjectSet(1, 3); + // this.strategy.setOSDsObjectSet(set, xLoc.getReplica(0).getOSDs().get(1)); + // set = fillObjectSet(0, 2, 10); + // this.strategy.setOSDsObjectSet(set, xLoc.getReplica(2).getOSDs().get(0)); + // set = fillObjectSet(1, 7, 9); + // this.strategy.setOSDsObjectSet(set, xLoc.getReplica(2).getOSDs().get(1)); + // set = fillObjectSet(0, 4, 6, 10, 12); + // this.strategy.setOSDsObjectSet(set, xLoc.getReplica(3).getOSDs().get(0)); + // set = fillObjectSet(1, 7, 9, 11); + // this.strategy.setOSDsObjectSet(set, xLoc.getReplica(3).getOSDs().get(1)); + // + // // set complete replica set later + // set = fillObjectSet(0, 2, 4, 6, 8, 10, 12); + // this.strategy.setOSDsObjectSet(set, xLoc.getReplica(1).getOSDs().get(0)); // complete replica + // set = fillObjectSet(1, 3, 5, 7, 9, 11, 13); + // this.strategy.setOSDsObjectSet(set, xLoc.getReplica(1).getOSDs().get(1)); // complete replica + // + // ArrayList requestedObjects = new ArrayList(); + // + // try { + // NextRequest next; + // for (int i = 0; i < objectsToRequest.length; i++) { + // this.strategy.selectNext(); + // next = this.strategy.getNext(); + // requestedObjects.add(Long.valueOf(next.objectNo)); + // boolean contained = false; + // for (org.xtreemfs.common.xloc.Replica r : xLoc.getReplicas()) { + // if (r.getOSDs().contains(next.osd)) + // contained = true; + // } + // assertTrue(contained); + // } + // + // // for (int i = 0; i < objectsToRequest.length; i++) + // // assertTrue(requestedObjects.contains(objectsToRequest.get(i))); + // + // // no more requests possible + // this.strategy.selectNext(); + // next = this.strategy.getNext(); + // assertNull(next); + // } catch (TransferStrategyException e) { + // fail(e.getLocalizedMessage()); + // } + // } + + private ObjectSet fillObjectSet(long... objects) { ObjectSet set = new ObjectSet(objects.length); for (long object : objects) set.add(object); diff --git a/java/servers/test/org/xtreemfs/test/osd/rwre/FixWrongMasterEpochDirectoryTest.java b/java/servers/test/org/xtreemfs/test/osd/rwre/FixWrongMasterEpochDirectoryTest.java index 7980258d8..96bf9e220 100644 --- a/java/servers/test/org/xtreemfs/test/osd/rwre/FixWrongMasterEpochDirectoryTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/rwre/FixWrongMasterEpochDirectoryTest.java @@ -6,19 +6,26 @@ */ package org.xtreemfs.test.osd.rwre; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; import java.io.File; import java.io.IOException; import org.junit.After; import org.junit.Before; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.osd.storage.HashStorageLayout; import org.xtreemfs.osd.storage.MetadataCache; import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestHelper; public class FixWrongMasterEpochDirectoryTest { + @Rule + public final TestRule testLog = TestHelper.testLog; /** * @throws java.lang.Exception diff --git a/java/servers/test/org/xtreemfs/test/osd/rwre/RWQuorumReplicationTest.java b/java/servers/test/org/xtreemfs/test/osd/rwre/RWQuorumReplicationTest.java index ddc5d916e..417ec71fe 100644 --- a/java/servers/test/org/xtreemfs/test/osd/rwre/RWQuorumReplicationTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/rwre/RWQuorumReplicationTest.java @@ -7,25 +7,29 @@ package org.xtreemfs.test.osd.rwre; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; + import java.net.InetSocketAddress; import java.util.LinkedList; import java.util.List; -import junit.framework.TestCase; + import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.uuids.UUIDResolver; import org.xtreemfs.foundation.buffer.BufferPool; import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; -import org.xtreemfs.foundation.logging.Logging.Category; import org.xtreemfs.foundation.pbrpc.client.PBRPCException; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.ErrorType; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.FileCredentials; @@ -39,40 +43,36 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectData; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** - * + * * @author bjko */ -public class RWQuorumReplicationTest extends TestCase { +public class RWQuorumReplicationTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - private OSD[] osds; - private OSDConfig[] configs; - private TestEnvironment testEnv; + private OSD[] osds; + private OSDConfig[] configs; + private TestEnvironment testEnv; - private final static int NUM_OSDS = 3; - private static final String fileId = "ABCDEF:1"; + private final static int NUM_OSDS = 3; + private static final String fileId = "ABCDEF:1"; - public RWQuorumReplicationTest() { - super(); + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } - - @Override @Before public void setUp() throws Exception { - - java.io.File testDir = new java.io.File(SetupUtils.TEST_DIR); - - FSUtils.delTree(testDir); - testDir.mkdirs(); - // startup: DIR - testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, - TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, - TestEnvironment.Services.OSD_CLIENT, TestEnvironment.Services.MRC, - TestEnvironment.Services.MRC_CLIENT}); + testEnv = new TestEnvironment( + new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, + TestEnvironment.Services.OSD_CLIENT, TestEnvironment.Services.MRC, + TestEnvironment.Services.MRC_CLIENT }); testEnv.start(); osds = new OSD[NUM_OSDS]; @@ -83,7 +83,6 @@ public class RWQuorumReplicationTest extends TestCase { } - @Override @After public void tearDown() { if (osds != null) { @@ -96,46 +95,46 @@ public class RWQuorumReplicationTest extends TestCase { testEnv.shutdown(); } - // TODO add test methods here. - // The methods must be annotated with annotation @Test. For example: - // - // @Test - // public void hello() {} - @Test public void testReplicatedWrite() throws Exception { - Capability cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis()+10000, "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); + Capability cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() + | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis() + 10000, "", 0, + false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); List rlist = new LinkedList(); for (OSDConfig osd : this.configs) { - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)).setReplicationFlags(0).addOsdUuids(osd.getUUID().toString()).build(); + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)) + .setReplicationFlags(0).addOsdUuids(osd.getUUID().toString()).build(); rlist.add(r); } - + UUIDResolver.addTestMapping("yaggablurp", "testposd.xtreemfs.com", 32640, false); - //add a non-existent OSD - Replica replica = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)).setReplicationFlags(0).addOsdUuids("yaggablurp").build(); + // add a non-existent OSD + Replica replica = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)) + .setReplicationFlags(0).addOsdUuids("yaggablurp").build(); rlist.add(replica); - XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_WQRQ).setVersion(1).addAllReplicas(rlist).build(); + XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(0) + .setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_WQRQ).setVersion(1).addAllReplicas(rlist) + .build(); // set the first replica as current replica FileCredentials fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(locSet).build(); final OSDServiceClient client = testEnv.getOSDClient(); - final InetSocketAddress osd1 = new InetSocketAddress("localhost",configs[0].getPort()); - - final InetSocketAddress osd2 = new InetSocketAddress("localhost",configs[1].getPort()); + final InetSocketAddress osd1 = new InetSocketAddress("localhost", configs[0].getPort()); + final InetSocketAddress osd2 = new InetSocketAddress("localhost", configs[1].getPort()); - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); ReusableBuffer rb = BufferPool.allocate(1024); rb.put("YaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYagga".getBytes()); rb.limit(rb.capacity()); rb.position(0); RPCResponse r = client.write(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, 0, 0, 0, objdata, rb); + fc, fileId, 0, 0, 0, 0, objdata, rb); try { r.get(); } catch (Exception ex) { @@ -145,10 +144,9 @@ public class RWQuorumReplicationTest extends TestCase { // System.out.println("got response"); r.freeBuffers(); - - ReusableBuffer data = BufferPool.allocate(1024*8); - r = client.write(osd2, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, 0, 0, 0, objdata, data); + ReusableBuffer data = BufferPool.allocate(1024 * 8); + r = client.write(osd2, RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileId, 0, 0, 0, 0, + objdata, data); try { r.get(); fail("expected redirect"); @@ -164,16 +162,16 @@ public class RWQuorumReplicationTest extends TestCase { rb.limit(rb.capacity()); rb.position(0); - r = client.write(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, 0, 1024, 0, objdata, rb); + r = client.write(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileId, 0, 0, 1024, 0, + objdata, rb); r.get(); // System.out.println("got response"); r.freeBuffers(); - //read from slave + // read from slave // System.out.println("//// START READ ////"); - RPCResponse r2 = client.read(osd2, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, -1, 0, 2048); + RPCResponse r2 = client.read(osd2, RPCAuthentication.authNone, RPCAuthentication.userService, fc, + fileId, 0, -1, 0, 2048); try { r2.get(); fail("expected redirect"); @@ -184,52 +182,55 @@ public class RWQuorumReplicationTest extends TestCase { } r2.freeBuffers(); - - r2 = client.read(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, -1, 0, 2048); + r2 = client.read(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileId, 0, -1, 0, 2048); ObjectData od = r2.get(); rb = r2.getData(); - assertEquals(rb.get(0),(byte)'Y'); - assertEquals(rb.get(1),(byte)'a'); + assertEquals(rb.get(0), (byte) 'Y'); + assertEquals(rb.get(1), (byte) 'a'); r2.freeBuffers(); XCap newCap = fc.getXcap().toBuilder().setTruncateEpoch(1).build(); fc = fc.toBuilder().setXcap(newCap).build(); - RPCResponse r3 = client.truncate(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 128*1024*2); + RPCResponse r3 = client.truncate(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileId, + 128 * 1024 * 2); r3.get(); r3.freeBuffers(); } @Test public void testTwoReplicas() throws Exception { - Capability cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis()+10000, "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); + Capability cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() + | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis() + 10000, "", 0, + false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); List rlist = new LinkedList(); for (OSDConfig osd : this.configs) { - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)).setReplicationFlags(0).addOsdUuids(osd.getUUID().toString()).build(); + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)) + .setReplicationFlags(0).addOsdUuids(osd.getUUID().toString()).build(); rlist.add(r); } - XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_WQRQ).setVersion(1).addAllReplicas(rlist).build(); + XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(0) + .setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_WQRQ).setVersion(1).addAllReplicas(rlist) + .build(); // set the first replica as current replica FileCredentials fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(locSet).build(); final OSDServiceClient client = testEnv.getOSDClient(); - final InetSocketAddress osd1 = new InetSocketAddress("localhost",configs[0].getPort()); + final InetSocketAddress osd1 = new InetSocketAddress("localhost", configs[0].getPort()); - final InetSocketAddress osd2 = new InetSocketAddress("localhost",configs[1].getPort()); + final InetSocketAddress osd2 = new InetSocketAddress("localhost", configs[1].getPort()); - - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); ReusableBuffer rb = BufferPool.allocate(1024); rb.put("YaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYagga".getBytes()); rb.limit(rb.capacity()); rb.position(0); RPCResponse r = client.write(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, 0, 0, 0, objdata, rb); + fc, fileId, 0, 0, 0, 0, objdata, rb); try { r.get(); } catch (Exception ex) { @@ -239,10 +240,9 @@ public class RWQuorumReplicationTest extends TestCase { // System.out.println("got response"); r.freeBuffers(); - - ReusableBuffer data = BufferPool.allocate(1024*8); - r = client.write(osd2, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, 0, 0, 0, objdata, data); + ReusableBuffer data = BufferPool.allocate(1024 * 8); + r = client.write(osd2, RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileId, 0, 0, 0, 0, + objdata, data); try { r.get(); fail("expected redirect"); @@ -258,16 +258,16 @@ public class RWQuorumReplicationTest extends TestCase { rb.limit(rb.capacity()); rb.position(0); - r = client.write(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, 0, 1024, 0, objdata, rb); + r = client.write(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileId, 0, 0, 1024, 0, + objdata, rb); r.get(); // System.out.println("got response"); r.freeBuffers(); - //read from slave + // read from slave // System.out.println("//// START READ ////"); - RPCResponse r2 = client.read(osd2, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, -1, 0, 2048); + RPCResponse r2 = client.read(osd2, RPCAuthentication.authNone, RPCAuthentication.userService, fc, + fileId, 0, -1, 0, 2048); try { r2.get(); fail("expected redirect"); @@ -278,20 +278,18 @@ public class RWQuorumReplicationTest extends TestCase { } r2.freeBuffers(); - - r2 = client.read(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, -1, 0, 2048); + r2 = client.read(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileId, 0, -1, 0, 2048); ObjectData od = r2.get(); rb = r2.getData(); - assertEquals(rb.get(0),(byte)'Y'); - assertEquals(rb.get(1),(byte)'a'); + assertEquals(rb.get(0), (byte) 'Y'); + assertEquals(rb.get(1), (byte) 'a'); r2.freeBuffers(); XCap newCap = fc.getXcap().toBuilder().setTruncateEpoch(1).build(); fc = fc.toBuilder().setXcap(newCap).build(); - RPCResponse r3 = client.truncate(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 128*1024*2); + RPCResponse r3 = client.truncate(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, fc, fileId, + 128 * 1024 * 2); r3.get(); r3.freeBuffers(); } diff --git a/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationFailureTest.java b/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationFailureTest.java index 9bdb7ba3c..92896a9d7 100644 --- a/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationFailureTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationFailureTest.java @@ -7,23 +7,26 @@ package org.xtreemfs.test.osd.rwre; +import static org.junit.Assert.fail; + import java.net.InetSocketAddress; import java.util.LinkedList; import java.util.List; -import junit.framework.TestCase; + import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.uuids.UUIDResolver; import org.xtreemfs.foundation.buffer.BufferPool; import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; -import org.xtreemfs.foundation.logging.Logging.Category; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; -import org.xtreemfs.foundation.util.FSUtils; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.FileCredentials; @@ -36,40 +39,36 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectData; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** - * + * * @author bjko */ -public class RWReplicationFailureTest extends TestCase { +public class RWReplicationFailureTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - private OSD[] osds; - private OSDConfig[] configs; - private TestEnvironment testEnv; + private OSD[] osds; + private OSDConfig[] configs; + private TestEnvironment testEnv; - private final static int NUM_OSDS = 2; - private static final String fileId = "ABCDEF:1"; + private final static int NUM_OSDS = 2; + private static final String fileId = "ABCDEF:1"; - public RWReplicationFailureTest() { - super(); + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } - - @Override @Before public void setUp() throws Exception { - - java.io.File testDir = new java.io.File(SetupUtils.TEST_DIR); - - FSUtils.delTree(testDir); - testDir.mkdirs(); - // startup: DIR - testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, - TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, - TestEnvironment.Services.OSD_CLIENT, TestEnvironment.Services.MRC, - TestEnvironment.Services.MRC_CLIENT}); + testEnv = new TestEnvironment( + new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.TIME_SYNC, TestEnvironment.Services.UUID_RESOLVER, + TestEnvironment.Services.OSD_CLIENT, TestEnvironment.Services.MRC, + TestEnvironment.Services.MRC_CLIENT }); testEnv.start(); osds = new OSD[NUM_OSDS]; @@ -81,7 +80,6 @@ public class RWReplicationFailureTest extends TestCase { } - @Override @After public void tearDown() { if (osds != null) { @@ -97,31 +95,37 @@ public class RWReplicationFailureTest extends TestCase { @Test public void testInvalidCap() throws Exception { - Capability cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis()+10000, "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); + Capability cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() + | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis() + 10000, "", 0, + false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); List rlist = new LinkedList(); for (OSDConfig osd : this.configs) { - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)).setReplicationFlags(0).addOsdUuids(osd.getUUID().toString()).build(); + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)) + .setReplicationFlags(0).addOsdUuids(osd.getUUID().toString()).build(); rlist.add(r); } - XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_WARONE).setVersion(1).addAllReplicas(rlist).build(); + XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(0) + .setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_WARONE).setVersion(1) + .addAllReplicas(rlist).build(); // set the first replica as current replica FileCredentials fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(locSet).build(); final OSDServiceClient client = testEnv.getOSDClient(); - final InetSocketAddress osd1 = new InetSocketAddress("localhost",configs[0].getPort()); + final InetSocketAddress osd1 = new InetSocketAddress("localhost", configs[0].getPort()); - final InetSocketAddress osd2 = new InetSocketAddress("localhost",configs[1].getPort()); + final InetSocketAddress osd2 = new InetSocketAddress("localhost", configs[1].getPort()); - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); ReusableBuffer rb = BufferPool.allocate(1024); rb.put("YaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYagga".getBytes()); rb.limit(rb.capacity()); rb.position(0); RPCResponse r = client.write(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, 0, 0, 0, objdata,rb); + fc, fileId, 0, 0, 0, 0, objdata, rb); try { r.get(); fail("write should have failed"); @@ -134,17 +138,23 @@ public class RWReplicationFailureTest extends TestCase { @Test public void testOfflineOSD() throws Exception { - Capability cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis()+10000, "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); + Capability cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() + | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis() + 10000, "", 0, + false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); List rlist = new LinkedList(); for (OSDConfig osd : this.configs) { - Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)).setReplicationFlags(0).addOsdUuids(osd.getUUID().toString()).build(); + Replica r = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)) + .setReplicationFlags(0).addOsdUuids(osd.getUUID().toString()).build(); rlist.add(r); } - Replica replica = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)).setReplicationFlags(0).addOsdUuids("yaggablurp").build(); + Replica replica = Replica.newBuilder().setStripingPolicy(SetupUtils.getStripingPolicy(1, 128)) + .setReplicationFlags(0).addOsdUuids("yaggablurp").build(); rlist.add(replica); - XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(0).setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_WARONE).setVersion(1).addAllReplicas(rlist).build(); + XLocSet locSet = XLocSet.newBuilder().setReadOnlyFileSize(0) + .setReplicaUpdatePolicy(ReplicaUpdatePolicies.REPL_UPDATE_PC_WARONE).setVersion(1) + .addAllReplicas(rlist).build(); // set the first replica as current replica FileCredentials fc = FileCredentials.newBuilder().setXcap(cap.getXCap()).setXlocs(locSet).build(); @@ -153,18 +163,19 @@ public class RWReplicationFailureTest extends TestCase { final OSDServiceClient client = testEnv.getOSDClient(); - final InetSocketAddress osd1 = new InetSocketAddress("localhost",configs[0].getPort()); + final InetSocketAddress osd1 = new InetSocketAddress("localhost", configs[0].getPort()); - final InetSocketAddress osd2 = new InetSocketAddress("localhost",configs[1].getPort()); + final InetSocketAddress osd2 = new InetSocketAddress("localhost", configs[1].getPort()); - ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); + ObjectData objdata = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); ReusableBuffer rb = BufferPool.allocate(1024); rb.put("YaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYaggaYagga".getBytes()); rb.limit(rb.capacity()); rb.position(0); RPCResponse r = client.write(osd1, RPCAuthentication.authNone, RPCAuthentication.userService, - fc, fileId, 0, 0, 0, 0, objdata,rb); + fc, fileId, 0, 0, 0, 0, objdata, rb); try { r.get(); fail("write should have failed"); @@ -175,6 +186,4 @@ public class RWReplicationFailureTest extends TestCase { } - - } \ No newline at end of file diff --git a/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationTest.java b/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationTest.java index 170a0e0fe..65d87ff69 100644 --- a/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationTest.java @@ -7,13 +7,20 @@ package org.xtreemfs.test.osd.rwre; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + import java.net.InetSocketAddress; import java.util.LinkedList; import java.util.List; -import junit.framework.TestCase; + import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.common.Capability; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.clients.Client; @@ -23,7 +30,6 @@ import org.xtreemfs.common.clients.Volume; import org.xtreemfs.foundation.buffer.BufferPool; import org.xtreemfs.foundation.buffer.ReusableBuffer; import org.xtreemfs.foundation.logging.Logging; -import org.xtreemfs.foundation.logging.Logging.Category; import org.xtreemfs.foundation.pbrpc.client.PBRPCException; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.client.RPCResponse; @@ -47,27 +53,28 @@ import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectData; import org.xtreemfs.pbrpc.generatedinterfaces.OSDServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; /** * * @author bjko */ -public class RWReplicationTest extends TestCase { +public class RWReplicationTest { + @Rule + public final TestRule testLog = TestHelper.testLog; - private OSD[] osds; - private OSDConfig[] configs; - private TestEnvironment testEnv; + private OSD[] osds; + private OSDConfig[] configs; + private TestEnvironment testEnv; - private final static int NUM_OSDS = 3; - private static final String fileId = "ABCDEF:1"; + private final static int NUM_OSDS = 3; + private static final String fileId = "ABCDEF:1"; - public RWReplicationTest() { - super(); + @BeforeClass + public static void setUpClass() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } - - @Override @Before public void setUp() throws Exception { @@ -91,7 +98,7 @@ public class RWReplicationTest extends TestCase { } - @Override + @After public void tearDown() { if (osds != null) { @@ -104,16 +111,9 @@ public class RWReplicationTest extends TestCase { testEnv.shutdown(); } - // TODO add test methods here. - // The methods must be annotated with annotation @Test. For example: - // - // @Test - // public void hello() {} @Test public void testReplicationWithClient() throws Exception { - System.out.println("TEST: replication with client"); - UserCredentials uc = UserCredentials.newBuilder().setUsername("test").addGroups("test").build(); Auth passwd = passwd = Auth.newBuilder().setAuthType(AuthType.AUTH_PASSWORD).setAuthPasswd(AuthPassword.newBuilder().setPassword("")).build(); @@ -147,8 +147,6 @@ public class RWReplicationTest extends TestCase { @Test public void testReplicatedWrite() throws Exception { - System.out.println("TEST: replicated write"); - Capability cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); List rlist = new LinkedList(); for (OSDConfig osd : this.configs) { @@ -237,8 +235,6 @@ public class RWReplicationTest extends TestCase { @Test public void testReset() throws Exception { - System.out.println("TEST: replica reset"); - Capability cap = new Capability(fileId, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(), 60, System.currentTimeMillis(), "", 0, false, SnapConfig.SNAP_CONFIG_SNAPS_DISABLED, 0, configs[0].getCapabilitySecret()); List rlist = new LinkedList(); for (OSDConfig osd : this.configs) { diff --git a/java/servers/test/org/xtreemfs/utils/ScrubberTest.java b/java/servers/test/org/xtreemfs/utils/ScrubberTest.java index 5ae22e02c..0bdd8ed68 100644 --- a/java/servers/test/org/xtreemfs/utils/ScrubberTest.java +++ b/java/servers/test/org/xtreemfs/utils/ScrubberTest.java @@ -16,14 +16,15 @@ import java.net.InetSocketAddress; import org.junit.AfterClass; import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TestRule; import org.xtreemfs.babudb.config.BabuDBConfig; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.libxtreemfs.AdminClient; import org.xtreemfs.common.libxtreemfs.AdminFileHandle; import org.xtreemfs.common.libxtreemfs.AdminVolume; import org.xtreemfs.common.libxtreemfs.ClientFactory; -import org.xtreemfs.common.libxtreemfs.FileHandle; import org.xtreemfs.common.libxtreemfs.Helper; import org.xtreemfs.common.libxtreemfs.Options; import org.xtreemfs.common.xloc.ReplicationFlags; @@ -40,9 +41,12 @@ import org.xtreemfs.pbrpc.generatedinterfaces.MRC.DirectoryEntries; import org.xtreemfs.pbrpc.generatedinterfaces.MRC.Stat; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; import org.xtreemfs.utils.xtfs_scrub.xtfs_scrub; public class ScrubberTest { + @Rule + public final TestRule testLog = TestHelper.testLog; private static MRCConfig mrcCfg1; @@ -62,15 +66,8 @@ public class ScrubberTest { private static final UserCredentials userCredentials = xtfs_scrub.credentials; - public ScrubberTest() { - Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); - } - @BeforeClass public static void setUp() throws Exception { - - System.out.println("TEST: ScrubberTest"); - Logging.start(Logging.LEVEL_WARN); accessMode = 0777; // rwxrwxrwx -- GitLab From ca428fb4e54a461387401650d6978b84fa6609b9 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Thu, 28 Aug 2014 15:24:02 +0200 Subject: [PATCH 092/192] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a35c53ae2..a37ede6b6 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,5 @@ XtreemFS is a distributed, replicated and fault-tolerant file system for federat * Tutorial for Replication Fail-Over Demo: https://code.google.com/p/xtreemfs/wiki/ContrailSummerSchoolHandsOn2013 The XtreemFS project is developed by Zuse Institute Berlin. The development of the project is funded by the European Commission since 2006 under Grant Agreements No. FP6-033576, FP7-ICT-257438, and FP7-318521, as well as the German projects MoSGrid, FFMK, and "First We Take Berlin". + +[![Build Status](https://travis-ci.org/xtreemfs/xtreemfs.svg?branch=master)](https://travis-ci.org/xtreemfs/xtreemfs) -- GitLab From ef500a8a26c847983a4aa55fb74e2a93eff400c4 Mon Sep 17 00:00:00 2001 From: noma Date: Fri, 29 Aug 2014 16:29:24 +0200 Subject: [PATCH 093/192] client: Makefile modified to tell cmake to ignore the system's boost installation in case BOOST_ROOT is set. (works for cmake newer than 2.8.3) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f230c1940..5cd2118b4 100644 --- a/Makefile +++ b/Makefile @@ -217,7 +217,7 @@ endif # Do not use env variables to control the CMake behavior as stated in http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_get_or_set_environment_variables.3F # Instead define them via -D, so they will be cached. ifdef BOOST_ROOT - CMAKE_BOOST_ROOT = -DBOOST_ROOT="$(BOOST_ROOT)" + CMAKE_BOOST_ROOT = -DBOOST_ROOT="$(BOOST_ROOT)" -D Boost_NO_SYSTEM_PATHS=ON endif # Tell CMake if it should ignore a missing Fuse. ifdef SKIP_FUSE -- GitLab From 51b88fd2da16f5c9b163eb4272fc49b2f298ffe8 Mon Sep 17 00:00:00 2001 From: Philippe Lieser Date: Fri, 29 Aug 2014 19:34:02 +0200 Subject: [PATCH 094/192] test: added testTruncateShrinkInObject2 --- .../xtreemfs/test/osd/OSDTruncateTest.java | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java b/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java index 83cf28ef7..02f6da20a 100644 --- a/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java @@ -263,6 +263,61 @@ public class OSDTruncateTest extends TestCase { r2.freeBuffers(); } + public void testTruncateShrinkInObject2() throws Exception { + // wirte first 1024 bytes to object 0 + ReusableBuffer buf = BufferPool.allocate(1024); + for (int i = 0; i < 1024; i++) + buf.put((byte) 'A'); + buf.flip(); + ObjectData data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false) + .build(); + RPCResponse r = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 0, data, buf); + OSDWriteResponse resp = r.get(); + r.freeBuffers(); + assertTrue(resp.hasSizeInBytes()); + assertEquals(1024, resp.getSizeInBytes()); + + XCap newCap = fcred.getXcap().toBuilder().setTruncateEpoch(1).build(); + fcred = fcred.toBuilder().setXcap(newCap).build(); + + // wirte first 512 bytes to object 0 + ReusableBuffer buf2 = BufferPool.allocate(512); + for (int i = 0; i < 512; i++) + buf2.put((byte) 'B'); + buf2.flip(); + data = ObjectData.newBuilder().setChecksum(0).setZeroPadding(0).setInvalidChecksumOnOsd(false).build(); + RPCResponse r2 = osdClient.write(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 0, data, buf2); + OSDWriteResponse resp2 = r2.get(); + r2.freeBuffers(); + assertFalse(resp2.hasSizeInBytes()); + + newCap = fcred.getXcap().toBuilder().setTruncateEpoch(1).build(); + fcred = fcred.toBuilder().setXcap(newCap).build(); + + // truncate shrink to 512 + r = osdClient.truncate(serverID.getAddress(), RPCAuthentication.authNone, RPCAuthentication.userService, fcred, + fileId, 512); + resp = r.get(); + r.freeBuffers(); + assertTrue(resp.hasSizeInBytes()); + assertEquals(512, resp.getSizeInBytes()); + + // get a range on a fully zero padded object + RPCResponse r3 = osdClient.read(serverID.getAddress(), RPCAuthentication.authNone, + RPCAuthentication.userService, fcred, fileId, 0, 0, 0, 2048); + data = r3.get(); + ReusableBuffer dataOut = r3.getData(); + + assertEquals(0, data.getZeroPadding()); + assertEquals(512, dataOut.capacity()); + + for (int i = 0; i < 512; i++) + assertEquals((byte) 'B', dataOut.get()); + + r3.freeBuffers(); + } public void testTruncateExtendInObject() throws Exception { // wirte first 1024 bytes to object 0 -- GitLab From d3ac1d8dc8a9630259961ef03e820617120fe5d6 Mon Sep 17 00:00:00 2001 From: Philippe Lieser Date: Fri, 29 Aug 2014 21:07:56 +0200 Subject: [PATCH 095/192] test: added additional test calls for access --- .../test/org/xtreemfs/test/mrc/MRCTest.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java b/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java index 0b36ad600..81e77998d 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/MRCTest.java @@ -897,6 +897,26 @@ public class MRCTest { // check 'access' call + try { + invokeSync(client.access(mrcAddress, RPCAuthentication.authNone, uc1, posixVolName, "grsasd", + ACCESS_FLAGS.ACCESS_FLAGS_F_OK.getNumber())); + fail("access should have been denied"); + } catch (PBRPCException exc) { + if (exc.getPOSIXErrno() != POSIXErrno.POSIX_ERROR_EACCES) { + fail("wrong error returned"); + } + } + + try { + invokeSync(client.access(mrcAddress, RPCAuthentication.authNone, uc1, posixVolName, "grsasd", + ACCESS_FLAGS.ACCESS_FLAGS_R_OK.getNumber())); + fail("access should have been denied"); + } catch (PBRPCException exc) { + if (exc.getPOSIXErrno() != POSIXErrno.POSIX_ERROR_EACCES) { + fail("wrong error returned"); + } + } + try { invokeSync(client.access(mrcAddress, RPCAuthentication.authNone, uc2, posixVolName, "grsasd", ACCESS_FLAGS.ACCESS_FLAGS_F_OK.getNumber())); -- GitLab From eacf21fa88af60bff0da7eef01c006e3a45cd9ad Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Fri, 29 Aug 2014 22:28:52 +0200 Subject: [PATCH 096/192] Added Philippe to AUTHORS file --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index b91d316a8..8550d109d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -8,6 +8,7 @@ Christoph Kleineweber Björn Kolbeck Nico Kruber Felix Langner +Philippe Lieser Christian Lorenz Matthias Noack Patrick Schäfer -- GitLab From d4271a7fef4750fad71396276af17f1cde2b57cb Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Fri, 29 Aug 2014 23:04:53 +0200 Subject: [PATCH 097/192] tests: improved waiting for ports in junit test --- tests/test_scripts/junit_tests.sh | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tests/test_scripts/junit_tests.sh b/tests/test_scripts/junit_tests.sh index 48965173f..8240e49aa 100755 --- a/tests/test_scripts/junit_tests.sh +++ b/tests/test_scripts/junit_tests.sh @@ -106,22 +106,22 @@ while read LINE; do $JAVA_CALL >> "$JUNIT_LOG_FILE" 2>&1 RESULT=$? i=`expr $i + 1` + + if [ "$RESULT" -ne "0" ]; then + echo "FAILURE" + FAILED=`expr $FAILED + 1` + # Log netstat output to debug "address already in use" problems. + temp_file="$(mktemp netstat.XXXXXX)" + netstat -n -t -a &> "$temp_file.all" + netstat -n -t -l &> "$temp_file.listen" + netstat -n -t -a -o &> "$temp_file.all+timer" + else + echo "ok" + fi + + wait_for_time_wait_ports done - if [ "$RESULT" -ne "0" ]; then - echo "FAILURE" - FAILED=`expr $FAILED + 1` - # Log netstat output to debug "address already in use" problems. - temp_file="$(mktemp netstat.XXXXXX)" - netstat -n -t -a &> "$temp_file.all" - netstat -n -t -l &> "$temp_file.listen" - netstat -n -t -a -o &> "$temp_file.all+timer" - else - echo "ok" - fi - - wait_for_time_wait_ports - COUNTER=`expr $COUNTER + 1` done < <(find $CLASSES_DIR -name *Test.class -type f) -- GitLab From a49b1c7b9d949c7dd48da542fc0b33c2b755c346 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Tue, 2 Sep 2014 17:01:08 +0200 Subject: [PATCH 098/192] servers: fixed check for F_OK in access operation --- .../src/org/xtreemfs/mrc/operations/AccessOperation.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/operations/AccessOperation.java b/java/servers/src/org/xtreemfs/mrc/operations/AccessOperation.java index 95fe30f69..be3c19ff6 100644 --- a/java/servers/src/org/xtreemfs/mrc/operations/AccessOperation.java +++ b/java/servers/src/org/xtreemfs/mrc/operations/AccessOperation.java @@ -51,8 +51,8 @@ public class AccessOperation extends MRCOperation { faMan.checkSearchPermission(sMan, res, rq.getDetails().userId, rq.getDetails().superUser, rq .getDetails().groupIds); - // if F_OK is set, only check if the file exists - if ((rqArgs.getFlags() & ACCESS_FLAGS.ACCESS_FLAGS_F_OK.getNumber()) != 0 && res.getFile() == null) { + // F_OK(==0) is always set, check if the file exists + if (res.getFile() == null) { throw new UserException(POSIXErrno.POSIX_ERROR_EACCES, "file or directory '" + rqArgs.getPath() + "' does not exist"); } -- GitLab From b886b1a4f980ef089fc7fa8411a8903efbb1ab96 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Thu, 4 Sep 2014 20:41:17 +0200 Subject: [PATCH 099/192] Fixed #265 --- cpp/src/fuse/mount.xtreemfs.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cpp/src/fuse/mount.xtreemfs.cpp b/cpp/src/fuse/mount.xtreemfs.cpp index a60c6f9fb..9990256ad 100644 --- a/cpp/src/fuse/mount.xtreemfs.cpp +++ b/cpp/src/fuse/mount.xtreemfs.cpp @@ -196,6 +196,14 @@ int main(int argc, char **argv) { // Create Fuse channel (mount_point will be freed by fuse_teardown()). mount_point = strdup(options.mount_point.c_str()); + + struct stat mount_point_stat; + stat(mount_point, &mount_point_stat); + if((mount_point_stat.st_mode & S_IFMT) != S_IFDIR) { + cerr << mount_point << " is not a directory." << endl; + return 1; + } + // Fuse docu: "manually add arguments to the struct fuse_args list" fuse_opt_parse(&fuse_args, NULL, NULL, NULL); fuse_channel = fuse_mount(mount_point, &fuse_args); -- GitLab From 95be8de10b9d9a713f5069aa78729e9d63e4eaaf Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Thu, 4 Sep 2014 21:47:54 +0200 Subject: [PATCH 100/192] tests: using java 6 for travis-ci (support still required for packaging) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c74e418d4..8afbe1a18 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: java -jdk: oraclejdk7 +jdk: openjdk6 install: - make server -- GitLab From 297935f08f82b08e7ec128b83dd7020f06f0a3bc Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Fri, 5 Sep 2014 06:08:19 +0200 Subject: [PATCH 101/192] tests: Reverted jdk switch (build fails) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8afbe1a18..c74e418d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: java -jdk: openjdk6 +jdk: oraclejdk7 install: - make server -- GitLab From bdbd9a3ac0a2435cffcfda74a907f87c2d317d52 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Fri, 5 Sep 2014 06:08:42 +0200 Subject: [PATCH 102/192] tests: Fixed failure counter in junit test script --- tests/test_scripts/junit_tests.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_scripts/junit_tests.sh b/tests/test_scripts/junit_tests.sh index 8240e49aa..0e35dc26c 100755 --- a/tests/test_scripts/junit_tests.sh +++ b/tests/test_scripts/junit_tests.sh @@ -109,7 +109,6 @@ while read LINE; do if [ "$RESULT" -ne "0" ]; then echo "FAILURE" - FAILED=`expr $FAILED + 1` # Log netstat output to debug "address already in use" problems. temp_file="$(mktemp netstat.XXXXXX)" netstat -n -t -a &> "$temp_file.all" @@ -122,6 +121,10 @@ while read LINE; do wait_for_time_wait_ports done + if [ "$RESULT" -ne "0" ]; then + FAILED=`expr $FAILED + 1` + fi + COUNTER=`expr $COUNTER + 1` done < <(find $CLASSES_DIR -name *Test.class -type f) -- GitLab From 0ed3657f608feacd7beb5de61122c346e8175054 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Mon, 8 Sep 2014 12:49:45 +0200 Subject: [PATCH 103/192] servers,utils: Enable recreation for WqRq replicas while scrubbing. Fixes xtreemfs/xtreemfs#228 --- .../org/xtreemfs/utils/xtfs_scrub/FileScrubber.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_scrub/FileScrubber.java b/java/servers/src/org/xtreemfs/utils/xtfs_scrub/FileScrubber.java index ff4b36688..24486cb41 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_scrub/FileScrubber.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_scrub/FileScrubber.java @@ -260,6 +260,16 @@ public class FileScrubber implements Runnable { returnStatus.add(ReturnStatus.UNREACHABLE); } + // handle removed replicas + if (!removedReplicas.isEmpty()) { + if (repair) { + recreateReplicas(removedReplicas); + } else { + printFileErrorMessage("lost " + removedReplicas.size() + " replicas due to dead OSDs"); + } + returnStatus.add(ReturnStatus.FAILURE_REPLICAS); + } + // if everything is fine, set returnStatus to FILE_OK if (returnStatus.size() == 0) { returnStatus.add(ReturnStatus.FILE_OK); -- GitLab From d598922cb7d4ce75e245efcb1bcbee53d0e77bcb Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Mon, 8 Sep 2014 15:45:17 +0200 Subject: [PATCH 104/192] tests: Migrate flease and foundation tests to JUnit 4. --- .../foundation/flease/FleaseStageTest.java | 37 +- .../foundation/flease/MasterEpochTest.java | 40 +- .../flease/acceptor/FleaseAcceptorTest.java | 39 +- .../flease/proposer/FleaseProposerTest.java | 56 +-- .../checksums/ChecksumFactoryTest.java | 378 +++++++++--------- .../StringChecksumAlgorithmTest.java | 74 ++-- .../test/foundation/util/OutputUtilsTest.java | 19 +- 7 files changed, 329 insertions(+), 314 deletions(-) diff --git a/java/flease/test/org/xtreemfs/foundation/flease/FleaseStageTest.java b/java/flease/test/org/xtreemfs/foundation/flease/FleaseStageTest.java index b67901844..98b5d3dc7 100644 --- a/java/flease/test/org/xtreemfs/foundation/flease/FleaseStageTest.java +++ b/java/flease/test/org/xtreemfs/foundation/flease/FleaseStageTest.java @@ -7,13 +7,20 @@ package org.xtreemfs.foundation.flease; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; + import java.io.File; import java.net.InetSocketAddress; import java.util.ArrayList; import java.util.Map; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicReference; -import junit.framework.TestCase; + +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; import org.xtreemfs.foundation.TimeSync; import org.xtreemfs.foundation.buffer.ASCIIString; import org.xtreemfs.foundation.flease.comm.FleaseMessage; @@ -26,14 +33,13 @@ import org.xtreemfs.foundation.util.FSUtils; * * @author bjko */ -public class FleaseStageTest extends TestCase { - - private final FleaseConfig cfg; - private final File testDir; +public class FleaseStageTest { - public FleaseStageTest(String testName) { - super(testName); + private static FleaseConfig cfg; + private static File testDir; + @BeforeClass + public static void setUpClass() { Logging.start(Logging.LEVEL_WARN, Category.all); TimeSync.initializeLocal(50); @@ -41,21 +47,20 @@ public class FleaseStageTest extends TestCase { testDir = new File("/tmp/xtreemfs-test/"); } - @Override - protected void setUp() throws Exception { - super.setUp(); + @Before + public void setUp() throws Exception { FSUtils.delTree(testDir); testDir.mkdirs(); } - @Override - protected void tearDown() throws Exception { - super.tearDown(); + @After + public void tearDown() throws Exception { } /** * Test of createTimer method, of class FleaseStage. */ + @Test public void testOpenAndGetLease() throws Exception { final ASCIIString CELL_ID = new ASCIIString("testcell"); @@ -85,7 +90,7 @@ public class FleaseStageTest extends TestCase { @Override public void leaseFailed(ASCIIString cellId, FleaseException error) { - FleaseStageTest.fail(error.toString()); + fail(error.toString()); } }, null); @@ -133,6 +138,7 @@ public class FleaseStageTest extends TestCase { /** * Test of createTimer method, of class FleaseStage. */ + @Test public void testGetState() throws Exception { FleaseStage fs = new FleaseStage(cfg, "/tmp/xtreemfs-test/", new FleaseMessageSenderInterface() { @@ -153,7 +159,7 @@ public class FleaseStageTest extends TestCase { @Override public void leaseFailed(ASCIIString cellId, FleaseException error) { - FleaseStageTest.fail(error.toString()); + fail(error.toString()); } }, null); @@ -184,6 +190,7 @@ public class FleaseStageTest extends TestCase { /** * Test of createTimer method, of class FleaseStage. */ + @Test public void testCreateTimer() throws Exception { FleaseStage fs = new FleaseStage(cfg, "/tmp/xtreemfs-test/", new FleaseMessageSenderInterface() { diff --git a/java/flease/test/org/xtreemfs/foundation/flease/MasterEpochTest.java b/java/flease/test/org/xtreemfs/foundation/flease/MasterEpochTest.java index 0e72ff76e..4c3231a89 100644 --- a/java/flease/test/org/xtreemfs/foundation/flease/MasterEpochTest.java +++ b/java/flease/test/org/xtreemfs/foundation/flease/MasterEpochTest.java @@ -7,13 +7,18 @@ package org.xtreemfs.foundation.flease; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; + import java.io.File; import java.net.InetSocketAddress; import java.util.ArrayList; -import java.util.Map; -import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicReference; -import junit.framework.TestCase; + +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; import org.xtreemfs.foundation.TimeSync; import org.xtreemfs.foundation.buffer.ASCIIString; import org.xtreemfs.foundation.flease.comm.FleaseMessage; @@ -26,14 +31,13 @@ import org.xtreemfs.foundation.util.FSUtils; * * @author bjko */ -public class MasterEpochTest extends TestCase { +public class MasterEpochTest { - private final FleaseConfig cfg; - private final File testDir; + private static FleaseConfig cfg; + private static File testDir; - public MasterEpochTest(String testName) { - super(testName); - + @BeforeClass + public static void setUpClass() { Logging.start(Logging.LEVEL_WARN, Category.all); TimeSync.initializeLocal(50); @@ -41,21 +45,20 @@ public class MasterEpochTest extends TestCase { testDir = new File("/tmp/xtreemfs-test/"); } - @Override - protected void setUp() throws Exception { - super.setUp(); + @Before + public void setUp() throws Exception { FSUtils.delTree(testDir); testDir.mkdirs(); } - @Override - protected void tearDown() throws Exception { - super.tearDown(); + @After + public void tearDown() throws Exception { } /** * Test of createTimer method, of class FleaseStage. */ + @Test public void testOpenAndGetLease() throws Exception { final ASCIIString CELL_ID = new ASCIIString("testcell"); @@ -85,7 +88,7 @@ public class MasterEpochTest extends TestCase { @Override public void leaseFailed(ASCIIString cellId, FleaseException error) { - MasterEpochTest.fail(error.toString()); + fail(error.toString()); } }, new MasterEpochHandlerInterface() { @@ -152,6 +155,7 @@ public class MasterEpochTest extends TestCase { /** * Test of createTimer method, of class FleaseStage. */ + @Test public void testSimpleMasterEpochHandler() throws Exception { final ASCIIString CELL_ID = new ASCIIString("testcell"); @@ -185,7 +189,7 @@ public class MasterEpochTest extends TestCase { @Override public void leaseFailed(ASCIIString cellId, FleaseException error) { - MasterEpochTest.fail(error.toString()); + fail(error.toString()); } }, meHandler); @@ -246,7 +250,7 @@ public class MasterEpochTest extends TestCase { @Override public void leaseFailed(ASCIIString cellId, FleaseException error) { - MasterEpochTest.fail(error.toString()); + fail(error.toString()); } }, meHandler); diff --git a/java/flease/test/org/xtreemfs/foundation/flease/acceptor/FleaseAcceptorTest.java b/java/flease/test/org/xtreemfs/foundation/flease/acceptor/FleaseAcceptorTest.java index 9c6ba21b3..e02050379 100644 --- a/java/flease/test/org/xtreemfs/foundation/flease/acceptor/FleaseAcceptorTest.java +++ b/java/flease/test/org/xtreemfs/foundation/flease/acceptor/FleaseAcceptorTest.java @@ -7,7 +7,17 @@ package org.xtreemfs.foundation.flease.acceptor; -import junit.framework.TestCase; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; + +import java.io.File; +import java.net.InetSocketAddress; + +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; import org.xtreemfs.foundation.TimeSync; import org.xtreemfs.foundation.buffer.ASCIIString; import org.xtreemfs.foundation.flease.FleaseConfig; @@ -18,23 +28,20 @@ import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.logging.Logging.Category; import org.xtreemfs.foundation.util.FSUtils; -import java.io.File; -import java.net.InetSocketAddress; - /** * * @author bjko */ -public class FleaseAcceptorTest extends TestCase { +public class FleaseAcceptorTest { private FleaseAcceptor acceptor; private final static ASCIIString TESTCELL = new ASCIIString("testcell"); - private final FleaseConfig cfg; - private final File testDir; + private static FleaseConfig cfg; + private static File testDir; - public FleaseAcceptorTest(String testName) { - super(testName); + @BeforeClass + public static void setUpClass() { testDir = new File("/tmp/xtreemfs-test/"); FSUtils.delTree(testDir); testDir.mkdirs(); @@ -44,9 +51,8 @@ public class FleaseAcceptorTest extends TestCase { cfg = new FleaseConfig(10000, 500, 500, new InetSocketAddress(12345), "localhost:12345",1); } - @Override - protected void setUp() throws Exception { - super.setUp(); + @Before + public void setUp() throws Exception { acceptor = new FleaseAcceptor(new LearnEventListener() { @Override @@ -55,12 +61,12 @@ public class FleaseAcceptorTest extends TestCase { }, cfg, "/tmp/xtreemfs-test/", true); } - @Override - protected void tearDown() throws Exception { - super.tearDown(); + @After + public void tearDown() throws Exception { acceptor.shutdown(); } + @Test public void testPrepAccLearn() { FleaseMessage prep = new FleaseMessage(FleaseMessage.MsgType.MSG_PREPARE); @@ -86,6 +92,7 @@ public class FleaseAcceptorTest extends TestCase { } + @Test public void testConcurrentProposal() { FleaseMessage prep1 = new FleaseMessage(FleaseMessage.MsgType.MSG_PREPARE); @@ -116,7 +123,7 @@ public class FleaseAcceptorTest extends TestCase { } - + @Test public void testGetLease() { diff --git a/java/flease/test/org/xtreemfs/foundation/flease/proposer/FleaseProposerTest.java b/java/flease/test/org/xtreemfs/foundation/flease/proposer/FleaseProposerTest.java index bd7e8052e..e0af9e3fa 100644 --- a/java/flease/test/org/xtreemfs/foundation/flease/proposer/FleaseProposerTest.java +++ b/java/flease/test/org/xtreemfs/foundation/flease/proposer/FleaseProposerTest.java @@ -7,7 +7,22 @@ package org.xtreemfs.foundation.flease.proposer; -import junit.framework.TestCase; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + +import java.io.File; +import java.io.IOException; +import java.net.InetSocketAddress; +import java.util.ArrayList; +import java.util.concurrent.atomic.AtomicReference; +import java.util.logging.Level; +import java.util.logging.Logger; + +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; import org.xtreemfs.foundation.TimeSync; import org.xtreemfs.foundation.buffer.ASCIIString; import org.xtreemfs.foundation.flease.Flease; @@ -21,31 +36,23 @@ import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.logging.Logging.Category; import org.xtreemfs.foundation.util.FSUtils; -import java.io.File; -import java.io.IOException; -import java.net.InetSocketAddress; -import java.util.ArrayList; -import java.util.concurrent.atomic.AtomicReference; -import java.util.logging.Level; -import java.util.logging.Logger; - /** * * @author bjko */ -public class FleaseProposerTest extends TestCase { +public class FleaseProposerTest { - private FleaseAcceptor acceptor; - private FleaseProposer proposer; - private final static ASCIIString TESTCELL = new ASCIIString("testcell"); + private FleaseAcceptor acceptor; + private FleaseProposer proposer; + private final static ASCIIString TESTCELL = new ASCIIString("testcell"); - private final FleaseConfig cfg; - private final File testDir; + private static FleaseConfig cfg; + private static File testDir; - private final AtomicReference result; + private static AtomicReference result; - public FleaseProposerTest(String testName) { - super(testName); + @BeforeClass + public static void setUpClass() throws Exception { testDir = new File("/tmp/xtreemfs-test/"); FSUtils.delTree(testDir); testDir.mkdirs(); @@ -57,9 +64,8 @@ public class FleaseProposerTest extends TestCase { cfg = new FleaseConfig(10000, 500, 500, new InetSocketAddress(12345), "localhost:12345",5); } - @Override - protected void setUp() throws Exception { - super.setUp(); + @Before + public void setUp() throws Exception { acceptor = new FleaseAcceptor(new LearnEventListener() { @Override @@ -102,7 +108,7 @@ public class FleaseProposerTest extends TestCase { @Override public void leaseFailed(ASCIIString cellId, FleaseException error) { // System.out.println("failed: "+error); - FleaseProposerTest.fail(error.toString()); + fail(error.toString()); } }, new LearnEventListener() { @@ -113,11 +119,11 @@ public class FleaseProposerTest extends TestCase { },null,null); } - @Override - protected void tearDown() throws Exception { - super.tearDown(); + @After + public void tearDown() throws Exception { } + @Test public void testGetLease() throws Exception { proposer.openCell(TESTCELL, new ArrayList(),false); diff --git a/java/foundation/test/org/xtreemfs/test/foundation/checksums/ChecksumFactoryTest.java b/java/foundation/test/org/xtreemfs/test/foundation/checksums/ChecksumFactoryTest.java index dc1e921f8..4e00b1e88 100644 --- a/java/foundation/test/org/xtreemfs/test/foundation/checksums/ChecksumFactoryTest.java +++ b/java/foundation/test/org/xtreemfs/test/foundation/checksums/ChecksumFactoryTest.java @@ -8,6 +8,8 @@ package org.xtreemfs.test.foundation.checksums; +import static org.junit.Assert.assertEquals; + import java.nio.ByteBuffer; import java.security.NoSuchAlgorithmException; import java.util.LinkedList; @@ -20,10 +22,9 @@ import java.util.concurrent.TimeUnit; import java.util.zip.Adler32; import java.util.zip.Checksum; -import junit.framework.TestCase; - import org.junit.After; import org.junit.Before; +import org.junit.Test; import org.xtreemfs.foundation.checksums.ChecksumAlgorithm; import org.xtreemfs.foundation.checksums.ChecksumFactory; import org.xtreemfs.foundation.checksums.ChecksumProvider; @@ -37,221 +38,224 @@ import org.xtreemfs.foundation.logging.Logging; * * @author clorenz */ -public class ChecksumFactoryTest extends TestCase { - private ChecksumFactory factory; - private ByteBuffer data; +public class ChecksumFactoryTest { + private ChecksumFactory factory; + private ByteBuffer data; - @Before - public void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName() + "." - + getName()); - Logging.start(Logging.LEVEL_ERROR); + @Before + public void setUp() throws Exception { + Logging.start(Logging.LEVEL_ERROR); - this.factory = ChecksumFactory.getInstance(); + this.factory = ChecksumFactory.getInstance(); - ChecksumProvider provider = new JavaChecksumProvider(); - this.factory.addProvider(provider); + ChecksumProvider provider = new JavaChecksumProvider(); + this.factory.addProvider(provider); - this.data = ByteBuffer.wrap(generateRandomBytes(1024 * 128)); - } + this.data = ByteBuffer.wrap(generateRandomBytes(1024 * 128)); + } - @After - public void tearDown() throws Exception { - } + @After + public void tearDown() throws Exception { + } - /** - * generates randomly filled byte-array - * - * @param length - * of the byte-array - */ - public static byte[] generateRandomBytes(int length) { - Random r = new Random(); - byte[] bytes = new byte[length]; + /** + * generates randomly filled byte-array + * + * @param length + * of the byte-array + */ + public static byte[] generateRandomBytes(int length) { + Random r = new Random(); + byte[] bytes = new byte[length]; - r.nextBytes(bytes); - return bytes; - } + r.nextBytes(bytes); + return bytes; + } /** * tests the internal java checksum algorithms + * * @throws Exception */ - public void testJavaChecksumAlgorithm() throws Exception { - // compute checksum with xtreemfs ChecksumFactory - long xtreemfsValue = computeXtreemfsChecksum("Adler32", true); + @Test + public void testJavaChecksumAlgorithm() throws Exception { + // compute checksum with xtreemfs ChecksumFactory + long xtreemfsValue = computeXtreemfsChecksum("Adler32", true); - // compute checksum with java API - Checksum javaAlgorithm = new Adler32(); - javaAlgorithm.update(data.array(), 0, data.array().length); - long javaValue = javaAlgorithm.getValue(); + // compute checksum with java API + Checksum javaAlgorithm = new Adler32(); + javaAlgorithm.update(data.array(), 0, data.array().length); + long javaValue = javaAlgorithm.getValue(); - // System.out.println(javaValue); - // System.out.println(xtreemfsValue); + // System.out.println(javaValue); + // System.out.println(xtreemfsValue); - assertEquals(javaValue, xtreemfsValue); - } + assertEquals(javaValue, xtreemfsValue); + } -// /** -// * tests the internal java message digest algorithms -// * @throws Exception -// */ -// public void testJavaMessageDigestAlgorithm() throws Exception { -// // compute checksum with xtreemfs ChecksumFactory -// String xtreemfsValue = computeXtreemfsChecksum("MD5", true); -// -// // compute checksum with java API -// String javaValue = computeJavaMessageDigest("MD5"); -// -//// System.out.println("java: "+xtreemfsValue); -//// System.out.println("xtreemfs: "+javaValue.toString()); -// -// assertEquals(javaValue.toString(), xtreemfsValue); -// } + // /** + // * tests the internal java message digest algorithms + // * @throws Exception + // */ + // public void testJavaMessageDigestAlgorithm() throws Exception { + // // compute checksum with xtreemfs ChecksumFactory + // String xtreemfsValue = computeXtreemfsChecksum("MD5", true); + // + // // compute checksum with java API + // String javaValue = computeJavaMessageDigest("MD5"); + // + // // System.out.println("java: "+xtreemfsValue); + // // System.out.println("xtreemfs: "+javaValue.toString()); + // + // assertEquals(javaValue.toString(), xtreemfsValue); + // } - /** - * @param algorithm - * @param returnAlgorithm - * @return - * @throws NoSuchAlgorithmException - */ - private long computeXtreemfsChecksum(String algorithm, boolean returnAlgorithm) throws NoSuchAlgorithmException { - // compute checksum with xtreemfs ChecksumFactory - ChecksumAlgorithm xtreemfsAlgorithm = factory.getAlgorithm(algorithm); - xtreemfsAlgorithm.update(data); - long xtreemfsValue = xtreemfsAlgorithm.getValue(); - if(returnAlgorithm) - this.factory.returnAlgorithm(xtreemfsAlgorithm); - return xtreemfsValue; - } + /** + * @param algorithm + * @param returnAlgorithm + * @return + * @throws NoSuchAlgorithmException + */ + private long computeXtreemfsChecksum(String algorithm, boolean returnAlgorithm) throws NoSuchAlgorithmException { + // compute checksum with xtreemfs ChecksumFactory + ChecksumAlgorithm xtreemfsAlgorithm = factory.getAlgorithm(algorithm); + xtreemfsAlgorithm.update(data); + long xtreemfsValue = xtreemfsAlgorithm.getValue(); + if (returnAlgorithm) + this.factory.returnAlgorithm(xtreemfsAlgorithm); + return xtreemfsValue; + } - private long computeJavaCheckSum(String algorithm) - throws NoSuchAlgorithmException { - // compute checksum with java API - Adler32 adler = new Adler32(); + private long computeJavaCheckSum(String algorithm) throws NoSuchAlgorithmException { + // compute checksum with java API + Adler32 adler = new Adler32(); adler.update(data.array()); return adler.getValue(); - } + } - /** - * tests, if the internal buffer of the checksums is working correctly, - * if the checksum is used more than once - * @throws Exception - */ - public void testIfChecksumIsAlwaysTheSame() throws Exception { - ChecksumAlgorithm algorithm = factory.getAlgorithm("Adler32"); - algorithm.update(data); - long oldValue = algorithm.getValue(); + /** + * tests, if the internal buffer of the checksums is working correctly, if the checksum is used more than once + * + * @throws Exception + */ + @Test + public void testIfChecksumIsAlwaysTheSame() throws Exception { + ChecksumAlgorithm algorithm = factory.getAlgorithm("Adler32"); + algorithm.update(data); + long oldValue = algorithm.getValue(); - for(int i=0; i<32; i++){ - algorithm.update(data); - long newValue = algorithm.getValue(); + for (int i = 0; i < 32; i++) { + algorithm.update(data); + long newValue = algorithm.getValue(); - assertEquals(oldValue, newValue); - oldValue = newValue; - } - } + assertEquals(oldValue, newValue); + oldValue = newValue; + } + } - /** - * tests, if the ChecksumFactory delivers only "thread-safe" instances (cache-pool) - * @throws Exception - */ - public void testThreadSafety() throws Exception { - final int THREADS = 8; - this.data = ByteBuffer.wrap(generateRandomBytes(1024 * 1024 * 32)); + /** + * tests, if the ChecksumFactory delivers only "thread-safe" instances (cache-pool) + * + * @throws Exception + */ + @Test + public void testThreadSafety() throws Exception { + final int THREADS = 8; + this.data = ByteBuffer.wrap(generateRandomBytes(1024 * 1024 * 32)); - // compute correct checksum with java API - Long javaValue = computeJavaCheckSum("Adler32"); + // compute correct checksum with java API + Long javaValue = computeJavaCheckSum("Adler32"); - Callable computation = new Callable(){ - @Override - public Long call() { - try { - // compute checksum with xtreemfs ChecksumFactory - long xtreemfsValue = computeXtreemfsChecksum("Adler32", true); - return xtreemfsValue; - } catch (NoSuchAlgorithmException e) { - e.printStackTrace(); - return 0l; - } catch (Exception e) { - e.printStackTrace(); - return 0l; - } - } - }; - LinkedList> results = useMultipleThreads(THREADS, computation); + Callable computation = new Callable() { + @Override + public Long call() { + try { + // compute checksum with xtreemfs ChecksumFactory + long xtreemfsValue = computeXtreemfsChecksum("Adler32", true); + return xtreemfsValue; + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return 0l; + } catch (Exception e) { + e.printStackTrace(); + return 0l; + } + } + }; + LinkedList> results = useMultipleThreads(THREADS, computation); - // compare correct java checksum with xtreemfs checksums - for(Future result : results){ - assertEquals(javaValue, result.get()); - } - } + // compare correct java checksum with xtreemfs checksums + for (Future result : results) { + assertEquals(javaValue, result.get()); + } + } - /** - * tests, if the ChecksumFactory cache-pool works correctly - * @throws Exception - */ - public void testChecksumFactoryCache() throws Exception { - // FIXME: use bigger values for more comprehensive testing, but this will slow down the test - final int THREADS = 8; - final int ROUNDS = 50; - this.data = ByteBuffer.wrap(generateRandomBytes(1024 * 1024)); + /** + * tests, if the ChecksumFactory cache-pool works correctly + * + * @throws Exception + */ + @Test + public void testChecksumFactoryCache() throws Exception { + // FIXME: use bigger values for more comprehensive testing, but this will slow down the test + final int THREADS = 8; + final int ROUNDS = 50; + this.data = ByteBuffer.wrap(generateRandomBytes(1024 * 1024)); - // compute correct checksum with java API - Long javaValue = computeJavaCheckSum("Adler32"); + // compute correct checksum with java API + Long javaValue = computeJavaCheckSum("Adler32"); - Callable> computation = new Callable>(){ - @Override - public LinkedList call() { - try { - LinkedList values = new LinkedList(); - boolean returning = false; - for(int i=0; i>> results = useMultipleThreads(THREADS, computation); + Callable> computation = new Callable>() { + @Override + public LinkedList call() { + try { + LinkedList values = new LinkedList(); + boolean returning = false; + for (int i = 0; i < ROUNDS; i++) { + // compute checksum with xtreemfs ChecksumFactory + long xtreemfsValue = computeXtreemfsChecksum("Adler32", returning); + values.add(xtreemfsValue); + returning = !returning; + } + return values; + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } catch (Exception e) { + e.printStackTrace(); + return null; + } + } + }; + LinkedList>> results = useMultipleThreads(THREADS, computation); - // compare correct java checksum with xtreemfs checksums - for(Future> result : results){ - for(Long value : result.get()){ - assertEquals(javaValue, value); - } - } - } + // compare correct java checksum with xtreemfs checksums + for (Future> result : results) { + for (Long value : result.get()) { + assertEquals(javaValue, value); + } + } + } - /** - * executes a given computation in a couple of threads - * and returns the results of the computations - * - * @param THREADS - * @param computation - * @return a list of futures, which contain the results of the computations - * @throws InterruptedException - */ - private LinkedList> useMultipleThreads(final int THREADS, Callable computation) - throws InterruptedException { - LinkedList> results = new LinkedList>(); - // compute xtreemfs checksums with multiple threads - ExecutorService executor = Executors.newFixedThreadPool(THREADS); - for(int i=0; i tmp = executor.submit(computation); - results.add(tmp); - } - executor.shutdown(); - executor.awaitTermination(60,TimeUnit.SECONDS); - return results; - } + /** + * executes a given computation in a couple of threads and returns the results of the computations + * + * @param THREADS + * @param computation + * @return a list of futures, which contain the results of the computations + * @throws InterruptedException + */ + private LinkedList> useMultipleThreads(final int THREADS, Callable computation) + throws InterruptedException { + LinkedList> results = new LinkedList>(); + // compute xtreemfs checksums with multiple threads + ExecutorService executor = Executors.newFixedThreadPool(THREADS); + for (int i = 0; i < THREADS; i++) { + Future tmp = executor.submit(computation); + results.add(tmp); + } + executor.shutdown(); + executor.awaitTermination(60, TimeUnit.SECONDS); + return results; + } } diff --git a/java/foundation/test/org/xtreemfs/test/foundation/checksums/StringChecksumAlgorithmTest.java b/java/foundation/test/org/xtreemfs/test/foundation/checksums/StringChecksumAlgorithmTest.java index 8dab3f228..2c4b22223 100644 --- a/java/foundation/test/org/xtreemfs/test/foundation/checksums/StringChecksumAlgorithmTest.java +++ b/java/foundation/test/org/xtreemfs/test/foundation/checksums/StringChecksumAlgorithmTest.java @@ -8,12 +8,13 @@ package org.xtreemfs.test.foundation.checksums; -import java.nio.ByteBuffer; +import static org.junit.Assert.assertEquals; -import junit.framework.TestCase; +import java.nio.ByteBuffer; import org.junit.After; import org.junit.Before; +import org.junit.Test; import org.xtreemfs.foundation.checksums.StringChecksumAlgorithm; import org.xtreemfs.foundation.checksums.algorithms.SDBM; import org.xtreemfs.foundation.logging.Logging; @@ -25,47 +26,46 @@ import org.xtreemfs.foundation.logging.Logging; * * @author clorenz */ -public class StringChecksumAlgorithmTest extends TestCase { - private ByteBuffer bufferData; - private String stringData; +public class StringChecksumAlgorithmTest { + private ByteBuffer bufferData; + private String stringData; - @Before - public void setUp() throws Exception { - System.out.println("TEST: " + getClass().getSimpleName() + "." - + getName()); - Logging.start(Logging.LEVEL_ERROR); + @Before + public void setUp() throws Exception { + Logging.start(Logging.LEVEL_ERROR); - this.stringData = ""; - for(int i=0; i<1024; i++){ - this.stringData += "Test, "; - } - this.bufferData = ByteBuffer.wrap(stringData.getBytes()); - } + this.stringData = ""; + for (int i = 0; i < 1024; i++) { + this.stringData += "Test, "; + } + this.bufferData = ByteBuffer.wrap(stringData.getBytes()); + } - @After - public void tearDown() throws Exception { - } + @After + public void tearDown() throws Exception { + } - /** - * tests, if the SDBM algorithm generates the same checksum with - * a String-input and ByteBuffer-input - * @throws Exception - */ - public void testSDBMStringBufferEquality() throws Exception { - // compute checksum with xtreemfs ChecksumFactory - StringChecksumAlgorithm algorithm = new SDBM(); + /** + * tests, if the SDBM algorithm generates the same checksum with a String-input and ByteBuffer-input + * + * @throws Exception + */ + @Test + public void testSDBMStringBufferEquality() throws Exception { + // compute checksum with xtreemfs ChecksumFactory + StringChecksumAlgorithm algorithm = new SDBM(); - // string - algorithm.digest(stringData); - long stringValue = algorithm.getValue(); + // string + algorithm.digest(stringData); + long stringValue = algorithm.getValue(); - // buffer - algorithm.update(bufferData); - long bufferValue = algorithm.getValue(); + // buffer + algorithm.update(bufferData); + long bufferValue = algorithm.getValue(); -// System.out.println(stringValue); -// System.out.println(bufferValue); + // System.out.println(stringValue); + // System.out.println(bufferValue); - assertEquals(stringValue, bufferValue); - } + assertEquals(stringValue, bufferValue); + } } diff --git a/java/foundation/test/org/xtreemfs/test/foundation/util/OutputUtilsTest.java b/java/foundation/test/org/xtreemfs/test/foundation/util/OutputUtilsTest.java index ca49acde3..05985ef87 100644 --- a/java/foundation/test/org/xtreemfs/test/foundation/util/OutputUtilsTest.java +++ b/java/foundation/test/org/xtreemfs/test/foundation/util/OutputUtilsTest.java @@ -9,22 +9,13 @@ package org.xtreemfs.test.foundation.util; -import junit.framework.TestCase; -import junit.textui.TestRunner; +import static org.junit.Assert.assertEquals; import org.junit.Test; import org.xtreemfs.foundation.util.OutputUtils; -public class OutputUtilsTest extends TestCase { - - @Override - protected void setUp() throws Exception { - } - - @Override - protected void tearDown() throws Exception { - } - +public class OutputUtilsTest { + @Test public void testLongHexEncoding() throws Exception { @@ -71,8 +62,4 @@ public class OutputUtilsTest extends TestCase { assertEquals(checksum,tmp2); } - public static void main(String[] args) { - TestRunner.run(OutputUtilsTest.class); - } - } -- GitLab From c11a8eadfbaa9d5cfd97f0cb09610d3921bddb2a Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Mon, 8 Sep 2014 15:58:03 +0200 Subject: [PATCH 105/192] tests: Standardize test initialization method names. --- .../common/clients/ReplicatedClientTest.java | 10 -------- .../internal/RAID0ObjectMapperTest.java | 23 ------------------- .../common/libxtreemfs/ClientTest.java | 4 ++-- .../libxtreemfs/FileSizeUpdateThreadTest.java | 4 ++-- .../libxtreemfs/ReadOnlyReplicationTest.java | 2 +- .../common/libxtreemfs/VolumeTest.java | 2 +- .../benchmark/ControllerIntegrationTest.java | 4 ++-- .../common/monitoring/DIRMonitoringTest.java | 2 +- .../monitoring/GeneralMonitoringTest.java | 2 +- .../common/monitoring/MRCMonitoringTest.java | 2 +- .../common/monitoring/OSDMonitoringTest.java | 2 +- .../test/common/striping/LocationsTest.java | 2 +- .../test/common/striping/RAID0Test.java | 2 +- .../test/mrc/BufferBackedMetadataTest.java | 2 +- .../org/xtreemfs/test/mrc/OSDPolicyTest.java | 4 ++-- .../test/mrc/SetReplicaUpdatePolicyTest.java | 2 +- .../xtreemfs/test/osd/AdvisoryLocksTest.java | 2 +- .../org/xtreemfs/test/osd/CleanupTest.java | 4 ++-- .../xtreemfs/test/osd/FastDeleteOpenFile.java | 2 +- .../test/osd/OSDDataIntegrityTest.java | 2 +- .../org/xtreemfs/test/osd/OSDDrainTest.java | 2 +- .../xtreemfs/test/osd/OSDTruncateTest.java | 2 +- .../test/osd/SimpleVivaldiStageTest.java | 4 ++-- .../xtreemfs/test/osd/StorageLayoutTest.java | 2 +- .../org/xtreemfs/test/osd/StripingTest.java | 2 +- .../xtreemfs/test/osd/StripingTestCOW.java | 2 +- .../test/osd/VersionManagementTest.java | 2 +- .../test/osd/replication/ReplicationTest.java | 2 +- .../replication/ServiceAvailabilityTest.java | 2 +- .../replication/TransferStrategiesTest.java | 2 +- .../osd/rwre/RWQuorumReplicationTest.java | 2 +- .../osd/rwre/RWReplicationFailureTest.java | 2 +- .../test/osd/rwre/RWReplicationTest.java | 2 +- .../test/org/xtreemfs/utils/ScrubberTest.java | 4 ++-- 34 files changed, 39 insertions(+), 72 deletions(-) diff --git a/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java b/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java index 643761752..6b4dfb663 100644 --- a/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java +++ b/java/servers/test/org/xtreemfs/common/clients/ReplicatedClientTest.java @@ -13,9 +13,7 @@ import java.net.InetSocketAddress; import java.util.LinkedList; import org.junit.After; -import org.junit.AfterClass; import org.junit.Before; -import org.junit.BeforeClass; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TestRule; @@ -48,14 +46,6 @@ public class ReplicatedClientTest { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } - @BeforeClass - public static void setUpClass() throws Exception { - } - - @AfterClass - public static void tearDownClass() throws Exception { - } - @Before public void setUp() throws Exception { testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_CLIENT, diff --git a/java/servers/test/org/xtreemfs/common/clients/internal/RAID0ObjectMapperTest.java b/java/servers/test/org/xtreemfs/common/clients/internal/RAID0ObjectMapperTest.java index 5798615b2..e5b3092b7 100644 --- a/java/servers/test/org/xtreemfs/common/clients/internal/RAID0ObjectMapperTest.java +++ b/java/servers/test/org/xtreemfs/common/clients/internal/RAID0ObjectMapperTest.java @@ -12,10 +12,6 @@ import static org.junit.Assert.assertEquals; import java.util.ArrayList; import java.util.List; -import org.junit.After; -import org.junit.AfterClass; -import org.junit.Before; -import org.junit.BeforeClass; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TestRule; @@ -34,25 +30,6 @@ public class RAID0ObjectMapperTest { @Rule public final TestRule testLog = TestHelper.testLog; - public RAID0ObjectMapperTest() { - } - - @BeforeClass - public static void setUpClass() throws Exception { - } - - @AfterClass - public static void tearDownClass() throws Exception { - } - - @Before - public void setUp() { - } - - @After - public void tearDown() { - } - /** * Test of readRequest method, of class RAID0ObjectMapper. */ diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/ClientTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/ClientTest.java index 6dab18bcc..f026d00c9 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/ClientTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/ClientTest.java @@ -68,7 +68,7 @@ public class ClientTest { private static MRCRequestDispatcher mrc2; @BeforeClass - public static void setUp() throws Exception { + public static void initializeTest() throws Exception { FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); @@ -101,7 +101,7 @@ public class ClientTest { } @AfterClass - public static void tearDown() throws Exception { + public static void shutdownTest() throws Exception { for (int i = 0; i < osds.length; i++) { if (osds[i] != null) { diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/FileSizeUpdateThreadTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/FileSizeUpdateThreadTest.java index 0eee8f639..c73c090cb 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/FileSizeUpdateThreadTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/FileSizeUpdateThreadTest.java @@ -47,7 +47,7 @@ public class FileSizeUpdateThreadTest { private static MRCServiceClient mrcClient; @BeforeClass - public static void setUp() throws Exception { + public static void initializeTest() throws Exception { FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); @@ -69,7 +69,7 @@ public class FileSizeUpdateThreadTest { } @AfterClass - public static void tearDown() throws Exception { + public static void shutdownTest() throws Exception { testEnv.shutdown(); dir.shutdown(); diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/ReadOnlyReplicationTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/ReadOnlyReplicationTest.java index bb73d5cff..22fccbe05 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/ReadOnlyReplicationTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/ReadOnlyReplicationTest.java @@ -80,7 +80,7 @@ public class ReadOnlyReplicationTest { } @AfterClass - public static void tearDown() throws Exception { + public static void shutdownTest() throws Exception { testEnv.shutdown(); client.shutdown(); diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java index f0d885bb5..a6bb7074d 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java @@ -138,7 +138,7 @@ public class VolumeTest { } @AfterClass - public static void tearDown() throws Exception { + public static void shutdownTest() throws Exception { for (int i = 0; i < osds.length; i++) { if (osds[i] != null) { osds[i].shutdown(); diff --git a/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java b/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java index 7ad2142ce..2ed4e8872 100644 --- a/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java +++ b/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java @@ -69,7 +69,7 @@ public class ControllerIntegrationTest { private Client client; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); Logging.start(Logging.LEVEL_WARN, Logging.Category.tool); @@ -115,7 +115,7 @@ public class ControllerIntegrationTest { } @AfterClass - public static void tearDownClass() throws Exception { + public static void shutdownTest() throws Exception { for (int i = 0; i < osds.length; i++) { if (osds[i] != null) { diff --git a/java/servers/test/org/xtreemfs/test/common/monitoring/DIRMonitoringTest.java b/java/servers/test/org/xtreemfs/test/common/monitoring/DIRMonitoringTest.java index 2d782d034..04898905b 100644 --- a/java/servers/test/org/xtreemfs/test/common/monitoring/DIRMonitoringTest.java +++ b/java/servers/test/org/xtreemfs/test/common/monitoring/DIRMonitoringTest.java @@ -54,7 +54,7 @@ public class DIRMonitoringTest { SnmpSession session; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } diff --git a/java/servers/test/org/xtreemfs/test/common/monitoring/GeneralMonitoringTest.java b/java/servers/test/org/xtreemfs/test/common/monitoring/GeneralMonitoringTest.java index ddbdf914b..7bf9083d5 100644 --- a/java/servers/test/org/xtreemfs/test/common/monitoring/GeneralMonitoringTest.java +++ b/java/servers/test/org/xtreemfs/test/common/monitoring/GeneralMonitoringTest.java @@ -58,7 +58,7 @@ public class GeneralMonitoringTest { private SnmpSession session; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } diff --git a/java/servers/test/org/xtreemfs/test/common/monitoring/MRCMonitoringTest.java b/java/servers/test/org/xtreemfs/test/common/monitoring/MRCMonitoringTest.java index f241f28ce..8edc1f86d 100644 --- a/java/servers/test/org/xtreemfs/test/common/monitoring/MRCMonitoringTest.java +++ b/java/servers/test/org/xtreemfs/test/common/monitoring/MRCMonitoringTest.java @@ -59,7 +59,7 @@ public class MRCMonitoringTest { private SnmpSession session; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } diff --git a/java/servers/test/org/xtreemfs/test/common/monitoring/OSDMonitoringTest.java b/java/servers/test/org/xtreemfs/test/common/monitoring/OSDMonitoringTest.java index 2fdc0045d..5977e4549 100644 --- a/java/servers/test/org/xtreemfs/test/common/monitoring/OSDMonitoringTest.java +++ b/java/servers/test/org/xtreemfs/test/common/monitoring/OSDMonitoringTest.java @@ -62,7 +62,7 @@ public class OSDMonitoringTest { private SnmpSession session; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } diff --git a/java/servers/test/org/xtreemfs/test/common/striping/LocationsTest.java b/java/servers/test/org/xtreemfs/test/common/striping/LocationsTest.java index 23b4d4014..b3573f6e7 100644 --- a/java/servers/test/org/xtreemfs/test/common/striping/LocationsTest.java +++ b/java/servers/test/org/xtreemfs/test/common/striping/LocationsTest.java @@ -45,7 +45,7 @@ public class LocationsTest { static List osds = new ArrayList(); @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); osds.add(new ServiceUUID("http://127.0.0.1:65535")); diff --git a/java/servers/test/org/xtreemfs/test/common/striping/RAID0Test.java b/java/servers/test/org/xtreemfs/test/common/striping/RAID0Test.java index b00be1e34..4d33ad52a 100644 --- a/java/servers/test/org/xtreemfs/test/common/striping/RAID0Test.java +++ b/java/servers/test/org/xtreemfs/test/common/striping/RAID0Test.java @@ -39,7 +39,7 @@ public class RAID0Test { private static final long KILOBYTE = 1024L; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); } diff --git a/java/servers/test/org/xtreemfs/test/mrc/BufferBackedMetadataTest.java b/java/servers/test/org/xtreemfs/test/mrc/BufferBackedMetadataTest.java index 021cae337..314fad585 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/BufferBackedMetadataTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/BufferBackedMetadataTest.java @@ -38,7 +38,7 @@ public class BufferBackedMetadataTest { public final TestRule testLog = TestHelper.testLog; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); } diff --git a/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java b/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java index e370eaa7e..309ae2900 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/OSDPolicyTest.java @@ -64,12 +64,12 @@ public class OSDPolicyTest { private TestEnvironment testEnv; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); } @AfterClass - public static void tearDownClass() throws Exception { + public static void shutdownTest() throws Exception { } @Before diff --git a/java/servers/test/org/xtreemfs/test/mrc/SetReplicaUpdatePolicyTest.java b/java/servers/test/org/xtreemfs/test/mrc/SetReplicaUpdatePolicyTest.java index 259697427..30558b4fd 100644 --- a/java/servers/test/org/xtreemfs/test/mrc/SetReplicaUpdatePolicyTest.java +++ b/java/servers/test/org/xtreemfs/test/mrc/SetReplicaUpdatePolicyTest.java @@ -54,7 +54,7 @@ public class SetReplicaUpdatePolicyTest { private TestEnvironment testEnv; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); } diff --git a/java/servers/test/org/xtreemfs/test/osd/AdvisoryLocksTest.java b/java/servers/test/org/xtreemfs/test/osd/AdvisoryLocksTest.java index 606fc8788..eb2f1a0fc 100644 --- a/java/servers/test/org/xtreemfs/test/osd/AdvisoryLocksTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/AdvisoryLocksTest.java @@ -61,7 +61,7 @@ public class AdvisoryLocksTest { private TestEnvironment testEnv; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } diff --git a/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java b/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java index ac033748b..3193c49ab 100644 --- a/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/CleanupTest.java @@ -58,14 +58,14 @@ public class CleanupTest { private static Auth passwd; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); passwd = Auth.newBuilder().setAuthType(AuthType.AUTH_PASSWORD) .setAuthPasswd(AuthPassword.newBuilder().setPassword("")).build(); } @AfterClass - public static void tearDownClass() throws Exception { + public static void shutdownTest() throws Exception { } @Before diff --git a/java/servers/test/org/xtreemfs/test/osd/FastDeleteOpenFile.java b/java/servers/test/org/xtreemfs/test/osd/FastDeleteOpenFile.java index 9f8ecb878..8b1c56d2b 100644 --- a/java/servers/test/org/xtreemfs/test/osd/FastDeleteOpenFile.java +++ b/java/servers/test/org/xtreemfs/test/osd/FastDeleteOpenFile.java @@ -78,7 +78,7 @@ public class FastDeleteOpenFile { } @AfterClass - public static void tearDown() throws Exception { + public static void shutdownTest() throws Exception { testEnv.shutdown(); client.shutdown(); diff --git a/java/servers/test/org/xtreemfs/test/osd/OSDDataIntegrityTest.java b/java/servers/test/org/xtreemfs/test/osd/OSDDataIntegrityTest.java index ae0369007..604807500 100644 --- a/java/servers/test/org/xtreemfs/test/osd/OSDDataIntegrityTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/OSDDataIntegrityTest.java @@ -59,7 +59,7 @@ public class OSDDataIntegrityTest { private TestEnvironment testEnv; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); osdConfig = SetupUtils.createOSD1Config(); diff --git a/java/servers/test/org/xtreemfs/test/osd/OSDDrainTest.java b/java/servers/test/org/xtreemfs/test/osd/OSDDrainTest.java index 7027294e1..08cf96b78 100644 --- a/java/servers/test/org/xtreemfs/test/osd/OSDDrainTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/OSDDrainTest.java @@ -91,7 +91,7 @@ public class OSDDrainTest { private MRCRequestDispatcher mrc2; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); osdConfig1 = SetupUtils.createOSD1Config(); diff --git a/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java b/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java index a468c5e73..13e210995 100644 --- a/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/OSDTruncateTest.java @@ -60,7 +60,7 @@ public class OSDTruncateTest { private TestEnvironment testEnv; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); diff --git a/java/servers/test/org/xtreemfs/test/osd/SimpleVivaldiStageTest.java b/java/servers/test/org/xtreemfs/test/osd/SimpleVivaldiStageTest.java index 8e54f9dda..121470fc5 100644 --- a/java/servers/test/org/xtreemfs/test/osd/SimpleVivaldiStageTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/SimpleVivaldiStageTest.java @@ -45,12 +45,12 @@ public class SimpleVivaldiStageTest { TestEnvironment env; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } @AfterClass - public static void tearDownClass() throws Exception { + public static void shutdownTest() throws Exception { } @Before diff --git a/java/servers/test/org/xtreemfs/test/osd/StorageLayoutTest.java b/java/servers/test/org/xtreemfs/test/osd/StorageLayoutTest.java index 582114c8d..5f99d2fb6 100644 --- a/java/servers/test/org/xtreemfs/test/osd/StorageLayoutTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/StorageLayoutTest.java @@ -53,7 +53,7 @@ public class StorageLayoutTest { static OSDConfig config; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL); config = SetupUtils.createOSD1Config(); } diff --git a/java/servers/test/org/xtreemfs/test/osd/StripingTest.java b/java/servers/test/org/xtreemfs/test/osd/StripingTest.java index 999aca808..637b77026 100644 --- a/java/servers/test/org/xtreemfs/test/osd/StripingTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/StripingTest.java @@ -144,7 +144,7 @@ public class StripingTest { private XLocSet xloc; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); osdCfg1 = SetupUtils.createOSD1Config(); diff --git a/java/servers/test/org/xtreemfs/test/osd/StripingTestCOW.java b/java/servers/test/org/xtreemfs/test/osd/StripingTestCOW.java index dfb65919f..470ed30ea 100644 --- a/java/servers/test/org/xtreemfs/test/osd/StripingTestCOW.java +++ b/java/servers/test/org/xtreemfs/test/osd/StripingTestCOW.java @@ -138,7 +138,7 @@ public class StripingTestCOW { private XLocSet xloc; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); osdCfg1 = SetupUtils.createOSD1Config(); diff --git a/java/servers/test/org/xtreemfs/test/osd/VersionManagementTest.java b/java/servers/test/org/xtreemfs/test/osd/VersionManagementTest.java index c28435639..2c1088a10 100644 --- a/java/servers/test/org/xtreemfs/test/osd/VersionManagementTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/VersionManagementTest.java @@ -63,7 +63,7 @@ public class VersionManagementTest { private XLocSet xloc; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); osdCfg = SetupUtils.createOSD1Config(); diff --git a/java/servers/test/org/xtreemfs/test/osd/replication/ReplicationTest.java b/java/servers/test/org/xtreemfs/test/osd/replication/ReplicationTest.java index e8ec08852..6da37a2a6 100755 --- a/java/servers/test/org/xtreemfs/test/osd/replication/ReplicationTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/replication/ReplicationTest.java @@ -78,7 +78,7 @@ public class ReplicationTest { private TestEnvironment testEnv; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } diff --git a/java/servers/test/org/xtreemfs/test/osd/replication/ServiceAvailabilityTest.java b/java/servers/test/org/xtreemfs/test/osd/replication/ServiceAvailabilityTest.java index 8a5e92eb4..338df2b6a 100755 --- a/java/servers/test/org/xtreemfs/test/osd/replication/ServiceAvailabilityTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/replication/ServiceAvailabilityTest.java @@ -42,7 +42,7 @@ public class ServiceAvailabilityTest { ServiceAvailability serviceAvailability; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } diff --git a/java/servers/test/org/xtreemfs/test/osd/replication/TransferStrategiesTest.java b/java/servers/test/org/xtreemfs/test/osd/replication/TransferStrategiesTest.java index 57034feec..d577437f1 100644 --- a/java/servers/test/org/xtreemfs/test/osd/replication/TransferStrategiesTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/replication/TransferStrategiesTest.java @@ -65,7 +65,7 @@ public class TransferStrategiesTest { private final static long filesize = 1024 * 1024 * 128; // byte @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); xLoc = createLocations(4, 3); diff --git a/java/servers/test/org/xtreemfs/test/osd/rwre/RWQuorumReplicationTest.java b/java/servers/test/org/xtreemfs/test/osd/rwre/RWQuorumReplicationTest.java index 417ec71fe..b3b821be2 100644 --- a/java/servers/test/org/xtreemfs/test/osd/rwre/RWQuorumReplicationTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/rwre/RWQuorumReplicationTest.java @@ -61,7 +61,7 @@ public class RWQuorumReplicationTest { private static final String fileId = "ABCDEF:1"; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } diff --git a/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationFailureTest.java b/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationFailureTest.java index 92896a9d7..03f975882 100644 --- a/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationFailureTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationFailureTest.java @@ -57,7 +57,7 @@ public class RWReplicationFailureTest { private static final String fileId = "ABCDEF:1"; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } diff --git a/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationTest.java b/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationTest.java index 65d87ff69..314579e81 100644 --- a/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/rwre/RWReplicationTest.java @@ -71,7 +71,7 @@ public class RWReplicationTest { private static final String fileId = "ABCDEF:1"; @BeforeClass - public static void setUpClass() throws Exception { + public static void initializeTest() throws Exception { Logging.start(SetupUtils.DEBUG_LEVEL, SetupUtils.DEBUG_CATEGORIES); } diff --git a/java/servers/test/org/xtreemfs/utils/ScrubberTest.java b/java/servers/test/org/xtreemfs/utils/ScrubberTest.java index 0bdd8ed68..ba38255c3 100644 --- a/java/servers/test/org/xtreemfs/utils/ScrubberTest.java +++ b/java/servers/test/org/xtreemfs/utils/ScrubberTest.java @@ -67,7 +67,7 @@ public class ScrubberTest { private static final UserCredentials userCredentials = xtfs_scrub.credentials; @BeforeClass - public static void setUp() throws Exception { + public static void initializeTest() throws Exception { Logging.start(Logging.LEVEL_WARN); accessMode = 0777; // rwxrwxrwx @@ -106,7 +106,7 @@ public class ScrubberTest { } @AfterClass - public static void tearDown() throws Exception { + public static void shutdownTest() throws Exception { client.shutdown(); testEnv.shutdown(); } -- GitLab From 79a4b30971b0638c9b3d242b67dbd3801ddeecc3 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Mon, 8 Sep 2014 18:09:12 +0200 Subject: [PATCH 106/192] server: fixed javadoc --- .../src/org/xtreemfs/common/auth/AuthenticationProvider.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/servers/src/org/xtreemfs/common/auth/AuthenticationProvider.java b/java/servers/src/org/xtreemfs/common/auth/AuthenticationProvider.java index 57f6f6fb8..01eec973a 100644 --- a/java/servers/src/org/xtreemfs/common/auth/AuthenticationProvider.java +++ b/java/servers/src/org/xtreemfs/common/auth/AuthenticationProvider.java @@ -31,8 +31,8 @@ public interface AuthenticationProvider { /** * Get the effective credentials for an operation. * - * @param authHeader - * content of the Authentication header sent by the client + * @param ctx + * user credentials sent by the client * @param channel * the channel used, can be used to store attachments and to get * certificates -- GitLab From 21c121568cf519efc1102bf9321e1dc8f61644a0 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Mon, 8 Sep 2014 18:23:00 +0200 Subject: [PATCH 107/192] server: fixed javadoc in libxtreemfs interfaces --- .../common/libxtreemfs/AdminClient.java | 4 +- .../common/libxtreemfs/AdminFileHandle.java | 5 +- .../common/libxtreemfs/AdminVolume.java | 8 +-- .../common/libxtreemfs/AsyncWriteBuffer.java | 2 +- .../xtreemfs/common/libxtreemfs/Client.java | 29 +++++++---- .../common/libxtreemfs/ClientFactory.java | 4 +- .../common/libxtreemfs/UUIDResolver.java | 2 +- .../xtreemfs/common/libxtreemfs/Volume.java | 51 ++++--------------- 8 files changed, 40 insertions(+), 65 deletions(-) diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminClient.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminClient.java index 5a1c8978d..2ad5dcecd 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminClient.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminClient.java @@ -25,8 +25,8 @@ public interface AdminClient extends Client { * Open an admin volume and use the returned class to access it. * * @throws AddressToUUIDNotFoundException - * @throws UnknownAddressSchemeException * @throws VolumeNotFoundException + * @thorws IOException * @throws {@link IOException} */ public AdminVolume openVolume(String volumeName, SSLOptions sslOptions, Options options) @@ -110,7 +110,7 @@ public interface AdminClient extends Client { /** * Returns a ServiceSet with all services of the given type. * - * @param ServiceType + * @param serviceType * * @return ServiceSet * @throws XtreemFSException diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminFileHandle.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminFileHandle.java index 50626b874..a9d51986d 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminFileHandle.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminFileHandle.java @@ -47,7 +47,7 @@ public interface AdminFileHandle extends FileHandle { /** * Returns the replica update policy of the file as a String. Constants for replica update policies are - * defined in {@link in org.xtreemfs.common.ReplicaUpdatePolicies}. + * defined in {@link org.xtreemfs.common.ReplicaUpdatePolicies}. * */ public String getReplicaUpdatePolicy(); @@ -87,7 +87,8 @@ public interface AdminFileHandle extends FileHandle { * @param objectNo * Object which will be checked. * - * @throws InvalidChecksumException. + * @throws InvalidChecksumException + * @throws IOException */ public int checkObjectAndGetSize(int replicaIndex, long objectNo) throws IOException, InvalidChecksumException; diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminVolume.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminVolume.java index 46706e904..42dc6bf3c 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminVolume.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/AdminVolume.java @@ -32,7 +32,7 @@ public interface AdminVolume extends Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException + * @throws AddressToUUIDNotFoundException * */ public AdminFileHandle openFile(UserCredentials userCredentials, String path, int flags) @@ -45,7 +45,7 @@ public interface AdminVolume extends Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException + * @throws AddressToUUIDNotFoundException */ public AdminFileHandle openFile(UserCredentials userCredentials, String path, int flags, int mode) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -69,13 +69,13 @@ public interface AdminVolume extends Volume { * Name and Groups of the user. * @param path * Path to the file. - * @param truncateOnlyAtMRC + * @param unlinkOnlyAtMrc * true if the file should be unlinked only at the MRC, otherwise false. * * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException + * @throws AddressToUUIDNotFoundException */ public abstract void unlink(UserCredentials userCredentials, String path, boolean unlinkOnlyAtMrc) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/AsyncWriteBuffer.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/AsyncWriteBuffer.java index 8e9fc2a1e..44be0ab84 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/AsyncWriteBuffer.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/AsyncWriteBuffer.java @@ -102,7 +102,7 @@ public class AsyncWriteBuffer { } /** - * @param osdUuid2 + * @param osdUuid */ protected void setOsdUuid(String osdUuid) { this.osdUuid = osdUuid; diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/Client.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/Client.java index 2d2d58fe7..479143887 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/Client.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/Client.java @@ -48,7 +48,6 @@ public interface Client { * the object. * * @throws AddressToUUIDNotFoundException - * @throws UnknownAddressSchemeException * @throws VolumeNotFoundException * @throws {@link IOException} */ @@ -80,8 +79,8 @@ public interface Client { * striping size = 128k and width = 1 (i.e. no striping), mode = 777 and owner username and groupname * retrieved from the user_credentials. * - * @param mrcAddress - * String of the form "hostname:port". + * @param mrcAddresses + * List of Strings of the form "hostname:port". * @param auth * Authentication data, e.g. of type AUTH_PASSWORD. * @param userCredentials @@ -91,6 +90,7 @@ public interface Client { * * @throws IOException * @throws PosixErrorException + * @throws AddressToUUIDNotFoundException */ public void createVolume(List mrcAddresses, Auth auth, UserCredentials userCredentials, String volumeName) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -110,7 +110,7 @@ public interface Client { * Name of the owner user. * @param ownerGroupname * Name of the owner group. - * @param accessPolicy_type + * @param accessPolicyType * Access policy type (Null, Posix, Volume, ...). * @param defaultStripingPolicyType * Only RAID0 so far. @@ -121,6 +121,10 @@ public interface Client { * @param volumeAttributes * Reference to a list of key-value pairs of volume attributes which will bet set at creation * time of the volume. + * + * @throws AddressToUUIDNotFoundException + * @throws PosixErrorException + * @throws IOException */ public void createVolume(Auth auth, UserCredentials userCredentials, String volumeName, int mode, String ownerUsername, String ownerGroupname, AccessControlPolicyType accessPolicyType, @@ -145,7 +149,7 @@ public interface Client { * Name of the owner user. * @param ownerGroupname * Name of the owner group. - * @param accessPolicy_type + * @param accessPolicyType * Access policy type (Null, Posix, Volume, ...). * @param defaultStripingPolicyType * Only RAID0 so far. @@ -159,6 +163,7 @@ public interface Client { * * @throws IOException * @throws PosixErrorException + * @throws AddressToUUIDNotFoundException */ public void createVolume(String mrcAddress, Auth auth, UserCredentials userCredentials, String volumeName, int mode, String ownerUsername, String ownerGroupname, @@ -169,8 +174,8 @@ public interface Client { /** * Creates a volume on the MRC at mrc_address. * - * @param mrcAddress - * String of the form "hostname:port". + * @param mrcAddresses + * List of Strings of the form "hostname:port". * @param auth * Authentication data, e.g. of type AUTH_PASSWORD. * @param userCredentials @@ -183,7 +188,7 @@ public interface Client { * Name of the owner user. * @param ownerGroupname * Name of the owner group. - * @param accessPolicy_type + * @param accessPolicyType * Access policy type (Null, Posix, Volume, ...). * @param defaultStripingPolicyType * Only RAID0 so far. @@ -197,6 +202,7 @@ public interface Client { * * @throws IOException * @throws PosixErrorException + * @throws AddressToUUIDNotFoundException */ public void createVolume(List mrcAddresses, Auth auth, UserCredentials userCredentials, String volumeName, int mode, String ownerUsername, String ownerGroupname, @@ -225,8 +231,8 @@ public interface Client { /** * Deletes the volume "volume_name" at the MRC "mrc_address". * - * @param mrcAddress - * String of the form "hostname:port". + * @param mrcAddresses + * List of Strings of the form "hostname:port". * @param auth * Authentication data, e.g. of type AUTH_PASSWORD. * @param userCredentials @@ -236,6 +242,7 @@ public interface Client { * * @throws IOException * @throws PosixErrorException + * @throws AddressToUUIDNotFoundException */ public void deleteVolume(List mrcAddresses, Auth auth, UserCredentials userCredentials, String volumeName) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -294,7 +301,7 @@ public interface Client { /** * Returns the available volumes on a MRC. * - * @param List + * @param mrcAddresses * List which contains MRC addresses of the form "hostname:port". * * @throws AddressToUUIDNotFoundException diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/ClientFactory.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/ClientFactory.java index 2309f55a3..47205f46e 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/ClientFactory.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/ClientFactory.java @@ -47,9 +47,9 @@ public class ClientFactory { * @param options * Has to contain loglevel string and logfile path. */ - public static Client createClient(String[] dirServiceAddresseses, UserCredentials userCredentials, + public static Client createClient(String[] dirServiceAddresses, UserCredentials userCredentials, SSLOptions sslOptions, Options options) { - return new ClientImplementation(dirServiceAddresseses, userCredentials, sslOptions, options); + return new ClientImplementation(dirServiceAddresses, userCredentials, sslOptions, options); } /** diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/UUIDResolver.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/UUIDResolver.java index 8679f6212..a15099ddd 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/UUIDResolver.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/UUIDResolver.java @@ -27,7 +27,7 @@ public interface UUIDResolver { /** * Resolves the UUID for a given volume name. * - * @param String + * @param volumeName * Name of the volume. * @return String * UUID of the MRC the volume 'volumeName' is registered. diff --git a/java/servers/src/org/xtreemfs/common/libxtreemfs/Volume.java b/java/servers/src/org/xtreemfs/common/libxtreemfs/Volume.java index 85b9ada63..8a67bd318 100644 --- a/java/servers/src/org/xtreemfs/common/libxtreemfs/Volume.java +++ b/java/servers/src/org/xtreemfs/common/libxtreemfs/Volume.java @@ -61,9 +61,7 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws IOException * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ - // TODO: Create other Exceptions. public StatVFS statFS(UserCredentials userCredentials) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -80,9 +78,7 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws IOException * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ - // TODO: Create other Exceptions. public String readLink(UserCredentials userCredentials, String path) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -100,9 +96,7 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws IOException * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ - // TODO: Create other Exceptions. public void symlink(UserCredentials userCredentials, String targetPath, String linkPath) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -119,7 +113,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws IOException * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public void link(UserCredentials userCredentials, String targetPath, String linkPath) throws IOException, PosixErrorException, PosixErrorException, AddressToUUIDNotFoundException; @@ -140,9 +133,7 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws IOException * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ - // TODO: Create other Exceptions. public void access(UserCredentials userCredentials, String path, int flags) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -162,12 +153,10 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException * * @remark Ownership is NOT transferred to the caller. Instead FileHandle.close() has to be called to * destroy the object. */ - // TODO: Create other Exceptions. public FileHandle openFile(UserCredentials userCredentials, String path, int flags) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -181,7 +170,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public FileHandle openFile(UserCredentials userCredentials, String path, int flags, int mode) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -199,7 +187,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public void truncate(UserCredentials userCredentials, String path, int newFileSize) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -216,7 +203,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public Stat getAttr(UserCredentials userCredentials, String path) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -239,7 +225,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public void setAttr(UserCredentials userCredentials, String path, Stat stat, int toSet) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -255,7 +240,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public void unlink(UserCredentials userCredentials, String path) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -273,7 +257,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException * */ public void rename(UserCredentials userCredentials, String path, String newPath) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -311,7 +294,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public void createDirectory(UserCredentials userCredentials, String path, int mode) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -327,7 +309,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public void removeDirectory(UserCredentials userCredentials, String path) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -353,7 +334,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public DirectoryEntries readDir(UserCredentials userCredentials, String path, int offset, int count, boolean namesOnly) throws IOException, PosixErrorException, @@ -370,7 +350,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException * * @return {@link listxattrResponse} * @@ -393,7 +372,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException * * @remark Ownership is transferred to the caller. */ @@ -417,7 +395,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public void setXAttr(UserCredentials userCredentials, String path, String name, String value, XATTR_FLAGS flags) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -442,7 +419,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public void setXAttr(UserCredentials userCredentials, Auth auth, String path, String name, String value, XATTR_FLAGS flags) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -462,7 +438,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException * */ public String getXAttr(UserCredentials userCredentials, String path, String name) @@ -478,12 +453,10 @@ public interface Volume { * Path to the file/directory. * @param name * Name of the extended attribute. - * @param int Size of the extended attribute. -1 if the attribute was not found. * * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException * * @return true if the attribute was found. */ @@ -503,7 +476,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public void removeXAttr(UserCredentials userCredentials, String path, String name) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -563,7 +535,6 @@ public interface Volume { * @throws AddressToUUIDNotFoundException * @throws {@link IOException} * @throws PosixErrorException - * @throws UnknownAddressSchemeException */ public void removeReplica(UserCredentials userCredentials, String path, String osdUuid) throws IOException, PosixErrorException, AddressToUUIDNotFoundException; @@ -578,8 +549,6 @@ public interface Volume { * Path to the file. * @param numberOfOsds * Maximum number of OSDs which will be returned. - * @param listOfOsdUuids - * [out] List of strings to which the UUIDs will be appended. * * @throws AddressToUUIDNotFoundException * @throws {@link IOException} @@ -658,8 +627,8 @@ public interface Volume { * Username and groups of the user. * @param path * The path on the volume where the ACL is stored - * @param user - * The user to remove access rights + * @param aclEntries + * Set of acl entries to remove * @throws IOException */ public void removeACL(UserCredentials userCreds, String path, Set aclEntries) throws IOException; @@ -687,8 +656,8 @@ public interface Volume { * Username and groups of the user. * @param path * The path on the volume where the ACL is stored - * @param user - * The user to remove access rights + * @param aclEntries + * ACL entries to set * @throws IOException */ public void setACL(UserCredentials userCreds, String path, Map aclEntries) @@ -701,8 +670,6 @@ public interface Volume { * Username and groups of the user. * @param path * The path on the volume where the ACL is stored - * @param user - * The user to remove access rights * @throws IOException */ public Map listACL(UserCredentials userCreds, String path) throws IOException; @@ -719,7 +686,7 @@ public interface Volume { /** Set the OSD selection policies for the volume (replica placement). * * @param userCreds Username and groups of the user. - * @param List of policies as comma separated string. + * @param policies List of policies as comma separated string. * @throws IOException */ public void setOSDSelectionPolicy(UserCredentials userCreds, String policies) throws IOException; @@ -737,7 +704,7 @@ public interface Volume { /** Set the Replica selection policies for the volume (replica selection). * * @param userCreds Username and groups of the user. - * @param List of policies as comma separated string. + * @param policies List of policies as comma separated string. * @throws IOException */ public void setReplicaSelectionPolicy(UserCredentials userCreds, String policies) throws IOException; @@ -747,8 +714,8 @@ public interface Volume { * selection. See the user guide for more information. * * @param userCreds Username and groups of the user. - * @param Format: . e.g., "1001.domains" - * @param Value of the attribute. + * @param attribute Format: . e.g., "1001.domains" + * @param value Value of the attribute. * @throws IOException */ public void setPolicyAttribute(UserCredentials userCreds, String attribute, String value) throws IOException; @@ -760,7 +727,7 @@ public interface Volume { public String getVolumeName(); /** - * Used only for HDFS Interface. + * Used only for Hadoop Interface. * * Encapsulates information about one stripe, i.e. the size in kb where the stripe begins, the length of * the stripe and lists of hostnames and corresponding uuids where the stripe is located. Hostnames are -- GitLab From 49286476fc2159c60378747dbb14d79480c1bd78 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Tue, 9 Sep 2014 10:36:29 +0200 Subject: [PATCH 108/192] server: removed obsolete javadoc --- .../src/org/xtreemfs/osd/storage/StorageThread.java | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java b/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java index bccedaf78..1bce524af 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java +++ b/java/servers/src/org/xtreemfs/osd/storage/StorageThread.java @@ -759,10 +759,7 @@ public class StorageThread extends Stage { } } - - /** - * @param method - */ + private void processGetObjectSet(StageRequest rq) { final GetObjectListCallback cback = (GetObjectListCallback) rq.getCallback(); final String fileId = (String) rq.getArgs()[0]; @@ -777,10 +774,7 @@ public class StorageThread extends Stage { POSIXErrno.POSIX_ERROR_EIO, ex.toString())); } } - - /** - * @param method - */ + private void processCreateFileVersion(StageRequest rq) { final CreateFileVersionCallback cback = (CreateFileVersionCallback) rq.getCallback(); -- GitLab From 190738557edefb9f8195378a8fc866f545c8a14c Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Wed, 10 Sep 2014 13:20:09 +0200 Subject: [PATCH 109/192] tests: Use xtestenv for travis-ci unit tests. The C++ unit tests are dependend on a running XtreemFS environment. Running the tests within the xtestenv ensures it is available. To be able to distinguish between C++ and Java failures, the xtestenv has been extended to write the test results to a json file. --- .travis.yml | 18 +++++++++++++---- contrib/travis/parse_results.py | 34 +++++++++++++++++++++++++++++++++ contrib/travis/unit_tests.sh | 24 ----------------------- tests/test_config.py | 13 ++++++++++--- tests/xtestenv | 16 ++++++++++++++++ 5 files changed, 74 insertions(+), 31 deletions(-) create mode 100755 contrib/travis/parse_results.py delete mode 100755 contrib/travis/unit_tests.sh diff --git a/.travis.yml b/.travis.yml index c74e418d4..83aaa7a70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,12 +2,22 @@ language: java jdk: oraclejdk7 -install: - - make server +before_install: + - sudo apt-get update -qq + - sudo apt-get install -y libboost-all-dev libfuse-dev fuse libssl-dev libattr1-dev make cmake automake python + +before_script: + - TEST_DIR="/tmp/xtreemfs_xtestenv" + - XTREEMFS_DIR=`pwd` script: - - source contrib/travis/unit_tests.sh + - make server + - BUILD_CLIENT_TESTS=true make client_debug + - ./tests/xtestenv --clean-test-dir -x $XTREEMFS_DIR -t $TEST_DIR -c $XTREEMFS_DIR/tests/test_config.py travis after_failure: - - if [ $JUNIT_FAILED = "true" ]; then cat /tmp/xtreemfs-junit/log/junit.log; fi + - JUNIT_RESULT=`./contrib/travis/parse_results.py $TEST_DIR/result.json 'JUnit tests'` + - CPP_RESULT=`./contrib/travis/parse_results.py $TEST_DIR/result.json 'C++ Unit tests'` + - if [ $JUNIT_RESULT = "false" ]; then cat $TEST_DIR/log/junit.log; fi + - if [ $CPP_RESULT = "false" ]; then cat cpp/build/Testing/Temporary/LastTest.log; fi diff --git a/contrib/travis/parse_results.py b/contrib/travis/parse_results.py new file mode 100755 index 000000000..fc32124e7 --- /dev/null +++ b/contrib/travis/parse_results.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python + +# Copyright (c) 2014 by Johannes Dillmann, Zuse Institute Berlin +# Licensed under the BSD License, see LICENSE file for details. + +import sys + +import argparse +import json + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument("file", type=argparse.FileType('r')) + parser.add_argument("test") + args = parser.parse_args() + + results = json.load(args.file) + result = None + + if args.test in results: + result = results[args.test] + + if type(result) == bool and result: + print "true" + sys.exit(0) + + if type(result) == dict and all(result.values()): + print "true" + sys.exit(0) + + print "false" + sys.exit(1) + diff --git a/contrib/travis/unit_tests.sh b/contrib/travis/unit_tests.sh deleted file mode 100755 index 73cf05f3e..000000000 --- a/contrib/travis/unit_tests.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -XTREEMFS_DIR=$(echo $PWD) - -junit_tests(){ - tests/test_scripts/junit_tests.sh - # return 0 -} - -junit_tests -jstatus="$?" -if [ $jstatus -ne 0 ]; then - export JUNIT_FAILED="true" -else - export JUNIT_FAILED="false" -fi - -cd $XTREEMFS_DIR - -if [[ $jstatus -eq 0 ]]; then - return 0 -else - return 1 -fi diff --git a/tests/test_config.py b/tests/test_config.py index 6e753c1e5..d867133d4 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -54,7 +54,14 @@ TestSets = { 'mrc_repl': False, 'dir_repl': False, 'snmp': True, - } + }, + # This configuration is used to run the tests on the Travis CI build environment. + 'travis' : { + 'ssl': False, + 'mrc_repl': False, + 'dir_repl': False, + 'snmp': False, + }, } VolumeConfigs = { @@ -267,13 +274,13 @@ Tests = [ 'name': 'JUnit tests', 'file': 'junit_tests.sh', 'VolumeConfigs': [], - 'TestSets': [ 'full', 'short', 'short-ssl' ] + 'TestSets': [ 'full', 'short', 'short-ssl', 'travis' ] }, { 'name': 'C++ Unit Tests', 'file': 'cpp_unit_tests.sh', 'VolumeConfigs': [], - 'TestSets': [ 'full', 'short', 'short-ssl' ] + 'TestSets': [ 'full', 'short', 'short-ssl', 'travis' ] }, { 'name': 'Valgrind memory-leak check for C++ Unit Tests', diff --git a/tests/xtestenv b/tests/xtestenv index d588fcfa4..d84408872 100755 --- a/tests/xtestenv +++ b/tests/xtestenv @@ -9,6 +9,7 @@ from test_volume import Volume from optparse import OptionParser import test_server, os, traceback, subprocess, shutil, sys, socket, time import datetime +import json START_STOP_SERVICE_RETRIES = 3 @@ -378,6 +379,7 @@ class TestEnvironment: testlog.close() self._writeHtml(volTestResults, sysTestResults) + self._writeJSON(volTestResults, sysTestResults) print 'Volume tests complete.' print return failed @@ -430,6 +432,20 @@ class TestEnvironment: out.write(''+"\n") out.close() + def _writeJSON(self, volTestResults, sysTestResults): + results = {} + for i in range(len(sysTestResults)): + results[self.__config.getSystemTests()[i]['name']] = sysTestResults[i] + + for i in range(len(volTestResults)): + results[self.__config.getVolumeTests()[i]['name']] = volTestResults[i] + + print(results) + + with open(os.path.join(self.__test_dir, "result.json"), "w") as out: + json.dump(results, out) + + if __name__ == "__main__": xtreemfs_dir = os.path.join(os.path.dirname( os.path.abspath( sys.modules[__name__].__file__ ) ), "..") -- GitLab From 00d3f109624b917db2507e76766ebdb122c52a42 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Wed, 10 Sep 2014 16:34:01 +0200 Subject: [PATCH 110/192] tests: Add option to show progress to xtestenv. --- .travis.yml | 2 +- tests/xtestenv | 48 +++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 42 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 83aaa7a70..dcfec475a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ before_script: script: - make server - BUILD_CLIENT_TESTS=true make client_debug - - ./tests/xtestenv --clean-test-dir -x $XTREEMFS_DIR -t $TEST_DIR -c $XTREEMFS_DIR/tests/test_config.py travis + - ./tests/xtestenv --clean-test-dir -x $XTREEMFS_DIR -t $TEST_DIR -c $XTREEMFS_DIR/tests/test_config.py -p travis after_failure: - JUNIT_RESULT=`./contrib/travis/parse_results.py $TEST_DIR/result.json 'JUnit tests'` diff --git a/tests/xtestenv b/tests/xtestenv index d84408872..0f9e7c8e7 100755 --- a/tests/xtestenv +++ b/tests/xtestenv @@ -13,6 +13,29 @@ import json START_STOP_SERVICE_RETRIES = 3 +class TeeLog: + def __init__(self, fp): + self.file = fp + self.stdout = sys.stdout + + def close(self): + self.file.close() + + def write(self, data): + self.file.write(data) + self.stdout.write(data) + + def flush(self): + self.file.flush() + self.stdout.flush() + + def fileno(self): + return self.file.fileno() + + def __eq__(self, other): + return self.file == other + + class TestEnvironment: def __init__(self, config_file, @@ -21,7 +44,8 @@ class TestEnvironment: xtreemfs_dir, test_dir, debug_level, - storage_threads): + storage_threads, + progress): self.__xtreemfs_dir = xtreemfs_dir self.__test_dir = os.path.abspath(test_dir) self.__debug_level = debug_level @@ -31,6 +55,7 @@ class TestEnvironment: self.__mrc = None self.__osds = list() self.__storage_threads = storage_threads + self.__progress = progress def start(self): try: @@ -271,6 +296,8 @@ class TestEnvironment: t_start = time.time() try: testprocess = subprocess.Popen(testargs, stdout=testlog, stderr=testlog) + for line in iter(testprocess.stdout.readline,''): + testlog.write(line) testprocess.wait() if testprocess.returncode is not 0: perVolumeSuccess[vcName] = False @@ -314,7 +341,7 @@ class TestEnvironment: def _runSystemTest(self, test, testlog): testlog.write(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") + " Executing system test '" + test['name'] + "'\n\n") testlog.flush() - sys.stdout.write("xtestenv: Executing system test '" + test['name'] + "' ... ") + sys.stdout.write("xtestenv: Executing system test '" + test['name'] + "' ... \n") sys.stdout.flush() testargs = list() testargs.append(os.path.join(self.__xtreemfs_dir,"tests", "test_scripts", test['file'])) @@ -326,7 +353,9 @@ class TestEnvironment: t_start = time.time() success = False try: - testprocess = subprocess.Popen(testargs, stdout=testlog, stderr=testlog, cwd=self.__xtreemfs_dir) + testprocess = subprocess.Popen(testargs, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, cwd=self.__xtreemfs_dir) + for line in iter(testprocess.stdout.readline,''): + testlog.write(line) testprocess.wait() if testprocess.returncode == 0: success = True @@ -350,6 +379,9 @@ class TestEnvironment: def runTests(self): try: testlog = open(os.path.join(self.__test_dir, "test.log"), "w") + if self.__progress: + testlog = TeeLog(testlog) + sysTestResults = list() volTestResults = list() @@ -440,8 +472,6 @@ class TestEnvironment: for i in range(len(volTestResults)): results[self.__config.getVolumeTests()[i]['name']] = volTestResults[i] - print(results) - with open(os.path.join(self.__test_dir, "result.json"), "w") as out: json.dump(results, out) @@ -459,6 +489,8 @@ if __name__ == "__main__": option_parser.add_option( "-e", "--start-test-env", action="store_true", dest="start_test_env") option_parser.add_option( "-f", "--start-test-env-with-ssl", action="store_true", dest="start_test_env_with_ssl", help="Same as -e, but with SSL enabled.") option_parser.add_option( "-s", "--storage-threads", action="store", dest="storage_threads", default=1, help="Number of storage threads per OSD.") + option_parser.add_option( "-p", "--progress", action="store_true", dest="progress", help="Show progress by printing the test script output to stdout.") + if len(sys.argv) == 1: option_parser.print_help() sys.exit(2) @@ -488,7 +520,8 @@ if __name__ == "__main__": options.xtreemfs_dir, options.test_dir, options.debug_level, - options.storage_threads) + options.storage_threads, + options.progress) testEnv.start() try: print @@ -513,7 +546,8 @@ if __name__ == "__main__": options.xtreemfs_dir, options.test_dir, options.debug_level, - options.storage_threads) + options.storage_threads, + options.progress) testEnv.start() try: failed = testEnv.runTests() -- GitLab From 332c9c3a6412b86a808d35e70f6c567187a16cec Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Wed, 10 Sep 2014 16:51:59 +0200 Subject: [PATCH 111/192] tests: Fix openjdk6 test compatibility. --- .travis.yml | 4 ++-- .../benchmark/ControllerIntegrationTest.java | 15 +++++++-------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index dcfec475a..c97918536 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: java -jdk: oraclejdk7 +jdk: openjdk6 before_install: - sudo apt-get update -qq @@ -17,7 +17,7 @@ script: after_failure: - JUNIT_RESULT=`./contrib/travis/parse_results.py $TEST_DIR/result.json 'JUnit tests'` - - CPP_RESULT=`./contrib/travis/parse_results.py $TEST_DIR/result.json 'C++ Unit tests'` + - CPP_RESULT=`./contrib/travis/parse_results.py $TEST_DIR/result.json 'C++ Unit Tests'` - if [ $JUNIT_RESULT = "false" ]; then cat $TEST_DIR/log/junit.log; fi - if [ $CPP_RESULT = "false" ]; then cat cpp/build/Testing/Temporary/LastTest.log; fi diff --git a/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java b/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java index 2ed4e8872..cb5e2f22f 100644 --- a/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java +++ b/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java @@ -1,7 +1,6 @@ package org.xtreemfs.test.common.benchmark; import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertSame; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import static org.xtreemfs.common.benchmark.BenchmarkUtils.KiB_IN_BYTES; @@ -463,12 +462,12 @@ public class ControllerIntegrationTest { * after the teardown (which includes the deletion of the benchmark volumes and files), only the volumes are * present */ - assertSame(0, Integer.valueOf(volumeA.getXAttr(userCredentials, "", "xtreemfs.num_files"))); - assertSame(0, Integer.valueOf(volumeB.getXAttr(userCredentials, "", "xtreemfs.num_files"))); - assertSame(0, Integer.valueOf(volumeC.getXAttr(userCredentials, "", "xtreemfs.num_files"))); - assertSame(0, Integer.valueOf(volumeA.getXAttr(userCredentials, "", "xtreemfs.used_space"))); - assertSame(0, Integer.valueOf(volumeB.getXAttr(userCredentials, "", "xtreemfs.used_space"))); - assertSame(0, Integer.valueOf(volumeC.getXAttr(userCredentials, "", "xtreemfs.used_space"))); + assertEquals(0, (int) Integer.valueOf(volumeA.getXAttr(userCredentials, "", "xtreemfs.num_files"))); + assertEquals(0, (int) Integer.valueOf(volumeB.getXAttr(userCredentials, "", "xtreemfs.num_files"))); + assertEquals(0, (int) Integer.valueOf(volumeC.getXAttr(userCredentials, "", "xtreemfs.num_files"))); + assertEquals(0, (int) Integer.valueOf(volumeA.getXAttr(userCredentials, "", "xtreemfs.used_space"))); + assertEquals(0, (int) Integer.valueOf(volumeB.getXAttr(userCredentials, "", "xtreemfs.used_space"))); + assertEquals(0, (int) Integer.valueOf(volumeC.getXAttr(userCredentials, "", "xtreemfs.used_space"))); deleteVolumes("BenchVolA", "BenchVolB", "BenchVolC"); } @@ -500,7 +499,7 @@ public class ControllerIntegrationTest { * still present */ assertEquals(basefileSize, volume.getAttr(userCredentials, "benchmarks/basefile").getSize()); - assertSame(1, Integer.valueOf(volume.getXAttr(userCredentials, "", "xtreemfs.num_files"))); + assertEquals(1, (int) Integer.valueOf(volume.getXAttr(userCredentials, "", "xtreemfs.num_files"))); assertEquals(basefileSize, (int) Integer.valueOf(volume.getXAttr(userCredentials, "", "xtreemfs.used_space"))); } -- GitLab From e3b8b78e96eed49e0e20529b972a6f481f403dc5 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Thu, 11 Sep 2014 16:34:38 +0200 Subject: [PATCH 112/192] servers: generalized terminology in benchmark tool --- .../common/benchmark/AbstractBenchmark.java | 21 +++++++-------- .../common/benchmark/BenchmarkResult.java | 26 +++++++++---------- .../benchmark/FilebasedReadBenchmark.java | 12 ++++----- .../benchmark/FilebasedWriteBenchmark.java | 10 +++---- .../benchmark/RandomOffsetbasedBenchmark.java | 10 +++---- .../benchmark/SequentialReadBenchmark.java | 6 ++--- .../benchmark/SequentialWriteBenchmark.java | 5 ++-- .../utils/xtfs_benchmark/xtfs_benchmark.java | 11 ++++---- .../benchmark/ControllerIntegrationTest.java | 8 +++--- 9 files changed, 53 insertions(+), 56 deletions(-) diff --git a/java/servers/src/org/xtreemfs/common/benchmark/AbstractBenchmark.java b/java/servers/src/org/xtreemfs/common/benchmark/AbstractBenchmark.java index e68b55660..6957c8265 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/AbstractBenchmark.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/AbstractBenchmark.java @@ -24,19 +24,19 @@ import java.util.concurrent.Callable; static volatile boolean cancelled = false; - final int chunkSize; - final long benchmarkSizeInBytes; + final int requestSize; + final long benchmarkSize; final Volume volume; final AdminClient client; final BenchmarkConfig config; final VolumeManager volumeManager; - AbstractBenchmark(long benchmarkSizeInBytes, BenchmarkConfig config, AdminClient client, VolumeManager volumeManager) throws Exception { + AbstractBenchmark(long benchmarkSize, BenchmarkConfig config, AdminClient client, VolumeManager volumeManager) throws Exception { this.client = client; - this.benchmarkSizeInBytes = benchmarkSizeInBytes; + this.benchmarkSize = benchmarkSize; this.volume = volumeManager.getNextVolume(); this.config = config; - this.chunkSize = config.getChunkSizeInBytes(); + this.requestSize = config.getChunkSizeInBytes(); this.volumeManager = volumeManager; this.cancelled = false; // reset cancellation status } @@ -51,22 +51,21 @@ import java.util.concurrent.Callable; Logging.logMessage(Logging.LEVEL_INFO, Logging.Category.tool, this, "Starting %s on volume %s", shortClassname, volume.getVolumeName()); // Setting up - byte[] data = new byte[chunkSize]; + byte[] data = new byte[requestSize]; - long numberOfBlocks = benchmarkSizeInBytes / chunkSize; - long byteCounter = 0; + long numberOfRequests = benchmarkSize / requestSize; /* Run the AbstractBenchmark */ long before = System.currentTimeMillis(); - byteCounter = performIO(data, numberOfBlocks); + long requestCounter = performIO(data, numberOfRequests); long after = System.currentTimeMillis(); - if (benchmarkSizeInBytes != byteCounter) + if (benchmarkSize != requestCounter) throw new BenchmarkFailedException("Data written does not equal the requested size"); /* Calculate results */ double timeInSec = (after - before) / 1000.; - BenchmarkResult result = new BenchmarkResult(timeInSec, benchmarkSizeInBytes, byteCounter); + BenchmarkResult result = new BenchmarkResult(timeInSec, benchmarkSize, requestCounter); finalizeBenchmark(); diff --git a/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkResult.java b/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkResult.java index 0db923cc0..7bc59f27c 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkResult.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkResult.java @@ -20,23 +20,23 @@ public class BenchmarkResult implements Comparable { private BenchmarkType benchmarkType; private int numberOfReadersOrWriters; private double timeInSec; - private long dataRequestedInBytes; - private long byteCount; + private long requestedSize; + private long actualSize; private boolean failed; private Throwable error; - public BenchmarkResult(double timeInSec, long dataRequestedInBytes, long byteCount) { + public BenchmarkResult(double timeInSec, long requestedSize, long actualSize) { this.timeInSec = timeInSec; - this.dataRequestedInBytes = dataRequestedInBytes; - this.byteCount = byteCount; + this.requestedSize = requestedSize; + this.actualSize = actualSize; this.failed = false; } - public BenchmarkResult(double timeInSec, long byteCount, int numberOfReadersOrWriters, BenchmarkType benchmarkType) { + public BenchmarkResult(double timeInSec, long actualSize, int numberOfReadersOrWriters, BenchmarkType benchmarkType) { this.benchmarkType = benchmarkType; this.numberOfReadersOrWriters = numberOfReadersOrWriters; this.timeInSec = timeInSec; - this.byteCount = byteCount; + this.actualSize = actualSize; } public BenchmarkResult(Throwable error) { @@ -98,7 +98,7 @@ public class BenchmarkResult implements Comparable { * @return the speed of the benchmark in MiB/Sec */ public double getSpeedInMiBPerSec() { - return round(((double) byteCount / BenchmarkUtils.MiB_IN_BYTES) / timeInSec, 2); + return round(((double) actualSize / BenchmarkUtils.MiB_IN_BYTES) / timeInSec, 2); } /** @@ -106,17 +106,17 @@ public class BenchmarkResult implements Comparable { * * @return the benchmark size in bytes */ - public long getDataRequestedInBytes() { - return dataRequestedInBytes; + public long getRequestedSize() { + return requestedSize; } /** - * Get the count of bytes actually written or red by the benchmark (should be equal to {@link #getDataRequestedInBytes()}). + * Get the count of bytes actually written or red by the benchmark (should be equal to {@link #getRequestedSize()}). * * @return the number of bytes written or red by the benchmark */ - public long getByteCount() { - return byteCount; + public long getActualSize() { + return actualSize; } public Throwable getError() { diff --git a/java/servers/src/org/xtreemfs/common/benchmark/FilebasedReadBenchmark.java b/java/servers/src/org/xtreemfs/common/benchmark/FilebasedReadBenchmark.java index c8d90749c..9dbfa4f9f 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/FilebasedReadBenchmark.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/FilebasedReadBenchmark.java @@ -30,14 +30,14 @@ class FilebasedReadBenchmark extends FilebasedBenchmark { @Override void prepareBenchmark() throws Exception { - this.filenames = volumeManager.getRandomFilelistForVolume(volume, benchmarkSizeInBytes); + this.filenames = volumeManager.getRandomFilelistForVolume(volume, benchmarkSize); } /* Called within the benchmark method. Performs the actual reading of data from the volume. */ @Override long performIO(byte[] data, long numberOfBlocks) throws IOException { - long numberOfFilesToRead = benchmarkSizeInBytes / filesize; + long numberOfFilesToRead = benchmarkSize / filesize; int filenamesSize = filenames.length; long byteCounter = 0; @@ -49,14 +49,14 @@ class FilebasedReadBenchmark extends FilebasedBenchmark { String filename = filenames[random.nextInt(filenamesSize)]; FileHandle fileHandle = volume.openFile(config.getUserCredentials(), filename, flags); - if (filesize <= chunkSize) { + if (filesize <= requestSize) { random.nextBytes(data); byteCounter += fileHandle.read(config.getUserCredentials(), data, filesize, 0); } else - for (long j = 0; j < filesize / chunkSize; j++) { - long nextOffset = j * chunkSize; + for (long j = 0; j < filesize / requestSize; j++) { + long nextOffset = j * requestSize; assert nextOffset >= 0 : "Offset < 0 not allowed"; - byteCounter += fileHandle.read(config.getUserCredentials(), data, chunkSize, nextOffset); + byteCounter += fileHandle.read(config.getUserCredentials(), data, requestSize, nextOffset); } fileHandle.close(); } diff --git a/java/servers/src/org/xtreemfs/common/benchmark/FilebasedWriteBenchmark.java b/java/servers/src/org/xtreemfs/common/benchmark/FilebasedWriteBenchmark.java index 69f6ac2ef..1abf7a484 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/FilebasedWriteBenchmark.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/FilebasedWriteBenchmark.java @@ -38,7 +38,7 @@ class FilebasedWriteBenchmark extends FilebasedBenchmark { @Override long performIO(byte[] data, long numberOfBlocks) throws IOException { - long numberOfFiles = benchmarkSizeInBytes / filesize; + long numberOfFiles = benchmarkSize / filesize; long byteCounter = 0; Random random = new Random(); @@ -50,15 +50,15 @@ class FilebasedWriteBenchmark extends FilebasedBenchmark { FileHandle fileHandle = volume.openFile(config.getUserCredentials(), BENCHMARK_FILENAME + i, flags, 511); this.filenames.add(BENCHMARK_FILENAME + i); - if (filesize <= chunkSize) { + if (filesize <= requestSize) { random.nextBytes(data); byteCounter += fileHandle.write(config.getUserCredentials(), data, filesize, 0); } else - for (long j = 0; j < filesize / chunkSize; j++) { - long nextOffset = j * chunkSize; + for (long j = 0; j < filesize / requestSize; j++) { + long nextOffset = j * requestSize; assert nextOffset >= 0 : "Offset < 0 not allowed"; random.nextBytes(data); - byteCounter += fileHandle.write(config.getUserCredentials(), data, chunkSize, nextOffset); + byteCounter += fileHandle.write(config.getUserCredentials(), data, requestSize, nextOffset); } fileHandle.close(); } diff --git a/java/servers/src/org/xtreemfs/common/benchmark/RandomOffsetbasedBenchmark.java b/java/servers/src/org/xtreemfs/common/benchmark/RandomOffsetbasedBenchmark.java index a32e4297c..7456f214e 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/RandomOffsetbasedBenchmark.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/RandomOffsetbasedBenchmark.java @@ -48,7 +48,7 @@ abstract class RandomOffsetbasedBenchmark extends AbstractBenchmark { /* convert to 4 KiB Blocks */ long convertTo4KiBBlocks(long numberOfBlocks) { - return (numberOfBlocks * (long) chunkSize) / (long) RANDOM_IO_BLOCKSIZE; + return (numberOfBlocks * (long) requestSize) / (long) RANDOM_IO_BLOCKSIZE; } long generateNextRandomOffset() { @@ -77,19 +77,19 @@ abstract class RandomOffsetbasedBenchmark extends AbstractBenchmark { private void createBasefile() throws Exception { Logging.logMessage(Logging.LEVEL_INFO, Logging.Category.tool, this, "Start creating a basefile of size %s bytes.", sizeOfBasefile); - long numberOfBlocks = sizeOfBasefile / (long) chunkSize; + long numberOfBlocks = sizeOfBasefile / (long) requestSize; Random random = new Random(); int flags = GlobalTypes.SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_CREAT.getNumber() | GlobalTypes.SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() | GlobalTypes.SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(); FileHandle fileHandle = volume.openFile(config.getUserCredentials(), BASFILE_FILENAME, flags, 511); long byteCounter = 0; - byte[] data = new byte[chunkSize]; + byte[] data = new byte[requestSize]; for (long j = 0; j < numberOfBlocks; j++) { - long nextOffset = j * chunkSize; + long nextOffset = j * requestSize; assert nextOffset >= 0 : "Offset < 0 not allowed"; random.nextBytes(data); - byteCounter += fileHandle.write(config.getUserCredentials(), data, chunkSize, nextOffset); + byteCounter += fileHandle.write(config.getUserCredentials(), data, requestSize, nextOffset); } fileHandle.close(); assert byteCounter == sizeOfBasefile : " Error while writing the basefile for the random io benchmark"; diff --git a/java/servers/src/org/xtreemfs/common/benchmark/SequentialReadBenchmark.java b/java/servers/src/org/xtreemfs/common/benchmark/SequentialReadBenchmark.java index 7de61aa10..1368d27a4 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/SequentialReadBenchmark.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/SequentialReadBenchmark.java @@ -28,7 +28,7 @@ class SequentialReadBenchmark extends SequentialBenchmark { @Override void prepareBenchmark() throws Exception { - this.filenames = volumeManager.getSequentialFilelistForVolume(volume, benchmarkSizeInBytes); + this.filenames = volumeManager.getSequentialFilelistForVolume(volume, benchmarkSize); } /* Called within the benchmark method. Performs the actual reading of data from the volume. */ @@ -50,9 +50,9 @@ class SequentialReadBenchmark extends SequentialBenchmark { private long tryPerformIO(byte[] data, long numberOfBlocks, FileHandle fileHandle) throws IOException { long byteCounter = 0; for (long j = 0; !cancelled && j < numberOfBlocks; j++) { - long nextOffset = j * chunkSize; + long nextOffset = j * requestSize; assert nextOffset >= 0 : "Offset < 0 not allowed"; - byteCounter += fileHandle.read(config.getUserCredentials(), data, chunkSize, nextOffset); + byteCounter += fileHandle.read(config.getUserCredentials(), data, requestSize, nextOffset); } fileHandle.close(); return byteCounter; diff --git a/java/servers/src/org/xtreemfs/common/benchmark/SequentialWriteBenchmark.java b/java/servers/src/org/xtreemfs/common/benchmark/SequentialWriteBenchmark.java index be36ce25a..7a8c6b9e9 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/SequentialWriteBenchmark.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/SequentialWriteBenchmark.java @@ -14,7 +14,6 @@ import java.util.Random; import org.xtreemfs.common.libxtreemfs.AdminClient; import org.xtreemfs.common.libxtreemfs.FileHandle; -import org.xtreemfs.common.libxtreemfs.exceptions.PosixErrorException; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes; /** @@ -57,10 +56,10 @@ class SequentialWriteBenchmark extends SequentialBenchmark { long byteCounter = 0; for (long j = 0; !cancelled && j < numberOfBlocks; j++) { - long nextOffset = j * chunkSize; + long nextOffset = j * requestSize; assert nextOffset >= 0 : "Offset < 0 not allowed"; random.nextBytes(data); - byteCounter += fileHandle.write(config.getUserCredentials(), data, chunkSize, nextOffset); + byteCounter += fileHandle.write(config.getUserCredentials(), data, requestSize, nextOffset); } fileHandle.close(); return byteCounter; diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java index 36a4f5d09..a67a77826 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java @@ -10,7 +10,6 @@ package org.xtreemfs.utils.xtfs_benchmark; import static org.xtreemfs.foundation.logging.Logging.Category; import java.util.*; -import java.util.concurrent.ConcurrentLinkedQueue; import org.xtreemfs.common.benchmark.*; import org.xtreemfs.foundation.logging.Logging; @@ -138,8 +137,8 @@ public class xtfs_benchmark { /* convert a single result to json like String */ private static String resultToString(BenchmarkResult result) { - String dataWritten = result.getDataRequestedInBytes() >= BenchmarkUtils.GiB_IN_BYTES ? result - .getDataRequestedInBytes() / BenchmarkUtils.GiB_IN_BYTES + " GiB [" : result.getDataRequestedInBytes() + String dataWritten = result.getRequestedSize() >= BenchmarkUtils.GiB_IN_BYTES ? result + .getRequestedSize() / BenchmarkUtils.GiB_IN_BYTES + " GiB [" : result.getRequestedSize() / BenchmarkUtils.MiB_IN_BYTES + " MiB ["; String readersOrWriters; @@ -153,13 +152,13 @@ public class xtfs_benchmark { return "{\n\tBenchmarkType: " + result.getBenchmarkType() + "\n" + readersOrWriters + "\tTime: " + result.getTimeInSec() + " Sec\n" + "\tSpeed: " + result.getSpeedInMiBPerSec() + " MiB/s\n" + "\tData written: " - + dataWritten + result.getDataRequestedInBytes()+ " Bytes]\n" + "\tByteCount: " + result.getByteCount() + " Bytes\n" + "}"; + + dataWritten + result.getRequestedSize()+ " Bytes]\n" + "\tByteCount: " + result.getActualSize() + " Bytes\n" + "}"; } /* convert a single result to csv */ private static String resultToCSV(BenchmarkResult result) { return result.getBenchmarkType() + ";" + result.getNumberOfReadersOrWriters() + ";" - + result.getTimeInSec() + ";" + result.getSpeedInMiBPerSec() + ";" + result.getDataRequestedInBytes() + ";" - + result.getByteCount(); + + result.getTimeInSec() + ";" + result.getSpeedInMiBPerSec() + ";" + result.getRequestedSize() + ";" + + result.getActualSize(); } } diff --git a/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java b/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java index cb5e2f22f..9aa6b41ec 100644 --- a/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java +++ b/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java @@ -521,8 +521,8 @@ public class ControllerIntegrationTest { String benchmarkType = result.getBenchmarkType().toString(); assertEquals(type, benchmarkType); assertEquals(threads, result.getNumberOfReadersOrWriters()); - assertEquals(size, result.getDataRequestedInBytes()); - assertEquals(size, result.getByteCount()); + assertEquals(size, result.getRequestedSize()); + assertEquals(size, result.getActualSize()); } assertEquals(numberOfResults, resultCounter); } @@ -558,8 +558,8 @@ public class ControllerIntegrationTest { System.err.println("Type\t\t\tThreads\t\tTime\tSpeed\tRequested\t\tCount"); for (BenchmarkResult res : results) { System.err.println(res.getBenchmarkType() + "\t\t" + res.getNumberOfReadersOrWriters() + "\t\t\t" - + res.getTimeInSec() + "\t" + res.getSpeedInMiBPerSec() + "\t" + res.getDataRequestedInBytes() - + "\t\t" + res.getByteCount()); + + res.getTimeInSec() + "\t" + res.getSpeedInMiBPerSec() + "\t" + res.getRequestedSize() + + "\t\t" + res.getActualSize()); } } -- GitLab From 8c58e0514380448a88858d83206cd3eaa24ab545 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Thu, 11 Sep 2014 16:52:59 +0200 Subject: [PATCH 113/192] servers: some refactorings in benchmark tool --- .../common/benchmark/BenchmarkResult.java | 26 +++---------------- .../utils/xtfs_benchmark/xtfs_benchmark.java | 24 +++++++++++++++-- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkResult.java b/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkResult.java index 7bc59f27c..5f9a8829d 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkResult.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkResult.java @@ -93,16 +93,7 @@ public class BenchmarkResult implements Comparable { } /** - * Get the speed of the benchmark in MiB/Sec - * - * @return the speed of the benchmark in MiB/Sec - */ - public double getSpeedInMiBPerSec() { - return round(((double) actualSize / BenchmarkUtils.MiB_IN_BYTES) / timeInSec, 2); - } - - /** - * Get the size in the bytes the benchmark was requested to write or read. + * Get the size, the benchmark was requested to write or read. * * @return the benchmark size in bytes */ @@ -111,9 +102,9 @@ public class BenchmarkResult implements Comparable { } /** - * Get the count of bytes actually written or red by the benchmark (should be equal to {@link #getRequestedSize()}). + * Get the count of requests actually written or red by the benchmark (should be equal to {@link #getRequestedSize()}). * - * @return the number of bytes written or red by the benchmark + * @return the number of requests written or red by the benchmark */ public long getActualSize() { return actualSize; @@ -147,17 +138,6 @@ public class BenchmarkResult implements Comparable { return failed; } - /* Round doubles to specified number of decimals */ - private double round(double value, int places) { - if (places < 0) - throw new IllegalArgumentException(); - - long factor = (long) Math.pow(10, places); - value = value * factor; - long tmp = Math.round(value); - return (double) tmp / factor; - } - @Override public int compareTo(BenchmarkResult otherResult) { return benchmarkType.toString().compareTo(otherResult.benchmarkType.toString()); diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java index a67a77826..edc02f02e 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java @@ -151,14 +151,34 @@ public class xtfs_benchmark { } return "{\n\tBenchmarkType: " + result.getBenchmarkType() + "\n" + readersOrWriters - + "\tTime: " + result.getTimeInSec() + " Sec\n" + "\tSpeed: " + result.getSpeedInMiBPerSec() + " MiB/s\n" + "\tData written: " + + "\tTime: " + result.getTimeInSec() + " Sec\n" + "\tSpeed: " + getSpeedInMiBPerSec(result.getActualSize(), result.getTimeInSec()) + " MiB/s\n" + "\tData written: " + dataWritten + result.getRequestedSize()+ " Bytes]\n" + "\tByteCount: " + result.getActualSize() + " Bytes\n" + "}"; } /* convert a single result to csv */ private static String resultToCSV(BenchmarkResult result) { return result.getBenchmarkType() + ";" + result.getNumberOfReadersOrWriters() + ";" - + result.getTimeInSec() + ";" + result.getSpeedInMiBPerSec() + ";" + result.getRequestedSize() + ";" + + result.getTimeInSec() + ";" + getSpeedInMiBPerSec(result.getActualSize(), result.getTimeInSec()) + ";" + result.getRequestedSize() + ";" + result.getActualSize(); } + + /** + * Get the speed of the benchmark in MiB/Sec + * + * @return the speed of the benchmark in MiB/Sec + */ + private static double getSpeedInMiBPerSec(long size, double time) { + return round(((double) size / BenchmarkUtils.MiB_IN_BYTES) / time, 2); + } + + /* Round doubles to specified number of decimals */ + private static double round(double value, int places) { + if (places < 0) + throw new IllegalArgumentException(); + + long factor = (long) Math.pow(10, places); + value = value * factor; + long tmp = Math.round(value); + return (double) tmp / factor; + } } -- GitLab From 115891c25cb0764f84b66432c3925fe787836028 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Thu, 11 Sep 2014 16:57:22 +0200 Subject: [PATCH 114/192] servers: removed unused method --- .../common/benchmark/ControllerIntegrationTest.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java b/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java index 9aa6b41ec..486c8054b 100644 --- a/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java +++ b/java/servers/test/org/xtreemfs/test/common/benchmark/ControllerIntegrationTest.java @@ -553,14 +553,4 @@ public class ControllerIntegrationTest { client.deleteVolume(auth, userCredentials, volumeName); } } - - private void printResults(List results) { - System.err.println("Type\t\t\tThreads\t\tTime\tSpeed\tRequested\t\tCount"); - for (BenchmarkResult res : results) { - System.err.println(res.getBenchmarkType() + "\t\t" + res.getNumberOfReadersOrWriters() + "\t\t\t" - + res.getTimeInSec() + "\t" + res.getSpeedInMiBPerSec() + "\t" + res.getRequestedSize() - + "\t\t" + res.getActualSize()); - } - } - } -- GitLab From c34a3257ca1d198edea55ad373b5556f05600ac7 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Sat, 13 Sep 2014 17:36:21 +0200 Subject: [PATCH 115/192] Update KNOWN_ISSUES --- KNOWN_ISSUES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KNOWN_ISSUES b/KNOWN_ISSUES index 96fb3f6e6..28b1b5fd8 100644 --- a/KNOWN_ISSUES +++ b/KNOWN_ISSUES @@ -3,6 +3,6 @@ in our issue tracker and mark each with the label "KnownLimitations". Please have a look at - http://code.google.com/p/xtreemfs/issues/list?can=1&q=label%3AKnownLimitations + https://github.com/xtreemfs/xtreemfs/labels/KnownLimitations -for the complete list of current known limitations. \ No newline at end of file +for the complete list of current known limitations. -- GitLab From 82ea9c24b2d8cafaaf8887d73f2a94343593708e Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 22 Sep 2014 13:38:01 +0200 Subject: [PATCH 116/192] client: Updated xtfsutil man-page --- man/man1/xtfsutil.1 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/man/man1/xtfsutil.1 b/man/man1/xtfsutil.1 index e677ad922..3856da5c3 100644 --- a/man/man1/xtfsutil.1 +++ b/man/man1/xtfsutil.1 @@ -68,7 +68,7 @@ Requires the following options: \-\-replication-policy, \-\-replication-factor Additional options: \-\-full .TP -\fB\-\-replication-policy ronly|WqRq|WaRa|none (the aliases readonly|quorum|all are also allowed) +\fB\-\-replication-policy ronly|WqRq|WaR1|none (the aliases readonly|quorum|all are also allowed) Sets the replication policy. .br @@ -163,6 +163,10 @@ Same as --create-snapshot but excludes any subdirectories. \fB\-\-delete-snapshot \fP[\fIname\fP] Deletes the snapshot with the name \fIname\fP. +.TP +\fB\-\-set-quota [quota size]MB|GB|TB +Sets the volume quota (set quota to 0 to disable the quota) + .TP FILE OPTIONS: .TP @@ -180,11 +184,7 @@ Removes the replica on the OSD with the specified UUID. Prints a list of up to ten OSDs that can be used for new replicas for the specified file. .TP -\fB\-d, \-\-delete-replica [OSD UUID] -Removes the replica on the OSD with the specified UUID. - -.TP -\fB\-r, \-\-set-replication-policy ronly|WqRq|WaRa|none (the aliases readonly|quorum|all are also allowed) +\fB\-r, \-\-set-replication-policy ronly|WqRq|WaR1|none (the aliases readonly|quorum|all are also allowed) Sets the replication policy for a file. Mode cane only be changed when a file has no replicas. See --replication-policy for values. .SH "SEE ALSO" -- GitLab From a316675d88ad8517d443c6db8032fc45a2024a5f Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 22 Sep 2014 14:41:28 +0200 Subject: [PATCH 117/192] servers: Fixed #269 --- .../src/org/xtreemfs/mrc/osdselection/FilterFQDNPolicy.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterFQDNPolicy.java b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterFQDNPolicy.java index 5d2f048e3..6ccc3bcff 100644 --- a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterFQDNPolicy.java +++ b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterFQDNPolicy.java @@ -69,6 +69,9 @@ public class FilterFQDNPolicy implements OSDSelectionPolicy { public void setAttribute(String key, String value) { if (key.equals(DOMAINS)) { domains.clear(); + if (value == null) { + value = ""; + } StringTokenizer st = new StringTokenizer(value, " ,;\t\n"); if (st != null) { while (st.hasMoreTokens()) { -- GitLab From e32175a3e261e662ef63129348f99ddcf0759375 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 22 Sep 2014 16:25:13 +0200 Subject: [PATCH 118/192] docs: Added quota description to user guide --- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 1005573 -> 843039 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 9 +++++++++ 2 files changed, 9 insertions(+) diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index b6ac9d9c8ac9c51dc2ec3137d6c28cda35a1a3ae..e1e27bd9fe5694f9173d422e4abf104e74198f32 100644 GIT binary patch delta 239198 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 z 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…nn8}=rc_gvqS zAGS3=WVTbn%FaWVOj*2d95pf2dF!eq*!aNZ34_>*Kb;ERJ16-Za13l~K6z!r`Ue)1 zQYFr=EHWyV@4miWX?{@Q@6-+TEpL*x^d+zz5_-mK$KgHkbhqBO=TnLcd|Dnqj$@tn zz(Z@{i|PI%8$@LGb!zMh;rte^?Od>{@$A|Xu~1O6rQ@pkTK%@WGD$()Q&v0@`yp~L zXrpEo&$M%fg68L3A|@5idma!m>+8=uT^D=2*YG&0R-f+c4Zd!{#1d}oQG?DA?n$AC;_cqkL zN%s9tg_^wD`R9!tJEj`1x_Kr`f8Gq?haZ`*Cj1x4G_!1(e0=eyIf1IruADqG>G}UT zC1u~MnK!(CYiTPGdPQV)?tY$WRT?_J@ez}p5;>D5@pCt+?(bpR)9swNQtG!J(k@aNKETeR5MLf+>pZ4s%rA1?f!|gF%k7ioH~|))pzH{Ci<`cB)>-L z{c+_!g~KV;Tq~QM9Ln=E?yqqws1}G9K6@l|=f$iYJG~t0ICLamn%r^UHMJ#RMZlGg zp6wT0|EVs~o_XT-r_=10wf45JTDqX~qo7a^n@xmis-oP9D_nZ3C!JkaU{oyU8*nx6 z%EF_E8XamyOgav8)az=*IOg72mVInPNif5-ib>v+H4cB=pb~pLSCg%Y?X&h9&*ytJ zw(+m}Fjl3sJghtvcl>Pt67;g%>M%SU(kOg)9;OduEUR zg9o?2No;-jmFMs?Wm%OaEeC?O+}mNt;Vt+$!E?a|lesqDjq{v-33eCPa|oQj*Ru?j7IT(qtB$0oYCU`W>XhOAgd)|>7Rl{W zdMk@~riE}!d)K@{q(Ix$(ecU>^Lnkz1zu-@WTk49!wQVe(>UK63tqUo{pqyZ!K+zr zI8?6|jZk{L%xH$xGPQ$--x)WvDf!>qoCpZcABFwbRP z(xyi4uP-L49$jLK#d8)BPWPQ%HZvVwu@dKvE@Z@u>@B7F{*PU2DRMVy6CA{@ALH|W)~O0sEgzH|7@ZhObr zot~H75;V6h>7DVvGfVi&q6=qQHi)n$dfqK?jhMA^Z{e&1K^~h-9Z$+Dd9zHrlX30A zwMAX~&J?*DwJrU7HMsSyrq#^VM+_robth&i*ycvxDm8BZ zaAmx=Szoed_KOGJx4RDswW@M?i%iqd35;0OtS?)WSq<{GOJXNPrsTuYX8l}!xRMPn ziJg4=Nx!W{SN~R=$h3N}Q6P1Pgh0k!{I&?ffmj5#b(=VZ169f%&*i;kFO&nZ z+3H77#G<#Z5DvuliwCD462k5jWM%ai4^HRXhhf~MgVVQ(w=R9nHSNk;E}gTxPOh%0 zvt#fUlGs0eS55C~cZeO}K!EsT8Jl-ha?>tJvlr)@xP6}JGDaNolIs-Mw^YkYkx@5}h-KoXl&C4>a=F|r5)&rARG<0gq zHn3PLOI`fp8+g=r!jy#DN3(C0uUIwn1S``lqt@>dMS2r&UV451y?bJ2*M=!Us!KzE z8D+c8{P{ii(pA+}ug$Y>3q4r7G`r)fxq>Rcr{`tS)pJpch)l9SGRO$z3QFCcEcp_*Eimy*Gi=xADi?{_Eqs2 z9g`nkjThSvT}r^yWSv~_7kuO?r;?*Y>_`k4{yw>!k{3e3H=a8-(uc#*@TRQXvNf**4`-q|J| z`{vB$EzBk39weZ{YyA2By(Oz}E?ISdRi=N4W5lZdtJj^6^1WXXQ5rvIm$qQvxmjFH z-g-RVNdnWRkx)(wKYk0)^6-e&ZnNpj61O;GmR z;F9=Ks%h!jTi;lw8v415?B=|Abk@EI-|#)#QoEN;I&>-B`UhKD0n`@>#4>IxkeDZR*S7Er00z$-wjQT<&{0b4NhL zuJp<4@+Pk;+Tj>hKE`;j zyYP&VdT<0R?=OAH?!9tqQPfg>Z3geoSI2xcJXZ2%ef_HH`?^c_^_N(IX^Tv4KbYNK zv+~|zTkph|#xb$2Ng|z5*S0vsH7#M8zwY|&F!AqeG+)N9HO$vB+q-(#ffoJa+jrY6 zzEn_XPzlLq3OhhG~qz zw2-s2w``N>m0Y?|BQr8OCvx@ssP(cf8(P8-hbBeLsxXZ)C_OOa9=C&tY>oZar7v!Y zo$zLvb|QJjx@cj7b4S^9e?FIr|EFVT<`ki4I*oguNE&o z%aNxXo)EzVEnGLaBxYJI<1=VEFln2jHW9oI}jo!o0-@2>7U z@1mpDB^wa&%f5Z7%M)KCC!a%0Qd(X~@$Jt3YAZ19n&|g+;mZC;?;R@kk!Vw$c<7Re zr)+{!=jjVU7EIn%(Od4-ORdeiw=BOZym#5Q<2(Xf-q-WyEnT$i#+>d<_t`T$W;18* zR*n1sDdb=NYFIkwm3Lxh?M6+OX>1BQj(;~qMi)B#m6K_>vC(9?%7JLEzhxrR*4^52 zj#K+l9Ll6lD_0# ze041M*RI%A{G2+0=PzyL^RDhM&kwtrbE;;3WZC@5%yE88<}H26>}}|(yK&aFue)}c z?z&ZKRb1owU2JY;^~A;lLMCAq>xKWFuX1%10_Bij5fNS&O5HNoNPFE{bn4dszzbWV zlB3tZ>(qXCHzeuK3aj1wKisHaqq@DPqQWz5%Iy1ZcQEOE^w7|$UA1A$;|(w0p6QP6 zKlHBu%GcwT3LQcbIjgyOC&zz|GHI4hx=mGl4c&-ATrG^I^xh`trpcu0{sVs zrt}`Sx_`oO&1v&D_V;Aw*UdPhQ&~Cd;O|>)ORr`={oS{1VW!2K$fgY{Tyu_8YwFbd zvPaws$?3d4Q$c6#wQFlGZaJ8!7nph{D&U;XzLUxuWuCJrd2eD4Ixp0^lrvFt@u6}{ z9aWk4f7Wj)zHKiPx&C#;kZD;s`UK^MFp46+S8i% zD>rGoUEZR$KkxI#b!XM9lD*fim)$iX>RsII`r5+(52szV=2D(^FZJ!F!)bywHmyrv zGI&pzGUd%djTX+X%;s&XZsGesN1PV>`g6&pVwL9Y8cj1}*HuPzom<T^S8 zxp+RWI(Oam6%W2ML{8Dv`FsC}&dcbeEh`@9+uhr_Z-t=ZWx?C;f@ACN7MIjV9*(x= z61)HN$;(e_^5(+kO>?GgxFXV^YBKMb&_&6`CSN&!?Ru*kYF%$4@ACe9qS(DhGap(` zTgM%7D=x`TXNAkWrK;b1DyA~zOKmoZ{nnFZx!Y(EjPW|m}y}z zv%#X@!PZ-3nwpQSK*Q3DA2+15ZV)LxvSZhZ#M>wT-B|Rk*VVW1=JK+YeYO8KrvLkQ zj?J~xkyq`2v`@m{djWsl>JwkS;@!u&>zZk6?`{9DdxHbEJ6>fu{^;t==gFV-Qsx@| zFMs2h_VT&(8fQPT?MKfP2m1s^T#`PSAhmp>LgRxa%}1hlKaTkOYt5$e(B*mce|DA@ z-oB_dZ;j37=4tEL&tF=1Y1-S$=T6LfD))CEx>VAzG-8W!E9aq0zb3Vr&f4}>tKPUp zRpfzfy=9B)`f`@{-24{vL9Mw$m!ACctm#FU(>ZU=YQ84 zwuXNE`FwK!_5aV?%Jb`9c)t%f*-_ECg{fZKYmUq0AV2+xuJFYzi!!RELVuo1HkIb? zTVL~O{yond4?jLGeYVCW@#UJ8$+;e+gdi>v(^m^Hy&j%UuP3CwWc--Q~z2I_z$TYq7r6tVOk~%YmPx(lf zYz>@s%c9=*@vbYM{;IAmulxCXe|@rUxBaTiFP}xo|M}B&p4FxA(53&8lMc5CeP&x* zSsGZJQ&{a(=pAzJ=aujO?5nRc%BN0!n_u<5Wr9G}#8piS362{VJkYup>Tn>$m@YxAXh#ll2Wh=Iy!vST}pp{nWZd zqnS0I?^d7tIluVd^Es32|7N76RBc~m{9NU*KuDmnQNG5Sh0fiZ_J-$3^`+hC2wIhp z@N%=RyL$e~*)u-Jo@$tVZ=PAZ@;RNr^9y*QDpEK%zr1~{m9thf+le9KR80MiQwM}@ zvMxKWcUhU$+ltY9_2-|a^>DAxP|7y(mG3op@v1Pm!A0~?1eGu4FzxD-R z|Mr`_EitpTP8VrM{QA%6Exdi|-{S0_ExAwS^KHLg>-zh7zwOuQ{m+h-?|k-Rr&L^M zWn+c2*W$I)Ja#oq4ckz{+O+h%nXsU>Rq1TiJ@0$hpZ#&^>@giJt7$8$@@^(*PWa^! z${wuD6lOW=@^PkyrF^gXZ*S5$WORe6Y5IryNj5bzfBGsa#^?I|XG!rx5vFO|rug0|Df;y7vatD_IlC6Wnf&(nv3#vx zImc)Eo5@ta`1&*R@4KRxPxicQ)7xk==fKG(g)L7GI*0Q`?AkDeN6hB@WNz-P zG<*BM-^6{jGD`PbT@Ud%kSUb!aO*jf?(qc=>TS|Ht#*baXFoaY;h(?nMs z>7E(9#_)MYVB?kz0ZIFWiYr&R{9opN|FvUsz}fY`-x}SlmAE&3y?}a^@4n2M_r9PY#Is9i6<}r;vHLeuhU3x2JiRkf@LC7ABwqz8oRVKUcK11 znm=^C)(1VE2m5uVJQvH_+}(52^_BS1l!@<6A35uu2^W9GU{dgqeuRE@#|?5FEzeSZ7WGrRtq@5!H;pFXV*a5{ci zUF+wwgIreK--LZd8DgSCgxKx&Eprw+;`~i}Pwlp&8`n6*M63|FKRGahD3d&6Yi^~SpH@5%GqLjCU+<(>L9dGq#p zGiDZNe48cz*qV2SL2;n+^7<12vFm0obG;Om!1#E5>(rVAPeWyIDV4t`C);S8^s{W2 zjTFnwY`oZ0p?{d^^tnayl}e8L|DCurW$kghdttx6{kr^k|Ehm~jA%e6N_S2tj~h=)eig&)1gIj79s^!Uh?+~etQ zY^+l+zs!{O_rG6}^33XV^ZD94#V0f#{kv^@h_zGbfcLI@lUhG^c^{U1-l+P?ep9-} zlDF3mn`ZOhJeYs#>Oc7dLFWQ%PfZKHADSpqU-td^!75dalKd z!V4?d=l^VvHcgy#?a{Lutyz~^Hr_rkDLOPJrCG^%yXfS*g#yhUF@BFKgtRSpOVkH4 z^%r-QZa87`;6t>W<1TK6QyW#{8=qL;6%ku7uQ(zyrX^hNVDYyo@i&_%?ccHPK(Ere zs7=q$Tq&*potAsYyzrx#$joi)f2=8qd;UDF;g(Wr?DCoMu7(O+uNXF5v9vzFZIOe* z_U%7!JfH2u$u;fEeLekuKkWa6Eo4hrIpcw<&o!HR6$AhHiRywDd#&UzExTM6;&(U9 zI5G6(ncm}RYps1I1QjjM4u4W}^@$KqmYZe&^xUaRD|P2>XsOpv(N2svlRq#iuSoPy zLMLnej4Ltoj$5`iOc#58ay8eFtvk&`E@rQJv;S-rrZwNz?dsY8`F5g;+lXO*~fNb>;Vk z2%)!=F6aom{ZCS?QhLdvQ?IK#g;6Kh;?v1z$(Oe=NBp|JO*q(GZsx9a8P}FAD*QiV z=C$8q?OjXb`{r=Cc&$x%d7ph+fw520>FI5Y{X`z?d$LxtByTu@(-`M{&`vZyxP~nZBtH6zy7kJpx*Vg zmA!)FDvmN=qYdp9TNPukzso;$>-|})p6O8y44WHPz1GiEYP;zxmiwc(e}UnQo4S{t ziv-_sU3h(xaYfoXoBa{-b!Q^V+h!y@pQUWmwdd90)ZO;+`@i3{wA9#n``#m?N5{E# z-QTgLNmaCl&-qeAeFNj2wsMt(%*cfYGK5mr0p>9KdmLQS(i_Q zGa>WUwMq4wxBVSYB>i5QIh#BG_vPEN?03|HHfNVlaBfeHOzS^$hok92&_N-=12=T1 zwOwUTWt#TvDbo*@4IyjJE{tP49e+4!;jKg74V%Qjruu|6yGDj7EZ(6gY$p4=B>3bN zU3dH20bg$J`lG*1V7}`A{`G&gw|?i~-)p1Rc{WncKIl?(S$)s{p}x8E9q6PMe6pwd%n*3 zpTWDM{4W1_EJ7Dv)$lrf>WR_HiH6S)uJQ|JnD}?!sp;DyKHPGyNY#r=WE9?M!mrP! z#uFF9p>x0T==2TG#3i}A>v=wT?3*9$Q=?}yd##gAs=WKW_@Ex~Cq=>gR^Eu}3Y>lL zbiKvD{+HTKm#aj>EG&xBQgl`{zT76pKP^FO*@D+vhT(YvE6$jTz3yV-nwGJkVTS#N z1`*Sr7HRuK<2p77Y)Da3U2&u_m5uWy9ou||xIrRCji z@5|TyJ2!1}eAM5~lWHAKTCGTtoit5eY!e^nX+H1nqOU*2{zzYE;#ON9KWDZ6Db)^+ zc{9@+X9;c+6Me8ox#F(o9*gkUnd{e{3^$)9p|R$@_T=fV<@GPNZ{N|gIQ^KaQ(n`` zr`#1ux`H~5`6ni(zSyMCb+K;kQpME=ocZ?5H0F(n7mM3eRl5TzPgtMA~ zD`u}@e%G3@cGH%I^IApeqGk(E$aU|xwN=f2zlXPd@~(R(iPyB2EvkJxC1JBk=o1V6 z-8G(hJFlJ+cm4fOIrlc5)x zC$=%3clTO5aj7<|&dYrf_bV+e>?5LPU*B@)&_vn!(Fs9r`teeIYnC3Zcz1r@oX1c6 z<85<;51#qTzAL8wy!`y1>^x?R&aGQ`f%?zyni;gayRqDGxyvF; zR*!{FD<+85`|D~=m?rx9bk`h>Rmb1>wx_4m&c0E3VtMg(AmE#C^;`%7&Ue3 zH0d|--scbe%(?dSs?x8@1kK{Z4|nBs8*9h6*y@^mfBOI5#MZS7lv{F^JyfdlyI+uT z?OF3?vwt>^I{kmuH#|5y zqt1#W!ER03hL94?hHVd$5;&^_Ggw^HpK>2rRJ(0m!MAOXB4_L7pN;u{L^}BQ{UUvT z-?dMqqwZe0QX&`hX?@s+lB2HELh4gaPH#JXBV%Rc+}m4}?(bIdj|<88k)5k|Txofp zXQN5A|J!TATwXh>e$A4<{k>k^@YzZ66GtmFLq1u&d85P|$uVc+1&Vr?p3C%0! z#_4LT;_dQqR@Br`5p7+za6`x=tAkwrZVx*(Y~)&1;|_84wu_2+%b%>D92oIHX}zaI z;S>I&3odl5cw!_<6c|Ji%sjr-A_HMKm1f$ z=j)M6sZV!urbNxs-*Aobf^CD)%(~rsYCNMWbxs{l%NDnfSCYS`^lP!In8)cf(TpQg z7I*BMpI$%z*4JJ7)AEEeZC9?CS=v46%u2??FF5annrvPAd3QbIv@HxLo)qj-jLJw5 zxm)O-`1n=xS4-DJn{4t5_w7*e-xJe+v|?YqYfPBJI<1oRH{yGRe)&c2tbV!fk6{1a z3(ueZ_PNJBJA+|k`O4Bg^Z%b#Z&(>!lpDb7zC=wt=-y}UqpYq%Qw}|S+*-LoY=*9? z>9fv1Wg69Ti6_N_m5TN%^~cYA?ewsAdH#ko_v1`VU+->@pHXm?_xps`4_9tKW8?dxq8QyD?e{# zeaHLLS6a7J!{qZVL4Mnxf2{Q;zA9c}mtH!BYj5tZRoS}dKZo*8&2aG(dAsMqr44?Z zM;^@na3%i}i%y@NCi@io|I=Kv|C}|d|0>?ye(s#zEbTK#!|HGP@O;wf=y|c|ut;(& zZ^Ndl1q(APJ!Kv+zrG+Su#K}-CC|PjD?9IJ+np?>V9TAn*}7qyii#4~ZoHxAxo^{_ zA8%q3&nDLSt~0;==-f7o@TZpHk#|<>eE9P!rt)lJ=G#QO=NqaQAKiHHQpX`HwQ|`R zdkeQm9||fy9Tq!fk6QlC`U$ER7r$03+$gH^S1RI?NpZ+_mg-rX{uWez+gE(LZdJ_O z=P{8FPMs@{op!wD{3jd#vW+{oo!I@W;P9_IQ6keU%m4P9-~az*!tQ?_Epr!`ujfj1 zoPOFd^2OTC6V5YxZ`o&^+J1DGW∈*TX~w3=Zp_D%aC1n3z8;VvFj|8EcM;)h8!1 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

X?5Zhgnx}`* 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

a$hmN{{Qvx*Y5-MGcO+on? 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 overrides the installation prefix + --exec-prefix= overrides the executable installation prefix + --libdir= overrides the library installation prefix + --includedir= overrides the header file installation prefix + + Installation Queries: + --prefix installation prefix + --exec-prefix executable installation prefix + --libdir library installation directory + --includedir header file installation directory + --version the version of the Google Test installation + + Version Queries: + --min-version=VERSION return 0 if the version is at least VERSION + --exact-version=VERSION return 0 if the version is exactly VERSION + --max-version=VERSION return 0 if the version is at most VERSION + + Compilation Flag Queries: + --cppflags compile flags specific to the C-like preprocessors + --cxxflags compile flags appropriate for C++ programs + --ldflags linker flags + --libs libraries for linking + +EOF +} + +# This function bounds our version with a min and a max. It uses some clever +# POSIX-compliant variable expansion to portably do all the work in the shell +# and avoid any dependency on a particular "sed" or "awk" implementation. +# Notable is that it will only ever compare the first 3 components of versions. +# Further components will be cleanly stripped off. All versions must be +# unadorned, so "v1.0" will *not* work. The minimum version must be in $1, and +# the max in $2. TODO(chandlerc@google.com): If this ever breaks, we should +# investigate expanding this via autom4te from AS_VERSION_COMPARE rather than +# continuing to maintain our own shell version. +check_versions() +{ + major_version=${version%%.*} + minor_version="0" + point_version="0" + if test "${version#*.}" != "${version}"; then + minor_version=${version#*.} + minor_version=${minor_version%%.*} + fi + if test "${version#*.*.}" != "${version}"; then + point_version=${version#*.*.} + point_version=${point_version%%.*} + fi + + min_version="$1" + min_major_version=${min_version%%.*} + min_minor_version="0" + min_point_version="0" + if test "${min_version#*.}" != "${min_version}"; then + min_minor_version=${min_version#*.} + min_minor_version=${min_minor_version%%.*} + fi + if test "${min_version#*.*.}" != "${min_version}"; then + min_point_version=${min_version#*.*.} + min_point_version=${min_point_version%%.*} + fi + + max_version="$2" + max_major_version=${max_version%%.*} + max_minor_version="0" + max_point_version="0" + if test "${max_version#*.}" != "${max_version}"; then + max_minor_version=${max_version#*.} + max_minor_version=${max_minor_version%%.*} + fi + if test "${max_version#*.*.}" != "${max_version}"; then + max_point_version=${max_version#*.*.} + max_point_version=${max_point_version%%.*} + fi + + test $(($major_version)) -lt $(($min_major_version)) && exit 1 + if test $(($major_version)) -eq $(($min_major_version)); then + test $(($minor_version)) -lt $(($min_minor_version)) && exit 1 + if test $(($minor_version)) -eq $(($min_minor_version)); then + test $(($point_version)) -lt $(($min_point_version)) && exit 1 + fi + fi + + test $(($major_version)) -gt $(($max_major_version)) && exit 1 + if test $(($major_version)) -eq $(($max_major_version)); then + test $(($minor_version)) -gt $(($max_minor_version)) && exit 1 + if test $(($minor_version)) -eq $(($max_minor_version)); then + test $(($point_version)) -gt $(($max_point_version)) && exit 1 + fi + fi + + exit 0 +} + +# Show the usage line when no arguments are specified. +if test $# -eq 0; then + show_usage + exit 1 +fi + +while test $# -gt 0; do + case $1 in + --usage) show_usage; exit 0;; + --help) show_help; exit 0;; + + # Installation overrides + --prefix=*) GTEST_PREFIX=${1#--prefix=};; + --exec-prefix=*) GTEST_EXEC_PREFIX=${1#--exec-prefix=};; + --libdir=*) GTEST_LIBDIR=${1#--libdir=};; + --includedir=*) GTEST_INCLUDEDIR=${1#--includedir=};; + + # Installation queries + --prefix|--exec-prefix|--libdir|--includedir|--version) + if test -n "${do_query}"; then + show_usage + exit 1 + fi + do_query=${1#--} + ;; + + # Version checking + --min-version=*) + do_check_versions=yes + min_version=${1#--min-version=} + ;; + --max-version=*) + do_check_versions=yes + max_version=${1#--max-version=} + ;; + --exact-version=*) + do_check_versions=yes + exact_version=${1#--exact-version=} + ;; + + # Compiler flag output + --cppflags) echo_cppflags=yes;; + --cxxflags) echo_cxxflags=yes;; + --ldflags) echo_ldflags=yes;; + --libs) echo_libs=yes;; + + # Everything else is an error + *) show_usage; exit 1;; + esac + shift +done + +# These have defaults filled in by the configure script but can also be +# overridden by environment variables or command line parameters. +prefix="${GTEST_PREFIX:-@prefix@}" +exec_prefix="${GTEST_EXEC_PREFIX:-@exec_prefix@}" +libdir="${GTEST_LIBDIR:-@libdir@}" +includedir="${GTEST_INCLUDEDIR:-@includedir@}" + +# We try and detect if our binary is not located at its installed location. If +# it's not, we provide variables pointing to the source and build tree rather +# than to the install tree. This allows building against a just-built gtest +# rather than an installed gtest. +bindir="@bindir@" +this_relative_bindir=`dirname $0` +this_bindir=`cd ${this_relative_bindir}; pwd -P` +if test "${this_bindir}" = "${this_bindir%${bindir}}"; then + # The path to the script doesn't end in the bindir sequence from Autoconf, + # assume that we are in a build tree. + build_dir=`dirname ${this_bindir}` + src_dir=`cd ${this_bindir}; cd @top_srcdir@; pwd -P` + + # TODO(chandlerc@google.com): This is a dangerous dependency on libtool, we + # should work to remove it, and/or remove libtool altogether, replacing it + # with direct references to the library and a link path. + gtest_libs="${build_dir}/lib/libgtest.la @PTHREAD_CFLAGS@ @PTHREAD_LIBS@" + gtest_ldflags="" + + # We provide hooks to include from either the source or build dir, where the + # build dir is always preferred. This will potentially allow us to write + # build rules for generated headers and have them automatically be preferred + # over provided versions. + gtest_cppflags="-I${build_dir}/include -I${src_dir}/include" + gtest_cxxflags="@PTHREAD_CFLAGS@" +else + # We're using an installed gtest, although it may be staged under some + # prefix. Assume (as our own libraries do) that we can resolve the prefix, + # and are present in the dynamic link paths. + gtest_ldflags="-L${libdir}" + gtest_libs="-l${name} @PTHREAD_CFLAGS@ @PTHREAD_LIBS@" + gtest_cppflags="-I${includedir}" + gtest_cxxflags="@PTHREAD_CFLAGS@" +fi + +# Do an installation query if requested. +if test -n "$do_query"; then + case $do_query in + prefix) echo $prefix; exit 0;; + exec-prefix) echo $exec_prefix; exit 0;; + libdir) echo $libdir; exit 0;; + includedir) echo $includedir; exit 0;; + version) echo $version; exit 0;; + *) show_usage; exit 1;; + esac +fi + +# Do a version check if requested. +if test "$do_check_versions" = "yes"; then + # Make sure we didn't receive a bad combination of parameters. + test "$echo_cppflags" = "yes" && show_usage && exit 1 + test "$echo_cxxflags" = "yes" && show_usage && exit 1 + test "$echo_ldflags" = "yes" && show_usage && exit 1 + test "$echo_libs" = "yes" && show_usage && exit 1 + + if test "$exact_version" != ""; then + check_versions $exact_version $exact_version + # unreachable + else + check_versions ${min_version:-0.0.0} ${max_version:-9999.9999.9999} + # unreachable + fi +fi + +# Do the output in the correct order so that these can be used in-line of +# a compiler invocation. +output="" +test "$echo_cppflags" = "yes" && output="$output $gtest_cppflags" +test "$echo_cxxflags" = "yes" && output="$output $gtest_cxxflags" +test "$echo_ldflags" = "yes" && output="$output $gtest_ldflags" +test "$echo_libs" = "yes" && output="$output $gtest_libs" +echo $output + +exit 0 diff --git a/cpp/thirdparty/gtest-1.7.0/scripts/pump.py b/cpp/thirdparty/gtest-1.7.0/scripts/pump.py new file mode 100755 index 000000000..5efb653c2 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/scripts/pump.py @@ -0,0 +1,855 @@ +#!/usr/bin/env python +# +# Copyright 2008, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""pump v0.2.0 - Pretty Useful for Meta Programming. + +A tool for preprocessor meta programming. Useful for generating +repetitive boilerplate code. Especially useful for writing C++ +classes, functions, macros, and templates that need to work with +various number of arguments. + +USAGE: + pump.py SOURCE_FILE + +EXAMPLES: + pump.py foo.cc.pump + Converts foo.cc.pump to foo.cc. + +GRAMMAR: + CODE ::= ATOMIC_CODE* + ATOMIC_CODE ::= $var ID = EXPRESSION + | $var ID = [[ CODE ]] + | $range ID EXPRESSION..EXPRESSION + | $for ID SEPARATOR [[ CODE ]] + | $($) + | $ID + | $(EXPRESSION) + | $if EXPRESSION [[ CODE ]] ELSE_BRANCH + | [[ CODE ]] + | RAW_CODE + SEPARATOR ::= RAW_CODE | EMPTY + ELSE_BRANCH ::= $else [[ CODE ]] + | $elif EXPRESSION [[ CODE ]] ELSE_BRANCH + | EMPTY + EXPRESSION has Python syntax. +""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import os +import re +import sys + + +TOKEN_TABLE = [ + (re.compile(r'\$var\s+'), '$var'), + (re.compile(r'\$elif\s+'), '$elif'), + (re.compile(r'\$else\s+'), '$else'), + (re.compile(r'\$for\s+'), '$for'), + (re.compile(r'\$if\s+'), '$if'), + (re.compile(r'\$range\s+'), '$range'), + (re.compile(r'\$[_A-Za-z]\w*'), '$id'), + (re.compile(r'\$\(\$\)'), '$($)'), + (re.compile(r'\$'), '$'), + (re.compile(r'\[\[\n?'), '[['), + (re.compile(r'\]\]\n?'), ']]'), + ] + + +class Cursor: + """Represents a position (line and column) in a text file.""" + + def __init__(self, line=-1, column=-1): + self.line = line + self.column = column + + def __eq__(self, rhs): + return self.line == rhs.line and self.column == rhs.column + + def __ne__(self, rhs): + return not self == rhs + + def __lt__(self, rhs): + return self.line < rhs.line or ( + self.line == rhs.line and self.column < rhs.column) + + def __le__(self, rhs): + return self < rhs or self == rhs + + def __gt__(self, rhs): + return rhs < self + + def __ge__(self, rhs): + return rhs <= self + + def __str__(self): + if self == Eof(): + return 'EOF' + else: + return '%s(%s)' % (self.line + 1, self.column) + + def __add__(self, offset): + return Cursor(self.line, self.column + offset) + + def __sub__(self, offset): + return Cursor(self.line, self.column - offset) + + def Clone(self): + """Returns a copy of self.""" + + return Cursor(self.line, self.column) + + +# Special cursor to indicate the end-of-file. +def Eof(): + """Returns the special cursor to denote the end-of-file.""" + return Cursor(-1, -1) + + +class Token: + """Represents a token in a Pump source file.""" + + def __init__(self, start=None, end=None, value=None, token_type=None): + if start is None: + self.start = Eof() + else: + self.start = start + if end is None: + self.end = Eof() + else: + self.end = end + self.value = value + self.token_type = token_type + + def __str__(self): + return 'Token @%s: \'%s\' type=%s' % ( + self.start, self.value, self.token_type) + + def Clone(self): + """Returns a copy of self.""" + + return Token(self.start.Clone(), self.end.Clone(), self.value, + self.token_type) + + +def StartsWith(lines, pos, string): + """Returns True iff the given position in lines starts with 'string'.""" + + return lines[pos.line][pos.column:].startswith(string) + + +def FindFirstInLine(line, token_table): + best_match_start = -1 + for (regex, token_type) in token_table: + m = regex.search(line) + if m: + # We found regex in lines + if best_match_start < 0 or m.start() < best_match_start: + best_match_start = m.start() + best_match_length = m.end() - m.start() + best_match_token_type = token_type + + if best_match_start < 0: + return None + + return (best_match_start, best_match_length, best_match_token_type) + + +def FindFirst(lines, token_table, cursor): + """Finds the first occurrence of any string in strings in lines.""" + + start = cursor.Clone() + cur_line_number = cursor.line + for line in lines[start.line:]: + if cur_line_number == start.line: + line = line[start.column:] + m = FindFirstInLine(line, token_table) + if m: + # We found a regex in line. + (start_column, length, token_type) = m + if cur_line_number == start.line: + start_column += start.column + found_start = Cursor(cur_line_number, start_column) + found_end = found_start + length + return MakeToken(lines, found_start, found_end, token_type) + cur_line_number += 1 + # We failed to find str in lines + return None + + +def SubString(lines, start, end): + """Returns a substring in lines.""" + + if end == Eof(): + end = Cursor(len(lines) - 1, len(lines[-1])) + + if start >= end: + return '' + + if start.line == end.line: + return lines[start.line][start.column:end.column] + + result_lines = ([lines[start.line][start.column:]] + + lines[start.line + 1:end.line] + + [lines[end.line][:end.column]]) + return ''.join(result_lines) + + +def StripMetaComments(str): + """Strip meta comments from each line in the given string.""" + + # First, completely remove lines containing nothing but a meta + # comment, including the trailing \n. + str = re.sub(r'^\s*\$\$.*\n', '', str) + + # Then, remove meta comments from contentful lines. + return re.sub(r'\s*\$\$.*', '', str) + + +def MakeToken(lines, start, end, token_type): + """Creates a new instance of Token.""" + + return Token(start, end, SubString(lines, start, end), token_type) + + +def ParseToken(lines, pos, regex, token_type): + line = lines[pos.line][pos.column:] + m = regex.search(line) + if m and not m.start(): + return MakeToken(lines, pos, pos + m.end(), token_type) + else: + print 'ERROR: %s expected at %s.' % (token_type, pos) + sys.exit(1) + + +ID_REGEX = re.compile(r'[_A-Za-z]\w*') +EQ_REGEX = re.compile(r'=') +REST_OF_LINE_REGEX = re.compile(r'.*?(?=$|\$\$)') +OPTIONAL_WHITE_SPACES_REGEX = re.compile(r'\s*') +WHITE_SPACE_REGEX = re.compile(r'\s') +DOT_DOT_REGEX = re.compile(r'\.\.') + + +def Skip(lines, pos, regex): + line = lines[pos.line][pos.column:] + m = re.search(regex, line) + if m and not m.start(): + return pos + m.end() + else: + return pos + + +def SkipUntil(lines, pos, regex, token_type): + line = lines[pos.line][pos.column:] + m = re.search(regex, line) + if m: + return pos + m.start() + else: + print ('ERROR: %s expected on line %s after column %s.' % + (token_type, pos.line + 1, pos.column)) + sys.exit(1) + + +def ParseExpTokenInParens(lines, pos): + def ParseInParens(pos): + pos = Skip(lines, pos, OPTIONAL_WHITE_SPACES_REGEX) + pos = Skip(lines, pos, r'\(') + pos = Parse(pos) + pos = Skip(lines, pos, r'\)') + return pos + + def Parse(pos): + pos = SkipUntil(lines, pos, r'\(|\)', ')') + if SubString(lines, pos, pos + 1) == '(': + pos = Parse(pos + 1) + pos = Skip(lines, pos, r'\)') + return Parse(pos) + else: + return pos + + start = pos.Clone() + pos = ParseInParens(pos) + return MakeToken(lines, start, pos, 'exp') + + +def RStripNewLineFromToken(token): + if token.value.endswith('\n'): + return Token(token.start, token.end, token.value[:-1], token.token_type) + else: + return token + + +def TokenizeLines(lines, pos): + while True: + found = FindFirst(lines, TOKEN_TABLE, pos) + if not found: + yield MakeToken(lines, pos, Eof(), 'code') + return + + if found.start == pos: + prev_token = None + prev_token_rstripped = None + else: + prev_token = MakeToken(lines, pos, found.start, 'code') + prev_token_rstripped = RStripNewLineFromToken(prev_token) + + if found.token_type == '$var': + if prev_token_rstripped: + yield prev_token_rstripped + yield found + id_token = ParseToken(lines, found.end, ID_REGEX, 'id') + yield id_token + pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX) + + eq_token = ParseToken(lines, pos, EQ_REGEX, '=') + yield eq_token + pos = Skip(lines, eq_token.end, r'\s*') + + if SubString(lines, pos, pos + 2) != '[[': + exp_token = ParseToken(lines, pos, REST_OF_LINE_REGEX, 'exp') + yield exp_token + pos = Cursor(exp_token.end.line + 1, 0) + elif found.token_type == '$for': + if prev_token_rstripped: + yield prev_token_rstripped + yield found + id_token = ParseToken(lines, found.end, ID_REGEX, 'id') + yield id_token + pos = Skip(lines, id_token.end, WHITE_SPACE_REGEX) + elif found.token_type == '$range': + if prev_token_rstripped: + yield prev_token_rstripped + yield found + id_token = ParseToken(lines, found.end, ID_REGEX, 'id') + yield id_token + pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX) + + dots_pos = SkipUntil(lines, pos, DOT_DOT_REGEX, '..') + yield MakeToken(lines, pos, dots_pos, 'exp') + yield MakeToken(lines, dots_pos, dots_pos + 2, '..') + pos = dots_pos + 2 + new_pos = Cursor(pos.line + 1, 0) + yield MakeToken(lines, pos, new_pos, 'exp') + pos = new_pos + elif found.token_type == '$': + if prev_token: + yield prev_token + yield found + exp_token = ParseExpTokenInParens(lines, found.end) + yield exp_token + pos = exp_token.end + elif (found.token_type == ']]' or found.token_type == '$if' or + found.token_type == '$elif' or found.token_type == '$else'): + if prev_token_rstripped: + yield prev_token_rstripped + yield found + pos = found.end + else: + if prev_token: + yield prev_token + yield found + pos = found.end + + +def Tokenize(s): + """A generator that yields the tokens in the given string.""" + if s != '': + lines = s.splitlines(True) + for token in TokenizeLines(lines, Cursor(0, 0)): + yield token + + +class CodeNode: + def __init__(self, atomic_code_list=None): + self.atomic_code = atomic_code_list + + +class VarNode: + def __init__(self, identifier=None, atomic_code=None): + self.identifier = identifier + self.atomic_code = atomic_code + + +class RangeNode: + def __init__(self, identifier=None, exp1=None, exp2=None): + self.identifier = identifier + self.exp1 = exp1 + self.exp2 = exp2 + + +class ForNode: + def __init__(self, identifier=None, sep=None, code=None): + self.identifier = identifier + self.sep = sep + self.code = code + + +class ElseNode: + def __init__(self, else_branch=None): + self.else_branch = else_branch + + +class IfNode: + def __init__(self, exp=None, then_branch=None, else_branch=None): + self.exp = exp + self.then_branch = then_branch + self.else_branch = else_branch + + +class RawCodeNode: + def __init__(self, token=None): + self.raw_code = token + + +class LiteralDollarNode: + def __init__(self, token): + self.token = token + + +class ExpNode: + def __init__(self, token, python_exp): + self.token = token + self.python_exp = python_exp + + +def PopFront(a_list): + head = a_list[0] + a_list[:1] = [] + return head + + +def PushFront(a_list, elem): + a_list[:0] = [elem] + + +def PopToken(a_list, token_type=None): + token = PopFront(a_list) + if token_type is not None and token.token_type != token_type: + print 'ERROR: %s expected at %s' % (token_type, token.start) + print 'ERROR: %s found instead' % (token,) + sys.exit(1) + + return token + + +def PeekToken(a_list): + if not a_list: + return None + + return a_list[0] + + +def ParseExpNode(token): + python_exp = re.sub(r'([_A-Za-z]\w*)', r'self.GetValue("\1")', token.value) + return ExpNode(token, python_exp) + + +def ParseElseNode(tokens): + def Pop(token_type=None): + return PopToken(tokens, token_type) + + next = PeekToken(tokens) + if not next: + return None + if next.token_type == '$else': + Pop('$else') + Pop('[[') + code_node = ParseCodeNode(tokens) + Pop(']]') + return code_node + elif next.token_type == '$elif': + Pop('$elif') + exp = Pop('code') + Pop('[[') + code_node = ParseCodeNode(tokens) + Pop(']]') + inner_else_node = ParseElseNode(tokens) + return CodeNode([IfNode(ParseExpNode(exp), code_node, inner_else_node)]) + elif not next.value.strip(): + Pop('code') + return ParseElseNode(tokens) + else: + return None + + +def ParseAtomicCodeNode(tokens): + def Pop(token_type=None): + return PopToken(tokens, token_type) + + head = PopFront(tokens) + t = head.token_type + if t == 'code': + return RawCodeNode(head) + elif t == '$var': + id_token = Pop('id') + Pop('=') + next = PeekToken(tokens) + if next.token_type == 'exp': + exp_token = Pop() + return VarNode(id_token, ParseExpNode(exp_token)) + Pop('[[') + code_node = ParseCodeNode(tokens) + Pop(']]') + return VarNode(id_token, code_node) + elif t == '$for': + id_token = Pop('id') + next_token = PeekToken(tokens) + if next_token.token_type == 'code': + sep_token = next_token + Pop('code') + else: + sep_token = None + Pop('[[') + code_node = ParseCodeNode(tokens) + Pop(']]') + return ForNode(id_token, sep_token, code_node) + elif t == '$if': + exp_token = Pop('code') + Pop('[[') + code_node = ParseCodeNode(tokens) + Pop(']]') + else_node = ParseElseNode(tokens) + return IfNode(ParseExpNode(exp_token), code_node, else_node) + elif t == '$range': + id_token = Pop('id') + exp1_token = Pop('exp') + Pop('..') + exp2_token = Pop('exp') + return RangeNode(id_token, ParseExpNode(exp1_token), + ParseExpNode(exp2_token)) + elif t == '$id': + return ParseExpNode(Token(head.start + 1, head.end, head.value[1:], 'id')) + elif t == '$($)': + return LiteralDollarNode(head) + elif t == '$': + exp_token = Pop('exp') + return ParseExpNode(exp_token) + elif t == '[[': + code_node = ParseCodeNode(tokens) + Pop(']]') + return code_node + else: + PushFront(tokens, head) + return None + + +def ParseCodeNode(tokens): + atomic_code_list = [] + while True: + if not tokens: + break + atomic_code_node = ParseAtomicCodeNode(tokens) + if atomic_code_node: + atomic_code_list.append(atomic_code_node) + else: + break + return CodeNode(atomic_code_list) + + +def ParseToAST(pump_src_text): + """Convert the given Pump source text into an AST.""" + tokens = list(Tokenize(pump_src_text)) + code_node = ParseCodeNode(tokens) + return code_node + + +class Env: + def __init__(self): + self.variables = [] + self.ranges = [] + + def Clone(self): + clone = Env() + clone.variables = self.variables[:] + clone.ranges = self.ranges[:] + return clone + + def PushVariable(self, var, value): + # If value looks like an int, store it as an int. + try: + int_value = int(value) + if ('%s' % int_value) == value: + value = int_value + except Exception: + pass + self.variables[:0] = [(var, value)] + + def PopVariable(self): + self.variables[:1] = [] + + def PushRange(self, var, lower, upper): + self.ranges[:0] = [(var, lower, upper)] + + def PopRange(self): + self.ranges[:1] = [] + + def GetValue(self, identifier): + for (var, value) in self.variables: + if identifier == var: + return value + + print 'ERROR: meta variable %s is undefined.' % (identifier,) + sys.exit(1) + + def EvalExp(self, exp): + try: + result = eval(exp.python_exp) + except Exception, e: + print 'ERROR: caught exception %s: %s' % (e.__class__.__name__, e) + print ('ERROR: failed to evaluate meta expression %s at %s' % + (exp.python_exp, exp.token.start)) + sys.exit(1) + return result + + def GetRange(self, identifier): + for (var, lower, upper) in self.ranges: + if identifier == var: + return (lower, upper) + + print 'ERROR: range %s is undefined.' % (identifier,) + sys.exit(1) + + +class Output: + def __init__(self): + self.string = '' + + def GetLastLine(self): + index = self.string.rfind('\n') + if index < 0: + return '' + + return self.string[index + 1:] + + def Append(self, s): + self.string += s + + +def RunAtomicCode(env, node, output): + if isinstance(node, VarNode): + identifier = node.identifier.value.strip() + result = Output() + RunAtomicCode(env.Clone(), node.atomic_code, result) + value = result.string + env.PushVariable(identifier, value) + elif isinstance(node, RangeNode): + identifier = node.identifier.value.strip() + lower = int(env.EvalExp(node.exp1)) + upper = int(env.EvalExp(node.exp2)) + env.PushRange(identifier, lower, upper) + elif isinstance(node, ForNode): + identifier = node.identifier.value.strip() + if node.sep is None: + sep = '' + else: + sep = node.sep.value + (lower, upper) = env.GetRange(identifier) + for i in range(lower, upper + 1): + new_env = env.Clone() + new_env.PushVariable(identifier, i) + RunCode(new_env, node.code, output) + if i != upper: + output.Append(sep) + elif isinstance(node, RawCodeNode): + output.Append(node.raw_code.value) + elif isinstance(node, IfNode): + cond = env.EvalExp(node.exp) + if cond: + RunCode(env.Clone(), node.then_branch, output) + elif node.else_branch is not None: + RunCode(env.Clone(), node.else_branch, output) + elif isinstance(node, ExpNode): + value = env.EvalExp(node) + output.Append('%s' % (value,)) + elif isinstance(node, LiteralDollarNode): + output.Append('$') + elif isinstance(node, CodeNode): + RunCode(env.Clone(), node, output) + else: + print 'BAD' + print node + sys.exit(1) + + +def RunCode(env, code_node, output): + for atomic_code in code_node.atomic_code: + RunAtomicCode(env, atomic_code, output) + + +def IsSingleLineComment(cur_line): + return '//' in cur_line + + +def IsInPreprocessorDirective(prev_lines, cur_line): + if cur_line.lstrip().startswith('#'): + return True + return prev_lines and prev_lines[-1].endswith('\\') + + +def WrapComment(line, output): + loc = line.find('//') + before_comment = line[:loc].rstrip() + if before_comment == '': + indent = loc + else: + output.append(before_comment) + indent = len(before_comment) - len(before_comment.lstrip()) + prefix = indent*' ' + '// ' + max_len = 80 - len(prefix) + comment = line[loc + 2:].strip() + segs = [seg for seg in re.split(r'(\w+\W*)', comment) if seg != ''] + cur_line = '' + for seg in segs: + if len((cur_line + seg).rstrip()) < max_len: + cur_line += seg + else: + if cur_line.strip() != '': + output.append(prefix + cur_line.rstrip()) + cur_line = seg.lstrip() + if cur_line.strip() != '': + output.append(prefix + cur_line.strip()) + + +def WrapCode(line, line_concat, output): + indent = len(line) - len(line.lstrip()) + prefix = indent*' ' # Prefix of the current line + max_len = 80 - indent - len(line_concat) # Maximum length of the current line + new_prefix = prefix + 4*' ' # Prefix of a continuation line + new_max_len = max_len - 4 # Maximum length of a continuation line + # Prefers to wrap a line after a ',' or ';'. + segs = [seg for seg in re.split(r'([^,;]+[,;]?)', line.strip()) if seg != ''] + cur_line = '' # The current line without leading spaces. + for seg in segs: + # If the line is still too long, wrap at a space. + while cur_line == '' and len(seg.strip()) > max_len: + seg = seg.lstrip() + split_at = seg.rfind(' ', 0, max_len) + output.append(prefix + seg[:split_at].strip() + line_concat) + seg = seg[split_at + 1:] + prefix = new_prefix + max_len = new_max_len + + if len((cur_line + seg).rstrip()) < max_len: + cur_line = (cur_line + seg).lstrip() + else: + output.append(prefix + cur_line.rstrip() + line_concat) + prefix = new_prefix + max_len = new_max_len + cur_line = seg.lstrip() + if cur_line.strip() != '': + output.append(prefix + cur_line.strip()) + + +def WrapPreprocessorDirective(line, output): + WrapCode(line, ' \\', output) + + +def WrapPlainCode(line, output): + WrapCode(line, '', output) + + +def IsMultiLineIWYUPragma(line): + return re.search(r'/\* IWYU pragma: ', line) + + +def IsHeaderGuardIncludeOrOneLineIWYUPragma(line): + return (re.match(r'^#(ifndef|define|endif\s*//)\s*[\w_]+\s*$', line) or + re.match(r'^#include\s', line) or + # Don't break IWYU pragmas, either; that causes iwyu.py problems. + re.search(r'// IWYU pragma: ', line)) + + +def WrapLongLine(line, output): + line = line.rstrip() + if len(line) <= 80: + output.append(line) + elif IsSingleLineComment(line): + if IsHeaderGuardIncludeOrOneLineIWYUPragma(line): + # The style guide made an exception to allow long header guard lines, + # includes and IWYU pragmas. + output.append(line) + else: + WrapComment(line, output) + elif IsInPreprocessorDirective(output, line): + if IsHeaderGuardIncludeOrOneLineIWYUPragma(line): + # The style guide made an exception to allow long header guard lines, + # includes and IWYU pragmas. + output.append(line) + else: + WrapPreprocessorDirective(line, output) + elif IsMultiLineIWYUPragma(line): + output.append(line) + else: + WrapPlainCode(line, output) + + +def BeautifyCode(string): + lines = string.splitlines() + output = [] + for line in lines: + WrapLongLine(line, output) + output2 = [line.rstrip() for line in output] + return '\n'.join(output2) + '\n' + + +def ConvertFromPumpSource(src_text): + """Return the text generated from the given Pump source text.""" + ast = ParseToAST(StripMetaComments(src_text)) + output = Output() + RunCode(Env(), ast, output) + return BeautifyCode(output.string) + + +def main(argv): + if len(argv) == 1: + print __doc__ + sys.exit(1) + + file_path = argv[-1] + output_str = ConvertFromPumpSource(file(file_path, 'r').read()) + if file_path.endswith('.pump'): + output_file_path = file_path[:-5] + else: + output_file_path = '-' + if output_file_path == '-': + print output_str, + else: + output_file = file(output_file_path, 'w') + output_file.write('// This file was GENERATED by command:\n') + output_file.write('// %s %s\n' % + (os.path.basename(__file__), os.path.basename(file_path))) + output_file.write('// DO NOT EDIT BY HAND!!!\n\n') + output_file.write(output_str) + output_file.close() + + +if __name__ == '__main__': + main(sys.argv) diff --git a/cpp/thirdparty/gtest-1.7.0/scripts/test/Makefile b/cpp/thirdparty/gtest-1.7.0/scripts/test/Makefile new file mode 100644 index 000000000..cdff58463 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/scripts/test/Makefile @@ -0,0 +1,59 @@ +# A Makefile for fusing Google Test and building a sample test against it. +# +# SYNOPSIS: +# +# make [all] - makes everything. +# make TARGET - makes the given target. +# make check - makes everything and runs the built sample test. +# make clean - removes all files generated by make. + +# Points to the root of fused Google Test, relative to where this file is. +FUSED_GTEST_DIR = output + +# Paths to the fused gtest files. +FUSED_GTEST_H = $(FUSED_GTEST_DIR)/gtest/gtest.h +FUSED_GTEST_ALL_CC = $(FUSED_GTEST_DIR)/gtest/gtest-all.cc + +# Where to find the sample test. +SAMPLE_DIR = ../../samples + +# Where to find gtest_main.cc. +GTEST_MAIN_CC = ../../src/gtest_main.cc + +# Flags passed to the preprocessor. +# We have no idea here whether pthreads is available in the system, so +# disable its use. +CPPFLAGS += -I$(FUSED_GTEST_DIR) -DGTEST_HAS_PTHREAD=0 + +# Flags passed to the C++ compiler. +CXXFLAGS += -g + +all : sample1_unittest + +check : all + ./sample1_unittest + +clean : + rm -rf $(FUSED_GTEST_DIR) sample1_unittest *.o + +$(FUSED_GTEST_H) : + ../fuse_gtest_files.py $(FUSED_GTEST_DIR) + +$(FUSED_GTEST_ALL_CC) : + ../fuse_gtest_files.py $(FUSED_GTEST_DIR) + +gtest-all.o : $(FUSED_GTEST_H) $(FUSED_GTEST_ALL_CC) + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(FUSED_GTEST_DIR)/gtest/gtest-all.cc + +gtest_main.o : $(FUSED_GTEST_H) $(GTEST_MAIN_CC) + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(GTEST_MAIN_CC) + +sample1.o : $(SAMPLE_DIR)/sample1.cc $(SAMPLE_DIR)/sample1.h + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(SAMPLE_DIR)/sample1.cc + +sample1_unittest.o : $(SAMPLE_DIR)/sample1_unittest.cc \ + $(SAMPLE_DIR)/sample1.h $(FUSED_GTEST_H) + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(SAMPLE_DIR)/sample1_unittest.cc + +sample1_unittest : sample1.o sample1_unittest.o gtest-all.o gtest_main.o + $(CXX) $(CPPFLAGS) $(CXXFLAGS) $^ -o $@ diff --git a/cpp/thirdparty/gtest-1.7.0/src/gtest-all.cc b/cpp/thirdparty/gtest-1.7.0/src/gtest-all.cc new file mode 100644 index 000000000..0a9cee522 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/src/gtest-all.cc @@ -0,0 +1,48 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: mheule@google.com (Markus Heule) +// +// Google C++ Testing Framework (Google Test) +// +// Sometimes it's desirable to build Google Test by compiling a single file. +// This file serves this purpose. + +// This line ensures that gtest.h can be compiled on its own, even +// when it's fused. +#include "gtest/gtest.h" + +// The following lines pull in the real gtest *.cc files. +#include "src/gtest.cc" +#include "src/gtest-death-test.cc" +#include "src/gtest-filepath.cc" +#include "src/gtest-port.cc" +#include "src/gtest-printers.cc" +#include "src/gtest-test-part.cc" +#include "src/gtest-typed-test.cc" diff --git a/cpp/thirdparty/gtest-1.7.0/src/gtest-death-test.cc b/cpp/thirdparty/gtest-1.7.0/src/gtest-death-test.cc new file mode 100644 index 000000000..a6023fce4 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/src/gtest-death-test.cc @@ -0,0 +1,1344 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan), vladl@google.com (Vlad Losev) +// +// This file implements death tests. + +#include "gtest/gtest-death-test.h" +#include "gtest/internal/gtest-port.h" + +#if GTEST_HAS_DEATH_TEST + +# if GTEST_OS_MAC +# include +# endif // GTEST_OS_MAC + +# include +# include +# include + +# if GTEST_OS_LINUX +# include +# endif // GTEST_OS_LINUX + +# include + +# if GTEST_OS_WINDOWS +# include +# else +# include +# include +# endif // GTEST_OS_WINDOWS + +# if GTEST_OS_QNX +# include +# endif // GTEST_OS_QNX + +#endif // GTEST_HAS_DEATH_TEST + +#include "gtest/gtest-message.h" +#include "gtest/internal/gtest-string.h" + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +namespace testing { + +// Constants. + +// The default death test style. +static const char kDefaultDeathTestStyle[] = "fast"; + +GTEST_DEFINE_string_( + death_test_style, + internal::StringFromGTestEnv("death_test_style", kDefaultDeathTestStyle), + "Indicates how to run a death test in a forked child process: " + "\"threadsafe\" (child process re-executes the test binary " + "from the beginning, running only the specific death test) or " + "\"fast\" (child process runs the death test immediately " + "after forking)."); + +GTEST_DEFINE_bool_( + death_test_use_fork, + internal::BoolFromGTestEnv("death_test_use_fork", false), + "Instructs to use fork()/_exit() instead of clone() in death tests. " + "Ignored and always uses fork() on POSIX systems where clone() is not " + "implemented. Useful when running under valgrind or similar tools if " + "those do not support clone(). Valgrind 3.3.1 will just fail if " + "it sees an unsupported combination of clone() flags. " + "It is not recommended to use this flag w/o valgrind though it will " + "work in 99% of the cases. Once valgrind is fixed, this flag will " + "most likely be removed."); + +namespace internal { +GTEST_DEFINE_string_( + internal_run_death_test, "", + "Indicates the file, line number, temporal index of " + "the single death test to run, and a file descriptor to " + "which a success code may be sent, all separated by " + "the '|' characters. This flag is specified if and only if the current " + "process is a sub-process launched for running a thread-safe " + "death test. FOR INTERNAL USE ONLY."); +} // namespace internal + +#if GTEST_HAS_DEATH_TEST + +namespace internal { + +// Valid only for fast death tests. Indicates the code is running in the +// child process of a fast style death test. +static bool g_in_fast_death_test_child = false; + +// Returns a Boolean value indicating whether the caller is currently +// executing in the context of the death test child process. Tools such as +// Valgrind heap checkers may need this to modify their behavior in death +// tests. IMPORTANT: This is an internal utility. Using it may break the +// implementation of death tests. User code MUST NOT use it. +bool InDeathTestChild() { +# if GTEST_OS_WINDOWS + + // On Windows, death tests are thread-safe regardless of the value of the + // death_test_style flag. + return !GTEST_FLAG(internal_run_death_test).empty(); + +# else + + if (GTEST_FLAG(death_test_style) == "threadsafe") + return !GTEST_FLAG(internal_run_death_test).empty(); + else + return g_in_fast_death_test_child; +#endif +} + +} // namespace internal + +// ExitedWithCode constructor. +ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { +} + +// ExitedWithCode function-call operator. +bool ExitedWithCode::operator()(int exit_status) const { +# if GTEST_OS_WINDOWS + + return exit_status == exit_code_; + +# else + + return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_; + +# endif // GTEST_OS_WINDOWS +} + +# if !GTEST_OS_WINDOWS +// KilledBySignal constructor. +KilledBySignal::KilledBySignal(int signum) : signum_(signum) { +} + +// KilledBySignal function-call operator. +bool KilledBySignal::operator()(int exit_status) const { + return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; +} +# endif // !GTEST_OS_WINDOWS + +namespace internal { + +// Utilities needed for death tests. + +// Generates a textual description of a given exit code, in the format +// specified by wait(2). +static std::string ExitSummary(int exit_code) { + Message m; + +# if GTEST_OS_WINDOWS + + m << "Exited with exit status " << exit_code; + +# else + + if (WIFEXITED(exit_code)) { + m << "Exited with exit status " << WEXITSTATUS(exit_code); + } else if (WIFSIGNALED(exit_code)) { + m << "Terminated by signal " << WTERMSIG(exit_code); + } +# ifdef WCOREDUMP + if (WCOREDUMP(exit_code)) { + m << " (core dumped)"; + } +# endif +# endif // GTEST_OS_WINDOWS + + return m.GetString(); +} + +// Returns true if exit_status describes a process that was terminated +// by a signal, or exited normally with a nonzero exit code. +bool ExitedUnsuccessfully(int exit_status) { + return !ExitedWithCode(0)(exit_status); +} + +# if !GTEST_OS_WINDOWS +// Generates a textual failure message when a death test finds more than +// one thread running, or cannot determine the number of threads, prior +// to executing the given statement. It is the responsibility of the +// caller not to pass a thread_count of 1. +static std::string DeathTestThreadWarning(size_t thread_count) { + Message msg; + msg << "Death tests use fork(), which is unsafe particularly" + << " in a threaded context. For this test, " << GTEST_NAME_ << " "; + if (thread_count == 0) + msg << "couldn't detect the number of threads."; + else + msg << "detected " << thread_count << " threads."; + return msg.GetString(); +} +# endif // !GTEST_OS_WINDOWS + +// Flag characters for reporting a death test that did not die. +static const char kDeathTestLived = 'L'; +static const char kDeathTestReturned = 'R'; +static const char kDeathTestThrew = 'T'; +static const char kDeathTestInternalError = 'I'; + +// An enumeration describing all of the possible ways that a death test can +// conclude. DIED means that the process died while executing the test +// code; LIVED means that process lived beyond the end of the test code; +// RETURNED means that the test statement attempted to execute a return +// statement, which is not allowed; THREW means that the test statement +// returned control by throwing an exception. IN_PROGRESS means the test +// has not yet concluded. +// TODO(vladl@google.com): Unify names and possibly values for +// AbortReason, DeathTestOutcome, and flag characters above. +enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW }; + +// Routine for aborting the program which is safe to call from an +// exec-style death test child process, in which case the error +// message is propagated back to the parent process. Otherwise, the +// message is simply printed to stderr. In either case, the program +// then exits with status 1. +void DeathTestAbort(const std::string& message) { + // On a POSIX system, this function may be called from a threadsafe-style + // death test child process, which operates on a very small stack. Use + // the heap for any additional non-minuscule memory requirements. + const InternalRunDeathTestFlag* const flag = + GetUnitTestImpl()->internal_run_death_test_flag(); + if (flag != NULL) { + FILE* parent = posix::FDOpen(flag->write_fd(), "w"); + fputc(kDeathTestInternalError, parent); + fprintf(parent, "%s", message.c_str()); + fflush(parent); + _exit(1); + } else { + fprintf(stderr, "%s", message.c_str()); + fflush(stderr); + posix::Abort(); + } +} + +// A replacement for CHECK that calls DeathTestAbort if the assertion +// fails. +# define GTEST_DEATH_TEST_CHECK_(expression) \ + do { \ + if (!::testing::internal::IsTrue(expression)) { \ + DeathTestAbort( \ + ::std::string("CHECK failed: File ") + __FILE__ + ", line " \ + + ::testing::internal::StreamableToString(__LINE__) + ": " \ + + #expression); \ + } \ + } while (::testing::internal::AlwaysFalse()) + +// This macro is similar to GTEST_DEATH_TEST_CHECK_, but it is meant for +// evaluating any system call that fulfills two conditions: it must return +// -1 on failure, and set errno to EINTR when it is interrupted and +// should be tried again. The macro expands to a loop that repeatedly +// evaluates the expression as long as it evaluates to -1 and sets +// errno to EINTR. If the expression evaluates to -1 but errno is +// something other than EINTR, DeathTestAbort is called. +# define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \ + do { \ + int gtest_retval; \ + do { \ + gtest_retval = (expression); \ + } while (gtest_retval == -1 && errno == EINTR); \ + if (gtest_retval == -1) { \ + DeathTestAbort( \ + ::std::string("CHECK failed: File ") + __FILE__ + ", line " \ + + ::testing::internal::StreamableToString(__LINE__) + ": " \ + + #expression + " != -1"); \ + } \ + } while (::testing::internal::AlwaysFalse()) + +// Returns the message describing the last system error in errno. +std::string GetLastErrnoDescription() { + return errno == 0 ? "" : posix::StrError(errno); +} + +// This is called from a death test parent process to read a failure +// message from the death test child process and log it with the FATAL +// severity. On Windows, the message is read from a pipe handle. On other +// platforms, it is read from a file descriptor. +static void FailFromInternalError(int fd) { + Message error; + char buffer[256]; + int num_read; + + do { + while ((num_read = posix::Read(fd, buffer, 255)) > 0) { + buffer[num_read] = '\0'; + error << buffer; + } + } while (num_read == -1 && errno == EINTR); + + if (num_read == 0) { + GTEST_LOG_(FATAL) << error.GetString(); + } else { + const int last_error = errno; + GTEST_LOG_(FATAL) << "Error while reading death test internal: " + << GetLastErrnoDescription() << " [" << last_error << "]"; + } +} + +// Death test constructor. Increments the running death test count +// for the current test. +DeathTest::DeathTest() { + TestInfo* const info = GetUnitTestImpl()->current_test_info(); + if (info == NULL) { + DeathTestAbort("Cannot run a death test outside of a TEST or " + "TEST_F construct"); + } +} + +// Creates and returns a death test by dispatching to the current +// death test factory. +bool DeathTest::Create(const char* statement, const RE* regex, + const char* file, int line, DeathTest** test) { + return GetUnitTestImpl()->death_test_factory()->Create( + statement, regex, file, line, test); +} + +const char* DeathTest::LastMessage() { + return last_death_test_message_.c_str(); +} + +void DeathTest::set_last_death_test_message(const std::string& message) { + last_death_test_message_ = message; +} + +std::string DeathTest::last_death_test_message_; + +// Provides cross platform implementation for some death functionality. +class DeathTestImpl : public DeathTest { + protected: + DeathTestImpl(const char* a_statement, const RE* a_regex) + : statement_(a_statement), + regex_(a_regex), + spawned_(false), + status_(-1), + outcome_(IN_PROGRESS), + read_fd_(-1), + write_fd_(-1) {} + + // read_fd_ is expected to be closed and cleared by a derived class. + ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); } + + void Abort(AbortReason reason); + virtual bool Passed(bool status_ok); + + const char* statement() const { return statement_; } + const RE* regex() const { return regex_; } + bool spawned() const { return spawned_; } + void set_spawned(bool is_spawned) { spawned_ = is_spawned; } + int status() const { return status_; } + void set_status(int a_status) { status_ = a_status; } + DeathTestOutcome outcome() const { return outcome_; } + void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outcome; } + int read_fd() const { return read_fd_; } + void set_read_fd(int fd) { read_fd_ = fd; } + int write_fd() const { return write_fd_; } + void set_write_fd(int fd) { write_fd_ = fd; } + + // Called in the parent process only. Reads the result code of the death + // test child process via a pipe, interprets it to set the outcome_ + // member, and closes read_fd_. Outputs diagnostics and terminates in + // case of unexpected codes. + void ReadAndInterpretStatusByte(); + + private: + // The textual content of the code this object is testing. This class + // doesn't own this string and should not attempt to delete it. + const char* const statement_; + // The regular expression which test output must match. DeathTestImpl + // doesn't own this object and should not attempt to delete it. + const RE* const regex_; + // True if the death test child process has been successfully spawned. + bool spawned_; + // The exit status of the child process. + int status_; + // How the death test concluded. + DeathTestOutcome outcome_; + // Descriptor to the read end of the pipe to the child process. It is + // always -1 in the child process. The child keeps its write end of the + // pipe in write_fd_. + int read_fd_; + // Descriptor to the child's write end of the pipe to the parent process. + // It is always -1 in the parent process. The parent keeps its end of the + // pipe in read_fd_. + int write_fd_; +}; + +// Called in the parent process only. Reads the result code of the death +// test child process via a pipe, interprets it to set the outcome_ +// member, and closes read_fd_. Outputs diagnostics and terminates in +// case of unexpected codes. +void DeathTestImpl::ReadAndInterpretStatusByte() { + char flag; + int bytes_read; + + // The read() here blocks until data is available (signifying the + // failure of the death test) or until the pipe is closed (signifying + // its success), so it's okay to call this in the parent before + // the child process has exited. + do { + bytes_read = posix::Read(read_fd(), &flag, 1); + } while (bytes_read == -1 && errno == EINTR); + + if (bytes_read == 0) { + set_outcome(DIED); + } else if (bytes_read == 1) { + switch (flag) { + case kDeathTestReturned: + set_outcome(RETURNED); + break; + case kDeathTestThrew: + set_outcome(THREW); + break; + case kDeathTestLived: + set_outcome(LIVED); + break; + case kDeathTestInternalError: + FailFromInternalError(read_fd()); // Does not return. + break; + default: + GTEST_LOG_(FATAL) << "Death test child process reported " + << "unexpected status byte (" + << static_cast(flag) << ")"; + } + } else { + GTEST_LOG_(FATAL) << "Read from death test child process failed: " + << GetLastErrnoDescription(); + } + GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd())); + set_read_fd(-1); +} + +// Signals that the death test code which should have exited, didn't. +// Should be called only in a death test child process. +// Writes a status byte to the child's status file descriptor, then +// calls _exit(1). +void DeathTestImpl::Abort(AbortReason reason) { + // The parent process considers the death test to be a failure if + // it finds any data in our pipe. So, here we write a single flag byte + // to the pipe, then exit. + const char status_ch = + reason == TEST_DID_NOT_DIE ? kDeathTestLived : + reason == TEST_THREW_EXCEPTION ? kDeathTestThrew : kDeathTestReturned; + + GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1)); + // We are leaking the descriptor here because on some platforms (i.e., + // when built as Windows DLL), destructors of global objects will still + // run after calling _exit(). On such systems, write_fd_ will be + // indirectly closed from the destructor of UnitTestImpl, causing double + // close if it is also closed here. On debug configurations, double close + // may assert. As there are no in-process buffers to flush here, we are + // relying on the OS to close the descriptor after the process terminates + // when the destructors are not run. + _exit(1); // Exits w/o any normal exit hooks (we were supposed to crash) +} + +// Returns an indented copy of stderr output for a death test. +// This makes distinguishing death test output lines from regular log lines +// much easier. +static ::std::string FormatDeathTestOutput(const ::std::string& output) { + ::std::string ret; + for (size_t at = 0; ; ) { + const size_t line_end = output.find('\n', at); + ret += "[ DEATH ] "; + if (line_end == ::std::string::npos) { + ret += output.substr(at); + break; + } + ret += output.substr(at, line_end + 1 - at); + at = line_end + 1; + } + return ret; +} + +// Assesses the success or failure of a death test, using both private +// members which have previously been set, and one argument: +// +// Private data members: +// outcome: An enumeration describing how the death test +// concluded: DIED, LIVED, THREW, or RETURNED. The death test +// fails in the latter three cases. +// status: The exit status of the child process. On *nix, it is in the +// in the format specified by wait(2). On Windows, this is the +// value supplied to the ExitProcess() API or a numeric code +// of the exception that terminated the program. +// regex: A regular expression object to be applied to +// the test's captured standard error output; the death test +// fails if it does not match. +// +// Argument: +// status_ok: true if exit_status is acceptable in the context of +// this particular death test, which fails if it is false +// +// Returns true iff all of the above conditions are met. Otherwise, the +// first failing condition, in the order given above, is the one that is +// reported. Also sets the last death test message string. +bool DeathTestImpl::Passed(bool status_ok) { + if (!spawned()) + return false; + + const std::string error_message = GetCapturedStderr(); + + bool success = false; + Message buffer; + + buffer << "Death test: " << statement() << "\n"; + switch (outcome()) { + case LIVED: + buffer << " Result: failed to die.\n" + << " Error msg:\n" << FormatDeathTestOutput(error_message); + break; + case THREW: + buffer << " Result: threw an exception.\n" + << " Error msg:\n" << FormatDeathTestOutput(error_message); + break; + case RETURNED: + buffer << " Result: illegal return in test statement.\n" + << " Error msg:\n" << FormatDeathTestOutput(error_message); + break; + case DIED: + if (status_ok) { + const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); + if (matched) { + success = true; + } else { + buffer << " Result: died but not with expected error.\n" + << " Expected: " << regex()->pattern() << "\n" + << "Actual msg:\n" << FormatDeathTestOutput(error_message); + } + } else { + buffer << " Result: died but not with expected exit code:\n" + << " " << ExitSummary(status()) << "\n" + << "Actual msg:\n" << FormatDeathTestOutput(error_message); + } + break; + case IN_PROGRESS: + default: + GTEST_LOG_(FATAL) + << "DeathTest::Passed somehow called before conclusion of test"; + } + + DeathTest::set_last_death_test_message(buffer.GetString()); + return success; +} + +# if GTEST_OS_WINDOWS +// WindowsDeathTest implements death tests on Windows. Due to the +// specifics of starting new processes on Windows, death tests there are +// always threadsafe, and Google Test considers the +// --gtest_death_test_style=fast setting to be equivalent to +// --gtest_death_test_style=threadsafe there. +// +// A few implementation notes: Like the Linux version, the Windows +// implementation uses pipes for child-to-parent communication. But due to +// the specifics of pipes on Windows, some extra steps are required: +// +// 1. The parent creates a communication pipe and stores handles to both +// ends of it. +// 2. The parent starts the child and provides it with the information +// necessary to acquire the handle to the write end of the pipe. +// 3. The child acquires the write end of the pipe and signals the parent +// using a Windows event. +// 4. Now the parent can release the write end of the pipe on its side. If +// this is done before step 3, the object's reference count goes down to +// 0 and it is destroyed, preventing the child from acquiring it. The +// parent now has to release it, or read operations on the read end of +// the pipe will not return when the child terminates. +// 5. The parent reads child's output through the pipe (outcome code and +// any possible error messages) from the pipe, and its stderr and then +// determines whether to fail the test. +// +// Note: to distinguish Win32 API calls from the local method and function +// calls, the former are explicitly resolved in the global namespace. +// +class WindowsDeathTest : public DeathTestImpl { + public: + WindowsDeathTest(const char* a_statement, + const RE* a_regex, + const char* file, + int line) + : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {} + + // All of these virtual functions are inherited from DeathTest. + virtual int Wait(); + virtual TestRole AssumeRole(); + + private: + // The name of the file in which the death test is located. + const char* const file_; + // The line number on which the death test is located. + const int line_; + // Handle to the write end of the pipe to the child process. + AutoHandle write_handle_; + // Child process handle. + AutoHandle child_handle_; + // Event the child process uses to signal the parent that it has + // acquired the handle to the write end of the pipe. After seeing this + // event the parent can release its own handles to make sure its + // ReadFile() calls return when the child terminates. + AutoHandle event_handle_; +}; + +// Waits for the child in a death test to exit, returning its exit +// status, or 0 if no child process exists. As a side effect, sets the +// outcome data member. +int WindowsDeathTest::Wait() { + if (!spawned()) + return 0; + + // Wait until the child either signals that it has acquired the write end + // of the pipe or it dies. + const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() }; + switch (::WaitForMultipleObjects(2, + wait_handles, + FALSE, // Waits for any of the handles. + INFINITE)) { + case WAIT_OBJECT_0: + case WAIT_OBJECT_0 + 1: + break; + default: + GTEST_DEATH_TEST_CHECK_(false); // Should not get here. + } + + // The child has acquired the write end of the pipe or exited. + // We release the handle on our side and continue. + write_handle_.Reset(); + event_handle_.Reset(); + + ReadAndInterpretStatusByte(); + + // Waits for the child process to exit if it haven't already. This + // returns immediately if the child has already exited, regardless of + // whether previous calls to WaitForMultipleObjects synchronized on this + // handle or not. + GTEST_DEATH_TEST_CHECK_( + WAIT_OBJECT_0 == ::WaitForSingleObject(child_handle_.Get(), + INFINITE)); + DWORD status_code; + GTEST_DEATH_TEST_CHECK_( + ::GetExitCodeProcess(child_handle_.Get(), &status_code) != FALSE); + child_handle_.Reset(); + set_status(static_cast(status_code)); + return status(); +} + +// The AssumeRole process for a Windows death test. It creates a child +// process with the same executable as the current process to run the +// death test. The child process is given the --gtest_filter and +// --gtest_internal_run_death_test flags such that it knows to run the +// current death test only. +DeathTest::TestRole WindowsDeathTest::AssumeRole() { + const UnitTestImpl* const impl = GetUnitTestImpl(); + const InternalRunDeathTestFlag* const flag = + impl->internal_run_death_test_flag(); + const TestInfo* const info = impl->current_test_info(); + const int death_test_index = info->result()->death_test_count(); + + if (flag != NULL) { + // ParseInternalRunDeathTestFlag() has performed all the necessary + // processing. + set_write_fd(flag->write_fd()); + return EXECUTE_TEST; + } + + // WindowsDeathTest uses an anonymous pipe to communicate results of + // a death test. + SECURITY_ATTRIBUTES handles_are_inheritable = { + sizeof(SECURITY_ATTRIBUTES), NULL, TRUE }; + HANDLE read_handle, write_handle; + GTEST_DEATH_TEST_CHECK_( + ::CreatePipe(&read_handle, &write_handle, &handles_are_inheritable, + 0) // Default buffer size. + != FALSE); + set_read_fd(::_open_osfhandle(reinterpret_cast(read_handle), + O_RDONLY)); + write_handle_.Reset(write_handle); + event_handle_.Reset(::CreateEvent( + &handles_are_inheritable, + TRUE, // The event will automatically reset to non-signaled state. + FALSE, // The initial state is non-signalled. + NULL)); // The even is unnamed. + GTEST_DEATH_TEST_CHECK_(event_handle_.Get() != NULL); + const std::string filter_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + + info->test_case_name() + "." + info->name(); + const std::string internal_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + + "=" + file_ + "|" + StreamableToString(line_) + "|" + + StreamableToString(death_test_index) + "|" + + StreamableToString(static_cast(::GetCurrentProcessId())) + + // size_t has the same width as pointers on both 32-bit and 64-bit + // Windows platforms. + // See http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx. + "|" + StreamableToString(reinterpret_cast(write_handle)) + + "|" + StreamableToString(reinterpret_cast(event_handle_.Get())); + + char executable_path[_MAX_PATH + 1]; // NOLINT + GTEST_DEATH_TEST_CHECK_( + _MAX_PATH + 1 != ::GetModuleFileNameA(NULL, + executable_path, + _MAX_PATH)); + + std::string command_line = + std::string(::GetCommandLineA()) + " " + filter_flag + " \"" + + internal_flag + "\""; + + DeathTest::set_last_death_test_message(""); + + CaptureStderr(); + // Flush the log buffers since the log streams are shared with the child. + FlushInfoLog(); + + // The child process will share the standard handles with the parent. + STARTUPINFOA startup_info; + memset(&startup_info, 0, sizeof(STARTUPINFO)); + startup_info.dwFlags = STARTF_USESTDHANDLES; + startup_info.hStdInput = ::GetStdHandle(STD_INPUT_HANDLE); + startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); + startup_info.hStdError = ::GetStdHandle(STD_ERROR_HANDLE); + + PROCESS_INFORMATION process_info; + GTEST_DEATH_TEST_CHECK_(::CreateProcessA( + executable_path, + const_cast(command_line.c_str()), + NULL, // Retuned process handle is not inheritable. + NULL, // Retuned thread handle is not inheritable. + TRUE, // Child inherits all inheritable handles (for write_handle_). + 0x0, // Default creation flags. + NULL, // Inherit the parent's environment. + UnitTest::GetInstance()->original_working_dir(), + &startup_info, + &process_info) != FALSE); + child_handle_.Reset(process_info.hProcess); + ::CloseHandle(process_info.hThread); + set_spawned(true); + return OVERSEE_TEST; +} +# else // We are not on Windows. + +// ForkingDeathTest provides implementations for most of the abstract +// methods of the DeathTest interface. Only the AssumeRole method is +// left undefined. +class ForkingDeathTest : public DeathTestImpl { + public: + ForkingDeathTest(const char* statement, const RE* regex); + + // All of these virtual functions are inherited from DeathTest. + virtual int Wait(); + + protected: + void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } + + private: + // PID of child process during death test; 0 in the child process itself. + pid_t child_pid_; +}; + +// Constructs a ForkingDeathTest. +ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex) + : DeathTestImpl(a_statement, a_regex), + child_pid_(-1) {} + +// Waits for the child in a death test to exit, returning its exit +// status, or 0 if no child process exists. As a side effect, sets the +// outcome data member. +int ForkingDeathTest::Wait() { + if (!spawned()) + return 0; + + ReadAndInterpretStatusByte(); + + int status_value; + GTEST_DEATH_TEST_CHECK_SYSCALL_(waitpid(child_pid_, &status_value, 0)); + set_status(status_value); + return status_value; +} + +// A concrete death test class that forks, then immediately runs the test +// in the child process. +class NoExecDeathTest : public ForkingDeathTest { + public: + NoExecDeathTest(const char* a_statement, const RE* a_regex) : + ForkingDeathTest(a_statement, a_regex) { } + virtual TestRole AssumeRole(); +}; + +// The AssumeRole process for a fork-and-run death test. It implements a +// straightforward fork, with a simple pipe to transmit the status byte. +DeathTest::TestRole NoExecDeathTest::AssumeRole() { + const size_t thread_count = GetThreadCount(); + if (thread_count != 1) { + GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count); + } + + int pipe_fd[2]; + GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); + + DeathTest::set_last_death_test_message(""); + CaptureStderr(); + // When we fork the process below, the log file buffers are copied, but the + // file descriptors are shared. We flush all log files here so that closing + // the file descriptors in the child process doesn't throw off the + // synchronization between descriptors and buffers in the parent process. + // This is as close to the fork as possible to avoid a race condition in case + // there are multiple threads running before the death test, and another + // thread writes to the log file. + FlushInfoLog(); + + const pid_t child_pid = fork(); + GTEST_DEATH_TEST_CHECK_(child_pid != -1); + set_child_pid(child_pid); + if (child_pid == 0) { + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0])); + set_write_fd(pipe_fd[1]); + // Redirects all logging to stderr in the child process to prevent + // concurrent writes to the log files. We capture stderr in the parent + // process and append the child process' output to a log. + LogToStderr(); + // Event forwarding to the listeners of event listener API mush be shut + // down in death test subprocesses. + GetUnitTestImpl()->listeners()->SuppressEventForwarding(); + g_in_fast_death_test_child = true; + return EXECUTE_TEST; + } else { + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); + set_read_fd(pipe_fd[0]); + set_spawned(true); + return OVERSEE_TEST; + } +} + +// A concrete death test class that forks and re-executes the main +// program from the beginning, with command-line flags set that cause +// only this specific death test to be run. +class ExecDeathTest : public ForkingDeathTest { + public: + ExecDeathTest(const char* a_statement, const RE* a_regex, + const char* file, int line) : + ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { } + virtual TestRole AssumeRole(); + private: + static ::std::vector + GetArgvsForDeathTestChildProcess() { + ::std::vector args = GetInjectableArgvs(); + return args; + } + // The name of the file in which the death test is located. + const char* const file_; + // The line number on which the death test is located. + const int line_; +}; + +// Utility class for accumulating command-line arguments. +class Arguments { + public: + Arguments() { + args_.push_back(NULL); + } + + ~Arguments() { + for (std::vector::iterator i = args_.begin(); i != args_.end(); + ++i) { + free(*i); + } + } + void AddArgument(const char* argument) { + args_.insert(args_.end() - 1, posix::StrDup(argument)); + } + + template + void AddArguments(const ::std::vector& arguments) { + for (typename ::std::vector::const_iterator i = arguments.begin(); + i != arguments.end(); + ++i) { + args_.insert(args_.end() - 1, posix::StrDup(i->c_str())); + } + } + char* const* Argv() { + return &args_[0]; + } + + private: + std::vector args_; +}; + +// A struct that encompasses the arguments to the child process of a +// threadsafe-style death test process. +struct ExecDeathTestArgs { + char* const* argv; // Command-line arguments for the child's call to exec + int close_fd; // File descriptor to close; the read end of a pipe +}; + +# if GTEST_OS_MAC +inline char** GetEnviron() { + // When Google Test is built as a framework on MacOS X, the environ variable + // is unavailable. Apple's documentation (man environ) recommends using + // _NSGetEnviron() instead. + return *_NSGetEnviron(); +} +# else +// Some POSIX platforms expect you to declare environ. extern "C" makes +// it reside in the global namespace. +extern "C" char** environ; +inline char** GetEnviron() { return environ; } +# endif // GTEST_OS_MAC + +# if !GTEST_OS_QNX +// The main function for a threadsafe-style death test child process. +// This function is called in a clone()-ed process and thus must avoid +// any potentially unsafe operations like malloc or libc functions. +static int ExecDeathTestChildMain(void* child_arg) { + ExecDeathTestArgs* const args = static_cast(child_arg); + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd)); + + // We need to execute the test program in the same environment where + // it was originally invoked. Therefore we change to the original + // working directory first. + const char* const original_dir = + UnitTest::GetInstance()->original_working_dir(); + // We can safely call chdir() as it's a direct system call. + if (chdir(original_dir) != 0) { + DeathTestAbort(std::string("chdir(\"") + original_dir + "\") failed: " + + GetLastErrnoDescription()); + return EXIT_FAILURE; + } + + // We can safely call execve() as it's a direct system call. We + // cannot use execvp() as it's a libc function and thus potentially + // unsafe. Since execve() doesn't search the PATH, the user must + // invoke the test program via a valid path that contains at least + // one path separator. + execve(args->argv[0], args->argv, GetEnviron()); + DeathTestAbort(std::string("execve(") + args->argv[0] + ", ...) in " + + original_dir + " failed: " + + GetLastErrnoDescription()); + return EXIT_FAILURE; +} +# endif // !GTEST_OS_QNX + +// Two utility routines that together determine the direction the stack +// grows. +// This could be accomplished more elegantly by a single recursive +// function, but we want to guard against the unlikely possibility of +// a smart compiler optimizing the recursion away. +// +// GTEST_NO_INLINE_ is required to prevent GCC 4.6 from inlining +// StackLowerThanAddress into StackGrowsDown, which then doesn't give +// correct answer. +void StackLowerThanAddress(const void* ptr, bool* result) GTEST_NO_INLINE_; +void StackLowerThanAddress(const void* ptr, bool* result) { + int dummy; + *result = (&dummy < ptr); +} + +bool StackGrowsDown() { + int dummy; + bool result; + StackLowerThanAddress(&dummy, &result); + return result; +} + +// Spawns a child process with the same executable as the current process in +// a thread-safe manner and instructs it to run the death test. The +// implementation uses fork(2) + exec. On systems where clone(2) is +// available, it is used instead, being slightly more thread-safe. On QNX, +// fork supports only single-threaded environments, so this function uses +// spawn(2) there instead. The function dies with an error message if +// anything goes wrong. +static pid_t ExecDeathTestSpawnChild(char* const* argv, int close_fd) { + ExecDeathTestArgs args = { argv, close_fd }; + pid_t child_pid = -1; + +# if GTEST_OS_QNX + // Obtains the current directory and sets it to be closed in the child + // process. + const int cwd_fd = open(".", O_RDONLY); + GTEST_DEATH_TEST_CHECK_(cwd_fd != -1); + GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(cwd_fd, F_SETFD, FD_CLOEXEC)); + // We need to execute the test program in the same environment where + // it was originally invoked. Therefore we change to the original + // working directory first. + const char* const original_dir = + UnitTest::GetInstance()->original_working_dir(); + // We can safely call chdir() as it's a direct system call. + if (chdir(original_dir) != 0) { + DeathTestAbort(std::string("chdir(\"") + original_dir + "\") failed: " + + GetLastErrnoDescription()); + return EXIT_FAILURE; + } + + int fd_flags; + // Set close_fd to be closed after spawn. + GTEST_DEATH_TEST_CHECK_SYSCALL_(fd_flags = fcntl(close_fd, F_GETFD)); + GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(close_fd, F_SETFD, + fd_flags | FD_CLOEXEC)); + struct inheritance inherit = {0}; + // spawn is a system call. + child_pid = spawn(args.argv[0], 0, NULL, &inherit, args.argv, GetEnviron()); + // Restores the current working directory. + GTEST_DEATH_TEST_CHECK_(fchdir(cwd_fd) != -1); + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(cwd_fd)); + +# else // GTEST_OS_QNX +# if GTEST_OS_LINUX + // When a SIGPROF signal is received while fork() or clone() are executing, + // the process may hang. To avoid this, we ignore SIGPROF here and re-enable + // it after the call to fork()/clone() is complete. + struct sigaction saved_sigprof_action; + struct sigaction ignore_sigprof_action; + memset(&ignore_sigprof_action, 0, sizeof(ignore_sigprof_action)); + sigemptyset(&ignore_sigprof_action.sa_mask); + ignore_sigprof_action.sa_handler = SIG_IGN; + GTEST_DEATH_TEST_CHECK_SYSCALL_(sigaction( + SIGPROF, &ignore_sigprof_action, &saved_sigprof_action)); +# endif // GTEST_OS_LINUX + +# if GTEST_HAS_CLONE + const bool use_fork = GTEST_FLAG(death_test_use_fork); + + if (!use_fork) { + static const bool stack_grows_down = StackGrowsDown(); + const size_t stack_size = getpagesize(); + // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead. + void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, + MAP_ANON | MAP_PRIVATE, -1, 0); + GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED); + + // Maximum stack alignment in bytes: For a downward-growing stack, this + // amount is subtracted from size of the stack space to get an address + // that is within the stack space and is aligned on all systems we care + // about. As far as I know there is no ABI with stack alignment greater + // than 64. We assume stack and stack_size already have alignment of + // kMaxStackAlignment. + const size_t kMaxStackAlignment = 64; + void* const stack_top = + static_cast(stack) + + (stack_grows_down ? stack_size - kMaxStackAlignment : 0); + GTEST_DEATH_TEST_CHECK_(stack_size > kMaxStackAlignment && + reinterpret_cast(stack_top) % kMaxStackAlignment == 0); + + child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args); + + GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1); + } +# else + const bool use_fork = true; +# endif // GTEST_HAS_CLONE + + if (use_fork && (child_pid = fork()) == 0) { + ExecDeathTestChildMain(&args); + _exit(0); + } +# endif // GTEST_OS_QNX +# if GTEST_OS_LINUX + GTEST_DEATH_TEST_CHECK_SYSCALL_( + sigaction(SIGPROF, &saved_sigprof_action, NULL)); +# endif // GTEST_OS_LINUX + + GTEST_DEATH_TEST_CHECK_(child_pid != -1); + return child_pid; +} + +// The AssumeRole process for a fork-and-exec death test. It re-executes the +// main program from the beginning, setting the --gtest_filter +// and --gtest_internal_run_death_test flags to cause only the current +// death test to be re-run. +DeathTest::TestRole ExecDeathTest::AssumeRole() { + const UnitTestImpl* const impl = GetUnitTestImpl(); + const InternalRunDeathTestFlag* const flag = + impl->internal_run_death_test_flag(); + const TestInfo* const info = impl->current_test_info(); + const int death_test_index = info->result()->death_test_count(); + + if (flag != NULL) { + set_write_fd(flag->write_fd()); + return EXECUTE_TEST; + } + + int pipe_fd[2]; + GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); + // Clear the close-on-exec flag on the write end of the pipe, lest + // it be closed when the child process does an exec: + GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1); + + const std::string filter_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + + info->test_case_name() + "." + info->name(); + const std::string internal_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + "=" + + file_ + "|" + StreamableToString(line_) + "|" + + StreamableToString(death_test_index) + "|" + + StreamableToString(pipe_fd[1]); + Arguments args; + args.AddArguments(GetArgvsForDeathTestChildProcess()); + args.AddArgument(filter_flag.c_str()); + args.AddArgument(internal_flag.c_str()); + + DeathTest::set_last_death_test_message(""); + + CaptureStderr(); + // See the comment in NoExecDeathTest::AssumeRole for why the next line + // is necessary. + FlushInfoLog(); + + const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]); + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); + set_child_pid(child_pid); + set_read_fd(pipe_fd[0]); + set_spawned(true); + return OVERSEE_TEST; +} + +# endif // !GTEST_OS_WINDOWS + +// Creates a concrete DeathTest-derived class that depends on the +// --gtest_death_test_style flag, and sets the pointer pointed to +// by the "test" argument to its address. If the test should be +// skipped, sets that pointer to NULL. Returns true, unless the +// flag is set to an invalid value. +bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, + const char* file, int line, + DeathTest** test) { + UnitTestImpl* const impl = GetUnitTestImpl(); + const InternalRunDeathTestFlag* const flag = + impl->internal_run_death_test_flag(); + const int death_test_index = impl->current_test_info() + ->increment_death_test_count(); + + if (flag != NULL) { + if (death_test_index > flag->index()) { + DeathTest::set_last_death_test_message( + "Death test count (" + StreamableToString(death_test_index) + + ") somehow exceeded expected maximum (" + + StreamableToString(flag->index()) + ")"); + return false; + } + + if (!(flag->file() == file && flag->line() == line && + flag->index() == death_test_index)) { + *test = NULL; + return true; + } + } + +# if GTEST_OS_WINDOWS + + if (GTEST_FLAG(death_test_style) == "threadsafe" || + GTEST_FLAG(death_test_style) == "fast") { + *test = new WindowsDeathTest(statement, regex, file, line); + } + +# else + + if (GTEST_FLAG(death_test_style) == "threadsafe") { + *test = new ExecDeathTest(statement, regex, file, line); + } else if (GTEST_FLAG(death_test_style) == "fast") { + *test = new NoExecDeathTest(statement, regex); + } + +# endif // GTEST_OS_WINDOWS + + else { // NOLINT - this is more readable than unbalanced brackets inside #if. + DeathTest::set_last_death_test_message( + "Unknown death test style \"" + GTEST_FLAG(death_test_style) + + "\" encountered"); + return false; + } + + return true; +} + +// Splits a given string on a given delimiter, populating a given +// vector with the fields. GTEST_HAS_DEATH_TEST implies that we have +// ::std::string, so we can use it here. +static void SplitString(const ::std::string& str, char delimiter, + ::std::vector< ::std::string>* dest) { + ::std::vector< ::std::string> parsed; + ::std::string::size_type pos = 0; + while (::testing::internal::AlwaysTrue()) { + const ::std::string::size_type colon = str.find(delimiter, pos); + if (colon == ::std::string::npos) { + parsed.push_back(str.substr(pos)); + break; + } else { + parsed.push_back(str.substr(pos, colon - pos)); + pos = colon + 1; + } + } + dest->swap(parsed); +} + +# if GTEST_OS_WINDOWS +// Recreates the pipe and event handles from the provided parameters, +// signals the event, and returns a file descriptor wrapped around the pipe +// handle. This function is called in the child process only. +int GetStatusFileDescriptor(unsigned int parent_process_id, + size_t write_handle_as_size_t, + size_t event_handle_as_size_t) { + AutoHandle parent_process_handle(::OpenProcess(PROCESS_DUP_HANDLE, + FALSE, // Non-inheritable. + parent_process_id)); + if (parent_process_handle.Get() == INVALID_HANDLE_VALUE) { + DeathTestAbort("Unable to open parent process " + + StreamableToString(parent_process_id)); + } + + // TODO(vladl@google.com): Replace the following check with a + // compile-time assertion when available. + GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t)); + + const HANDLE write_handle = + reinterpret_cast(write_handle_as_size_t); + HANDLE dup_write_handle; + + // The newly initialized handle is accessible only in in the parent + // process. To obtain one accessible within the child, we need to use + // DuplicateHandle. + if (!::DuplicateHandle(parent_process_handle.Get(), write_handle, + ::GetCurrentProcess(), &dup_write_handle, + 0x0, // Requested privileges ignored since + // DUPLICATE_SAME_ACCESS is used. + FALSE, // Request non-inheritable handler. + DUPLICATE_SAME_ACCESS)) { + DeathTestAbort("Unable to duplicate the pipe handle " + + StreamableToString(write_handle_as_size_t) + + " from the parent process " + + StreamableToString(parent_process_id)); + } + + const HANDLE event_handle = reinterpret_cast(event_handle_as_size_t); + HANDLE dup_event_handle; + + if (!::DuplicateHandle(parent_process_handle.Get(), event_handle, + ::GetCurrentProcess(), &dup_event_handle, + 0x0, + FALSE, + DUPLICATE_SAME_ACCESS)) { + DeathTestAbort("Unable to duplicate the event handle " + + StreamableToString(event_handle_as_size_t) + + " from the parent process " + + StreamableToString(parent_process_id)); + } + + const int write_fd = + ::_open_osfhandle(reinterpret_cast(dup_write_handle), O_APPEND); + if (write_fd == -1) { + DeathTestAbort("Unable to convert pipe handle " + + StreamableToString(write_handle_as_size_t) + + " to a file descriptor"); + } + + // Signals the parent that the write end of the pipe has been acquired + // so the parent can release its own write end. + ::SetEvent(dup_event_handle); + + return write_fd; +} +# endif // GTEST_OS_WINDOWS + +// Returns a newly created InternalRunDeathTestFlag object with fields +// initialized from the GTEST_FLAG(internal_run_death_test) flag if +// the flag is specified; otherwise returns NULL. +InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { + if (GTEST_FLAG(internal_run_death_test) == "") return NULL; + + // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we + // can use it here. + int line = -1; + int index = -1; + ::std::vector< ::std::string> fields; + SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields); + int write_fd = -1; + +# if GTEST_OS_WINDOWS + + unsigned int parent_process_id = 0; + size_t write_handle_as_size_t = 0; + size_t event_handle_as_size_t = 0; + + if (fields.size() != 6 + || !ParseNaturalNumber(fields[1], &line) + || !ParseNaturalNumber(fields[2], &index) + || !ParseNaturalNumber(fields[3], &parent_process_id) + || !ParseNaturalNumber(fields[4], &write_handle_as_size_t) + || !ParseNaturalNumber(fields[5], &event_handle_as_size_t)) { + DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + + GTEST_FLAG(internal_run_death_test)); + } + write_fd = GetStatusFileDescriptor(parent_process_id, + write_handle_as_size_t, + event_handle_as_size_t); +# else + + if (fields.size() != 4 + || !ParseNaturalNumber(fields[1], &line) + || !ParseNaturalNumber(fields[2], &index) + || !ParseNaturalNumber(fields[3], &write_fd)) { + DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + + GTEST_FLAG(internal_run_death_test)); + } + +# endif // GTEST_OS_WINDOWS + + return new InternalRunDeathTestFlag(fields[0], line, index, write_fd); +} + +} // namespace internal + +#endif // GTEST_HAS_DEATH_TEST + +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/src/gtest-filepath.cc b/cpp/thirdparty/gtest-1.7.0/src/gtest-filepath.cc new file mode 100644 index 000000000..6be58b6fc --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/src/gtest-filepath.cc @@ -0,0 +1,382 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: keith.ray@gmail.com (Keith Ray) + +#include "gtest/gtest-message.h" +#include "gtest/internal/gtest-filepath.h" +#include "gtest/internal/gtest-port.h" + +#include + +#if GTEST_OS_WINDOWS_MOBILE +# include +#elif GTEST_OS_WINDOWS +# include +# include +#elif GTEST_OS_SYMBIAN +// Symbian OpenC has PATH_MAX in sys/syslimits.h +# include +#else +# include +# include // Some Linux distributions define PATH_MAX here. +#endif // GTEST_OS_WINDOWS_MOBILE + +#if GTEST_OS_WINDOWS +# define GTEST_PATH_MAX_ _MAX_PATH +#elif defined(PATH_MAX) +# define GTEST_PATH_MAX_ PATH_MAX +#elif defined(_XOPEN_PATH_MAX) +# define GTEST_PATH_MAX_ _XOPEN_PATH_MAX +#else +# define GTEST_PATH_MAX_ _POSIX_PATH_MAX +#endif // GTEST_OS_WINDOWS + +#include "gtest/internal/gtest-string.h" + +namespace testing { +namespace internal { + +#if GTEST_OS_WINDOWS +// On Windows, '\\' is the standard path separator, but many tools and the +// Windows API also accept '/' as an alternate path separator. Unless otherwise +// noted, a file path can contain either kind of path separators, or a mixture +// of them. +const char kPathSeparator = '\\'; +const char kAlternatePathSeparator = '/'; +const char kPathSeparatorString[] = "\\"; +const char kAlternatePathSeparatorString[] = "/"; +# if GTEST_OS_WINDOWS_MOBILE +// Windows CE doesn't have a current directory. You should not use +// the current directory in tests on Windows CE, but this at least +// provides a reasonable fallback. +const char kCurrentDirectoryString[] = "\\"; +// Windows CE doesn't define INVALID_FILE_ATTRIBUTES +const DWORD kInvalidFileAttributes = 0xffffffff; +# else +const char kCurrentDirectoryString[] = ".\\"; +# endif // GTEST_OS_WINDOWS_MOBILE +#else +const char kPathSeparator = '/'; +const char kPathSeparatorString[] = "/"; +const char kCurrentDirectoryString[] = "./"; +#endif // GTEST_OS_WINDOWS + +// Returns whether the given character is a valid path separator. +static bool IsPathSeparator(char c) { +#if GTEST_HAS_ALT_PATH_SEP_ + return (c == kPathSeparator) || (c == kAlternatePathSeparator); +#else + return c == kPathSeparator; +#endif +} + +// Returns the current working directory, or "" if unsuccessful. +FilePath FilePath::GetCurrentDir() { +#if GTEST_OS_WINDOWS_MOBILE + // Windows CE doesn't have a current directory, so we just return + // something reasonable. + return FilePath(kCurrentDirectoryString); +#elif GTEST_OS_WINDOWS + char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; + return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); +#else + char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; + return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); +#endif // GTEST_OS_WINDOWS_MOBILE +} + +// Returns a copy of the FilePath with the case-insensitive extension removed. +// Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns +// FilePath("dir/file"). If a case-insensitive extension is not +// found, returns a copy of the original FilePath. +FilePath FilePath::RemoveExtension(const char* extension) const { + const std::string dot_extension = std::string(".") + extension; + if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) { + return FilePath(pathname_.substr( + 0, pathname_.length() - dot_extension.length())); + } + return *this; +} + +// Returns a pointer to the last occurence of a valid path separator in +// the FilePath. On Windows, for example, both '/' and '\' are valid path +// separators. Returns NULL if no path separator was found. +const char* FilePath::FindLastPathSeparator() const { + const char* const last_sep = strrchr(c_str(), kPathSeparator); +#if GTEST_HAS_ALT_PATH_SEP_ + const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator); + // Comparing two pointers of which only one is NULL is undefined. + if (last_alt_sep != NULL && + (last_sep == NULL || last_alt_sep > last_sep)) { + return last_alt_sep; + } +#endif + return last_sep; +} + +// Returns a copy of the FilePath with the directory part removed. +// Example: FilePath("path/to/file").RemoveDirectoryName() returns +// FilePath("file"). If there is no directory part ("just_a_file"), it returns +// the FilePath unmodified. If there is no file part ("just_a_dir/") it +// returns an empty FilePath (""). +// On Windows platform, '\' is the path separator, otherwise it is '/'. +FilePath FilePath::RemoveDirectoryName() const { + const char* const last_sep = FindLastPathSeparator(); + return last_sep ? FilePath(last_sep + 1) : *this; +} + +// RemoveFileName returns the directory path with the filename removed. +// Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". +// If the FilePath is "a_file" or "/a_file", RemoveFileName returns +// FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does +// not have a file, like "just/a/dir/", it returns the FilePath unmodified. +// On Windows platform, '\' is the path separator, otherwise it is '/'. +FilePath FilePath::RemoveFileName() const { + const char* const last_sep = FindLastPathSeparator(); + std::string dir; + if (last_sep) { + dir = std::string(c_str(), last_sep + 1 - c_str()); + } else { + dir = kCurrentDirectoryString; + } + return FilePath(dir); +} + +// Helper functions for naming files in a directory for xml output. + +// Given directory = "dir", base_name = "test", number = 0, +// extension = "xml", returns "dir/test.xml". If number is greater +// than zero (e.g., 12), returns "dir/test_12.xml". +// On Windows platform, uses \ as the separator rather than /. +FilePath FilePath::MakeFileName(const FilePath& directory, + const FilePath& base_name, + int number, + const char* extension) { + std::string file; + if (number == 0) { + file = base_name.string() + "." + extension; + } else { + file = base_name.string() + "_" + StreamableToString(number) + + "." + extension; + } + return ConcatPaths(directory, FilePath(file)); +} + +// Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". +// On Windows, uses \ as the separator rather than /. +FilePath FilePath::ConcatPaths(const FilePath& directory, + const FilePath& relative_path) { + if (directory.IsEmpty()) + return relative_path; + const FilePath dir(directory.RemoveTrailingPathSeparator()); + return FilePath(dir.string() + kPathSeparator + relative_path.string()); +} + +// Returns true if pathname describes something findable in the file-system, +// either a file, directory, or whatever. +bool FilePath::FileOrDirectoryExists() const { +#if GTEST_OS_WINDOWS_MOBILE + LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); + const DWORD attributes = GetFileAttributes(unicode); + delete [] unicode; + return attributes != kInvalidFileAttributes; +#else + posix::StatStruct file_stat; + return posix::Stat(pathname_.c_str(), &file_stat) == 0; +#endif // GTEST_OS_WINDOWS_MOBILE +} + +// Returns true if pathname describes a directory in the file-system +// that exists. +bool FilePath::DirectoryExists() const { + bool result = false; +#if GTEST_OS_WINDOWS + // Don't strip off trailing separator if path is a root directory on + // Windows (like "C:\\"). + const FilePath& path(IsRootDirectory() ? *this : + RemoveTrailingPathSeparator()); +#else + const FilePath& path(*this); +#endif + +#if GTEST_OS_WINDOWS_MOBILE + LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); + const DWORD attributes = GetFileAttributes(unicode); + delete [] unicode; + if ((attributes != kInvalidFileAttributes) && + (attributes & FILE_ATTRIBUTE_DIRECTORY)) { + result = true; + } +#else + posix::StatStruct file_stat; + result = posix::Stat(path.c_str(), &file_stat) == 0 && + posix::IsDir(file_stat); +#endif // GTEST_OS_WINDOWS_MOBILE + + return result; +} + +// Returns true if pathname describes a root directory. (Windows has one +// root directory per disk drive.) +bool FilePath::IsRootDirectory() const { +#if GTEST_OS_WINDOWS + // TODO(wan@google.com): on Windows a network share like + // \\server\share can be a root directory, although it cannot be the + // current directory. Handle this properly. + return pathname_.length() == 3 && IsAbsolutePath(); +#else + return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]); +#endif +} + +// Returns true if pathname describes an absolute path. +bool FilePath::IsAbsolutePath() const { + const char* const name = pathname_.c_str(); +#if GTEST_OS_WINDOWS + return pathname_.length() >= 3 && + ((name[0] >= 'a' && name[0] <= 'z') || + (name[0] >= 'A' && name[0] <= 'Z')) && + name[1] == ':' && + IsPathSeparator(name[2]); +#else + return IsPathSeparator(name[0]); +#endif +} + +// Returns a pathname for a file that does not currently exist. The pathname +// will be directory/base_name.extension or +// directory/base_name_.extension if directory/base_name.extension +// already exists. The number will be incremented until a pathname is found +// that does not already exist. +// Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. +// There could be a race condition if two or more processes are calling this +// function at the same time -- they could both pick the same filename. +FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, + const FilePath& base_name, + const char* extension) { + FilePath full_pathname; + int number = 0; + do { + full_pathname.Set(MakeFileName(directory, base_name, number++, extension)); + } while (full_pathname.FileOrDirectoryExists()); + return full_pathname; +} + +// Returns true if FilePath ends with a path separator, which indicates that +// it is intended to represent a directory. Returns false otherwise. +// This does NOT check that a directory (or file) actually exists. +bool FilePath::IsDirectory() const { + return !pathname_.empty() && + IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]); +} + +// Create directories so that path exists. Returns true if successful or if +// the directories already exist; returns false if unable to create directories +// for any reason. +bool FilePath::CreateDirectoriesRecursively() const { + if (!this->IsDirectory()) { + return false; + } + + if (pathname_.length() == 0 || this->DirectoryExists()) { + return true; + } + + const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName()); + return parent.CreateDirectoriesRecursively() && this->CreateFolder(); +} + +// Create the directory so that path exists. Returns true if successful or +// if the directory already exists; returns false if unable to create the +// directory for any reason, including if the parent directory does not +// exist. Not named "CreateDirectory" because that's a macro on Windows. +bool FilePath::CreateFolder() const { +#if GTEST_OS_WINDOWS_MOBILE + FilePath removed_sep(this->RemoveTrailingPathSeparator()); + LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); + int result = CreateDirectory(unicode, NULL) ? 0 : -1; + delete [] unicode; +#elif GTEST_OS_WINDOWS + int result = _mkdir(pathname_.c_str()); +#else + int result = mkdir(pathname_.c_str(), 0777); +#endif // GTEST_OS_WINDOWS_MOBILE + + if (result == -1) { + return this->DirectoryExists(); // An error is OK if the directory exists. + } + return true; // No error. +} + +// If input name has a trailing separator character, remove it and return the +// name, otherwise return the name string unmodified. +// On Windows platform, uses \ as the separator, other platforms use /. +FilePath FilePath::RemoveTrailingPathSeparator() const { + return IsDirectory() + ? FilePath(pathname_.substr(0, pathname_.length() - 1)) + : *this; +} + +// Removes any redundant separators that might be in the pathname. +// For example, "bar///foo" becomes "bar/foo". Does not eliminate other +// redundancies that might be in a pathname involving "." or "..". +// TODO(wan@google.com): handle Windows network shares (e.g. \\server\share). +void FilePath::Normalize() { + if (pathname_.c_str() == NULL) { + pathname_ = ""; + return; + } + const char* src = pathname_.c_str(); + char* const dest = new char[pathname_.length() + 1]; + char* dest_ptr = dest; + memset(dest_ptr, 0, pathname_.length() + 1); + + while (*src != '\0') { + *dest_ptr = *src; + if (!IsPathSeparator(*src)) { + src++; + } else { +#if GTEST_HAS_ALT_PATH_SEP_ + if (*dest_ptr == kAlternatePathSeparator) { + *dest_ptr = kPathSeparator; + } +#endif + while (IsPathSeparator(*src)) + src++; + } + dest_ptr++; + } + *dest_ptr = '\0'; + pathname_ = dest; + delete[] dest; +} + +} // namespace internal +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/src/gtest-internal-inl.h b/cpp/thirdparty/gtest-1.7.0/src/gtest-internal-inl.h new file mode 100644 index 000000000..35df303cc --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/src/gtest-internal-inl.h @@ -0,0 +1,1218 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// Utility functions and classes used by the Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) +// +// This file contains purely Google Test's internal implementation. Please +// DO NOT #INCLUDE IT IN A USER PROGRAM. + +#ifndef GTEST_SRC_GTEST_INTERNAL_INL_H_ +#define GTEST_SRC_GTEST_INTERNAL_INL_H_ + +// GTEST_IMPLEMENTATION_ is defined to 1 iff the current translation unit is +// part of Google Test's implementation; otherwise it's undefined. +#if !GTEST_IMPLEMENTATION_ +// A user is trying to include this from his code - just say no. +# error "gtest-internal-inl.h is part of Google Test's internal implementation." +# error "It must not be included except by Google Test itself." +#endif // GTEST_IMPLEMENTATION_ + +#ifndef _WIN32_WCE +# include +#endif // !_WIN32_WCE +#include +#include // For strtoll/_strtoul64/malloc/free. +#include // For memmove. + +#include +#include +#include + +#include "gtest/internal/gtest-port.h" + +#if GTEST_CAN_STREAM_RESULTS_ +# include // NOLINT +# include // NOLINT +#endif + +#if GTEST_OS_WINDOWS +# include // NOLINT +#endif // GTEST_OS_WINDOWS + +#include "gtest/gtest.h" // NOLINT +#include "gtest/gtest-spi.h" + +namespace testing { + +// Declares the flags. +// +// We don't want the users to modify this flag in the code, but want +// Google Test's own unit tests to be able to access it. Therefore we +// declare it here as opposed to in gtest.h. +GTEST_DECLARE_bool_(death_test_use_fork); + +namespace internal { + +// The value of GetTestTypeId() as seen from within the Google Test +// library. This is solely for testing GetTestTypeId(). +GTEST_API_ extern const TypeId kTestTypeIdInGoogleTest; + +// Names of the flags (needed for parsing Google Test flags). +const char kAlsoRunDisabledTestsFlag[] = "also_run_disabled_tests"; +const char kBreakOnFailureFlag[] = "break_on_failure"; +const char kCatchExceptionsFlag[] = "catch_exceptions"; +const char kColorFlag[] = "color"; +const char kFilterFlag[] = "filter"; +const char kListTestsFlag[] = "list_tests"; +const char kOutputFlag[] = "output"; +const char kPrintTimeFlag[] = "print_time"; +const char kRandomSeedFlag[] = "random_seed"; +const char kRepeatFlag[] = "repeat"; +const char kShuffleFlag[] = "shuffle"; +const char kStackTraceDepthFlag[] = "stack_trace_depth"; +const char kStreamResultToFlag[] = "stream_result_to"; +const char kThrowOnFailureFlag[] = "throw_on_failure"; + +// A valid random seed must be in [1, kMaxRandomSeed]. +const int kMaxRandomSeed = 99999; + +// g_help_flag is true iff the --help flag or an equivalent form is +// specified on the command line. +GTEST_API_ extern bool g_help_flag; + +// Returns the current time in milliseconds. +GTEST_API_ TimeInMillis GetTimeInMillis(); + +// Returns true iff Google Test should use colors in the output. +GTEST_API_ bool ShouldUseColor(bool stdout_is_tty); + +// Formats the given time in milliseconds as seconds. +GTEST_API_ std::string FormatTimeInMillisAsSeconds(TimeInMillis ms); + +// Converts the given time in milliseconds to a date string in the ISO 8601 +// format, without the timezone information. N.B.: due to the use the +// non-reentrant localtime() function, this function is not thread safe. Do +// not use it in any code that can be called from multiple threads. +GTEST_API_ std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms); + +// Parses a string for an Int32 flag, in the form of "--flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +GTEST_API_ bool ParseInt32Flag( + const char* str, const char* flag, Int32* value); + +// Returns a random seed in range [1, kMaxRandomSeed] based on the +// given --gtest_random_seed flag value. +inline int GetRandomSeedFromFlag(Int32 random_seed_flag) { + const unsigned int raw_seed = (random_seed_flag == 0) ? + static_cast(GetTimeInMillis()) : + static_cast(random_seed_flag); + + // Normalizes the actual seed to range [1, kMaxRandomSeed] such that + // it's easy to type. + const int normalized_seed = + static_cast((raw_seed - 1U) % + static_cast(kMaxRandomSeed)) + 1; + return normalized_seed; +} + +// Returns the first valid random seed after 'seed'. The behavior is +// undefined if 'seed' is invalid. The seed after kMaxRandomSeed is +// considered to be 1. +inline int GetNextRandomSeed(int seed) { + GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed) + << "Invalid random seed " << seed << " - must be in [1, " + << kMaxRandomSeed << "]."; + const int next_seed = seed + 1; + return (next_seed > kMaxRandomSeed) ? 1 : next_seed; +} + +// This class saves the values of all Google Test flags in its c'tor, and +// restores them in its d'tor. +class GTestFlagSaver { + public: + // The c'tor. + GTestFlagSaver() { + also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests); + break_on_failure_ = GTEST_FLAG(break_on_failure); + catch_exceptions_ = GTEST_FLAG(catch_exceptions); + color_ = GTEST_FLAG(color); + death_test_style_ = GTEST_FLAG(death_test_style); + death_test_use_fork_ = GTEST_FLAG(death_test_use_fork); + filter_ = GTEST_FLAG(filter); + internal_run_death_test_ = GTEST_FLAG(internal_run_death_test); + list_tests_ = GTEST_FLAG(list_tests); + output_ = GTEST_FLAG(output); + print_time_ = GTEST_FLAG(print_time); + random_seed_ = GTEST_FLAG(random_seed); + repeat_ = GTEST_FLAG(repeat); + shuffle_ = GTEST_FLAG(shuffle); + stack_trace_depth_ = GTEST_FLAG(stack_trace_depth); + stream_result_to_ = GTEST_FLAG(stream_result_to); + throw_on_failure_ = GTEST_FLAG(throw_on_failure); + } + + // The d'tor is not virtual. DO NOT INHERIT FROM THIS CLASS. + ~GTestFlagSaver() { + GTEST_FLAG(also_run_disabled_tests) = also_run_disabled_tests_; + GTEST_FLAG(break_on_failure) = break_on_failure_; + GTEST_FLAG(catch_exceptions) = catch_exceptions_; + GTEST_FLAG(color) = color_; + GTEST_FLAG(death_test_style) = death_test_style_; + GTEST_FLAG(death_test_use_fork) = death_test_use_fork_; + GTEST_FLAG(filter) = filter_; + GTEST_FLAG(internal_run_death_test) = internal_run_death_test_; + GTEST_FLAG(list_tests) = list_tests_; + GTEST_FLAG(output) = output_; + GTEST_FLAG(print_time) = print_time_; + GTEST_FLAG(random_seed) = random_seed_; + GTEST_FLAG(repeat) = repeat_; + GTEST_FLAG(shuffle) = shuffle_; + GTEST_FLAG(stack_trace_depth) = stack_trace_depth_; + GTEST_FLAG(stream_result_to) = stream_result_to_; + GTEST_FLAG(throw_on_failure) = throw_on_failure_; + } + + private: + // Fields for saving the original values of flags. + bool also_run_disabled_tests_; + bool break_on_failure_; + bool catch_exceptions_; + std::string color_; + std::string death_test_style_; + bool death_test_use_fork_; + std::string filter_; + std::string internal_run_death_test_; + bool list_tests_; + std::string output_; + bool print_time_; + internal::Int32 random_seed_; + internal::Int32 repeat_; + bool shuffle_; + internal::Int32 stack_trace_depth_; + std::string stream_result_to_; + bool throw_on_failure_; +} GTEST_ATTRIBUTE_UNUSED_; + +// Converts a Unicode code point to a narrow string in UTF-8 encoding. +// code_point parameter is of type UInt32 because wchar_t may not be +// wide enough to contain a code point. +// If the code_point is not a valid Unicode code point +// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted +// to "(Invalid Unicode 0xXXXXXXXX)". +GTEST_API_ std::string CodePointToUtf8(UInt32 code_point); + +// Converts a wide string to a narrow string in UTF-8 encoding. +// The wide string is assumed to have the following encoding: +// UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) +// UTF-32 if sizeof(wchar_t) == 4 (on Linux) +// Parameter str points to a null-terminated wide string. +// Parameter num_chars may additionally limit the number +// of wchar_t characters processed. -1 is used when the entire string +// should be processed. +// If the string contains code points that are not valid Unicode code points +// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output +// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding +// and contains invalid UTF-16 surrogate pairs, values in those pairs +// will be encoded as individual Unicode characters from Basic Normal Plane. +GTEST_API_ std::string WideStringToUtf8(const wchar_t* str, int num_chars); + +// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file +// if the variable is present. If a file already exists at this location, this +// function will write over it. If the variable is present, but the file cannot +// be created, prints an error and exits. +void WriteToShardStatusFileIfNeeded(); + +// Checks whether sharding is enabled by examining the relevant +// environment variable values. If the variables are present, +// but inconsistent (e.g., shard_index >= total_shards), prints +// an error and exits. If in_subprocess_for_death_test, sharding is +// disabled because it must only be applied to the original test +// process. Otherwise, we could filter out death tests we intended to execute. +GTEST_API_ bool ShouldShard(const char* total_shards_str, + const char* shard_index_str, + bool in_subprocess_for_death_test); + +// Parses the environment variable var as an Int32. If it is unset, +// returns default_val. If it is not an Int32, prints an error and +// and aborts. +GTEST_API_ Int32 Int32FromEnvOrDie(const char* env_var, Int32 default_val); + +// Given the total number of shards, the shard index, and the test id, +// returns true iff the test should be run on this shard. The test id is +// some arbitrary but unique non-negative integer assigned to each test +// method. Assumes that 0 <= shard_index < total_shards. +GTEST_API_ bool ShouldRunTestOnShard( + int total_shards, int shard_index, int test_id); + +// STL container utilities. + +// Returns the number of elements in the given container that satisfy +// the given predicate. +template +inline int CountIf(const Container& c, Predicate predicate) { + // Implemented as an explicit loop since std::count_if() in libCstd on + // Solaris has a non-standard signature. + int count = 0; + for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { + if (predicate(*it)) + ++count; + } + return count; +} + +// Applies a function/functor to each element in the container. +template +void ForEach(const Container& c, Functor functor) { + std::for_each(c.begin(), c.end(), functor); +} + +// Returns the i-th element of the vector, or default_value if i is not +// in range [0, v.size()). +template +inline E GetElementOr(const std::vector& v, int i, E default_value) { + return (i < 0 || i >= static_cast(v.size())) ? default_value : v[i]; +} + +// Performs an in-place shuffle of a range of the vector's elements. +// 'begin' and 'end' are element indices as an STL-style range; +// i.e. [begin, end) are shuffled, where 'end' == size() means to +// shuffle to the end of the vector. +template +void ShuffleRange(internal::Random* random, int begin, int end, + std::vector* v) { + const int size = static_cast(v->size()); + GTEST_CHECK_(0 <= begin && begin <= size) + << "Invalid shuffle range start " << begin << ": must be in range [0, " + << size << "]."; + GTEST_CHECK_(begin <= end && end <= size) + << "Invalid shuffle range finish " << end << ": must be in range [" + << begin << ", " << size << "]."; + + // Fisher-Yates shuffle, from + // http://en.wikipedia.org/wiki/Fisher-Yates_shuffle + for (int range_width = end - begin; range_width >= 2; range_width--) { + const int last_in_range = begin + range_width - 1; + const int selected = begin + random->Generate(range_width); + std::swap((*v)[selected], (*v)[last_in_range]); + } +} + +// Performs an in-place shuffle of the vector's elements. +template +inline void Shuffle(internal::Random* random, std::vector* v) { + ShuffleRange(random, 0, static_cast(v->size()), v); +} + +// A function for deleting an object. Handy for being used as a +// functor. +template +static void Delete(T* x) { + delete x; +} + +// A predicate that checks the key of a TestProperty against a known key. +// +// TestPropertyKeyIs is copyable. +class TestPropertyKeyIs { + public: + // Constructor. + // + // TestPropertyKeyIs has NO default constructor. + explicit TestPropertyKeyIs(const std::string& key) : key_(key) {} + + // Returns true iff the test name of test property matches on key_. + bool operator()(const TestProperty& test_property) const { + return test_property.key() == key_; + } + + private: + std::string key_; +}; + +// Class UnitTestOptions. +// +// This class contains functions for processing options the user +// specifies when running the tests. It has only static members. +// +// In most cases, the user can specify an option using either an +// environment variable or a command line flag. E.g. you can set the +// test filter using either GTEST_FILTER or --gtest_filter. If both +// the variable and the flag are present, the latter overrides the +// former. +class GTEST_API_ UnitTestOptions { + public: + // Functions for processing the gtest_output flag. + + // Returns the output format, or "" for normal printed output. + static std::string GetOutputFormat(); + + // Returns the absolute path of the requested output file, or the + // default (test_detail.xml in the original working directory) if + // none was explicitly specified. + static std::string GetAbsolutePathToOutputFile(); + + // Functions for processing the gtest_filter flag. + + // Returns true iff the wildcard pattern matches the string. The + // first ':' or '\0' character in pattern marks the end of it. + // + // This recursive algorithm isn't very efficient, but is clear and + // works well enough for matching test names, which are short. + static bool PatternMatchesString(const char *pattern, const char *str); + + // Returns true iff the user-specified filter matches the test case + // name and the test name. + static bool FilterMatchesTest(const std::string &test_case_name, + const std::string &test_name); + +#if GTEST_OS_WINDOWS + // Function for supporting the gtest_catch_exception flag. + + // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the + // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. + // This function is useful as an __except condition. + static int GTestShouldProcessSEH(DWORD exception_code); +#endif // GTEST_OS_WINDOWS + + // Returns true if "name" matches the ':' separated list of glob-style + // filters in "filter". + static bool MatchesFilter(const std::string& name, const char* filter); +}; + +// Returns the current application's name, removing directory path if that +// is present. Used by UnitTestOptions::GetOutputFile. +GTEST_API_ FilePath GetCurrentExecutableName(); + +// The role interface for getting the OS stack trace as a string. +class OsStackTraceGetterInterface { + public: + OsStackTraceGetterInterface() {} + virtual ~OsStackTraceGetterInterface() {} + + // Returns the current OS stack trace as an std::string. Parameters: + // + // max_depth - the maximum number of stack frames to be included + // in the trace. + // skip_count - the number of top frames to be skipped; doesn't count + // against max_depth. + virtual string CurrentStackTrace(int max_depth, int skip_count) = 0; + + // UponLeavingGTest() should be called immediately before Google Test calls + // user code. It saves some information about the current stack that + // CurrentStackTrace() will use to find and hide Google Test stack frames. + virtual void UponLeavingGTest() = 0; + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetterInterface); +}; + +// A working implementation of the OsStackTraceGetterInterface interface. +class OsStackTraceGetter : public OsStackTraceGetterInterface { + public: + OsStackTraceGetter() : caller_frame_(NULL) {} + + virtual string CurrentStackTrace(int max_depth, int skip_count) + GTEST_LOCK_EXCLUDED_(mutex_); + + virtual void UponLeavingGTest() GTEST_LOCK_EXCLUDED_(mutex_); + + // This string is inserted in place of stack frames that are part of + // Google Test's implementation. + static const char* const kElidedFramesMarker; + + private: + Mutex mutex_; // protects all internal state + + // We save the stack frame below the frame that calls user code. + // We do this because the address of the frame immediately below + // the user code changes between the call to UponLeavingGTest() + // and any calls to CurrentStackTrace() from within the user code. + void* caller_frame_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetter); +}; + +// Information about a Google Test trace point. +struct TraceInfo { + const char* file; + int line; + std::string message; +}; + +// This is the default global test part result reporter used in UnitTestImpl. +// This class should only be used by UnitTestImpl. +class DefaultGlobalTestPartResultReporter + : public TestPartResultReporterInterface { + public: + explicit DefaultGlobalTestPartResultReporter(UnitTestImpl* unit_test); + // Implements the TestPartResultReporterInterface. Reports the test part + // result in the current test. + virtual void ReportTestPartResult(const TestPartResult& result); + + private: + UnitTestImpl* const unit_test_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultGlobalTestPartResultReporter); +}; + +// This is the default per thread test part result reporter used in +// UnitTestImpl. This class should only be used by UnitTestImpl. +class DefaultPerThreadTestPartResultReporter + : public TestPartResultReporterInterface { + public: + explicit DefaultPerThreadTestPartResultReporter(UnitTestImpl* unit_test); + // Implements the TestPartResultReporterInterface. The implementation just + // delegates to the current global test part result reporter of *unit_test_. + virtual void ReportTestPartResult(const TestPartResult& result); + + private: + UnitTestImpl* const unit_test_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultPerThreadTestPartResultReporter); +}; + +// The private implementation of the UnitTest class. We don't protect +// the methods under a mutex, as this class is not accessible by a +// user and the UnitTest class that delegates work to this class does +// proper locking. +class GTEST_API_ UnitTestImpl { + public: + explicit UnitTestImpl(UnitTest* parent); + virtual ~UnitTestImpl(); + + // There are two different ways to register your own TestPartResultReporter. + // You can register your own repoter to listen either only for test results + // from the current thread or for results from all threads. + // By default, each per-thread test result repoter just passes a new + // TestPartResult to the global test result reporter, which registers the + // test part result for the currently running test. + + // Returns the global test part result reporter. + TestPartResultReporterInterface* GetGlobalTestPartResultReporter(); + + // Sets the global test part result reporter. + void SetGlobalTestPartResultReporter( + TestPartResultReporterInterface* reporter); + + // Returns the test part result reporter for the current thread. + TestPartResultReporterInterface* GetTestPartResultReporterForCurrentThread(); + + // Sets the test part result reporter for the current thread. + void SetTestPartResultReporterForCurrentThread( + TestPartResultReporterInterface* reporter); + + // Gets the number of successful test cases. + int successful_test_case_count() const; + + // Gets the number of failed test cases. + int failed_test_case_count() const; + + // Gets the number of all test cases. + int total_test_case_count() const; + + // Gets the number of all test cases that contain at least one test + // that should run. + int test_case_to_run_count() const; + + // Gets the number of successful tests. + int successful_test_count() const; + + // Gets the number of failed tests. + int failed_test_count() const; + + // Gets the number of disabled tests that will be reported in the XML report. + int reportable_disabled_test_count() const; + + // Gets the number of disabled tests. + int disabled_test_count() const; + + // Gets the number of tests to be printed in the XML report. + int reportable_test_count() const; + + // Gets the number of all tests. + int total_test_count() const; + + // Gets the number of tests that should run. + int test_to_run_count() const; + + // Gets the time of the test program start, in ms from the start of the + // UNIX epoch. + TimeInMillis start_timestamp() const { return start_timestamp_; } + + // Gets the elapsed time, in milliseconds. + TimeInMillis elapsed_time() const { return elapsed_time_; } + + // Returns true iff the unit test passed (i.e. all test cases passed). + bool Passed() const { return !Failed(); } + + // Returns true iff the unit test failed (i.e. some test case failed + // or something outside of all tests failed). + bool Failed() const { + return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed(); + } + + // Gets the i-th test case among all the test cases. i can range from 0 to + // total_test_case_count() - 1. If i is not in that range, returns NULL. + const TestCase* GetTestCase(int i) const { + const int index = GetElementOr(test_case_indices_, i, -1); + return index < 0 ? NULL : test_cases_[i]; + } + + // Gets the i-th test case among all the test cases. i can range from 0 to + // total_test_case_count() - 1. If i is not in that range, returns NULL. + TestCase* GetMutableTestCase(int i) { + const int index = GetElementOr(test_case_indices_, i, -1); + return index < 0 ? NULL : test_cases_[index]; + } + + // Provides access to the event listener list. + TestEventListeners* listeners() { return &listeners_; } + + // Returns the TestResult for the test that's currently running, or + // the TestResult for the ad hoc test if no test is running. + TestResult* current_test_result(); + + // Returns the TestResult for the ad hoc test. + const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } + + // Sets the OS stack trace getter. + // + // Does nothing if the input and the current OS stack trace getter + // are the same; otherwise, deletes the old getter and makes the + // input the current getter. + void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter); + + // Returns the current OS stack trace getter if it is not NULL; + // otherwise, creates an OsStackTraceGetter, makes it the current + // getter, and returns it. + OsStackTraceGetterInterface* os_stack_trace_getter(); + + // Returns the current OS stack trace as an std::string. + // + // The maximum number of stack frames to be included is specified by + // the gtest_stack_trace_depth flag. The skip_count parameter + // specifies the number of top frames to be skipped, which doesn't + // count against the number of frames to be included. + // + // For example, if Foo() calls Bar(), which in turn calls + // CurrentOsStackTraceExceptTop(1), Foo() will be included in the + // trace but Bar() and CurrentOsStackTraceExceptTop() won't. + std::string CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_; + + // Finds and returns a TestCase with the given name. If one doesn't + // exist, creates one and returns it. + // + // Arguments: + // + // test_case_name: name of the test case + // type_param: the name of the test's type parameter, or NULL if + // this is not a typed or a type-parameterized test. + // set_up_tc: pointer to the function that sets up the test case + // tear_down_tc: pointer to the function that tears down the test case + TestCase* GetTestCase(const char* test_case_name, + const char* type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc); + + // Adds a TestInfo to the unit test. + // + // Arguments: + // + // set_up_tc: pointer to the function that sets up the test case + // tear_down_tc: pointer to the function that tears down the test case + // test_info: the TestInfo object + void AddTestInfo(Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc, + TestInfo* test_info) { + // In order to support thread-safe death tests, we need to + // remember the original working directory when the test program + // was first invoked. We cannot do this in RUN_ALL_TESTS(), as + // the user may have changed the current directory before calling + // RUN_ALL_TESTS(). Therefore we capture the current directory in + // AddTestInfo(), which is called to register a TEST or TEST_F + // before main() is reached. + if (original_working_dir_.IsEmpty()) { + original_working_dir_.Set(FilePath::GetCurrentDir()); + GTEST_CHECK_(!original_working_dir_.IsEmpty()) + << "Failed to get the current working directory."; + } + + GetTestCase(test_info->test_case_name(), + test_info->type_param(), + set_up_tc, + tear_down_tc)->AddTestInfo(test_info); + } + +#if GTEST_HAS_PARAM_TEST + // Returns ParameterizedTestCaseRegistry object used to keep track of + // value-parameterized tests and instantiate and register them. + internal::ParameterizedTestCaseRegistry& parameterized_test_registry() { + return parameterized_test_registry_; + } +#endif // GTEST_HAS_PARAM_TEST + + // Sets the TestCase object for the test that's currently running. + void set_current_test_case(TestCase* a_current_test_case) { + current_test_case_ = a_current_test_case; + } + + // Sets the TestInfo object for the test that's currently running. If + // current_test_info is NULL, the assertion results will be stored in + // ad_hoc_test_result_. + void set_current_test_info(TestInfo* a_current_test_info) { + current_test_info_ = a_current_test_info; + } + + // Registers all parameterized tests defined using TEST_P and + // INSTANTIATE_TEST_CASE_P, creating regular tests for each test/parameter + // combination. This method can be called more then once; it has guards + // protecting from registering the tests more then once. If + // value-parameterized tests are disabled, RegisterParameterizedTests is + // present but does nothing. + void RegisterParameterizedTests(); + + // Runs all tests in this UnitTest object, prints the result, and + // returns true if all tests are successful. If any exception is + // thrown during a test, this test is considered to be failed, but + // the rest of the tests will still be run. + bool RunAllTests(); + + // Clears the results of all tests, except the ad hoc tests. + void ClearNonAdHocTestResult() { + ForEach(test_cases_, TestCase::ClearTestCaseResult); + } + + // Clears the results of ad-hoc test assertions. + void ClearAdHocTestResult() { + ad_hoc_test_result_.Clear(); + } + + // Adds a TestProperty to the current TestResult object when invoked in a + // context of a test or a test case, or to the global property set. If the + // result already contains a property with the same key, the value will be + // updated. + void RecordProperty(const TestProperty& test_property); + + enum ReactionToSharding { + HONOR_SHARDING_PROTOCOL, + IGNORE_SHARDING_PROTOCOL + }; + + // Matches the full name of each test against the user-specified + // filter to decide whether the test should run, then records the + // result in each TestCase and TestInfo object. + // If shard_tests == HONOR_SHARDING_PROTOCOL, further filters tests + // based on sharding variables in the environment. + // Returns the number of tests that should run. + int FilterTests(ReactionToSharding shard_tests); + + // Prints the names of the tests matching the user-specified filter flag. + void ListTestsMatchingFilter(); + + const TestCase* current_test_case() const { return current_test_case_; } + TestInfo* current_test_info() { return current_test_info_; } + const TestInfo* current_test_info() const { return current_test_info_; } + + // Returns the vector of environments that need to be set-up/torn-down + // before/after the tests are run. + std::vector& environments() { return environments_; } + + // Getters for the per-thread Google Test trace stack. + std::vector& gtest_trace_stack() { + return *(gtest_trace_stack_.pointer()); + } + const std::vector& gtest_trace_stack() const { + return gtest_trace_stack_.get(); + } + +#if GTEST_HAS_DEATH_TEST + void InitDeathTestSubprocessControlInfo() { + internal_run_death_test_flag_.reset(ParseInternalRunDeathTestFlag()); + } + // Returns a pointer to the parsed --gtest_internal_run_death_test + // flag, or NULL if that flag was not specified. + // This information is useful only in a death test child process. + // Must not be called before a call to InitGoogleTest. + const InternalRunDeathTestFlag* internal_run_death_test_flag() const { + return internal_run_death_test_flag_.get(); + } + + // Returns a pointer to the current death test factory. + internal::DeathTestFactory* death_test_factory() { + return death_test_factory_.get(); + } + + void SuppressTestEventsIfInSubprocess(); + + friend class ReplaceDeathTestFactory; +#endif // GTEST_HAS_DEATH_TEST + + // Initializes the event listener performing XML output as specified by + // UnitTestOptions. Must not be called before InitGoogleTest. + void ConfigureXmlOutput(); + +#if GTEST_CAN_STREAM_RESULTS_ + // Initializes the event listener for streaming test results to a socket. + // Must not be called before InitGoogleTest. + void ConfigureStreamingOutput(); +#endif + + // Performs initialization dependent upon flag values obtained in + // ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to + // ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest + // this function is also called from RunAllTests. Since this function can be + // called more than once, it has to be idempotent. + void PostFlagParsingInit(); + + // Gets the random seed used at the start of the current test iteration. + int random_seed() const { return random_seed_; } + + // Gets the random number generator. + internal::Random* random() { return &random_; } + + // Shuffles all test cases, and the tests within each test case, + // making sure that death tests are still run first. + void ShuffleTests(); + + // Restores the test cases and tests to their order before the first shuffle. + void UnshuffleTests(); + + // Returns the value of GTEST_FLAG(catch_exceptions) at the moment + // UnitTest::Run() starts. + bool catch_exceptions() const { return catch_exceptions_; } + + private: + friend class ::testing::UnitTest; + + // Used by UnitTest::Run() to capture the state of + // GTEST_FLAG(catch_exceptions) at the moment it starts. + void set_catch_exceptions(bool value) { catch_exceptions_ = value; } + + // The UnitTest object that owns this implementation object. + UnitTest* const parent_; + + // The working directory when the first TEST() or TEST_F() was + // executed. + internal::FilePath original_working_dir_; + + // The default test part result reporters. + DefaultGlobalTestPartResultReporter default_global_test_part_result_reporter_; + DefaultPerThreadTestPartResultReporter + default_per_thread_test_part_result_reporter_; + + // Points to (but doesn't own) the global test part result reporter. + TestPartResultReporterInterface* global_test_part_result_repoter_; + + // Protects read and write access to global_test_part_result_reporter_. + internal::Mutex global_test_part_result_reporter_mutex_; + + // Points to (but doesn't own) the per-thread test part result reporter. + internal::ThreadLocal + per_thread_test_part_result_reporter_; + + // The vector of environments that need to be set-up/torn-down + // before/after the tests are run. + std::vector environments_; + + // The vector of TestCases in their original order. It owns the + // elements in the vector. + std::vector test_cases_; + + // Provides a level of indirection for the test case list to allow + // easy shuffling and restoring the test case order. The i-th + // element of this vector is the index of the i-th test case in the + // shuffled order. + std::vector test_case_indices_; + +#if GTEST_HAS_PARAM_TEST + // ParameterizedTestRegistry object used to register value-parameterized + // tests. + internal::ParameterizedTestCaseRegistry parameterized_test_registry_; + + // Indicates whether RegisterParameterizedTests() has been called already. + bool parameterized_tests_registered_; +#endif // GTEST_HAS_PARAM_TEST + + // Index of the last death test case registered. Initially -1. + int last_death_test_case_; + + // This points to the TestCase for the currently running test. It + // changes as Google Test goes through one test case after another. + // When no test is running, this is set to NULL and Google Test + // stores assertion results in ad_hoc_test_result_. Initially NULL. + TestCase* current_test_case_; + + // This points to the TestInfo for the currently running test. It + // changes as Google Test goes through one test after another. When + // no test is running, this is set to NULL and Google Test stores + // assertion results in ad_hoc_test_result_. Initially NULL. + TestInfo* current_test_info_; + + // Normally, a user only writes assertions inside a TEST or TEST_F, + // or inside a function called by a TEST or TEST_F. Since Google + // Test keeps track of which test is current running, it can + // associate such an assertion with the test it belongs to. + // + // If an assertion is encountered when no TEST or TEST_F is running, + // Google Test attributes the assertion result to an imaginary "ad hoc" + // test, and records the result in ad_hoc_test_result_. + TestResult ad_hoc_test_result_; + + // The list of event listeners that can be used to track events inside + // Google Test. + TestEventListeners listeners_; + + // The OS stack trace getter. Will be deleted when the UnitTest + // object is destructed. By default, an OsStackTraceGetter is used, + // but the user can set this field to use a custom getter if that is + // desired. + OsStackTraceGetterInterface* os_stack_trace_getter_; + + // True iff PostFlagParsingInit() has been called. + bool post_flag_parse_init_performed_; + + // The random number seed used at the beginning of the test run. + int random_seed_; + + // Our random number generator. + internal::Random random_; + + // The time of the test program start, in ms from the start of the + // UNIX epoch. + TimeInMillis start_timestamp_; + + // How long the test took to run, in milliseconds. + TimeInMillis elapsed_time_; + +#if GTEST_HAS_DEATH_TEST + // The decomposed components of the gtest_internal_run_death_test flag, + // parsed when RUN_ALL_TESTS is called. + internal::scoped_ptr internal_run_death_test_flag_; + internal::scoped_ptr death_test_factory_; +#endif // GTEST_HAS_DEATH_TEST + + // A per-thread stack of traces created by the SCOPED_TRACE() macro. + internal::ThreadLocal > gtest_trace_stack_; + + // The value of GTEST_FLAG(catch_exceptions) at the moment RunAllTests() + // starts. + bool catch_exceptions_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTestImpl); +}; // class UnitTestImpl + +// Convenience function for accessing the global UnitTest +// implementation object. +inline UnitTestImpl* GetUnitTestImpl() { + return UnitTest::GetInstance()->impl(); +} + +#if GTEST_USES_SIMPLE_RE + +// Internal helper functions for implementing the simple regular +// expression matcher. +GTEST_API_ bool IsInSet(char ch, const char* str); +GTEST_API_ bool IsAsciiDigit(char ch); +GTEST_API_ bool IsAsciiPunct(char ch); +GTEST_API_ bool IsRepeat(char ch); +GTEST_API_ bool IsAsciiWhiteSpace(char ch); +GTEST_API_ bool IsAsciiWordChar(char ch); +GTEST_API_ bool IsValidEscape(char ch); +GTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch); +GTEST_API_ bool ValidateRegex(const char* regex); +GTEST_API_ bool MatchRegexAtHead(const char* regex, const char* str); +GTEST_API_ bool MatchRepetitionAndRegexAtHead( + bool escaped, char ch, char repeat, const char* regex, const char* str); +GTEST_API_ bool MatchRegexAnywhere(const char* regex, const char* str); + +#endif // GTEST_USES_SIMPLE_RE + +// Parses the command line for Google Test flags, without initializing +// other parts of Google Test. +GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, char** argv); +GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv); + +#if GTEST_HAS_DEATH_TEST + +// Returns the message describing the last system error, regardless of the +// platform. +GTEST_API_ std::string GetLastErrnoDescription(); + +# if GTEST_OS_WINDOWS +// Provides leak-safe Windows kernel handle ownership. +class AutoHandle { + public: + AutoHandle() : handle_(INVALID_HANDLE_VALUE) {} + explicit AutoHandle(HANDLE handle) : handle_(handle) {} + + ~AutoHandle() { Reset(); } + + HANDLE Get() const { return handle_; } + void Reset() { Reset(INVALID_HANDLE_VALUE); } + void Reset(HANDLE handle) { + if (handle != handle_) { + if (handle_ != INVALID_HANDLE_VALUE) + ::CloseHandle(handle_); + handle_ = handle; + } + } + + private: + HANDLE handle_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle); +}; +# endif // GTEST_OS_WINDOWS + +// Attempts to parse a string into a positive integer pointed to by the +// number parameter. Returns true if that is possible. +// GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we can use +// it here. +template +bool ParseNaturalNumber(const ::std::string& str, Integer* number) { + // Fail fast if the given string does not begin with a digit; + // this bypasses strtoXXX's "optional leading whitespace and plus + // or minus sign" semantics, which are undesirable here. + if (str.empty() || !IsDigit(str[0])) { + return false; + } + errno = 0; + + char* end; + // BiggestConvertible is the largest integer type that system-provided + // string-to-number conversion routines can return. + +# if GTEST_OS_WINDOWS && !defined(__GNUC__) + + // MSVC and C++ Builder define __int64 instead of the standard long long. + typedef unsigned __int64 BiggestConvertible; + const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10); + +# else + + typedef unsigned long long BiggestConvertible; // NOLINT + const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10); + +# endif // GTEST_OS_WINDOWS && !defined(__GNUC__) + + const bool parse_success = *end == '\0' && errno == 0; + + // TODO(vladl@google.com): Convert this to compile time assertion when it is + // available. + GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed)); + + const Integer result = static_cast(parsed); + if (parse_success && static_cast(result) == parsed) { + *number = result; + return true; + } + return false; +} +#endif // GTEST_HAS_DEATH_TEST + +// TestResult contains some private methods that should be hidden from +// Google Test user but are required for testing. This class allow our tests +// to access them. +// +// This class is supplied only for the purpose of testing Google Test's own +// constructs. Do not use it in user tests, either directly or indirectly. +class TestResultAccessor { + public: + static void RecordProperty(TestResult* test_result, + const std::string& xml_element, + const TestProperty& property) { + test_result->RecordProperty(xml_element, property); + } + + static void ClearTestPartResults(TestResult* test_result) { + test_result->ClearTestPartResults(); + } + + static const std::vector& test_part_results( + const TestResult& test_result) { + return test_result.test_part_results(); + } +}; + +#if GTEST_CAN_STREAM_RESULTS_ + +// Streams test results to the given port on the given host machine. +class StreamingListener : public EmptyTestEventListener { + public: + // Abstract base class for writing strings to a socket. + class AbstractSocketWriter { + public: + virtual ~AbstractSocketWriter() {} + + // Sends a string to the socket. + virtual void Send(const string& message) = 0; + + // Closes the socket. + virtual void CloseConnection() {} + + // Sends a string and a newline to the socket. + void SendLn(const string& message) { + Send(message + "\n"); + } + }; + + // Concrete class for actually writing strings to a socket. + class SocketWriter : public AbstractSocketWriter { + public: + SocketWriter(const string& host, const string& port) + : sockfd_(-1), host_name_(host), port_num_(port) { + MakeConnection(); + } + + virtual ~SocketWriter() { + if (sockfd_ != -1) + CloseConnection(); + } + + // Sends a string to the socket. + virtual void Send(const string& message) { + GTEST_CHECK_(sockfd_ != -1) + << "Send() can be called only when there is a connection."; + + const int len = static_cast(message.length()); + if (write(sockfd_, message.c_str(), len) != len) { + GTEST_LOG_(WARNING) + << "stream_result_to: failed to stream to " + << host_name_ << ":" << port_num_; + } + } + + private: + // Creates a client socket and connects to the server. + void MakeConnection(); + + // Closes the socket. + void CloseConnection() { + GTEST_CHECK_(sockfd_ != -1) + << "CloseConnection() can be called only when there is a connection."; + + close(sockfd_); + sockfd_ = -1; + } + + int sockfd_; // socket file descriptor + const string host_name_; + const string port_num_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(SocketWriter); + }; // class SocketWriter + + // Escapes '=', '&', '%', and '\n' characters in str as "%xx". + static string UrlEncode(const char* str); + + StreamingListener(const string& host, const string& port) + : socket_writer_(new SocketWriter(host, port)) { Start(); } + + explicit StreamingListener(AbstractSocketWriter* socket_writer) + : socket_writer_(socket_writer) { Start(); } + + void OnTestProgramStart(const UnitTest& /* unit_test */) { + SendLn("event=TestProgramStart"); + } + + void OnTestProgramEnd(const UnitTest& unit_test) { + // Note that Google Test current only report elapsed time for each + // test iteration, not for the entire test program. + SendLn("event=TestProgramEnd&passed=" + FormatBool(unit_test.Passed())); + + // Notify the streaming server to stop. + socket_writer_->CloseConnection(); + } + + void OnTestIterationStart(const UnitTest& /* unit_test */, int iteration) { + SendLn("event=TestIterationStart&iteration=" + + StreamableToString(iteration)); + } + + void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration */) { + SendLn("event=TestIterationEnd&passed=" + + FormatBool(unit_test.Passed()) + "&elapsed_time=" + + StreamableToString(unit_test.elapsed_time()) + "ms"); + } + + void OnTestCaseStart(const TestCase& test_case) { + SendLn(std::string("event=TestCaseStart&name=") + test_case.name()); + } + + void OnTestCaseEnd(const TestCase& test_case) { + SendLn("event=TestCaseEnd&passed=" + FormatBool(test_case.Passed()) + + "&elapsed_time=" + StreamableToString(test_case.elapsed_time()) + + "ms"); + } + + void OnTestStart(const TestInfo& test_info) { + SendLn(std::string("event=TestStart&name=") + test_info.name()); + } + + void OnTestEnd(const TestInfo& test_info) { + SendLn("event=TestEnd&passed=" + + FormatBool((test_info.result())->Passed()) + + "&elapsed_time=" + + StreamableToString((test_info.result())->elapsed_time()) + "ms"); + } + + void OnTestPartResult(const TestPartResult& test_part_result) { + const char* file_name = test_part_result.file_name(); + if (file_name == NULL) + file_name = ""; + SendLn("event=TestPartResult&file=" + UrlEncode(file_name) + + "&line=" + StreamableToString(test_part_result.line_number()) + + "&message=" + UrlEncode(test_part_result.message())); + } + + private: + // Sends the given message and a newline to the socket. + void SendLn(const string& message) { socket_writer_->SendLn(message); } + + // Called at the start of streaming to notify the receiver what + // protocol we are using. + void Start() { SendLn("gtest_streaming_protocol_version=1.0"); } + + string FormatBool(bool value) { return value ? "1" : "0"; } + + const scoped_ptr socket_writer_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamingListener); +}; // class StreamingListener + +#endif // GTEST_CAN_STREAM_RESULTS_ + +} // namespace internal +} // namespace testing + +#endif // GTEST_SRC_GTEST_INTERNAL_INL_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/src/gtest-port.cc b/cpp/thirdparty/gtest-1.7.0/src/gtest-port.cc new file mode 100644 index 000000000..0c4df5f29 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/src/gtest-port.cc @@ -0,0 +1,805 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#include "gtest/internal/gtest-port.h" + +#include +#include +#include +#include + +#if GTEST_OS_WINDOWS_MOBILE +# include // For TerminateProcess() +#elif GTEST_OS_WINDOWS +# include +# include +#else +# include +#endif // GTEST_OS_WINDOWS_MOBILE + +#if GTEST_OS_MAC +# include +# include +# include +#endif // GTEST_OS_MAC + +#if GTEST_OS_QNX +# include +# include +#endif // GTEST_OS_QNX + +#include "gtest/gtest-spi.h" +#include "gtest/gtest-message.h" +#include "gtest/internal/gtest-internal.h" +#include "gtest/internal/gtest-string.h" + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +namespace testing { +namespace internal { + +#if defined(_MSC_VER) || defined(__BORLANDC__) +// MSVC and C++Builder do not provide a definition of STDERR_FILENO. +const int kStdOutFileno = 1; +const int kStdErrFileno = 2; +#else +const int kStdOutFileno = STDOUT_FILENO; +const int kStdErrFileno = STDERR_FILENO; +#endif // _MSC_VER + +#if GTEST_OS_MAC + +// Returns the number of threads running in the process, or 0 to indicate that +// we cannot detect it. +size_t GetThreadCount() { + const task_t task = mach_task_self(); + mach_msg_type_number_t thread_count; + thread_act_array_t thread_list; + const kern_return_t status = task_threads(task, &thread_list, &thread_count); + if (status == KERN_SUCCESS) { + // task_threads allocates resources in thread_list and we need to free them + // to avoid leaks. + vm_deallocate(task, + reinterpret_cast(thread_list), + sizeof(thread_t) * thread_count); + return static_cast(thread_count); + } else { + return 0; + } +} + +#elif GTEST_OS_QNX + +// Returns the number of threads running in the process, or 0 to indicate that +// we cannot detect it. +size_t GetThreadCount() { + const int fd = open("/proc/self/as", O_RDONLY); + if (fd < 0) { + return 0; + } + procfs_info process_info; + const int status = + devctl(fd, DCMD_PROC_INFO, &process_info, sizeof(process_info), NULL); + close(fd); + if (status == EOK) { + return static_cast(process_info.num_threads); + } else { + return 0; + } +} + +#else + +size_t GetThreadCount() { + // There's no portable way to detect the number of threads, so we just + // return 0 to indicate that we cannot detect it. + return 0; +} + +#endif // GTEST_OS_MAC + +#if GTEST_USES_POSIX_RE + +// Implements RE. Currently only needed for death tests. + +RE::~RE() { + if (is_valid_) { + // regfree'ing an invalid regex might crash because the content + // of the regex is undefined. Since the regex's are essentially + // the same, one cannot be valid (or invalid) without the other + // being so too. + regfree(&partial_regex_); + regfree(&full_regex_); + } + free(const_cast(pattern_)); +} + +// Returns true iff regular expression re matches the entire str. +bool RE::FullMatch(const char* str, const RE& re) { + if (!re.is_valid_) return false; + + regmatch_t match; + return regexec(&re.full_regex_, str, 1, &match, 0) == 0; +} + +// Returns true iff regular expression re matches a substring of str +// (including str itself). +bool RE::PartialMatch(const char* str, const RE& re) { + if (!re.is_valid_) return false; + + regmatch_t match; + return regexec(&re.partial_regex_, str, 1, &match, 0) == 0; +} + +// Initializes an RE from its string representation. +void RE::Init(const char* regex) { + pattern_ = posix::StrDup(regex); + + // Reserves enough bytes to hold the regular expression used for a + // full match. + const size_t full_regex_len = strlen(regex) + 10; + char* const full_pattern = new char[full_regex_len]; + + snprintf(full_pattern, full_regex_len, "^(%s)$", regex); + is_valid_ = regcomp(&full_regex_, full_pattern, REG_EXTENDED) == 0; + // We want to call regcomp(&partial_regex_, ...) even if the + // previous expression returns false. Otherwise partial_regex_ may + // not be properly initialized can may cause trouble when it's + // freed. + // + // Some implementation of POSIX regex (e.g. on at least some + // versions of Cygwin) doesn't accept the empty string as a valid + // regex. We change it to an equivalent form "()" to be safe. + if (is_valid_) { + const char* const partial_regex = (*regex == '\0') ? "()" : regex; + is_valid_ = regcomp(&partial_regex_, partial_regex, REG_EXTENDED) == 0; + } + EXPECT_TRUE(is_valid_) + << "Regular expression \"" << regex + << "\" is not a valid POSIX Extended regular expression."; + + delete[] full_pattern; +} + +#elif GTEST_USES_SIMPLE_RE + +// Returns true iff ch appears anywhere in str (excluding the +// terminating '\0' character). +bool IsInSet(char ch, const char* str) { + return ch != '\0' && strchr(str, ch) != NULL; +} + +// Returns true iff ch belongs to the given classification. Unlike +// similar functions in , these aren't affected by the +// current locale. +bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } +bool IsAsciiPunct(char ch) { + return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); +} +bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } +bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } +bool IsAsciiWordChar(char ch) { + return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') || + ('0' <= ch && ch <= '9') || ch == '_'; +} + +// Returns true iff "\\c" is a supported escape sequence. +bool IsValidEscape(char c) { + return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); +} + +// Returns true iff the given atom (specified by escaped and pattern) +// matches ch. The result is undefined if the atom is invalid. +bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { + if (escaped) { // "\\p" where p is pattern_char. + switch (pattern_char) { + case 'd': return IsAsciiDigit(ch); + case 'D': return !IsAsciiDigit(ch); + case 'f': return ch == '\f'; + case 'n': return ch == '\n'; + case 'r': return ch == '\r'; + case 's': return IsAsciiWhiteSpace(ch); + case 'S': return !IsAsciiWhiteSpace(ch); + case 't': return ch == '\t'; + case 'v': return ch == '\v'; + case 'w': return IsAsciiWordChar(ch); + case 'W': return !IsAsciiWordChar(ch); + } + return IsAsciiPunct(pattern_char) && pattern_char == ch; + } + + return (pattern_char == '.' && ch != '\n') || pattern_char == ch; +} + +// Helper function used by ValidateRegex() to format error messages. +std::string FormatRegexSyntaxError(const char* regex, int index) { + return (Message() << "Syntax error at index " << index + << " in simple regular expression \"" << regex << "\": ").GetString(); +} + +// Generates non-fatal failures and returns false if regex is invalid; +// otherwise returns true. +bool ValidateRegex(const char* regex) { + if (regex == NULL) { + // TODO(wan@google.com): fix the source file location in the + // assertion failures to match where the regex is used in user + // code. + ADD_FAILURE() << "NULL is not a valid simple regular expression."; + return false; + } + + bool is_valid = true; + + // True iff ?, *, or + can follow the previous atom. + bool prev_repeatable = false; + for (int i = 0; regex[i]; i++) { + if (regex[i] == '\\') { // An escape sequence + i++; + if (regex[i] == '\0') { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) + << "'\\' cannot appear at the end."; + return false; + } + + if (!IsValidEscape(regex[i])) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) + << "invalid escape sequence \"\\" << regex[i] << "\"."; + is_valid = false; + } + prev_repeatable = true; + } else { // Not an escape sequence. + const char ch = regex[i]; + + if (ch == '^' && i > 0) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'^' can only appear at the beginning."; + is_valid = false; + } else if (ch == '$' && regex[i + 1] != '\0') { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'$' can only appear at the end."; + is_valid = false; + } else if (IsInSet(ch, "()[]{}|")) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'" << ch << "' is unsupported."; + is_valid = false; + } else if (IsRepeat(ch) && !prev_repeatable) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'" << ch << "' can only follow a repeatable token."; + is_valid = false; + } + + prev_repeatable = !IsInSet(ch, "^$?*+"); + } + } + + return is_valid; +} + +// Matches a repeated regex atom followed by a valid simple regular +// expression. The regex atom is defined as c if escaped is false, +// or \c otherwise. repeat is the repetition meta character (?, *, +// or +). The behavior is undefined if str contains too many +// characters to be indexable by size_t, in which case the test will +// probably time out anyway. We are fine with this limitation as +// std::string has it too. +bool MatchRepetitionAndRegexAtHead( + bool escaped, char c, char repeat, const char* regex, + const char* str) { + const size_t min_count = (repeat == '+') ? 1 : 0; + const size_t max_count = (repeat == '?') ? 1 : + static_cast(-1) - 1; + // We cannot call numeric_limits::max() as it conflicts with the + // max() macro on Windows. + + for (size_t i = 0; i <= max_count; ++i) { + // We know that the atom matches each of the first i characters in str. + if (i >= min_count && MatchRegexAtHead(regex, str + i)) { + // We have enough matches at the head, and the tail matches too. + // Since we only care about *whether* the pattern matches str + // (as opposed to *how* it matches), there is no need to find a + // greedy match. + return true; + } + if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i])) + return false; + } + return false; +} + +// Returns true iff regex matches a prefix of str. regex must be a +// valid simple regular expression and not start with "^", or the +// result is undefined. +bool MatchRegexAtHead(const char* regex, const char* str) { + if (*regex == '\0') // An empty regex matches a prefix of anything. + return true; + + // "$" only matches the end of a string. Note that regex being + // valid guarantees that there's nothing after "$" in it. + if (*regex == '$') + return *str == '\0'; + + // Is the first thing in regex an escape sequence? + const bool escaped = *regex == '\\'; + if (escaped) + ++regex; + if (IsRepeat(regex[1])) { + // MatchRepetitionAndRegexAtHead() calls MatchRegexAtHead(), so + // here's an indirect recursion. It terminates as the regex gets + // shorter in each recursion. + return MatchRepetitionAndRegexAtHead( + escaped, regex[0], regex[1], regex + 2, str); + } else { + // regex isn't empty, isn't "$", and doesn't start with a + // repetition. We match the first atom of regex with the first + // character of str and recurse. + return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) && + MatchRegexAtHead(regex + 1, str + 1); + } +} + +// Returns true iff regex matches any substring of str. regex must be +// a valid simple regular expression, or the result is undefined. +// +// The algorithm is recursive, but the recursion depth doesn't exceed +// the regex length, so we won't need to worry about running out of +// stack space normally. In rare cases the time complexity can be +// exponential with respect to the regex length + the string length, +// but usually it's must faster (often close to linear). +bool MatchRegexAnywhere(const char* regex, const char* str) { + if (regex == NULL || str == NULL) + return false; + + if (*regex == '^') + return MatchRegexAtHead(regex + 1, str); + + // A successful match can be anywhere in str. + do { + if (MatchRegexAtHead(regex, str)) + return true; + } while (*str++ != '\0'); + return false; +} + +// Implements the RE class. + +RE::~RE() { + free(const_cast(pattern_)); + free(const_cast(full_pattern_)); +} + +// Returns true iff regular expression re matches the entire str. +bool RE::FullMatch(const char* str, const RE& re) { + return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_, str); +} + +// Returns true iff regular expression re matches a substring of str +// (including str itself). +bool RE::PartialMatch(const char* str, const RE& re) { + return re.is_valid_ && MatchRegexAnywhere(re.pattern_, str); +} + +// Initializes an RE from its string representation. +void RE::Init(const char* regex) { + pattern_ = full_pattern_ = NULL; + if (regex != NULL) { + pattern_ = posix::StrDup(regex); + } + + is_valid_ = ValidateRegex(regex); + if (!is_valid_) { + // No need to calculate the full pattern when the regex is invalid. + return; + } + + const size_t len = strlen(regex); + // Reserves enough bytes to hold the regular expression used for a + // full match: we need space to prepend a '^', append a '$', and + // terminate the string with '\0'. + char* buffer = static_cast(malloc(len + 3)); + full_pattern_ = buffer; + + if (*regex != '^') + *buffer++ = '^'; // Makes sure full_pattern_ starts with '^'. + + // We don't use snprintf or strncpy, as they trigger a warning when + // compiled with VC++ 8.0. + memcpy(buffer, regex, len); + buffer += len; + + if (len == 0 || regex[len - 1] != '$') + *buffer++ = '$'; // Makes sure full_pattern_ ends with '$'. + + *buffer = '\0'; +} + +#endif // GTEST_USES_POSIX_RE + +const char kUnknownFile[] = "unknown file"; + +// Formats a source file path and a line number as they would appear +// in an error message from the compiler used to compile this code. +GTEST_API_ ::std::string FormatFileLocation(const char* file, int line) { + const std::string file_name(file == NULL ? kUnknownFile : file); + + if (line < 0) { + return file_name + ":"; + } +#ifdef _MSC_VER + return file_name + "(" + StreamableToString(line) + "):"; +#else + return file_name + ":" + StreamableToString(line) + ":"; +#endif // _MSC_VER +} + +// Formats a file location for compiler-independent XML output. +// Although this function is not platform dependent, we put it next to +// FormatFileLocation in order to contrast the two functions. +// Note that FormatCompilerIndependentFileLocation() does NOT append colon +// to the file location it produces, unlike FormatFileLocation(). +GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( + const char* file, int line) { + const std::string file_name(file == NULL ? kUnknownFile : file); + + if (line < 0) + return file_name; + else + return file_name + ":" + StreamableToString(line); +} + + +GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line) + : severity_(severity) { + const char* const marker = + severity == GTEST_INFO ? "[ INFO ]" : + severity == GTEST_WARNING ? "[WARNING]" : + severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]"; + GetStream() << ::std::endl << marker << " " + << FormatFileLocation(file, line).c_str() << ": "; +} + +// Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. +GTestLog::~GTestLog() { + GetStream() << ::std::endl; + if (severity_ == GTEST_FATAL) { + fflush(stderr); + posix::Abort(); + } +} +// Disable Microsoft deprecation warnings for POSIX functions called from +// this class (creat, dup, dup2, and close) +#ifdef _MSC_VER +# pragma warning(push) +# pragma warning(disable: 4996) +#endif // _MSC_VER + +#if GTEST_HAS_STREAM_REDIRECTION + +// Object that captures an output stream (stdout/stderr). +class CapturedStream { + public: + // The ctor redirects the stream to a temporary file. + explicit CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { +# if GTEST_OS_WINDOWS + char temp_dir_path[MAX_PATH + 1] = { '\0' }; // NOLINT + char temp_file_path[MAX_PATH + 1] = { '\0' }; // NOLINT + + ::GetTempPathA(sizeof(temp_dir_path), temp_dir_path); + const UINT success = ::GetTempFileNameA(temp_dir_path, + "gtest_redir", + 0, // Generate unique file name. + temp_file_path); + GTEST_CHECK_(success != 0) + << "Unable to create a temporary file in " << temp_dir_path; + const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE); + GTEST_CHECK_(captured_fd != -1) << "Unable to open temporary file " + << temp_file_path; + filename_ = temp_file_path; +# else + // There's no guarantee that a test has write access to the current + // directory, so we create the temporary file in the /tmp directory + // instead. We use /tmp on most systems, and /sdcard on Android. + // That's because Android doesn't have /tmp. +# if GTEST_OS_LINUX_ANDROID + // Note: Android applications are expected to call the framework's + // Context.getExternalStorageDirectory() method through JNI to get + // the location of the world-writable SD Card directory. However, + // this requires a Context handle, which cannot be retrieved + // globally from native code. Doing so also precludes running the + // code as part of a regular standalone executable, which doesn't + // run in a Dalvik process (e.g. when running it through 'adb shell'). + // + // The location /sdcard is directly accessible from native code + // and is the only location (unofficially) supported by the Android + // team. It's generally a symlink to the real SD Card mount point + // which can be /mnt/sdcard, /mnt/sdcard0, /system/media/sdcard, or + // other OEM-customized locations. Never rely on these, and always + // use /sdcard. + char name_template[] = "/sdcard/gtest_captured_stream.XXXXXX"; +# else + char name_template[] = "/tmp/captured_stream.XXXXXX"; +# endif // GTEST_OS_LINUX_ANDROID + const int captured_fd = mkstemp(name_template); + filename_ = name_template; +# endif // GTEST_OS_WINDOWS + fflush(NULL); + dup2(captured_fd, fd_); + close(captured_fd); + } + + ~CapturedStream() { + remove(filename_.c_str()); + } + + std::string GetCapturedString() { + if (uncaptured_fd_ != -1) { + // Restores the original stream. + fflush(NULL); + dup2(uncaptured_fd_, fd_); + close(uncaptured_fd_); + uncaptured_fd_ = -1; + } + + FILE* const file = posix::FOpen(filename_.c_str(), "r"); + const std::string content = ReadEntireFile(file); + posix::FClose(file); + return content; + } + + private: + // Reads the entire content of a file as an std::string. + static std::string ReadEntireFile(FILE* file); + + // Returns the size (in bytes) of a file. + static size_t GetFileSize(FILE* file); + + const int fd_; // A stream to capture. + int uncaptured_fd_; + // Name of the temporary file holding the stderr output. + ::std::string filename_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream); +}; + +// Returns the size (in bytes) of a file. +size_t CapturedStream::GetFileSize(FILE* file) { + fseek(file, 0, SEEK_END); + return static_cast(ftell(file)); +} + +// Reads the entire content of a file as a string. +std::string CapturedStream::ReadEntireFile(FILE* file) { + const size_t file_size = GetFileSize(file); + char* const buffer = new char[file_size]; + + size_t bytes_last_read = 0; // # of bytes read in the last fread() + size_t bytes_read = 0; // # of bytes read so far + + fseek(file, 0, SEEK_SET); + + // Keeps reading the file until we cannot read further or the + // pre-determined file size is reached. + do { + bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file); + bytes_read += bytes_last_read; + } while (bytes_last_read > 0 && bytes_read < file_size); + + const std::string content(buffer, bytes_read); + delete[] buffer; + + return content; +} + +# ifdef _MSC_VER +# pragma warning(pop) +# endif // _MSC_VER + +static CapturedStream* g_captured_stderr = NULL; +static CapturedStream* g_captured_stdout = NULL; + +// Starts capturing an output stream (stdout/stderr). +void CaptureStream(int fd, const char* stream_name, CapturedStream** stream) { + if (*stream != NULL) { + GTEST_LOG_(FATAL) << "Only one " << stream_name + << " capturer can exist at a time."; + } + *stream = new CapturedStream(fd); +} + +// Stops capturing the output stream and returns the captured string. +std::string GetCapturedStream(CapturedStream** captured_stream) { + const std::string content = (*captured_stream)->GetCapturedString(); + + delete *captured_stream; + *captured_stream = NULL; + + return content; +} + +// Starts capturing stdout. +void CaptureStdout() { + CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout); +} + +// Starts capturing stderr. +void CaptureStderr() { + CaptureStream(kStdErrFileno, "stderr", &g_captured_stderr); +} + +// Stops capturing stdout and returns the captured string. +std::string GetCapturedStdout() { + return GetCapturedStream(&g_captured_stdout); +} + +// Stops capturing stderr and returns the captured string. +std::string GetCapturedStderr() { + return GetCapturedStream(&g_captured_stderr); +} + +#endif // GTEST_HAS_STREAM_REDIRECTION + +#if GTEST_HAS_DEATH_TEST + +// A copy of all command line arguments. Set by InitGoogleTest(). +::std::vector g_argvs; + +static const ::std::vector* g_injected_test_argvs = + NULL; // Owned. + +void SetInjectableArgvs(const ::std::vector* argvs) { + if (g_injected_test_argvs != argvs) + delete g_injected_test_argvs; + g_injected_test_argvs = argvs; +} + +const ::std::vector& GetInjectableArgvs() { + if (g_injected_test_argvs != NULL) { + return *g_injected_test_argvs; + } + return g_argvs; +} +#endif // GTEST_HAS_DEATH_TEST + +#if GTEST_OS_WINDOWS_MOBILE +namespace posix { +void Abort() { + DebugBreak(); + TerminateProcess(GetCurrentProcess(), 1); +} +} // namespace posix +#endif // GTEST_OS_WINDOWS_MOBILE + +// Returns the name of the environment variable corresponding to the +// given flag. For example, FlagToEnvVar("foo") will return +// "GTEST_FOO" in the open-source version. +static std::string FlagToEnvVar(const char* flag) { + const std::string full_flag = + (Message() << GTEST_FLAG_PREFIX_ << flag).GetString(); + + Message env_var; + for (size_t i = 0; i != full_flag.length(); i++) { + env_var << ToUpper(full_flag.c_str()[i]); + } + + return env_var.GetString(); +} + +// Parses 'str' for a 32-bit signed integer. If successful, writes +// the result to *value and returns true; otherwise leaves *value +// unchanged and returns false. +bool ParseInt32(const Message& src_text, const char* str, Int32* value) { + // Parses the environment variable as a decimal integer. + char* end = NULL; + const long long_value = strtol(str, &end, 10); // NOLINT + + // Has strtol() consumed all characters in the string? + if (*end != '\0') { + // No - an invalid character was encountered. + Message msg; + msg << "WARNING: " << src_text + << " is expected to be a 32-bit integer, but actually" + << " has value \"" << str << "\".\n"; + printf("%s", msg.GetString().c_str()); + fflush(stdout); + return false; + } + + // Is the parsed value in the range of an Int32? + const Int32 result = static_cast(long_value); + if (long_value == LONG_MAX || long_value == LONG_MIN || + // The parsed value overflows as a long. (strtol() returns + // LONG_MAX or LONG_MIN when the input overflows.) + result != long_value + // The parsed value overflows as an Int32. + ) { + Message msg; + msg << "WARNING: " << src_text + << " is expected to be a 32-bit integer, but actually" + << " has value " << str << ", which overflows.\n"; + printf("%s", msg.GetString().c_str()); + fflush(stdout); + return false; + } + + *value = result; + return true; +} + +// Reads and returns the Boolean environment variable corresponding to +// the given flag; if it's not set, returns default_value. +// +// The value is considered true iff it's not "0". +bool BoolFromGTestEnv(const char* flag, bool default_value) { + const std::string env_var = FlagToEnvVar(flag); + const char* const string_value = posix::GetEnv(env_var.c_str()); + return string_value == NULL ? + default_value : strcmp(string_value, "0") != 0; +} + +// Reads and returns a 32-bit integer stored in the environment +// variable corresponding to the given flag; if it isn't set or +// doesn't represent a valid 32-bit integer, returns default_value. +Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { + const std::string env_var = FlagToEnvVar(flag); + const char* const string_value = posix::GetEnv(env_var.c_str()); + if (string_value == NULL) { + // The environment variable is not set. + return default_value; + } + + Int32 result = default_value; + if (!ParseInt32(Message() << "Environment variable " << env_var, + string_value, &result)) { + printf("The default value %s is used.\n", + (Message() << default_value).GetString().c_str()); + fflush(stdout); + return default_value; + } + + return result; +} + +// Reads and returns the string environment variable corresponding to +// the given flag; if it's not set, returns default_value. +const char* StringFromGTestEnv(const char* flag, const char* default_value) { + const std::string env_var = FlagToEnvVar(flag); + const char* const value = posix::GetEnv(env_var.c_str()); + return value == NULL ? default_value : value; +} + +} // namespace internal +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/src/gtest-printers.cc b/cpp/thirdparty/gtest-1.7.0/src/gtest-printers.cc new file mode 100644 index 000000000..75fa40810 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/src/gtest-printers.cc @@ -0,0 +1,363 @@ +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Test - The Google C++ Testing Framework +// +// This file implements a universal value printer that can print a +// value of any type T: +// +// void ::testing::internal::UniversalPrinter::Print(value, ostream_ptr); +// +// It uses the << operator when possible, and prints the bytes in the +// object otherwise. A user can override its behavior for a class +// type Foo by defining either operator<<(::std::ostream&, const Foo&) +// or void PrintTo(const Foo&, ::std::ostream*) in the namespace that +// defines Foo. + +#include "gtest/gtest-printers.h" +#include +#include +#include // NOLINT +#include +#include "gtest/internal/gtest-port.h" + +namespace testing { + +namespace { + +using ::std::ostream; + +// Prints a segment of bytes in the given object. +void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, + size_t count, ostream* os) { + char text[5] = ""; + for (size_t i = 0; i != count; i++) { + const size_t j = start + i; + if (i != 0) { + // Organizes the bytes into groups of 2 for easy parsing by + // human. + if ((j % 2) == 0) + *os << ' '; + else + *os << '-'; + } + GTEST_SNPRINTF_(text, sizeof(text), "%02X", obj_bytes[j]); + *os << text; + } +} + +// Prints the bytes in the given value to the given ostream. +void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, + ostream* os) { + // Tells the user how big the object is. + *os << count << "-byte object <"; + + const size_t kThreshold = 132; + const size_t kChunkSize = 64; + // If the object size is bigger than kThreshold, we'll have to omit + // some details by printing only the first and the last kChunkSize + // bytes. + // TODO(wan): let the user control the threshold using a flag. + if (count < kThreshold) { + PrintByteSegmentInObjectTo(obj_bytes, 0, count, os); + } else { + PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os); + *os << " ... "; + // Rounds up to 2-byte boundary. + const size_t resume_pos = (count - kChunkSize + 1)/2*2; + PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os); + } + *os << ">"; +} + +} // namespace + +namespace internal2 { + +// Delegates to PrintBytesInObjectToImpl() to print the bytes in the +// given object. The delegation simplifies the implementation, which +// uses the << operator and thus is easier done outside of the +// ::testing::internal namespace, which contains a << operator that +// sometimes conflicts with the one in STL. +void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, + ostream* os) { + PrintBytesInObjectToImpl(obj_bytes, count, os); +} + +} // namespace internal2 + +namespace internal { + +// Depending on the value of a char (or wchar_t), we print it in one +// of three formats: +// - as is if it's a printable ASCII (e.g. 'a', '2', ' '), +// - as a hexidecimal escape sequence (e.g. '\x7F'), or +// - as a special escape sequence (e.g. '\r', '\n'). +enum CharFormat { + kAsIs, + kHexEscape, + kSpecialEscape +}; + +// Returns true if c is a printable ASCII character. We test the +// value of c directly instead of calling isprint(), which is buggy on +// Windows Mobile. +inline bool IsPrintableAscii(wchar_t c) { + return 0x20 <= c && c <= 0x7E; +} + +// Prints a wide or narrow char c as a character literal without the +// quotes, escaping it when necessary; returns how c was formatted. +// The template argument UnsignedChar is the unsigned version of Char, +// which is the type of c. +template +static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { + switch (static_cast(c)) { + case L'\0': + *os << "\\0"; + break; + case L'\'': + *os << "\\'"; + break; + case L'\\': + *os << "\\\\"; + break; + case L'\a': + *os << "\\a"; + break; + case L'\b': + *os << "\\b"; + break; + case L'\f': + *os << "\\f"; + break; + case L'\n': + *os << "\\n"; + break; + case L'\r': + *os << "\\r"; + break; + case L'\t': + *os << "\\t"; + break; + case L'\v': + *os << "\\v"; + break; + default: + if (IsPrintableAscii(c)) { + *os << static_cast(c); + return kAsIs; + } else { + *os << "\\x" + String::FormatHexInt(static_cast(c)); + return kHexEscape; + } + } + return kSpecialEscape; +} + +// Prints a wchar_t c as if it's part of a string literal, escaping it when +// necessary; returns how c was formatted. +static CharFormat PrintAsStringLiteralTo(wchar_t c, ostream* os) { + switch (c) { + case L'\'': + *os << "'"; + return kAsIs; + case L'"': + *os << "\\\""; + return kSpecialEscape; + default: + return PrintAsCharLiteralTo(c, os); + } +} + +// Prints a char c as if it's part of a string literal, escaping it when +// necessary; returns how c was formatted. +static CharFormat PrintAsStringLiteralTo(char c, ostream* os) { + return PrintAsStringLiteralTo( + static_cast(static_cast(c)), os); +} + +// Prints a wide or narrow character c and its code. '\0' is printed +// as "'\\0'", other unprintable characters are also properly escaped +// using the standard C++ escape sequence. The template argument +// UnsignedChar is the unsigned version of Char, which is the type of c. +template +void PrintCharAndCodeTo(Char c, ostream* os) { + // First, print c as a literal in the most readable form we can find. + *os << ((sizeof(c) > 1) ? "L'" : "'"); + const CharFormat format = PrintAsCharLiteralTo(c, os); + *os << "'"; + + // To aid user debugging, we also print c's code in decimal, unless + // it's 0 (in which case c was printed as '\\0', making the code + // obvious). + if (c == 0) + return; + *os << " (" << static_cast(c); + + // For more convenience, we print c's code again in hexidecimal, + // unless c was already printed in the form '\x##' or the code is in + // [1, 9]. + if (format == kHexEscape || (1 <= c && c <= 9)) { + // Do nothing. + } else { + *os << ", 0x" << String::FormatHexInt(static_cast(c)); + } + *os << ")"; +} + +void PrintTo(unsigned char c, ::std::ostream* os) { + PrintCharAndCodeTo(c, os); +} +void PrintTo(signed char c, ::std::ostream* os) { + PrintCharAndCodeTo(c, os); +} + +// Prints a wchar_t as a symbol if it is printable or as its internal +// code otherwise and also as its code. L'\0' is printed as "L'\\0'". +void PrintTo(wchar_t wc, ostream* os) { + PrintCharAndCodeTo(wc, os); +} + +// Prints the given array of characters to the ostream. CharType must be either +// char or wchar_t. +// The array starts at begin, the length is len, it may include '\0' characters +// and may not be NUL-terminated. +template +static void PrintCharsAsStringTo( + const CharType* begin, size_t len, ostream* os) { + const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\""; + *os << kQuoteBegin; + bool is_previous_hex = false; + for (size_t index = 0; index < len; ++index) { + const CharType cur = begin[index]; + if (is_previous_hex && IsXDigit(cur)) { + // Previous character is of '\x..' form and this character can be + // interpreted as another hexadecimal digit in its number. Break string to + // disambiguate. + *os << "\" " << kQuoteBegin; + } + is_previous_hex = PrintAsStringLiteralTo(cur, os) == kHexEscape; + } + *os << "\""; +} + +// Prints a (const) char/wchar_t array of 'len' elements, starting at address +// 'begin'. CharType must be either char or wchar_t. +template +static void UniversalPrintCharArray( + const CharType* begin, size_t len, ostream* os) { + // The code + // const char kFoo[] = "foo"; + // generates an array of 4, not 3, elements, with the last one being '\0'. + // + // Therefore when printing a char array, we don't print the last element if + // it's '\0', such that the output matches the string literal as it's + // written in the source code. + if (len > 0 && begin[len - 1] == '\0') { + PrintCharsAsStringTo(begin, len - 1, os); + return; + } + + // If, however, the last element in the array is not '\0', e.g. + // const char kFoo[] = { 'f', 'o', 'o' }; + // we must print the entire array. We also print a message to indicate + // that the array is not NUL-terminated. + PrintCharsAsStringTo(begin, len, os); + *os << " (no terminating NUL)"; +} + +// Prints a (const) char array of 'len' elements, starting at address 'begin'. +void UniversalPrintArray(const char* begin, size_t len, ostream* os) { + UniversalPrintCharArray(begin, len, os); +} + +// Prints a (const) wchar_t array of 'len' elements, starting at address +// 'begin'. +void UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) { + UniversalPrintCharArray(begin, len, os); +} + +// Prints the given C string to the ostream. +void PrintTo(const char* s, ostream* os) { + if (s == NULL) { + *os << "NULL"; + } else { + *os << ImplicitCast_(s) << " pointing to "; + PrintCharsAsStringTo(s, strlen(s), os); + } +} + +// MSVC compiler can be configured to define whar_t as a typedef +// of unsigned short. Defining an overload for const wchar_t* in that case +// would cause pointers to unsigned shorts be printed as wide strings, +// possibly accessing more memory than intended and causing invalid +// memory accesses. MSVC defines _NATIVE_WCHAR_T_DEFINED symbol when +// wchar_t is implemented as a native type. +#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) +// Prints the given wide C string to the ostream. +void PrintTo(const wchar_t* s, ostream* os) { + if (s == NULL) { + *os << "NULL"; + } else { + *os << ImplicitCast_(s) << " pointing to "; + PrintCharsAsStringTo(s, wcslen(s), os); + } +} +#endif // wchar_t is native + +// Prints a ::string object. +#if GTEST_HAS_GLOBAL_STRING +void PrintStringTo(const ::string& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} +#endif // GTEST_HAS_GLOBAL_STRING + +void PrintStringTo(const ::std::string& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} + +// Prints a ::wstring object. +#if GTEST_HAS_GLOBAL_WSTRING +void PrintWideStringTo(const ::wstring& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} +#endif // GTEST_HAS_GLOBAL_WSTRING + +#if GTEST_HAS_STD_WSTRING +void PrintWideStringTo(const ::std::wstring& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} +#endif // GTEST_HAS_STD_WSTRING + +} // namespace internal + +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/src/gtest-test-part.cc b/cpp/thirdparty/gtest-1.7.0/src/gtest-test-part.cc new file mode 100644 index 000000000..c60eef3ab --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/src/gtest-test-part.cc @@ -0,0 +1,110 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: mheule@google.com (Markus Heule) +// +// The Google C++ Testing Framework (Google Test) + +#include "gtest/gtest-test-part.h" + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +namespace testing { + +using internal::GetUnitTestImpl; + +// Gets the summary of the failure message by omitting the stack trace +// in it. +std::string TestPartResult::ExtractSummary(const char* message) { + const char* const stack_trace = strstr(message, internal::kStackTraceMarker); + return stack_trace == NULL ? message : + std::string(message, stack_trace); +} + +// Prints a TestPartResult object. +std::ostream& operator<<(std::ostream& os, const TestPartResult& result) { + return os + << result.file_name() << ":" << result.line_number() << ": " + << (result.type() == TestPartResult::kSuccess ? "Success" : + result.type() == TestPartResult::kFatalFailure ? "Fatal failure" : + "Non-fatal failure") << ":\n" + << result.message() << std::endl; +} + +// Appends a TestPartResult to the array. +void TestPartResultArray::Append(const TestPartResult& result) { + array_.push_back(result); +} + +// Returns the TestPartResult at the given index (0-based). +const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const { + if (index < 0 || index >= size()) { + printf("\nInvalid index (%d) into TestPartResultArray.\n", index); + internal::posix::Abort(); + } + + return array_[index]; +} + +// Returns the number of TestPartResult objects in the array. +int TestPartResultArray::size() const { + return static_cast(array_.size()); +} + +namespace internal { + +HasNewFatalFailureHelper::HasNewFatalFailureHelper() + : has_new_fatal_failure_(false), + original_reporter_(GetUnitTestImpl()-> + GetTestPartResultReporterForCurrentThread()) { + GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(this); +} + +HasNewFatalFailureHelper::~HasNewFatalFailureHelper() { + GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread( + original_reporter_); +} + +void HasNewFatalFailureHelper::ReportTestPartResult( + const TestPartResult& result) { + if (result.fatally_failed()) + has_new_fatal_failure_ = true; + original_reporter_->ReportTestPartResult(result); +} + +} // namespace internal + +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/src/gtest-typed-test.cc b/cpp/thirdparty/gtest-1.7.0/src/gtest-typed-test.cc new file mode 100644 index 000000000..f0079f407 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/src/gtest-typed-test.cc @@ -0,0 +1,110 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#include "gtest/gtest-typed-test.h" +#include "gtest/gtest.h" + +namespace testing { +namespace internal { + +#if GTEST_HAS_TYPED_TEST_P + +// Skips to the first non-space char in str. Returns an empty string if str +// contains only whitespace characters. +static const char* SkipSpaces(const char* str) { + while (IsSpace(*str)) + str++; + return str; +} + +// Verifies that registered_tests match the test names in +// defined_test_names_; returns registered_tests if successful, or +// aborts the program otherwise. +const char* TypedTestCasePState::VerifyRegisteredTestNames( + const char* file, int line, const char* registered_tests) { + typedef ::std::set::const_iterator DefinedTestIter; + registered_ = true; + + // Skip initial whitespace in registered_tests since some + // preprocessors prefix stringizied literals with whitespace. + registered_tests = SkipSpaces(registered_tests); + + Message errors; + ::std::set tests; + for (const char* names = registered_tests; names != NULL; + names = SkipComma(names)) { + const std::string name = GetPrefixUntilComma(names); + if (tests.count(name) != 0) { + errors << "Test " << name << " is listed more than once.\n"; + continue; + } + + bool found = false; + for (DefinedTestIter it = defined_test_names_.begin(); + it != defined_test_names_.end(); + ++it) { + if (name == *it) { + found = true; + break; + } + } + + if (found) { + tests.insert(name); + } else { + errors << "No test named " << name + << " can be found in this test case.\n"; + } + } + + for (DefinedTestIter it = defined_test_names_.begin(); + it != defined_test_names_.end(); + ++it) { + if (tests.count(*it) == 0) { + errors << "You forgot to list test " << *it << ".\n"; + } + } + + const std::string& errors_str = errors.GetString(); + if (errors_str != "") { + fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), + errors_str.c_str()); + fflush(stderr); + posix::Abort(); + } + + return registered_tests; +} + +#endif // GTEST_HAS_TYPED_TEST_P + +} // namespace internal +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/src/gtest.cc b/cpp/thirdparty/gtest-1.7.0/src/gtest.cc new file mode 100644 index 000000000..6de53dd01 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/src/gtest.cc @@ -0,0 +1,5015 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// The Google C++ Testing Framework (Google Test) + +#include "gtest/gtest.h" +#include "gtest/gtest-spi.h" + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include // NOLINT +#include +#include + +#if GTEST_OS_LINUX + +// TODO(kenton@google.com): Use autoconf to detect availability of +// gettimeofday(). +# define GTEST_HAS_GETTIMEOFDAY_ 1 + +# include // NOLINT +# include // NOLINT +# include // NOLINT +// Declares vsnprintf(). This header is not available on Windows. +# include // NOLINT +# include // NOLINT +# include // NOLINT +# include // NOLINT +# include + +#elif GTEST_OS_SYMBIAN +# define GTEST_HAS_GETTIMEOFDAY_ 1 +# include // NOLINT + +#elif GTEST_OS_ZOS +# define GTEST_HAS_GETTIMEOFDAY_ 1 +# include // NOLINT + +// On z/OS we additionally need strings.h for strcasecmp. +# include // NOLINT + +#elif GTEST_OS_WINDOWS_MOBILE // We are on Windows CE. + +# include // NOLINT + +#elif GTEST_OS_WINDOWS // We are on Windows proper. + +# include // NOLINT +# include // NOLINT +# include // NOLINT +# include // NOLINT + +# if GTEST_OS_WINDOWS_MINGW +// MinGW has gettimeofday() but not _ftime64(). +// TODO(kenton@google.com): Use autoconf to detect availability of +// gettimeofday(). +// TODO(kenton@google.com): There are other ways to get the time on +// Windows, like GetTickCount() or GetSystemTimeAsFileTime(). MinGW +// supports these. consider using them instead. +# define GTEST_HAS_GETTIMEOFDAY_ 1 +# include // NOLINT +# endif // GTEST_OS_WINDOWS_MINGW + +// cpplint thinks that the header is already included, so we want to +// silence it. +# include // NOLINT + +#else + +// Assume other platforms have gettimeofday(). +// TODO(kenton@google.com): Use autoconf to detect availability of +// gettimeofday(). +# define GTEST_HAS_GETTIMEOFDAY_ 1 + +// cpplint thinks that the header is already included, so we want to +// silence it. +# include // NOLINT +# include // NOLINT + +#endif // GTEST_OS_LINUX + +#if GTEST_HAS_EXCEPTIONS +# include +#endif + +#if GTEST_CAN_STREAM_RESULTS_ +# include // NOLINT +# include // NOLINT +#endif + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +#if GTEST_OS_WINDOWS +# define vsnprintf _vsnprintf +#endif // GTEST_OS_WINDOWS + +namespace testing { + +using internal::CountIf; +using internal::ForEach; +using internal::GetElementOr; +using internal::Shuffle; + +// Constants. + +// A test whose test case name or test name matches this filter is +// disabled and not run. +static const char kDisableTestFilter[] = "DISABLED_*:*/DISABLED_*"; + +// A test case whose name matches this filter is considered a death +// test case and will be run before test cases whose name doesn't +// match this filter. +static const char kDeathTestCaseFilter[] = "*DeathTest:*DeathTest/*"; + +// A test filter that matches everything. +static const char kUniversalFilter[] = "*"; + +// The default output file for XML output. +static const char kDefaultOutputFile[] = "test_detail.xml"; + +// The environment variable name for the test shard index. +static const char kTestShardIndex[] = "GTEST_SHARD_INDEX"; +// The environment variable name for the total number of test shards. +static const char kTestTotalShards[] = "GTEST_TOTAL_SHARDS"; +// The environment variable name for the test shard status file. +static const char kTestShardStatusFile[] = "GTEST_SHARD_STATUS_FILE"; + +namespace internal { + +// The text used in failure messages to indicate the start of the +// stack trace. +const char kStackTraceMarker[] = "\nStack trace:\n"; + +// g_help_flag is true iff the --help flag or an equivalent form is +// specified on the command line. +bool g_help_flag = false; + +} // namespace internal + +static const char* GetDefaultFilter() { + return kUniversalFilter; +} + +GTEST_DEFINE_bool_( + also_run_disabled_tests, + internal::BoolFromGTestEnv("also_run_disabled_tests", false), + "Run disabled tests too, in addition to the tests normally being run."); + +GTEST_DEFINE_bool_( + break_on_failure, + internal::BoolFromGTestEnv("break_on_failure", false), + "True iff a failed assertion should be a debugger break-point."); + +GTEST_DEFINE_bool_( + catch_exceptions, + internal::BoolFromGTestEnv("catch_exceptions", true), + "True iff " GTEST_NAME_ + " should catch exceptions and treat them as test failures."); + +GTEST_DEFINE_string_( + color, + internal::StringFromGTestEnv("color", "auto"), + "Whether to use colors in the output. Valid values: yes, no, " + "and auto. 'auto' means to use colors if the output is " + "being sent to a terminal and the TERM environment variable " + "is set to a terminal type that supports colors."); + +GTEST_DEFINE_string_( + filter, + internal::StringFromGTestEnv("filter", GetDefaultFilter()), + "A colon-separated list of glob (not regex) patterns " + "for filtering the tests to run, optionally followed by a " + "'-' and a : separated list of negative patterns (tests to " + "exclude). A test is run if it matches one of the positive " + "patterns and does not match any of the negative patterns."); + +GTEST_DEFINE_bool_(list_tests, false, + "List all tests without running them."); + +GTEST_DEFINE_string_( + output, + internal::StringFromGTestEnv("output", ""), + "A format (currently must be \"xml\"), optionally followed " + "by a colon and an output file name or directory. A directory " + "is indicated by a trailing pathname separator. " + "Examples: \"xml:filename.xml\", \"xml::directoryname/\". " + "If a directory is specified, output files will be created " + "within that directory, with file-names based on the test " + "executable's name and, if necessary, made unique by adding " + "digits."); + +GTEST_DEFINE_bool_( + print_time, + internal::BoolFromGTestEnv("print_time", true), + "True iff " GTEST_NAME_ + " should display elapsed time in text output."); + +GTEST_DEFINE_int32_( + random_seed, + internal::Int32FromGTestEnv("random_seed", 0), + "Random number seed to use when shuffling test orders. Must be in range " + "[1, 99999], or 0 to use a seed based on the current time."); + +GTEST_DEFINE_int32_( + repeat, + internal::Int32FromGTestEnv("repeat", 1), + "How many times to repeat each test. Specify a negative number " + "for repeating forever. Useful for shaking out flaky tests."); + +GTEST_DEFINE_bool_( + show_internal_stack_frames, false, + "True iff " GTEST_NAME_ " should include internal stack frames when " + "printing test failure stack traces."); + +GTEST_DEFINE_bool_( + shuffle, + internal::BoolFromGTestEnv("shuffle", false), + "True iff " GTEST_NAME_ + " should randomize tests' order on every run."); + +GTEST_DEFINE_int32_( + stack_trace_depth, + internal::Int32FromGTestEnv("stack_trace_depth", kMaxStackTraceDepth), + "The maximum number of stack frames to print when an " + "assertion fails. The valid range is 0 through 100, inclusive."); + +GTEST_DEFINE_string_( + stream_result_to, + internal::StringFromGTestEnv("stream_result_to", ""), + "This flag specifies the host name and the port number on which to stream " + "test results. Example: \"localhost:555\". The flag is effective only on " + "Linux."); + +GTEST_DEFINE_bool_( + throw_on_failure, + internal::BoolFromGTestEnv("throw_on_failure", false), + "When this flag is specified, a failed assertion will throw an exception " + "if exceptions are enabled or exit the program with a non-zero code " + "otherwise."); + +namespace internal { + +// Generates a random number from [0, range), using a Linear +// Congruential Generator (LCG). Crashes if 'range' is 0 or greater +// than kMaxRange. +UInt32 Random::Generate(UInt32 range) { + // These constants are the same as are used in glibc's rand(3). + state_ = (1103515245U*state_ + 12345U) % kMaxRange; + + GTEST_CHECK_(range > 0) + << "Cannot generate a number in the range [0, 0)."; + GTEST_CHECK_(range <= kMaxRange) + << "Generation of a number in [0, " << range << ") was requested, " + << "but this can only generate numbers in [0, " << kMaxRange << ")."; + + // Converting via modulus introduces a bit of downward bias, but + // it's simple, and a linear congruential generator isn't too good + // to begin with. + return state_ % range; +} + +// GTestIsInitialized() returns true iff the user has initialized +// Google Test. Useful for catching the user mistake of not initializing +// Google Test before calling RUN_ALL_TESTS(). +// +// A user must call testing::InitGoogleTest() to initialize Google +// Test. g_init_gtest_count is set to the number of times +// InitGoogleTest() has been called. We don't protect this variable +// under a mutex as it is only accessed in the main thread. +GTEST_API_ int g_init_gtest_count = 0; +static bool GTestIsInitialized() { return g_init_gtest_count != 0; } + +// Iterates over a vector of TestCases, keeping a running sum of the +// results of calling a given int-returning method on each. +// Returns the sum. +static int SumOverTestCaseList(const std::vector& case_list, + int (TestCase::*method)() const) { + int sum = 0; + for (size_t i = 0; i < case_list.size(); i++) { + sum += (case_list[i]->*method)(); + } + return sum; +} + +// Returns true iff the test case passed. +static bool TestCasePassed(const TestCase* test_case) { + return test_case->should_run() && test_case->Passed(); +} + +// Returns true iff the test case failed. +static bool TestCaseFailed(const TestCase* test_case) { + return test_case->should_run() && test_case->Failed(); +} + +// Returns true iff test_case contains at least one test that should +// run. +static bool ShouldRunTestCase(const TestCase* test_case) { + return test_case->should_run(); +} + +// AssertHelper constructor. +AssertHelper::AssertHelper(TestPartResult::Type type, + const char* file, + int line, + const char* message) + : data_(new AssertHelperData(type, file, line, message)) { +} + +AssertHelper::~AssertHelper() { + delete data_; +} + +// Message assignment, for assertion streaming support. +void AssertHelper::operator=(const Message& message) const { + UnitTest::GetInstance()-> + AddTestPartResult(data_->type, data_->file, data_->line, + AppendUserMessage(data_->message, message), + UnitTest::GetInstance()->impl() + ->CurrentOsStackTraceExceptTop(1) + // Skips the stack frame for this function itself. + ); // NOLINT +} + +// Mutex for linked pointers. +GTEST_API_ GTEST_DEFINE_STATIC_MUTEX_(g_linked_ptr_mutex); + +// Application pathname gotten in InitGoogleTest. +std::string g_executable_path; + +// Returns the current application's name, removing directory path if that +// is present. +FilePath GetCurrentExecutableName() { + FilePath result; + +#if GTEST_OS_WINDOWS + result.Set(FilePath(g_executable_path).RemoveExtension("exe")); +#else + result.Set(FilePath(g_executable_path)); +#endif // GTEST_OS_WINDOWS + + return result.RemoveDirectoryName(); +} + +// Functions for processing the gtest_output flag. + +// Returns the output format, or "" for normal printed output. +std::string UnitTestOptions::GetOutputFormat() { + const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); + if (gtest_output_flag == NULL) return std::string(""); + + const char* const colon = strchr(gtest_output_flag, ':'); + return (colon == NULL) ? + std::string(gtest_output_flag) : + std::string(gtest_output_flag, colon - gtest_output_flag); +} + +// Returns the name of the requested output file, or the default if none +// was explicitly specified. +std::string UnitTestOptions::GetAbsolutePathToOutputFile() { + const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); + if (gtest_output_flag == NULL) + return ""; + + const char* const colon = strchr(gtest_output_flag, ':'); + if (colon == NULL) + return internal::FilePath::ConcatPaths( + internal::FilePath( + UnitTest::GetInstance()->original_working_dir()), + internal::FilePath(kDefaultOutputFile)).string(); + + internal::FilePath output_name(colon + 1); + if (!output_name.IsAbsolutePath()) + // TODO(wan@google.com): on Windows \some\path is not an absolute + // path (as its meaning depends on the current drive), yet the + // following logic for turning it into an absolute path is wrong. + // Fix it. + output_name = internal::FilePath::ConcatPaths( + internal::FilePath(UnitTest::GetInstance()->original_working_dir()), + internal::FilePath(colon + 1)); + + if (!output_name.IsDirectory()) + return output_name.string(); + + internal::FilePath result(internal::FilePath::GenerateUniqueFileName( + output_name, internal::GetCurrentExecutableName(), + GetOutputFormat().c_str())); + return result.string(); +} + +// Returns true iff the wildcard pattern matches the string. The +// first ':' or '\0' character in pattern marks the end of it. +// +// This recursive algorithm isn't very efficient, but is clear and +// works well enough for matching test names, which are short. +bool UnitTestOptions::PatternMatchesString(const char *pattern, + const char *str) { + switch (*pattern) { + case '\0': + case ':': // Either ':' or '\0' marks the end of the pattern. + return *str == '\0'; + case '?': // Matches any single character. + return *str != '\0' && PatternMatchesString(pattern + 1, str + 1); + case '*': // Matches any string (possibly empty) of characters. + return (*str != '\0' && PatternMatchesString(pattern, str + 1)) || + PatternMatchesString(pattern + 1, str); + default: // Non-special character. Matches itself. + return *pattern == *str && + PatternMatchesString(pattern + 1, str + 1); + } +} + +bool UnitTestOptions::MatchesFilter( + const std::string& name, const char* filter) { + const char *cur_pattern = filter; + for (;;) { + if (PatternMatchesString(cur_pattern, name.c_str())) { + return true; + } + + // Finds the next pattern in the filter. + cur_pattern = strchr(cur_pattern, ':'); + + // Returns if no more pattern can be found. + if (cur_pattern == NULL) { + return false; + } + + // Skips the pattern separater (the ':' character). + cur_pattern++; + } +} + +// Returns true iff the user-specified filter matches the test case +// name and the test name. +bool UnitTestOptions::FilterMatchesTest(const std::string &test_case_name, + const std::string &test_name) { + const std::string& full_name = test_case_name + "." + test_name.c_str(); + + // Split --gtest_filter at '-', if there is one, to separate into + // positive filter and negative filter portions + const char* const p = GTEST_FLAG(filter).c_str(); + const char* const dash = strchr(p, '-'); + std::string positive; + std::string negative; + if (dash == NULL) { + positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter + negative = ""; + } else { + positive = std::string(p, dash); // Everything up to the dash + negative = std::string(dash + 1); // Everything after the dash + if (positive.empty()) { + // Treat '-test1' as the same as '*-test1' + positive = kUniversalFilter; + } + } + + // A filter is a colon-separated list of patterns. It matches a + // test if any pattern in it matches the test. + return (MatchesFilter(full_name, positive.c_str()) && + !MatchesFilter(full_name, negative.c_str())); +} + +#if GTEST_HAS_SEH +// Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the +// given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. +// This function is useful as an __except condition. +int UnitTestOptions::GTestShouldProcessSEH(DWORD exception_code) { + // Google Test should handle a SEH exception if: + // 1. the user wants it to, AND + // 2. this is not a breakpoint exception, AND + // 3. this is not a C++ exception (VC++ implements them via SEH, + // apparently). + // + // SEH exception code for C++ exceptions. + // (see http://support.microsoft.com/kb/185294 for more information). + const DWORD kCxxExceptionCode = 0xe06d7363; + + bool should_handle = true; + + if (!GTEST_FLAG(catch_exceptions)) + should_handle = false; + else if (exception_code == EXCEPTION_BREAKPOINT) + should_handle = false; + else if (exception_code == kCxxExceptionCode) + should_handle = false; + + return should_handle ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH; +} +#endif // GTEST_HAS_SEH + +} // namespace internal + +// The c'tor sets this object as the test part result reporter used by +// Google Test. The 'result' parameter specifies where to report the +// results. Intercepts only failures from the current thread. +ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( + TestPartResultArray* result) + : intercept_mode_(INTERCEPT_ONLY_CURRENT_THREAD), + result_(result) { + Init(); +} + +// The c'tor sets this object as the test part result reporter used by +// Google Test. The 'result' parameter specifies where to report the +// results. +ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( + InterceptMode intercept_mode, TestPartResultArray* result) + : intercept_mode_(intercept_mode), + result_(result) { + Init(); +} + +void ScopedFakeTestPartResultReporter::Init() { + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + if (intercept_mode_ == INTERCEPT_ALL_THREADS) { + old_reporter_ = impl->GetGlobalTestPartResultReporter(); + impl->SetGlobalTestPartResultReporter(this); + } else { + old_reporter_ = impl->GetTestPartResultReporterForCurrentThread(); + impl->SetTestPartResultReporterForCurrentThread(this); + } +} + +// The d'tor restores the test part result reporter used by Google Test +// before. +ScopedFakeTestPartResultReporter::~ScopedFakeTestPartResultReporter() { + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + if (intercept_mode_ == INTERCEPT_ALL_THREADS) { + impl->SetGlobalTestPartResultReporter(old_reporter_); + } else { + impl->SetTestPartResultReporterForCurrentThread(old_reporter_); + } +} + +// Increments the test part result count and remembers the result. +// This method is from the TestPartResultReporterInterface interface. +void ScopedFakeTestPartResultReporter::ReportTestPartResult( + const TestPartResult& result) { + result_->Append(result); +} + +namespace internal { + +// Returns the type ID of ::testing::Test. We should always call this +// instead of GetTypeId< ::testing::Test>() to get the type ID of +// testing::Test. This is to work around a suspected linker bug when +// using Google Test as a framework on Mac OS X. The bug causes +// GetTypeId< ::testing::Test>() to return different values depending +// on whether the call is from the Google Test framework itself or +// from user test code. GetTestTypeId() is guaranteed to always +// return the same value, as it always calls GetTypeId<>() from the +// gtest.cc, which is within the Google Test framework. +TypeId GetTestTypeId() { + return GetTypeId(); +} + +// The value of GetTestTypeId() as seen from within the Google Test +// library. This is solely for testing GetTestTypeId(). +extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId(); + +// This predicate-formatter checks that 'results' contains a test part +// failure of the given type and that the failure message contains the +// given substring. +AssertionResult HasOneFailure(const char* /* results_expr */, + const char* /* type_expr */, + const char* /* substr_expr */, + const TestPartResultArray& results, + TestPartResult::Type type, + const string& substr) { + const std::string expected(type == TestPartResult::kFatalFailure ? + "1 fatal failure" : + "1 non-fatal failure"); + Message msg; + if (results.size() != 1) { + msg << "Expected: " << expected << "\n" + << " Actual: " << results.size() << " failures"; + for (int i = 0; i < results.size(); i++) { + msg << "\n" << results.GetTestPartResult(i); + } + return AssertionFailure() << msg; + } + + const TestPartResult& r = results.GetTestPartResult(0); + if (r.type() != type) { + return AssertionFailure() << "Expected: " << expected << "\n" + << " Actual:\n" + << r; + } + + if (strstr(r.message(), substr.c_str()) == NULL) { + return AssertionFailure() << "Expected: " << expected << " containing \"" + << substr << "\"\n" + << " Actual:\n" + << r; + } + + return AssertionSuccess(); +} + +// The constructor of SingleFailureChecker remembers where to look up +// test part results, what type of failure we expect, and what +// substring the failure message should contain. +SingleFailureChecker:: SingleFailureChecker( + const TestPartResultArray* results, + TestPartResult::Type type, + const string& substr) + : results_(results), + type_(type), + substr_(substr) {} + +// The destructor of SingleFailureChecker verifies that the given +// TestPartResultArray contains exactly one failure that has the given +// type and contains the given substring. If that's not the case, a +// non-fatal failure will be generated. +SingleFailureChecker::~SingleFailureChecker() { + EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_); +} + +DefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter( + UnitTestImpl* unit_test) : unit_test_(unit_test) {} + +void DefaultGlobalTestPartResultReporter::ReportTestPartResult( + const TestPartResult& result) { + unit_test_->current_test_result()->AddTestPartResult(result); + unit_test_->listeners()->repeater()->OnTestPartResult(result); +} + +DefaultPerThreadTestPartResultReporter::DefaultPerThreadTestPartResultReporter( + UnitTestImpl* unit_test) : unit_test_(unit_test) {} + +void DefaultPerThreadTestPartResultReporter::ReportTestPartResult( + const TestPartResult& result) { + unit_test_->GetGlobalTestPartResultReporter()->ReportTestPartResult(result); +} + +// Returns the global test part result reporter. +TestPartResultReporterInterface* +UnitTestImpl::GetGlobalTestPartResultReporter() { + internal::MutexLock lock(&global_test_part_result_reporter_mutex_); + return global_test_part_result_repoter_; +} + +// Sets the global test part result reporter. +void UnitTestImpl::SetGlobalTestPartResultReporter( + TestPartResultReporterInterface* reporter) { + internal::MutexLock lock(&global_test_part_result_reporter_mutex_); + global_test_part_result_repoter_ = reporter; +} + +// Returns the test part result reporter for the current thread. +TestPartResultReporterInterface* +UnitTestImpl::GetTestPartResultReporterForCurrentThread() { + return per_thread_test_part_result_reporter_.get(); +} + +// Sets the test part result reporter for the current thread. +void UnitTestImpl::SetTestPartResultReporterForCurrentThread( + TestPartResultReporterInterface* reporter) { + per_thread_test_part_result_reporter_.set(reporter); +} + +// Gets the number of successful test cases. +int UnitTestImpl::successful_test_case_count() const { + return CountIf(test_cases_, TestCasePassed); +} + +// Gets the number of failed test cases. +int UnitTestImpl::failed_test_case_count() const { + return CountIf(test_cases_, TestCaseFailed); +} + +// Gets the number of all test cases. +int UnitTestImpl::total_test_case_count() const { + return static_cast(test_cases_.size()); +} + +// Gets the number of all test cases that contain at least one test +// that should run. +int UnitTestImpl::test_case_to_run_count() const { + return CountIf(test_cases_, ShouldRunTestCase); +} + +// Gets the number of successful tests. +int UnitTestImpl::successful_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count); +} + +// Gets the number of failed tests. +int UnitTestImpl::failed_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count); +} + +// Gets the number of disabled tests that will be reported in the XML report. +int UnitTestImpl::reportable_disabled_test_count() const { + return SumOverTestCaseList(test_cases_, + &TestCase::reportable_disabled_test_count); +} + +// Gets the number of disabled tests. +int UnitTestImpl::disabled_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count); +} + +// Gets the number of tests to be printed in the XML report. +int UnitTestImpl::reportable_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::reportable_test_count); +} + +// Gets the number of all tests. +int UnitTestImpl::total_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::total_test_count); +} + +// Gets the number of tests that should run. +int UnitTestImpl::test_to_run_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::test_to_run_count); +} + +// Returns the current OS stack trace as an std::string. +// +// The maximum number of stack frames to be included is specified by +// the gtest_stack_trace_depth flag. The skip_count parameter +// specifies the number of top frames to be skipped, which doesn't +// count against the number of frames to be included. +// +// For example, if Foo() calls Bar(), which in turn calls +// CurrentOsStackTraceExceptTop(1), Foo() will be included in the +// trace but Bar() and CurrentOsStackTraceExceptTop() won't. +std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { + (void)skip_count; + return ""; +} + +// Returns the current time in milliseconds. +TimeInMillis GetTimeInMillis() { +#if GTEST_OS_WINDOWS_MOBILE || defined(__BORLANDC__) + // Difference between 1970-01-01 and 1601-01-01 in milliseconds. + // http://analogous.blogspot.com/2005/04/epoch.html + const TimeInMillis kJavaEpochToWinFileTimeDelta = + static_cast(116444736UL) * 100000UL; + const DWORD kTenthMicrosInMilliSecond = 10000; + + SYSTEMTIME now_systime; + FILETIME now_filetime; + ULARGE_INTEGER now_int64; + // TODO(kenton@google.com): Shouldn't this just use + // GetSystemTimeAsFileTime()? + GetSystemTime(&now_systime); + if (SystemTimeToFileTime(&now_systime, &now_filetime)) { + now_int64.LowPart = now_filetime.dwLowDateTime; + now_int64.HighPart = now_filetime.dwHighDateTime; + now_int64.QuadPart = (now_int64.QuadPart / kTenthMicrosInMilliSecond) - + kJavaEpochToWinFileTimeDelta; + return now_int64.QuadPart; + } + return 0; +#elif GTEST_OS_WINDOWS && !GTEST_HAS_GETTIMEOFDAY_ + __timeb64 now; + +# ifdef _MSC_VER + + // MSVC 8 deprecates _ftime64(), so we want to suppress warning 4996 + // (deprecated function) there. + // TODO(kenton@google.com): Use GetTickCount()? Or use + // SystemTimeToFileTime() +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4996) // Temporarily disables warning 4996. + _ftime64(&now); +# pragma warning(pop) // Restores the warning state. +# else + + _ftime64(&now); + +# endif // _MSC_VER + + return static_cast(now.time) * 1000 + now.millitm; +#elif GTEST_HAS_GETTIMEOFDAY_ + struct timeval now; + gettimeofday(&now, NULL); + return static_cast(now.tv_sec) * 1000 + now.tv_usec / 1000; +#else +# error "Don't know how to get the current time on your system." +#endif +} + +// Utilities + +// class String. + +#if GTEST_OS_WINDOWS_MOBILE +// Creates a UTF-16 wide string from the given ANSI string, allocating +// memory using new. The caller is responsible for deleting the return +// value using delete[]. Returns the wide string, or NULL if the +// input is NULL. +LPCWSTR String::AnsiToUtf16(const char* ansi) { + if (!ansi) return NULL; + const int length = strlen(ansi); + const int unicode_length = + MultiByteToWideChar(CP_ACP, 0, ansi, length, + NULL, 0); + WCHAR* unicode = new WCHAR[unicode_length + 1]; + MultiByteToWideChar(CP_ACP, 0, ansi, length, + unicode, unicode_length); + unicode[unicode_length] = 0; + return unicode; +} + +// Creates an ANSI string from the given wide string, allocating +// memory using new. The caller is responsible for deleting the return +// value using delete[]. Returns the ANSI string, or NULL if the +// input is NULL. +const char* String::Utf16ToAnsi(LPCWSTR utf16_str) { + if (!utf16_str) return NULL; + const int ansi_length = + WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, + NULL, 0, NULL, NULL); + char* ansi = new char[ansi_length + 1]; + WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, + ansi, ansi_length, NULL, NULL); + ansi[ansi_length] = 0; + return ansi; +} + +#endif // GTEST_OS_WINDOWS_MOBILE + +// Compares two C strings. Returns true iff they have the same content. +// +// Unlike strcmp(), this function can handle NULL argument(s). A NULL +// C string is considered different to any non-NULL C string, +// including the empty string. +bool String::CStringEquals(const char * lhs, const char * rhs) { + if ( lhs == NULL ) return rhs == NULL; + + if ( rhs == NULL ) return false; + + return strcmp(lhs, rhs) == 0; +} + +#if GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING + +// Converts an array of wide chars to a narrow string using the UTF-8 +// encoding, and streams the result to the given Message object. +static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, + Message* msg) { + for (size_t i = 0; i != length; ) { // NOLINT + if (wstr[i] != L'\0') { + *msg << WideStringToUtf8(wstr + i, static_cast(length - i)); + while (i != length && wstr[i] != L'\0') + i++; + } else { + *msg << '\0'; + i++; + } + } +} + +#endif // GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING + +} // namespace internal + +// Constructs an empty Message. +// We allocate the stringstream separately because otherwise each use of +// ASSERT/EXPECT in a procedure adds over 200 bytes to the procedure's +// stack frame leading to huge stack frames in some cases; gcc does not reuse +// the stack space. +Message::Message() : ss_(new ::std::stringstream) { + // By default, we want there to be enough precision when printing + // a double to a Message. + *ss_ << std::setprecision(std::numeric_limits::digits10 + 2); +} + +// These two overloads allow streaming a wide C string to a Message +// using the UTF-8 encoding. +Message& Message::operator <<(const wchar_t* wide_c_str) { + return *this << internal::String::ShowWideCString(wide_c_str); +} +Message& Message::operator <<(wchar_t* wide_c_str) { + return *this << internal::String::ShowWideCString(wide_c_str); +} + +#if GTEST_HAS_STD_WSTRING +// Converts the given wide string to a narrow string using the UTF-8 +// encoding, and streams the result to this Message object. +Message& Message::operator <<(const ::std::wstring& wstr) { + internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); + return *this; +} +#endif // GTEST_HAS_STD_WSTRING + +#if GTEST_HAS_GLOBAL_WSTRING +// Converts the given wide string to a narrow string using the UTF-8 +// encoding, and streams the result to this Message object. +Message& Message::operator <<(const ::wstring& wstr) { + internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); + return *this; +} +#endif // GTEST_HAS_GLOBAL_WSTRING + +// Gets the text streamed to this object so far as an std::string. +// Each '\0' character in the buffer is replaced with "\\0". +std::string Message::GetString() const { + return internal::StringStreamToString(ss_.get()); +} + +// AssertionResult constructors. +// Used in EXPECT_TRUE/FALSE(assertion_result). +AssertionResult::AssertionResult(const AssertionResult& other) + : success_(other.success_), + message_(other.message_.get() != NULL ? + new ::std::string(*other.message_) : + static_cast< ::std::string*>(NULL)) { +} + +// Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. +AssertionResult AssertionResult::operator!() const { + AssertionResult negation(!success_); + if (message_.get() != NULL) + negation << *message_; + return negation; +} + +// Makes a successful assertion result. +AssertionResult AssertionSuccess() { + return AssertionResult(true); +} + +// Makes a failed assertion result. +AssertionResult AssertionFailure() { + return AssertionResult(false); +} + +// Makes a failed assertion result with the given failure message. +// Deprecated; use AssertionFailure() << message. +AssertionResult AssertionFailure(const Message& message) { + return AssertionFailure() << message; +} + +namespace internal { + +// Constructs and returns the message for an equality assertion +// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. +// +// The first four parameters are the expressions used in the assertion +// and their values, as strings. For example, for ASSERT_EQ(foo, bar) +// where foo is 5 and bar is 6, we have: +// +// expected_expression: "foo" +// actual_expression: "bar" +// expected_value: "5" +// actual_value: "6" +// +// The ignoring_case parameter is true iff the assertion is a +// *_STRCASEEQ*. When it's true, the string " (ignoring case)" will +// be inserted into the message. +AssertionResult EqFailure(const char* expected_expression, + const char* actual_expression, + const std::string& expected_value, + const std::string& actual_value, + bool ignoring_case) { + Message msg; + msg << "Value of: " << actual_expression; + if (actual_value != actual_expression) { + msg << "\n Actual: " << actual_value; + } + + msg << "\nExpected: " << expected_expression; + if (ignoring_case) { + msg << " (ignoring case)"; + } + if (expected_value != expected_expression) { + msg << "\nWhich is: " << expected_value; + } + + return AssertionFailure() << msg; +} + +// Constructs a failure message for Boolean assertions such as EXPECT_TRUE. +std::string GetBoolAssertionFailureMessage( + const AssertionResult& assertion_result, + const char* expression_text, + const char* actual_predicate_value, + const char* expected_predicate_value) { + const char* actual_message = assertion_result.message(); + Message msg; + msg << "Value of: " << expression_text + << "\n Actual: " << actual_predicate_value; + if (actual_message[0] != '\0') + msg << " (" << actual_message << ")"; + msg << "\nExpected: " << expected_predicate_value; + return msg.GetString(); +} + +// Helper function for implementing ASSERT_NEAR. +AssertionResult DoubleNearPredFormat(const char* expr1, + const char* expr2, + const char* abs_error_expr, + double val1, + double val2, + double abs_error) { + const double diff = fabs(val1 - val2); + if (diff <= abs_error) return AssertionSuccess(); + + // TODO(wan): do not print the value of an expression if it's + // already a literal. + return AssertionFailure() + << "The difference between " << expr1 << " and " << expr2 + << " is " << diff << ", which exceeds " << abs_error_expr << ", where\n" + << expr1 << " evaluates to " << val1 << ",\n" + << expr2 << " evaluates to " << val2 << ", and\n" + << abs_error_expr << " evaluates to " << abs_error << "."; +} + + +// Helper template for implementing FloatLE() and DoubleLE(). +template +AssertionResult FloatingPointLE(const char* expr1, + const char* expr2, + RawType val1, + RawType val2) { + // Returns success if val1 is less than val2, + if (val1 < val2) { + return AssertionSuccess(); + } + + // or if val1 is almost equal to val2. + const FloatingPoint lhs(val1), rhs(val2); + if (lhs.AlmostEquals(rhs)) { + return AssertionSuccess(); + } + + // Note that the above two checks will both fail if either val1 or + // val2 is NaN, as the IEEE floating-point standard requires that + // any predicate involving a NaN must return false. + + ::std::stringstream val1_ss; + val1_ss << std::setprecision(std::numeric_limits::digits10 + 2) + << val1; + + ::std::stringstream val2_ss; + val2_ss << std::setprecision(std::numeric_limits::digits10 + 2) + << val2; + + return AssertionFailure() + << "Expected: (" << expr1 << ") <= (" << expr2 << ")\n" + << " Actual: " << StringStreamToString(&val1_ss) << " vs " + << StringStreamToString(&val2_ss); +} + +} // namespace internal + +// Asserts that val1 is less than, or almost equal to, val2. Fails +// otherwise. In particular, it fails if either val1 or val2 is NaN. +AssertionResult FloatLE(const char* expr1, const char* expr2, + float val1, float val2) { + return internal::FloatingPointLE(expr1, expr2, val1, val2); +} + +// Asserts that val1 is less than, or almost equal to, val2. Fails +// otherwise. In particular, it fails if either val1 or val2 is NaN. +AssertionResult DoubleLE(const char* expr1, const char* expr2, + double val1, double val2) { + return internal::FloatingPointLE(expr1, expr2, val1, val2); +} + +namespace internal { + +// The helper function for {ASSERT|EXPECT}_EQ with int or enum +// arguments. +AssertionResult CmpHelperEQ(const char* expected_expression, + const char* actual_expression, + BiggestInt expected, + BiggestInt actual) { + if (expected == actual) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + FormatForComparisonFailureMessage(expected, actual), + FormatForComparisonFailureMessage(actual, expected), + false); +} + +// A macro for implementing the helper functions needed to implement +// ASSERT_?? and EXPECT_?? with integer or enum arguments. It is here +// just to avoid copy-and-paste of similar code. +#define GTEST_IMPL_CMP_HELPER_(op_name, op)\ +AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ + BiggestInt val1, BiggestInt val2) {\ + if (val1 op val2) {\ + return AssertionSuccess();\ + } else {\ + return AssertionFailure() \ + << "Expected: (" << expr1 << ") " #op " (" << expr2\ + << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\ + << " vs " << FormatForComparisonFailureMessage(val2, val1);\ + }\ +} + +// Implements the helper function for {ASSERT|EXPECT}_NE with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(NE, !=) +// Implements the helper function for {ASSERT|EXPECT}_LE with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(LE, <=) +// Implements the helper function for {ASSERT|EXPECT}_LT with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(LT, < ) +// Implements the helper function for {ASSERT|EXPECT}_GE with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(GE, >=) +// Implements the helper function for {ASSERT|EXPECT}_GT with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(GT, > ) + +#undef GTEST_IMPL_CMP_HELPER_ + +// The helper function for {ASSERT|EXPECT}_STREQ. +AssertionResult CmpHelperSTREQ(const char* expected_expression, + const char* actual_expression, + const char* expected, + const char* actual) { + if (String::CStringEquals(expected, actual)) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + PrintToString(expected), + PrintToString(actual), + false); +} + +// The helper function for {ASSERT|EXPECT}_STRCASEEQ. +AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression, + const char* actual_expression, + const char* expected, + const char* actual) { + if (String::CaseInsensitiveCStringEquals(expected, actual)) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + PrintToString(expected), + PrintToString(actual), + true); +} + +// The helper function for {ASSERT|EXPECT}_STRNE. +AssertionResult CmpHelperSTRNE(const char* s1_expression, + const char* s2_expression, + const char* s1, + const char* s2) { + if (!String::CStringEquals(s1, s2)) { + return AssertionSuccess(); + } else { + return AssertionFailure() << "Expected: (" << s1_expression << ") != (" + << s2_expression << "), actual: \"" + << s1 << "\" vs \"" << s2 << "\""; + } +} + +// The helper function for {ASSERT|EXPECT}_STRCASENE. +AssertionResult CmpHelperSTRCASENE(const char* s1_expression, + const char* s2_expression, + const char* s1, + const char* s2) { + if (!String::CaseInsensitiveCStringEquals(s1, s2)) { + return AssertionSuccess(); + } else { + return AssertionFailure() + << "Expected: (" << s1_expression << ") != (" + << s2_expression << ") (ignoring case), actual: \"" + << s1 << "\" vs \"" << s2 << "\""; + } +} + +} // namespace internal + +namespace { + +// Helper functions for implementing IsSubString() and IsNotSubstring(). + +// This group of overloaded functions return true iff needle is a +// substring of haystack. NULL is considered a substring of itself +// only. + +bool IsSubstringPred(const char* needle, const char* haystack) { + if (needle == NULL || haystack == NULL) + return needle == haystack; + + return strstr(haystack, needle) != NULL; +} + +bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) { + if (needle == NULL || haystack == NULL) + return needle == haystack; + + return wcsstr(haystack, needle) != NULL; +} + +// StringType here can be either ::std::string or ::std::wstring. +template +bool IsSubstringPred(const StringType& needle, + const StringType& haystack) { + return haystack.find(needle) != StringType::npos; +} + +// This function implements either IsSubstring() or IsNotSubstring(), +// depending on the value of the expected_to_be_substring parameter. +// StringType here can be const char*, const wchar_t*, ::std::string, +// or ::std::wstring. +template +AssertionResult IsSubstringImpl( + bool expected_to_be_substring, + const char* needle_expr, const char* haystack_expr, + const StringType& needle, const StringType& haystack) { + if (IsSubstringPred(needle, haystack) == expected_to_be_substring) + return AssertionSuccess(); + + const bool is_wide_string = sizeof(needle[0]) > 1; + const char* const begin_string_quote = is_wide_string ? "L\"" : "\""; + return AssertionFailure() + << "Value of: " << needle_expr << "\n" + << " Actual: " << begin_string_quote << needle << "\"\n" + << "Expected: " << (expected_to_be_substring ? "" : "not ") + << "a substring of " << haystack_expr << "\n" + << "Which is: " << begin_string_quote << haystack << "\""; +} + +} // namespace + +// IsSubstring() and IsNotSubstring() check whether needle is a +// substring of haystack (NULL is considered a substring of itself +// only), and return an appropriate error message when they fail. + +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const char* needle, const char* haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const wchar_t* needle, const wchar_t* haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const char* needle, const char* haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const wchar_t* needle, const wchar_t* haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::string& needle, const ::std::string& haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::string& needle, const ::std::string& haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} + +#if GTEST_HAS_STD_WSTRING +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::wstring& needle, const ::std::wstring& haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::wstring& needle, const ::std::wstring& haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} +#endif // GTEST_HAS_STD_WSTRING + +namespace internal { + +#if GTEST_OS_WINDOWS + +namespace { + +// Helper function for IsHRESULT{SuccessFailure} predicates +AssertionResult HRESULTFailureHelper(const char* expr, + const char* expected, + long hr) { // NOLINT +# if GTEST_OS_WINDOWS_MOBILE + + // Windows CE doesn't support FormatMessage. + const char error_text[] = ""; + +# else + + // Looks up the human-readable system message for the HRESULT code + // and since we're not passing any params to FormatMessage, we don't + // want inserts expanded. + const DWORD kFlags = FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS; + const DWORD kBufSize = 4096; + // Gets the system's human readable message string for this HRESULT. + char error_text[kBufSize] = { '\0' }; + DWORD message_length = ::FormatMessageA(kFlags, + 0, // no source, we're asking system + hr, // the error + 0, // no line width restrictions + error_text, // output buffer + kBufSize, // buf size + NULL); // no arguments for inserts + // Trims tailing white space (FormatMessage leaves a trailing CR-LF) + for (; message_length && IsSpace(error_text[message_length - 1]); + --message_length) { + error_text[message_length - 1] = '\0'; + } + +# endif // GTEST_OS_WINDOWS_MOBILE + + const std::string error_hex("0x" + String::FormatHexInt(hr)); + return ::testing::AssertionFailure() + << "Expected: " << expr << " " << expected << ".\n" + << " Actual: " << error_hex << " " << error_text << "\n"; +} + +} // namespace + +AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT + if (SUCCEEDED(hr)) { + return AssertionSuccess(); + } + return HRESULTFailureHelper(expr, "succeeds", hr); +} + +AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT + if (FAILED(hr)) { + return AssertionSuccess(); + } + return HRESULTFailureHelper(expr, "fails", hr); +} + +#endif // GTEST_OS_WINDOWS + +// Utility functions for encoding Unicode text (wide strings) in +// UTF-8. + +// A Unicode code-point can have upto 21 bits, and is encoded in UTF-8 +// like this: +// +// Code-point length Encoding +// 0 - 7 bits 0xxxxxxx +// 8 - 11 bits 110xxxxx 10xxxxxx +// 12 - 16 bits 1110xxxx 10xxxxxx 10xxxxxx +// 17 - 21 bits 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx + +// The maximum code-point a one-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint1 = (static_cast(1) << 7) - 1; + +// The maximum code-point a two-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint2 = (static_cast(1) << (5 + 6)) - 1; + +// The maximum code-point a three-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint3 = (static_cast(1) << (4 + 2*6)) - 1; + +// The maximum code-point a four-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint4 = (static_cast(1) << (3 + 3*6)) - 1; + +// Chops off the n lowest bits from a bit pattern. Returns the n +// lowest bits. As a side effect, the original bit pattern will be +// shifted to the right by n bits. +inline UInt32 ChopLowBits(UInt32* bits, int n) { + const UInt32 low_bits = *bits & ((static_cast(1) << n) - 1); + *bits >>= n; + return low_bits; +} + +// Converts a Unicode code point to a narrow string in UTF-8 encoding. +// code_point parameter is of type UInt32 because wchar_t may not be +// wide enough to contain a code point. +// If the code_point is not a valid Unicode code point +// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted +// to "(Invalid Unicode 0xXXXXXXXX)". +std::string CodePointToUtf8(UInt32 code_point) { + if (code_point > kMaxCodePoint4) { + return "(Invalid Unicode 0x" + String::FormatHexInt(code_point) + ")"; + } + + char str[5]; // Big enough for the largest valid code point. + if (code_point <= kMaxCodePoint1) { + str[1] = '\0'; + str[0] = static_cast(code_point); // 0xxxxxxx + } else if (code_point <= kMaxCodePoint2) { + str[2] = '\0'; + str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[0] = static_cast(0xC0 | code_point); // 110xxxxx + } else if (code_point <= kMaxCodePoint3) { + str[3] = '\0'; + str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[0] = static_cast(0xE0 | code_point); // 1110xxxx + } else { // code_point <= kMaxCodePoint4 + str[4] = '\0'; + str[3] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[0] = static_cast(0xF0 | code_point); // 11110xxx + } + return str; +} + +// The following two functions only make sense if the the system +// uses UTF-16 for wide string encoding. All supported systems +// with 16 bit wchar_t (Windows, Cygwin, Symbian OS) do use UTF-16. + +// Determines if the arguments constitute UTF-16 surrogate pair +// and thus should be combined into a single Unicode code point +// using CreateCodePointFromUtf16SurrogatePair. +inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { + return sizeof(wchar_t) == 2 && + (first & 0xFC00) == 0xD800 && (second & 0xFC00) == 0xDC00; +} + +// Creates a Unicode code point from UTF16 surrogate pair. +inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, + wchar_t second) { + const UInt32 mask = (1 << 10) - 1; + return (sizeof(wchar_t) == 2) ? + (((first & mask) << 10) | (second & mask)) + 0x10000 : + // This function should not be called when the condition is + // false, but we provide a sensible default in case it is. + static_cast(first); +} + +// Converts a wide string to a narrow string in UTF-8 encoding. +// The wide string is assumed to have the following encoding: +// UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) +// UTF-32 if sizeof(wchar_t) == 4 (on Linux) +// Parameter str points to a null-terminated wide string. +// Parameter num_chars may additionally limit the number +// of wchar_t characters processed. -1 is used when the entire string +// should be processed. +// If the string contains code points that are not valid Unicode code points +// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output +// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding +// and contains invalid UTF-16 surrogate pairs, values in those pairs +// will be encoded as individual Unicode characters from Basic Normal Plane. +std::string WideStringToUtf8(const wchar_t* str, int num_chars) { + if (num_chars == -1) + num_chars = static_cast(wcslen(str)); + + ::std::stringstream stream; + for (int i = 0; i < num_chars; ++i) { + UInt32 unicode_code_point; + + if (str[i] == L'\0') { + break; + } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) { + unicode_code_point = CreateCodePointFromUtf16SurrogatePair(str[i], + str[i + 1]); + i++; + } else { + unicode_code_point = static_cast(str[i]); + } + + stream << CodePointToUtf8(unicode_code_point); + } + return StringStreamToString(&stream); +} + +// Converts a wide C string to an std::string using the UTF-8 encoding. +// NULL will be converted to "(null)". +std::string String::ShowWideCString(const wchar_t * wide_c_str) { + if (wide_c_str == NULL) return "(null)"; + + return internal::WideStringToUtf8(wide_c_str, -1); +} + +// Compares two wide C strings. Returns true iff they have the same +// content. +// +// Unlike wcscmp(), this function can handle NULL argument(s). A NULL +// C string is considered different to any non-NULL C string, +// including the empty string. +bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) { + if (lhs == NULL) return rhs == NULL; + + if (rhs == NULL) return false; + + return wcscmp(lhs, rhs) == 0; +} + +// Helper function for *_STREQ on wide strings. +AssertionResult CmpHelperSTREQ(const char* expected_expression, + const char* actual_expression, + const wchar_t* expected, + const wchar_t* actual) { + if (String::WideCStringEquals(expected, actual)) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + PrintToString(expected), + PrintToString(actual), + false); +} + +// Helper function for *_STRNE on wide strings. +AssertionResult CmpHelperSTRNE(const char* s1_expression, + const char* s2_expression, + const wchar_t* s1, + const wchar_t* s2) { + if (!String::WideCStringEquals(s1, s2)) { + return AssertionSuccess(); + } + + return AssertionFailure() << "Expected: (" << s1_expression << ") != (" + << s2_expression << "), actual: " + << PrintToString(s1) + << " vs " << PrintToString(s2); +} + +// Compares two C strings, ignoring case. Returns true iff they have +// the same content. +// +// Unlike strcasecmp(), this function can handle NULL argument(s). A +// NULL C string is considered different to any non-NULL C string, +// including the empty string. +bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) { + if (lhs == NULL) + return rhs == NULL; + if (rhs == NULL) + return false; + return posix::StrCaseCmp(lhs, rhs) == 0; +} + + // Compares two wide C strings, ignoring case. Returns true iff they + // have the same content. + // + // Unlike wcscasecmp(), this function can handle NULL argument(s). + // A NULL C string is considered different to any non-NULL wide C string, + // including the empty string. + // NB: The implementations on different platforms slightly differ. + // On windows, this method uses _wcsicmp which compares according to LC_CTYPE + // environment variable. On GNU platform this method uses wcscasecmp + // which compares according to LC_CTYPE category of the current locale. + // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the + // current locale. +bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs, + const wchar_t* rhs) { + if (lhs == NULL) return rhs == NULL; + + if (rhs == NULL) return false; + +#if GTEST_OS_WINDOWS + return _wcsicmp(lhs, rhs) == 0; +#elif GTEST_OS_LINUX && !GTEST_OS_LINUX_ANDROID + return wcscasecmp(lhs, rhs) == 0; +#else + // Android, Mac OS X and Cygwin don't define wcscasecmp. + // Other unknown OSes may not define it either. + wint_t left, right; + do { + left = towlower(*lhs++); + right = towlower(*rhs++); + } while (left && left == right); + return left == right; +#endif // OS selector +} + +// Returns true iff str ends with the given suffix, ignoring case. +// Any string is considered to end with an empty suffix. +bool String::EndsWithCaseInsensitive( + const std::string& str, const std::string& suffix) { + const size_t str_len = str.length(); + const size_t suffix_len = suffix.length(); + return (str_len >= suffix_len) && + CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len, + suffix.c_str()); +} + +// Formats an int value as "%02d". +std::string String::FormatIntWidth2(int value) { + std::stringstream ss; + ss << std::setfill('0') << std::setw(2) << value; + return ss.str(); +} + +// Formats an int value as "%X". +std::string String::FormatHexInt(int value) { + std::stringstream ss; + ss << std::hex << std::uppercase << value; + return ss.str(); +} + +// Formats a byte as "%02X". +std::string String::FormatByte(unsigned char value) { + std::stringstream ss; + ss << std::setfill('0') << std::setw(2) << std::hex << std::uppercase + << static_cast(value); + return ss.str(); +} + +// Converts the buffer in a stringstream to an std::string, converting NUL +// bytes to "\\0" along the way. +std::string StringStreamToString(::std::stringstream* ss) { + const ::std::string& str = ss->str(); + const char* const start = str.c_str(); + const char* const end = start + str.length(); + + std::string result; + result.reserve(2 * (end - start)); + for (const char* ch = start; ch != end; ++ch) { + if (*ch == '\0') { + result += "\\0"; // Replaces NUL with "\\0"; + } else { + result += *ch; + } + } + + return result; +} + +// Appends the user-supplied message to the Google-Test-generated message. +std::string AppendUserMessage(const std::string& gtest_msg, + const Message& user_msg) { + // Appends the user message if it's non-empty. + const std::string user_msg_string = user_msg.GetString(); + if (user_msg_string.empty()) { + return gtest_msg; + } + + return gtest_msg + "\n" + user_msg_string; +} + +} // namespace internal + +// class TestResult + +// Creates an empty TestResult. +TestResult::TestResult() + : death_test_count_(0), + elapsed_time_(0) { +} + +// D'tor. +TestResult::~TestResult() { +} + +// Returns the i-th test part result among all the results. i can +// range from 0 to total_part_count() - 1. If i is not in that range, +// aborts the program. +const TestPartResult& TestResult::GetTestPartResult(int i) const { + if (i < 0 || i >= total_part_count()) + internal::posix::Abort(); + return test_part_results_.at(i); +} + +// Returns the i-th test property. i can range from 0 to +// test_property_count() - 1. If i is not in that range, aborts the +// program. +const TestProperty& TestResult::GetTestProperty(int i) const { + if (i < 0 || i >= test_property_count()) + internal::posix::Abort(); + return test_properties_.at(i); +} + +// Clears the test part results. +void TestResult::ClearTestPartResults() { + test_part_results_.clear(); +} + +// Adds a test part result to the list. +void TestResult::AddTestPartResult(const TestPartResult& test_part_result) { + test_part_results_.push_back(test_part_result); +} + +// Adds a test property to the list. If a property with the same key as the +// supplied property is already represented, the value of this test_property +// replaces the old value for that key. +void TestResult::RecordProperty(const std::string& xml_element, + const TestProperty& test_property) { + if (!ValidateTestProperty(xml_element, test_property)) { + return; + } + internal::MutexLock lock(&test_properites_mutex_); + const std::vector::iterator property_with_matching_key = + std::find_if(test_properties_.begin(), test_properties_.end(), + internal::TestPropertyKeyIs(test_property.key())); + if (property_with_matching_key == test_properties_.end()) { + test_properties_.push_back(test_property); + return; + } + property_with_matching_key->SetValue(test_property.value()); +} + +// The list of reserved attributes used in the element of XML +// output. +static const char* const kReservedTestSuitesAttributes[] = { + "disabled", + "errors", + "failures", + "name", + "random_seed", + "tests", + "time", + "timestamp" +}; + +// The list of reserved attributes used in the element of XML +// output. +static const char* const kReservedTestSuiteAttributes[] = { + "disabled", + "errors", + "failures", + "name", + "tests", + "time" +}; + +// The list of reserved attributes used in the element of XML output. +static const char* const kReservedTestCaseAttributes[] = { + "classname", + "name", + "status", + "time", + "type_param", + "value_param" +}; + +template +std::vector ArrayAsVector(const char* const (&array)[kSize]) { + return std::vector(array, array + kSize); +} + +static std::vector GetReservedAttributesForElement( + const std::string& xml_element) { + if (xml_element == "testsuites") { + return ArrayAsVector(kReservedTestSuitesAttributes); + } else if (xml_element == "testsuite") { + return ArrayAsVector(kReservedTestSuiteAttributes); + } else if (xml_element == "testcase") { + return ArrayAsVector(kReservedTestCaseAttributes); + } else { + GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element; + } + // This code is unreachable but some compilers may not realizes that. + return std::vector(); +} + +static std::string FormatWordList(const std::vector& words) { + Message word_list; + for (size_t i = 0; i < words.size(); ++i) { + if (i > 0 && words.size() > 2) { + word_list << ", "; + } + if (i == words.size() - 1) { + word_list << "and "; + } + word_list << "'" << words[i] << "'"; + } + return word_list.GetString(); +} + +bool ValidateTestPropertyName(const std::string& property_name, + const std::vector& reserved_names) { + if (std::find(reserved_names.begin(), reserved_names.end(), property_name) != + reserved_names.end()) { + ADD_FAILURE() << "Reserved key used in RecordProperty(): " << property_name + << " (" << FormatWordList(reserved_names) + << " are reserved by " << GTEST_NAME_ << ")"; + return false; + } + return true; +} + +// Adds a failure if the key is a reserved attribute of the element named +// xml_element. Returns true if the property is valid. +bool TestResult::ValidateTestProperty(const std::string& xml_element, + const TestProperty& test_property) { + return ValidateTestPropertyName(test_property.key(), + GetReservedAttributesForElement(xml_element)); +} + +// Clears the object. +void TestResult::Clear() { + test_part_results_.clear(); + test_properties_.clear(); + death_test_count_ = 0; + elapsed_time_ = 0; +} + +// Returns true iff the test failed. +bool TestResult::Failed() const { + for (int i = 0; i < total_part_count(); ++i) { + if (GetTestPartResult(i).failed()) + return true; + } + return false; +} + +// Returns true iff the test part fatally failed. +static bool TestPartFatallyFailed(const TestPartResult& result) { + return result.fatally_failed(); +} + +// Returns true iff the test fatally failed. +bool TestResult::HasFatalFailure() const { + return CountIf(test_part_results_, TestPartFatallyFailed) > 0; +} + +// Returns true iff the test part non-fatally failed. +static bool TestPartNonfatallyFailed(const TestPartResult& result) { + return result.nonfatally_failed(); +} + +// Returns true iff the test has a non-fatal failure. +bool TestResult::HasNonfatalFailure() const { + return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0; +} + +// Gets the number of all test parts. This is the sum of the number +// of successful test parts and the number of failed test parts. +int TestResult::total_part_count() const { + return static_cast(test_part_results_.size()); +} + +// Returns the number of the test properties. +int TestResult::test_property_count() const { + return static_cast(test_properties_.size()); +} + +// class Test + +// Creates a Test object. + +// The c'tor saves the values of all Google Test flags. +Test::Test() + : gtest_flag_saver_(new internal::GTestFlagSaver) { +} + +// The d'tor restores the values of all Google Test flags. +Test::~Test() { + delete gtest_flag_saver_; +} + +// Sets up the test fixture. +// +// A sub-class may override this. +void Test::SetUp() { +} + +// Tears down the test fixture. +// +// A sub-class may override this. +void Test::TearDown() { +} + +// Allows user supplied key value pairs to be recorded for later output. +void Test::RecordProperty(const std::string& key, const std::string& value) { + UnitTest::GetInstance()->RecordProperty(key, value); +} + +// Allows user supplied key value pairs to be recorded for later output. +void Test::RecordProperty(const std::string& key, int value) { + Message value_message; + value_message << value; + RecordProperty(key, value_message.GetString().c_str()); +} + +namespace internal { + +void ReportFailureInUnknownLocation(TestPartResult::Type result_type, + const std::string& message) { + // This function is a friend of UnitTest and as such has access to + // AddTestPartResult. + UnitTest::GetInstance()->AddTestPartResult( + result_type, + NULL, // No info about the source file where the exception occurred. + -1, // We have no info on which line caused the exception. + message, + ""); // No stack trace, either. +} + +} // namespace internal + +// Google Test requires all tests in the same test case to use the same test +// fixture class. This function checks if the current test has the +// same fixture class as the first test in the current test case. If +// yes, it returns true; otherwise it generates a Google Test failure and +// returns false. +bool Test::HasSameFixtureClass() { + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + const TestCase* const test_case = impl->current_test_case(); + + // Info about the first test in the current test case. + const TestInfo* const first_test_info = test_case->test_info_list()[0]; + const internal::TypeId first_fixture_id = first_test_info->fixture_class_id_; + const char* const first_test_name = first_test_info->name(); + + // Info about the current test. + const TestInfo* const this_test_info = impl->current_test_info(); + const internal::TypeId this_fixture_id = this_test_info->fixture_class_id_; + const char* const this_test_name = this_test_info->name(); + + if (this_fixture_id != first_fixture_id) { + // Is the first test defined using TEST? + const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId(); + // Is this test defined using TEST? + const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId(); + + if (first_is_TEST || this_is_TEST) { + // The user mixed TEST and TEST_F in this test case - we'll tell + // him/her how to fix it. + + // Gets the name of the TEST and the name of the TEST_F. Note + // that first_is_TEST and this_is_TEST cannot both be true, as + // the fixture IDs are different for the two tests. + const char* const TEST_name = + first_is_TEST ? first_test_name : this_test_name; + const char* const TEST_F_name = + first_is_TEST ? this_test_name : first_test_name; + + ADD_FAILURE() + << "All tests in the same test case must use the same test fixture\n" + << "class, so mixing TEST_F and TEST in the same test case is\n" + << "illegal. In test case " << this_test_info->test_case_name() + << ",\n" + << "test " << TEST_F_name << " is defined using TEST_F but\n" + << "test " << TEST_name << " is defined using TEST. You probably\n" + << "want to change the TEST to TEST_F or move it to another test\n" + << "case."; + } else { + // The user defined two fixture classes with the same name in + // two namespaces - we'll tell him/her how to fix it. + ADD_FAILURE() + << "All tests in the same test case must use the same test fixture\n" + << "class. However, in test case " + << this_test_info->test_case_name() << ",\n" + << "you defined test " << first_test_name + << " and test " << this_test_name << "\n" + << "using two different test fixture classes. This can happen if\n" + << "the two classes are from different namespaces or translation\n" + << "units and have the same name. You should probably rename one\n" + << "of the classes to put the tests into different test cases."; + } + return false; + } + + return true; +} + +#if GTEST_HAS_SEH + +// Adds an "exception thrown" fatal failure to the current test. This +// function returns its result via an output parameter pointer because VC++ +// prohibits creation of objects with destructors on stack in functions +// using __try (see error C2712). +static std::string* FormatSehExceptionMessage(DWORD exception_code, + const char* location) { + Message message; + message << "SEH exception with code 0x" << std::setbase(16) << + exception_code << std::setbase(10) << " thrown in " << location << "."; + + return new std::string(message.GetString()); +} + +#endif // GTEST_HAS_SEH + +namespace internal { + +#if GTEST_HAS_EXCEPTIONS + +// Adds an "exception thrown" fatal failure to the current test. +static std::string FormatCxxExceptionMessage(const char* description, + const char* location) { + Message message; + if (description != NULL) { + message << "C++ exception with description \"" << description << "\""; + } else { + message << "Unknown C++ exception"; + } + message << " thrown in " << location << "."; + + return message.GetString(); +} + +static std::string PrintTestPartResultToString( + const TestPartResult& test_part_result); + +GoogleTestFailureException::GoogleTestFailureException( + const TestPartResult& failure) + : ::std::runtime_error(PrintTestPartResultToString(failure).c_str()) {} + +#endif // GTEST_HAS_EXCEPTIONS + +// We put these helper functions in the internal namespace as IBM's xlC +// compiler rejects the code if they were declared static. + +// Runs the given method and handles SEH exceptions it throws, when +// SEH is supported; returns the 0-value for type Result in case of an +// SEH exception. (Microsoft compilers cannot handle SEH and C++ +// exceptions in the same function. Therefore, we provide a separate +// wrapper function for handling SEH exceptions.) +template +Result HandleSehExceptionsInMethodIfSupported( + T* object, Result (T::*method)(), const char* location) { +#if GTEST_HAS_SEH + __try { + return (object->*method)(); + } __except (internal::UnitTestOptions::GTestShouldProcessSEH( // NOLINT + GetExceptionCode())) { + // We create the exception message on the heap because VC++ prohibits + // creation of objects with destructors on stack in functions using __try + // (see error C2712). + std::string* exception_message = FormatSehExceptionMessage( + GetExceptionCode(), location); + internal::ReportFailureInUnknownLocation(TestPartResult::kFatalFailure, + *exception_message); + delete exception_message; + return static_cast(0); + } +#else + (void)location; + return (object->*method)(); +#endif // GTEST_HAS_SEH +} + +// Runs the given method and catches and reports C++ and/or SEH-style +// exceptions, if they are supported; returns the 0-value for type +// Result in case of an SEH exception. +template +Result HandleExceptionsInMethodIfSupported( + T* object, Result (T::*method)(), const char* location) { + // NOTE: The user code can affect the way in which Google Test handles + // exceptions by setting GTEST_FLAG(catch_exceptions), but only before + // RUN_ALL_TESTS() starts. It is technically possible to check the flag + // after the exception is caught and either report or re-throw the + // exception based on the flag's value: + // + // try { + // // Perform the test method. + // } catch (...) { + // if (GTEST_FLAG(catch_exceptions)) + // // Report the exception as failure. + // else + // throw; // Re-throws the original exception. + // } + // + // However, the purpose of this flag is to allow the program to drop into + // the debugger when the exception is thrown. On most platforms, once the + // control enters the catch block, the exception origin information is + // lost and the debugger will stop the program at the point of the + // re-throw in this function -- instead of at the point of the original + // throw statement in the code under test. For this reason, we perform + // the check early, sacrificing the ability to affect Google Test's + // exception handling in the method where the exception is thrown. + if (internal::GetUnitTestImpl()->catch_exceptions()) { +#if GTEST_HAS_EXCEPTIONS + try { + return HandleSehExceptionsInMethodIfSupported(object, method, location); + } catch (const internal::GoogleTestFailureException&) { // NOLINT + // This exception type can only be thrown by a failed Google + // Test assertion with the intention of letting another testing + // framework catch it. Therefore we just re-throw it. + throw; + } catch (const std::exception& e) { // NOLINT + internal::ReportFailureInUnknownLocation( + TestPartResult::kFatalFailure, + FormatCxxExceptionMessage(e.what(), location)); + } catch (...) { // NOLINT + internal::ReportFailureInUnknownLocation( + TestPartResult::kFatalFailure, + FormatCxxExceptionMessage(NULL, location)); + } + return static_cast(0); +#else + return HandleSehExceptionsInMethodIfSupported(object, method, location); +#endif // GTEST_HAS_EXCEPTIONS + } else { + return (object->*method)(); + } +} + +} // namespace internal + +// Runs the test and updates the test result. +void Test::Run() { + if (!HasSameFixtureClass()) return; + + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported(this, &Test::SetUp, "SetUp()"); + // We will run the test only if SetUp() was successful. + if (!HasFatalFailure()) { + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &Test::TestBody, "the test body"); + } + + // However, we want to clean up as much as possible. Hence we will + // always call TearDown(), even if SetUp() or the test body has + // failed. + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &Test::TearDown, "TearDown()"); +} + +// Returns true iff the current test has a fatal failure. +bool Test::HasFatalFailure() { + return internal::GetUnitTestImpl()->current_test_result()->HasFatalFailure(); +} + +// Returns true iff the current test has a non-fatal failure. +bool Test::HasNonfatalFailure() { + return internal::GetUnitTestImpl()->current_test_result()-> + HasNonfatalFailure(); +} + +// class TestInfo + +// Constructs a TestInfo object. It assumes ownership of the test factory +// object. +TestInfo::TestInfo(const std::string& a_test_case_name, + const std::string& a_name, + const char* a_type_param, + const char* a_value_param, + internal::TypeId fixture_class_id, + internal::TestFactoryBase* factory) + : test_case_name_(a_test_case_name), + name_(a_name), + type_param_(a_type_param ? new std::string(a_type_param) : NULL), + value_param_(a_value_param ? new std::string(a_value_param) : NULL), + fixture_class_id_(fixture_class_id), + should_run_(false), + is_disabled_(false), + matches_filter_(false), + factory_(factory), + result_() {} + +// Destructs a TestInfo object. +TestInfo::~TestInfo() { delete factory_; } + +namespace internal { + +// Creates a new TestInfo object and registers it with Google Test; +// returns the created object. +// +// Arguments: +// +// test_case_name: name of the test case +// name: name of the test +// type_param: the name of the test's type parameter, or NULL if +// this is not a typed or a type-parameterized test. +// value_param: text representation of the test's value parameter, +// or NULL if this is not a value-parameterized test. +// fixture_class_id: ID of the test fixture class +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +// factory: pointer to the factory that creates a test object. +// The newly created TestInfo instance will assume +// ownership of the factory object. +TestInfo* MakeAndRegisterTestInfo( + const char* test_case_name, + const char* name, + const char* type_param, + const char* value_param, + TypeId fixture_class_id, + SetUpTestCaseFunc set_up_tc, + TearDownTestCaseFunc tear_down_tc, + TestFactoryBase* factory) { + TestInfo* const test_info = + new TestInfo(test_case_name, name, type_param, value_param, + fixture_class_id, factory); + GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info); + return test_info; +} + +#if GTEST_HAS_PARAM_TEST +void ReportInvalidTestCaseType(const char* test_case_name, + const char* file, int line) { + Message errors; + errors + << "Attempted redefinition of test case " << test_case_name << ".\n" + << "All tests in the same test case must use the same test fixture\n" + << "class. However, in test case " << test_case_name << ", you tried\n" + << "to define a test using a fixture class different from the one\n" + << "used earlier. This can happen if the two fixture classes are\n" + << "from different namespaces and have the same name. You should\n" + << "probably rename one of the classes to put the tests into different\n" + << "test cases."; + + fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), + errors.GetString().c_str()); +} +#endif // GTEST_HAS_PARAM_TEST + +} // namespace internal + +namespace { + +// A predicate that checks the test name of a TestInfo against a known +// value. +// +// This is used for implementation of the TestCase class only. We put +// it in the anonymous namespace to prevent polluting the outer +// namespace. +// +// TestNameIs is copyable. +class TestNameIs { + public: + // Constructor. + // + // TestNameIs has NO default constructor. + explicit TestNameIs(const char* name) + : name_(name) {} + + // Returns true iff the test name of test_info matches name_. + bool operator()(const TestInfo * test_info) const { + return test_info && test_info->name() == name_; + } + + private: + std::string name_; +}; + +} // namespace + +namespace internal { + +// This method expands all parameterized tests registered with macros TEST_P +// and INSTANTIATE_TEST_CASE_P into regular tests and registers those. +// This will be done just once during the program runtime. +void UnitTestImpl::RegisterParameterizedTests() { +#if GTEST_HAS_PARAM_TEST + if (!parameterized_tests_registered_) { + parameterized_test_registry_.RegisterTests(); + parameterized_tests_registered_ = true; + } +#endif +} + +} // namespace internal + +// Creates the test object, runs it, records its result, and then +// deletes it. +void TestInfo::Run() { + if (!should_run_) return; + + // Tells UnitTest where to store test result. + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + impl->set_current_test_info(this); + + TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); + + // Notifies the unit test event listeners that a test is about to start. + repeater->OnTestStart(*this); + + const TimeInMillis start = internal::GetTimeInMillis(); + + impl->os_stack_trace_getter()->UponLeavingGTest(); + + // Creates the test object. + Test* const test = internal::HandleExceptionsInMethodIfSupported( + factory_, &internal::TestFactoryBase::CreateTest, + "the test fixture's constructor"); + + // Runs the test only if the test object was created and its + // constructor didn't generate a fatal failure. + if ((test != NULL) && !Test::HasFatalFailure()) { + // This doesn't throw as all user code that can throw are wrapped into + // exception handling code. + test->Run(); + } + + // Deletes the test object. + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + test, &Test::DeleteSelf_, "the test fixture's destructor"); + + result_.set_elapsed_time(internal::GetTimeInMillis() - start); + + // Notifies the unit test event listener that a test has just finished. + repeater->OnTestEnd(*this); + + // Tells UnitTest to stop associating assertion results to this + // test. + impl->set_current_test_info(NULL); +} + +// class TestCase + +// Gets the number of successful tests in this test case. +int TestCase::successful_test_count() const { + return CountIf(test_info_list_, TestPassed); +} + +// Gets the number of failed tests in this test case. +int TestCase::failed_test_count() const { + return CountIf(test_info_list_, TestFailed); +} + +// Gets the number of disabled tests that will be reported in the XML report. +int TestCase::reportable_disabled_test_count() const { + return CountIf(test_info_list_, TestReportableDisabled); +} + +// Gets the number of disabled tests in this test case. +int TestCase::disabled_test_count() const { + return CountIf(test_info_list_, TestDisabled); +} + +// Gets the number of tests to be printed in the XML report. +int TestCase::reportable_test_count() const { + return CountIf(test_info_list_, TestReportable); +} + +// Get the number of tests in this test case that should run. +int TestCase::test_to_run_count() const { + return CountIf(test_info_list_, ShouldRunTest); +} + +// Gets the number of all tests. +int TestCase::total_test_count() const { + return static_cast(test_info_list_.size()); +} + +// Creates a TestCase with the given name. +// +// Arguments: +// +// name: name of the test case +// a_type_param: the name of the test case's type parameter, or NULL if +// this is not a typed or a type-parameterized test case. +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +TestCase::TestCase(const char* a_name, const char* a_type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc) + : name_(a_name), + type_param_(a_type_param ? new std::string(a_type_param) : NULL), + set_up_tc_(set_up_tc), + tear_down_tc_(tear_down_tc), + should_run_(false), + elapsed_time_(0) { +} + +// Destructor of TestCase. +TestCase::~TestCase() { + // Deletes every Test in the collection. + ForEach(test_info_list_, internal::Delete); +} + +// Returns the i-th test among all the tests. i can range from 0 to +// total_test_count() - 1. If i is not in that range, returns NULL. +const TestInfo* TestCase::GetTestInfo(int i) const { + const int index = GetElementOr(test_indices_, i, -1); + return index < 0 ? NULL : test_info_list_[index]; +} + +// Returns the i-th test among all the tests. i can range from 0 to +// total_test_count() - 1. If i is not in that range, returns NULL. +TestInfo* TestCase::GetMutableTestInfo(int i) { + const int index = GetElementOr(test_indices_, i, -1); + return index < 0 ? NULL : test_info_list_[index]; +} + +// Adds a test to this test case. Will delete the test upon +// destruction of the TestCase object. +void TestCase::AddTestInfo(TestInfo * test_info) { + test_info_list_.push_back(test_info); + test_indices_.push_back(static_cast(test_indices_.size())); +} + +// Runs every test in this TestCase. +void TestCase::Run() { + if (!should_run_) return; + + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + impl->set_current_test_case(this); + + TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); + + repeater->OnTestCaseStart(*this); + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &TestCase::RunSetUpTestCase, "SetUpTestCase()"); + + const internal::TimeInMillis start = internal::GetTimeInMillis(); + for (int i = 0; i < total_test_count(); i++) { + GetMutableTestInfo(i)->Run(); + } + elapsed_time_ = internal::GetTimeInMillis() - start; + + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &TestCase::RunTearDownTestCase, "TearDownTestCase()"); + + repeater->OnTestCaseEnd(*this); + impl->set_current_test_case(NULL); +} + +// Clears the results of all tests in this test case. +void TestCase::ClearResult() { + ad_hoc_test_result_.Clear(); + ForEach(test_info_list_, TestInfo::ClearTestResult); +} + +// Shuffles the tests in this test case. +void TestCase::ShuffleTests(internal::Random* random) { + Shuffle(random, &test_indices_); +} + +// Restores the test order to before the first shuffle. +void TestCase::UnshuffleTests() { + for (size_t i = 0; i < test_indices_.size(); i++) { + test_indices_[i] = static_cast(i); + } +} + +// Formats a countable noun. Depending on its quantity, either the +// singular form or the plural form is used. e.g. +// +// FormatCountableNoun(1, "formula", "formuli") returns "1 formula". +// FormatCountableNoun(5, "book", "books") returns "5 books". +static std::string FormatCountableNoun(int count, + const char * singular_form, + const char * plural_form) { + return internal::StreamableToString(count) + " " + + (count == 1 ? singular_form : plural_form); +} + +// Formats the count of tests. +static std::string FormatTestCount(int test_count) { + return FormatCountableNoun(test_count, "test", "tests"); +} + +// Formats the count of test cases. +static std::string FormatTestCaseCount(int test_case_count) { + return FormatCountableNoun(test_case_count, "test case", "test cases"); +} + +// Converts a TestPartResult::Type enum to human-friendly string +// representation. Both kNonFatalFailure and kFatalFailure are translated +// to "Failure", as the user usually doesn't care about the difference +// between the two when viewing the test result. +static const char * TestPartResultTypeToString(TestPartResult::Type type) { + switch (type) { + case TestPartResult::kSuccess: + return "Success"; + + case TestPartResult::kNonFatalFailure: + case TestPartResult::kFatalFailure: +#ifdef _MSC_VER + return "error: "; +#else + return "Failure\n"; +#endif + default: + return "Unknown result type"; + } +} + +namespace internal { + +// Prints a TestPartResult to an std::string. +static std::string PrintTestPartResultToString( + const TestPartResult& test_part_result) { + return (Message() + << internal::FormatFileLocation(test_part_result.file_name(), + test_part_result.line_number()) + << " " << TestPartResultTypeToString(test_part_result.type()) + << test_part_result.message()).GetString(); +} + +// Prints a TestPartResult. +static void PrintTestPartResult(const TestPartResult& test_part_result) { + const std::string& result = + PrintTestPartResultToString(test_part_result); + printf("%s\n", result.c_str()); + fflush(stdout); + // If the test program runs in Visual Studio or a debugger, the + // following statements add the test part result message to the Output + // window such that the user can double-click on it to jump to the + // corresponding source code location; otherwise they do nothing. +#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + // We don't call OutputDebugString*() on Windows Mobile, as printing + // to stdout is done by OutputDebugString() there already - we don't + // want the same message printed twice. + ::OutputDebugStringA(result.c_str()); + ::OutputDebugStringA("\n"); +#endif +} + +// class PrettyUnitTestResultPrinter + +enum GTestColor { + COLOR_DEFAULT, + COLOR_RED, + COLOR_GREEN, + COLOR_YELLOW +}; + +#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + +// Returns the character attribute for the given color. +WORD GetColorAttribute(GTestColor color) { + switch (color) { + case COLOR_RED: return FOREGROUND_RED; + case COLOR_GREEN: return FOREGROUND_GREEN; + case COLOR_YELLOW: return FOREGROUND_RED | FOREGROUND_GREEN; + default: return 0; + } +} + +#else + +// Returns the ANSI color code for the given color. COLOR_DEFAULT is +// an invalid input. +const char* GetAnsiColorCode(GTestColor color) { + switch (color) { + case COLOR_RED: return "1"; + case COLOR_GREEN: return "2"; + case COLOR_YELLOW: return "3"; + default: return NULL; + }; +} + +#endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + +// Returns true iff Google Test should use colors in the output. +bool ShouldUseColor(bool stdout_is_tty) { + const char* const gtest_color = GTEST_FLAG(color).c_str(); + + if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { +#if GTEST_OS_WINDOWS + // On Windows the TERM variable is usually not set, but the + // console there does support colors. + return stdout_is_tty; +#else + // On non-Windows platforms, we rely on the TERM variable. + const char* const term = posix::GetEnv("TERM"); + const bool term_supports_color = + String::CStringEquals(term, "xterm") || + String::CStringEquals(term, "xterm-color") || + String::CStringEquals(term, "xterm-256color") || + String::CStringEquals(term, "screen") || + String::CStringEquals(term, "screen-256color") || + String::CStringEquals(term, "linux") || + String::CStringEquals(term, "cygwin"); + return stdout_is_tty && term_supports_color; +#endif // GTEST_OS_WINDOWS + } + + return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || + String::CaseInsensitiveCStringEquals(gtest_color, "true") || + String::CaseInsensitiveCStringEquals(gtest_color, "t") || + String::CStringEquals(gtest_color, "1"); + // We take "yes", "true", "t", and "1" as meaning "yes". If the + // value is neither one of these nor "auto", we treat it as "no" to + // be conservative. +} + +// Helpers for printing colored strings to stdout. Note that on Windows, we +// cannot simply emit special characters and have the terminal change colors. +// This routine must actually emit the characters rather than return a string +// that would be colored when printed, as can be done on Linux. +void ColoredPrintf(GTestColor color, const char* fmt, ...) { + va_list args; + va_start(args, fmt); + +#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS || GTEST_OS_IOS + const bool use_color = false; +#else + static const bool in_color_mode = + ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); + const bool use_color = in_color_mode && (color != COLOR_DEFAULT); +#endif // GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS + // The '!= 0' comparison is necessary to satisfy MSVC 7.1. + + if (!use_color) { + vprintf(fmt, args); + va_end(args); + return; + } + +#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + const HANDLE stdout_handle = GetStdHandle(STD_OUTPUT_HANDLE); + + // Gets the current text color. + CONSOLE_SCREEN_BUFFER_INFO buffer_info; + GetConsoleScreenBufferInfo(stdout_handle, &buffer_info); + const WORD old_color_attrs = buffer_info.wAttributes; + + // We need to flush the stream buffers into the console before each + // SetConsoleTextAttribute call lest it affect the text that is already + // printed but has not yet reached the console. + fflush(stdout); + SetConsoleTextAttribute(stdout_handle, + GetColorAttribute(color) | FOREGROUND_INTENSITY); + vprintf(fmt, args); + + fflush(stdout); + // Restores the text color. + SetConsoleTextAttribute(stdout_handle, old_color_attrs); +#else + printf("\033[0;3%sm", GetAnsiColorCode(color)); + vprintf(fmt, args); + printf("\033[m"); // Resets the terminal to default. +#endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + va_end(args); +} + +// Text printed in Google Test's text output and --gunit_list_tests +// output to label the type parameter and value parameter for a test. +static const char kTypeParamLabel[] = "TypeParam"; +static const char kValueParamLabel[] = "GetParam()"; + +void PrintFullTestCommentIfPresent(const TestInfo& test_info) { + const char* const type_param = test_info.type_param(); + const char* const value_param = test_info.value_param(); + + if (type_param != NULL || value_param != NULL) { + printf(", where "); + if (type_param != NULL) { + printf("%s = %s", kTypeParamLabel, type_param); + if (value_param != NULL) + printf(" and "); + } + if (value_param != NULL) { + printf("%s = %s", kValueParamLabel, value_param); + } + } +} + +// This class implements the TestEventListener interface. +// +// Class PrettyUnitTestResultPrinter is copyable. +class PrettyUnitTestResultPrinter : public TestEventListener { + public: + PrettyUnitTestResultPrinter() {} + static void PrintTestName(const char * test_case, const char * test) { + printf("%s.%s", test_case, test); + } + + // The following methods override what's in the TestEventListener class. + virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} + virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); + virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); + virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} + virtual void OnTestCaseStart(const TestCase& test_case); + virtual void OnTestStart(const TestInfo& test_info); + virtual void OnTestPartResult(const TestPartResult& result); + virtual void OnTestEnd(const TestInfo& test_info); + virtual void OnTestCaseEnd(const TestCase& test_case); + virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); + virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} + virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); + virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} + + private: + static void PrintFailedTests(const UnitTest& unit_test); +}; + + // Fired before each iteration of tests starts. +void PrettyUnitTestResultPrinter::OnTestIterationStart( + const UnitTest& unit_test, int iteration) { + if (GTEST_FLAG(repeat) != 1) + printf("\nRepeating all tests (iteration %d) . . .\n\n", iteration + 1); + + const char* const filter = GTEST_FLAG(filter).c_str(); + + // Prints the filter if it's not *. This reminds the user that some + // tests may be skipped. + if (!String::CStringEquals(filter, kUniversalFilter)) { + ColoredPrintf(COLOR_YELLOW, + "Note: %s filter = %s\n", GTEST_NAME_, filter); + } + + if (internal::ShouldShard(kTestTotalShards, kTestShardIndex, false)) { + const Int32 shard_index = Int32FromEnvOrDie(kTestShardIndex, -1); + ColoredPrintf(COLOR_YELLOW, + "Note: This is test shard %d of %s.\n", + static_cast(shard_index) + 1, + internal::posix::GetEnv(kTestTotalShards)); + } + + if (GTEST_FLAG(shuffle)) { + ColoredPrintf(COLOR_YELLOW, + "Note: Randomizing tests' orders with a seed of %d .\n", + unit_test.random_seed()); + } + + ColoredPrintf(COLOR_GREEN, "[==========] "); + printf("Running %s from %s.\n", + FormatTestCount(unit_test.test_to_run_count()).c_str(), + FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart( + const UnitTest& /*unit_test*/) { + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("Global test environment set-up.\n"); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) { + const std::string counts = + FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("%s from %s", counts.c_str(), test_case.name()); + if (test_case.type_param() == NULL) { + printf("\n"); + } else { + printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); + } + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) { + ColoredPrintf(COLOR_GREEN, "[ RUN ] "); + PrintTestName(test_info.test_case_name(), test_info.name()); + printf("\n"); + fflush(stdout); +} + +// Called after an assertion failure. +void PrettyUnitTestResultPrinter::OnTestPartResult( + const TestPartResult& result) { + // If the test part succeeded, we don't need to do anything. + if (result.type() == TestPartResult::kSuccess) + return; + + // Print failure message from the assertion (e.g. expected this and got that). + PrintTestPartResult(result); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) { + if (test_info.result()->Passed()) { + ColoredPrintf(COLOR_GREEN, "[ OK ] "); + } else { + ColoredPrintf(COLOR_RED, "[ FAILED ] "); + } + PrintTestName(test_info.test_case_name(), test_info.name()); + if (test_info.result()->Failed()) + PrintFullTestCommentIfPresent(test_info); + + if (GTEST_FLAG(print_time)) { + printf(" (%s ms)\n", internal::StreamableToString( + test_info.result()->elapsed_time()).c_str()); + } else { + printf("\n"); + } + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) { + if (!GTEST_FLAG(print_time)) return; + + const std::string counts = + FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("%s from %s (%s ms total)\n\n", + counts.c_str(), test_case.name(), + internal::StreamableToString(test_case.elapsed_time()).c_str()); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart( + const UnitTest& /*unit_test*/) { + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("Global test environment tear-down\n"); + fflush(stdout); +} + +// Internal helper for printing the list of failed tests. +void PrettyUnitTestResultPrinter::PrintFailedTests(const UnitTest& unit_test) { + const int failed_test_count = unit_test.failed_test_count(); + if (failed_test_count == 0) { + return; + } + + for (int i = 0; i < unit_test.total_test_case_count(); ++i) { + const TestCase& test_case = *unit_test.GetTestCase(i); + if (!test_case.should_run() || (test_case.failed_test_count() == 0)) { + continue; + } + for (int j = 0; j < test_case.total_test_count(); ++j) { + const TestInfo& test_info = *test_case.GetTestInfo(j); + if (!test_info.should_run() || test_info.result()->Passed()) { + continue; + } + ColoredPrintf(COLOR_RED, "[ FAILED ] "); + printf("%s.%s", test_case.name(), test_info.name()); + PrintFullTestCommentIfPresent(test_info); + printf("\n"); + } + } +} + +void PrettyUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, + int /*iteration*/) { + ColoredPrintf(COLOR_GREEN, "[==========] "); + printf("%s from %s ran.", + FormatTestCount(unit_test.test_to_run_count()).c_str(), + FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); + if (GTEST_FLAG(print_time)) { + printf(" (%s ms total)", + internal::StreamableToString(unit_test.elapsed_time()).c_str()); + } + printf("\n"); + ColoredPrintf(COLOR_GREEN, "[ PASSED ] "); + printf("%s.\n", FormatTestCount(unit_test.successful_test_count()).c_str()); + + int num_failures = unit_test.failed_test_count(); + if (!unit_test.Passed()) { + const int failed_test_count = unit_test.failed_test_count(); + ColoredPrintf(COLOR_RED, "[ FAILED ] "); + printf("%s, listed below:\n", FormatTestCount(failed_test_count).c_str()); + PrintFailedTests(unit_test); + printf("\n%2d FAILED %s\n", num_failures, + num_failures == 1 ? "TEST" : "TESTS"); + } + + int num_disabled = unit_test.reportable_disabled_test_count(); + if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) { + if (!num_failures) { + printf("\n"); // Add a spacer if no FAILURE banner is displayed. + } + ColoredPrintf(COLOR_YELLOW, + " YOU HAVE %d DISABLED %s\n\n", + num_disabled, + num_disabled == 1 ? "TEST" : "TESTS"); + } + // Ensure that Google Test output is printed before, e.g., heapchecker output. + fflush(stdout); +} + +// End PrettyUnitTestResultPrinter + +// class TestEventRepeater +// +// This class forwards events to other event listeners. +class TestEventRepeater : public TestEventListener { + public: + TestEventRepeater() : forwarding_enabled_(true) {} + virtual ~TestEventRepeater(); + void Append(TestEventListener *listener); + TestEventListener* Release(TestEventListener* listener); + + // Controls whether events will be forwarded to listeners_. Set to false + // in death test child processes. + bool forwarding_enabled() const { return forwarding_enabled_; } + void set_forwarding_enabled(bool enable) { forwarding_enabled_ = enable; } + + virtual void OnTestProgramStart(const UnitTest& unit_test); + virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); + virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); + virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test); + virtual void OnTestCaseStart(const TestCase& test_case); + virtual void OnTestStart(const TestInfo& test_info); + virtual void OnTestPartResult(const TestPartResult& result); + virtual void OnTestEnd(const TestInfo& test_info); + virtual void OnTestCaseEnd(const TestCase& test_case); + virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); + virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test); + virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); + virtual void OnTestProgramEnd(const UnitTest& unit_test); + + private: + // Controls whether events will be forwarded to listeners_. Set to false + // in death test child processes. + bool forwarding_enabled_; + // The list of listeners that receive events. + std::vector listeners_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventRepeater); +}; + +TestEventRepeater::~TestEventRepeater() { + ForEach(listeners_, Delete); +} + +void TestEventRepeater::Append(TestEventListener *listener) { + listeners_.push_back(listener); +} + +// TODO(vladl@google.com): Factor the search functionality into Vector::Find. +TestEventListener* TestEventRepeater::Release(TestEventListener *listener) { + for (size_t i = 0; i < listeners_.size(); ++i) { + if (listeners_[i] == listener) { + listeners_.erase(listeners_.begin() + i); + return listener; + } + } + + return NULL; +} + +// Since most methods are very similar, use macros to reduce boilerplate. +// This defines a member that forwards the call to all listeners. +#define GTEST_REPEATER_METHOD_(Name, Type) \ +void TestEventRepeater::Name(const Type& parameter) { \ + if (forwarding_enabled_) { \ + for (size_t i = 0; i < listeners_.size(); i++) { \ + listeners_[i]->Name(parameter); \ + } \ + } \ +} +// This defines a member that forwards the call to all listeners in reverse +// order. +#define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \ +void TestEventRepeater::Name(const Type& parameter) { \ + if (forwarding_enabled_) { \ + for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { \ + listeners_[i]->Name(parameter); \ + } \ + } \ +} + +GTEST_REPEATER_METHOD_(OnTestProgramStart, UnitTest) +GTEST_REPEATER_METHOD_(OnEnvironmentsSetUpStart, UnitTest) +GTEST_REPEATER_METHOD_(OnTestCaseStart, TestCase) +GTEST_REPEATER_METHOD_(OnTestStart, TestInfo) +GTEST_REPEATER_METHOD_(OnTestPartResult, TestPartResult) +GTEST_REPEATER_METHOD_(OnEnvironmentsTearDownStart, UnitTest) +GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsSetUpEnd, UnitTest) +GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsTearDownEnd, UnitTest) +GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo) +GTEST_REVERSE_REPEATER_METHOD_(OnTestCaseEnd, TestCase) +GTEST_REVERSE_REPEATER_METHOD_(OnTestProgramEnd, UnitTest) + +#undef GTEST_REPEATER_METHOD_ +#undef GTEST_REVERSE_REPEATER_METHOD_ + +void TestEventRepeater::OnTestIterationStart(const UnitTest& unit_test, + int iteration) { + if (forwarding_enabled_) { + for (size_t i = 0; i < listeners_.size(); i++) { + listeners_[i]->OnTestIterationStart(unit_test, iteration); + } + } +} + +void TestEventRepeater::OnTestIterationEnd(const UnitTest& unit_test, + int iteration) { + if (forwarding_enabled_) { + for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { + listeners_[i]->OnTestIterationEnd(unit_test, iteration); + } + } +} + +// End TestEventRepeater + +// This class generates an XML output file. +class XmlUnitTestResultPrinter : public EmptyTestEventListener { + public: + explicit XmlUnitTestResultPrinter(const char* output_file); + + virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); + + private: + // Is c a whitespace character that is normalized to a space character + // when it appears in an XML attribute value? + static bool IsNormalizableWhitespace(char c) { + return c == 0x9 || c == 0xA || c == 0xD; + } + + // May c appear in a well-formed XML document? + static bool IsValidXmlCharacter(char c) { + return IsNormalizableWhitespace(c) || c >= 0x20; + } + + // Returns an XML-escaped copy of the input string str. If + // is_attribute is true, the text is meant to appear as an attribute + // value, and normalizable whitespace is preserved by replacing it + // with character references. + static std::string EscapeXml(const std::string& str, bool is_attribute); + + // Returns the given string with all characters invalid in XML removed. + static std::string RemoveInvalidXmlCharacters(const std::string& str); + + // Convenience wrapper around EscapeXml when str is an attribute value. + static std::string EscapeXmlAttribute(const std::string& str) { + return EscapeXml(str, true); + } + + // Convenience wrapper around EscapeXml when str is not an attribute value. + static std::string EscapeXmlText(const char* str) { + return EscapeXml(str, false); + } + + // Verifies that the given attribute belongs to the given element and + // streams the attribute as XML. + static void OutputXmlAttribute(std::ostream* stream, + const std::string& element_name, + const std::string& name, + const std::string& value); + + // Streams an XML CDATA section, escaping invalid CDATA sequences as needed. + static void OutputXmlCDataSection(::std::ostream* stream, const char* data); + + // Streams an XML representation of a TestInfo object. + static void OutputXmlTestInfo(::std::ostream* stream, + const char* test_case_name, + const TestInfo& test_info); + + // Prints an XML representation of a TestCase object + static void PrintXmlTestCase(::std::ostream* stream, + const TestCase& test_case); + + // Prints an XML summary of unit_test to output stream out. + static void PrintXmlUnitTest(::std::ostream* stream, + const UnitTest& unit_test); + + // Produces a string representing the test properties in a result as space + // delimited XML attributes based on the property key="value" pairs. + // When the std::string is not empty, it includes a space at the beginning, + // to delimit this attribute from prior attributes. + static std::string TestPropertiesAsXmlAttributes(const TestResult& result); + + // The output file. + const std::string output_file_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(XmlUnitTestResultPrinter); +}; + +// Creates a new XmlUnitTestResultPrinter. +XmlUnitTestResultPrinter::XmlUnitTestResultPrinter(const char* output_file) + : output_file_(output_file) { + if (output_file_.c_str() == NULL || output_file_.empty()) { + fprintf(stderr, "XML output file may not be null\n"); + fflush(stderr); + exit(EXIT_FAILURE); + } +} + +// Called after the unit test ends. +void XmlUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, + int /*iteration*/) { + FILE* xmlout = NULL; + FilePath output_file(output_file_); + FilePath output_dir(output_file.RemoveFileName()); + + if (output_dir.CreateDirectoriesRecursively()) { + xmlout = posix::FOpen(output_file_.c_str(), "w"); + } + if (xmlout == NULL) { + // TODO(wan): report the reason of the failure. + // + // We don't do it for now as: + // + // 1. There is no urgent need for it. + // 2. It's a bit involved to make the errno variable thread-safe on + // all three operating systems (Linux, Windows, and Mac OS). + // 3. To interpret the meaning of errno in a thread-safe way, + // we need the strerror_r() function, which is not available on + // Windows. + fprintf(stderr, + "Unable to open file \"%s\"\n", + output_file_.c_str()); + fflush(stderr); + exit(EXIT_FAILURE); + } + std::stringstream stream; + PrintXmlUnitTest(&stream, unit_test); + fprintf(xmlout, "%s", StringStreamToString(&stream).c_str()); + fclose(xmlout); +} + +// Returns an XML-escaped copy of the input string str. If is_attribute +// is true, the text is meant to appear as an attribute value, and +// normalizable whitespace is preserved by replacing it with character +// references. +// +// Invalid XML characters in str, if any, are stripped from the output. +// It is expected that most, if not all, of the text processed by this +// module will consist of ordinary English text. +// If this module is ever modified to produce version 1.1 XML output, +// most invalid characters can be retained using character references. +// TODO(wan): It might be nice to have a minimally invasive, human-readable +// escaping scheme for invalid characters, rather than dropping them. +std::string XmlUnitTestResultPrinter::EscapeXml( + const std::string& str, bool is_attribute) { + Message m; + + for (size_t i = 0; i < str.size(); ++i) { + const char ch = str[i]; + switch (ch) { + case '<': + m << "<"; + break; + case '>': + m << ">"; + break; + case '&': + m << "&"; + break; + case '\'': + if (is_attribute) + m << "'"; + else + m << '\''; + break; + case '"': + if (is_attribute) + m << """; + else + m << '"'; + break; + default: + if (IsValidXmlCharacter(ch)) { + if (is_attribute && IsNormalizableWhitespace(ch)) + m << "&#x" << String::FormatByte(static_cast(ch)) + << ";"; + else + m << ch; + } + break; + } + } + + return m.GetString(); +} + +// Returns the given string with all characters invalid in XML removed. +// Currently invalid characters are dropped from the string. An +// alternative is to replace them with certain characters such as . or ?. +std::string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters( + const std::string& str) { + std::string output; + output.reserve(str.size()); + for (std::string::const_iterator it = str.begin(); it != str.end(); ++it) + if (IsValidXmlCharacter(*it)) + output.push_back(*it); + + return output; +} + +// The following routines generate an XML representation of a UnitTest +// object. +// +// This is how Google Test concepts map to the DTD: +// +// <-- corresponds to a UnitTest object +// <-- corresponds to a TestCase object +// <-- corresponds to a TestInfo object +// ... +// ... +// ... +// <-- individual assertion failures +// +// +// + +// Formats the given time in milliseconds as seconds. +std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { + ::std::stringstream ss; + ss << ms/1000.0; + return ss.str(); +} + +// Converts the given epoch time in milliseconds to a date string in the ISO +// 8601 format, without the timezone information. +std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms) { + // Using non-reentrant version as localtime_r is not portable. + time_t seconds = static_cast(ms / 1000); +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4996) // Temporarily disables warning 4996 + // (function or variable may be unsafe). + const struct tm* const time_struct = localtime(&seconds); // NOLINT +# pragma warning(pop) // Restores the warning state again. +#else + const struct tm* const time_struct = localtime(&seconds); // NOLINT +#endif + if (time_struct == NULL) + return ""; // Invalid ms value + + // YYYY-MM-DDThh:mm:ss + return StreamableToString(time_struct->tm_year + 1900) + "-" + + String::FormatIntWidth2(time_struct->tm_mon + 1) + "-" + + String::FormatIntWidth2(time_struct->tm_mday) + "T" + + String::FormatIntWidth2(time_struct->tm_hour) + ":" + + String::FormatIntWidth2(time_struct->tm_min) + ":" + + String::FormatIntWidth2(time_struct->tm_sec); +} + +// Streams an XML CDATA section, escaping invalid CDATA sequences as needed. +void XmlUnitTestResultPrinter::OutputXmlCDataSection(::std::ostream* stream, + const char* data) { + const char* segment = data; + *stream << ""); + if (next_segment != NULL) { + stream->write( + segment, static_cast(next_segment - segment)); + *stream << "]]>]]>"); + } else { + *stream << segment; + break; + } + } + *stream << "]]>"; +} + +void XmlUnitTestResultPrinter::OutputXmlAttribute( + std::ostream* stream, + const std::string& element_name, + const std::string& name, + const std::string& value) { + const std::vector& allowed_names = + GetReservedAttributesForElement(element_name); + + GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) != + allowed_names.end()) + << "Attribute " << name << " is not allowed for element <" << element_name + << ">."; + + *stream << " " << name << "=\"" << EscapeXmlAttribute(value) << "\""; +} + +// Prints an XML representation of a TestInfo object. +// TODO(wan): There is also value in printing properties with the plain printer. +void XmlUnitTestResultPrinter::OutputXmlTestInfo(::std::ostream* stream, + const char* test_case_name, + const TestInfo& test_info) { + const TestResult& result = *test_info.result(); + const std::string kTestcase = "testcase"; + + *stream << " \n"; + } + const string location = internal::FormatCompilerIndependentFileLocation( + part.file_name(), part.line_number()); + const string summary = location + "\n" + part.summary(); + *stream << " "; + const string detail = location + "\n" + part.message(); + OutputXmlCDataSection(stream, RemoveInvalidXmlCharacters(detail).c_str()); + *stream << "\n"; + } + } + + if (failures == 0) + *stream << " />\n"; + else + *stream << " \n"; +} + +// Prints an XML representation of a TestCase object +void XmlUnitTestResultPrinter::PrintXmlTestCase(std::ostream* stream, + const TestCase& test_case) { + const std::string kTestsuite = "testsuite"; + *stream << " <" << kTestsuite; + OutputXmlAttribute(stream, kTestsuite, "name", test_case.name()); + OutputXmlAttribute(stream, kTestsuite, "tests", + StreamableToString(test_case.reportable_test_count())); + OutputXmlAttribute(stream, kTestsuite, "failures", + StreamableToString(test_case.failed_test_count())); + OutputXmlAttribute( + stream, kTestsuite, "disabled", + StreamableToString(test_case.reportable_disabled_test_count())); + OutputXmlAttribute(stream, kTestsuite, "errors", "0"); + OutputXmlAttribute(stream, kTestsuite, "time", + FormatTimeInMillisAsSeconds(test_case.elapsed_time())); + *stream << TestPropertiesAsXmlAttributes(test_case.ad_hoc_test_result()) + << ">\n"; + + for (int i = 0; i < test_case.total_test_count(); ++i) { + if (test_case.GetTestInfo(i)->is_reportable()) + OutputXmlTestInfo(stream, test_case.name(), *test_case.GetTestInfo(i)); + } + *stream << " \n"; +} + +// Prints an XML summary of unit_test to output stream out. +void XmlUnitTestResultPrinter::PrintXmlUnitTest(std::ostream* stream, + const UnitTest& unit_test) { + const std::string kTestsuites = "testsuites"; + + *stream << "\n"; + *stream << "<" << kTestsuites; + + OutputXmlAttribute(stream, kTestsuites, "tests", + StreamableToString(unit_test.reportable_test_count())); + OutputXmlAttribute(stream, kTestsuites, "failures", + StreamableToString(unit_test.failed_test_count())); + OutputXmlAttribute( + stream, kTestsuites, "disabled", + StreamableToString(unit_test.reportable_disabled_test_count())); + OutputXmlAttribute(stream, kTestsuites, "errors", "0"); + OutputXmlAttribute( + stream, kTestsuites, "timestamp", + FormatEpochTimeInMillisAsIso8601(unit_test.start_timestamp())); + OutputXmlAttribute(stream, kTestsuites, "time", + FormatTimeInMillisAsSeconds(unit_test.elapsed_time())); + + if (GTEST_FLAG(shuffle)) { + OutputXmlAttribute(stream, kTestsuites, "random_seed", + StreamableToString(unit_test.random_seed())); + } + + *stream << TestPropertiesAsXmlAttributes(unit_test.ad_hoc_test_result()); + + OutputXmlAttribute(stream, kTestsuites, "name", "AllTests"); + *stream << ">\n"; + + for (int i = 0; i < unit_test.total_test_case_count(); ++i) { + if (unit_test.GetTestCase(i)->reportable_test_count() > 0) + PrintXmlTestCase(stream, *unit_test.GetTestCase(i)); + } + *stream << "\n"; +} + +// Produces a string representing the test properties in a result as space +// delimited XML attributes based on the property key="value" pairs. +std::string XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( + const TestResult& result) { + Message attributes; + for (int i = 0; i < result.test_property_count(); ++i) { + const TestProperty& property = result.GetTestProperty(i); + attributes << " " << property.key() << "=" + << "\"" << EscapeXmlAttribute(property.value()) << "\""; + } + return attributes.GetString(); +} + +// End XmlUnitTestResultPrinter + +#if GTEST_CAN_STREAM_RESULTS_ + +// Checks if str contains '=', '&', '%' or '\n' characters. If yes, +// replaces them by "%xx" where xx is their hexadecimal value. For +// example, replaces "=" with "%3D". This algorithm is O(strlen(str)) +// in both time and space -- important as the input str may contain an +// arbitrarily long test failure message and stack trace. +string StreamingListener::UrlEncode(const char* str) { + string result; + result.reserve(strlen(str) + 1); + for (char ch = *str; ch != '\0'; ch = *++str) { + switch (ch) { + case '%': + case '=': + case '&': + case '\n': + result.append("%" + String::FormatByte(static_cast(ch))); + break; + default: + result.push_back(ch); + break; + } + } + return result; +} + +void StreamingListener::SocketWriter::MakeConnection() { + GTEST_CHECK_(sockfd_ == -1) + << "MakeConnection() can't be called when there is already a connection."; + + addrinfo hints; + memset(&hints, 0, sizeof(hints)); + hints.ai_family = AF_UNSPEC; // To allow both IPv4 and IPv6 addresses. + hints.ai_socktype = SOCK_STREAM; + addrinfo* servinfo = NULL; + + // Use the getaddrinfo() to get a linked list of IP addresses for + // the given host name. + const int error_num = getaddrinfo( + host_name_.c_str(), port_num_.c_str(), &hints, &servinfo); + if (error_num != 0) { + GTEST_LOG_(WARNING) << "stream_result_to: getaddrinfo() failed: " + << gai_strerror(error_num); + } + + // Loop through all the results and connect to the first we can. + for (addrinfo* cur_addr = servinfo; sockfd_ == -1 && cur_addr != NULL; + cur_addr = cur_addr->ai_next) { + sockfd_ = socket( + cur_addr->ai_family, cur_addr->ai_socktype, cur_addr->ai_protocol); + if (sockfd_ != -1) { + // Connect the client socket to the server socket. + if (connect(sockfd_, cur_addr->ai_addr, cur_addr->ai_addrlen) == -1) { + close(sockfd_); + sockfd_ = -1; + } + } + } + + freeaddrinfo(servinfo); // all done with this structure + + if (sockfd_ == -1) { + GTEST_LOG_(WARNING) << "stream_result_to: failed to connect to " + << host_name_ << ":" << port_num_; + } +} + +// End of class Streaming Listener +#endif // GTEST_CAN_STREAM_RESULTS__ + +// Class ScopedTrace + +// Pushes the given source file location and message onto a per-thread +// trace stack maintained by Google Test. +ScopedTrace::ScopedTrace(const char* file, int line, const Message& message) + GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) { + TraceInfo trace; + trace.file = file; + trace.line = line; + trace.message = message.GetString(); + + UnitTest::GetInstance()->PushGTestTrace(trace); +} + +// Pops the info pushed by the c'tor. +ScopedTrace::~ScopedTrace() + GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) { + UnitTest::GetInstance()->PopGTestTrace(); +} + + +// class OsStackTraceGetter + +// Returns the current OS stack trace as an std::string. Parameters: +// +// max_depth - the maximum number of stack frames to be included +// in the trace. +// skip_count - the number of top frames to be skipped; doesn't count +// against max_depth. +// +string OsStackTraceGetter::CurrentStackTrace(int /* max_depth */, + int /* skip_count */) + GTEST_LOCK_EXCLUDED_(mutex_) { + return ""; +} + +void OsStackTraceGetter::UponLeavingGTest() + GTEST_LOCK_EXCLUDED_(mutex_) { +} + +const char* const +OsStackTraceGetter::kElidedFramesMarker = + "... " GTEST_NAME_ " internal frames ..."; + +// A helper class that creates the premature-exit file in its +// constructor and deletes the file in its destructor. +class ScopedPrematureExitFile { + public: + explicit ScopedPrematureExitFile(const char* premature_exit_filepath) + : premature_exit_filepath_(premature_exit_filepath) { + // If a path to the premature-exit file is specified... + if (premature_exit_filepath != NULL && *premature_exit_filepath != '\0') { + // create the file with a single "0" character in it. I/O + // errors are ignored as there's nothing better we can do and we + // don't want to fail the test because of this. + FILE* pfile = posix::FOpen(premature_exit_filepath, "w"); + fwrite("0", 1, 1, pfile); + fclose(pfile); + } + } + + ~ScopedPrematureExitFile() { + if (premature_exit_filepath_ != NULL && *premature_exit_filepath_ != '\0') { + remove(premature_exit_filepath_); + } + } + + private: + const char* const premature_exit_filepath_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedPrematureExitFile); +}; + +} // namespace internal + +// class TestEventListeners + +TestEventListeners::TestEventListeners() + : repeater_(new internal::TestEventRepeater()), + default_result_printer_(NULL), + default_xml_generator_(NULL) { +} + +TestEventListeners::~TestEventListeners() { delete repeater_; } + +// Returns the standard listener responsible for the default console +// output. Can be removed from the listeners list to shut down default +// console output. Note that removing this object from the listener list +// with Release transfers its ownership to the user. +void TestEventListeners::Append(TestEventListener* listener) { + repeater_->Append(listener); +} + +// Removes the given event listener from the list and returns it. It then +// becomes the caller's responsibility to delete the listener. Returns +// NULL if the listener is not found in the list. +TestEventListener* TestEventListeners::Release(TestEventListener* listener) { + if (listener == default_result_printer_) + default_result_printer_ = NULL; + else if (listener == default_xml_generator_) + default_xml_generator_ = NULL; + return repeater_->Release(listener); +} + +// Returns repeater that broadcasts the TestEventListener events to all +// subscribers. +TestEventListener* TestEventListeners::repeater() { return repeater_; } + +// Sets the default_result_printer attribute to the provided listener. +// The listener is also added to the listener list and previous +// default_result_printer is removed from it and deleted. The listener can +// also be NULL in which case it will not be added to the list. Does +// nothing if the previous and the current listener objects are the same. +void TestEventListeners::SetDefaultResultPrinter(TestEventListener* listener) { + if (default_result_printer_ != listener) { + // It is an error to pass this method a listener that is already in the + // list. + delete Release(default_result_printer_); + default_result_printer_ = listener; + if (listener != NULL) + Append(listener); + } +} + +// Sets the default_xml_generator attribute to the provided listener. The +// listener is also added to the listener list and previous +// default_xml_generator is removed from it and deleted. The listener can +// also be NULL in which case it will not be added to the list. Does +// nothing if the previous and the current listener objects are the same. +void TestEventListeners::SetDefaultXmlGenerator(TestEventListener* listener) { + if (default_xml_generator_ != listener) { + // It is an error to pass this method a listener that is already in the + // list. + delete Release(default_xml_generator_); + default_xml_generator_ = listener; + if (listener != NULL) + Append(listener); + } +} + +// Controls whether events will be forwarded by the repeater to the +// listeners in the list. +bool TestEventListeners::EventForwardingEnabled() const { + return repeater_->forwarding_enabled(); +} + +void TestEventListeners::SuppressEventForwarding() { + repeater_->set_forwarding_enabled(false); +} + +// class UnitTest + +// Gets the singleton UnitTest object. The first time this method is +// called, a UnitTest object is constructed and returned. Consecutive +// calls will return the same object. +// +// We don't protect this under mutex_ as a user is not supposed to +// call this before main() starts, from which point on the return +// value will never change. +UnitTest* UnitTest::GetInstance() { + // When compiled with MSVC 7.1 in optimized mode, destroying the + // UnitTest object upon exiting the program messes up the exit code, + // causing successful tests to appear failed. We have to use a + // different implementation in this case to bypass the compiler bug. + // This implementation makes the compiler happy, at the cost of + // leaking the UnitTest object. + + // CodeGear C++Builder insists on a public destructor for the + // default implementation. Use this implementation to keep good OO + // design with private destructor. + +#if (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) + static UnitTest* const instance = new UnitTest; + return instance; +#else + static UnitTest instance; + return &instance; +#endif // (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) +} + +// Gets the number of successful test cases. +int UnitTest::successful_test_case_count() const { + return impl()->successful_test_case_count(); +} + +// Gets the number of failed test cases. +int UnitTest::failed_test_case_count() const { + return impl()->failed_test_case_count(); +} + +// Gets the number of all test cases. +int UnitTest::total_test_case_count() const { + return impl()->total_test_case_count(); +} + +// Gets the number of all test cases that contain at least one test +// that should run. +int UnitTest::test_case_to_run_count() const { + return impl()->test_case_to_run_count(); +} + +// Gets the number of successful tests. +int UnitTest::successful_test_count() const { + return impl()->successful_test_count(); +} + +// Gets the number of failed tests. +int UnitTest::failed_test_count() const { return impl()->failed_test_count(); } + +// Gets the number of disabled tests that will be reported in the XML report. +int UnitTest::reportable_disabled_test_count() const { + return impl()->reportable_disabled_test_count(); +} + +// Gets the number of disabled tests. +int UnitTest::disabled_test_count() const { + return impl()->disabled_test_count(); +} + +// Gets the number of tests to be printed in the XML report. +int UnitTest::reportable_test_count() const { + return impl()->reportable_test_count(); +} + +// Gets the number of all tests. +int UnitTest::total_test_count() const { return impl()->total_test_count(); } + +// Gets the number of tests that should run. +int UnitTest::test_to_run_count() const { return impl()->test_to_run_count(); } + +// Gets the time of the test program start, in ms from the start of the +// UNIX epoch. +internal::TimeInMillis UnitTest::start_timestamp() const { + return impl()->start_timestamp(); +} + +// Gets the elapsed time, in milliseconds. +internal::TimeInMillis UnitTest::elapsed_time() const { + return impl()->elapsed_time(); +} + +// Returns true iff the unit test passed (i.e. all test cases passed). +bool UnitTest::Passed() const { return impl()->Passed(); } + +// Returns true iff the unit test failed (i.e. some test case failed +// or something outside of all tests failed). +bool UnitTest::Failed() const { return impl()->Failed(); } + +// Gets the i-th test case among all the test cases. i can range from 0 to +// total_test_case_count() - 1. If i is not in that range, returns NULL. +const TestCase* UnitTest::GetTestCase(int i) const { + return impl()->GetTestCase(i); +} + +// Returns the TestResult containing information on test failures and +// properties logged outside of individual test cases. +const TestResult& UnitTest::ad_hoc_test_result() const { + return *impl()->ad_hoc_test_result(); +} + +// Gets the i-th test case among all the test cases. i can range from 0 to +// total_test_case_count() - 1. If i is not in that range, returns NULL. +TestCase* UnitTest::GetMutableTestCase(int i) { + return impl()->GetMutableTestCase(i); +} + +// Returns the list of event listeners that can be used to track events +// inside Google Test. +TestEventListeners& UnitTest::listeners() { + return *impl()->listeners(); +} + +// Registers and returns a global test environment. When a test +// program is run, all global test environments will be set-up in the +// order they were registered. After all tests in the program have +// finished, all global test environments will be torn-down in the +// *reverse* order they were registered. +// +// The UnitTest object takes ownership of the given environment. +// +// We don't protect this under mutex_, as we only support calling it +// from the main thread. +Environment* UnitTest::AddEnvironment(Environment* env) { + if (env == NULL) { + return NULL; + } + + impl_->environments().push_back(env); + return env; +} + +// Adds a TestPartResult to the current TestResult object. All Google Test +// assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) eventually call +// this to report their results. The user code should use the +// assertion macros instead of calling this directly. +void UnitTest::AddTestPartResult( + TestPartResult::Type result_type, + const char* file_name, + int line_number, + const std::string& message, + const std::string& os_stack_trace) GTEST_LOCK_EXCLUDED_(mutex_) { + Message msg; + msg << message; + + internal::MutexLock lock(&mutex_); + if (impl_->gtest_trace_stack().size() > 0) { + msg << "\n" << GTEST_NAME_ << " trace:"; + + for (int i = static_cast(impl_->gtest_trace_stack().size()); + i > 0; --i) { + const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1]; + msg << "\n" << internal::FormatFileLocation(trace.file, trace.line) + << " " << trace.message; + } + } + + if (os_stack_trace.c_str() != NULL && !os_stack_trace.empty()) { + msg << internal::kStackTraceMarker << os_stack_trace; + } + + const TestPartResult result = + TestPartResult(result_type, file_name, line_number, + msg.GetString().c_str()); + impl_->GetTestPartResultReporterForCurrentThread()-> + ReportTestPartResult(result); + + if (result_type != TestPartResult::kSuccess) { + // gtest_break_on_failure takes precedence over + // gtest_throw_on_failure. This allows a user to set the latter + // in the code (perhaps in order to use Google Test assertions + // with another testing framework) and specify the former on the + // command line for debugging. + if (GTEST_FLAG(break_on_failure)) { +#if GTEST_OS_WINDOWS + // Using DebugBreak on Windows allows gtest to still break into a debugger + // when a failure happens and both the --gtest_break_on_failure and + // the --gtest_catch_exceptions flags are specified. + DebugBreak(); +#else + // Dereference NULL through a volatile pointer to prevent the compiler + // from removing. We use this rather than abort() or __builtin_trap() for + // portability: Symbian doesn't implement abort() well, and some debuggers + // don't correctly trap abort(). + *static_cast(NULL) = 1; +#endif // GTEST_OS_WINDOWS + } else if (GTEST_FLAG(throw_on_failure)) { +#if GTEST_HAS_EXCEPTIONS + throw internal::GoogleTestFailureException(result); +#else + // We cannot call abort() as it generates a pop-up in debug mode + // that cannot be suppressed in VC 7.1 or below. + exit(1); +#endif + } + } +} + +// Adds a TestProperty to the current TestResult object when invoked from +// inside a test, to current TestCase's ad_hoc_test_result_ when invoked +// from SetUpTestCase or TearDownTestCase, or to the global property set +// when invoked elsewhere. If the result already contains a property with +// the same key, the value will be updated. +void UnitTest::RecordProperty(const std::string& key, + const std::string& value) { + impl_->RecordProperty(TestProperty(key, value)); +} + +// Runs all tests in this UnitTest object and prints the result. +// Returns 0 if successful, or 1 otherwise. +// +// We don't protect this under mutex_, as we only support calling it +// from the main thread. +int UnitTest::Run() { + const bool in_death_test_child_process = + internal::GTEST_FLAG(internal_run_death_test).length() > 0; + + // Google Test implements this protocol for catching that a test + // program exits before returning control to Google Test: + // + // 1. Upon start, Google Test creates a file whose absolute path + // is specified by the environment variable + // TEST_PREMATURE_EXIT_FILE. + // 2. When Google Test has finished its work, it deletes the file. + // + // This allows a test runner to set TEST_PREMATURE_EXIT_FILE before + // running a Google-Test-based test program and check the existence + // of the file at the end of the test execution to see if it has + // exited prematurely. + + // If we are in the child process of a death test, don't + // create/delete the premature exit file, as doing so is unnecessary + // and will confuse the parent process. Otherwise, create/delete + // the file upon entering/leaving this function. If the program + // somehow exits before this function has a chance to return, the + // premature-exit file will be left undeleted, causing a test runner + // that understands the premature-exit-file protocol to report the + // test as having failed. + const internal::ScopedPrematureExitFile premature_exit_file( + in_death_test_child_process ? + NULL : internal::posix::GetEnv("TEST_PREMATURE_EXIT_FILE")); + + // Captures the value of GTEST_FLAG(catch_exceptions). This value will be + // used for the duration of the program. + impl()->set_catch_exceptions(GTEST_FLAG(catch_exceptions)); + +#if GTEST_HAS_SEH + // Either the user wants Google Test to catch exceptions thrown by the + // tests or this is executing in the context of death test child + // process. In either case the user does not want to see pop-up dialogs + // about crashes - they are expected. + if (impl()->catch_exceptions() || in_death_test_child_process) { +# if !GTEST_OS_WINDOWS_MOBILE + // SetErrorMode doesn't exist on CE. + SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOALIGNMENTFAULTEXCEPT | + SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX); +# endif // !GTEST_OS_WINDOWS_MOBILE + +# if (defined(_MSC_VER) || GTEST_OS_WINDOWS_MINGW) && !GTEST_OS_WINDOWS_MOBILE + // Death test children can be terminated with _abort(). On Windows, + // _abort() can show a dialog with a warning message. This forces the + // abort message to go to stderr instead. + _set_error_mode(_OUT_TO_STDERR); +# endif + +# if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE + // In the debug version, Visual Studio pops up a separate dialog + // offering a choice to debug the aborted program. We need to suppress + // this dialog or it will pop up for every EXPECT/ASSERT_DEATH statement + // executed. Google Test will notify the user of any unexpected + // failure via stderr. + // + // VC++ doesn't define _set_abort_behavior() prior to the version 8.0. + // Users of prior VC versions shall suffer the agony and pain of + // clicking through the countless debug dialogs. + // TODO(vladl@google.com): find a way to suppress the abort dialog() in the + // debug mode when compiled with VC 7.1 or lower. + if (!GTEST_FLAG(break_on_failure)) + _set_abort_behavior( + 0x0, // Clear the following flags: + _WRITE_ABORT_MSG | _CALL_REPORTFAULT); // pop-up window, core dump. +# endif + } +#endif // GTEST_HAS_SEH + + return internal::HandleExceptionsInMethodIfSupported( + impl(), + &internal::UnitTestImpl::RunAllTests, + "auxiliary test code (environments or event listeners)") ? 0 : 1; +} + +// Returns the working directory when the first TEST() or TEST_F() was +// executed. +const char* UnitTest::original_working_dir() const { + return impl_->original_working_dir_.c_str(); +} + +// Returns the TestCase object for the test that's currently running, +// or NULL if no test is running. +const TestCase* UnitTest::current_test_case() const + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + return impl_->current_test_case(); +} + +// Returns the TestInfo object for the test that's currently running, +// or NULL if no test is running. +const TestInfo* UnitTest::current_test_info() const + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + return impl_->current_test_info(); +} + +// Returns the random seed used at the start of the current test run. +int UnitTest::random_seed() const { return impl_->random_seed(); } + +#if GTEST_HAS_PARAM_TEST +// Returns ParameterizedTestCaseRegistry object used to keep track of +// value-parameterized tests and instantiate and register them. +internal::ParameterizedTestCaseRegistry& + UnitTest::parameterized_test_registry() + GTEST_LOCK_EXCLUDED_(mutex_) { + return impl_->parameterized_test_registry(); +} +#endif // GTEST_HAS_PARAM_TEST + +// Creates an empty UnitTest. +UnitTest::UnitTest() { + impl_ = new internal::UnitTestImpl(this); +} + +// Destructor of UnitTest. +UnitTest::~UnitTest() { + delete impl_; +} + +// Pushes a trace defined by SCOPED_TRACE() on to the per-thread +// Google Test trace stack. +void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + impl_->gtest_trace_stack().push_back(trace); +} + +// Pops a trace from the per-thread Google Test trace stack. +void UnitTest::PopGTestTrace() + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + impl_->gtest_trace_stack().pop_back(); +} + +namespace internal { + +UnitTestImpl::UnitTestImpl(UnitTest* parent) + : parent_(parent), +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4355) // Temporarily disables warning 4355 + // (using this in initializer). + default_global_test_part_result_reporter_(this), + default_per_thread_test_part_result_reporter_(this), +# pragma warning(pop) // Restores the warning state again. +#else + default_global_test_part_result_reporter_(this), + default_per_thread_test_part_result_reporter_(this), +#endif // _MSC_VER + global_test_part_result_repoter_( + &default_global_test_part_result_reporter_), + per_thread_test_part_result_reporter_( + &default_per_thread_test_part_result_reporter_), +#if GTEST_HAS_PARAM_TEST + parameterized_test_registry_(), + parameterized_tests_registered_(false), +#endif // GTEST_HAS_PARAM_TEST + last_death_test_case_(-1), + current_test_case_(NULL), + current_test_info_(NULL), + ad_hoc_test_result_(), + os_stack_trace_getter_(NULL), + post_flag_parse_init_performed_(false), + random_seed_(0), // Will be overridden by the flag before first use. + random_(0), // Will be reseeded before first use. + start_timestamp_(0), + elapsed_time_(0), +#if GTEST_HAS_DEATH_TEST + death_test_factory_(new DefaultDeathTestFactory), +#endif + // Will be overridden by the flag before first use. + catch_exceptions_(false) { + listeners()->SetDefaultResultPrinter(new PrettyUnitTestResultPrinter); +} + +UnitTestImpl::~UnitTestImpl() { + // Deletes every TestCase. + ForEach(test_cases_, internal::Delete); + + // Deletes every Environment. + ForEach(environments_, internal::Delete); + + delete os_stack_trace_getter_; +} + +// Adds a TestProperty to the current TestResult object when invoked in a +// context of a test, to current test case's ad_hoc_test_result when invoke +// from SetUpTestCase/TearDownTestCase, or to the global property set +// otherwise. If the result already contains a property with the same key, +// the value will be updated. +void UnitTestImpl::RecordProperty(const TestProperty& test_property) { + std::string xml_element; + TestResult* test_result; // TestResult appropriate for property recording. + + if (current_test_info_ != NULL) { + xml_element = "testcase"; + test_result = &(current_test_info_->result_); + } else if (current_test_case_ != NULL) { + xml_element = "testsuite"; + test_result = &(current_test_case_->ad_hoc_test_result_); + } else { + xml_element = "testsuites"; + test_result = &ad_hoc_test_result_; + } + test_result->RecordProperty(xml_element, test_property); +} + +#if GTEST_HAS_DEATH_TEST +// Disables event forwarding if the control is currently in a death test +// subprocess. Must not be called before InitGoogleTest. +void UnitTestImpl::SuppressTestEventsIfInSubprocess() { + if (internal_run_death_test_flag_.get() != NULL) + listeners()->SuppressEventForwarding(); +} +#endif // GTEST_HAS_DEATH_TEST + +// Initializes event listeners performing XML output as specified by +// UnitTestOptions. Must not be called before InitGoogleTest. +void UnitTestImpl::ConfigureXmlOutput() { + const std::string& output_format = UnitTestOptions::GetOutputFormat(); + if (output_format == "xml") { + listeners()->SetDefaultXmlGenerator(new XmlUnitTestResultPrinter( + UnitTestOptions::GetAbsolutePathToOutputFile().c_str())); + } else if (output_format != "") { + printf("WARNING: unrecognized output format \"%s\" ignored.\n", + output_format.c_str()); + fflush(stdout); + } +} + +#if GTEST_CAN_STREAM_RESULTS_ +// Initializes event listeners for streaming test results in string form. +// Must not be called before InitGoogleTest. +void UnitTestImpl::ConfigureStreamingOutput() { + const std::string& target = GTEST_FLAG(stream_result_to); + if (!target.empty()) { + const size_t pos = target.find(':'); + if (pos != std::string::npos) { + listeners()->Append(new StreamingListener(target.substr(0, pos), + target.substr(pos+1))); + } else { + printf("WARNING: unrecognized streaming target \"%s\" ignored.\n", + target.c_str()); + fflush(stdout); + } + } +} +#endif // GTEST_CAN_STREAM_RESULTS_ + +// Performs initialization dependent upon flag values obtained in +// ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to +// ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest +// this function is also called from RunAllTests. Since this function can be +// called more than once, it has to be idempotent. +void UnitTestImpl::PostFlagParsingInit() { + // Ensures that this function does not execute more than once. + if (!post_flag_parse_init_performed_) { + post_flag_parse_init_performed_ = true; + +#if GTEST_HAS_DEATH_TEST + InitDeathTestSubprocessControlInfo(); + SuppressTestEventsIfInSubprocess(); +#endif // GTEST_HAS_DEATH_TEST + + // Registers parameterized tests. This makes parameterized tests + // available to the UnitTest reflection API without running + // RUN_ALL_TESTS. + RegisterParameterizedTests(); + + // Configures listeners for XML output. This makes it possible for users + // to shut down the default XML output before invoking RUN_ALL_TESTS. + ConfigureXmlOutput(); + +#if GTEST_CAN_STREAM_RESULTS_ + // Configures listeners for streaming test results to the specified server. + ConfigureStreamingOutput(); +#endif // GTEST_CAN_STREAM_RESULTS_ + } +} + +// A predicate that checks the name of a TestCase against a known +// value. +// +// This is used for implementation of the UnitTest class only. We put +// it in the anonymous namespace to prevent polluting the outer +// namespace. +// +// TestCaseNameIs is copyable. +class TestCaseNameIs { + public: + // Constructor. + explicit TestCaseNameIs(const std::string& name) + : name_(name) {} + + // Returns true iff the name of test_case matches name_. + bool operator()(const TestCase* test_case) const { + return test_case != NULL && strcmp(test_case->name(), name_.c_str()) == 0; + } + + private: + std::string name_; +}; + +// Finds and returns a TestCase with the given name. If one doesn't +// exist, creates one and returns it. It's the CALLER'S +// RESPONSIBILITY to ensure that this function is only called WHEN THE +// TESTS ARE NOT SHUFFLED. +// +// Arguments: +// +// test_case_name: name of the test case +// type_param: the name of the test case's type parameter, or NULL if +// this is not a typed or a type-parameterized test case. +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, + const char* type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc) { + // Can we find a TestCase with the given name? + const std::vector::const_iterator test_case = + std::find_if(test_cases_.begin(), test_cases_.end(), + TestCaseNameIs(test_case_name)); + + if (test_case != test_cases_.end()) + return *test_case; + + // No. Let's create one. + TestCase* const new_test_case = + new TestCase(test_case_name, type_param, set_up_tc, tear_down_tc); + + // Is this a death test case? + if (internal::UnitTestOptions::MatchesFilter(test_case_name, + kDeathTestCaseFilter)) { + // Yes. Inserts the test case after the last death test case + // defined so far. This only works when the test cases haven't + // been shuffled. Otherwise we may end up running a death test + // after a non-death test. + ++last_death_test_case_; + test_cases_.insert(test_cases_.begin() + last_death_test_case_, + new_test_case); + } else { + // No. Appends to the end of the list. + test_cases_.push_back(new_test_case); + } + + test_case_indices_.push_back(static_cast(test_case_indices_.size())); + return new_test_case; +} + +// Helpers for setting up / tearing down the given environment. They +// are for use in the ForEach() function. +static void SetUpEnvironment(Environment* env) { env->SetUp(); } +static void TearDownEnvironment(Environment* env) { env->TearDown(); } + +// Runs all tests in this UnitTest object, prints the result, and +// returns true if all tests are successful. If any exception is +// thrown during a test, the test is considered to be failed, but the +// rest of the tests will still be run. +// +// When parameterized tests are enabled, it expands and registers +// parameterized tests first in RegisterParameterizedTests(). +// All other functions called from RunAllTests() may safely assume that +// parameterized tests are ready to be counted and run. +bool UnitTestImpl::RunAllTests() { + // Makes sure InitGoogleTest() was called. + if (!GTestIsInitialized()) { + printf("%s", + "\nThis test program did NOT call ::testing::InitGoogleTest " + "before calling RUN_ALL_TESTS(). Please fix it.\n"); + return false; + } + + // Do not run any test if the --help flag was specified. + if (g_help_flag) + return true; + + // Repeats the call to the post-flag parsing initialization in case the + // user didn't call InitGoogleTest. + PostFlagParsingInit(); + + // Even if sharding is not on, test runners may want to use the + // GTEST_SHARD_STATUS_FILE to query whether the test supports the sharding + // protocol. + internal::WriteToShardStatusFileIfNeeded(); + + // True iff we are in a subprocess for running a thread-safe-style + // death test. + bool in_subprocess_for_death_test = false; + +#if GTEST_HAS_DEATH_TEST + in_subprocess_for_death_test = (internal_run_death_test_flag_.get() != NULL); +#endif // GTEST_HAS_DEATH_TEST + + const bool should_shard = ShouldShard(kTestTotalShards, kTestShardIndex, + in_subprocess_for_death_test); + + // Compares the full test names with the filter to decide which + // tests to run. + const bool has_tests_to_run = FilterTests(should_shard + ? HONOR_SHARDING_PROTOCOL + : IGNORE_SHARDING_PROTOCOL) > 0; + + // Lists the tests and exits if the --gtest_list_tests flag was specified. + if (GTEST_FLAG(list_tests)) { + // This must be called *after* FilterTests() has been called. + ListTestsMatchingFilter(); + return true; + } + + random_seed_ = GTEST_FLAG(shuffle) ? + GetRandomSeedFromFlag(GTEST_FLAG(random_seed)) : 0; + + // True iff at least one test has failed. + bool failed = false; + + TestEventListener* repeater = listeners()->repeater(); + + start_timestamp_ = GetTimeInMillis(); + repeater->OnTestProgramStart(*parent_); + + // How many times to repeat the tests? We don't want to repeat them + // when we are inside the subprocess of a death test. + const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); + // Repeats forever if the repeat count is negative. + const bool forever = repeat < 0; + for (int i = 0; forever || i != repeat; i++) { + // We want to preserve failures generated by ad-hoc test + // assertions executed before RUN_ALL_TESTS(). + ClearNonAdHocTestResult(); + + const TimeInMillis start = GetTimeInMillis(); + + // Shuffles test cases and tests if requested. + if (has_tests_to_run && GTEST_FLAG(shuffle)) { + random()->Reseed(random_seed_); + // This should be done before calling OnTestIterationStart(), + // such that a test event listener can see the actual test order + // in the event. + ShuffleTests(); + } + + // Tells the unit test event listeners that the tests are about to start. + repeater->OnTestIterationStart(*parent_, i); + + // Runs each test case if there is at least one test to run. + if (has_tests_to_run) { + // Sets up all environments beforehand. + repeater->OnEnvironmentsSetUpStart(*parent_); + ForEach(environments_, SetUpEnvironment); + repeater->OnEnvironmentsSetUpEnd(*parent_); + + // Runs the tests only if there was no fatal failure during global + // set-up. + if (!Test::HasFatalFailure()) { + for (int test_index = 0; test_index < total_test_case_count(); + test_index++) { + GetMutableTestCase(test_index)->Run(); + } + } + + // Tears down all environments in reverse order afterwards. + repeater->OnEnvironmentsTearDownStart(*parent_); + std::for_each(environments_.rbegin(), environments_.rend(), + TearDownEnvironment); + repeater->OnEnvironmentsTearDownEnd(*parent_); + } + + elapsed_time_ = GetTimeInMillis() - start; + + // Tells the unit test event listener that the tests have just finished. + repeater->OnTestIterationEnd(*parent_, i); + + // Gets the result and clears it. + if (!Passed()) { + failed = true; + } + + // Restores the original test order after the iteration. This + // allows the user to quickly repro a failure that happens in the + // N-th iteration without repeating the first (N - 1) iterations. + // This is not enclosed in "if (GTEST_FLAG(shuffle)) { ... }", in + // case the user somehow changes the value of the flag somewhere + // (it's always safe to unshuffle the tests). + UnshuffleTests(); + + if (GTEST_FLAG(shuffle)) { + // Picks a new random seed for each iteration. + random_seed_ = GetNextRandomSeed(random_seed_); + } + } + + repeater->OnTestProgramEnd(*parent_); + + return !failed; +} + +// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file +// if the variable is present. If a file already exists at this location, this +// function will write over it. If the variable is present, but the file cannot +// be created, prints an error and exits. +void WriteToShardStatusFileIfNeeded() { + const char* const test_shard_file = posix::GetEnv(kTestShardStatusFile); + if (test_shard_file != NULL) { + FILE* const file = posix::FOpen(test_shard_file, "w"); + if (file == NULL) { + ColoredPrintf(COLOR_RED, + "Could not write to the test shard status file \"%s\" " + "specified by the %s environment variable.\n", + test_shard_file, kTestShardStatusFile); + fflush(stdout); + exit(EXIT_FAILURE); + } + fclose(file); + } +} + +// Checks whether sharding is enabled by examining the relevant +// environment variable values. If the variables are present, +// but inconsistent (i.e., shard_index >= total_shards), prints +// an error and exits. If in_subprocess_for_death_test, sharding is +// disabled because it must only be applied to the original test +// process. Otherwise, we could filter out death tests we intended to execute. +bool ShouldShard(const char* total_shards_env, + const char* shard_index_env, + bool in_subprocess_for_death_test) { + if (in_subprocess_for_death_test) { + return false; + } + + const Int32 total_shards = Int32FromEnvOrDie(total_shards_env, -1); + const Int32 shard_index = Int32FromEnvOrDie(shard_index_env, -1); + + if (total_shards == -1 && shard_index == -1) { + return false; + } else if (total_shards == -1 && shard_index != -1) { + const Message msg = Message() + << "Invalid environment variables: you have " + << kTestShardIndex << " = " << shard_index + << ", but have left " << kTestTotalShards << " unset.\n"; + ColoredPrintf(COLOR_RED, msg.GetString().c_str()); + fflush(stdout); + exit(EXIT_FAILURE); + } else if (total_shards != -1 && shard_index == -1) { + const Message msg = Message() + << "Invalid environment variables: you have " + << kTestTotalShards << " = " << total_shards + << ", but have left " << kTestShardIndex << " unset.\n"; + ColoredPrintf(COLOR_RED, msg.GetString().c_str()); + fflush(stdout); + exit(EXIT_FAILURE); + } else if (shard_index < 0 || shard_index >= total_shards) { + const Message msg = Message() + << "Invalid environment variables: we require 0 <= " + << kTestShardIndex << " < " << kTestTotalShards + << ", but you have " << kTestShardIndex << "=" << shard_index + << ", " << kTestTotalShards << "=" << total_shards << ".\n"; + ColoredPrintf(COLOR_RED, msg.GetString().c_str()); + fflush(stdout); + exit(EXIT_FAILURE); + } + + return total_shards > 1; +} + +// Parses the environment variable var as an Int32. If it is unset, +// returns default_val. If it is not an Int32, prints an error +// and aborts. +Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { + const char* str_val = posix::GetEnv(var); + if (str_val == NULL) { + return default_val; + } + + Int32 result; + if (!ParseInt32(Message() << "The value of environment variable " << var, + str_val, &result)) { + exit(EXIT_FAILURE); + } + return result; +} + +// Given the total number of shards, the shard index, and the test id, +// returns true iff the test should be run on this shard. The test id is +// some arbitrary but unique non-negative integer assigned to each test +// method. Assumes that 0 <= shard_index < total_shards. +bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_id) { + return (test_id % total_shards) == shard_index; +} + +// Compares the name of each test with the user-specified filter to +// decide whether the test should be run, then records the result in +// each TestCase and TestInfo object. +// If shard_tests == true, further filters tests based on sharding +// variables in the environment - see +// http://code.google.com/p/googletest/wiki/GoogleTestAdvancedGuide. +// Returns the number of tests that should run. +int UnitTestImpl::FilterTests(ReactionToSharding shard_tests) { + const Int32 total_shards = shard_tests == HONOR_SHARDING_PROTOCOL ? + Int32FromEnvOrDie(kTestTotalShards, -1) : -1; + const Int32 shard_index = shard_tests == HONOR_SHARDING_PROTOCOL ? + Int32FromEnvOrDie(kTestShardIndex, -1) : -1; + + // num_runnable_tests are the number of tests that will + // run across all shards (i.e., match filter and are not disabled). + // num_selected_tests are the number of tests to be run on + // this shard. + int num_runnable_tests = 0; + int num_selected_tests = 0; + for (size_t i = 0; i < test_cases_.size(); i++) { + TestCase* const test_case = test_cases_[i]; + const std::string &test_case_name = test_case->name(); + test_case->set_should_run(false); + + for (size_t j = 0; j < test_case->test_info_list().size(); j++) { + TestInfo* const test_info = test_case->test_info_list()[j]; + const std::string test_name(test_info->name()); + // A test is disabled if test case name or test name matches + // kDisableTestFilter. + const bool is_disabled = + internal::UnitTestOptions::MatchesFilter(test_case_name, + kDisableTestFilter) || + internal::UnitTestOptions::MatchesFilter(test_name, + kDisableTestFilter); + test_info->is_disabled_ = is_disabled; + + const bool matches_filter = + internal::UnitTestOptions::FilterMatchesTest(test_case_name, + test_name); + test_info->matches_filter_ = matches_filter; + + const bool is_runnable = + (GTEST_FLAG(also_run_disabled_tests) || !is_disabled) && + matches_filter; + + const bool is_selected = is_runnable && + (shard_tests == IGNORE_SHARDING_PROTOCOL || + ShouldRunTestOnShard(total_shards, shard_index, + num_runnable_tests)); + + num_runnable_tests += is_runnable; + num_selected_tests += is_selected; + + test_info->should_run_ = is_selected; + test_case->set_should_run(test_case->should_run() || is_selected); + } + } + return num_selected_tests; +} + +// Prints the given C-string on a single line by replacing all '\n' +// characters with string "\\n". If the output takes more than +// max_length characters, only prints the first max_length characters +// and "...". +static void PrintOnOneLine(const char* str, int max_length) { + if (str != NULL) { + for (int i = 0; *str != '\0'; ++str) { + if (i >= max_length) { + printf("..."); + break; + } + if (*str == '\n') { + printf("\\n"); + i += 2; + } else { + printf("%c", *str); + ++i; + } + } + } +} + +// Prints the names of the tests matching the user-specified filter flag. +void UnitTestImpl::ListTestsMatchingFilter() { + // Print at most this many characters for each type/value parameter. + const int kMaxParamLength = 250; + + for (size_t i = 0; i < test_cases_.size(); i++) { + const TestCase* const test_case = test_cases_[i]; + bool printed_test_case_name = false; + + for (size_t j = 0; j < test_case->test_info_list().size(); j++) { + const TestInfo* const test_info = + test_case->test_info_list()[j]; + if (test_info->matches_filter_) { + if (!printed_test_case_name) { + printed_test_case_name = true; + printf("%s.", test_case->name()); + if (test_case->type_param() != NULL) { + printf(" # %s = ", kTypeParamLabel); + // We print the type parameter on a single line to make + // the output easy to parse by a program. + PrintOnOneLine(test_case->type_param(), kMaxParamLength); + } + printf("\n"); + } + printf(" %s", test_info->name()); + if (test_info->value_param() != NULL) { + printf(" # %s = ", kValueParamLabel); + // We print the value parameter on a single line to make the + // output easy to parse by a program. + PrintOnOneLine(test_info->value_param(), kMaxParamLength); + } + printf("\n"); + } + } + } + fflush(stdout); +} + +// Sets the OS stack trace getter. +// +// Does nothing if the input and the current OS stack trace getter are +// the same; otherwise, deletes the old getter and makes the input the +// current getter. +void UnitTestImpl::set_os_stack_trace_getter( + OsStackTraceGetterInterface* getter) { + if (os_stack_trace_getter_ != getter) { + delete os_stack_trace_getter_; + os_stack_trace_getter_ = getter; + } +} + +// Returns the current OS stack trace getter if it is not NULL; +// otherwise, creates an OsStackTraceGetter, makes it the current +// getter, and returns it. +OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { + if (os_stack_trace_getter_ == NULL) { + os_stack_trace_getter_ = new OsStackTraceGetter; + } + + return os_stack_trace_getter_; +} + +// Returns the TestResult for the test that's currently running, or +// the TestResult for the ad hoc test if no test is running. +TestResult* UnitTestImpl::current_test_result() { + return current_test_info_ ? + &(current_test_info_->result_) : &ad_hoc_test_result_; +} + +// Shuffles all test cases, and the tests within each test case, +// making sure that death tests are still run first. +void UnitTestImpl::ShuffleTests() { + // Shuffles the death test cases. + ShuffleRange(random(), 0, last_death_test_case_ + 1, &test_case_indices_); + + // Shuffles the non-death test cases. + ShuffleRange(random(), last_death_test_case_ + 1, + static_cast(test_cases_.size()), &test_case_indices_); + + // Shuffles the tests inside each test case. + for (size_t i = 0; i < test_cases_.size(); i++) { + test_cases_[i]->ShuffleTests(random()); + } +} + +// Restores the test cases and tests to their order before the first shuffle. +void UnitTestImpl::UnshuffleTests() { + for (size_t i = 0; i < test_cases_.size(); i++) { + // Unshuffles the tests in each test case. + test_cases_[i]->UnshuffleTests(); + // Resets the index of each test case. + test_case_indices_[i] = static_cast(i); + } +} + +// Returns the current OS stack trace as an std::string. +// +// The maximum number of stack frames to be included is specified by +// the gtest_stack_trace_depth flag. The skip_count parameter +// specifies the number of top frames to be skipped, which doesn't +// count against the number of frames to be included. +// +// For example, if Foo() calls Bar(), which in turn calls +// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in +// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. +std::string GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, + int skip_count) { + // We pass skip_count + 1 to skip this wrapper function in addition + // to what the user really wants to skip. + return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1); +} + +// Used by the GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_ macro to +// suppress unreachable code warnings. +namespace { +class ClassUniqueToAlwaysTrue {}; +} + +bool IsTrue(bool condition) { return condition; } + +bool AlwaysTrue() { +#if GTEST_HAS_EXCEPTIONS + // This condition is always false so AlwaysTrue() never actually throws, + // but it makes the compiler think that it may throw. + if (IsTrue(false)) + throw ClassUniqueToAlwaysTrue(); +#endif // GTEST_HAS_EXCEPTIONS + return true; +} + +// If *pstr starts with the given prefix, modifies *pstr to be right +// past the prefix and returns true; otherwise leaves *pstr unchanged +// and returns false. None of pstr, *pstr, and prefix can be NULL. +bool SkipPrefix(const char* prefix, const char** pstr) { + const size_t prefix_len = strlen(prefix); + if (strncmp(*pstr, prefix, prefix_len) == 0) { + *pstr += prefix_len; + return true; + } + return false; +} + +// Parses a string as a command line flag. The string should have +// the format "--flag=value". When def_optional is true, the "=value" +// part can be omitted. +// +// Returns the value of the flag, or NULL if the parsing failed. +const char* ParseFlagValue(const char* str, + const char* flag, + bool def_optional) { + // str and flag must not be NULL. + if (str == NULL || flag == NULL) return NULL; + + // The flag must start with "--" followed by GTEST_FLAG_PREFIX_. + const std::string flag_str = std::string("--") + GTEST_FLAG_PREFIX_ + flag; + const size_t flag_len = flag_str.length(); + if (strncmp(str, flag_str.c_str(), flag_len) != 0) return NULL; + + // Skips the flag name. + const char* flag_end = str + flag_len; + + // When def_optional is true, it's OK to not have a "=value" part. + if (def_optional && (flag_end[0] == '\0')) { + return flag_end; + } + + // If def_optional is true and there are more characters after the + // flag name, or if def_optional is false, there must be a '=' after + // the flag name. + if (flag_end[0] != '=') return NULL; + + // Returns the string after "=". + return flag_end + 1; +} + +// Parses a string for a bool flag, in the form of either +// "--flag=value" or "--flag". +// +// In the former case, the value is taken as true as long as it does +// not start with '0', 'f', or 'F'. +// +// In the latter case, the value is taken as true. +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +bool ParseBoolFlag(const char* str, const char* flag, bool* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseFlagValue(str, flag, true); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Converts the string value to a bool. + *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F'); + return true; +} + +// Parses a string for an Int32 flag, in the form of +// "--flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseFlagValue(str, flag, false); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Sets *value to the value of the flag. + return ParseInt32(Message() << "The value of flag --" << flag, + value_str, value); +} + +// Parses a string for a string flag, in the form of +// "--flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +bool ParseStringFlag(const char* str, const char* flag, std::string* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseFlagValue(str, flag, false); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Sets *value to the value of the flag. + *value = value_str; + return true; +} + +// Determines whether a string has a prefix that Google Test uses for its +// flags, i.e., starts with GTEST_FLAG_PREFIX_ or GTEST_FLAG_PREFIX_DASH_. +// If Google Test detects that a command line flag has its prefix but is not +// recognized, it will print its help message. Flags starting with +// GTEST_INTERNAL_PREFIX_ followed by "internal_" are considered Google Test +// internal flags and do not trigger the help message. +static bool HasGoogleTestFlagPrefix(const char* str) { + return (SkipPrefix("--", &str) || + SkipPrefix("-", &str) || + SkipPrefix("/", &str)) && + !SkipPrefix(GTEST_FLAG_PREFIX_ "internal_", &str) && + (SkipPrefix(GTEST_FLAG_PREFIX_, &str) || + SkipPrefix(GTEST_FLAG_PREFIX_DASH_, &str)); +} + +// Prints a string containing code-encoded text. The following escape +// sequences can be used in the string to control the text color: +// +// @@ prints a single '@' character. +// @R changes the color to red. +// @G changes the color to green. +// @Y changes the color to yellow. +// @D changes to the default terminal text color. +// +// TODO(wan@google.com): Write tests for this once we add stdout +// capturing to Google Test. +static void PrintColorEncoded(const char* str) { + GTestColor color = COLOR_DEFAULT; // The current color. + + // Conceptually, we split the string into segments divided by escape + // sequences. Then we print one segment at a time. At the end of + // each iteration, the str pointer advances to the beginning of the + // next segment. + for (;;) { + const char* p = strchr(str, '@'); + if (p == NULL) { + ColoredPrintf(color, "%s", str); + return; + } + + ColoredPrintf(color, "%s", std::string(str, p).c_str()); + + const char ch = p[1]; + str = p + 2; + if (ch == '@') { + ColoredPrintf(color, "@"); + } else if (ch == 'D') { + color = COLOR_DEFAULT; + } else if (ch == 'R') { + color = COLOR_RED; + } else if (ch == 'G') { + color = COLOR_GREEN; + } else if (ch == 'Y') { + color = COLOR_YELLOW; + } else { + --str; + } + } +} + +static const char kColorEncodedHelpMessage[] = +"This program contains tests written using " GTEST_NAME_ ". You can use the\n" +"following command line flags to control its behavior:\n" +"\n" +"Test Selection:\n" +" @G--" GTEST_FLAG_PREFIX_ "list_tests@D\n" +" List the names of all tests instead of running them. The name of\n" +" TEST(Foo, Bar) is \"Foo.Bar\".\n" +" @G--" GTEST_FLAG_PREFIX_ "filter=@YPOSTIVE_PATTERNS" + "[@G-@YNEGATIVE_PATTERNS]@D\n" +" Run only the tests whose name matches one of the positive patterns but\n" +" none of the negative patterns. '?' matches any single character; '*'\n" +" matches any substring; ':' separates two patterns.\n" +" @G--" GTEST_FLAG_PREFIX_ "also_run_disabled_tests@D\n" +" Run all disabled tests too.\n" +"\n" +"Test Execution:\n" +" @G--" GTEST_FLAG_PREFIX_ "repeat=@Y[COUNT]@D\n" +" Run the tests repeatedly; use a negative count to repeat forever.\n" +" @G--" GTEST_FLAG_PREFIX_ "shuffle@D\n" +" Randomize tests' orders on every iteration.\n" +" @G--" GTEST_FLAG_PREFIX_ "random_seed=@Y[NUMBER]@D\n" +" Random number seed to use for shuffling test orders (between 1 and\n" +" 99999, or 0 to use a seed based on the current time).\n" +"\n" +"Test Output:\n" +" @G--" GTEST_FLAG_PREFIX_ "color=@Y(@Gyes@Y|@Gno@Y|@Gauto@Y)@D\n" +" Enable/disable colored output. The default is @Gauto@D.\n" +" -@G-" GTEST_FLAG_PREFIX_ "print_time=0@D\n" +" Don't print the elapsed time of each test.\n" +" @G--" GTEST_FLAG_PREFIX_ "output=xml@Y[@G:@YDIRECTORY_PATH@G" + GTEST_PATH_SEP_ "@Y|@G:@YFILE_PATH]@D\n" +" Generate an XML report in the given directory or with the given file\n" +" name. @YFILE_PATH@D defaults to @Gtest_details.xml@D.\n" +#if GTEST_CAN_STREAM_RESULTS_ +" @G--" GTEST_FLAG_PREFIX_ "stream_result_to=@YHOST@G:@YPORT@D\n" +" Stream test results to the given server.\n" +#endif // GTEST_CAN_STREAM_RESULTS_ +"\n" +"Assertion Behavior:\n" +#if GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS +" @G--" GTEST_FLAG_PREFIX_ "death_test_style=@Y(@Gfast@Y|@Gthreadsafe@Y)@D\n" +" Set the default death test style.\n" +#endif // GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS +" @G--" GTEST_FLAG_PREFIX_ "break_on_failure@D\n" +" Turn assertion failures into debugger break-points.\n" +" @G--" GTEST_FLAG_PREFIX_ "throw_on_failure@D\n" +" Turn assertion failures into C++ exceptions.\n" +" @G--" GTEST_FLAG_PREFIX_ "catch_exceptions=0@D\n" +" Do not report exceptions as test failures. Instead, allow them\n" +" to crash the program or throw a pop-up (on Windows).\n" +"\n" +"Except for @G--" GTEST_FLAG_PREFIX_ "list_tests@D, you can alternatively set " + "the corresponding\n" +"environment variable of a flag (all letters in upper-case). For example, to\n" +"disable colored text output, you can either specify @G--" GTEST_FLAG_PREFIX_ + "color=no@D or set\n" +"the @G" GTEST_FLAG_PREFIX_UPPER_ "COLOR@D environment variable to @Gno@D.\n" +"\n" +"For more information, please read the " GTEST_NAME_ " documentation at\n" +"@G" GTEST_PROJECT_URL_ "@D. If you find a bug in " GTEST_NAME_ "\n" +"(not one in your own code or tests), please report it to\n" +"@G<" GTEST_DEV_EMAIL_ ">@D.\n"; + +// Parses the command line for Google Test flags, without initializing +// other parts of Google Test. The type parameter CharType can be +// instantiated to either char or wchar_t. +template +void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { + for (int i = 1; i < *argc; i++) { + const std::string arg_string = StreamableToString(argv[i]); + const char* const arg = arg_string.c_str(); + + using internal::ParseBoolFlag; + using internal::ParseInt32Flag; + using internal::ParseStringFlag; + + // Do we see a Google Test flag? + if (ParseBoolFlag(arg, kAlsoRunDisabledTestsFlag, + >EST_FLAG(also_run_disabled_tests)) || + ParseBoolFlag(arg, kBreakOnFailureFlag, + >EST_FLAG(break_on_failure)) || + ParseBoolFlag(arg, kCatchExceptionsFlag, + >EST_FLAG(catch_exceptions)) || + ParseStringFlag(arg, kColorFlag, >EST_FLAG(color)) || + ParseStringFlag(arg, kDeathTestStyleFlag, + >EST_FLAG(death_test_style)) || + ParseBoolFlag(arg, kDeathTestUseFork, + >EST_FLAG(death_test_use_fork)) || + ParseStringFlag(arg, kFilterFlag, >EST_FLAG(filter)) || + ParseStringFlag(arg, kInternalRunDeathTestFlag, + >EST_FLAG(internal_run_death_test)) || + ParseBoolFlag(arg, kListTestsFlag, >EST_FLAG(list_tests)) || + ParseStringFlag(arg, kOutputFlag, >EST_FLAG(output)) || + ParseBoolFlag(arg, kPrintTimeFlag, >EST_FLAG(print_time)) || + ParseInt32Flag(arg, kRandomSeedFlag, >EST_FLAG(random_seed)) || + ParseInt32Flag(arg, kRepeatFlag, >EST_FLAG(repeat)) || + ParseBoolFlag(arg, kShuffleFlag, >EST_FLAG(shuffle)) || + ParseInt32Flag(arg, kStackTraceDepthFlag, + >EST_FLAG(stack_trace_depth)) || + ParseStringFlag(arg, kStreamResultToFlag, + >EST_FLAG(stream_result_to)) || + ParseBoolFlag(arg, kThrowOnFailureFlag, + >EST_FLAG(throw_on_failure)) + ) { + // Yes. Shift the remainder of the argv list left by one. Note + // that argv has (*argc + 1) elements, the last one always being + // NULL. The following loop moves the trailing NULL element as + // well. + for (int j = i; j != *argc; j++) { + argv[j] = argv[j + 1]; + } + + // Decrements the argument count. + (*argc)--; + + // We also need to decrement the iterator as we just removed + // an element. + i--; + } else if (arg_string == "--help" || arg_string == "-h" || + arg_string == "-?" || arg_string == "/?" || + HasGoogleTestFlagPrefix(arg)) { + // Both help flag and unrecognized Google Test flags (excluding + // internal ones) trigger help display. + g_help_flag = true; + } + } + + if (g_help_flag) { + // We print the help here instead of in RUN_ALL_TESTS(), as the + // latter may not be called at all if the user is using Google + // Test with another testing framework. + PrintColorEncoded(kColorEncodedHelpMessage); + } +} + +// Parses the command line for Google Test flags, without initializing +// other parts of Google Test. +void ParseGoogleTestFlagsOnly(int* argc, char** argv) { + ParseGoogleTestFlagsOnlyImpl(argc, argv); +} +void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { + ParseGoogleTestFlagsOnlyImpl(argc, argv); +} + +// The internal implementation of InitGoogleTest(). +// +// The type parameter CharType can be instantiated to either char or +// wchar_t. +template +void InitGoogleTestImpl(int* argc, CharType** argv) { + g_init_gtest_count++; + + // We don't want to run the initialization code twice. + if (g_init_gtest_count != 1) return; + + if (*argc <= 0) return; + + internal::g_executable_path = internal::StreamableToString(argv[0]); + +#if GTEST_HAS_DEATH_TEST + + g_argvs.clear(); + for (int i = 0; i != *argc; i++) { + g_argvs.push_back(StreamableToString(argv[i])); + } + +#endif // GTEST_HAS_DEATH_TEST + + ParseGoogleTestFlagsOnly(argc, argv); + GetUnitTestImpl()->PostFlagParsingInit(); +} + +} // namespace internal + +// Initializes Google Test. This must be called before calling +// RUN_ALL_TESTS(). In particular, it parses a command line for the +// flags that Google Test recognizes. Whenever a Google Test flag is +// seen, it is removed from argv, and *argc is decremented. +// +// No value is returned. Instead, the Google Test flag variables are +// updated. +// +// Calling the function for the second time has no user-visible effect. +void InitGoogleTest(int* argc, char** argv) { + internal::InitGoogleTestImpl(argc, argv); +} + +// This overloaded version can be used in Windows programs compiled in +// UNICODE mode. +void InitGoogleTest(int* argc, wchar_t** argv) { + internal::InitGoogleTestImpl(argc, argv); +} + +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/src/gtest_main.cc b/cpp/thirdparty/gtest-1.7.0/src/gtest_main.cc new file mode 100644 index 000000000..f30282255 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/src/gtest_main.cc @@ -0,0 +1,38 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +#include + +#include "gtest/gtest.h" + +GTEST_API_ int main(int argc, char **argv) { + printf("Running main() from gtest_main.cc\n"); + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-death-test_ex_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-death-test_ex_test.cc new file mode 100644 index 000000000..b50a13d5e --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-death-test_ex_test.cc @@ -0,0 +1,93 @@ +// Copyright 2010, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) +// +// Tests that verify interaction of exceptions and death tests. + +#include "gtest/gtest-death-test.h" +#include "gtest/gtest.h" + +#if GTEST_HAS_DEATH_TEST + +# if GTEST_HAS_SEH +# include // For RaiseException(). +# endif + +# include "gtest/gtest-spi.h" + +# if GTEST_HAS_EXCEPTIONS + +# include // For std::exception. + +// Tests that death tests report thrown exceptions as failures and that the +// exceptions do not escape death test macros. +TEST(CxxExceptionDeathTest, ExceptionIsFailure) { + try { + EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw 1, ""), "threw an exception"); + } catch (...) { // NOLINT + FAIL() << "An exception escaped a death test macro invocation " + << "with catch_exceptions " + << (testing::GTEST_FLAG(catch_exceptions) ? "enabled" : "disabled"); + } +} + +class TestException : public std::exception { + public: + virtual const char* what() const throw() { return "exceptional message"; } +}; + +TEST(CxxExceptionDeathTest, PrintsMessageForStdExceptions) { + // Verifies that the exception message is quoted in the failure text. + EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""), + "exceptional message"); + // Verifies that the location is mentioned in the failure text. + EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""), + "gtest-death-test_ex_test.cc"); +} +# endif // GTEST_HAS_EXCEPTIONS + +# if GTEST_HAS_SEH +// Tests that enabling interception of SEH exceptions with the +// catch_exceptions flag does not interfere with SEH exceptions being +// treated as death by death tests. +TEST(SehExceptionDeasTest, CatchExceptionsDoesNotInterfere) { + EXPECT_DEATH(RaiseException(42, 0x0, 0, NULL), "") + << "with catch_exceptions " + << (testing::GTEST_FLAG(catch_exceptions) ? "enabled" : "disabled"); +} +# endif + +#endif // GTEST_HAS_DEATH_TEST + +int main(int argc, char** argv) { + testing::InitGoogleTest(&argc, argv); + testing::GTEST_FLAG(catch_exceptions) = GTEST_ENABLE_CATCH_EXCEPTIONS_ != 0; + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-death-test_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-death-test_test.cc new file mode 100644 index 000000000..c2d26df99 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-death-test_test.cc @@ -0,0 +1,1367 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Tests for death tests. + +#include "gtest/gtest-death-test.h" +#include "gtest/gtest.h" +#include "gtest/internal/gtest-filepath.h" + +using testing::internal::AlwaysFalse; +using testing::internal::AlwaysTrue; + +#if GTEST_HAS_DEATH_TEST + +# if GTEST_OS_WINDOWS +# include // For chdir(). +# else +# include +# include // For waitpid. +# endif // GTEST_OS_WINDOWS + +# include +# include +# include + +# if GTEST_OS_LINUX +# include +# endif // GTEST_OS_LINUX + +# include "gtest/gtest-spi.h" + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +# define GTEST_IMPLEMENTATION_ 1 +# include "src/gtest-internal-inl.h" +# undef GTEST_IMPLEMENTATION_ + +namespace posix = ::testing::internal::posix; + +using testing::Message; +using testing::internal::DeathTest; +using testing::internal::DeathTestFactory; +using testing::internal::FilePath; +using testing::internal::GetLastErrnoDescription; +using testing::internal::GetUnitTestImpl; +using testing::internal::InDeathTestChild; +using testing::internal::ParseNaturalNumber; + +namespace testing { +namespace internal { + +// A helper class whose objects replace the death test factory for a +// single UnitTest object during their lifetimes. +class ReplaceDeathTestFactory { + public: + explicit ReplaceDeathTestFactory(DeathTestFactory* new_factory) + : unit_test_impl_(GetUnitTestImpl()) { + old_factory_ = unit_test_impl_->death_test_factory_.release(); + unit_test_impl_->death_test_factory_.reset(new_factory); + } + + ~ReplaceDeathTestFactory() { + unit_test_impl_->death_test_factory_.release(); + unit_test_impl_->death_test_factory_.reset(old_factory_); + } + private: + // Prevents copying ReplaceDeathTestFactory objects. + ReplaceDeathTestFactory(const ReplaceDeathTestFactory&); + void operator=(const ReplaceDeathTestFactory&); + + UnitTestImpl* unit_test_impl_; + DeathTestFactory* old_factory_; +}; + +} // namespace internal +} // namespace testing + +void DieWithMessage(const ::std::string& message) { + fprintf(stderr, "%s", message.c_str()); + fflush(stderr); // Make sure the text is printed before the process exits. + + // We call _exit() instead of exit(), as the former is a direct + // system call and thus safer in the presence of threads. exit() + // will invoke user-defined exit-hooks, which may do dangerous + // things that conflict with death tests. + // + // Some compilers can recognize that _exit() never returns and issue the + // 'unreachable code' warning for code following this function, unless + // fooled by a fake condition. + if (AlwaysTrue()) + _exit(1); +} + +void DieInside(const ::std::string& function) { + DieWithMessage("death inside " + function + "()."); +} + +// Tests that death tests work. + +class TestForDeathTest : public testing::Test { + protected: + TestForDeathTest() : original_dir_(FilePath::GetCurrentDir()) {} + + virtual ~TestForDeathTest() { + posix::ChDir(original_dir_.c_str()); + } + + // A static member function that's expected to die. + static void StaticMemberFunction() { DieInside("StaticMemberFunction"); } + + // A method of the test fixture that may die. + void MemberFunction() { + if (should_die_) + DieInside("MemberFunction"); + } + + // True iff MemberFunction() should die. + bool should_die_; + const FilePath original_dir_; +}; + +// A class with a member function that may die. +class MayDie { + public: + explicit MayDie(bool should_die) : should_die_(should_die) {} + + // A member function that may die. + void MemberFunction() const { + if (should_die_) + DieInside("MayDie::MemberFunction"); + } + + private: + // True iff MemberFunction() should die. + bool should_die_; +}; + +// A global function that's expected to die. +void GlobalFunction() { DieInside("GlobalFunction"); } + +// A non-void function that's expected to die. +int NonVoidFunction() { + DieInside("NonVoidFunction"); + return 1; +} + +// A unary function that may die. +void DieIf(bool should_die) { + if (should_die) + DieInside("DieIf"); +} + +// A binary function that may die. +bool DieIfLessThan(int x, int y) { + if (x < y) { + DieInside("DieIfLessThan"); + } + return true; +} + +// Tests that ASSERT_DEATH can be used outside a TEST, TEST_F, or test fixture. +void DeathTestSubroutine() { + EXPECT_DEATH(GlobalFunction(), "death.*GlobalFunction"); + ASSERT_DEATH(GlobalFunction(), "death.*GlobalFunction"); +} + +// Death in dbg, not opt. +int DieInDebugElse12(int* sideeffect) { + if (sideeffect) *sideeffect = 12; + +# ifndef NDEBUG + + DieInside("DieInDebugElse12"); + +# endif // NDEBUG + + return 12; +} + +# if GTEST_OS_WINDOWS + +// Tests the ExitedWithCode predicate. +TEST(ExitStatusPredicateTest, ExitedWithCode) { + // On Windows, the process's exit code is the same as its exit status, + // so the predicate just compares the its input with its parameter. + EXPECT_TRUE(testing::ExitedWithCode(0)(0)); + EXPECT_TRUE(testing::ExitedWithCode(1)(1)); + EXPECT_TRUE(testing::ExitedWithCode(42)(42)); + EXPECT_FALSE(testing::ExitedWithCode(0)(1)); + EXPECT_FALSE(testing::ExitedWithCode(1)(0)); +} + +# else + +// Returns the exit status of a process that calls _exit(2) with a +// given exit code. This is a helper function for the +// ExitStatusPredicateTest test suite. +static int NormalExitStatus(int exit_code) { + pid_t child_pid = fork(); + if (child_pid == 0) { + _exit(exit_code); + } + int status; + waitpid(child_pid, &status, 0); + return status; +} + +// Returns the exit status of a process that raises a given signal. +// If the signal does not cause the process to die, then it returns +// instead the exit status of a process that exits normally with exit +// code 1. This is a helper function for the ExitStatusPredicateTest +// test suite. +static int KilledExitStatus(int signum) { + pid_t child_pid = fork(); + if (child_pid == 0) { + raise(signum); + _exit(1); + } + int status; + waitpid(child_pid, &status, 0); + return status; +} + +// Tests the ExitedWithCode predicate. +TEST(ExitStatusPredicateTest, ExitedWithCode) { + const int status0 = NormalExitStatus(0); + const int status1 = NormalExitStatus(1); + const int status42 = NormalExitStatus(42); + const testing::ExitedWithCode pred0(0); + const testing::ExitedWithCode pred1(1); + const testing::ExitedWithCode pred42(42); + EXPECT_PRED1(pred0, status0); + EXPECT_PRED1(pred1, status1); + EXPECT_PRED1(pred42, status42); + EXPECT_FALSE(pred0(status1)); + EXPECT_FALSE(pred42(status0)); + EXPECT_FALSE(pred1(status42)); +} + +// Tests the KilledBySignal predicate. +TEST(ExitStatusPredicateTest, KilledBySignal) { + const int status_segv = KilledExitStatus(SIGSEGV); + const int status_kill = KilledExitStatus(SIGKILL); + const testing::KilledBySignal pred_segv(SIGSEGV); + const testing::KilledBySignal pred_kill(SIGKILL); + EXPECT_PRED1(pred_segv, status_segv); + EXPECT_PRED1(pred_kill, status_kill); + EXPECT_FALSE(pred_segv(status_kill)); + EXPECT_FALSE(pred_kill(status_segv)); +} + +# endif // GTEST_OS_WINDOWS + +// Tests that the death test macros expand to code which may or may not +// be followed by operator<<, and that in either case the complete text +// comprises only a single C++ statement. +TEST_F(TestForDeathTest, SingleStatement) { + if (AlwaysFalse()) + // This would fail if executed; this is a compilation test only + ASSERT_DEATH(return, ""); + + if (AlwaysTrue()) + EXPECT_DEATH(_exit(1), ""); + else + // This empty "else" branch is meant to ensure that EXPECT_DEATH + // doesn't expand into an "if" statement without an "else" + ; + + if (AlwaysFalse()) + ASSERT_DEATH(return, "") << "did not die"; + + if (AlwaysFalse()) + ; + else + EXPECT_DEATH(_exit(1), "") << 1 << 2 << 3; +} + +void DieWithEmbeddedNul() { + fprintf(stderr, "Hello%cmy null world.\n", '\0'); + fflush(stderr); + _exit(1); +} + +# if GTEST_USES_PCRE +// Tests that EXPECT_DEATH and ASSERT_DEATH work when the error +// message has a NUL character in it. +TEST_F(TestForDeathTest, EmbeddedNulInMessage) { + // TODO(wan@google.com): doesn't support matching strings + // with embedded NUL characters - find a way to workaround it. + EXPECT_DEATH(DieWithEmbeddedNul(), "my null world"); + ASSERT_DEATH(DieWithEmbeddedNul(), "my null world"); +} +# endif // GTEST_USES_PCRE + +// Tests that death test macros expand to code which interacts well with switch +// statements. +TEST_F(TestForDeathTest, SwitchStatement) { +// Microsoft compiler usually complains about switch statements without +// case labels. We suppress that warning for this test. +# ifdef _MSC_VER +# pragma warning(push) +# pragma warning(disable: 4065) +# endif // _MSC_VER + + switch (0) + default: + ASSERT_DEATH(_exit(1), "") << "exit in default switch handler"; + + switch (0) + case 0: + EXPECT_DEATH(_exit(1), "") << "exit in switch case"; + +# ifdef _MSC_VER +# pragma warning(pop) +# endif // _MSC_VER +} + +// Tests that a static member function can be used in a "fast" style +// death test. +TEST_F(TestForDeathTest, StaticMemberFunctionFastStyle) { + testing::GTEST_FLAG(death_test_style) = "fast"; + ASSERT_DEATH(StaticMemberFunction(), "death.*StaticMember"); +} + +// Tests that a method of the test fixture can be used in a "fast" +// style death test. +TEST_F(TestForDeathTest, MemberFunctionFastStyle) { + testing::GTEST_FLAG(death_test_style) = "fast"; + should_die_ = true; + EXPECT_DEATH(MemberFunction(), "inside.*MemberFunction"); +} + +void ChangeToRootDir() { posix::ChDir(GTEST_PATH_SEP_); } + +// Tests that death tests work even if the current directory has been +// changed. +TEST_F(TestForDeathTest, FastDeathTestInChangedDir) { + testing::GTEST_FLAG(death_test_style) = "fast"; + + ChangeToRootDir(); + EXPECT_EXIT(_exit(1), testing::ExitedWithCode(1), ""); + + ChangeToRootDir(); + ASSERT_DEATH(_exit(1), ""); +} + +# if GTEST_OS_LINUX +void SigprofAction(int, siginfo_t*, void*) { /* no op */ } + +// Sets SIGPROF action and ITIMER_PROF timer (interval: 1ms). +void SetSigprofActionAndTimer() { + struct itimerval timer; + timer.it_interval.tv_sec = 0; + timer.it_interval.tv_usec = 1; + timer.it_value = timer.it_interval; + ASSERT_EQ(0, setitimer(ITIMER_PROF, &timer, NULL)); + struct sigaction signal_action; + memset(&signal_action, 0, sizeof(signal_action)); + sigemptyset(&signal_action.sa_mask); + signal_action.sa_sigaction = SigprofAction; + signal_action.sa_flags = SA_RESTART | SA_SIGINFO; + ASSERT_EQ(0, sigaction(SIGPROF, &signal_action, NULL)); +} + +// Disables ITIMER_PROF timer and ignores SIGPROF signal. +void DisableSigprofActionAndTimer(struct sigaction* old_signal_action) { + struct itimerval timer; + timer.it_interval.tv_sec = 0; + timer.it_interval.tv_usec = 0; + timer.it_value = timer.it_interval; + ASSERT_EQ(0, setitimer(ITIMER_PROF, &timer, NULL)); + struct sigaction signal_action; + memset(&signal_action, 0, sizeof(signal_action)); + sigemptyset(&signal_action.sa_mask); + signal_action.sa_handler = SIG_IGN; + ASSERT_EQ(0, sigaction(SIGPROF, &signal_action, old_signal_action)); +} + +// Tests that death tests work when SIGPROF handler and timer are set. +TEST_F(TestForDeathTest, FastSigprofActionSet) { + testing::GTEST_FLAG(death_test_style) = "fast"; + SetSigprofActionAndTimer(); + EXPECT_DEATH(_exit(1), ""); + struct sigaction old_signal_action; + DisableSigprofActionAndTimer(&old_signal_action); + EXPECT_TRUE(old_signal_action.sa_sigaction == SigprofAction); +} + +TEST_F(TestForDeathTest, ThreadSafeSigprofActionSet) { + testing::GTEST_FLAG(death_test_style) = "threadsafe"; + SetSigprofActionAndTimer(); + EXPECT_DEATH(_exit(1), ""); + struct sigaction old_signal_action; + DisableSigprofActionAndTimer(&old_signal_action); + EXPECT_TRUE(old_signal_action.sa_sigaction == SigprofAction); +} +# endif // GTEST_OS_LINUX + +// Repeats a representative sample of death tests in the "threadsafe" style: + +TEST_F(TestForDeathTest, StaticMemberFunctionThreadsafeStyle) { + testing::GTEST_FLAG(death_test_style) = "threadsafe"; + ASSERT_DEATH(StaticMemberFunction(), "death.*StaticMember"); +} + +TEST_F(TestForDeathTest, MemberFunctionThreadsafeStyle) { + testing::GTEST_FLAG(death_test_style) = "threadsafe"; + should_die_ = true; + EXPECT_DEATH(MemberFunction(), "inside.*MemberFunction"); +} + +TEST_F(TestForDeathTest, ThreadsafeDeathTestInLoop) { + testing::GTEST_FLAG(death_test_style) = "threadsafe"; + + for (int i = 0; i < 3; ++i) + EXPECT_EXIT(_exit(i), testing::ExitedWithCode(i), "") << ": i = " << i; +} + +TEST_F(TestForDeathTest, ThreadsafeDeathTestInChangedDir) { + testing::GTEST_FLAG(death_test_style) = "threadsafe"; + + ChangeToRootDir(); + EXPECT_EXIT(_exit(1), testing::ExitedWithCode(1), ""); + + ChangeToRootDir(); + ASSERT_DEATH(_exit(1), ""); +} + +TEST_F(TestForDeathTest, MixedStyles) { + testing::GTEST_FLAG(death_test_style) = "threadsafe"; + EXPECT_DEATH(_exit(1), ""); + testing::GTEST_FLAG(death_test_style) = "fast"; + EXPECT_DEATH(_exit(1), ""); +} + +# if GTEST_HAS_CLONE && GTEST_HAS_PTHREAD + +namespace { + +bool pthread_flag; + +void SetPthreadFlag() { + pthread_flag = true; +} + +} // namespace + +TEST_F(TestForDeathTest, DoesNotExecuteAtforkHooks) { + if (!testing::GTEST_FLAG(death_test_use_fork)) { + testing::GTEST_FLAG(death_test_style) = "threadsafe"; + pthread_flag = false; + ASSERT_EQ(0, pthread_atfork(&SetPthreadFlag, NULL, NULL)); + ASSERT_DEATH(_exit(1), ""); + ASSERT_FALSE(pthread_flag); + } +} + +# endif // GTEST_HAS_CLONE && GTEST_HAS_PTHREAD + +// Tests that a method of another class can be used in a death test. +TEST_F(TestForDeathTest, MethodOfAnotherClass) { + const MayDie x(true); + ASSERT_DEATH(x.MemberFunction(), "MayDie\\:\\:MemberFunction"); +} + +// Tests that a global function can be used in a death test. +TEST_F(TestForDeathTest, GlobalFunction) { + EXPECT_DEATH(GlobalFunction(), "GlobalFunction"); +} + +// Tests that any value convertible to an RE works as a second +// argument to EXPECT_DEATH. +TEST_F(TestForDeathTest, AcceptsAnythingConvertibleToRE) { + static const char regex_c_str[] = "GlobalFunction"; + EXPECT_DEATH(GlobalFunction(), regex_c_str); + + const testing::internal::RE regex(regex_c_str); + EXPECT_DEATH(GlobalFunction(), regex); + +# if GTEST_HAS_GLOBAL_STRING + + const string regex_str(regex_c_str); + EXPECT_DEATH(GlobalFunction(), regex_str); + +# endif // GTEST_HAS_GLOBAL_STRING + + const ::std::string regex_std_str(regex_c_str); + EXPECT_DEATH(GlobalFunction(), regex_std_str); +} + +// Tests that a non-void function can be used in a death test. +TEST_F(TestForDeathTest, NonVoidFunction) { + ASSERT_DEATH(NonVoidFunction(), "NonVoidFunction"); +} + +// Tests that functions that take parameter(s) can be used in a death test. +TEST_F(TestForDeathTest, FunctionWithParameter) { + EXPECT_DEATH(DieIf(true), "DieIf\\(\\)"); + EXPECT_DEATH(DieIfLessThan(2, 3), "DieIfLessThan"); +} + +// Tests that ASSERT_DEATH can be used outside a TEST, TEST_F, or test fixture. +TEST_F(TestForDeathTest, OutsideFixture) { + DeathTestSubroutine(); +} + +// Tests that death tests can be done inside a loop. +TEST_F(TestForDeathTest, InsideLoop) { + for (int i = 0; i < 5; i++) { + EXPECT_DEATH(DieIfLessThan(-1, i), "DieIfLessThan") << "where i == " << i; + } +} + +// Tests that a compound statement can be used in a death test. +TEST_F(TestForDeathTest, CompoundStatement) { + EXPECT_DEATH({ // NOLINT + const int x = 2; + const int y = x + 1; + DieIfLessThan(x, y); + }, + "DieIfLessThan"); +} + +// Tests that code that doesn't die causes a death test to fail. +TEST_F(TestForDeathTest, DoesNotDie) { + EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(DieIf(false), "DieIf"), + "failed to die"); +} + +// Tests that a death test fails when the error message isn't expected. +TEST_F(TestForDeathTest, ErrorMessageMismatch) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_DEATH(DieIf(true), "DieIfLessThan") << "End of death test message."; + }, "died but not with expected error"); +} + +// On exit, *aborted will be true iff the EXPECT_DEATH() statement +// aborted the function. +void ExpectDeathTestHelper(bool* aborted) { + *aborted = true; + EXPECT_DEATH(DieIf(false), "DieIf"); // This assertion should fail. + *aborted = false; +} + +// Tests that EXPECT_DEATH doesn't abort the test on failure. +TEST_F(TestForDeathTest, EXPECT_DEATH) { + bool aborted = true; + EXPECT_NONFATAL_FAILURE(ExpectDeathTestHelper(&aborted), + "failed to die"); + EXPECT_FALSE(aborted); +} + +// Tests that ASSERT_DEATH does abort the test on failure. +TEST_F(TestForDeathTest, ASSERT_DEATH) { + static bool aborted; + EXPECT_FATAL_FAILURE({ // NOLINT + aborted = true; + ASSERT_DEATH(DieIf(false), "DieIf"); // This assertion should fail. + aborted = false; + }, "failed to die"); + EXPECT_TRUE(aborted); +} + +// Tests that EXPECT_DEATH evaluates the arguments exactly once. +TEST_F(TestForDeathTest, SingleEvaluation) { + int x = 3; + EXPECT_DEATH(DieIf((++x) == 4), "DieIf"); + + const char* regex = "DieIf"; + const char* regex_save = regex; + EXPECT_DEATH(DieIfLessThan(3, 4), regex++); + EXPECT_EQ(regex_save + 1, regex); +} + +// Tests that run-away death tests are reported as failures. +TEST_F(TestForDeathTest, RunawayIsFailure) { + EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(static_cast(0), "Foo"), + "failed to die."); +} + +// Tests that death tests report executing 'return' in the statement as +// failure. +TEST_F(TestForDeathTest, ReturnIsFailure) { + EXPECT_FATAL_FAILURE(ASSERT_DEATH(return, "Bar"), + "illegal return in test statement."); +} + +// Tests that EXPECT_DEBUG_DEATH works as expected, that is, you can stream a +// message to it, and in debug mode it: +// 1. Asserts on death. +// 2. Has no side effect. +// +// And in opt mode, it: +// 1. Has side effects but does not assert. +TEST_F(TestForDeathTest, TestExpectDebugDeath) { + int sideeffect = 0; + + EXPECT_DEBUG_DEATH(DieInDebugElse12(&sideeffect), "death.*DieInDebugElse12") + << "Must accept a streamed message"; + +# ifdef NDEBUG + + // Checks that the assignment occurs in opt mode (sideeffect). + EXPECT_EQ(12, sideeffect); + +# else + + // Checks that the assignment does not occur in dbg mode (no sideeffect). + EXPECT_EQ(0, sideeffect); + +# endif +} + +// Tests that ASSERT_DEBUG_DEATH works as expected, that is, you can stream a +// message to it, and in debug mode it: +// 1. Asserts on death. +// 2. Has no side effect. +// +// And in opt mode, it: +// 1. Has side effects but does not assert. +TEST_F(TestForDeathTest, TestAssertDebugDeath) { + int sideeffect = 0; + + ASSERT_DEBUG_DEATH(DieInDebugElse12(&sideeffect), "death.*DieInDebugElse12") + << "Must accept a streamed message"; + +# ifdef NDEBUG + + // Checks that the assignment occurs in opt mode (sideeffect). + EXPECT_EQ(12, sideeffect); + +# else + + // Checks that the assignment does not occur in dbg mode (no sideeffect). + EXPECT_EQ(0, sideeffect); + +# endif +} + +# ifndef NDEBUG + +void ExpectDebugDeathHelper(bool* aborted) { + *aborted = true; + EXPECT_DEBUG_DEATH(return, "") << "This is expected to fail."; + *aborted = false; +} + +# if GTEST_OS_WINDOWS +TEST(PopUpDeathTest, DoesNotShowPopUpOnAbort) { + printf("This test should be considered failing if it shows " + "any pop-up dialogs.\n"); + fflush(stdout); + + EXPECT_DEATH({ + testing::GTEST_FLAG(catch_exceptions) = false; + abort(); + }, ""); +} +# endif // GTEST_OS_WINDOWS + +// Tests that EXPECT_DEBUG_DEATH in debug mode does not abort +// the function. +TEST_F(TestForDeathTest, ExpectDebugDeathDoesNotAbort) { + bool aborted = true; + EXPECT_NONFATAL_FAILURE(ExpectDebugDeathHelper(&aborted), ""); + EXPECT_FALSE(aborted); +} + +void AssertDebugDeathHelper(bool* aborted) { + *aborted = true; + ASSERT_DEBUG_DEATH(return, "") << "This is expected to fail."; + *aborted = false; +} + +// Tests that ASSERT_DEBUG_DEATH in debug mode aborts the function on +// failure. +TEST_F(TestForDeathTest, AssertDebugDeathAborts) { + static bool aborted; + aborted = false; + EXPECT_FATAL_FAILURE(AssertDebugDeathHelper(&aborted), ""); + EXPECT_TRUE(aborted); +} + +# endif // _NDEBUG + +// Tests the *_EXIT family of macros, using a variety of predicates. +static void TestExitMacros() { + EXPECT_EXIT(_exit(1), testing::ExitedWithCode(1), ""); + ASSERT_EXIT(_exit(42), testing::ExitedWithCode(42), ""); + +# if GTEST_OS_WINDOWS + + // Of all signals effects on the process exit code, only those of SIGABRT + // are documented on Windows. + // See http://msdn.microsoft.com/en-us/library/dwwzkt4c(VS.71).aspx. + EXPECT_EXIT(raise(SIGABRT), testing::ExitedWithCode(3), "") << "b_ar"; + +# else + + EXPECT_EXIT(raise(SIGKILL), testing::KilledBySignal(SIGKILL), "") << "foo"; + ASSERT_EXIT(raise(SIGUSR2), testing::KilledBySignal(SIGUSR2), "") << "bar"; + + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_EXIT(_exit(0), testing::KilledBySignal(SIGSEGV), "") + << "This failure is expected, too."; + }, "This failure is expected, too."); + +# endif // GTEST_OS_WINDOWS + + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_EXIT(raise(SIGSEGV), testing::ExitedWithCode(0), "") + << "This failure is expected."; + }, "This failure is expected."); +} + +TEST_F(TestForDeathTest, ExitMacros) { + TestExitMacros(); +} + +TEST_F(TestForDeathTest, ExitMacrosUsingFork) { + testing::GTEST_FLAG(death_test_use_fork) = true; + TestExitMacros(); +} + +TEST_F(TestForDeathTest, InvalidStyle) { + testing::GTEST_FLAG(death_test_style) = "rococo"; + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_DEATH(_exit(0), "") << "This failure is expected."; + }, "This failure is expected."); +} + +TEST_F(TestForDeathTest, DeathTestFailedOutput) { + testing::GTEST_FLAG(death_test_style) = "fast"; + EXPECT_NONFATAL_FAILURE( + EXPECT_DEATH(DieWithMessage("death\n"), + "expected message"), + "Actual msg:\n" + "[ DEATH ] death\n"); +} + +TEST_F(TestForDeathTest, DeathTestUnexpectedReturnOutput) { + testing::GTEST_FLAG(death_test_style) = "fast"; + EXPECT_NONFATAL_FAILURE( + EXPECT_DEATH({ + fprintf(stderr, "returning\n"); + fflush(stderr); + return; + }, ""), + " Result: illegal return in test statement.\n" + " Error msg:\n" + "[ DEATH ] returning\n"); +} + +TEST_F(TestForDeathTest, DeathTestBadExitCodeOutput) { + testing::GTEST_FLAG(death_test_style) = "fast"; + EXPECT_NONFATAL_FAILURE( + EXPECT_EXIT(DieWithMessage("exiting with rc 1\n"), + testing::ExitedWithCode(3), + "expected message"), + " Result: died but not with expected exit code:\n" + " Exited with exit status 1\n" + "Actual msg:\n" + "[ DEATH ] exiting with rc 1\n"); +} + +TEST_F(TestForDeathTest, DeathTestMultiLineMatchFail) { + testing::GTEST_FLAG(death_test_style) = "fast"; + EXPECT_NONFATAL_FAILURE( + EXPECT_DEATH(DieWithMessage("line 1\nline 2\nline 3\n"), + "line 1\nxyz\nline 3\n"), + "Actual msg:\n" + "[ DEATH ] line 1\n" + "[ DEATH ] line 2\n" + "[ DEATH ] line 3\n"); +} + +TEST_F(TestForDeathTest, DeathTestMultiLineMatchPass) { + testing::GTEST_FLAG(death_test_style) = "fast"; + EXPECT_DEATH(DieWithMessage("line 1\nline 2\nline 3\n"), + "line 1\nline 2\nline 3\n"); +} + +// A DeathTestFactory that returns MockDeathTests. +class MockDeathTestFactory : public DeathTestFactory { + public: + MockDeathTestFactory(); + virtual bool Create(const char* statement, + const ::testing::internal::RE* regex, + const char* file, int line, DeathTest** test); + + // Sets the parameters for subsequent calls to Create. + void SetParameters(bool create, DeathTest::TestRole role, + int status, bool passed); + + // Accessors. + int AssumeRoleCalls() const { return assume_role_calls_; } + int WaitCalls() const { return wait_calls_; } + int PassedCalls() const { return passed_args_.size(); } + bool PassedArgument(int n) const { return passed_args_[n]; } + int AbortCalls() const { return abort_args_.size(); } + DeathTest::AbortReason AbortArgument(int n) const { + return abort_args_[n]; + } + bool TestDeleted() const { return test_deleted_; } + + private: + friend class MockDeathTest; + // If true, Create will return a MockDeathTest; otherwise it returns + // NULL. + bool create_; + // The value a MockDeathTest will return from its AssumeRole method. + DeathTest::TestRole role_; + // The value a MockDeathTest will return from its Wait method. + int status_; + // The value a MockDeathTest will return from its Passed method. + bool passed_; + + // Number of times AssumeRole was called. + int assume_role_calls_; + // Number of times Wait was called. + int wait_calls_; + // The arguments to the calls to Passed since the last call to + // SetParameters. + std::vector passed_args_; + // The arguments to the calls to Abort since the last call to + // SetParameters. + std::vector abort_args_; + // True if the last MockDeathTest returned by Create has been + // deleted. + bool test_deleted_; +}; + + +// A DeathTest implementation useful in testing. It returns values set +// at its creation from its various inherited DeathTest methods, and +// reports calls to those methods to its parent MockDeathTestFactory +// object. +class MockDeathTest : public DeathTest { + public: + MockDeathTest(MockDeathTestFactory *parent, + TestRole role, int status, bool passed) : + parent_(parent), role_(role), status_(status), passed_(passed) { + } + virtual ~MockDeathTest() { + parent_->test_deleted_ = true; + } + virtual TestRole AssumeRole() { + ++parent_->assume_role_calls_; + return role_; + } + virtual int Wait() { + ++parent_->wait_calls_; + return status_; + } + virtual bool Passed(bool exit_status_ok) { + parent_->passed_args_.push_back(exit_status_ok); + return passed_; + } + virtual void Abort(AbortReason reason) { + parent_->abort_args_.push_back(reason); + } + + private: + MockDeathTestFactory* const parent_; + const TestRole role_; + const int status_; + const bool passed_; +}; + + +// MockDeathTestFactory constructor. +MockDeathTestFactory::MockDeathTestFactory() + : create_(true), + role_(DeathTest::OVERSEE_TEST), + status_(0), + passed_(true), + assume_role_calls_(0), + wait_calls_(0), + passed_args_(), + abort_args_() { +} + + +// Sets the parameters for subsequent calls to Create. +void MockDeathTestFactory::SetParameters(bool create, + DeathTest::TestRole role, + int status, bool passed) { + create_ = create; + role_ = role; + status_ = status; + passed_ = passed; + + assume_role_calls_ = 0; + wait_calls_ = 0; + passed_args_.clear(); + abort_args_.clear(); +} + + +// Sets test to NULL (if create_ is false) or to the address of a new +// MockDeathTest object with parameters taken from the last call +// to SetParameters (if create_ is true). Always returns true. +bool MockDeathTestFactory::Create(const char* /*statement*/, + const ::testing::internal::RE* /*regex*/, + const char* /*file*/, + int /*line*/, + DeathTest** test) { + test_deleted_ = false; + if (create_) { + *test = new MockDeathTest(this, role_, status_, passed_); + } else { + *test = NULL; + } + return true; +} + +// A test fixture for testing the logic of the GTEST_DEATH_TEST_ macro. +// It installs a MockDeathTestFactory that is used for the duration +// of the test case. +class MacroLogicDeathTest : public testing::Test { + protected: + static testing::internal::ReplaceDeathTestFactory* replacer_; + static MockDeathTestFactory* factory_; + + static void SetUpTestCase() { + factory_ = new MockDeathTestFactory; + replacer_ = new testing::internal::ReplaceDeathTestFactory(factory_); + } + + static void TearDownTestCase() { + delete replacer_; + replacer_ = NULL; + delete factory_; + factory_ = NULL; + } + + // Runs a death test that breaks the rules by returning. Such a death + // test cannot be run directly from a test routine that uses a + // MockDeathTest, or the remainder of the routine will not be executed. + static void RunReturningDeathTest(bool* flag) { + ASSERT_DEATH({ // NOLINT + *flag = true; + return; + }, ""); + } +}; + +testing::internal::ReplaceDeathTestFactory* MacroLogicDeathTest::replacer_ + = NULL; +MockDeathTestFactory* MacroLogicDeathTest::factory_ = NULL; + + +// Test that nothing happens when the factory doesn't return a DeathTest: +TEST_F(MacroLogicDeathTest, NothingHappens) { + bool flag = false; + factory_->SetParameters(false, DeathTest::OVERSEE_TEST, 0, true); + EXPECT_DEATH(flag = true, ""); + EXPECT_FALSE(flag); + EXPECT_EQ(0, factory_->AssumeRoleCalls()); + EXPECT_EQ(0, factory_->WaitCalls()); + EXPECT_EQ(0, factory_->PassedCalls()); + EXPECT_EQ(0, factory_->AbortCalls()); + EXPECT_FALSE(factory_->TestDeleted()); +} + +// Test that the parent process doesn't run the death test code, +// and that the Passed method returns false when the (simulated) +// child process exits with status 0: +TEST_F(MacroLogicDeathTest, ChildExitsSuccessfully) { + bool flag = false; + factory_->SetParameters(true, DeathTest::OVERSEE_TEST, 0, true); + EXPECT_DEATH(flag = true, ""); + EXPECT_FALSE(flag); + EXPECT_EQ(1, factory_->AssumeRoleCalls()); + EXPECT_EQ(1, factory_->WaitCalls()); + ASSERT_EQ(1, factory_->PassedCalls()); + EXPECT_FALSE(factory_->PassedArgument(0)); + EXPECT_EQ(0, factory_->AbortCalls()); + EXPECT_TRUE(factory_->TestDeleted()); +} + +// Tests that the Passed method was given the argument "true" when +// the (simulated) child process exits with status 1: +TEST_F(MacroLogicDeathTest, ChildExitsUnsuccessfully) { + bool flag = false; + factory_->SetParameters(true, DeathTest::OVERSEE_TEST, 1, true); + EXPECT_DEATH(flag = true, ""); + EXPECT_FALSE(flag); + EXPECT_EQ(1, factory_->AssumeRoleCalls()); + EXPECT_EQ(1, factory_->WaitCalls()); + ASSERT_EQ(1, factory_->PassedCalls()); + EXPECT_TRUE(factory_->PassedArgument(0)); + EXPECT_EQ(0, factory_->AbortCalls()); + EXPECT_TRUE(factory_->TestDeleted()); +} + +// Tests that the (simulated) child process executes the death test +// code, and is aborted with the correct AbortReason if it +// executes a return statement. +TEST_F(MacroLogicDeathTest, ChildPerformsReturn) { + bool flag = false; + factory_->SetParameters(true, DeathTest::EXECUTE_TEST, 0, true); + RunReturningDeathTest(&flag); + EXPECT_TRUE(flag); + EXPECT_EQ(1, factory_->AssumeRoleCalls()); + EXPECT_EQ(0, factory_->WaitCalls()); + EXPECT_EQ(0, factory_->PassedCalls()); + EXPECT_EQ(1, factory_->AbortCalls()); + EXPECT_EQ(DeathTest::TEST_ENCOUNTERED_RETURN_STATEMENT, + factory_->AbortArgument(0)); + EXPECT_TRUE(factory_->TestDeleted()); +} + +// Tests that the (simulated) child process is aborted with the +// correct AbortReason if it does not die. +TEST_F(MacroLogicDeathTest, ChildDoesNotDie) { + bool flag = false; + factory_->SetParameters(true, DeathTest::EXECUTE_TEST, 0, true); + EXPECT_DEATH(flag = true, ""); + EXPECT_TRUE(flag); + EXPECT_EQ(1, factory_->AssumeRoleCalls()); + EXPECT_EQ(0, factory_->WaitCalls()); + EXPECT_EQ(0, factory_->PassedCalls()); + // This time there are two calls to Abort: one since the test didn't + // die, and another from the ReturnSentinel when it's destroyed. The + // sentinel normally isn't destroyed if a test doesn't die, since + // _exit(2) is called in that case by ForkingDeathTest, but not by + // our MockDeathTest. + ASSERT_EQ(2, factory_->AbortCalls()); + EXPECT_EQ(DeathTest::TEST_DID_NOT_DIE, + factory_->AbortArgument(0)); + EXPECT_EQ(DeathTest::TEST_ENCOUNTERED_RETURN_STATEMENT, + factory_->AbortArgument(1)); + EXPECT_TRUE(factory_->TestDeleted()); +} + +// Tests that a successful death test does not register a successful +// test part. +TEST(SuccessRegistrationDeathTest, NoSuccessPart) { + EXPECT_DEATH(_exit(1), ""); + EXPECT_EQ(0, GetUnitTestImpl()->current_test_result()->total_part_count()); +} + +TEST(StreamingAssertionsDeathTest, DeathTest) { + EXPECT_DEATH(_exit(1), "") << "unexpected failure"; + ASSERT_DEATH(_exit(1), "") << "unexpected failure"; + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_DEATH(_exit(0), "") << "expected failure"; + }, "expected failure"); + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_DEATH(_exit(0), "") << "expected failure"; + }, "expected failure"); +} + +// Tests that GetLastErrnoDescription returns an empty string when the +// last error is 0 and non-empty string when it is non-zero. +TEST(GetLastErrnoDescription, GetLastErrnoDescriptionWorks) { + errno = ENOENT; + EXPECT_STRNE("", GetLastErrnoDescription().c_str()); + errno = 0; + EXPECT_STREQ("", GetLastErrnoDescription().c_str()); +} + +# if GTEST_OS_WINDOWS +TEST(AutoHandleTest, AutoHandleWorks) { + HANDLE handle = ::CreateEvent(NULL, FALSE, FALSE, NULL); + ASSERT_NE(INVALID_HANDLE_VALUE, handle); + + // Tests that the AutoHandle is correctly initialized with a handle. + testing::internal::AutoHandle auto_handle(handle); + EXPECT_EQ(handle, auto_handle.Get()); + + // Tests that Reset assigns INVALID_HANDLE_VALUE. + // Note that this cannot verify whether the original handle is closed. + auto_handle.Reset(); + EXPECT_EQ(INVALID_HANDLE_VALUE, auto_handle.Get()); + + // Tests that Reset assigns the new handle. + // Note that this cannot verify whether the original handle is closed. + handle = ::CreateEvent(NULL, FALSE, FALSE, NULL); + ASSERT_NE(INVALID_HANDLE_VALUE, handle); + auto_handle.Reset(handle); + EXPECT_EQ(handle, auto_handle.Get()); + + // Tests that AutoHandle contains INVALID_HANDLE_VALUE by default. + testing::internal::AutoHandle auto_handle2; + EXPECT_EQ(INVALID_HANDLE_VALUE, auto_handle2.Get()); +} +# endif // GTEST_OS_WINDOWS + +# if GTEST_OS_WINDOWS +typedef unsigned __int64 BiggestParsable; +typedef signed __int64 BiggestSignedParsable; +# else +typedef unsigned long long BiggestParsable; +typedef signed long long BiggestSignedParsable; +# endif // GTEST_OS_WINDOWS + +// We cannot use std::numeric_limits::max() as it clashes with the +// max() macro defined by . +const BiggestParsable kBiggestParsableMax = ULLONG_MAX; +const BiggestSignedParsable kBiggestSignedParsableMax = LLONG_MAX; + +TEST(ParseNaturalNumberTest, RejectsInvalidFormat) { + BiggestParsable result = 0; + + // Rejects non-numbers. + EXPECT_FALSE(ParseNaturalNumber("non-number string", &result)); + + // Rejects numbers with whitespace prefix. + EXPECT_FALSE(ParseNaturalNumber(" 123", &result)); + + // Rejects negative numbers. + EXPECT_FALSE(ParseNaturalNumber("-123", &result)); + + // Rejects numbers starting with a plus sign. + EXPECT_FALSE(ParseNaturalNumber("+123", &result)); + errno = 0; +} + +TEST(ParseNaturalNumberTest, RejectsOverflownNumbers) { + BiggestParsable result = 0; + + EXPECT_FALSE(ParseNaturalNumber("99999999999999999999999", &result)); + + signed char char_result = 0; + EXPECT_FALSE(ParseNaturalNumber("200", &char_result)); + errno = 0; +} + +TEST(ParseNaturalNumberTest, AcceptsValidNumbers) { + BiggestParsable result = 0; + + result = 0; + ASSERT_TRUE(ParseNaturalNumber("123", &result)); + EXPECT_EQ(123U, result); + + // Check 0 as an edge case. + result = 1; + ASSERT_TRUE(ParseNaturalNumber("0", &result)); + EXPECT_EQ(0U, result); + + result = 1; + ASSERT_TRUE(ParseNaturalNumber("00000", &result)); + EXPECT_EQ(0U, result); +} + +TEST(ParseNaturalNumberTest, AcceptsTypeLimits) { + Message msg; + msg << kBiggestParsableMax; + + BiggestParsable result = 0; + EXPECT_TRUE(ParseNaturalNumber(msg.GetString(), &result)); + EXPECT_EQ(kBiggestParsableMax, result); + + Message msg2; + msg2 << kBiggestSignedParsableMax; + + BiggestSignedParsable signed_result = 0; + EXPECT_TRUE(ParseNaturalNumber(msg2.GetString(), &signed_result)); + EXPECT_EQ(kBiggestSignedParsableMax, signed_result); + + Message msg3; + msg3 << INT_MAX; + + int int_result = 0; + EXPECT_TRUE(ParseNaturalNumber(msg3.GetString(), &int_result)); + EXPECT_EQ(INT_MAX, int_result); + + Message msg4; + msg4 << UINT_MAX; + + unsigned int uint_result = 0; + EXPECT_TRUE(ParseNaturalNumber(msg4.GetString(), &uint_result)); + EXPECT_EQ(UINT_MAX, uint_result); +} + +TEST(ParseNaturalNumberTest, WorksForShorterIntegers) { + short short_result = 0; + ASSERT_TRUE(ParseNaturalNumber("123", &short_result)); + EXPECT_EQ(123, short_result); + + signed char char_result = 0; + ASSERT_TRUE(ParseNaturalNumber("123", &char_result)); + EXPECT_EQ(123, char_result); +} + +# if GTEST_OS_WINDOWS +TEST(EnvironmentTest, HandleFitsIntoSizeT) { + // TODO(vladl@google.com): Remove this test after this condition is verified + // in a static assertion in gtest-death-test.cc in the function + // GetStatusFileDescriptor. + ASSERT_TRUE(sizeof(HANDLE) <= sizeof(size_t)); +} +# endif // GTEST_OS_WINDOWS + +// Tests that EXPECT_DEATH_IF_SUPPORTED/ASSERT_DEATH_IF_SUPPORTED trigger +// failures when death tests are available on the system. +TEST(ConditionalDeathMacrosDeathTest, ExpectsDeathWhenDeathTestsAvailable) { + EXPECT_DEATH_IF_SUPPORTED(DieInside("CondDeathTestExpectMacro"), + "death inside CondDeathTestExpectMacro"); + ASSERT_DEATH_IF_SUPPORTED(DieInside("CondDeathTestAssertMacro"), + "death inside CondDeathTestAssertMacro"); + + // Empty statement will not crash, which must trigger a failure. + EXPECT_NONFATAL_FAILURE(EXPECT_DEATH_IF_SUPPORTED(;, ""), ""); + EXPECT_FATAL_FAILURE(ASSERT_DEATH_IF_SUPPORTED(;, ""), ""); +} + +#else + +using testing::internal::CaptureStderr; +using testing::internal::GetCapturedStderr; + +// Tests that EXPECT_DEATH_IF_SUPPORTED/ASSERT_DEATH_IF_SUPPORTED are still +// defined but do not trigger failures when death tests are not available on +// the system. +TEST(ConditionalDeathMacrosTest, WarnsWhenDeathTestsNotAvailable) { + // Empty statement will not crash, but that should not trigger a failure + // when death tests are not supported. + CaptureStderr(); + EXPECT_DEATH_IF_SUPPORTED(;, ""); + std::string output = GetCapturedStderr(); + ASSERT_TRUE(NULL != strstr(output.c_str(), + "Death tests are not supported on this platform")); + ASSERT_TRUE(NULL != strstr(output.c_str(), ";")); + + // The streamed message should not be printed as there is no test failure. + CaptureStderr(); + EXPECT_DEATH_IF_SUPPORTED(;, "") << "streamed message"; + output = GetCapturedStderr(); + ASSERT_TRUE(NULL == strstr(output.c_str(), "streamed message")); + + CaptureStderr(); + ASSERT_DEATH_IF_SUPPORTED(;, ""); // NOLINT + output = GetCapturedStderr(); + ASSERT_TRUE(NULL != strstr(output.c_str(), + "Death tests are not supported on this platform")); + ASSERT_TRUE(NULL != strstr(output.c_str(), ";")); + + CaptureStderr(); + ASSERT_DEATH_IF_SUPPORTED(;, "") << "streamed message"; // NOLINT + output = GetCapturedStderr(); + ASSERT_TRUE(NULL == strstr(output.c_str(), "streamed message")); +} + +void FuncWithAssert(int* n) { + ASSERT_DEATH_IF_SUPPORTED(return;, ""); + (*n)++; +} + +// Tests that ASSERT_DEATH_IF_SUPPORTED does not return from the current +// function (as ASSERT_DEATH does) if death tests are not supported. +TEST(ConditionalDeathMacrosTest, AssertDeatDoesNotReturnhIfUnsupported) { + int n = 0; + FuncWithAssert(&n); + EXPECT_EQ(1, n); +} + +TEST(InDeathTestChildDeathTest, ReportsDeathTestCorrectlyInFastStyle) { + testing::GTEST_FLAG(death_test_style) = "fast"; + EXPECT_FALSE(InDeathTestChild()); + EXPECT_DEATH({ + fprintf(stderr, InDeathTestChild() ? "Inside" : "Outside"); + fflush(stderr); + _exit(1); + }, "Inside"); +} + +TEST(InDeathTestChildDeathTest, ReportsDeathTestCorrectlyInThreadSafeStyle) { + testing::GTEST_FLAG(death_test_style) = "threadsafe"; + EXPECT_FALSE(InDeathTestChild()); + EXPECT_DEATH({ + fprintf(stderr, InDeathTestChild() ? "Inside" : "Outside"); + fflush(stderr); + _exit(1); + }, "Inside"); +} + +#endif // GTEST_HAS_DEATH_TEST + +// Tests that the death test macros expand to code which may or may not +// be followed by operator<<, and that in either case the complete text +// comprises only a single C++ statement. +// +// The syntax should work whether death tests are available or not. +TEST(ConditionalDeathMacrosSyntaxDeathTest, SingleStatement) { + if (AlwaysFalse()) + // This would fail if executed; this is a compilation test only + ASSERT_DEATH_IF_SUPPORTED(return, ""); + + if (AlwaysTrue()) + EXPECT_DEATH_IF_SUPPORTED(_exit(1), ""); + else + // This empty "else" branch is meant to ensure that EXPECT_DEATH + // doesn't expand into an "if" statement without an "else" + ; // NOLINT + + if (AlwaysFalse()) + ASSERT_DEATH_IF_SUPPORTED(return, "") << "did not die"; + + if (AlwaysFalse()) + ; // NOLINT + else + EXPECT_DEATH_IF_SUPPORTED(_exit(1), "") << 1 << 2 << 3; +} + +// Tests that conditional death test macros expand to code which interacts +// well with switch statements. +TEST(ConditionalDeathMacrosSyntaxDeathTest, SwitchStatement) { +// Microsoft compiler usually complains about switch statements without +// case labels. We suppress that warning for this test. +#ifdef _MSC_VER +# pragma warning(push) +# pragma warning(disable: 4065) +#endif // _MSC_VER + + switch (0) + default: + ASSERT_DEATH_IF_SUPPORTED(_exit(1), "") + << "exit in default switch handler"; + + switch (0) + case 0: + EXPECT_DEATH_IF_SUPPORTED(_exit(1), "") << "exit in switch case"; + +#ifdef _MSC_VER +# pragma warning(pop) +#endif // _MSC_VER +} + +// Tests that a test case whose name ends with "DeathTest" works fine +// on Windows. +TEST(NotADeathTest, Test) { + SUCCEED(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-filepath_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-filepath_test.cc new file mode 100644 index 000000000..ae9f55a0c --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-filepath_test.cc @@ -0,0 +1,680 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: keith.ray@gmail.com (Keith Ray) +// +// Google Test filepath utilities +// +// This file tests classes and functions used internally by +// Google Test. They are subject to change without notice. +// +// This file is #included from gtest_unittest.cc, to avoid changing +// build or make-files for some existing Google Test clients. Do not +// #include this file anywhere else! + +#include "gtest/internal/gtest-filepath.h" +#include "gtest/gtest.h" + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +#if GTEST_OS_WINDOWS_MOBILE +# include // NOLINT +#elif GTEST_OS_WINDOWS +# include // NOLINT +#endif // GTEST_OS_WINDOWS_MOBILE + +namespace testing { +namespace internal { +namespace { + +#if GTEST_OS_WINDOWS_MOBILE +// TODO(wan@google.com): Move these to the POSIX adapter section in +// gtest-port.h. + +// Windows CE doesn't have the remove C function. +int remove(const char* path) { + LPCWSTR wpath = String::AnsiToUtf16(path); + int ret = DeleteFile(wpath) ? 0 : -1; + delete [] wpath; + return ret; +} +// Windows CE doesn't have the _rmdir C function. +int _rmdir(const char* path) { + FilePath filepath(path); + LPCWSTR wpath = String::AnsiToUtf16( + filepath.RemoveTrailingPathSeparator().c_str()); + int ret = RemoveDirectory(wpath) ? 0 : -1; + delete [] wpath; + return ret; +} + +#else + +TEST(GetCurrentDirTest, ReturnsCurrentDir) { + const FilePath original_dir = FilePath::GetCurrentDir(); + EXPECT_FALSE(original_dir.IsEmpty()); + + posix::ChDir(GTEST_PATH_SEP_); + const FilePath cwd = FilePath::GetCurrentDir(); + posix::ChDir(original_dir.c_str()); + +# if GTEST_OS_WINDOWS + + // Skips the ":". + const char* const cwd_without_drive = strchr(cwd.c_str(), ':'); + ASSERT_TRUE(cwd_without_drive != NULL); + EXPECT_STREQ(GTEST_PATH_SEP_, cwd_without_drive + 1); + +# else + + EXPECT_EQ(GTEST_PATH_SEP_, cwd.string()); + +# endif +} + +#endif // GTEST_OS_WINDOWS_MOBILE + +TEST(IsEmptyTest, ReturnsTrueForEmptyPath) { + EXPECT_TRUE(FilePath("").IsEmpty()); +} + +TEST(IsEmptyTest, ReturnsFalseForNonEmptyPath) { + EXPECT_FALSE(FilePath("a").IsEmpty()); + EXPECT_FALSE(FilePath(".").IsEmpty()); + EXPECT_FALSE(FilePath("a/b").IsEmpty()); + EXPECT_FALSE(FilePath("a\\b\\").IsEmpty()); +} + +// RemoveDirectoryName "" -> "" +TEST(RemoveDirectoryNameTest, WhenEmptyName) { + EXPECT_EQ("", FilePath("").RemoveDirectoryName().string()); +} + +// RemoveDirectoryName "afile" -> "afile" +TEST(RemoveDirectoryNameTest, ButNoDirectory) { + EXPECT_EQ("afile", + FilePath("afile").RemoveDirectoryName().string()); +} + +// RemoveDirectoryName "/afile" -> "afile" +TEST(RemoveDirectoryNameTest, RootFileShouldGiveFileName) { + EXPECT_EQ("afile", + FilePath(GTEST_PATH_SEP_ "afile").RemoveDirectoryName().string()); +} + +// RemoveDirectoryName "adir/" -> "" +TEST(RemoveDirectoryNameTest, WhereThereIsNoFileName) { + EXPECT_EQ("", + FilePath("adir" GTEST_PATH_SEP_).RemoveDirectoryName().string()); +} + +// RemoveDirectoryName "adir/afile" -> "afile" +TEST(RemoveDirectoryNameTest, ShouldGiveFileName) { + EXPECT_EQ("afile", + FilePath("adir" GTEST_PATH_SEP_ "afile").RemoveDirectoryName().string()); +} + +// RemoveDirectoryName "adir/subdir/afile" -> "afile" +TEST(RemoveDirectoryNameTest, ShouldAlsoGiveFileName) { + EXPECT_EQ("afile", + FilePath("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_ "afile") + .RemoveDirectoryName().string()); +} + +#if GTEST_HAS_ALT_PATH_SEP_ + +// Tests that RemoveDirectoryName() works with the alternate separator +// on Windows. + +// RemoveDirectoryName("/afile") -> "afile" +TEST(RemoveDirectoryNameTest, RootFileShouldGiveFileNameForAlternateSeparator) { + EXPECT_EQ("afile", FilePath("/afile").RemoveDirectoryName().string()); +} + +// RemoveDirectoryName("adir/") -> "" +TEST(RemoveDirectoryNameTest, WhereThereIsNoFileNameForAlternateSeparator) { + EXPECT_EQ("", FilePath("adir/").RemoveDirectoryName().string()); +} + +// RemoveDirectoryName("adir/afile") -> "afile" +TEST(RemoveDirectoryNameTest, ShouldGiveFileNameForAlternateSeparator) { + EXPECT_EQ("afile", FilePath("adir/afile").RemoveDirectoryName().string()); +} + +// RemoveDirectoryName("adir/subdir/afile") -> "afile" +TEST(RemoveDirectoryNameTest, ShouldAlsoGiveFileNameForAlternateSeparator) { + EXPECT_EQ("afile", + FilePath("adir/subdir/afile").RemoveDirectoryName().string()); +} + +#endif + +// RemoveFileName "" -> "./" +TEST(RemoveFileNameTest, EmptyName) { +#if GTEST_OS_WINDOWS_MOBILE + // On Windows CE, we use the root as the current directory. + EXPECT_EQ(GTEST_PATH_SEP_, FilePath("").RemoveFileName().string()); +#else + EXPECT_EQ("." GTEST_PATH_SEP_, FilePath("").RemoveFileName().string()); +#endif +} + +// RemoveFileName "adir/" -> "adir/" +TEST(RemoveFileNameTest, ButNoFile) { + EXPECT_EQ("adir" GTEST_PATH_SEP_, + FilePath("adir" GTEST_PATH_SEP_).RemoveFileName().string()); +} + +// RemoveFileName "adir/afile" -> "adir/" +TEST(RemoveFileNameTest, GivesDirName) { + EXPECT_EQ("adir" GTEST_PATH_SEP_, + FilePath("adir" GTEST_PATH_SEP_ "afile").RemoveFileName().string()); +} + +// RemoveFileName "adir/subdir/afile" -> "adir/subdir/" +TEST(RemoveFileNameTest, GivesDirAndSubDirName) { + EXPECT_EQ("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_, + FilePath("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_ "afile") + .RemoveFileName().string()); +} + +// RemoveFileName "/afile" -> "/" +TEST(RemoveFileNameTest, GivesRootDir) { + EXPECT_EQ(GTEST_PATH_SEP_, + FilePath(GTEST_PATH_SEP_ "afile").RemoveFileName().string()); +} + +#if GTEST_HAS_ALT_PATH_SEP_ + +// Tests that RemoveFileName() works with the alternate separator on +// Windows. + +// RemoveFileName("adir/") -> "adir/" +TEST(RemoveFileNameTest, ButNoFileForAlternateSeparator) { + EXPECT_EQ("adir" GTEST_PATH_SEP_, + FilePath("adir/").RemoveFileName().string()); +} + +// RemoveFileName("adir/afile") -> "adir/" +TEST(RemoveFileNameTest, GivesDirNameForAlternateSeparator) { + EXPECT_EQ("adir" GTEST_PATH_SEP_, + FilePath("adir/afile").RemoveFileName().string()); +} + +// RemoveFileName("adir/subdir/afile") -> "adir/subdir/" +TEST(RemoveFileNameTest, GivesDirAndSubDirNameForAlternateSeparator) { + EXPECT_EQ("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_, + FilePath("adir/subdir/afile").RemoveFileName().string()); +} + +// RemoveFileName("/afile") -> "\" +TEST(RemoveFileNameTest, GivesRootDirForAlternateSeparator) { + EXPECT_EQ(GTEST_PATH_SEP_, FilePath("/afile").RemoveFileName().string()); +} + +#endif + +TEST(MakeFileNameTest, GenerateWhenNumberIsZero) { + FilePath actual = FilePath::MakeFileName(FilePath("foo"), FilePath("bar"), + 0, "xml"); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.string()); +} + +TEST(MakeFileNameTest, GenerateFileNameNumberGtZero) { + FilePath actual = FilePath::MakeFileName(FilePath("foo"), FilePath("bar"), + 12, "xml"); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar_12.xml", actual.string()); +} + +TEST(MakeFileNameTest, GenerateFileNameWithSlashNumberIsZero) { + FilePath actual = FilePath::MakeFileName(FilePath("foo" GTEST_PATH_SEP_), + FilePath("bar"), 0, "xml"); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.string()); +} + +TEST(MakeFileNameTest, GenerateFileNameWithSlashNumberGtZero) { + FilePath actual = FilePath::MakeFileName(FilePath("foo" GTEST_PATH_SEP_), + FilePath("bar"), 12, "xml"); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar_12.xml", actual.string()); +} + +TEST(MakeFileNameTest, GenerateWhenNumberIsZeroAndDirIsEmpty) { + FilePath actual = FilePath::MakeFileName(FilePath(""), FilePath("bar"), + 0, "xml"); + EXPECT_EQ("bar.xml", actual.string()); +} + +TEST(MakeFileNameTest, GenerateWhenNumberIsNotZeroAndDirIsEmpty) { + FilePath actual = FilePath::MakeFileName(FilePath(""), FilePath("bar"), + 14, "xml"); + EXPECT_EQ("bar_14.xml", actual.string()); +} + +TEST(ConcatPathsTest, WorksWhenDirDoesNotEndWithPathSep) { + FilePath actual = FilePath::ConcatPaths(FilePath("foo"), + FilePath("bar.xml")); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.string()); +} + +TEST(ConcatPathsTest, WorksWhenPath1EndsWithPathSep) { + FilePath actual = FilePath::ConcatPaths(FilePath("foo" GTEST_PATH_SEP_), + FilePath("bar.xml")); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.string()); +} + +TEST(ConcatPathsTest, Path1BeingEmpty) { + FilePath actual = FilePath::ConcatPaths(FilePath(""), + FilePath("bar.xml")); + EXPECT_EQ("bar.xml", actual.string()); +} + +TEST(ConcatPathsTest, Path2BeingEmpty) { + FilePath actual = FilePath::ConcatPaths(FilePath("foo"), FilePath("")); + EXPECT_EQ("foo" GTEST_PATH_SEP_, actual.string()); +} + +TEST(ConcatPathsTest, BothPathBeingEmpty) { + FilePath actual = FilePath::ConcatPaths(FilePath(""), + FilePath("")); + EXPECT_EQ("", actual.string()); +} + +TEST(ConcatPathsTest, Path1ContainsPathSep) { + FilePath actual = FilePath::ConcatPaths(FilePath("foo" GTEST_PATH_SEP_ "bar"), + FilePath("foobar.xml")); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_ "foobar.xml", + actual.string()); +} + +TEST(ConcatPathsTest, Path2ContainsPathSep) { + FilePath actual = FilePath::ConcatPaths( + FilePath("foo" GTEST_PATH_SEP_), + FilePath("bar" GTEST_PATH_SEP_ "bar.xml")); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_ "bar.xml", + actual.string()); +} + +TEST(ConcatPathsTest, Path2EndsWithPathSep) { + FilePath actual = FilePath::ConcatPaths(FilePath("foo"), + FilePath("bar" GTEST_PATH_SEP_)); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_, actual.string()); +} + +// RemoveTrailingPathSeparator "" -> "" +TEST(RemoveTrailingPathSeparatorTest, EmptyString) { + EXPECT_EQ("", FilePath("").RemoveTrailingPathSeparator().string()); +} + +// RemoveTrailingPathSeparator "foo" -> "foo" +TEST(RemoveTrailingPathSeparatorTest, FileNoSlashString) { + EXPECT_EQ("foo", FilePath("foo").RemoveTrailingPathSeparator().string()); +} + +// RemoveTrailingPathSeparator "foo/" -> "foo" +TEST(RemoveTrailingPathSeparatorTest, ShouldRemoveTrailingSeparator) { + EXPECT_EQ("foo", + FilePath("foo" GTEST_PATH_SEP_).RemoveTrailingPathSeparator().string()); +#if GTEST_HAS_ALT_PATH_SEP_ + EXPECT_EQ("foo", FilePath("foo/").RemoveTrailingPathSeparator().string()); +#endif +} + +// RemoveTrailingPathSeparator "foo/bar/" -> "foo/bar/" +TEST(RemoveTrailingPathSeparatorTest, ShouldRemoveLastSeparator) { + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar", + FilePath("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_) + .RemoveTrailingPathSeparator().string()); +} + +// RemoveTrailingPathSeparator "foo/bar" -> "foo/bar" +TEST(RemoveTrailingPathSeparatorTest, ShouldReturnUnmodified) { + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar", + FilePath("foo" GTEST_PATH_SEP_ "bar") + .RemoveTrailingPathSeparator().string()); +} + +TEST(DirectoryTest, RootDirectoryExists) { +#if GTEST_OS_WINDOWS // We are on Windows. + char current_drive[_MAX_PATH]; // NOLINT + current_drive[0] = static_cast(_getdrive() + 'A' - 1); + current_drive[1] = ':'; + current_drive[2] = '\\'; + current_drive[3] = '\0'; + EXPECT_TRUE(FilePath(current_drive).DirectoryExists()); +#else + EXPECT_TRUE(FilePath("/").DirectoryExists()); +#endif // GTEST_OS_WINDOWS +} + +#if GTEST_OS_WINDOWS +TEST(DirectoryTest, RootOfWrongDriveDoesNotExists) { + const int saved_drive_ = _getdrive(); + // Find a drive that doesn't exist. Start with 'Z' to avoid common ones. + for (char drive = 'Z'; drive >= 'A'; drive--) + if (_chdrive(drive - 'A' + 1) == -1) { + char non_drive[_MAX_PATH]; // NOLINT + non_drive[0] = drive; + non_drive[1] = ':'; + non_drive[2] = '\\'; + non_drive[3] = '\0'; + EXPECT_FALSE(FilePath(non_drive).DirectoryExists()); + break; + } + _chdrive(saved_drive_); +} +#endif // GTEST_OS_WINDOWS + +#if !GTEST_OS_WINDOWS_MOBILE +// Windows CE _does_ consider an empty directory to exist. +TEST(DirectoryTest, EmptyPathDirectoryDoesNotExist) { + EXPECT_FALSE(FilePath("").DirectoryExists()); +} +#endif // !GTEST_OS_WINDOWS_MOBILE + +TEST(DirectoryTest, CurrentDirectoryExists) { +#if GTEST_OS_WINDOWS // We are on Windows. +# ifndef _WIN32_CE // Windows CE doesn't have a current directory. + + EXPECT_TRUE(FilePath(".").DirectoryExists()); + EXPECT_TRUE(FilePath(".\\").DirectoryExists()); + +# endif // _WIN32_CE +#else + EXPECT_TRUE(FilePath(".").DirectoryExists()); + EXPECT_TRUE(FilePath("./").DirectoryExists()); +#endif // GTEST_OS_WINDOWS +} + +// "foo/bar" == foo//bar" == "foo///bar" +TEST(NormalizeTest, MultipleConsecutiveSepaparatorsInMidstring) { + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar", + FilePath("foo" GTEST_PATH_SEP_ "bar").string()); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar", + FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_ "bar").string()); + EXPECT_EQ("foo" GTEST_PATH_SEP_ "bar", + FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_ + GTEST_PATH_SEP_ "bar").string()); +} + +// "/bar" == //bar" == "///bar" +TEST(NormalizeTest, MultipleConsecutiveSepaparatorsAtStringStart) { + EXPECT_EQ(GTEST_PATH_SEP_ "bar", + FilePath(GTEST_PATH_SEP_ "bar").string()); + EXPECT_EQ(GTEST_PATH_SEP_ "bar", + FilePath(GTEST_PATH_SEP_ GTEST_PATH_SEP_ "bar").string()); + EXPECT_EQ(GTEST_PATH_SEP_ "bar", + FilePath(GTEST_PATH_SEP_ GTEST_PATH_SEP_ GTEST_PATH_SEP_ "bar").string()); +} + +// "foo/" == foo//" == "foo///" +TEST(NormalizeTest, MultipleConsecutiveSepaparatorsAtStringEnd) { + EXPECT_EQ("foo" GTEST_PATH_SEP_, + FilePath("foo" GTEST_PATH_SEP_).string()); + EXPECT_EQ("foo" GTEST_PATH_SEP_, + FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_).string()); + EXPECT_EQ("foo" GTEST_PATH_SEP_, + FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_ GTEST_PATH_SEP_).string()); +} + +#if GTEST_HAS_ALT_PATH_SEP_ + +// Tests that separators at the end of the string are normalized +// regardless of their combination (e.g. "foo\" =="foo/\" == +// "foo\\/"). +TEST(NormalizeTest, MixAlternateSeparatorAtStringEnd) { + EXPECT_EQ("foo" GTEST_PATH_SEP_, + FilePath("foo/").string()); + EXPECT_EQ("foo" GTEST_PATH_SEP_, + FilePath("foo" GTEST_PATH_SEP_ "/").string()); + EXPECT_EQ("foo" GTEST_PATH_SEP_, + FilePath("foo//" GTEST_PATH_SEP_).string()); +} + +#endif + +TEST(AssignmentOperatorTest, DefaultAssignedToNonDefault) { + FilePath default_path; + FilePath non_default_path("path"); + non_default_path = default_path; + EXPECT_EQ("", non_default_path.string()); + EXPECT_EQ("", default_path.string()); // RHS var is unchanged. +} + +TEST(AssignmentOperatorTest, NonDefaultAssignedToDefault) { + FilePath non_default_path("path"); + FilePath default_path; + default_path = non_default_path; + EXPECT_EQ("path", default_path.string()); + EXPECT_EQ("path", non_default_path.string()); // RHS var is unchanged. +} + +TEST(AssignmentOperatorTest, ConstAssignedToNonConst) { + const FilePath const_default_path("const_path"); + FilePath non_default_path("path"); + non_default_path = const_default_path; + EXPECT_EQ("const_path", non_default_path.string()); +} + +class DirectoryCreationTest : public Test { + protected: + virtual void SetUp() { + testdata_path_.Set(FilePath( + TempDir() + GetCurrentExecutableName().string() + + "_directory_creation" GTEST_PATH_SEP_ "test" GTEST_PATH_SEP_)); + testdata_file_.Set(testdata_path_.RemoveTrailingPathSeparator()); + + unique_file0_.Set(FilePath::MakeFileName(testdata_path_, FilePath("unique"), + 0, "txt")); + unique_file1_.Set(FilePath::MakeFileName(testdata_path_, FilePath("unique"), + 1, "txt")); + + remove(testdata_file_.c_str()); + remove(unique_file0_.c_str()); + remove(unique_file1_.c_str()); + posix::RmDir(testdata_path_.c_str()); + } + + virtual void TearDown() { + remove(testdata_file_.c_str()); + remove(unique_file0_.c_str()); + remove(unique_file1_.c_str()); + posix::RmDir(testdata_path_.c_str()); + } + + std::string TempDir() const { +#if GTEST_OS_WINDOWS_MOBILE + return "\\temp\\"; +#elif GTEST_OS_WINDOWS + const char* temp_dir = posix::GetEnv("TEMP"); + if (temp_dir == NULL || temp_dir[0] == '\0') + return "\\temp\\"; + else if (temp_dir[strlen(temp_dir) - 1] == '\\') + return temp_dir; + else + return std::string(temp_dir) + "\\"; +#elif GTEST_OS_LINUX_ANDROID + return "/sdcard/"; +#else + return "/tmp/"; +#endif // GTEST_OS_WINDOWS_MOBILE + } + + void CreateTextFile(const char* filename) { + FILE* f = posix::FOpen(filename, "w"); + fprintf(f, "text\n"); + fclose(f); + } + + // Strings representing a directory and a file, with identical paths + // except for the trailing separator character that distinquishes + // a directory named 'test' from a file named 'test'. Example names: + FilePath testdata_path_; // "/tmp/directory_creation/test/" + FilePath testdata_file_; // "/tmp/directory_creation/test" + FilePath unique_file0_; // "/tmp/directory_creation/test/unique.txt" + FilePath unique_file1_; // "/tmp/directory_creation/test/unique_1.txt" +}; + +TEST_F(DirectoryCreationTest, CreateDirectoriesRecursively) { + EXPECT_FALSE(testdata_path_.DirectoryExists()) << testdata_path_.string(); + EXPECT_TRUE(testdata_path_.CreateDirectoriesRecursively()); + EXPECT_TRUE(testdata_path_.DirectoryExists()); +} + +TEST_F(DirectoryCreationTest, CreateDirectoriesForAlreadyExistingPath) { + EXPECT_FALSE(testdata_path_.DirectoryExists()) << testdata_path_.string(); + EXPECT_TRUE(testdata_path_.CreateDirectoriesRecursively()); + // Call 'create' again... should still succeed. + EXPECT_TRUE(testdata_path_.CreateDirectoriesRecursively()); +} + +TEST_F(DirectoryCreationTest, CreateDirectoriesAndUniqueFilename) { + FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_, + FilePath("unique"), "txt")); + EXPECT_EQ(unique_file0_.string(), file_path.string()); + EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there + + testdata_path_.CreateDirectoriesRecursively(); + EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there + CreateTextFile(file_path.c_str()); + EXPECT_TRUE(file_path.FileOrDirectoryExists()); + + FilePath file_path2(FilePath::GenerateUniqueFileName(testdata_path_, + FilePath("unique"), "txt")); + EXPECT_EQ(unique_file1_.string(), file_path2.string()); + EXPECT_FALSE(file_path2.FileOrDirectoryExists()); // file not there + CreateTextFile(file_path2.c_str()); + EXPECT_TRUE(file_path2.FileOrDirectoryExists()); +} + +TEST_F(DirectoryCreationTest, CreateDirectoriesFail) { + // force a failure by putting a file where we will try to create a directory. + CreateTextFile(testdata_file_.c_str()); + EXPECT_TRUE(testdata_file_.FileOrDirectoryExists()); + EXPECT_FALSE(testdata_file_.DirectoryExists()); + EXPECT_FALSE(testdata_file_.CreateDirectoriesRecursively()); +} + +TEST(NoDirectoryCreationTest, CreateNoDirectoriesForDefaultXmlFile) { + const FilePath test_detail_xml("test_detail.xml"); + EXPECT_FALSE(test_detail_xml.CreateDirectoriesRecursively()); +} + +TEST(FilePathTest, DefaultConstructor) { + FilePath fp; + EXPECT_EQ("", fp.string()); +} + +TEST(FilePathTest, CharAndCopyConstructors) { + const FilePath fp("spicy"); + EXPECT_EQ("spicy", fp.string()); + + const FilePath fp_copy(fp); + EXPECT_EQ("spicy", fp_copy.string()); +} + +TEST(FilePathTest, StringConstructor) { + const FilePath fp(std::string("cider")); + EXPECT_EQ("cider", fp.string()); +} + +TEST(FilePathTest, Set) { + const FilePath apple("apple"); + FilePath mac("mac"); + mac.Set(apple); // Implement Set() since overloading operator= is forbidden. + EXPECT_EQ("apple", mac.string()); + EXPECT_EQ("apple", apple.string()); +} + +TEST(FilePathTest, ToString) { + const FilePath file("drink"); + EXPECT_EQ("drink", file.string()); +} + +TEST(FilePathTest, RemoveExtension) { + EXPECT_EQ("app", FilePath("app.cc").RemoveExtension("cc").string()); + EXPECT_EQ("app", FilePath("app.exe").RemoveExtension("exe").string()); + EXPECT_EQ("APP", FilePath("APP.EXE").RemoveExtension("exe").string()); +} + +TEST(FilePathTest, RemoveExtensionWhenThereIsNoExtension) { + EXPECT_EQ("app", FilePath("app").RemoveExtension("exe").string()); +} + +TEST(FilePathTest, IsDirectory) { + EXPECT_FALSE(FilePath("cola").IsDirectory()); + EXPECT_TRUE(FilePath("koala" GTEST_PATH_SEP_).IsDirectory()); +#if GTEST_HAS_ALT_PATH_SEP_ + EXPECT_TRUE(FilePath("koala/").IsDirectory()); +#endif +} + +TEST(FilePathTest, IsAbsolutePath) { + EXPECT_FALSE(FilePath("is" GTEST_PATH_SEP_ "relative").IsAbsolutePath()); + EXPECT_FALSE(FilePath("").IsAbsolutePath()); +#if GTEST_OS_WINDOWS + EXPECT_TRUE(FilePath("c:\\" GTEST_PATH_SEP_ "is_not" + GTEST_PATH_SEP_ "relative").IsAbsolutePath()); + EXPECT_FALSE(FilePath("c:foo" GTEST_PATH_SEP_ "bar").IsAbsolutePath()); + EXPECT_TRUE(FilePath("c:/" GTEST_PATH_SEP_ "is_not" + GTEST_PATH_SEP_ "relative").IsAbsolutePath()); +#else + EXPECT_TRUE(FilePath(GTEST_PATH_SEP_ "is_not" GTEST_PATH_SEP_ "relative") + .IsAbsolutePath()); +#endif // GTEST_OS_WINDOWS +} + +TEST(FilePathTest, IsRootDirectory) { +#if GTEST_OS_WINDOWS + EXPECT_TRUE(FilePath("a:\\").IsRootDirectory()); + EXPECT_TRUE(FilePath("Z:/").IsRootDirectory()); + EXPECT_TRUE(FilePath("e://").IsRootDirectory()); + EXPECT_FALSE(FilePath("").IsRootDirectory()); + EXPECT_FALSE(FilePath("b:").IsRootDirectory()); + EXPECT_FALSE(FilePath("b:a").IsRootDirectory()); + EXPECT_FALSE(FilePath("8:/").IsRootDirectory()); + EXPECT_FALSE(FilePath("c|/").IsRootDirectory()); +#else + EXPECT_TRUE(FilePath("/").IsRootDirectory()); + EXPECT_TRUE(FilePath("//").IsRootDirectory()); + EXPECT_FALSE(FilePath("").IsRootDirectory()); + EXPECT_FALSE(FilePath("\\").IsRootDirectory()); + EXPECT_FALSE(FilePath("/x").IsRootDirectory()); +#endif +} + +} // namespace +} // namespace internal +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-linked_ptr_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-linked_ptr_test.cc new file mode 100644 index 000000000..6fcf5124a --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-linked_ptr_test.cc @@ -0,0 +1,154 @@ +// Copyright 2003, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: Dan Egnor (egnor@google.com) +// Ported to Windows: Vadim Berman (vadimb@google.com) + +#include "gtest/internal/gtest-linked_ptr.h" + +#include +#include "gtest/gtest.h" + +namespace { + +using testing::Message; +using testing::internal::linked_ptr; + +int num; +Message* history = NULL; + +// Class which tracks allocation/deallocation +class A { + public: + A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; } + virtual ~A() { *history << "A" << mynum << " dtor\n"; } + virtual void Use() { *history << "A" << mynum << " use\n"; } + protected: + int mynum; +}; + +// Subclass +class B : public A { + public: + B() { *history << "B" << mynum << " ctor\n"; } + ~B() { *history << "B" << mynum << " dtor\n"; } + virtual void Use() { *history << "B" << mynum << " use\n"; } +}; + +class LinkedPtrTest : public testing::Test { + public: + LinkedPtrTest() { + num = 0; + history = new Message; + } + + virtual ~LinkedPtrTest() { + delete history; + history = NULL; + } +}; + +TEST_F(LinkedPtrTest, GeneralTest) { + { + linked_ptr a0, a1, a2; + // Use explicit function call notation here to suppress self-assign warning. + a0.operator=(a0); + a1 = a2; + ASSERT_EQ(a0.get(), static_cast(NULL)); + ASSERT_EQ(a1.get(), static_cast(NULL)); + ASSERT_EQ(a2.get(), static_cast(NULL)); + ASSERT_TRUE(a0 == NULL); + ASSERT_TRUE(a1 == NULL); + ASSERT_TRUE(a2 == NULL); + + { + linked_ptr a3(new A); + a0 = a3; + ASSERT_TRUE(a0 == a3); + ASSERT_TRUE(a0 != NULL); + ASSERT_TRUE(a0.get() == a3); + ASSERT_TRUE(a0 == a3.get()); + linked_ptr a4(a0); + a1 = a4; + linked_ptr a5(new A); + ASSERT_TRUE(a5.get() != a3); + ASSERT_TRUE(a5 != a3.get()); + a2 = a5; + linked_ptr b0(new B); + linked_ptr a6(b0); + ASSERT_TRUE(b0 == a6); + ASSERT_TRUE(a6 == b0); + ASSERT_TRUE(b0 != NULL); + a5 = b0; + a5 = b0; + a3->Use(); + a4->Use(); + a5->Use(); + a6->Use(); + b0->Use(); + (*b0).Use(); + b0.get()->Use(); + } + + a0->Use(); + a1->Use(); + a2->Use(); + + a1 = a2; + a2.reset(new A); + a0.reset(); + + linked_ptr a7; + } + + ASSERT_STREQ( + "A0 ctor\n" + "A1 ctor\n" + "A2 ctor\n" + "B2 ctor\n" + "A0 use\n" + "A0 use\n" + "B2 use\n" + "B2 use\n" + "B2 use\n" + "B2 use\n" + "B2 use\n" + "B2 dtor\n" + "A2 dtor\n" + "A0 use\n" + "A0 use\n" + "A1 use\n" + "A3 ctor\n" + "A0 dtor\n" + "A3 dtor\n" + "A1 dtor\n", + history->GetString().c_str()); +} + +} // Unnamed namespace diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-listener_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-listener_test.cc new file mode 100644 index 000000000..99662cff3 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-listener_test.cc @@ -0,0 +1,310 @@ +// Copyright 2009 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) +// +// The Google C++ Testing Framework (Google Test) +// +// This file verifies Google Test event listeners receive events at the +// right times. + +#include "gtest/gtest.h" +#include + +using ::testing::AddGlobalTestEnvironment; +using ::testing::Environment; +using ::testing::InitGoogleTest; +using ::testing::Test; +using ::testing::TestCase; +using ::testing::TestEventListener; +using ::testing::TestInfo; +using ::testing::TestPartResult; +using ::testing::UnitTest; + +// Used by tests to register their events. +std::vector* g_events = NULL; + +namespace testing { +namespace internal { + +class EventRecordingListener : public TestEventListener { + public: + explicit EventRecordingListener(const char* name) : name_(name) {} + + protected: + virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) { + g_events->push_back(GetFullMethodName("OnTestProgramStart")); + } + + virtual void OnTestIterationStart(const UnitTest& /*unit_test*/, + int iteration) { + Message message; + message << GetFullMethodName("OnTestIterationStart") + << "(" << iteration << ")"; + g_events->push_back(message.GetString()); + } + + virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) { + g_events->push_back(GetFullMethodName("OnEnvironmentsSetUpStart")); + } + + virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) { + g_events->push_back(GetFullMethodName("OnEnvironmentsSetUpEnd")); + } + + virtual void OnTestCaseStart(const TestCase& /*test_case*/) { + g_events->push_back(GetFullMethodName("OnTestCaseStart")); + } + + virtual void OnTestStart(const TestInfo& /*test_info*/) { + g_events->push_back(GetFullMethodName("OnTestStart")); + } + + virtual void OnTestPartResult(const TestPartResult& /*test_part_result*/) { + g_events->push_back(GetFullMethodName("OnTestPartResult")); + } + + virtual void OnTestEnd(const TestInfo& /*test_info*/) { + g_events->push_back(GetFullMethodName("OnTestEnd")); + } + + virtual void OnTestCaseEnd(const TestCase& /*test_case*/) { + g_events->push_back(GetFullMethodName("OnTestCaseEnd")); + } + + virtual void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) { + g_events->push_back(GetFullMethodName("OnEnvironmentsTearDownStart")); + } + + virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) { + g_events->push_back(GetFullMethodName("OnEnvironmentsTearDownEnd")); + } + + virtual void OnTestIterationEnd(const UnitTest& /*unit_test*/, + int iteration) { + Message message; + message << GetFullMethodName("OnTestIterationEnd") + << "(" << iteration << ")"; + g_events->push_back(message.GetString()); + } + + virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) { + g_events->push_back(GetFullMethodName("OnTestProgramEnd")); + } + + private: + std::string GetFullMethodName(const char* name) { + return name_ + "." + name; + } + + std::string name_; +}; + +class EnvironmentInvocationCatcher : public Environment { + protected: + virtual void SetUp() { + g_events->push_back("Environment::SetUp"); + } + + virtual void TearDown() { + g_events->push_back("Environment::TearDown"); + } +}; + +class ListenerTest : public Test { + protected: + static void SetUpTestCase() { + g_events->push_back("ListenerTest::SetUpTestCase"); + } + + static void TearDownTestCase() { + g_events->push_back("ListenerTest::TearDownTestCase"); + } + + virtual void SetUp() { + g_events->push_back("ListenerTest::SetUp"); + } + + virtual void TearDown() { + g_events->push_back("ListenerTest::TearDown"); + } +}; + +TEST_F(ListenerTest, DoesFoo) { + // Test execution order within a test case is not guaranteed so we are not + // recording the test name. + g_events->push_back("ListenerTest::* Test Body"); + SUCCEED(); // Triggers OnTestPartResult. +} + +TEST_F(ListenerTest, DoesBar) { + g_events->push_back("ListenerTest::* Test Body"); + SUCCEED(); // Triggers OnTestPartResult. +} + +} // namespace internal + +} // namespace testing + +using ::testing::internal::EnvironmentInvocationCatcher; +using ::testing::internal::EventRecordingListener; + +void VerifyResults(const std::vector& data, + const char* const* expected_data, + int expected_data_size) { + const int actual_size = data.size(); + // If the following assertion fails, a new entry will be appended to + // data. Hence we save data.size() first. + EXPECT_EQ(expected_data_size, actual_size); + + // Compares the common prefix. + const int shorter_size = expected_data_size <= actual_size ? + expected_data_size : actual_size; + int i = 0; + for (; i < shorter_size; ++i) { + ASSERT_STREQ(expected_data[i], data[i].c_str()) + << "at position " << i; + } + + // Prints extra elements in the actual data. + for (; i < actual_size; ++i) { + printf(" Actual event #%d: %s\n", i, data[i].c_str()); + } +} + +int main(int argc, char **argv) { + std::vector events; + g_events = &events; + InitGoogleTest(&argc, argv); + + UnitTest::GetInstance()->listeners().Append( + new EventRecordingListener("1st")); + UnitTest::GetInstance()->listeners().Append( + new EventRecordingListener("2nd")); + + AddGlobalTestEnvironment(new EnvironmentInvocationCatcher); + + GTEST_CHECK_(events.size() == 0) + << "AddGlobalTestEnvironment should not generate any events itself."; + + ::testing::GTEST_FLAG(repeat) = 2; + int ret_val = RUN_ALL_TESTS(); + + const char* const expected_events[] = { + "1st.OnTestProgramStart", + "2nd.OnTestProgramStart", + "1st.OnTestIterationStart(0)", + "2nd.OnTestIterationStart(0)", + "1st.OnEnvironmentsSetUpStart", + "2nd.OnEnvironmentsSetUpStart", + "Environment::SetUp", + "2nd.OnEnvironmentsSetUpEnd", + "1st.OnEnvironmentsSetUpEnd", + "1st.OnTestCaseStart", + "2nd.OnTestCaseStart", + "ListenerTest::SetUpTestCase", + "1st.OnTestStart", + "2nd.OnTestStart", + "ListenerTest::SetUp", + "ListenerTest::* Test Body", + "1st.OnTestPartResult", + "2nd.OnTestPartResult", + "ListenerTest::TearDown", + "2nd.OnTestEnd", + "1st.OnTestEnd", + "1st.OnTestStart", + "2nd.OnTestStart", + "ListenerTest::SetUp", + "ListenerTest::* Test Body", + "1st.OnTestPartResult", + "2nd.OnTestPartResult", + "ListenerTest::TearDown", + "2nd.OnTestEnd", + "1st.OnTestEnd", + "ListenerTest::TearDownTestCase", + "2nd.OnTestCaseEnd", + "1st.OnTestCaseEnd", + "1st.OnEnvironmentsTearDownStart", + "2nd.OnEnvironmentsTearDownStart", + "Environment::TearDown", + "2nd.OnEnvironmentsTearDownEnd", + "1st.OnEnvironmentsTearDownEnd", + "2nd.OnTestIterationEnd(0)", + "1st.OnTestIterationEnd(0)", + "1st.OnTestIterationStart(1)", + "2nd.OnTestIterationStart(1)", + "1st.OnEnvironmentsSetUpStart", + "2nd.OnEnvironmentsSetUpStart", + "Environment::SetUp", + "2nd.OnEnvironmentsSetUpEnd", + "1st.OnEnvironmentsSetUpEnd", + "1st.OnTestCaseStart", + "2nd.OnTestCaseStart", + "ListenerTest::SetUpTestCase", + "1st.OnTestStart", + "2nd.OnTestStart", + "ListenerTest::SetUp", + "ListenerTest::* Test Body", + "1st.OnTestPartResult", + "2nd.OnTestPartResult", + "ListenerTest::TearDown", + "2nd.OnTestEnd", + "1st.OnTestEnd", + "1st.OnTestStart", + "2nd.OnTestStart", + "ListenerTest::SetUp", + "ListenerTest::* Test Body", + "1st.OnTestPartResult", + "2nd.OnTestPartResult", + "ListenerTest::TearDown", + "2nd.OnTestEnd", + "1st.OnTestEnd", + "ListenerTest::TearDownTestCase", + "2nd.OnTestCaseEnd", + "1st.OnTestCaseEnd", + "1st.OnEnvironmentsTearDownStart", + "2nd.OnEnvironmentsTearDownStart", + "Environment::TearDown", + "2nd.OnEnvironmentsTearDownEnd", + "1st.OnEnvironmentsTearDownEnd", + "2nd.OnTestIterationEnd(1)", + "1st.OnTestIterationEnd(1)", + "2nd.OnTestProgramEnd", + "1st.OnTestProgramEnd" + }; + VerifyResults(events, + expected_events, + sizeof(expected_events)/sizeof(expected_events[0])); + + // We need to check manually for ad hoc test failures that happen after + // RUN_ALL_TESTS finishes. + if (UnitTest::GetInstance()->Failed()) + ret_val = 1; + + return ret_val; +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-message_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-message_test.cc new file mode 100644 index 000000000..175238ef4 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-message_test.cc @@ -0,0 +1,159 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Tests for the Message class. + +#include "gtest/gtest-message.h" + +#include "gtest/gtest.h" + +namespace { + +using ::testing::Message; + +// Tests the testing::Message class + +// Tests the default constructor. +TEST(MessageTest, DefaultConstructor) { + const Message msg; + EXPECT_EQ("", msg.GetString()); +} + +// Tests the copy constructor. +TEST(MessageTest, CopyConstructor) { + const Message msg1("Hello"); + const Message msg2(msg1); + EXPECT_EQ("Hello", msg2.GetString()); +} + +// Tests constructing a Message from a C-string. +TEST(MessageTest, ConstructsFromCString) { + Message msg("Hello"); + EXPECT_EQ("Hello", msg.GetString()); +} + +// Tests streaming a float. +TEST(MessageTest, StreamsFloat) { + const std::string s = (Message() << 1.23456F << " " << 2.34567F).GetString(); + // Both numbers should be printed with enough precision. + EXPECT_PRED_FORMAT2(testing::IsSubstring, "1.234560", s.c_str()); + EXPECT_PRED_FORMAT2(testing::IsSubstring, " 2.345669", s.c_str()); +} + +// Tests streaming a double. +TEST(MessageTest, StreamsDouble) { + const std::string s = (Message() << 1260570880.4555497 << " " + << 1260572265.1954534).GetString(); + // Both numbers should be printed with enough precision. + EXPECT_PRED_FORMAT2(testing::IsSubstring, "1260570880.45", s.c_str()); + EXPECT_PRED_FORMAT2(testing::IsSubstring, " 1260572265.19", s.c_str()); +} + +// Tests streaming a non-char pointer. +TEST(MessageTest, StreamsPointer) { + int n = 0; + int* p = &n; + EXPECT_NE("(null)", (Message() << p).GetString()); +} + +// Tests streaming a NULL non-char pointer. +TEST(MessageTest, StreamsNullPointer) { + int* p = NULL; + EXPECT_EQ("(null)", (Message() << p).GetString()); +} + +// Tests streaming a C string. +TEST(MessageTest, StreamsCString) { + EXPECT_EQ("Foo", (Message() << "Foo").GetString()); +} + +// Tests streaming a NULL C string. +TEST(MessageTest, StreamsNullCString) { + char* p = NULL; + EXPECT_EQ("(null)", (Message() << p).GetString()); +} + +// Tests streaming std::string. +TEST(MessageTest, StreamsString) { + const ::std::string str("Hello"); + EXPECT_EQ("Hello", (Message() << str).GetString()); +} + +// Tests that we can output strings containing embedded NULs. +TEST(MessageTest, StreamsStringWithEmbeddedNUL) { + const char char_array_with_nul[] = + "Here's a NUL\0 and some more string"; + const ::std::string string_with_nul(char_array_with_nul, + sizeof(char_array_with_nul) - 1); + EXPECT_EQ("Here's a NUL\\0 and some more string", + (Message() << string_with_nul).GetString()); +} + +// Tests streaming a NUL char. +TEST(MessageTest, StreamsNULChar) { + EXPECT_EQ("\\0", (Message() << '\0').GetString()); +} + +// Tests streaming int. +TEST(MessageTest, StreamsInt) { + EXPECT_EQ("123", (Message() << 123).GetString()); +} + +// Tests that basic IO manipulators (endl, ends, and flush) can be +// streamed to Message. +TEST(MessageTest, StreamsBasicIoManip) { + EXPECT_EQ("Line 1.\nA NUL char \\0 in line 2.", + (Message() << "Line 1." << std::endl + << "A NUL char " << std::ends << std::flush + << " in line 2.").GetString()); +} + +// Tests Message::GetString() +TEST(MessageTest, GetString) { + Message msg; + msg << 1 << " lamb"; + EXPECT_EQ("1 lamb", msg.GetString()); +} + +// Tests streaming a Message object to an ostream. +TEST(MessageTest, StreamsToOStream) { + Message msg("Hello"); + ::std::stringstream ss; + ss << msg; + EXPECT_EQ("Hello", testing::internal::StringStreamToString(&ss)); +} + +// Tests that a Message object doesn't take up too much stack space. +TEST(MessageTest, DoesNotTakeUpMuchStackSpace) { + EXPECT_LE(sizeof(Message), 16U); +} + +} // namespace diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-options_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-options_test.cc new file mode 100644 index 000000000..5586dc3b1 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-options_test.cc @@ -0,0 +1,215 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: keith.ray@gmail.com (Keith Ray) +// +// Google Test UnitTestOptions tests +// +// This file tests classes and functions used internally by +// Google Test. They are subject to change without notice. +// +// This file is #included from gtest.cc, to avoid changing build or +// make-files on Windows and other platforms. Do not #include this file +// anywhere else! + +#include "gtest/gtest.h" + +#if GTEST_OS_WINDOWS_MOBILE +# include +#elif GTEST_OS_WINDOWS +# include +#endif // GTEST_OS_WINDOWS_MOBILE + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +namespace testing { +namespace internal { +namespace { + +// Turns the given relative path into an absolute path. +FilePath GetAbsolutePathOf(const FilePath& relative_path) { + return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path); +} + +// Testing UnitTestOptions::GetOutputFormat/GetOutputFile. + +TEST(XmlOutputTest, GetOutputFormatDefault) { + GTEST_FLAG(output) = ""; + EXPECT_STREQ("", UnitTestOptions::GetOutputFormat().c_str()); +} + +TEST(XmlOutputTest, GetOutputFormat) { + GTEST_FLAG(output) = "xml:filename"; + EXPECT_STREQ("xml", UnitTestOptions::GetOutputFormat().c_str()); +} + +TEST(XmlOutputTest, GetOutputFileDefault) { + GTEST_FLAG(output) = ""; + EXPECT_EQ(GetAbsolutePathOf(FilePath("test_detail.xml")).string(), + UnitTestOptions::GetAbsolutePathToOutputFile()); +} + +TEST(XmlOutputTest, GetOutputFileSingleFile) { + GTEST_FLAG(output) = "xml:filename.abc"; + EXPECT_EQ(GetAbsolutePathOf(FilePath("filename.abc")).string(), + UnitTestOptions::GetAbsolutePathToOutputFile()); +} + +TEST(XmlOutputTest, GetOutputFileFromDirectoryPath) { + GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_; + const std::string expected_output_file = + GetAbsolutePathOf( + FilePath(std::string("path") + GTEST_PATH_SEP_ + + GetCurrentExecutableName().string() + ".xml")).string(); + const std::string& output_file = + UnitTestOptions::GetAbsolutePathToOutputFile(); +#if GTEST_OS_WINDOWS + EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str()); +#else + EXPECT_EQ(expected_output_file, output_file.c_str()); +#endif +} + +TEST(OutputFileHelpersTest, GetCurrentExecutableName) { + const std::string exe_str = GetCurrentExecutableName().string(); +#if GTEST_OS_WINDOWS + const bool success = + _strcmpi("gtest-options_test", exe_str.c_str()) == 0 || + _strcmpi("gtest-options-ex_test", exe_str.c_str()) == 0 || + _strcmpi("gtest_all_test", exe_str.c_str()) == 0 || + _strcmpi("gtest_dll_test", exe_str.c_str()) == 0; +#else + // TODO(wan@google.com): remove the hard-coded "lt-" prefix when + // Chandler Carruth's libtool replacement is ready. + const bool success = + exe_str == "gtest-options_test" || + exe_str == "gtest_all_test" || + exe_str == "lt-gtest_all_test" || + exe_str == "gtest_dll_test"; +#endif // GTEST_OS_WINDOWS + if (!success) + FAIL() << "GetCurrentExecutableName() returns " << exe_str; +} + +class XmlOutputChangeDirTest : public Test { + protected: + virtual void SetUp() { + original_working_dir_ = FilePath::GetCurrentDir(); + posix::ChDir(".."); + // This will make the test fail if run from the root directory. + EXPECT_NE(original_working_dir_.string(), + FilePath::GetCurrentDir().string()); + } + + virtual void TearDown() { + posix::ChDir(original_working_dir_.string().c_str()); + } + + FilePath original_working_dir_; +}; + +TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithDefault) { + GTEST_FLAG(output) = ""; + EXPECT_EQ(FilePath::ConcatPaths(original_working_dir_, + FilePath("test_detail.xml")).string(), + UnitTestOptions::GetAbsolutePathToOutputFile()); +} + +TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithDefaultXML) { + GTEST_FLAG(output) = "xml"; + EXPECT_EQ(FilePath::ConcatPaths(original_working_dir_, + FilePath("test_detail.xml")).string(), + UnitTestOptions::GetAbsolutePathToOutputFile()); +} + +TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithRelativeFile) { + GTEST_FLAG(output) = "xml:filename.abc"; + EXPECT_EQ(FilePath::ConcatPaths(original_working_dir_, + FilePath("filename.abc")).string(), + UnitTestOptions::GetAbsolutePathToOutputFile()); +} + +TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithRelativePath) { + GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_; + const std::string expected_output_file = + FilePath::ConcatPaths( + original_working_dir_, + FilePath(std::string("path") + GTEST_PATH_SEP_ + + GetCurrentExecutableName().string() + ".xml")).string(); + const std::string& output_file = + UnitTestOptions::GetAbsolutePathToOutputFile(); +#if GTEST_OS_WINDOWS + EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str()); +#else + EXPECT_EQ(expected_output_file, output_file.c_str()); +#endif +} + +TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithAbsoluteFile) { +#if GTEST_OS_WINDOWS + GTEST_FLAG(output) = "xml:c:\\tmp\\filename.abc"; + EXPECT_EQ(FilePath("c:\\tmp\\filename.abc").string(), + UnitTestOptions::GetAbsolutePathToOutputFile()); +#else + GTEST_FLAG(output) ="xml:/tmp/filename.abc"; + EXPECT_EQ(FilePath("/tmp/filename.abc").string(), + UnitTestOptions::GetAbsolutePathToOutputFile()); +#endif +} + +TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithAbsolutePath) { +#if GTEST_OS_WINDOWS + const std::string path = "c:\\tmp\\"; +#else + const std::string path = "/tmp/"; +#endif + + GTEST_FLAG(output) = "xml:" + path; + const std::string expected_output_file = + path + GetCurrentExecutableName().string() + ".xml"; + const std::string& output_file = + UnitTestOptions::GetAbsolutePathToOutputFile(); + +#if GTEST_OS_WINDOWS + EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str()); +#else + EXPECT_EQ(expected_output_file, output_file.c_str()); +#endif +} + +} // namespace +} // namespace internal +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-param-test2_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-param-test2_test.cc new file mode 100644 index 000000000..4a782fe70 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-param-test2_test.cc @@ -0,0 +1,65 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) +// +// Tests for Google Test itself. This verifies that the basic constructs of +// Google Test work. + +#include "gtest/gtest.h" + +#include "test/gtest-param-test_test.h" + +#if GTEST_HAS_PARAM_TEST + +using ::testing::Values; +using ::testing::internal::ParamGenerator; + +// Tests that generators defined in a different translation unit +// are functional. The test using extern_gen is defined +// in gtest-param-test_test.cc. +ParamGenerator extern_gen = Values(33); + +// Tests that a parameterized test case can be defined in one translation unit +// and instantiated in another. The test is defined in gtest-param-test_test.cc +// and ExternalInstantiationTest fixture class is defined in +// gtest-param-test_test.h. +INSTANTIATE_TEST_CASE_P(MultiplesOf33, + ExternalInstantiationTest, + Values(33, 66)); + +// Tests that a parameterized test case can be instantiated +// in multiple translation units. Another instantiation is defined +// in gtest-param-test_test.cc and InstantiationInMultipleTranslaionUnitsTest +// fixture is defined in gtest-param-test_test.h +INSTANTIATE_TEST_CASE_P(Sequence2, + InstantiationInMultipleTranslaionUnitsTest, + Values(42*3, 42*4, 42*5)); + +#endif // GTEST_HAS_PARAM_TEST diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-param-test_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-param-test_test.cc new file mode 100644 index 000000000..f60cb8a55 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-param-test_test.cc @@ -0,0 +1,904 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) +// +// Tests for Google Test itself. This file verifies that the parameter +// generators objects produce correct parameter sequences and that +// Google Test runtime instantiates correct tests from those sequences. + +#include "gtest/gtest.h" + +#if GTEST_HAS_PARAM_TEST + +# include +# include +# include +# include +# include +# include + +// To include gtest-internal-inl.h. +# define GTEST_IMPLEMENTATION_ 1 +# include "src/gtest-internal-inl.h" // for UnitTestOptions +# undef GTEST_IMPLEMENTATION_ + +# include "test/gtest-param-test_test.h" + +using ::std::vector; +using ::std::sort; + +using ::testing::AddGlobalTestEnvironment; +using ::testing::Bool; +using ::testing::Message; +using ::testing::Range; +using ::testing::TestWithParam; +using ::testing::Values; +using ::testing::ValuesIn; + +# if GTEST_HAS_COMBINE +using ::testing::Combine; +using ::std::tr1::get; +using ::std::tr1::make_tuple; +using ::std::tr1::tuple; +# endif // GTEST_HAS_COMBINE + +using ::testing::internal::ParamGenerator; +using ::testing::internal::UnitTestOptions; + +// Prints a value to a string. +// +// TODO(wan@google.com): remove PrintValue() when we move matchers and +// EXPECT_THAT() from Google Mock to Google Test. At that time, we +// can write EXPECT_THAT(x, Eq(y)) to compare two tuples x and y, as +// EXPECT_THAT() and the matchers know how to print tuples. +template +::std::string PrintValue(const T& value) { + ::std::stringstream stream; + stream << value; + return stream.str(); +} + +# if GTEST_HAS_COMBINE + +// These overloads allow printing tuples in our tests. We cannot +// define an operator<< for tuples, as that definition needs to be in +// the std namespace in order to be picked up by Google Test via +// Argument-Dependent Lookup, yet defining anything in the std +// namespace in non-STL code is undefined behavior. + +template +::std::string PrintValue(const tuple& value) { + ::std::stringstream stream; + stream << "(" << get<0>(value) << ", " << get<1>(value) << ")"; + return stream.str(); +} + +template +::std::string PrintValue(const tuple& value) { + ::std::stringstream stream; + stream << "(" << get<0>(value) << ", " << get<1>(value) + << ", "<< get<2>(value) << ")"; + return stream.str(); +} + +template +::std::string PrintValue( + const tuple& value) { + ::std::stringstream stream; + stream << "(" << get<0>(value) << ", " << get<1>(value) + << ", "<< get<2>(value) << ", " << get<3>(value) + << ", "<< get<4>(value) << ", " << get<5>(value) + << ", "<< get<6>(value) << ", " << get<7>(value) + << ", "<< get<8>(value) << ", " << get<9>(value) << ")"; + return stream.str(); +} + +# endif // GTEST_HAS_COMBINE + +// Verifies that a sequence generated by the generator and accessed +// via the iterator object matches the expected one using Google Test +// assertions. +template +void VerifyGenerator(const ParamGenerator& generator, + const T (&expected_values)[N]) { + typename ParamGenerator::iterator it = generator.begin(); + for (size_t i = 0; i < N; ++i) { + ASSERT_FALSE(it == generator.end()) + << "At element " << i << " when accessing via an iterator " + << "created with the copy constructor.\n"; + // We cannot use EXPECT_EQ() here as the values may be tuples, + // which don't support <<. + EXPECT_TRUE(expected_values[i] == *it) + << "where i is " << i + << ", expected_values[i] is " << PrintValue(expected_values[i]) + << ", *it is " << PrintValue(*it) + << ", and 'it' is an iterator created with the copy constructor.\n"; + it++; + } + EXPECT_TRUE(it == generator.end()) + << "At the presumed end of sequence when accessing via an iterator " + << "created with the copy constructor.\n"; + + // Test the iterator assignment. The following lines verify that + // the sequence accessed via an iterator initialized via the + // assignment operator (as opposed to a copy constructor) matches + // just the same. + it = generator.begin(); + for (size_t i = 0; i < N; ++i) { + ASSERT_FALSE(it == generator.end()) + << "At element " << i << " when accessing via an iterator " + << "created with the assignment operator.\n"; + EXPECT_TRUE(expected_values[i] == *it) + << "where i is " << i + << ", expected_values[i] is " << PrintValue(expected_values[i]) + << ", *it is " << PrintValue(*it) + << ", and 'it' is an iterator created with the copy constructor.\n"; + it++; + } + EXPECT_TRUE(it == generator.end()) + << "At the presumed end of sequence when accessing via an iterator " + << "created with the assignment operator.\n"; +} + +template +void VerifyGeneratorIsEmpty(const ParamGenerator& generator) { + typename ParamGenerator::iterator it = generator.begin(); + EXPECT_TRUE(it == generator.end()); + + it = generator.begin(); + EXPECT_TRUE(it == generator.end()); +} + +// Generator tests. They test that each of the provided generator functions +// generates an expected sequence of values. The general test pattern +// instantiates a generator using one of the generator functions, +// checks the sequence produced by the generator using its iterator API, +// and then resets the iterator back to the beginning of the sequence +// and checks the sequence again. + +// Tests that iterators produced by generator functions conform to the +// ForwardIterator concept. +TEST(IteratorTest, ParamIteratorConformsToForwardIteratorConcept) { + const ParamGenerator gen = Range(0, 10); + ParamGenerator::iterator it = gen.begin(); + + // Verifies that iterator initialization works as expected. + ParamGenerator::iterator it2 = it; + EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the " + << "element same as its source points to"; + + // Verifies that iterator assignment works as expected. + it++; + EXPECT_FALSE(*it == *it2); + it2 = it; + EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the " + << "element same as its source points to"; + + // Verifies that prefix operator++() returns *this. + EXPECT_EQ(&it, &(++it)) << "Result of the prefix operator++ must be " + << "refer to the original object"; + + // Verifies that the result of the postfix operator++ points to the value + // pointed to by the original iterator. + int original_value = *it; // Have to compute it outside of macro call to be + // unaffected by the parameter evaluation order. + EXPECT_EQ(original_value, *(it++)); + + // Verifies that prefix and postfix operator++() advance an iterator + // all the same. + it2 = it; + it++; + ++it2; + EXPECT_TRUE(*it == *it2); +} + +// Tests that Range() generates the expected sequence. +TEST(RangeTest, IntRangeWithDefaultStep) { + const ParamGenerator gen = Range(0, 3); + const int expected_values[] = {0, 1, 2}; + VerifyGenerator(gen, expected_values); +} + +// Edge case. Tests that Range() generates the single element sequence +// as expected when provided with range limits that are equal. +TEST(RangeTest, IntRangeSingleValue) { + const ParamGenerator gen = Range(0, 1); + const int expected_values[] = {0}; + VerifyGenerator(gen, expected_values); +} + +// Edge case. Tests that Range() with generates empty sequence when +// supplied with an empty range. +TEST(RangeTest, IntRangeEmpty) { + const ParamGenerator gen = Range(0, 0); + VerifyGeneratorIsEmpty(gen); +} + +// Tests that Range() with custom step (greater then one) generates +// the expected sequence. +TEST(RangeTest, IntRangeWithCustomStep) { + const ParamGenerator gen = Range(0, 9, 3); + const int expected_values[] = {0, 3, 6}; + VerifyGenerator(gen, expected_values); +} + +// Tests that Range() with custom step (greater then one) generates +// the expected sequence when the last element does not fall on the +// upper range limit. Sequences generated by Range() must not have +// elements beyond the range limits. +TEST(RangeTest, IntRangeWithCustomStepOverUpperBound) { + const ParamGenerator gen = Range(0, 4, 3); + const int expected_values[] = {0, 3}; + VerifyGenerator(gen, expected_values); +} + +// Verifies that Range works with user-defined types that define +// copy constructor, operator=(), operator+(), and operator<(). +class DogAdder { + public: + explicit DogAdder(const char* a_value) : value_(a_value) {} + DogAdder(const DogAdder& other) : value_(other.value_.c_str()) {} + + DogAdder operator=(const DogAdder& other) { + if (this != &other) + value_ = other.value_; + return *this; + } + DogAdder operator+(const DogAdder& other) const { + Message msg; + msg << value_.c_str() << other.value_.c_str(); + return DogAdder(msg.GetString().c_str()); + } + bool operator<(const DogAdder& other) const { + return value_ < other.value_; + } + const std::string& value() const { return value_; } + + private: + std::string value_; +}; + +TEST(RangeTest, WorksWithACustomType) { + const ParamGenerator gen = + Range(DogAdder("cat"), DogAdder("catdogdog"), DogAdder("dog")); + ParamGenerator::iterator it = gen.begin(); + + ASSERT_FALSE(it == gen.end()); + EXPECT_STREQ("cat", it->value().c_str()); + + ASSERT_FALSE(++it == gen.end()); + EXPECT_STREQ("catdog", it->value().c_str()); + + EXPECT_TRUE(++it == gen.end()); +} + +class IntWrapper { + public: + explicit IntWrapper(int a_value) : value_(a_value) {} + IntWrapper(const IntWrapper& other) : value_(other.value_) {} + + IntWrapper operator=(const IntWrapper& other) { + value_ = other.value_; + return *this; + } + // operator+() adds a different type. + IntWrapper operator+(int other) const { return IntWrapper(value_ + other); } + bool operator<(const IntWrapper& other) const { + return value_ < other.value_; + } + int value() const { return value_; } + + private: + int value_; +}; + +TEST(RangeTest, WorksWithACustomTypeWithDifferentIncrementType) { + const ParamGenerator gen = Range(IntWrapper(0), IntWrapper(2)); + ParamGenerator::iterator it = gen.begin(); + + ASSERT_FALSE(it == gen.end()); + EXPECT_EQ(0, it->value()); + + ASSERT_FALSE(++it == gen.end()); + EXPECT_EQ(1, it->value()); + + EXPECT_TRUE(++it == gen.end()); +} + +// Tests that ValuesIn() with an array parameter generates +// the expected sequence. +TEST(ValuesInTest, ValuesInArray) { + int array[] = {3, 5, 8}; + const ParamGenerator gen = ValuesIn(array); + VerifyGenerator(gen, array); +} + +// Tests that ValuesIn() with a const array parameter generates +// the expected sequence. +TEST(ValuesInTest, ValuesInConstArray) { + const int array[] = {3, 5, 8}; + const ParamGenerator gen = ValuesIn(array); + VerifyGenerator(gen, array); +} + +// Edge case. Tests that ValuesIn() with an array parameter containing a +// single element generates the single element sequence. +TEST(ValuesInTest, ValuesInSingleElementArray) { + int array[] = {42}; + const ParamGenerator gen = ValuesIn(array); + VerifyGenerator(gen, array); +} + +// Tests that ValuesIn() generates the expected sequence for an STL +// container (vector). +TEST(ValuesInTest, ValuesInVector) { + typedef ::std::vector ContainerType; + ContainerType values; + values.push_back(3); + values.push_back(5); + values.push_back(8); + const ParamGenerator gen = ValuesIn(values); + + const int expected_values[] = {3, 5, 8}; + VerifyGenerator(gen, expected_values); +} + +// Tests that ValuesIn() generates the expected sequence. +TEST(ValuesInTest, ValuesInIteratorRange) { + typedef ::std::vector ContainerType; + ContainerType values; + values.push_back(3); + values.push_back(5); + values.push_back(8); + const ParamGenerator gen = ValuesIn(values.begin(), values.end()); + + const int expected_values[] = {3, 5, 8}; + VerifyGenerator(gen, expected_values); +} + +// Edge case. Tests that ValuesIn() provided with an iterator range specifying a +// single value generates a single-element sequence. +TEST(ValuesInTest, ValuesInSingleElementIteratorRange) { + typedef ::std::vector ContainerType; + ContainerType values; + values.push_back(42); + const ParamGenerator gen = ValuesIn(values.begin(), values.end()); + + const int expected_values[] = {42}; + VerifyGenerator(gen, expected_values); +} + +// Edge case. Tests that ValuesIn() provided with an empty iterator range +// generates an empty sequence. +TEST(ValuesInTest, ValuesInEmptyIteratorRange) { + typedef ::std::vector ContainerType; + ContainerType values; + const ParamGenerator gen = ValuesIn(values.begin(), values.end()); + + VerifyGeneratorIsEmpty(gen); +} + +// Tests that the Values() generates the expected sequence. +TEST(ValuesTest, ValuesWorks) { + const ParamGenerator gen = Values(3, 5, 8); + + const int expected_values[] = {3, 5, 8}; + VerifyGenerator(gen, expected_values); +} + +// Tests that Values() generates the expected sequences from elements of +// different types convertible to ParamGenerator's parameter type. +TEST(ValuesTest, ValuesWorksForValuesOfCompatibleTypes) { + const ParamGenerator gen = Values(3, 5.0f, 8.0); + + const double expected_values[] = {3.0, 5.0, 8.0}; + VerifyGenerator(gen, expected_values); +} + +TEST(ValuesTest, ValuesWorksForMaxLengthList) { + const ParamGenerator gen = Values( + 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, + 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, + 210, 220, 230, 240, 250, 260, 270, 280, 290, 300, + 310, 320, 330, 340, 350, 360, 370, 380, 390, 400, + 410, 420, 430, 440, 450, 460, 470, 480, 490, 500); + + const int expected_values[] = { + 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, + 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, + 210, 220, 230, 240, 250, 260, 270, 280, 290, 300, + 310, 320, 330, 340, 350, 360, 370, 380, 390, 400, + 410, 420, 430, 440, 450, 460, 470, 480, 490, 500}; + VerifyGenerator(gen, expected_values); +} + +// Edge case test. Tests that single-parameter Values() generates the sequence +// with the single value. +TEST(ValuesTest, ValuesWithSingleParameter) { + const ParamGenerator gen = Values(42); + + const int expected_values[] = {42}; + VerifyGenerator(gen, expected_values); +} + +// Tests that Bool() generates sequence (false, true). +TEST(BoolTest, BoolWorks) { + const ParamGenerator gen = Bool(); + + const bool expected_values[] = {false, true}; + VerifyGenerator(gen, expected_values); +} + +# if GTEST_HAS_COMBINE + +// Tests that Combine() with two parameters generates the expected sequence. +TEST(CombineTest, CombineWithTwoParameters) { + const char* foo = "foo"; + const char* bar = "bar"; + const ParamGenerator > gen = + Combine(Values(foo, bar), Values(3, 4)); + + tuple expected_values[] = { + make_tuple(foo, 3), make_tuple(foo, 4), + make_tuple(bar, 3), make_tuple(bar, 4)}; + VerifyGenerator(gen, expected_values); +} + +// Tests that Combine() with three parameters generates the expected sequence. +TEST(CombineTest, CombineWithThreeParameters) { + const ParamGenerator > gen = Combine(Values(0, 1), + Values(3, 4), + Values(5, 6)); + tuple expected_values[] = { + make_tuple(0, 3, 5), make_tuple(0, 3, 6), + make_tuple(0, 4, 5), make_tuple(0, 4, 6), + make_tuple(1, 3, 5), make_tuple(1, 3, 6), + make_tuple(1, 4, 5), make_tuple(1, 4, 6)}; + VerifyGenerator(gen, expected_values); +} + +// Tests that the Combine() with the first parameter generating a single value +// sequence generates a sequence with the number of elements equal to the +// number of elements in the sequence generated by the second parameter. +TEST(CombineTest, CombineWithFirstParameterSingleValue) { + const ParamGenerator > gen = Combine(Values(42), + Values(0, 1)); + + tuple expected_values[] = {make_tuple(42, 0), make_tuple(42, 1)}; + VerifyGenerator(gen, expected_values); +} + +// Tests that the Combine() with the second parameter generating a single value +// sequence generates a sequence with the number of elements equal to the +// number of elements in the sequence generated by the first parameter. +TEST(CombineTest, CombineWithSecondParameterSingleValue) { + const ParamGenerator > gen = Combine(Values(0, 1), + Values(42)); + + tuple expected_values[] = {make_tuple(0, 42), make_tuple(1, 42)}; + VerifyGenerator(gen, expected_values); +} + +// Tests that when the first parameter produces an empty sequence, +// Combine() produces an empty sequence, too. +TEST(CombineTest, CombineWithFirstParameterEmptyRange) { + const ParamGenerator > gen = Combine(Range(0, 0), + Values(0, 1)); + VerifyGeneratorIsEmpty(gen); +} + +// Tests that when the second parameter produces an empty sequence, +// Combine() produces an empty sequence, too. +TEST(CombineTest, CombineWithSecondParameterEmptyRange) { + const ParamGenerator > gen = Combine(Values(0, 1), + Range(1, 1)); + VerifyGeneratorIsEmpty(gen); +} + +// Edge case. Tests that combine works with the maximum number +// of parameters supported by Google Test (currently 10). +TEST(CombineTest, CombineWithMaxNumberOfParameters) { + const char* foo = "foo"; + const char* bar = "bar"; + const ParamGenerator > gen = Combine(Values(foo, bar), + Values(1), Values(2), + Values(3), Values(4), + Values(5), Values(6), + Values(7), Values(8), + Values(9)); + + tuple + expected_values[] = {make_tuple(foo, 1, 2, 3, 4, 5, 6, 7, 8, 9), + make_tuple(bar, 1, 2, 3, 4, 5, 6, 7, 8, 9)}; + VerifyGenerator(gen, expected_values); +} + +# endif // GTEST_HAS_COMBINE + +// Tests that an generator produces correct sequence after being +// assigned from another generator. +TEST(ParamGeneratorTest, AssignmentWorks) { + ParamGenerator gen = Values(1, 2); + const ParamGenerator gen2 = Values(3, 4); + gen = gen2; + + const int expected_values[] = {3, 4}; + VerifyGenerator(gen, expected_values); +} + +// This test verifies that the tests are expanded and run as specified: +// one test per element from the sequence produced by the generator +// specified in INSTANTIATE_TEST_CASE_P. It also verifies that the test's +// fixture constructor, SetUp(), and TearDown() have run and have been +// supplied with the correct parameters. + +// The use of environment object allows detection of the case where no test +// case functionality is run at all. In this case TestCaseTearDown will not +// be able to detect missing tests, naturally. +template +class TestGenerationEnvironment : public ::testing::Environment { + public: + static TestGenerationEnvironment* Instance() { + static TestGenerationEnvironment* instance = new TestGenerationEnvironment; + return instance; + } + + void FixtureConstructorExecuted() { fixture_constructor_count_++; } + void SetUpExecuted() { set_up_count_++; } + void TearDownExecuted() { tear_down_count_++; } + void TestBodyExecuted() { test_body_count_++; } + + virtual void TearDown() { + // If all MultipleTestGenerationTest tests have been de-selected + // by the filter flag, the following checks make no sense. + bool perform_check = false; + + for (int i = 0; i < kExpectedCalls; ++i) { + Message msg; + msg << "TestsExpandedAndRun/" << i; + if (UnitTestOptions::FilterMatchesTest( + "TestExpansionModule/MultipleTestGenerationTest", + msg.GetString().c_str())) { + perform_check = true; + } + } + if (perform_check) { + EXPECT_EQ(kExpectedCalls, fixture_constructor_count_) + << "Fixture constructor of ParamTestGenerationTest test case " + << "has not been run as expected."; + EXPECT_EQ(kExpectedCalls, set_up_count_) + << "Fixture SetUp method of ParamTestGenerationTest test case " + << "has not been run as expected."; + EXPECT_EQ(kExpectedCalls, tear_down_count_) + << "Fixture TearDown method of ParamTestGenerationTest test case " + << "has not been run as expected."; + EXPECT_EQ(kExpectedCalls, test_body_count_) + << "Test in ParamTestGenerationTest test case " + << "has not been run as expected."; + } + } + + private: + TestGenerationEnvironment() : fixture_constructor_count_(0), set_up_count_(0), + tear_down_count_(0), test_body_count_(0) {} + + int fixture_constructor_count_; + int set_up_count_; + int tear_down_count_; + int test_body_count_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestGenerationEnvironment); +}; + +const int test_generation_params[] = {36, 42, 72}; + +class TestGenerationTest : public TestWithParam { + public: + enum { + PARAMETER_COUNT = + sizeof(test_generation_params)/sizeof(test_generation_params[0]) + }; + + typedef TestGenerationEnvironment Environment; + + TestGenerationTest() { + Environment::Instance()->FixtureConstructorExecuted(); + current_parameter_ = GetParam(); + } + virtual void SetUp() { + Environment::Instance()->SetUpExecuted(); + EXPECT_EQ(current_parameter_, GetParam()); + } + virtual void TearDown() { + Environment::Instance()->TearDownExecuted(); + EXPECT_EQ(current_parameter_, GetParam()); + } + + static void SetUpTestCase() { + bool all_tests_in_test_case_selected = true; + + for (int i = 0; i < PARAMETER_COUNT; ++i) { + Message test_name; + test_name << "TestsExpandedAndRun/" << i; + if ( !UnitTestOptions::FilterMatchesTest( + "TestExpansionModule/MultipleTestGenerationTest", + test_name.GetString())) { + all_tests_in_test_case_selected = false; + } + } + EXPECT_TRUE(all_tests_in_test_case_selected) + << "When running the TestGenerationTest test case all of its tests\n" + << "must be selected by the filter flag for the test case to pass.\n" + << "If not all of them are enabled, we can't reliably conclude\n" + << "that the correct number of tests have been generated."; + + collected_parameters_.clear(); + } + + static void TearDownTestCase() { + vector expected_values(test_generation_params, + test_generation_params + PARAMETER_COUNT); + // Test execution order is not guaranteed by Google Test, + // so the order of values in collected_parameters_ can be + // different and we have to sort to compare. + sort(expected_values.begin(), expected_values.end()); + sort(collected_parameters_.begin(), collected_parameters_.end()); + + EXPECT_TRUE(collected_parameters_ == expected_values); + } + + protected: + int current_parameter_; + static vector collected_parameters_; + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestGenerationTest); +}; +vector TestGenerationTest::collected_parameters_; + +TEST_P(TestGenerationTest, TestsExpandedAndRun) { + Environment::Instance()->TestBodyExecuted(); + EXPECT_EQ(current_parameter_, GetParam()); + collected_parameters_.push_back(GetParam()); +} +INSTANTIATE_TEST_CASE_P(TestExpansionModule, TestGenerationTest, + ValuesIn(test_generation_params)); + +// This test verifies that the element sequence (third parameter of +// INSTANTIATE_TEST_CASE_P) is evaluated in InitGoogleTest() and neither at +// the call site of INSTANTIATE_TEST_CASE_P nor in RUN_ALL_TESTS(). For +// that, we declare param_value_ to be a static member of +// GeneratorEvaluationTest and initialize it to 0. We set it to 1 in +// main(), just before invocation of InitGoogleTest(). After calling +// InitGoogleTest(), we set the value to 2. If the sequence is evaluated +// before or after InitGoogleTest, INSTANTIATE_TEST_CASE_P will create a +// test with parameter other than 1, and the test body will fail the +// assertion. +class GeneratorEvaluationTest : public TestWithParam { + public: + static int param_value() { return param_value_; } + static void set_param_value(int param_value) { param_value_ = param_value; } + + private: + static int param_value_; +}; +int GeneratorEvaluationTest::param_value_ = 0; + +TEST_P(GeneratorEvaluationTest, GeneratorsEvaluatedInMain) { + EXPECT_EQ(1, GetParam()); +} +INSTANTIATE_TEST_CASE_P(GenEvalModule, + GeneratorEvaluationTest, + Values(GeneratorEvaluationTest::param_value())); + +// Tests that generators defined in a different translation unit are +// functional. Generator extern_gen is defined in gtest-param-test_test2.cc. +extern ParamGenerator extern_gen; +class ExternalGeneratorTest : public TestWithParam {}; +TEST_P(ExternalGeneratorTest, ExternalGenerator) { + // Sequence produced by extern_gen contains only a single value + // which we verify here. + EXPECT_EQ(GetParam(), 33); +} +INSTANTIATE_TEST_CASE_P(ExternalGeneratorModule, + ExternalGeneratorTest, + extern_gen); + +// Tests that a parameterized test case can be defined in one translation +// unit and instantiated in another. This test will be instantiated in +// gtest-param-test_test2.cc. ExternalInstantiationTest fixture class is +// defined in gtest-param-test_test.h. +TEST_P(ExternalInstantiationTest, IsMultipleOf33) { + EXPECT_EQ(0, GetParam() % 33); +} + +// Tests that a parameterized test case can be instantiated with multiple +// generators. +class MultipleInstantiationTest : public TestWithParam {}; +TEST_P(MultipleInstantiationTest, AllowsMultipleInstances) { +} +INSTANTIATE_TEST_CASE_P(Sequence1, MultipleInstantiationTest, Values(1, 2)); +INSTANTIATE_TEST_CASE_P(Sequence2, MultipleInstantiationTest, Range(3, 5)); + +// Tests that a parameterized test case can be instantiated +// in multiple translation units. This test will be instantiated +// here and in gtest-param-test_test2.cc. +// InstantiationInMultipleTranslationUnitsTest fixture class +// is defined in gtest-param-test_test.h. +TEST_P(InstantiationInMultipleTranslaionUnitsTest, IsMultipleOf42) { + EXPECT_EQ(0, GetParam() % 42); +} +INSTANTIATE_TEST_CASE_P(Sequence1, + InstantiationInMultipleTranslaionUnitsTest, + Values(42, 42*2)); + +// Tests that each iteration of parameterized test runs in a separate test +// object. +class SeparateInstanceTest : public TestWithParam { + public: + SeparateInstanceTest() : count_(0) {} + + static void TearDownTestCase() { + EXPECT_GE(global_count_, 2) + << "If some (but not all) SeparateInstanceTest tests have been " + << "filtered out this test will fail. Make sure that all " + << "GeneratorEvaluationTest are selected or de-selected together " + << "by the test filter."; + } + + protected: + int count_; + static int global_count_; +}; +int SeparateInstanceTest::global_count_ = 0; + +TEST_P(SeparateInstanceTest, TestsRunInSeparateInstances) { + EXPECT_EQ(0, count_++); + global_count_++; +} +INSTANTIATE_TEST_CASE_P(FourElemSequence, SeparateInstanceTest, Range(1, 4)); + +// Tests that all instantiations of a test have named appropriately. Test +// defined with TEST_P(TestCaseName, TestName) and instantiated with +// INSTANTIATE_TEST_CASE_P(SequenceName, TestCaseName, generator) must be named +// SequenceName/TestCaseName.TestName/i, where i is the 0-based index of the +// sequence element used to instantiate the test. +class NamingTest : public TestWithParam {}; + +TEST_P(NamingTest, TestsReportCorrectNamesAndParameters) { + const ::testing::TestInfo* const test_info = + ::testing::UnitTest::GetInstance()->current_test_info(); + + EXPECT_STREQ("ZeroToFiveSequence/NamingTest", test_info->test_case_name()); + + Message index_stream; + index_stream << "TestsReportCorrectNamesAndParameters/" << GetParam(); + EXPECT_STREQ(index_stream.GetString().c_str(), test_info->name()); + + EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param()); +} + +INSTANTIATE_TEST_CASE_P(ZeroToFiveSequence, NamingTest, Range(0, 5)); + +// Class that cannot be streamed into an ostream. It needs to be copyable +// (and, in case of MSVC, also assignable) in order to be a test parameter +// type. Its default copy constructor and assignment operator do exactly +// what we need. +class Unstreamable { + public: + explicit Unstreamable(int value) : value_(value) {} + + private: + int value_; +}; + +class CommentTest : public TestWithParam {}; + +TEST_P(CommentTest, TestsCorrectlyReportUnstreamableParams) { + const ::testing::TestInfo* const test_info = + ::testing::UnitTest::GetInstance()->current_test_info(); + + EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param()); +} + +INSTANTIATE_TEST_CASE_P(InstantiationWithComments, + CommentTest, + Values(Unstreamable(1))); + +// Verify that we can create a hierarchy of test fixtures, where the base +// class fixture is not parameterized and the derived class is. In this case +// ParameterizedDerivedTest inherits from NonParameterizedBaseTest. We +// perform simple tests on both. +class NonParameterizedBaseTest : public ::testing::Test { + public: + NonParameterizedBaseTest() : n_(17) { } + protected: + int n_; +}; + +class ParameterizedDerivedTest : public NonParameterizedBaseTest, + public ::testing::WithParamInterface { + protected: + ParameterizedDerivedTest() : count_(0) { } + int count_; + static int global_count_; +}; + +int ParameterizedDerivedTest::global_count_ = 0; + +TEST_F(NonParameterizedBaseTest, FixtureIsInitialized) { + EXPECT_EQ(17, n_); +} + +TEST_P(ParameterizedDerivedTest, SeesSequence) { + EXPECT_EQ(17, n_); + EXPECT_EQ(0, count_++); + EXPECT_EQ(GetParam(), global_count_++); +} + +class ParameterizedDeathTest : public ::testing::TestWithParam { }; + +TEST_F(ParameterizedDeathTest, GetParamDiesFromTestF) { + EXPECT_DEATH_IF_SUPPORTED(GetParam(), + ".* value-parameterized test .*"); +} + +INSTANTIATE_TEST_CASE_P(RangeZeroToFive, ParameterizedDerivedTest, Range(0, 5)); + +#endif // GTEST_HAS_PARAM_TEST + +TEST(CompileTest, CombineIsDefinedOnlyWhenGtestHasParamTestIsDefined) { +#if GTEST_HAS_COMBINE && !GTEST_HAS_PARAM_TEST + FAIL() << "GTEST_HAS_COMBINE is defined while GTEST_HAS_PARAM_TEST is not\n" +#endif +} + +int main(int argc, char **argv) { +#if GTEST_HAS_PARAM_TEST + // Used in TestGenerationTest test case. + AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance()); + // Used in GeneratorEvaluationTest test case. Tests that the updated value + // will be picked up for instantiating tests in GeneratorEvaluationTest. + GeneratorEvaluationTest::set_param_value(1); +#endif // GTEST_HAS_PARAM_TEST + + ::testing::InitGoogleTest(&argc, argv); + +#if GTEST_HAS_PARAM_TEST + // Used in GeneratorEvaluationTest test case. Tests that value updated + // here will NOT be used for instantiating tests in + // GeneratorEvaluationTest. + GeneratorEvaluationTest::set_param_value(2); +#endif // GTEST_HAS_PARAM_TEST + + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-param-test_test.h b/cpp/thirdparty/gtest-1.7.0/test/gtest-param-test_test.h new file mode 100644 index 000000000..26ea122b1 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-param-test_test.h @@ -0,0 +1,57 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: vladl@google.com (Vlad Losev) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file provides classes and functions used internally +// for testing Google Test itself. + +#ifndef GTEST_TEST_GTEST_PARAM_TEST_TEST_H_ +#define GTEST_TEST_GTEST_PARAM_TEST_TEST_H_ + +#include "gtest/gtest.h" + +#if GTEST_HAS_PARAM_TEST + +// Test fixture for testing definition and instantiation of a test +// in separate translation units. +class ExternalInstantiationTest : public ::testing::TestWithParam { +}; + +// Test fixture for testing instantiation of a test in multiple +// translation units. +class InstantiationInMultipleTranslaionUnitsTest + : public ::testing::TestWithParam { +}; + +#endif // GTEST_HAS_PARAM_TEST + +#endif // GTEST_TEST_GTEST_PARAM_TEST_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-port_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-port_test.cc new file mode 100644 index 000000000..43f1f2010 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-port_test.cc @@ -0,0 +1,1253 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: vladl@google.com (Vlad Losev), wan@google.com (Zhanyong Wan) +// +// This file tests the internal cross-platform support utilities. + +#include "gtest/internal/gtest-port.h" + +#include + +#if GTEST_OS_MAC +# include +#endif // GTEST_OS_MAC + +#include +#include // For std::pair and std::make_pair. +#include + +#include "gtest/gtest.h" +#include "gtest/gtest-spi.h" + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +using std::make_pair; +using std::pair; + +namespace testing { +namespace internal { + +TEST(IsXDigitTest, WorksForNarrowAscii) { + EXPECT_TRUE(IsXDigit('0')); + EXPECT_TRUE(IsXDigit('9')); + EXPECT_TRUE(IsXDigit('A')); + EXPECT_TRUE(IsXDigit('F')); + EXPECT_TRUE(IsXDigit('a')); + EXPECT_TRUE(IsXDigit('f')); + + EXPECT_FALSE(IsXDigit('-')); + EXPECT_FALSE(IsXDigit('g')); + EXPECT_FALSE(IsXDigit('G')); +} + +TEST(IsXDigitTest, ReturnsFalseForNarrowNonAscii) { + EXPECT_FALSE(IsXDigit(static_cast(0x80))); + EXPECT_FALSE(IsXDigit(static_cast('0' | 0x80))); +} + +TEST(IsXDigitTest, WorksForWideAscii) { + EXPECT_TRUE(IsXDigit(L'0')); + EXPECT_TRUE(IsXDigit(L'9')); + EXPECT_TRUE(IsXDigit(L'A')); + EXPECT_TRUE(IsXDigit(L'F')); + EXPECT_TRUE(IsXDigit(L'a')); + EXPECT_TRUE(IsXDigit(L'f')); + + EXPECT_FALSE(IsXDigit(L'-')); + EXPECT_FALSE(IsXDigit(L'g')); + EXPECT_FALSE(IsXDigit(L'G')); +} + +TEST(IsXDigitTest, ReturnsFalseForWideNonAscii) { + EXPECT_FALSE(IsXDigit(static_cast(0x80))); + EXPECT_FALSE(IsXDigit(static_cast(L'0' | 0x80))); + EXPECT_FALSE(IsXDigit(static_cast(L'0' | 0x100))); +} + +class Base { + public: + // Copy constructor and assignment operator do exactly what we need, so we + // use them. + Base() : member_(0) {} + explicit Base(int n) : member_(n) {} + virtual ~Base() {} + int member() { return member_; } + + private: + int member_; +}; + +class Derived : public Base { + public: + explicit Derived(int n) : Base(n) {} +}; + +TEST(ImplicitCastTest, ConvertsPointers) { + Derived derived(0); + EXPECT_TRUE(&derived == ::testing::internal::ImplicitCast_(&derived)); +} + +TEST(ImplicitCastTest, CanUseInheritance) { + Derived derived(1); + Base base = ::testing::internal::ImplicitCast_(derived); + EXPECT_EQ(derived.member(), base.member()); +} + +class Castable { + public: + explicit Castable(bool* converted) : converted_(converted) {} + operator Base() { + *converted_ = true; + return Base(); + } + + private: + bool* converted_; +}; + +TEST(ImplicitCastTest, CanUseNonConstCastOperator) { + bool converted = false; + Castable castable(&converted); + Base base = ::testing::internal::ImplicitCast_(castable); + EXPECT_TRUE(converted); +} + +class ConstCastable { + public: + explicit ConstCastable(bool* converted) : converted_(converted) {} + operator Base() const { + *converted_ = true; + return Base(); + } + + private: + bool* converted_; +}; + +TEST(ImplicitCastTest, CanUseConstCastOperatorOnConstValues) { + bool converted = false; + const ConstCastable const_castable(&converted); + Base base = ::testing::internal::ImplicitCast_(const_castable); + EXPECT_TRUE(converted); +} + +class ConstAndNonConstCastable { + public: + ConstAndNonConstCastable(bool* converted, bool* const_converted) + : converted_(converted), const_converted_(const_converted) {} + operator Base() { + *converted_ = true; + return Base(); + } + operator Base() const { + *const_converted_ = true; + return Base(); + } + + private: + bool* converted_; + bool* const_converted_; +}; + +TEST(ImplicitCastTest, CanSelectBetweenConstAndNonConstCasrAppropriately) { + bool converted = false; + bool const_converted = false; + ConstAndNonConstCastable castable(&converted, &const_converted); + Base base = ::testing::internal::ImplicitCast_(castable); + EXPECT_TRUE(converted); + EXPECT_FALSE(const_converted); + + converted = false; + const_converted = false; + const ConstAndNonConstCastable const_castable(&converted, &const_converted); + base = ::testing::internal::ImplicitCast_(const_castable); + EXPECT_FALSE(converted); + EXPECT_TRUE(const_converted); +} + +class To { + public: + To(bool* converted) { *converted = true; } // NOLINT +}; + +TEST(ImplicitCastTest, CanUseImplicitConstructor) { + bool converted = false; + To to = ::testing::internal::ImplicitCast_(&converted); + (void)to; + EXPECT_TRUE(converted); +} + +TEST(IteratorTraitsTest, WorksForSTLContainerIterators) { + StaticAssertTypeEq::const_iterator>::value_type>(); + StaticAssertTypeEq::iterator>::value_type>(); +} + +TEST(IteratorTraitsTest, WorksForPointerToNonConst) { + StaticAssertTypeEq::value_type>(); + StaticAssertTypeEq::value_type>(); +} + +TEST(IteratorTraitsTest, WorksForPointerToConst) { + StaticAssertTypeEq::value_type>(); + StaticAssertTypeEq::value_type>(); +} + +// Tests that the element_type typedef is available in scoped_ptr and refers +// to the parameter type. +TEST(ScopedPtrTest, DefinesElementType) { + StaticAssertTypeEq::element_type>(); +} + +// TODO(vladl@google.com): Implement THE REST of scoped_ptr tests. + +TEST(GtestCheckSyntaxTest, BehavesLikeASingleStatement) { + if (AlwaysFalse()) + GTEST_CHECK_(false) << "This should never be executed; " + "It's a compilation test only."; + + if (AlwaysTrue()) + GTEST_CHECK_(true); + else + ; // NOLINT + + if (AlwaysFalse()) + ; // NOLINT + else + GTEST_CHECK_(true) << ""; +} + +TEST(GtestCheckSyntaxTest, WorksWithSwitch) { + switch (0) { + case 1: + break; + default: + GTEST_CHECK_(true); + } + + switch (0) + case 0: + GTEST_CHECK_(true) << "Check failed in switch case"; +} + +// Verifies behavior of FormatFileLocation. +TEST(FormatFileLocationTest, FormatsFileLocation) { + EXPECT_PRED_FORMAT2(IsSubstring, "foo.cc", FormatFileLocation("foo.cc", 42)); + EXPECT_PRED_FORMAT2(IsSubstring, "42", FormatFileLocation("foo.cc", 42)); +} + +TEST(FormatFileLocationTest, FormatsUnknownFile) { + EXPECT_PRED_FORMAT2( + IsSubstring, "unknown file", FormatFileLocation(NULL, 42)); + EXPECT_PRED_FORMAT2(IsSubstring, "42", FormatFileLocation(NULL, 42)); +} + +TEST(FormatFileLocationTest, FormatsUknownLine) { + EXPECT_EQ("foo.cc:", FormatFileLocation("foo.cc", -1)); +} + +TEST(FormatFileLocationTest, FormatsUknownFileAndLine) { + EXPECT_EQ("unknown file:", FormatFileLocation(NULL, -1)); +} + +// Verifies behavior of FormatCompilerIndependentFileLocation. +TEST(FormatCompilerIndependentFileLocationTest, FormatsFileLocation) { + EXPECT_EQ("foo.cc:42", FormatCompilerIndependentFileLocation("foo.cc", 42)); +} + +TEST(FormatCompilerIndependentFileLocationTest, FormatsUknownFile) { + EXPECT_EQ("unknown file:42", + FormatCompilerIndependentFileLocation(NULL, 42)); +} + +TEST(FormatCompilerIndependentFileLocationTest, FormatsUknownLine) { + EXPECT_EQ("foo.cc", FormatCompilerIndependentFileLocation("foo.cc", -1)); +} + +TEST(FormatCompilerIndependentFileLocationTest, FormatsUknownFileAndLine) { + EXPECT_EQ("unknown file", FormatCompilerIndependentFileLocation(NULL, -1)); +} + +#if GTEST_OS_MAC || GTEST_OS_QNX +void* ThreadFunc(void* data) { + pthread_mutex_t* mutex = static_cast(data); + pthread_mutex_lock(mutex); + pthread_mutex_unlock(mutex); + return NULL; +} + +TEST(GetThreadCountTest, ReturnsCorrectValue) { + EXPECT_EQ(1U, GetThreadCount()); + pthread_mutex_t mutex; + pthread_attr_t attr; + pthread_t thread_id; + + // TODO(vladl@google.com): turn mutex into internal::Mutex for automatic + // destruction. + pthread_mutex_init(&mutex, NULL); + pthread_mutex_lock(&mutex); + ASSERT_EQ(0, pthread_attr_init(&attr)); + ASSERT_EQ(0, pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE)); + + const int status = pthread_create(&thread_id, &attr, &ThreadFunc, &mutex); + ASSERT_EQ(0, pthread_attr_destroy(&attr)); + ASSERT_EQ(0, status); + EXPECT_EQ(2U, GetThreadCount()); + pthread_mutex_unlock(&mutex); + + void* dummy; + ASSERT_EQ(0, pthread_join(thread_id, &dummy)); + +# if GTEST_OS_MAC + + // MacOS X may not immediately report the updated thread count after + // joining a thread, causing flakiness in this test. To counter that, we + // wait for up to .5 seconds for the OS to report the correct value. + for (int i = 0; i < 5; ++i) { + if (GetThreadCount() == 1) + break; + + SleepMilliseconds(100); + } + +# endif // GTEST_OS_MAC + + EXPECT_EQ(1U, GetThreadCount()); + pthread_mutex_destroy(&mutex); +} +#else +TEST(GetThreadCountTest, ReturnsZeroWhenUnableToCountThreads) { + EXPECT_EQ(0U, GetThreadCount()); +} +#endif // GTEST_OS_MAC || GTEST_OS_QNX + +TEST(GtestCheckDeathTest, DiesWithCorrectOutputOnFailure) { + const bool a_false_condition = false; + const char regex[] = +#ifdef _MSC_VER + "gtest-port_test\\.cc\\(\\d+\\):" +#elif GTEST_USES_POSIX_RE + "gtest-port_test\\.cc:[0-9]+" +#else + "gtest-port_test\\.cc:\\d+" +#endif // _MSC_VER + ".*a_false_condition.*Extra info.*"; + + EXPECT_DEATH_IF_SUPPORTED(GTEST_CHECK_(a_false_condition) << "Extra info", + regex); +} + +#if GTEST_HAS_DEATH_TEST + +TEST(GtestCheckDeathTest, LivesSilentlyOnSuccess) { + EXPECT_EXIT({ + GTEST_CHECK_(true) << "Extra info"; + ::std::cerr << "Success\n"; + exit(0); }, + ::testing::ExitedWithCode(0), "Success"); +} + +#endif // GTEST_HAS_DEATH_TEST + +// Verifies that Google Test choose regular expression engine appropriate to +// the platform. The test will produce compiler errors in case of failure. +// For simplicity, we only cover the most important platforms here. +TEST(RegexEngineSelectionTest, SelectsCorrectRegexEngine) { +#if GTEST_HAS_POSIX_RE + + EXPECT_TRUE(GTEST_USES_POSIX_RE); + +#else + + EXPECT_TRUE(GTEST_USES_SIMPLE_RE); + +#endif +} + +#if GTEST_USES_POSIX_RE + +# if GTEST_HAS_TYPED_TEST + +template +class RETest : public ::testing::Test {}; + +// Defines StringTypes as the list of all string types that class RE +// supports. +typedef testing::Types< + ::std::string, +# if GTEST_HAS_GLOBAL_STRING + ::string, +# endif // GTEST_HAS_GLOBAL_STRING + const char*> StringTypes; + +TYPED_TEST_CASE(RETest, StringTypes); + +// Tests RE's implicit constructors. +TYPED_TEST(RETest, ImplicitConstructorWorks) { + const RE empty(TypeParam("")); + EXPECT_STREQ("", empty.pattern()); + + const RE simple(TypeParam("hello")); + EXPECT_STREQ("hello", simple.pattern()); + + const RE normal(TypeParam(".*(\\w+)")); + EXPECT_STREQ(".*(\\w+)", normal.pattern()); +} + +// Tests that RE's constructors reject invalid regular expressions. +TYPED_TEST(RETest, RejectsInvalidRegex) { + EXPECT_NONFATAL_FAILURE({ + const RE invalid(TypeParam("?")); + }, "\"?\" is not a valid POSIX Extended regular expression."); +} + +// Tests RE::FullMatch(). +TYPED_TEST(RETest, FullMatchWorks) { + const RE empty(TypeParam("")); + EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty)); + EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty)); + + const RE re(TypeParam("a.*z")); + EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re)); + EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re)); + EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re)); + EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re)); +} + +// Tests RE::PartialMatch(). +TYPED_TEST(RETest, PartialMatchWorks) { + const RE empty(TypeParam("")); + EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty)); + EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty)); + + const RE re(TypeParam("a.*z")); + EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re)); + EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re)); + EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re)); + EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re)); + EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re)); +} + +# endif // GTEST_HAS_TYPED_TEST + +#elif GTEST_USES_SIMPLE_RE + +TEST(IsInSetTest, NulCharIsNotInAnySet) { + EXPECT_FALSE(IsInSet('\0', "")); + EXPECT_FALSE(IsInSet('\0', "\0")); + EXPECT_FALSE(IsInSet('\0', "a")); +} + +TEST(IsInSetTest, WorksForNonNulChars) { + EXPECT_FALSE(IsInSet('a', "Ab")); + EXPECT_FALSE(IsInSet('c', "")); + + EXPECT_TRUE(IsInSet('b', "bcd")); + EXPECT_TRUE(IsInSet('b', "ab")); +} + +TEST(IsAsciiDigitTest, IsFalseForNonDigit) { + EXPECT_FALSE(IsAsciiDigit('\0')); + EXPECT_FALSE(IsAsciiDigit(' ')); + EXPECT_FALSE(IsAsciiDigit('+')); + EXPECT_FALSE(IsAsciiDigit('-')); + EXPECT_FALSE(IsAsciiDigit('.')); + EXPECT_FALSE(IsAsciiDigit('a')); +} + +TEST(IsAsciiDigitTest, IsTrueForDigit) { + EXPECT_TRUE(IsAsciiDigit('0')); + EXPECT_TRUE(IsAsciiDigit('1')); + EXPECT_TRUE(IsAsciiDigit('5')); + EXPECT_TRUE(IsAsciiDigit('9')); +} + +TEST(IsAsciiPunctTest, IsFalseForNonPunct) { + EXPECT_FALSE(IsAsciiPunct('\0')); + EXPECT_FALSE(IsAsciiPunct(' ')); + EXPECT_FALSE(IsAsciiPunct('\n')); + EXPECT_FALSE(IsAsciiPunct('a')); + EXPECT_FALSE(IsAsciiPunct('0')); +} + +TEST(IsAsciiPunctTest, IsTrueForPunct) { + for (const char* p = "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"; *p; p++) { + EXPECT_PRED1(IsAsciiPunct, *p); + } +} + +TEST(IsRepeatTest, IsFalseForNonRepeatChar) { + EXPECT_FALSE(IsRepeat('\0')); + EXPECT_FALSE(IsRepeat(' ')); + EXPECT_FALSE(IsRepeat('a')); + EXPECT_FALSE(IsRepeat('1')); + EXPECT_FALSE(IsRepeat('-')); +} + +TEST(IsRepeatTest, IsTrueForRepeatChar) { + EXPECT_TRUE(IsRepeat('?')); + EXPECT_TRUE(IsRepeat('*')); + EXPECT_TRUE(IsRepeat('+')); +} + +TEST(IsAsciiWhiteSpaceTest, IsFalseForNonWhiteSpace) { + EXPECT_FALSE(IsAsciiWhiteSpace('\0')); + EXPECT_FALSE(IsAsciiWhiteSpace('a')); + EXPECT_FALSE(IsAsciiWhiteSpace('1')); + EXPECT_FALSE(IsAsciiWhiteSpace('+')); + EXPECT_FALSE(IsAsciiWhiteSpace('_')); +} + +TEST(IsAsciiWhiteSpaceTest, IsTrueForWhiteSpace) { + EXPECT_TRUE(IsAsciiWhiteSpace(' ')); + EXPECT_TRUE(IsAsciiWhiteSpace('\n')); + EXPECT_TRUE(IsAsciiWhiteSpace('\r')); + EXPECT_TRUE(IsAsciiWhiteSpace('\t')); + EXPECT_TRUE(IsAsciiWhiteSpace('\v')); + EXPECT_TRUE(IsAsciiWhiteSpace('\f')); +} + +TEST(IsAsciiWordCharTest, IsFalseForNonWordChar) { + EXPECT_FALSE(IsAsciiWordChar('\0')); + EXPECT_FALSE(IsAsciiWordChar('+')); + EXPECT_FALSE(IsAsciiWordChar('.')); + EXPECT_FALSE(IsAsciiWordChar(' ')); + EXPECT_FALSE(IsAsciiWordChar('\n')); +} + +TEST(IsAsciiWordCharTest, IsTrueForLetter) { + EXPECT_TRUE(IsAsciiWordChar('a')); + EXPECT_TRUE(IsAsciiWordChar('b')); + EXPECT_TRUE(IsAsciiWordChar('A')); + EXPECT_TRUE(IsAsciiWordChar('Z')); +} + +TEST(IsAsciiWordCharTest, IsTrueForDigit) { + EXPECT_TRUE(IsAsciiWordChar('0')); + EXPECT_TRUE(IsAsciiWordChar('1')); + EXPECT_TRUE(IsAsciiWordChar('7')); + EXPECT_TRUE(IsAsciiWordChar('9')); +} + +TEST(IsAsciiWordCharTest, IsTrueForUnderscore) { + EXPECT_TRUE(IsAsciiWordChar('_')); +} + +TEST(IsValidEscapeTest, IsFalseForNonPrintable) { + EXPECT_FALSE(IsValidEscape('\0')); + EXPECT_FALSE(IsValidEscape('\007')); +} + +TEST(IsValidEscapeTest, IsFalseForDigit) { + EXPECT_FALSE(IsValidEscape('0')); + EXPECT_FALSE(IsValidEscape('9')); +} + +TEST(IsValidEscapeTest, IsFalseForWhiteSpace) { + EXPECT_FALSE(IsValidEscape(' ')); + EXPECT_FALSE(IsValidEscape('\n')); +} + +TEST(IsValidEscapeTest, IsFalseForSomeLetter) { + EXPECT_FALSE(IsValidEscape('a')); + EXPECT_FALSE(IsValidEscape('Z')); +} + +TEST(IsValidEscapeTest, IsTrueForPunct) { + EXPECT_TRUE(IsValidEscape('.')); + EXPECT_TRUE(IsValidEscape('-')); + EXPECT_TRUE(IsValidEscape('^')); + EXPECT_TRUE(IsValidEscape('$')); + EXPECT_TRUE(IsValidEscape('(')); + EXPECT_TRUE(IsValidEscape(']')); + EXPECT_TRUE(IsValidEscape('{')); + EXPECT_TRUE(IsValidEscape('|')); +} + +TEST(IsValidEscapeTest, IsTrueForSomeLetter) { + EXPECT_TRUE(IsValidEscape('d')); + EXPECT_TRUE(IsValidEscape('D')); + EXPECT_TRUE(IsValidEscape('s')); + EXPECT_TRUE(IsValidEscape('S')); + EXPECT_TRUE(IsValidEscape('w')); + EXPECT_TRUE(IsValidEscape('W')); +} + +TEST(AtomMatchesCharTest, EscapedPunct) { + EXPECT_FALSE(AtomMatchesChar(true, '\\', '\0')); + EXPECT_FALSE(AtomMatchesChar(true, '\\', ' ')); + EXPECT_FALSE(AtomMatchesChar(true, '_', '.')); + EXPECT_FALSE(AtomMatchesChar(true, '.', 'a')); + + EXPECT_TRUE(AtomMatchesChar(true, '\\', '\\')); + EXPECT_TRUE(AtomMatchesChar(true, '_', '_')); + EXPECT_TRUE(AtomMatchesChar(true, '+', '+')); + EXPECT_TRUE(AtomMatchesChar(true, '.', '.')); +} + +TEST(AtomMatchesCharTest, Escaped_d) { + EXPECT_FALSE(AtomMatchesChar(true, 'd', '\0')); + EXPECT_FALSE(AtomMatchesChar(true, 'd', 'a')); + EXPECT_FALSE(AtomMatchesChar(true, 'd', '.')); + + EXPECT_TRUE(AtomMatchesChar(true, 'd', '0')); + EXPECT_TRUE(AtomMatchesChar(true, 'd', '9')); +} + +TEST(AtomMatchesCharTest, Escaped_D) { + EXPECT_FALSE(AtomMatchesChar(true, 'D', '0')); + EXPECT_FALSE(AtomMatchesChar(true, 'D', '9')); + + EXPECT_TRUE(AtomMatchesChar(true, 'D', '\0')); + EXPECT_TRUE(AtomMatchesChar(true, 'D', 'a')); + EXPECT_TRUE(AtomMatchesChar(true, 'D', '-')); +} + +TEST(AtomMatchesCharTest, Escaped_s) { + EXPECT_FALSE(AtomMatchesChar(true, 's', '\0')); + EXPECT_FALSE(AtomMatchesChar(true, 's', 'a')); + EXPECT_FALSE(AtomMatchesChar(true, 's', '.')); + EXPECT_FALSE(AtomMatchesChar(true, 's', '9')); + + EXPECT_TRUE(AtomMatchesChar(true, 's', ' ')); + EXPECT_TRUE(AtomMatchesChar(true, 's', '\n')); + EXPECT_TRUE(AtomMatchesChar(true, 's', '\t')); +} + +TEST(AtomMatchesCharTest, Escaped_S) { + EXPECT_FALSE(AtomMatchesChar(true, 'S', ' ')); + EXPECT_FALSE(AtomMatchesChar(true, 'S', '\r')); + + EXPECT_TRUE(AtomMatchesChar(true, 'S', '\0')); + EXPECT_TRUE(AtomMatchesChar(true, 'S', 'a')); + EXPECT_TRUE(AtomMatchesChar(true, 'S', '9')); +} + +TEST(AtomMatchesCharTest, Escaped_w) { + EXPECT_FALSE(AtomMatchesChar(true, 'w', '\0')); + EXPECT_FALSE(AtomMatchesChar(true, 'w', '+')); + EXPECT_FALSE(AtomMatchesChar(true, 'w', ' ')); + EXPECT_FALSE(AtomMatchesChar(true, 'w', '\n')); + + EXPECT_TRUE(AtomMatchesChar(true, 'w', '0')); + EXPECT_TRUE(AtomMatchesChar(true, 'w', 'b')); + EXPECT_TRUE(AtomMatchesChar(true, 'w', 'C')); + EXPECT_TRUE(AtomMatchesChar(true, 'w', '_')); +} + +TEST(AtomMatchesCharTest, Escaped_W) { + EXPECT_FALSE(AtomMatchesChar(true, 'W', 'A')); + EXPECT_FALSE(AtomMatchesChar(true, 'W', 'b')); + EXPECT_FALSE(AtomMatchesChar(true, 'W', '9')); + EXPECT_FALSE(AtomMatchesChar(true, 'W', '_')); + + EXPECT_TRUE(AtomMatchesChar(true, 'W', '\0')); + EXPECT_TRUE(AtomMatchesChar(true, 'W', '*')); + EXPECT_TRUE(AtomMatchesChar(true, 'W', '\n')); +} + +TEST(AtomMatchesCharTest, EscapedWhiteSpace) { + EXPECT_FALSE(AtomMatchesChar(true, 'f', '\0')); + EXPECT_FALSE(AtomMatchesChar(true, 'f', '\n')); + EXPECT_FALSE(AtomMatchesChar(true, 'n', '\0')); + EXPECT_FALSE(AtomMatchesChar(true, 'n', '\r')); + EXPECT_FALSE(AtomMatchesChar(true, 'r', '\0')); + EXPECT_FALSE(AtomMatchesChar(true, 'r', 'a')); + EXPECT_FALSE(AtomMatchesChar(true, 't', '\0')); + EXPECT_FALSE(AtomMatchesChar(true, 't', 't')); + EXPECT_FALSE(AtomMatchesChar(true, 'v', '\0')); + EXPECT_FALSE(AtomMatchesChar(true, 'v', '\f')); + + EXPECT_TRUE(AtomMatchesChar(true, 'f', '\f')); + EXPECT_TRUE(AtomMatchesChar(true, 'n', '\n')); + EXPECT_TRUE(AtomMatchesChar(true, 'r', '\r')); + EXPECT_TRUE(AtomMatchesChar(true, 't', '\t')); + EXPECT_TRUE(AtomMatchesChar(true, 'v', '\v')); +} + +TEST(AtomMatchesCharTest, UnescapedDot) { + EXPECT_FALSE(AtomMatchesChar(false, '.', '\n')); + + EXPECT_TRUE(AtomMatchesChar(false, '.', '\0')); + EXPECT_TRUE(AtomMatchesChar(false, '.', '.')); + EXPECT_TRUE(AtomMatchesChar(false, '.', 'a')); + EXPECT_TRUE(AtomMatchesChar(false, '.', ' ')); +} + +TEST(AtomMatchesCharTest, UnescapedChar) { + EXPECT_FALSE(AtomMatchesChar(false, 'a', '\0')); + EXPECT_FALSE(AtomMatchesChar(false, 'a', 'b')); + EXPECT_FALSE(AtomMatchesChar(false, '$', 'a')); + + EXPECT_TRUE(AtomMatchesChar(false, '$', '$')); + EXPECT_TRUE(AtomMatchesChar(false, '5', '5')); + EXPECT_TRUE(AtomMatchesChar(false, 'Z', 'Z')); +} + +TEST(ValidateRegexTest, GeneratesFailureAndReturnsFalseForInvalid) { + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex(NULL)), + "NULL is not a valid simple regular expression"); + EXPECT_NONFATAL_FAILURE( + ASSERT_FALSE(ValidateRegex("a\\")), + "Syntax error at index 1 in simple regular expression \"a\\\": "); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("a\\")), + "'\\' cannot appear at the end"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("\\n\\")), + "'\\' cannot appear at the end"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("\\s\\hb")), + "invalid escape sequence \"\\h\""); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("^^")), + "'^' can only appear at the beginning"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex(".*^b")), + "'^' can only appear at the beginning"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("$$")), + "'$' can only appear at the end"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("^$a")), + "'$' can only appear at the end"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("a(b")), + "'(' is unsupported"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("ab)")), + "')' is unsupported"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("[ab")), + "'[' is unsupported"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("a{2")), + "'{' is unsupported"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("?")), + "'?' can only follow a repeatable token"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("^*")), + "'*' can only follow a repeatable token"); + EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("5*+")), + "'+' can only follow a repeatable token"); +} + +TEST(ValidateRegexTest, ReturnsTrueForValid) { + EXPECT_TRUE(ValidateRegex("")); + EXPECT_TRUE(ValidateRegex("a")); + EXPECT_TRUE(ValidateRegex(".*")); + EXPECT_TRUE(ValidateRegex("^a_+")); + EXPECT_TRUE(ValidateRegex("^a\\t\\&?")); + EXPECT_TRUE(ValidateRegex("09*$")); + EXPECT_TRUE(ValidateRegex("^Z$")); + EXPECT_TRUE(ValidateRegex("a\\^Z\\$\\(\\)\\|\\[\\]\\{\\}")); +} + +TEST(MatchRepetitionAndRegexAtHeadTest, WorksForZeroOrOne) { + EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "a", "ba")); + // Repeating more than once. + EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "b", "aab")); + + // Repeating zero times. + EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "b", "ba")); + // Repeating once. + EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "b", "ab")); + EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '#', '?', ".", "##")); +} + +TEST(MatchRepetitionAndRegexAtHeadTest, WorksForZeroOrMany) { + EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, '.', '*', "a$", "baab")); + + // Repeating zero times. + EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '.', '*', "b", "bc")); + // Repeating once. + EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '.', '*', "b", "abc")); + // Repeating more than once. + EXPECT_TRUE(MatchRepetitionAndRegexAtHead(true, 'w', '*', "-", "ab_1-g")); +} + +TEST(MatchRepetitionAndRegexAtHeadTest, WorksForOneOrMany) { + EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, '.', '+', "a$", "baab")); + // Repeating zero times. + EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, '.', '+', "b", "bc")); + + // Repeating once. + EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '.', '+', "b", "abc")); + // Repeating more than once. + EXPECT_TRUE(MatchRepetitionAndRegexAtHead(true, 'w', '+', "-", "ab_1-g")); +} + +TEST(MatchRegexAtHeadTest, ReturnsTrueForEmptyRegex) { + EXPECT_TRUE(MatchRegexAtHead("", "")); + EXPECT_TRUE(MatchRegexAtHead("", "ab")); +} + +TEST(MatchRegexAtHeadTest, WorksWhenDollarIsInRegex) { + EXPECT_FALSE(MatchRegexAtHead("$", "a")); + + EXPECT_TRUE(MatchRegexAtHead("$", "")); + EXPECT_TRUE(MatchRegexAtHead("a$", "a")); +} + +TEST(MatchRegexAtHeadTest, WorksWhenRegexStartsWithEscapeSequence) { + EXPECT_FALSE(MatchRegexAtHead("\\w", "+")); + EXPECT_FALSE(MatchRegexAtHead("\\W", "ab")); + + EXPECT_TRUE(MatchRegexAtHead("\\sa", "\nab")); + EXPECT_TRUE(MatchRegexAtHead("\\d", "1a")); +} + +TEST(MatchRegexAtHeadTest, WorksWhenRegexStartsWithRepetition) { + EXPECT_FALSE(MatchRegexAtHead(".+a", "abc")); + EXPECT_FALSE(MatchRegexAtHead("a?b", "aab")); + + EXPECT_TRUE(MatchRegexAtHead(".*a", "bc12-ab")); + EXPECT_TRUE(MatchRegexAtHead("a?b", "b")); + EXPECT_TRUE(MatchRegexAtHead("a?b", "ab")); +} + +TEST(MatchRegexAtHeadTest, + WorksWhenRegexStartsWithRepetionOfEscapeSequence) { + EXPECT_FALSE(MatchRegexAtHead("\\.+a", "abc")); + EXPECT_FALSE(MatchRegexAtHead("\\s?b", " b")); + + EXPECT_TRUE(MatchRegexAtHead("\\(*a", "((((ab")); + EXPECT_TRUE(MatchRegexAtHead("\\^?b", "^b")); + EXPECT_TRUE(MatchRegexAtHead("\\\\?b", "b")); + EXPECT_TRUE(MatchRegexAtHead("\\\\?b", "\\b")); +} + +TEST(MatchRegexAtHeadTest, MatchesSequentially) { + EXPECT_FALSE(MatchRegexAtHead("ab.*c", "acabc")); + + EXPECT_TRUE(MatchRegexAtHead("ab.*c", "ab-fsc")); +} + +TEST(MatchRegexAnywhereTest, ReturnsFalseWhenStringIsNull) { + EXPECT_FALSE(MatchRegexAnywhere("", NULL)); +} + +TEST(MatchRegexAnywhereTest, WorksWhenRegexStartsWithCaret) { + EXPECT_FALSE(MatchRegexAnywhere("^a", "ba")); + EXPECT_FALSE(MatchRegexAnywhere("^$", "a")); + + EXPECT_TRUE(MatchRegexAnywhere("^a", "ab")); + EXPECT_TRUE(MatchRegexAnywhere("^", "ab")); + EXPECT_TRUE(MatchRegexAnywhere("^$", "")); +} + +TEST(MatchRegexAnywhereTest, ReturnsFalseWhenNoMatch) { + EXPECT_FALSE(MatchRegexAnywhere("a", "bcde123")); + EXPECT_FALSE(MatchRegexAnywhere("a.+a", "--aa88888888")); +} + +TEST(MatchRegexAnywhereTest, ReturnsTrueWhenMatchingPrefix) { + EXPECT_TRUE(MatchRegexAnywhere("\\w+", "ab1_ - 5")); + EXPECT_TRUE(MatchRegexAnywhere(".*=", "=")); + EXPECT_TRUE(MatchRegexAnywhere("x.*ab?.*bc", "xaaabc")); +} + +TEST(MatchRegexAnywhereTest, ReturnsTrueWhenMatchingNonPrefix) { + EXPECT_TRUE(MatchRegexAnywhere("\\w+", "$$$ ab1_ - 5")); + EXPECT_TRUE(MatchRegexAnywhere("\\.+=", "= ...=")); +} + +// Tests RE's implicit constructors. +TEST(RETest, ImplicitConstructorWorks) { + const RE empty(""); + EXPECT_STREQ("", empty.pattern()); + + const RE simple("hello"); + EXPECT_STREQ("hello", simple.pattern()); +} + +// Tests that RE's constructors reject invalid regular expressions. +TEST(RETest, RejectsInvalidRegex) { + EXPECT_NONFATAL_FAILURE({ + const RE normal(NULL); + }, "NULL is not a valid simple regular expression"); + + EXPECT_NONFATAL_FAILURE({ + const RE normal(".*(\\w+"); + }, "'(' is unsupported"); + + EXPECT_NONFATAL_FAILURE({ + const RE invalid("^?"); + }, "'?' can only follow a repeatable token"); +} + +// Tests RE::FullMatch(). +TEST(RETest, FullMatchWorks) { + const RE empty(""); + EXPECT_TRUE(RE::FullMatch("", empty)); + EXPECT_FALSE(RE::FullMatch("a", empty)); + + const RE re1("a"); + EXPECT_TRUE(RE::FullMatch("a", re1)); + + const RE re("a.*z"); + EXPECT_TRUE(RE::FullMatch("az", re)); + EXPECT_TRUE(RE::FullMatch("axyz", re)); + EXPECT_FALSE(RE::FullMatch("baz", re)); + EXPECT_FALSE(RE::FullMatch("azy", re)); +} + +// Tests RE::PartialMatch(). +TEST(RETest, PartialMatchWorks) { + const RE empty(""); + EXPECT_TRUE(RE::PartialMatch("", empty)); + EXPECT_TRUE(RE::PartialMatch("a", empty)); + + const RE re("a.*z"); + EXPECT_TRUE(RE::PartialMatch("az", re)); + EXPECT_TRUE(RE::PartialMatch("axyz", re)); + EXPECT_TRUE(RE::PartialMatch("baz", re)); + EXPECT_TRUE(RE::PartialMatch("azy", re)); + EXPECT_FALSE(RE::PartialMatch("zza", re)); +} + +#endif // GTEST_USES_POSIX_RE + +#if !GTEST_OS_WINDOWS_MOBILE + +TEST(CaptureTest, CapturesStdout) { + CaptureStdout(); + fprintf(stdout, "abc"); + EXPECT_STREQ("abc", GetCapturedStdout().c_str()); + + CaptureStdout(); + fprintf(stdout, "def%cghi", '\0'); + EXPECT_EQ(::std::string("def\0ghi", 7), ::std::string(GetCapturedStdout())); +} + +TEST(CaptureTest, CapturesStderr) { + CaptureStderr(); + fprintf(stderr, "jkl"); + EXPECT_STREQ("jkl", GetCapturedStderr().c_str()); + + CaptureStderr(); + fprintf(stderr, "jkl%cmno", '\0'); + EXPECT_EQ(::std::string("jkl\0mno", 7), ::std::string(GetCapturedStderr())); +} + +// Tests that stdout and stderr capture don't interfere with each other. +TEST(CaptureTest, CapturesStdoutAndStderr) { + CaptureStdout(); + CaptureStderr(); + fprintf(stdout, "pqr"); + fprintf(stderr, "stu"); + EXPECT_STREQ("pqr", GetCapturedStdout().c_str()); + EXPECT_STREQ("stu", GetCapturedStderr().c_str()); +} + +TEST(CaptureDeathTest, CannotReenterStdoutCapture) { + CaptureStdout(); + EXPECT_DEATH_IF_SUPPORTED(CaptureStdout(), + "Only one stdout capturer can exist at a time"); + GetCapturedStdout(); + + // We cannot test stderr capturing using death tests as they use it + // themselves. +} + +#endif // !GTEST_OS_WINDOWS_MOBILE + +TEST(ThreadLocalTest, DefaultConstructorInitializesToDefaultValues) { + ThreadLocal t1; + EXPECT_EQ(0, t1.get()); + + ThreadLocal t2; + EXPECT_TRUE(t2.get() == NULL); +} + +TEST(ThreadLocalTest, SingleParamConstructorInitializesToParam) { + ThreadLocal t1(123); + EXPECT_EQ(123, t1.get()); + + int i = 0; + ThreadLocal t2(&i); + EXPECT_EQ(&i, t2.get()); +} + +class NoDefaultContructor { + public: + explicit NoDefaultContructor(const char*) {} + NoDefaultContructor(const NoDefaultContructor&) {} +}; + +TEST(ThreadLocalTest, ValueDefaultContructorIsNotRequiredForParamVersion) { + ThreadLocal bar(NoDefaultContructor("foo")); + bar.pointer(); +} + +TEST(ThreadLocalTest, GetAndPointerReturnSameValue) { + ThreadLocal thread_local_string; + + EXPECT_EQ(thread_local_string.pointer(), &(thread_local_string.get())); + + // Verifies the condition still holds after calling set. + thread_local_string.set("foo"); + EXPECT_EQ(thread_local_string.pointer(), &(thread_local_string.get())); +} + +TEST(ThreadLocalTest, PointerAndConstPointerReturnSameValue) { + ThreadLocal thread_local_string; + const ThreadLocal& const_thread_local_string = + thread_local_string; + + EXPECT_EQ(thread_local_string.pointer(), const_thread_local_string.pointer()); + + thread_local_string.set("foo"); + EXPECT_EQ(thread_local_string.pointer(), const_thread_local_string.pointer()); +} + +#if GTEST_IS_THREADSAFE + +void AddTwo(int* param) { *param += 2; } + +TEST(ThreadWithParamTest, ConstructorExecutesThreadFunc) { + int i = 40; + ThreadWithParam thread(&AddTwo, &i, NULL); + thread.Join(); + EXPECT_EQ(42, i); +} + +TEST(MutexDeathTest, AssertHeldShouldAssertWhenNotLocked) { + // AssertHeld() is flaky only in the presence of multiple threads accessing + // the lock. In this case, the test is robust. + EXPECT_DEATH_IF_SUPPORTED({ + Mutex m; + { MutexLock lock(&m); } + m.AssertHeld(); + }, + "thread .*hold"); +} + +TEST(MutexTest, AssertHeldShouldNotAssertWhenLocked) { + Mutex m; + MutexLock lock(&m); + m.AssertHeld(); +} + +class AtomicCounterWithMutex { + public: + explicit AtomicCounterWithMutex(Mutex* mutex) : + value_(0), mutex_(mutex), random_(42) {} + + void Increment() { + MutexLock lock(mutex_); + int temp = value_; + { + // Locking a mutex puts up a memory barrier, preventing reads and + // writes to value_ rearranged when observed from other threads. + // + // We cannot use Mutex and MutexLock here or rely on their memory + // barrier functionality as we are testing them here. + pthread_mutex_t memory_barrier_mutex; + GTEST_CHECK_POSIX_SUCCESS_( + pthread_mutex_init(&memory_barrier_mutex, NULL)); + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&memory_barrier_mutex)); + + SleepMilliseconds(random_.Generate(30)); + + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&memory_barrier_mutex)); + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&memory_barrier_mutex)); + } + value_ = temp + 1; + } + int value() const { return value_; } + + private: + volatile int value_; + Mutex* const mutex_; // Protects value_. + Random random_; +}; + +void CountingThreadFunc(pair param) { + for (int i = 0; i < param.second; ++i) + param.first->Increment(); +} + +// Tests that the mutex only lets one thread at a time to lock it. +TEST(MutexTest, OnlyOneThreadCanLockAtATime) { + Mutex mutex; + AtomicCounterWithMutex locked_counter(&mutex); + + typedef ThreadWithParam > ThreadType; + const int kCycleCount = 20; + const int kThreadCount = 7; + scoped_ptr counting_threads[kThreadCount]; + Notification threads_can_start; + // Creates and runs kThreadCount threads that increment locked_counter + // kCycleCount times each. + for (int i = 0; i < kThreadCount; ++i) { + counting_threads[i].reset(new ThreadType(&CountingThreadFunc, + make_pair(&locked_counter, + kCycleCount), + &threads_can_start)); + } + threads_can_start.Notify(); + for (int i = 0; i < kThreadCount; ++i) + counting_threads[i]->Join(); + + // If the mutex lets more than one thread to increment the counter at a + // time, they are likely to encounter a race condition and have some + // increments overwritten, resulting in the lower then expected counter + // value. + EXPECT_EQ(kCycleCount * kThreadCount, locked_counter.value()); +} + +template +void RunFromThread(void (func)(T), T param) { + ThreadWithParam thread(func, param, NULL); + thread.Join(); +} + +void RetrieveThreadLocalValue( + pair*, std::string*> param) { + *param.second = param.first->get(); +} + +TEST(ThreadLocalTest, ParameterizedConstructorSetsDefault) { + ThreadLocal thread_local_string("foo"); + EXPECT_STREQ("foo", thread_local_string.get().c_str()); + + thread_local_string.set("bar"); + EXPECT_STREQ("bar", thread_local_string.get().c_str()); + + std::string result; + RunFromThread(&RetrieveThreadLocalValue, + make_pair(&thread_local_string, &result)); + EXPECT_STREQ("foo", result.c_str()); +} + +// DestructorTracker keeps track of whether its instances have been +// destroyed. +static std::vector g_destroyed; + +class DestructorTracker { + public: + DestructorTracker() : index_(GetNewIndex()) {} + DestructorTracker(const DestructorTracker& /* rhs */) + : index_(GetNewIndex()) {} + ~DestructorTracker() { + // We never access g_destroyed concurrently, so we don't need to + // protect the write operation under a mutex. + g_destroyed[index_] = true; + } + + private: + static int GetNewIndex() { + g_destroyed.push_back(false); + return g_destroyed.size() - 1; + } + const int index_; +}; + +typedef ThreadLocal* ThreadParam; + +void CallThreadLocalGet(ThreadParam thread_local_param) { + thread_local_param->get(); +} + +// Tests that when a ThreadLocal object dies in a thread, it destroys +// the managed object for that thread. +TEST(ThreadLocalTest, DestroysManagedObjectForOwnThreadWhenDying) { + g_destroyed.clear(); + + { + // The next line default constructs a DestructorTracker object as + // the default value of objects managed by thread_local_tracker. + ThreadLocal thread_local_tracker; + ASSERT_EQ(1U, g_destroyed.size()); + ASSERT_FALSE(g_destroyed[0]); + + // This creates another DestructorTracker object for the main thread. + thread_local_tracker.get(); + ASSERT_EQ(2U, g_destroyed.size()); + ASSERT_FALSE(g_destroyed[0]); + ASSERT_FALSE(g_destroyed[1]); + } + + // Now thread_local_tracker has died. It should have destroyed both the + // default value shared by all threads and the value for the main + // thread. + ASSERT_EQ(2U, g_destroyed.size()); + EXPECT_TRUE(g_destroyed[0]); + EXPECT_TRUE(g_destroyed[1]); + + g_destroyed.clear(); +} + +// Tests that when a thread exits, the thread-local object for that +// thread is destroyed. +TEST(ThreadLocalTest, DestroysManagedObjectAtThreadExit) { + g_destroyed.clear(); + + { + // The next line default constructs a DestructorTracker object as + // the default value of objects managed by thread_local_tracker. + ThreadLocal thread_local_tracker; + ASSERT_EQ(1U, g_destroyed.size()); + ASSERT_FALSE(g_destroyed[0]); + + // This creates another DestructorTracker object in the new thread. + ThreadWithParam thread( + &CallThreadLocalGet, &thread_local_tracker, NULL); + thread.Join(); + + // Now the new thread has exited. The per-thread object for it + // should have been destroyed. + ASSERT_EQ(2U, g_destroyed.size()); + ASSERT_FALSE(g_destroyed[0]); + ASSERT_TRUE(g_destroyed[1]); + } + + // Now thread_local_tracker has died. The default value should have been + // destroyed too. + ASSERT_EQ(2U, g_destroyed.size()); + EXPECT_TRUE(g_destroyed[0]); + EXPECT_TRUE(g_destroyed[1]); + + g_destroyed.clear(); +} + +TEST(ThreadLocalTest, ThreadLocalMutationsAffectOnlyCurrentThread) { + ThreadLocal thread_local_string; + thread_local_string.set("Foo"); + EXPECT_STREQ("Foo", thread_local_string.get().c_str()); + + std::string result; + RunFromThread(&RetrieveThreadLocalValue, + make_pair(&thread_local_string, &result)); + EXPECT_TRUE(result.empty()); +} + +#endif // GTEST_IS_THREADSAFE + +} // namespace internal +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-printers_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-printers_test.cc new file mode 100644 index 000000000..c2beca7d8 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-printers_test.cc @@ -0,0 +1,1566 @@ +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Test - The Google C++ Testing Framework +// +// This file tests the universal value printer. + +#include "gtest/gtest-printers.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "gtest/gtest.h" + +// hash_map and hash_set are available under Visual C++. +#if _MSC_VER +# define GTEST_HAS_HASH_MAP_ 1 // Indicates that hash_map is available. +# include // NOLINT +# define GTEST_HAS_HASH_SET_ 1 // Indicates that hash_set is available. +# include // NOLINT +#endif // GTEST_OS_WINDOWS + +// Some user-defined types for testing the universal value printer. + +// An anonymous enum type. +enum AnonymousEnum { + kAE1 = -1, + kAE2 = 1 +}; + +// An enum without a user-defined printer. +enum EnumWithoutPrinter { + kEWP1 = -2, + kEWP2 = 42 +}; + +// An enum with a << operator. +enum EnumWithStreaming { + kEWS1 = 10 +}; + +std::ostream& operator<<(std::ostream& os, EnumWithStreaming e) { + return os << (e == kEWS1 ? "kEWS1" : "invalid"); +} + +// An enum with a PrintTo() function. +enum EnumWithPrintTo { + kEWPT1 = 1 +}; + +void PrintTo(EnumWithPrintTo e, std::ostream* os) { + *os << (e == kEWPT1 ? "kEWPT1" : "invalid"); +} + +// A class implicitly convertible to BiggestInt. +class BiggestIntConvertible { + public: + operator ::testing::internal::BiggestInt() const { return 42; } +}; + +// A user-defined unprintable class template in the global namespace. +template +class UnprintableTemplateInGlobal { + public: + UnprintableTemplateInGlobal() : value_() {} + private: + T value_; +}; + +// A user-defined streamable type in the global namespace. +class StreamableInGlobal { + public: + virtual ~StreamableInGlobal() {} +}; + +inline void operator<<(::std::ostream& os, const StreamableInGlobal& /* x */) { + os << "StreamableInGlobal"; +} + +void operator<<(::std::ostream& os, const StreamableInGlobal* /* x */) { + os << "StreamableInGlobal*"; +} + +namespace foo { + +// A user-defined unprintable type in a user namespace. +class UnprintableInFoo { + public: + UnprintableInFoo() : z_(0) { memcpy(xy_, "\xEF\x12\x0\x0\x34\xAB\x0\x0", 8); } + private: + char xy_[8]; + double z_; +}; + +// A user-defined printable type in a user-chosen namespace. +struct PrintableViaPrintTo { + PrintableViaPrintTo() : value() {} + int value; +}; + +void PrintTo(const PrintableViaPrintTo& x, ::std::ostream* os) { + *os << "PrintableViaPrintTo: " << x.value; +} + +// A type with a user-defined << for printing its pointer. +struct PointerPrintable { +}; + +::std::ostream& operator<<(::std::ostream& os, + const PointerPrintable* /* x */) { + return os << "PointerPrintable*"; +} + +// A user-defined printable class template in a user-chosen namespace. +template +class PrintableViaPrintToTemplate { + public: + explicit PrintableViaPrintToTemplate(const T& a_value) : value_(a_value) {} + + const T& value() const { return value_; } + private: + T value_; +}; + +template +void PrintTo(const PrintableViaPrintToTemplate& x, ::std::ostream* os) { + *os << "PrintableViaPrintToTemplate: " << x.value(); +} + +// A user-defined streamable class template in a user namespace. +template +class StreamableTemplateInFoo { + public: + StreamableTemplateInFoo() : value_() {} + + const T& value() const { return value_; } + private: + T value_; +}; + +template +inline ::std::ostream& operator<<(::std::ostream& os, + const StreamableTemplateInFoo& x) { + return os << "StreamableTemplateInFoo: " << x.value(); +} + +} // namespace foo + +namespace testing { +namespace gtest_printers_test { + +using ::std::deque; +using ::std::list; +using ::std::make_pair; +using ::std::map; +using ::std::multimap; +using ::std::multiset; +using ::std::pair; +using ::std::set; +using ::std::vector; +using ::testing::PrintToString; +using ::testing::internal::FormatForComparisonFailureMessage; +using ::testing::internal::ImplicitCast_; +using ::testing::internal::NativeArray; +using ::testing::internal::RE; +using ::testing::internal::Strings; +using ::testing::internal::UniversalPrint; +using ::testing::internal::UniversalPrinter; +using ::testing::internal::UniversalTersePrint; +using ::testing::internal::UniversalTersePrintTupleFieldsToStrings; +using ::testing::internal::kReference; +using ::testing::internal::string; + +#if GTEST_HAS_TR1_TUPLE +using ::std::tr1::make_tuple; +using ::std::tr1::tuple; +#endif + +// The hash_* classes are not part of the C++ standard. STLport +// defines them in namespace std. MSVC defines them in ::stdext. GCC +// defines them in ::. +#ifdef _STLP_HASH_MAP // We got from STLport. +using ::std::hash_map; +using ::std::hash_set; +using ::std::hash_multimap; +using ::std::hash_multiset; +#elif _MSC_VER +using ::stdext::hash_map; +using ::stdext::hash_set; +using ::stdext::hash_multimap; +using ::stdext::hash_multiset; +#endif + +// Prints a value to a string using the universal value printer. This +// is a helper for testing UniversalPrinter::Print() for various types. +template +string Print(const T& value) { + ::std::stringstream ss; + UniversalPrinter::Print(value, &ss); + return ss.str(); +} + +// Prints a value passed by reference to a string, using the universal +// value printer. This is a helper for testing +// UniversalPrinter::Print() for various types. +template +string PrintByRef(const T& value) { + ::std::stringstream ss; + UniversalPrinter::Print(value, &ss); + return ss.str(); +} + +// Tests printing various enum types. + +TEST(PrintEnumTest, AnonymousEnum) { + EXPECT_EQ("-1", Print(kAE1)); + EXPECT_EQ("1", Print(kAE2)); +} + +TEST(PrintEnumTest, EnumWithoutPrinter) { + EXPECT_EQ("-2", Print(kEWP1)); + EXPECT_EQ("42", Print(kEWP2)); +} + +TEST(PrintEnumTest, EnumWithStreaming) { + EXPECT_EQ("kEWS1", Print(kEWS1)); + EXPECT_EQ("invalid", Print(static_cast(0))); +} + +TEST(PrintEnumTest, EnumWithPrintTo) { + EXPECT_EQ("kEWPT1", Print(kEWPT1)); + EXPECT_EQ("invalid", Print(static_cast(0))); +} + +// Tests printing a class implicitly convertible to BiggestInt. + +TEST(PrintClassTest, BiggestIntConvertible) { + EXPECT_EQ("42", Print(BiggestIntConvertible())); +} + +// Tests printing various char types. + +// char. +TEST(PrintCharTest, PlainChar) { + EXPECT_EQ("'\\0'", Print('\0')); + EXPECT_EQ("'\\'' (39, 0x27)", Print('\'')); + EXPECT_EQ("'\"' (34, 0x22)", Print('"')); + EXPECT_EQ("'?' (63, 0x3F)", Print('?')); + EXPECT_EQ("'\\\\' (92, 0x5C)", Print('\\')); + EXPECT_EQ("'\\a' (7)", Print('\a')); + EXPECT_EQ("'\\b' (8)", Print('\b')); + EXPECT_EQ("'\\f' (12, 0xC)", Print('\f')); + EXPECT_EQ("'\\n' (10, 0xA)", Print('\n')); + EXPECT_EQ("'\\r' (13, 0xD)", Print('\r')); + EXPECT_EQ("'\\t' (9)", Print('\t')); + EXPECT_EQ("'\\v' (11, 0xB)", Print('\v')); + EXPECT_EQ("'\\x7F' (127)", Print('\x7F')); + EXPECT_EQ("'\\xFF' (255)", Print('\xFF')); + EXPECT_EQ("' ' (32, 0x20)", Print(' ')); + EXPECT_EQ("'a' (97, 0x61)", Print('a')); +} + +// signed char. +TEST(PrintCharTest, SignedChar) { + EXPECT_EQ("'\\0'", Print(static_cast('\0'))); + EXPECT_EQ("'\\xCE' (-50)", + Print(static_cast(-50))); +} + +// unsigned char. +TEST(PrintCharTest, UnsignedChar) { + EXPECT_EQ("'\\0'", Print(static_cast('\0'))); + EXPECT_EQ("'b' (98, 0x62)", + Print(static_cast('b'))); +} + +// Tests printing other simple, built-in types. + +// bool. +TEST(PrintBuiltInTypeTest, Bool) { + EXPECT_EQ("false", Print(false)); + EXPECT_EQ("true", Print(true)); +} + +// wchar_t. +TEST(PrintBuiltInTypeTest, Wchar_t) { + EXPECT_EQ("L'\\0'", Print(L'\0')); + EXPECT_EQ("L'\\'' (39, 0x27)", Print(L'\'')); + EXPECT_EQ("L'\"' (34, 0x22)", Print(L'"')); + EXPECT_EQ("L'?' (63, 0x3F)", Print(L'?')); + EXPECT_EQ("L'\\\\' (92, 0x5C)", Print(L'\\')); + EXPECT_EQ("L'\\a' (7)", Print(L'\a')); + EXPECT_EQ("L'\\b' (8)", Print(L'\b')); + EXPECT_EQ("L'\\f' (12, 0xC)", Print(L'\f')); + EXPECT_EQ("L'\\n' (10, 0xA)", Print(L'\n')); + EXPECT_EQ("L'\\r' (13, 0xD)", Print(L'\r')); + EXPECT_EQ("L'\\t' (9)", Print(L'\t')); + EXPECT_EQ("L'\\v' (11, 0xB)", Print(L'\v')); + EXPECT_EQ("L'\\x7F' (127)", Print(L'\x7F')); + EXPECT_EQ("L'\\xFF' (255)", Print(L'\xFF')); + EXPECT_EQ("L' ' (32, 0x20)", Print(L' ')); + EXPECT_EQ("L'a' (97, 0x61)", Print(L'a')); + EXPECT_EQ("L'\\x576' (1398)", Print(static_cast(0x576))); + EXPECT_EQ("L'\\xC74D' (51021)", Print(static_cast(0xC74D))); +} + +// Test that Int64 provides more storage than wchar_t. +TEST(PrintTypeSizeTest, Wchar_t) { + EXPECT_LT(sizeof(wchar_t), sizeof(testing::internal::Int64)); +} + +// Various integer types. +TEST(PrintBuiltInTypeTest, Integer) { + EXPECT_EQ("'\\xFF' (255)", Print(static_cast(255))); // uint8 + EXPECT_EQ("'\\x80' (-128)", Print(static_cast(-128))); // int8 + EXPECT_EQ("65535", Print(USHRT_MAX)); // uint16 + EXPECT_EQ("-32768", Print(SHRT_MIN)); // int16 + EXPECT_EQ("4294967295", Print(UINT_MAX)); // uint32 + EXPECT_EQ("-2147483648", Print(INT_MIN)); // int32 + EXPECT_EQ("18446744073709551615", + Print(static_cast(-1))); // uint64 + EXPECT_EQ("-9223372036854775808", + Print(static_cast(1) << 63)); // int64 +} + +// Size types. +TEST(PrintBuiltInTypeTest, Size_t) { + EXPECT_EQ("1", Print(sizeof('a'))); // size_t. +#if !GTEST_OS_WINDOWS + // Windows has no ssize_t type. + EXPECT_EQ("-2", Print(static_cast(-2))); // ssize_t. +#endif // !GTEST_OS_WINDOWS +} + +// Floating-points. +TEST(PrintBuiltInTypeTest, FloatingPoints) { + EXPECT_EQ("1.5", Print(1.5f)); // float + EXPECT_EQ("-2.5", Print(-2.5)); // double +} + +// Since ::std::stringstream::operator<<(const void *) formats the pointer +// output differently with different compilers, we have to create the expected +// output first and use it as our expectation. +static string PrintPointer(const void *p) { + ::std::stringstream expected_result_stream; + expected_result_stream << p; + return expected_result_stream.str(); +} + +// Tests printing C strings. + +// const char*. +TEST(PrintCStringTest, Const) { + const char* p = "World"; + EXPECT_EQ(PrintPointer(p) + " pointing to \"World\"", Print(p)); +} + +// char*. +TEST(PrintCStringTest, NonConst) { + char p[] = "Hi"; + EXPECT_EQ(PrintPointer(p) + " pointing to \"Hi\"", + Print(static_cast(p))); +} + +// NULL C string. +TEST(PrintCStringTest, Null) { + const char* p = NULL; + EXPECT_EQ("NULL", Print(p)); +} + +// Tests that C strings are escaped properly. +TEST(PrintCStringTest, EscapesProperly) { + const char* p = "'\"?\\\a\b\f\n\r\t\v\x7F\xFF a"; + EXPECT_EQ(PrintPointer(p) + " pointing to \"'\\\"?\\\\\\a\\b\\f" + "\\n\\r\\t\\v\\x7F\\xFF a\"", + Print(p)); +} + + + +// MSVC compiler can be configured to define whar_t as a typedef +// of unsigned short. Defining an overload for const wchar_t* in that case +// would cause pointers to unsigned shorts be printed as wide strings, +// possibly accessing more memory than intended and causing invalid +// memory accesses. MSVC defines _NATIVE_WCHAR_T_DEFINED symbol when +// wchar_t is implemented as a native type. +#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) + +// const wchar_t*. +TEST(PrintWideCStringTest, Const) { + const wchar_t* p = L"World"; + EXPECT_EQ(PrintPointer(p) + " pointing to L\"World\"", Print(p)); +} + +// wchar_t*. +TEST(PrintWideCStringTest, NonConst) { + wchar_t p[] = L"Hi"; + EXPECT_EQ(PrintPointer(p) + " pointing to L\"Hi\"", + Print(static_cast(p))); +} + +// NULL wide C string. +TEST(PrintWideCStringTest, Null) { + const wchar_t* p = NULL; + EXPECT_EQ("NULL", Print(p)); +} + +// Tests that wide C strings are escaped properly. +TEST(PrintWideCStringTest, EscapesProperly) { + const wchar_t s[] = {'\'', '"', '?', '\\', '\a', '\b', '\f', '\n', '\r', + '\t', '\v', 0xD3, 0x576, 0x8D3, 0xC74D, ' ', 'a', '\0'}; + EXPECT_EQ(PrintPointer(s) + " pointing to L\"'\\\"?\\\\\\a\\b\\f" + "\\n\\r\\t\\v\\xD3\\x576\\x8D3\\xC74D a\"", + Print(static_cast(s))); +} +#endif // native wchar_t + +// Tests printing pointers to other char types. + +// signed char*. +TEST(PrintCharPointerTest, SignedChar) { + signed char* p = reinterpret_cast(0x1234); + EXPECT_EQ(PrintPointer(p), Print(p)); + p = NULL; + EXPECT_EQ("NULL", Print(p)); +} + +// const signed char*. +TEST(PrintCharPointerTest, ConstSignedChar) { + signed char* p = reinterpret_cast(0x1234); + EXPECT_EQ(PrintPointer(p), Print(p)); + p = NULL; + EXPECT_EQ("NULL", Print(p)); +} + +// unsigned char*. +TEST(PrintCharPointerTest, UnsignedChar) { + unsigned char* p = reinterpret_cast(0x1234); + EXPECT_EQ(PrintPointer(p), Print(p)); + p = NULL; + EXPECT_EQ("NULL", Print(p)); +} + +// const unsigned char*. +TEST(PrintCharPointerTest, ConstUnsignedChar) { + const unsigned char* p = reinterpret_cast(0x1234); + EXPECT_EQ(PrintPointer(p), Print(p)); + p = NULL; + EXPECT_EQ("NULL", Print(p)); +} + +// Tests printing pointers to simple, built-in types. + +// bool*. +TEST(PrintPointerToBuiltInTypeTest, Bool) { + bool* p = reinterpret_cast(0xABCD); + EXPECT_EQ(PrintPointer(p), Print(p)); + p = NULL; + EXPECT_EQ("NULL", Print(p)); +} + +// void*. +TEST(PrintPointerToBuiltInTypeTest, Void) { + void* p = reinterpret_cast(0xABCD); + EXPECT_EQ(PrintPointer(p), Print(p)); + p = NULL; + EXPECT_EQ("NULL", Print(p)); +} + +// const void*. +TEST(PrintPointerToBuiltInTypeTest, ConstVoid) { + const void* p = reinterpret_cast(0xABCD); + EXPECT_EQ(PrintPointer(p), Print(p)); + p = NULL; + EXPECT_EQ("NULL", Print(p)); +} + +// Tests printing pointers to pointers. +TEST(PrintPointerToPointerTest, IntPointerPointer) { + int** p = reinterpret_cast(0xABCD); + EXPECT_EQ(PrintPointer(p), Print(p)); + p = NULL; + EXPECT_EQ("NULL", Print(p)); +} + +// Tests printing (non-member) function pointers. + +void MyFunction(int /* n */) {} + +TEST(PrintPointerTest, NonMemberFunctionPointer) { + // We cannot directly cast &MyFunction to const void* because the + // standard disallows casting between pointers to functions and + // pointers to objects, and some compilers (e.g. GCC 3.4) enforce + // this limitation. + EXPECT_EQ( + PrintPointer(reinterpret_cast( + reinterpret_cast(&MyFunction))), + Print(&MyFunction)); + int (*p)(bool) = NULL; // NOLINT + EXPECT_EQ("NULL", Print(p)); +} + +// An assertion predicate determining whether a one string is a prefix for +// another. +template +AssertionResult HasPrefix(const StringType& str, const StringType& prefix) { + if (str.find(prefix, 0) == 0) + return AssertionSuccess(); + + const bool is_wide_string = sizeof(prefix[0]) > 1; + const char* const begin_string_quote = is_wide_string ? "L\"" : "\""; + return AssertionFailure() + << begin_string_quote << prefix << "\" is not a prefix of " + << begin_string_quote << str << "\"\n"; +} + +// Tests printing member variable pointers. Although they are called +// pointers, they don't point to a location in the address space. +// Their representation is implementation-defined. Thus they will be +// printed as raw bytes. + +struct Foo { + public: + virtual ~Foo() {} + int MyMethod(char x) { return x + 1; } + virtual char MyVirtualMethod(int /* n */) { return 'a'; } + + int value; +}; + +TEST(PrintPointerTest, MemberVariablePointer) { + EXPECT_TRUE(HasPrefix(Print(&Foo::value), + Print(sizeof(&Foo::value)) + "-byte object ")); + int (Foo::*p) = NULL; // NOLINT + EXPECT_TRUE(HasPrefix(Print(p), + Print(sizeof(p)) + "-byte object ")); +} + +// Tests printing member function pointers. Although they are called +// pointers, they don't point to a location in the address space. +// Their representation is implementation-defined. Thus they will be +// printed as raw bytes. +TEST(PrintPointerTest, MemberFunctionPointer) { + EXPECT_TRUE(HasPrefix(Print(&Foo::MyMethod), + Print(sizeof(&Foo::MyMethod)) + "-byte object ")); + EXPECT_TRUE( + HasPrefix(Print(&Foo::MyVirtualMethod), + Print(sizeof((&Foo::MyVirtualMethod))) + "-byte object ")); + int (Foo::*p)(char) = NULL; // NOLINT + EXPECT_TRUE(HasPrefix(Print(p), + Print(sizeof(p)) + "-byte object ")); +} + +// Tests printing C arrays. + +// The difference between this and Print() is that it ensures that the +// argument is a reference to an array. +template +string PrintArrayHelper(T (&a)[N]) { + return Print(a); +} + +// One-dimensional array. +TEST(PrintArrayTest, OneDimensionalArray) { + int a[5] = { 1, 2, 3, 4, 5 }; + EXPECT_EQ("{ 1, 2, 3, 4, 5 }", PrintArrayHelper(a)); +} + +// Two-dimensional array. +TEST(PrintArrayTest, TwoDimensionalArray) { + int a[2][5] = { + { 1, 2, 3, 4, 5 }, + { 6, 7, 8, 9, 0 } + }; + EXPECT_EQ("{ { 1, 2, 3, 4, 5 }, { 6, 7, 8, 9, 0 } }", PrintArrayHelper(a)); +} + +// Array of const elements. +TEST(PrintArrayTest, ConstArray) { + const bool a[1] = { false }; + EXPECT_EQ("{ false }", PrintArrayHelper(a)); +} + +// char array without terminating NUL. +TEST(PrintArrayTest, CharArrayWithNoTerminatingNul) { + // Array a contains '\0' in the middle and doesn't end with '\0'. + char a[] = { 'H', '\0', 'i' }; + EXPECT_EQ("\"H\\0i\" (no terminating NUL)", PrintArrayHelper(a)); +} + +// const char array with terminating NUL. +TEST(PrintArrayTest, ConstCharArrayWithTerminatingNul) { + const char a[] = "\0Hi"; + EXPECT_EQ("\"\\0Hi\"", PrintArrayHelper(a)); +} + +// const wchar_t array without terminating NUL. +TEST(PrintArrayTest, WCharArrayWithNoTerminatingNul) { + // Array a contains '\0' in the middle and doesn't end with '\0'. + const wchar_t a[] = { L'H', L'\0', L'i' }; + EXPECT_EQ("L\"H\\0i\" (no terminating NUL)", PrintArrayHelper(a)); +} + +// wchar_t array with terminating NUL. +TEST(PrintArrayTest, WConstCharArrayWithTerminatingNul) { + const wchar_t a[] = L"\0Hi"; + EXPECT_EQ("L\"\\0Hi\"", PrintArrayHelper(a)); +} + +// Array of objects. +TEST(PrintArrayTest, ObjectArray) { + string a[3] = { "Hi", "Hello", "Ni hao" }; + EXPECT_EQ("{ \"Hi\", \"Hello\", \"Ni hao\" }", PrintArrayHelper(a)); +} + +// Array with many elements. +TEST(PrintArrayTest, BigArray) { + int a[100] = { 1, 2, 3 }; + EXPECT_EQ("{ 1, 2, 3, 0, 0, 0, 0, 0, ..., 0, 0, 0, 0, 0, 0, 0, 0 }", + PrintArrayHelper(a)); +} + +// Tests printing ::string and ::std::string. + +#if GTEST_HAS_GLOBAL_STRING +// ::string. +TEST(PrintStringTest, StringInGlobalNamespace) { + const char s[] = "'\"?\\\a\b\f\n\0\r\t\v\x7F\xFF a"; + const ::string str(s, sizeof(s)); + EXPECT_EQ("\"'\\\"?\\\\\\a\\b\\f\\n\\0\\r\\t\\v\\x7F\\xFF a\\0\"", + Print(str)); +} +#endif // GTEST_HAS_GLOBAL_STRING + +// ::std::string. +TEST(PrintStringTest, StringInStdNamespace) { + const char s[] = "'\"?\\\a\b\f\n\0\r\t\v\x7F\xFF a"; + const ::std::string str(s, sizeof(s)); + EXPECT_EQ("\"'\\\"?\\\\\\a\\b\\f\\n\\0\\r\\t\\v\\x7F\\xFF a\\0\"", + Print(str)); +} + +TEST(PrintStringTest, StringAmbiguousHex) { + // "\x6BANANA" is ambiguous, it can be interpreted as starting with either of: + // '\x6', '\x6B', or '\x6BA'. + + // a hex escaping sequence following by a decimal digit + EXPECT_EQ("\"0\\x12\" \"3\"", Print(::std::string("0\x12" "3"))); + // a hex escaping sequence following by a hex digit (lower-case) + EXPECT_EQ("\"mm\\x6\" \"bananas\"", Print(::std::string("mm\x6" "bananas"))); + // a hex escaping sequence following by a hex digit (upper-case) + EXPECT_EQ("\"NOM\\x6\" \"BANANA\"", Print(::std::string("NOM\x6" "BANANA"))); + // a hex escaping sequence following by a non-xdigit + EXPECT_EQ("\"!\\x5-!\"", Print(::std::string("!\x5-!"))); +} + +// Tests printing ::wstring and ::std::wstring. + +#if GTEST_HAS_GLOBAL_WSTRING +// ::wstring. +TEST(PrintWideStringTest, StringInGlobalNamespace) { + const wchar_t s[] = L"'\"?\\\a\b\f\n\0\r\t\v\xD3\x576\x8D3\xC74D a"; + const ::wstring str(s, sizeof(s)/sizeof(wchar_t)); + EXPECT_EQ("L\"'\\\"?\\\\\\a\\b\\f\\n\\0\\r\\t\\v" + "\\xD3\\x576\\x8D3\\xC74D a\\0\"", + Print(str)); +} +#endif // GTEST_HAS_GLOBAL_WSTRING + +#if GTEST_HAS_STD_WSTRING +// ::std::wstring. +TEST(PrintWideStringTest, StringInStdNamespace) { + const wchar_t s[] = L"'\"?\\\a\b\f\n\0\r\t\v\xD3\x576\x8D3\xC74D a"; + const ::std::wstring str(s, sizeof(s)/sizeof(wchar_t)); + EXPECT_EQ("L\"'\\\"?\\\\\\a\\b\\f\\n\\0\\r\\t\\v" + "\\xD3\\x576\\x8D3\\xC74D a\\0\"", + Print(str)); +} + +TEST(PrintWideStringTest, StringAmbiguousHex) { + // same for wide strings. + EXPECT_EQ("L\"0\\x12\" L\"3\"", Print(::std::wstring(L"0\x12" L"3"))); + EXPECT_EQ("L\"mm\\x6\" L\"bananas\"", + Print(::std::wstring(L"mm\x6" L"bananas"))); + EXPECT_EQ("L\"NOM\\x6\" L\"BANANA\"", + Print(::std::wstring(L"NOM\x6" L"BANANA"))); + EXPECT_EQ("L\"!\\x5-!\"", Print(::std::wstring(L"!\x5-!"))); +} +#endif // GTEST_HAS_STD_WSTRING + +// Tests printing types that support generic streaming (i.e. streaming +// to std::basic_ostream for any valid Char and +// CharTraits types). + +// Tests printing a non-template type that supports generic streaming. + +class AllowsGenericStreaming {}; + +template +std::basic_ostream& operator<<( + std::basic_ostream& os, + const AllowsGenericStreaming& /* a */) { + return os << "AllowsGenericStreaming"; +} + +TEST(PrintTypeWithGenericStreamingTest, NonTemplateType) { + AllowsGenericStreaming a; + EXPECT_EQ("AllowsGenericStreaming", Print(a)); +} + +// Tests printing a template type that supports generic streaming. + +template +class AllowsGenericStreamingTemplate {}; + +template +std::basic_ostream& operator<<( + std::basic_ostream& os, + const AllowsGenericStreamingTemplate& /* a */) { + return os << "AllowsGenericStreamingTemplate"; +} + +TEST(PrintTypeWithGenericStreamingTest, TemplateType) { + AllowsGenericStreamingTemplate a; + EXPECT_EQ("AllowsGenericStreamingTemplate", Print(a)); +} + +// Tests printing a type that supports generic streaming and can be +// implicitly converted to another printable type. + +template +class AllowsGenericStreamingAndImplicitConversionTemplate { + public: + operator bool() const { return false; } +}; + +template +std::basic_ostream& operator<<( + std::basic_ostream& os, + const AllowsGenericStreamingAndImplicitConversionTemplate& /* a */) { + return os << "AllowsGenericStreamingAndImplicitConversionTemplate"; +} + +TEST(PrintTypeWithGenericStreamingTest, TypeImplicitlyConvertible) { + AllowsGenericStreamingAndImplicitConversionTemplate a; + EXPECT_EQ("AllowsGenericStreamingAndImplicitConversionTemplate", Print(a)); +} + +#if GTEST_HAS_STRING_PIECE_ + +// Tests printing StringPiece. + +TEST(PrintStringPieceTest, SimpleStringPiece) { + const StringPiece sp = "Hello"; + EXPECT_EQ("\"Hello\"", Print(sp)); +} + +TEST(PrintStringPieceTest, UnprintableCharacters) { + const char str[] = "NUL (\0) and \r\t"; + const StringPiece sp(str, sizeof(str) - 1); + EXPECT_EQ("\"NUL (\\0) and \\r\\t\"", Print(sp)); +} + +#endif // GTEST_HAS_STRING_PIECE_ + +// Tests printing STL containers. + +TEST(PrintStlContainerTest, EmptyDeque) { + deque empty; + EXPECT_EQ("{}", Print(empty)); +} + +TEST(PrintStlContainerTest, NonEmptyDeque) { + deque non_empty; + non_empty.push_back(1); + non_empty.push_back(3); + EXPECT_EQ("{ 1, 3 }", Print(non_empty)); +} + +#if GTEST_HAS_HASH_MAP_ + +TEST(PrintStlContainerTest, OneElementHashMap) { + hash_map map1; + map1[1] = 'a'; + EXPECT_EQ("{ (1, 'a' (97, 0x61)) }", Print(map1)); +} + +TEST(PrintStlContainerTest, HashMultiMap) { + hash_multimap map1; + map1.insert(make_pair(5, true)); + map1.insert(make_pair(5, false)); + + // Elements of hash_multimap can be printed in any order. + const string result = Print(map1); + EXPECT_TRUE(result == "{ (5, true), (5, false) }" || + result == "{ (5, false), (5, true) }") + << " where Print(map1) returns \"" << result << "\"."; +} + +#endif // GTEST_HAS_HASH_MAP_ + +#if GTEST_HAS_HASH_SET_ + +TEST(PrintStlContainerTest, HashSet) { + hash_set set1; + set1.insert("hello"); + EXPECT_EQ("{ \"hello\" }", Print(set1)); +} + +TEST(PrintStlContainerTest, HashMultiSet) { + const int kSize = 5; + int a[kSize] = { 1, 1, 2, 5, 1 }; + hash_multiset set1(a, a + kSize); + + // Elements of hash_multiset can be printed in any order. + const string result = Print(set1); + const string expected_pattern = "{ d, d, d, d, d }"; // d means a digit. + + // Verifies the result matches the expected pattern; also extracts + // the numbers in the result. + ASSERT_EQ(expected_pattern.length(), result.length()); + std::vector numbers; + for (size_t i = 0; i != result.length(); i++) { + if (expected_pattern[i] == 'd') { + ASSERT_NE(isdigit(static_cast(result[i])), 0); + numbers.push_back(result[i] - '0'); + } else { + EXPECT_EQ(expected_pattern[i], result[i]) << " where result is " + << result; + } + } + + // Makes sure the result contains the right numbers. + std::sort(numbers.begin(), numbers.end()); + std::sort(a, a + kSize); + EXPECT_TRUE(std::equal(a, a + kSize, numbers.begin())); +} + +#endif // GTEST_HAS_HASH_SET_ + +TEST(PrintStlContainerTest, List) { + const string a[] = { + "hello", + "world" + }; + const list strings(a, a + 2); + EXPECT_EQ("{ \"hello\", \"world\" }", Print(strings)); +} + +TEST(PrintStlContainerTest, Map) { + map map1; + map1[1] = true; + map1[5] = false; + map1[3] = true; + EXPECT_EQ("{ (1, true), (3, true), (5, false) }", Print(map1)); +} + +TEST(PrintStlContainerTest, MultiMap) { + multimap map1; + // The make_pair template function would deduce the type as + // pair here, and since the key part in a multimap has to + // be constant, without a templated ctor in the pair class (as in + // libCstd on Solaris), make_pair call would fail to compile as no + // implicit conversion is found. Thus explicit typename is used + // here instead. + map1.insert(pair(true, 0)); + map1.insert(pair(true, 1)); + map1.insert(pair(false, 2)); + EXPECT_EQ("{ (false, 2), (true, 0), (true, 1) }", Print(map1)); +} + +TEST(PrintStlContainerTest, Set) { + const unsigned int a[] = { 3, 0, 5 }; + set set1(a, a + 3); + EXPECT_EQ("{ 0, 3, 5 }", Print(set1)); +} + +TEST(PrintStlContainerTest, MultiSet) { + const int a[] = { 1, 1, 2, 5, 1 }; + multiset set1(a, a + 5); + EXPECT_EQ("{ 1, 1, 1, 2, 5 }", Print(set1)); +} + +TEST(PrintStlContainerTest, Pair) { + pair p(true, 5); + EXPECT_EQ("(true, 5)", Print(p)); +} + +TEST(PrintStlContainerTest, Vector) { + vector v; + v.push_back(1); + v.push_back(2); + EXPECT_EQ("{ 1, 2 }", Print(v)); +} + +TEST(PrintStlContainerTest, LongSequence) { + const int a[100] = { 1, 2, 3 }; + const vector v(a, a + 100); + EXPECT_EQ("{ 1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, " + "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... }", Print(v)); +} + +TEST(PrintStlContainerTest, NestedContainer) { + const int a1[] = { 1, 2 }; + const int a2[] = { 3, 4, 5 }; + const list l1(a1, a1 + 2); + const list l2(a2, a2 + 3); + + vector > v; + v.push_back(l1); + v.push_back(l2); + EXPECT_EQ("{ { 1, 2 }, { 3, 4, 5 } }", Print(v)); +} + +TEST(PrintStlContainerTest, OneDimensionalNativeArray) { + const int a[3] = { 1, 2, 3 }; + NativeArray b(a, 3, kReference); + EXPECT_EQ("{ 1, 2, 3 }", Print(b)); +} + +TEST(PrintStlContainerTest, TwoDimensionalNativeArray) { + const int a[2][3] = { { 1, 2, 3 }, { 4, 5, 6 } }; + NativeArray b(a, 2, kReference); + EXPECT_EQ("{ { 1, 2, 3 }, { 4, 5, 6 } }", Print(b)); +} + +// Tests that a class named iterator isn't treated as a container. + +struct iterator { + char x; +}; + +TEST(PrintStlContainerTest, Iterator) { + iterator it = {}; + EXPECT_EQ("1-byte object <00>", Print(it)); +} + +// Tests that a class named const_iterator isn't treated as a container. + +struct const_iterator { + char x; +}; + +TEST(PrintStlContainerTest, ConstIterator) { + const_iterator it = {}; + EXPECT_EQ("1-byte object <00>", Print(it)); +} + +#if GTEST_HAS_TR1_TUPLE +// Tests printing tuples. + +// Tuples of various arities. +TEST(PrintTupleTest, VariousSizes) { + tuple<> t0; + EXPECT_EQ("()", Print(t0)); + + tuple t1(5); + EXPECT_EQ("(5)", Print(t1)); + + tuple t2('a', true); + EXPECT_EQ("('a' (97, 0x61), true)", Print(t2)); + + tuple t3(false, 2, 3); + EXPECT_EQ("(false, 2, 3)", Print(t3)); + + tuple t4(false, 2, 3, 4); + EXPECT_EQ("(false, 2, 3, 4)", Print(t4)); + + tuple t5(false, 2, 3, 4, true); + EXPECT_EQ("(false, 2, 3, 4, true)", Print(t5)); + + tuple t6(false, 2, 3, 4, true, 6); + EXPECT_EQ("(false, 2, 3, 4, true, 6)", Print(t6)); + + tuple t7(false, 2, 3, 4, true, 6, 7); + EXPECT_EQ("(false, 2, 3, 4, true, 6, 7)", Print(t7)); + + tuple t8( + false, 2, 3, 4, true, 6, 7, true); + EXPECT_EQ("(false, 2, 3, 4, true, 6, 7, true)", Print(t8)); + + tuple t9( + false, 2, 3, 4, true, 6, 7, true, 9); + EXPECT_EQ("(false, 2, 3, 4, true, 6, 7, true, 9)", Print(t9)); + + const char* const str = "8"; + // VC++ 2010's implementation of tuple of C++0x is deficient, requiring + // an explicit type cast of NULL to be used. + tuple + t10(false, 'a', 3, 4, 5, 1.5F, -2.5, str, + ImplicitCast_(NULL), "10"); + EXPECT_EQ("(false, 'a' (97, 0x61), 3, 4, 5, 1.5, -2.5, " + PrintPointer(str) + + " pointing to \"8\", NULL, \"10\")", + Print(t10)); +} + +// Nested tuples. +TEST(PrintTupleTest, NestedTuple) { + tuple, char> nested(make_tuple(5, true), 'a'); + EXPECT_EQ("((5, true), 'a' (97, 0x61))", Print(nested)); +} + +#endif // GTEST_HAS_TR1_TUPLE + +// Tests printing user-defined unprintable types. + +// Unprintable types in the global namespace. +TEST(PrintUnprintableTypeTest, InGlobalNamespace) { + EXPECT_EQ("1-byte object <00>", + Print(UnprintableTemplateInGlobal())); +} + +// Unprintable types in a user namespace. +TEST(PrintUnprintableTypeTest, InUserNamespace) { + EXPECT_EQ("16-byte object ", + Print(::foo::UnprintableInFoo())); +} + +// Unprintable types are that too big to be printed completely. + +struct Big { + Big() { memset(array, 0, sizeof(array)); } + char array[257]; +}; + +TEST(PrintUnpritableTypeTest, BigObject) { + EXPECT_EQ("257-byte object <00-00 00-00 00-00 00-00 00-00 00-00 " + "00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 " + "00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 " + "00-00 00-00 00-00 00-00 00-00 00-00 ... 00-00 00-00 00-00 " + "00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 " + "00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 " + "00-00 00-00 00-00 00-00 00-00 00-00 00-00 00-00 00>", + Print(Big())); +} + +// Tests printing user-defined streamable types. + +// Streamable types in the global namespace. +TEST(PrintStreamableTypeTest, InGlobalNamespace) { + StreamableInGlobal x; + EXPECT_EQ("StreamableInGlobal", Print(x)); + EXPECT_EQ("StreamableInGlobal*", Print(&x)); +} + +// Printable template types in a user namespace. +TEST(PrintStreamableTypeTest, TemplateTypeInUserNamespace) { + EXPECT_EQ("StreamableTemplateInFoo: 0", + Print(::foo::StreamableTemplateInFoo())); +} + +// Tests printing user-defined types that have a PrintTo() function. +TEST(PrintPrintableTypeTest, InUserNamespace) { + EXPECT_EQ("PrintableViaPrintTo: 0", + Print(::foo::PrintableViaPrintTo())); +} + +// Tests printing a pointer to a user-defined type that has a << +// operator for its pointer. +TEST(PrintPrintableTypeTest, PointerInUserNamespace) { + ::foo::PointerPrintable x; + EXPECT_EQ("PointerPrintable*", Print(&x)); +} + +// Tests printing user-defined class template that have a PrintTo() function. +TEST(PrintPrintableTypeTest, TemplateInUserNamespace) { + EXPECT_EQ("PrintableViaPrintToTemplate: 5", + Print(::foo::PrintableViaPrintToTemplate(5))); +} + +#if GTEST_HAS_PROTOBUF_ + +// Tests printing a protocol message. +TEST(PrintProtocolMessageTest, PrintsShortDebugString) { + testing::internal::TestMessage msg; + msg.set_member("yes"); + EXPECT_EQ("", Print(msg)); +} + +// Tests printing a short proto2 message. +TEST(PrintProto2MessageTest, PrintsShortDebugStringWhenItIsShort) { + testing::internal::FooMessage msg; + msg.set_int_field(2); + msg.set_string_field("hello"); + EXPECT_PRED2(RE::FullMatch, Print(msg), + ""); +} + +// Tests printing a long proto2 message. +TEST(PrintProto2MessageTest, PrintsDebugStringWhenItIsLong) { + testing::internal::FooMessage msg; + msg.set_int_field(2); + msg.set_string_field("hello"); + msg.add_names("peter"); + msg.add_names("paul"); + msg.add_names("mary"); + EXPECT_PRED2(RE::FullMatch, Print(msg), + "<\n" + "int_field:\\s*2\n" + "string_field:\\s*\"hello\"\n" + "names:\\s*\"peter\"\n" + "names:\\s*\"paul\"\n" + "names:\\s*\"mary\"\n" + ">"); +} + +#endif // GTEST_HAS_PROTOBUF_ + +// Tests that the universal printer prints both the address and the +// value of a reference. +TEST(PrintReferenceTest, PrintsAddressAndValue) { + int n = 5; + EXPECT_EQ("@" + PrintPointer(&n) + " 5", PrintByRef(n)); + + int a[2][3] = { + { 0, 1, 2 }, + { 3, 4, 5 } + }; + EXPECT_EQ("@" + PrintPointer(a) + " { { 0, 1, 2 }, { 3, 4, 5 } }", + PrintByRef(a)); + + const ::foo::UnprintableInFoo x; + EXPECT_EQ("@" + PrintPointer(&x) + " 16-byte object " + "", + PrintByRef(x)); +} + +// Tests that the universal printer prints a function pointer passed by +// reference. +TEST(PrintReferenceTest, HandlesFunctionPointer) { + void (*fp)(int n) = &MyFunction; + const string fp_pointer_string = + PrintPointer(reinterpret_cast(&fp)); + // We cannot directly cast &MyFunction to const void* because the + // standard disallows casting between pointers to functions and + // pointers to objects, and some compilers (e.g. GCC 3.4) enforce + // this limitation. + const string fp_string = PrintPointer(reinterpret_cast( + reinterpret_cast(fp))); + EXPECT_EQ("@" + fp_pointer_string + " " + fp_string, + PrintByRef(fp)); +} + +// Tests that the universal printer prints a member function pointer +// passed by reference. +TEST(PrintReferenceTest, HandlesMemberFunctionPointer) { + int (Foo::*p)(char ch) = &Foo::MyMethod; + EXPECT_TRUE(HasPrefix( + PrintByRef(p), + "@" + PrintPointer(reinterpret_cast(&p)) + " " + + Print(sizeof(p)) + "-byte object ")); + + char (Foo::*p2)(int n) = &Foo::MyVirtualMethod; + EXPECT_TRUE(HasPrefix( + PrintByRef(p2), + "@" + PrintPointer(reinterpret_cast(&p2)) + " " + + Print(sizeof(p2)) + "-byte object ")); +} + +// Tests that the universal printer prints a member variable pointer +// passed by reference. +TEST(PrintReferenceTest, HandlesMemberVariablePointer) { + int (Foo::*p) = &Foo::value; // NOLINT + EXPECT_TRUE(HasPrefix( + PrintByRef(p), + "@" + PrintPointer(&p) + " " + Print(sizeof(p)) + "-byte object ")); +} + +// Tests that FormatForComparisonFailureMessage(), which is used to print +// an operand in a comparison assertion (e.g. ASSERT_EQ) when the assertion +// fails, formats the operand in the desired way. + +// scalar +TEST(FormatForComparisonFailureMessageTest, WorksForScalar) { + EXPECT_STREQ("123", + FormatForComparisonFailureMessage(123, 124).c_str()); +} + +// non-char pointer +TEST(FormatForComparisonFailureMessageTest, WorksForNonCharPointer) { + int n = 0; + EXPECT_EQ(PrintPointer(&n), + FormatForComparisonFailureMessage(&n, &n).c_str()); +} + +// non-char array +TEST(FormatForComparisonFailureMessageTest, FormatsNonCharArrayAsPointer) { + // In expression 'array == x', 'array' is compared by pointer. + // Therefore we want to print an array operand as a pointer. + int n[] = { 1, 2, 3 }; + EXPECT_EQ(PrintPointer(n), + FormatForComparisonFailureMessage(n, n).c_str()); +} + +// Tests formatting a char pointer when it's compared with another pointer. +// In this case we want to print it as a raw pointer, as the comparision is by +// pointer. + +// char pointer vs pointer +TEST(FormatForComparisonFailureMessageTest, WorksForCharPointerVsPointer) { + // In expression 'p == x', where 'p' and 'x' are (const or not) char + // pointers, the operands are compared by pointer. Therefore we + // want to print 'p' as a pointer instead of a C string (we don't + // even know if it's supposed to point to a valid C string). + + // const char* + const char* s = "hello"; + EXPECT_EQ(PrintPointer(s), + FormatForComparisonFailureMessage(s, s).c_str()); + + // char* + char ch = 'a'; + EXPECT_EQ(PrintPointer(&ch), + FormatForComparisonFailureMessage(&ch, &ch).c_str()); +} + +// wchar_t pointer vs pointer +TEST(FormatForComparisonFailureMessageTest, WorksForWCharPointerVsPointer) { + // In expression 'p == x', where 'p' and 'x' are (const or not) char + // pointers, the operands are compared by pointer. Therefore we + // want to print 'p' as a pointer instead of a wide C string (we don't + // even know if it's supposed to point to a valid wide C string). + + // const wchar_t* + const wchar_t* s = L"hello"; + EXPECT_EQ(PrintPointer(s), + FormatForComparisonFailureMessage(s, s).c_str()); + + // wchar_t* + wchar_t ch = L'a'; + EXPECT_EQ(PrintPointer(&ch), + FormatForComparisonFailureMessage(&ch, &ch).c_str()); +} + +// Tests formatting a char pointer when it's compared to a string object. +// In this case we want to print the char pointer as a C string. + +#if GTEST_HAS_GLOBAL_STRING +// char pointer vs ::string +TEST(FormatForComparisonFailureMessageTest, WorksForCharPointerVsString) { + const char* s = "hello \"world"; + EXPECT_STREQ("\"hello \\\"world\"", // The string content should be escaped. + FormatForComparisonFailureMessage(s, ::string()).c_str()); + + // char* + char str[] = "hi\1"; + char* p = str; + EXPECT_STREQ("\"hi\\x1\"", // The string content should be escaped. + FormatForComparisonFailureMessage(p, ::string()).c_str()); +} +#endif + +// char pointer vs std::string +TEST(FormatForComparisonFailureMessageTest, WorksForCharPointerVsStdString) { + const char* s = "hello \"world"; + EXPECT_STREQ("\"hello \\\"world\"", // The string content should be escaped. + FormatForComparisonFailureMessage(s, ::std::string()).c_str()); + + // char* + char str[] = "hi\1"; + char* p = str; + EXPECT_STREQ("\"hi\\x1\"", // The string content should be escaped. + FormatForComparisonFailureMessage(p, ::std::string()).c_str()); +} + +#if GTEST_HAS_GLOBAL_WSTRING +// wchar_t pointer vs ::wstring +TEST(FormatForComparisonFailureMessageTest, WorksForWCharPointerVsWString) { + const wchar_t* s = L"hi \"world"; + EXPECT_STREQ("L\"hi \\\"world\"", // The string content should be escaped. + FormatForComparisonFailureMessage(s, ::wstring()).c_str()); + + // wchar_t* + wchar_t str[] = L"hi\1"; + wchar_t* p = str; + EXPECT_STREQ("L\"hi\\x1\"", // The string content should be escaped. + FormatForComparisonFailureMessage(p, ::wstring()).c_str()); +} +#endif + +#if GTEST_HAS_STD_WSTRING +// wchar_t pointer vs std::wstring +TEST(FormatForComparisonFailureMessageTest, WorksForWCharPointerVsStdWString) { + const wchar_t* s = L"hi \"world"; + EXPECT_STREQ("L\"hi \\\"world\"", // The string content should be escaped. + FormatForComparisonFailureMessage(s, ::std::wstring()).c_str()); + + // wchar_t* + wchar_t str[] = L"hi\1"; + wchar_t* p = str; + EXPECT_STREQ("L\"hi\\x1\"", // The string content should be escaped. + FormatForComparisonFailureMessage(p, ::std::wstring()).c_str()); +} +#endif + +// Tests formatting a char array when it's compared with a pointer or array. +// In this case we want to print the array as a row pointer, as the comparison +// is by pointer. + +// char array vs pointer +TEST(FormatForComparisonFailureMessageTest, WorksForCharArrayVsPointer) { + char str[] = "hi \"world\""; + char* p = NULL; + EXPECT_EQ(PrintPointer(str), + FormatForComparisonFailureMessage(str, p).c_str()); +} + +// char array vs char array +TEST(FormatForComparisonFailureMessageTest, WorksForCharArrayVsCharArray) { + const char str[] = "hi \"world\""; + EXPECT_EQ(PrintPointer(str), + FormatForComparisonFailureMessage(str, str).c_str()); +} + +// wchar_t array vs pointer +TEST(FormatForComparisonFailureMessageTest, WorksForWCharArrayVsPointer) { + wchar_t str[] = L"hi \"world\""; + wchar_t* p = NULL; + EXPECT_EQ(PrintPointer(str), + FormatForComparisonFailureMessage(str, p).c_str()); +} + +// wchar_t array vs wchar_t array +TEST(FormatForComparisonFailureMessageTest, WorksForWCharArrayVsWCharArray) { + const wchar_t str[] = L"hi \"world\""; + EXPECT_EQ(PrintPointer(str), + FormatForComparisonFailureMessage(str, str).c_str()); +} + +// Tests formatting a char array when it's compared with a string object. +// In this case we want to print the array as a C string. + +#if GTEST_HAS_GLOBAL_STRING +// char array vs string +TEST(FormatForComparisonFailureMessageTest, WorksForCharArrayVsString) { + const char str[] = "hi \"w\0rld\""; + EXPECT_STREQ("\"hi \\\"w\"", // The content should be escaped. + // Embedded NUL terminates the string. + FormatForComparisonFailureMessage(str, ::string()).c_str()); +} +#endif + +// char array vs std::string +TEST(FormatForComparisonFailureMessageTest, WorksForCharArrayVsStdString) { + const char str[] = "hi \"world\""; + EXPECT_STREQ("\"hi \\\"world\\\"\"", // The content should be escaped. + FormatForComparisonFailureMessage(str, ::std::string()).c_str()); +} + +#if GTEST_HAS_GLOBAL_WSTRING +// wchar_t array vs wstring +TEST(FormatForComparisonFailureMessageTest, WorksForWCharArrayVsWString) { + const wchar_t str[] = L"hi \"world\""; + EXPECT_STREQ("L\"hi \\\"world\\\"\"", // The content should be escaped. + FormatForComparisonFailureMessage(str, ::wstring()).c_str()); +} +#endif + +#if GTEST_HAS_STD_WSTRING +// wchar_t array vs std::wstring +TEST(FormatForComparisonFailureMessageTest, WorksForWCharArrayVsStdWString) { + const wchar_t str[] = L"hi \"w\0rld\""; + EXPECT_STREQ( + "L\"hi \\\"w\"", // The content should be escaped. + // Embedded NUL terminates the string. + FormatForComparisonFailureMessage(str, ::std::wstring()).c_str()); +} +#endif + +// Useful for testing PrintToString(). We cannot use EXPECT_EQ() +// there as its implementation uses PrintToString(). The caller must +// ensure that 'value' has no side effect. +#define EXPECT_PRINT_TO_STRING_(value, expected_string) \ + EXPECT_TRUE(PrintToString(value) == (expected_string)) \ + << " where " #value " prints as " << (PrintToString(value)) + +TEST(PrintToStringTest, WorksForScalar) { + EXPECT_PRINT_TO_STRING_(123, "123"); +} + +TEST(PrintToStringTest, WorksForPointerToConstChar) { + const char* p = "hello"; + EXPECT_PRINT_TO_STRING_(p, "\"hello\""); +} + +TEST(PrintToStringTest, WorksForPointerToNonConstChar) { + char s[] = "hello"; + char* p = s; + EXPECT_PRINT_TO_STRING_(p, "\"hello\""); +} + +TEST(PrintToStringTest, EscapesForPointerToConstChar) { + const char* p = "hello\n"; + EXPECT_PRINT_TO_STRING_(p, "\"hello\\n\""); +} + +TEST(PrintToStringTest, EscapesForPointerToNonConstChar) { + char s[] = "hello\1"; + char* p = s; + EXPECT_PRINT_TO_STRING_(p, "\"hello\\x1\""); +} + +TEST(PrintToStringTest, WorksForArray) { + int n[3] = { 1, 2, 3 }; + EXPECT_PRINT_TO_STRING_(n, "{ 1, 2, 3 }"); +} + +TEST(PrintToStringTest, WorksForCharArray) { + char s[] = "hello"; + EXPECT_PRINT_TO_STRING_(s, "\"hello\""); +} + +TEST(PrintToStringTest, WorksForCharArrayWithEmbeddedNul) { + const char str_with_nul[] = "hello\0 world"; + EXPECT_PRINT_TO_STRING_(str_with_nul, "\"hello\\0 world\""); + + char mutable_str_with_nul[] = "hello\0 world"; + EXPECT_PRINT_TO_STRING_(mutable_str_with_nul, "\"hello\\0 world\""); +} + +#undef EXPECT_PRINT_TO_STRING_ + +TEST(UniversalTersePrintTest, WorksForNonReference) { + ::std::stringstream ss; + UniversalTersePrint(123, &ss); + EXPECT_EQ("123", ss.str()); +} + +TEST(UniversalTersePrintTest, WorksForReference) { + const int& n = 123; + ::std::stringstream ss; + UniversalTersePrint(n, &ss); + EXPECT_EQ("123", ss.str()); +} + +TEST(UniversalTersePrintTest, WorksForCString) { + const char* s1 = "abc"; + ::std::stringstream ss1; + UniversalTersePrint(s1, &ss1); + EXPECT_EQ("\"abc\"", ss1.str()); + + char* s2 = const_cast(s1); + ::std::stringstream ss2; + UniversalTersePrint(s2, &ss2); + EXPECT_EQ("\"abc\"", ss2.str()); + + const char* s3 = NULL; + ::std::stringstream ss3; + UniversalTersePrint(s3, &ss3); + EXPECT_EQ("NULL", ss3.str()); +} + +TEST(UniversalPrintTest, WorksForNonReference) { + ::std::stringstream ss; + UniversalPrint(123, &ss); + EXPECT_EQ("123", ss.str()); +} + +TEST(UniversalPrintTest, WorksForReference) { + const int& n = 123; + ::std::stringstream ss; + UniversalPrint(n, &ss); + EXPECT_EQ("123", ss.str()); +} + +TEST(UniversalPrintTest, WorksForCString) { + const char* s1 = "abc"; + ::std::stringstream ss1; + UniversalPrint(s1, &ss1); + EXPECT_EQ(PrintPointer(s1) + " pointing to \"abc\"", string(ss1.str())); + + char* s2 = const_cast(s1); + ::std::stringstream ss2; + UniversalPrint(s2, &ss2); + EXPECT_EQ(PrintPointer(s2) + " pointing to \"abc\"", string(ss2.str())); + + const char* s3 = NULL; + ::std::stringstream ss3; + UniversalPrint(s3, &ss3); + EXPECT_EQ("NULL", ss3.str()); +} + +TEST(UniversalPrintTest, WorksForCharArray) { + const char str[] = "\"Line\0 1\"\nLine 2"; + ::std::stringstream ss1; + UniversalPrint(str, &ss1); + EXPECT_EQ("\"\\\"Line\\0 1\\\"\\nLine 2\"", ss1.str()); + + const char mutable_str[] = "\"Line\0 1\"\nLine 2"; + ::std::stringstream ss2; + UniversalPrint(mutable_str, &ss2); + EXPECT_EQ("\"\\\"Line\\0 1\\\"\\nLine 2\"", ss2.str()); +} + +#if GTEST_HAS_TR1_TUPLE + +TEST(UniversalTersePrintTupleFieldsToStringsTest, PrintsEmptyTuple) { + Strings result = UniversalTersePrintTupleFieldsToStrings(make_tuple()); + EXPECT_EQ(0u, result.size()); +} + +TEST(UniversalTersePrintTupleFieldsToStringsTest, PrintsOneTuple) { + Strings result = UniversalTersePrintTupleFieldsToStrings(make_tuple(1)); + ASSERT_EQ(1u, result.size()); + EXPECT_EQ("1", result[0]); +} + +TEST(UniversalTersePrintTupleFieldsToStringsTest, PrintsTwoTuple) { + Strings result = UniversalTersePrintTupleFieldsToStrings(make_tuple(1, 'a')); + ASSERT_EQ(2u, result.size()); + EXPECT_EQ("1", result[0]); + EXPECT_EQ("'a' (97, 0x61)", result[1]); +} + +TEST(UniversalTersePrintTupleFieldsToStringsTest, PrintsTersely) { + const int n = 1; + Strings result = UniversalTersePrintTupleFieldsToStrings( + tuple(n, "a")); + ASSERT_EQ(2u, result.size()); + EXPECT_EQ("1", result[0]); + EXPECT_EQ("\"a\"", result[1]); +} + +#endif // GTEST_HAS_TR1_TUPLE + +} // namespace gtest_printers_test +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-test-part_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-test-part_test.cc new file mode 100644 index 000000000..ca8ba933a --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-test-part_test.cc @@ -0,0 +1,208 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: mheule@google.com (Markus Heule) +// + +#include "gtest/gtest-test-part.h" + +#include "gtest/gtest.h" + +using testing::Message; +using testing::Test; +using testing::TestPartResult; +using testing::TestPartResultArray; + +namespace { + +// Tests the TestPartResult class. + +// The test fixture for testing TestPartResult. +class TestPartResultTest : public Test { + protected: + TestPartResultTest() + : r1_(TestPartResult::kSuccess, "foo/bar.cc", 10, "Success!"), + r2_(TestPartResult::kNonFatalFailure, "foo/bar.cc", -1, "Failure!"), + r3_(TestPartResult::kFatalFailure, NULL, -1, "Failure!") {} + + TestPartResult r1_, r2_, r3_; +}; + + +TEST_F(TestPartResultTest, ConstructorWorks) { + Message message; + message << "something is terribly wrong"; + message << static_cast(testing::internal::kStackTraceMarker); + message << "some unimportant stack trace"; + + const TestPartResult result(TestPartResult::kNonFatalFailure, + "some_file.cc", + 42, + message.GetString().c_str()); + + EXPECT_EQ(TestPartResult::kNonFatalFailure, result.type()); + EXPECT_STREQ("some_file.cc", result.file_name()); + EXPECT_EQ(42, result.line_number()); + EXPECT_STREQ(message.GetString().c_str(), result.message()); + EXPECT_STREQ("something is terribly wrong", result.summary()); +} + +TEST_F(TestPartResultTest, ResultAccessorsWork) { + const TestPartResult success(TestPartResult::kSuccess, + "file.cc", + 42, + "message"); + EXPECT_TRUE(success.passed()); + EXPECT_FALSE(success.failed()); + EXPECT_FALSE(success.nonfatally_failed()); + EXPECT_FALSE(success.fatally_failed()); + + const TestPartResult nonfatal_failure(TestPartResult::kNonFatalFailure, + "file.cc", + 42, + "message"); + EXPECT_FALSE(nonfatal_failure.passed()); + EXPECT_TRUE(nonfatal_failure.failed()); + EXPECT_TRUE(nonfatal_failure.nonfatally_failed()); + EXPECT_FALSE(nonfatal_failure.fatally_failed()); + + const TestPartResult fatal_failure(TestPartResult::kFatalFailure, + "file.cc", + 42, + "message"); + EXPECT_FALSE(fatal_failure.passed()); + EXPECT_TRUE(fatal_failure.failed()); + EXPECT_FALSE(fatal_failure.nonfatally_failed()); + EXPECT_TRUE(fatal_failure.fatally_failed()); +} + +// Tests TestPartResult::type(). +TEST_F(TestPartResultTest, type) { + EXPECT_EQ(TestPartResult::kSuccess, r1_.type()); + EXPECT_EQ(TestPartResult::kNonFatalFailure, r2_.type()); + EXPECT_EQ(TestPartResult::kFatalFailure, r3_.type()); +} + +// Tests TestPartResult::file_name(). +TEST_F(TestPartResultTest, file_name) { + EXPECT_STREQ("foo/bar.cc", r1_.file_name()); + EXPECT_STREQ(NULL, r3_.file_name()); +} + +// Tests TestPartResult::line_number(). +TEST_F(TestPartResultTest, line_number) { + EXPECT_EQ(10, r1_.line_number()); + EXPECT_EQ(-1, r2_.line_number()); +} + +// Tests TestPartResult::message(). +TEST_F(TestPartResultTest, message) { + EXPECT_STREQ("Success!", r1_.message()); +} + +// Tests TestPartResult::passed(). +TEST_F(TestPartResultTest, Passed) { + EXPECT_TRUE(r1_.passed()); + EXPECT_FALSE(r2_.passed()); + EXPECT_FALSE(r3_.passed()); +} + +// Tests TestPartResult::failed(). +TEST_F(TestPartResultTest, Failed) { + EXPECT_FALSE(r1_.failed()); + EXPECT_TRUE(r2_.failed()); + EXPECT_TRUE(r3_.failed()); +} + +// Tests TestPartResult::fatally_failed(). +TEST_F(TestPartResultTest, FatallyFailed) { + EXPECT_FALSE(r1_.fatally_failed()); + EXPECT_FALSE(r2_.fatally_failed()); + EXPECT_TRUE(r3_.fatally_failed()); +} + +// Tests TestPartResult::nonfatally_failed(). +TEST_F(TestPartResultTest, NonfatallyFailed) { + EXPECT_FALSE(r1_.nonfatally_failed()); + EXPECT_TRUE(r2_.nonfatally_failed()); + EXPECT_FALSE(r3_.nonfatally_failed()); +} + +// Tests the TestPartResultArray class. + +class TestPartResultArrayTest : public Test { + protected: + TestPartResultArrayTest() + : r1_(TestPartResult::kNonFatalFailure, "foo/bar.cc", -1, "Failure 1"), + r2_(TestPartResult::kFatalFailure, "foo/bar.cc", -1, "Failure 2") {} + + const TestPartResult r1_, r2_; +}; + +// Tests that TestPartResultArray initially has size 0. +TEST_F(TestPartResultArrayTest, InitialSizeIsZero) { + TestPartResultArray results; + EXPECT_EQ(0, results.size()); +} + +// Tests that TestPartResultArray contains the given TestPartResult +// after one Append() operation. +TEST_F(TestPartResultArrayTest, ContainsGivenResultAfterAppend) { + TestPartResultArray results; + results.Append(r1_); + EXPECT_EQ(1, results.size()); + EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message()); +} + +// Tests that TestPartResultArray contains the given TestPartResults +// after two Append() operations. +TEST_F(TestPartResultArrayTest, ContainsGivenResultsAfterTwoAppends) { + TestPartResultArray results; + results.Append(r1_); + results.Append(r2_); + EXPECT_EQ(2, results.size()); + EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message()); + EXPECT_STREQ("Failure 2", results.GetTestPartResult(1).message()); +} + +typedef TestPartResultArrayTest TestPartResultArrayDeathTest; + +// Tests that the program dies when GetTestPartResult() is called with +// an invalid index. +TEST_F(TestPartResultArrayDeathTest, DiesWhenIndexIsOutOfBound) { + TestPartResultArray results; + results.Append(r1_); + + EXPECT_DEATH_IF_SUPPORTED(results.GetTestPartResult(-1), ""); + EXPECT_DEATH_IF_SUPPORTED(results.GetTestPartResult(1), ""); +} + +// TODO(mheule@google.com): Add a test for the class HasNewFatalFailureHelper. + +} // namespace diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-tuple_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-tuple_test.cc new file mode 100644 index 000000000..bfaa3e0ac --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-tuple_test.cc @@ -0,0 +1,320 @@ +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#include "gtest/internal/gtest-tuple.h" +#include +#include "gtest/gtest.h" + +namespace { + +using ::std::tr1::get; +using ::std::tr1::make_tuple; +using ::std::tr1::tuple; +using ::std::tr1::tuple_element; +using ::std::tr1::tuple_size; +using ::testing::StaticAssertTypeEq; + +// Tests that tuple_element >::type returns TK. +TEST(tuple_element_Test, ReturnsElementType) { + StaticAssertTypeEq >::type>(); + StaticAssertTypeEq >::type>(); + StaticAssertTypeEq >::type>(); +} + +// Tests that tuple_size::value gives the number of fields in tuple +// type T. +TEST(tuple_size_Test, ReturnsNumberOfFields) { + EXPECT_EQ(0, +tuple_size >::value); + EXPECT_EQ(1, +tuple_size >::value); + EXPECT_EQ(1, +tuple_size >::value); + EXPECT_EQ(1, +(tuple_size > >::value)); + EXPECT_EQ(2, +(tuple_size >::value)); + EXPECT_EQ(3, +(tuple_size >::value)); +} + +// Tests comparing a tuple with itself. +TEST(ComparisonTest, ComparesWithSelf) { + const tuple a(5, 'a', false); + + EXPECT_TRUE(a == a); + EXPECT_FALSE(a != a); +} + +// Tests comparing two tuples with the same value. +TEST(ComparisonTest, ComparesEqualTuples) { + const tuple a(5, true), b(5, true); + + EXPECT_TRUE(a == b); + EXPECT_FALSE(a != b); +} + +// Tests comparing two different tuples that have no reference fields. +TEST(ComparisonTest, ComparesUnequalTuplesWithoutReferenceFields) { + typedef tuple FooTuple; + + const FooTuple a(0, 'x'); + const FooTuple b(1, 'a'); + + EXPECT_TRUE(a != b); + EXPECT_FALSE(a == b); + + const FooTuple c(1, 'b'); + + EXPECT_TRUE(b != c); + EXPECT_FALSE(b == c); +} + +// Tests comparing two different tuples that have reference fields. +TEST(ComparisonTest, ComparesUnequalTuplesWithReferenceFields) { + typedef tuple FooTuple; + + int i = 5; + const char ch = 'a'; + const FooTuple a(i, ch); + + int j = 6; + const FooTuple b(j, ch); + + EXPECT_TRUE(a != b); + EXPECT_FALSE(a == b); + + j = 5; + const char ch2 = 'b'; + const FooTuple c(j, ch2); + + EXPECT_TRUE(b != c); + EXPECT_FALSE(b == c); +} + +// Tests that a tuple field with a reference type is an alias of the +// variable it's supposed to reference. +TEST(ReferenceFieldTest, IsAliasOfReferencedVariable) { + int n = 0; + tuple t(true, n); + + n = 1; + EXPECT_EQ(n, get<1>(t)) + << "Changing a underlying variable should update the reference field."; + + // Makes sure that the implementation doesn't do anything funny with + // the & operator for the return type of get<>(). + EXPECT_EQ(&n, &(get<1>(t))) + << "The address of a reference field should equal the address of " + << "the underlying variable."; + + get<1>(t) = 2; + EXPECT_EQ(2, n) + << "Changing a reference field should update the underlying variable."; +} + +// Tests that tuple's default constructor default initializes each field. +// This test needs to compile without generating warnings. +TEST(TupleConstructorTest, DefaultConstructorDefaultInitializesEachField) { + // The TR1 report requires that tuple's default constructor default + // initializes each field, even if it's a primitive type. If the + // implementation forgets to do this, this test will catch it by + // generating warnings about using uninitialized variables (assuming + // a decent compiler). + + tuple<> empty; + + tuple a1, b1; + b1 = a1; + EXPECT_EQ(0, get<0>(b1)); + + tuple a2, b2; + b2 = a2; + EXPECT_EQ(0, get<0>(b2)); + EXPECT_EQ(0.0, get<1>(b2)); + + tuple a3, b3; + b3 = a3; + EXPECT_EQ(0.0, get<0>(b3)); + EXPECT_EQ('\0', get<1>(b3)); + EXPECT_TRUE(get<2>(b3) == NULL); + + tuple a10, b10; + b10 = a10; + EXPECT_EQ(0, get<0>(b10)); + EXPECT_EQ(0, get<1>(b10)); + EXPECT_EQ(0, get<2>(b10)); + EXPECT_EQ(0, get<3>(b10)); + EXPECT_EQ(0, get<4>(b10)); + EXPECT_EQ(0, get<5>(b10)); + EXPECT_EQ(0, get<6>(b10)); + EXPECT_EQ(0, get<7>(b10)); + EXPECT_EQ(0, get<8>(b10)); + EXPECT_EQ(0, get<9>(b10)); +} + +// Tests constructing a tuple from its fields. +TEST(TupleConstructorTest, ConstructsFromFields) { + int n = 1; + // Reference field. + tuple a(n); + EXPECT_EQ(&n, &(get<0>(a))); + + // Non-reference fields. + tuple b(5, 'a'); + EXPECT_EQ(5, get<0>(b)); + EXPECT_EQ('a', get<1>(b)); + + // Const reference field. + const int m = 2; + tuple c(true, m); + EXPECT_TRUE(get<0>(c)); + EXPECT_EQ(&m, &(get<1>(c))); +} + +// Tests tuple's copy constructor. +TEST(TupleConstructorTest, CopyConstructor) { + tuple a(0.0, true); + tuple b(a); + + EXPECT_DOUBLE_EQ(0.0, get<0>(b)); + EXPECT_TRUE(get<1>(b)); +} + +// Tests constructing a tuple from another tuple that has a compatible +// but different type. +TEST(TupleConstructorTest, ConstructsFromDifferentTupleType) { + tuple a(0, 1, 'a'); + tuple b(a); + + EXPECT_DOUBLE_EQ(0.0, get<0>(b)); + EXPECT_EQ(1, get<1>(b)); + EXPECT_EQ('a', get<2>(b)); +} + +// Tests constructing a 2-tuple from an std::pair. +TEST(TupleConstructorTest, ConstructsFromPair) { + ::std::pair a(1, 'a'); + tuple b(a); + tuple c(a); +} + +// Tests assigning a tuple to another tuple with the same type. +TEST(TupleAssignmentTest, AssignsToSameTupleType) { + const tuple a(5, 7L); + tuple b; + b = a; + EXPECT_EQ(5, get<0>(b)); + EXPECT_EQ(7L, get<1>(b)); +} + +// Tests assigning a tuple to another tuple with a different but +// compatible type. +TEST(TupleAssignmentTest, AssignsToDifferentTupleType) { + const tuple a(1, 7L, true); + tuple b; + b = a; + EXPECT_EQ(1L, get<0>(b)); + EXPECT_EQ(7, get<1>(b)); + EXPECT_TRUE(get<2>(b)); +} + +// Tests assigning an std::pair to a 2-tuple. +TEST(TupleAssignmentTest, AssignsFromPair) { + const ::std::pair a(5, true); + tuple b; + b = a; + EXPECT_EQ(5, get<0>(b)); + EXPECT_TRUE(get<1>(b)); + + tuple c; + c = a; + EXPECT_EQ(5L, get<0>(c)); + EXPECT_TRUE(get<1>(c)); +} + +// A fixture for testing big tuples. +class BigTupleTest : public testing::Test { + protected: + typedef tuple BigTuple; + + BigTupleTest() : + a_(1, 0, 0, 0, 0, 0, 0, 0, 0, 2), + b_(1, 0, 0, 0, 0, 0, 0, 0, 0, 3) {} + + BigTuple a_, b_; +}; + +// Tests constructing big tuples. +TEST_F(BigTupleTest, Construction) { + BigTuple a; + BigTuple b(b_); +} + +// Tests that get(t) returns the N-th (0-based) field of tuple t. +TEST_F(BigTupleTest, get) { + EXPECT_EQ(1, get<0>(a_)); + EXPECT_EQ(2, get<9>(a_)); + + // Tests that get() works on a const tuple too. + const BigTuple a(a_); + EXPECT_EQ(1, get<0>(a)); + EXPECT_EQ(2, get<9>(a)); +} + +// Tests comparing big tuples. +TEST_F(BigTupleTest, Comparisons) { + EXPECT_TRUE(a_ == a_); + EXPECT_FALSE(a_ != a_); + + EXPECT_TRUE(a_ != b_); + EXPECT_FALSE(a_ == b_); +} + +TEST(MakeTupleTest, WorksForScalarTypes) { + tuple a; + a = make_tuple(true, 5); + EXPECT_TRUE(get<0>(a)); + EXPECT_EQ(5, get<1>(a)); + + tuple b; + b = make_tuple('a', 'b', 5); + EXPECT_EQ('a', get<0>(b)); + EXPECT_EQ('b', get<1>(b)); + EXPECT_EQ(5, get<2>(b)); +} + +TEST(MakeTupleTest, WorksForPointers) { + int a[] = { 1, 2, 3, 4 }; + const char* const str = "hi"; + int* const p = a; + + tuple t; + t = make_tuple(str, p); + EXPECT_EQ(str, get<0>(t)); + EXPECT_EQ(p, get<1>(t)); +} + +} // namespace diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test2_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test2_test.cc new file mode 100644 index 000000000..c284700b0 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test2_test.cc @@ -0,0 +1,45 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#include + +#include "test/gtest-typed-test_test.h" +#include "gtest/gtest.h" + +#if GTEST_HAS_TYPED_TEST_P + +// Tests that the same type-parameterized test case can be +// instantiated in different translation units linked together. +// (ContainerTest is also instantiated in gtest-typed-test_test.cc.) +INSTANTIATE_TYPED_TEST_CASE_P(Vector, ContainerTest, + testing::Types >); + +#endif // GTEST_HAS_TYPED_TEST_P diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test_test.cc new file mode 100644 index 000000000..dd4ba43bc --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test_test.cc @@ -0,0 +1,360 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#include +#include + +#include "test/gtest-typed-test_test.h" +#include "gtest/gtest.h" + +using testing::Test; + +// Used for testing that SetUpTestCase()/TearDownTestCase(), fixture +// ctor/dtor, and SetUp()/TearDown() work correctly in typed tests and +// type-parameterized test. +template +class CommonTest : public Test { + // For some technical reason, SetUpTestCase() and TearDownTestCase() + // must be public. + public: + static void SetUpTestCase() { + shared_ = new T(5); + } + + static void TearDownTestCase() { + delete shared_; + shared_ = NULL; + } + + // This 'protected:' is optional. There's no harm in making all + // members of this fixture class template public. + protected: + // We used to use std::list here, but switched to std::vector since + // MSVC's doesn't compile cleanly with /W4. + typedef std::vector Vector; + typedef std::set IntSet; + + CommonTest() : value_(1) {} + + virtual ~CommonTest() { EXPECT_EQ(3, value_); } + + virtual void SetUp() { + EXPECT_EQ(1, value_); + value_++; + } + + virtual void TearDown() { + EXPECT_EQ(2, value_); + value_++; + } + + T value_; + static T* shared_; +}; + +template +T* CommonTest::shared_ = NULL; + +// This #ifdef block tests typed tests. +#if GTEST_HAS_TYPED_TEST + +using testing::Types; + +// Tests that SetUpTestCase()/TearDownTestCase(), fixture ctor/dtor, +// and SetUp()/TearDown() work correctly in typed tests + +typedef Types TwoTypes; +TYPED_TEST_CASE(CommonTest, TwoTypes); + +TYPED_TEST(CommonTest, ValuesAreCorrect) { + // Static members of the fixture class template can be visited via + // the TestFixture:: prefix. + EXPECT_EQ(5, *TestFixture::shared_); + + // Typedefs in the fixture class template can be visited via the + // "typename TestFixture::" prefix. + typename TestFixture::Vector empty; + EXPECT_EQ(0U, empty.size()); + + typename TestFixture::IntSet empty2; + EXPECT_EQ(0U, empty2.size()); + + // Non-static members of the fixture class must be visited via + // 'this', as required by C++ for class templates. + EXPECT_EQ(2, this->value_); +} + +// The second test makes sure shared_ is not deleted after the first +// test. +TYPED_TEST(CommonTest, ValuesAreStillCorrect) { + // Static members of the fixture class template can also be visited + // via 'this'. + ASSERT_TRUE(this->shared_ != NULL); + EXPECT_EQ(5, *this->shared_); + + // TypeParam can be used to refer to the type parameter. + EXPECT_EQ(static_cast(2), this->value_); +} + +// Tests that multiple TYPED_TEST_CASE's can be defined in the same +// translation unit. + +template +class TypedTest1 : public Test { +}; + +// Verifies that the second argument of TYPED_TEST_CASE can be a +// single type. +TYPED_TEST_CASE(TypedTest1, int); +TYPED_TEST(TypedTest1, A) {} + +template +class TypedTest2 : public Test { +}; + +// Verifies that the second argument of TYPED_TEST_CASE can be a +// Types<...> type list. +TYPED_TEST_CASE(TypedTest2, Types); + +// This also verifies that tests from different typed test cases can +// share the same name. +TYPED_TEST(TypedTest2, A) {} + +// Tests that a typed test case can be defined in a namespace. + +namespace library1 { + +template +class NumericTest : public Test { +}; + +typedef Types NumericTypes; +TYPED_TEST_CASE(NumericTest, NumericTypes); + +TYPED_TEST(NumericTest, DefaultIsZero) { + EXPECT_EQ(0, TypeParam()); +} + +} // namespace library1 + +#endif // GTEST_HAS_TYPED_TEST + +// This #ifdef block tests type-parameterized tests. +#if GTEST_HAS_TYPED_TEST_P + +using testing::Types; +using testing::internal::TypedTestCasePState; + +// Tests TypedTestCasePState. + +class TypedTestCasePStateTest : public Test { + protected: + virtual void SetUp() { + state_.AddTestName("foo.cc", 0, "FooTest", "A"); + state_.AddTestName("foo.cc", 0, "FooTest", "B"); + state_.AddTestName("foo.cc", 0, "FooTest", "C"); + } + + TypedTestCasePState state_; +}; + +TEST_F(TypedTestCasePStateTest, SucceedsForMatchingList) { + const char* tests = "A, B, C"; + EXPECT_EQ(tests, + state_.VerifyRegisteredTestNames("foo.cc", 1, tests)); +} + +// Makes sure that the order of the tests and spaces around the names +// don't matter. +TEST_F(TypedTestCasePStateTest, IgnoresOrderAndSpaces) { + const char* tests = "A,C, B"; + EXPECT_EQ(tests, + state_.VerifyRegisteredTestNames("foo.cc", 1, tests)); +} + +typedef TypedTestCasePStateTest TypedTestCasePStateDeathTest; + +TEST_F(TypedTestCasePStateDeathTest, DetectsDuplicates) { + EXPECT_DEATH_IF_SUPPORTED( + state_.VerifyRegisteredTestNames("foo.cc", 1, "A, B, A, C"), + "foo\\.cc.1.?: Test A is listed more than once\\."); +} + +TEST_F(TypedTestCasePStateDeathTest, DetectsExtraTest) { + EXPECT_DEATH_IF_SUPPORTED( + state_.VerifyRegisteredTestNames("foo.cc", 1, "A, B, C, D"), + "foo\\.cc.1.?: No test named D can be found in this test case\\."); +} + +TEST_F(TypedTestCasePStateDeathTest, DetectsMissedTest) { + EXPECT_DEATH_IF_SUPPORTED( + state_.VerifyRegisteredTestNames("foo.cc", 1, "A, C"), + "foo\\.cc.1.?: You forgot to list test B\\."); +} + +// Tests that defining a test for a parameterized test case generates +// a run-time error if the test case has been registered. +TEST_F(TypedTestCasePStateDeathTest, DetectsTestAfterRegistration) { + state_.VerifyRegisteredTestNames("foo.cc", 1, "A, B, C"); + EXPECT_DEATH_IF_SUPPORTED( + state_.AddTestName("foo.cc", 2, "FooTest", "D"), + "foo\\.cc.2.?: Test D must be defined before REGISTER_TYPED_TEST_CASE_P" + "\\(FooTest, \\.\\.\\.\\)\\."); +} + +// Tests that SetUpTestCase()/TearDownTestCase(), fixture ctor/dtor, +// and SetUp()/TearDown() work correctly in type-parameterized tests. + +template +class DerivedTest : public CommonTest { +}; + +TYPED_TEST_CASE_P(DerivedTest); + +TYPED_TEST_P(DerivedTest, ValuesAreCorrect) { + // Static members of the fixture class template can be visited via + // the TestFixture:: prefix. + EXPECT_EQ(5, *TestFixture::shared_); + + // Non-static members of the fixture class must be visited via + // 'this', as required by C++ for class templates. + EXPECT_EQ(2, this->value_); +} + +// The second test makes sure shared_ is not deleted after the first +// test. +TYPED_TEST_P(DerivedTest, ValuesAreStillCorrect) { + // Static members of the fixture class template can also be visited + // via 'this'. + ASSERT_TRUE(this->shared_ != NULL); + EXPECT_EQ(5, *this->shared_); + EXPECT_EQ(2, this->value_); +} + +REGISTER_TYPED_TEST_CASE_P(DerivedTest, + ValuesAreCorrect, ValuesAreStillCorrect); + +typedef Types MyTwoTypes; +INSTANTIATE_TYPED_TEST_CASE_P(My, DerivedTest, MyTwoTypes); + +// Tests that multiple TYPED_TEST_CASE_P's can be defined in the same +// translation unit. + +template +class TypedTestP1 : public Test { +}; + +TYPED_TEST_CASE_P(TypedTestP1); + +// For testing that the code between TYPED_TEST_CASE_P() and +// TYPED_TEST_P() is not enclosed in a namespace. +typedef int IntAfterTypedTestCaseP; + +TYPED_TEST_P(TypedTestP1, A) {} +TYPED_TEST_P(TypedTestP1, B) {} + +// For testing that the code between TYPED_TEST_P() and +// REGISTER_TYPED_TEST_CASE_P() is not enclosed in a namespace. +typedef int IntBeforeRegisterTypedTestCaseP; + +REGISTER_TYPED_TEST_CASE_P(TypedTestP1, A, B); + +template +class TypedTestP2 : public Test { +}; + +TYPED_TEST_CASE_P(TypedTestP2); + +// This also verifies that tests from different type-parameterized +// test cases can share the same name. +TYPED_TEST_P(TypedTestP2, A) {} + +REGISTER_TYPED_TEST_CASE_P(TypedTestP2, A); + +// Verifies that the code between TYPED_TEST_CASE_P() and +// REGISTER_TYPED_TEST_CASE_P() is not enclosed in a namespace. +IntAfterTypedTestCaseP after = 0; +IntBeforeRegisterTypedTestCaseP before = 0; + +// Verifies that the last argument of INSTANTIATE_TYPED_TEST_CASE_P() +// can be either a single type or a Types<...> type list. +INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP1, int); +INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP2, Types); + +// Tests that the same type-parameterized test case can be +// instantiated more than once in the same translation unit. +INSTANTIATE_TYPED_TEST_CASE_P(Double, TypedTestP2, Types); + +// Tests that the same type-parameterized test case can be +// instantiated in different translation units linked together. +// (ContainerTest is also instantiated in gtest-typed-test_test.cc.) +typedef Types, std::set > MyContainers; +INSTANTIATE_TYPED_TEST_CASE_P(My, ContainerTest, MyContainers); + +// Tests that a type-parameterized test case can be defined and +// instantiated in a namespace. + +namespace library2 { + +template +class NumericTest : public Test { +}; + +TYPED_TEST_CASE_P(NumericTest); + +TYPED_TEST_P(NumericTest, DefaultIsZero) { + EXPECT_EQ(0, TypeParam()); +} + +TYPED_TEST_P(NumericTest, ZeroIsLessThanOne) { + EXPECT_LT(TypeParam(0), TypeParam(1)); +} + +REGISTER_TYPED_TEST_CASE_P(NumericTest, + DefaultIsZero, ZeroIsLessThanOne); +typedef Types NumericTypes; +INSTANTIATE_TYPED_TEST_CASE_P(My, NumericTest, NumericTypes); + +} // namespace library2 + +#endif // GTEST_HAS_TYPED_TEST_P + +#if !defined(GTEST_HAS_TYPED_TEST) && !defined(GTEST_HAS_TYPED_TEST_P) + +// Google Test may not support type-parameterized tests with some +// compilers. If we use conditional compilation to compile out all +// code referring to the gtest_main library, MSVC linker will not link +// that library at all and consequently complain about missing entry +// point defined in that library (fatal error LNK1561: entry point +// must be defined). This dummy test keeps gtest_main linked in. +TEST(DummyTest, TypedTestsAreNotSupportedOnThisPlatform) {} + +#endif // #if !defined(GTEST_HAS_TYPED_TEST) && !defined(GTEST_HAS_TYPED_TEST_P) diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test_test.h b/cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test_test.h new file mode 100644 index 000000000..41d75704c --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test_test.h @@ -0,0 +1,66 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#ifndef GTEST_TEST_GTEST_TYPED_TEST_TEST_H_ +#define GTEST_TEST_GTEST_TYPED_TEST_TEST_H_ + +#include "gtest/gtest.h" + +#if GTEST_HAS_TYPED_TEST_P + +using testing::Test; + +// For testing that the same type-parameterized test case can be +// instantiated in different translation units linked together. +// ContainerTest will be instantiated in both gtest-typed-test_test.cc +// and gtest-typed-test2_test.cc. + +template +class ContainerTest : public Test { +}; + +TYPED_TEST_CASE_P(ContainerTest); + +TYPED_TEST_P(ContainerTest, CanBeDefaultConstructed) { + TypeParam container; +} + +TYPED_TEST_P(ContainerTest, InitialSizeIsZero) { + TypeParam container; + EXPECT_EQ(0U, container.size()); +} + +REGISTER_TYPED_TEST_CASE_P(ContainerTest, + CanBeDefaultConstructed, InitialSizeIsZero); + +#endif // GTEST_HAS_TYPED_TEST_P + +#endif // GTEST_TEST_GTEST_TYPED_TEST_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest-unittest-api_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest-unittest-api_test.cc new file mode 100644 index 000000000..07083e51b --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest-unittest-api_test.cc @@ -0,0 +1,341 @@ +// Copyright 2009 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) +// +// The Google C++ Testing Framework (Google Test) +// +// This file contains tests verifying correctness of data provided via +// UnitTest's public methods. + +#include "gtest/gtest.h" + +#include // For strcmp. +#include + +using ::testing::InitGoogleTest; + +namespace testing { +namespace internal { + +template +struct LessByName { + bool operator()(const T* a, const T* b) { + return strcmp(a->name(), b->name()) < 0; + } +}; + +class UnitTestHelper { + public: + // Returns the array of pointers to all test cases sorted by the test case + // name. The caller is responsible for deleting the array. + static TestCase const** const GetSortedTestCases() { + UnitTest& unit_test = *UnitTest::GetInstance(); + TestCase const** const test_cases = + new const TestCase*[unit_test.total_test_case_count()]; + + for (int i = 0; i < unit_test.total_test_case_count(); ++i) + test_cases[i] = unit_test.GetTestCase(i); + + std::sort(test_cases, + test_cases + unit_test.total_test_case_count(), + LessByName()); + return test_cases; + } + + // Returns the test case by its name. The caller doesn't own the returned + // pointer. + static const TestCase* FindTestCase(const char* name) { + UnitTest& unit_test = *UnitTest::GetInstance(); + for (int i = 0; i < unit_test.total_test_case_count(); ++i) { + const TestCase* test_case = unit_test.GetTestCase(i); + if (0 == strcmp(test_case->name(), name)) + return test_case; + } + return NULL; + } + + // Returns the array of pointers to all tests in a particular test case + // sorted by the test name. The caller is responsible for deleting the + // array. + static TestInfo const** const GetSortedTests(const TestCase* test_case) { + TestInfo const** const tests = + new const TestInfo*[test_case->total_test_count()]; + + for (int i = 0; i < test_case->total_test_count(); ++i) + tests[i] = test_case->GetTestInfo(i); + + std::sort(tests, tests + test_case->total_test_count(), + LessByName()); + return tests; + } +}; + +#if GTEST_HAS_TYPED_TEST +template class TestCaseWithCommentTest : public Test {}; +TYPED_TEST_CASE(TestCaseWithCommentTest, Types); +TYPED_TEST(TestCaseWithCommentTest, Dummy) {} + +const int kTypedTestCases = 1; +const int kTypedTests = 1; +#else +const int kTypedTestCases = 0; +const int kTypedTests = 0; +#endif // GTEST_HAS_TYPED_TEST + +// We can only test the accessors that do not change value while tests run. +// Since tests can be run in any order, the values the accessors that track +// test execution (such as failed_test_count) can not be predicted. +TEST(ApiTest, UnitTestImmutableAccessorsWork) { + UnitTest* unit_test = UnitTest::GetInstance(); + + ASSERT_EQ(2 + kTypedTestCases, unit_test->total_test_case_count()); + EXPECT_EQ(1 + kTypedTestCases, unit_test->test_case_to_run_count()); + EXPECT_EQ(2, unit_test->disabled_test_count()); + EXPECT_EQ(5 + kTypedTests, unit_test->total_test_count()); + EXPECT_EQ(3 + kTypedTests, unit_test->test_to_run_count()); + + const TestCase** const test_cases = UnitTestHelper::GetSortedTestCases(); + + EXPECT_STREQ("ApiTest", test_cases[0]->name()); + EXPECT_STREQ("DISABLED_Test", test_cases[1]->name()); +#if GTEST_HAS_TYPED_TEST + EXPECT_STREQ("TestCaseWithCommentTest/0", test_cases[2]->name()); +#endif // GTEST_HAS_TYPED_TEST + + delete[] test_cases; + + // The following lines initiate actions to verify certain methods in + // FinalSuccessChecker::TearDown. + + // Records a test property to verify TestResult::GetTestProperty(). + RecordProperty("key", "value"); +} + +AssertionResult IsNull(const char* str) { + if (str != NULL) { + return testing::AssertionFailure() << "argument is " << str; + } + return AssertionSuccess(); +} + +TEST(ApiTest, TestCaseImmutableAccessorsWork) { + const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); + ASSERT_TRUE(test_case != NULL); + + EXPECT_STREQ("ApiTest", test_case->name()); + EXPECT_TRUE(IsNull(test_case->type_param())); + EXPECT_TRUE(test_case->should_run()); + EXPECT_EQ(1, test_case->disabled_test_count()); + EXPECT_EQ(3, test_case->test_to_run_count()); + ASSERT_EQ(4, test_case->total_test_count()); + + const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); + + EXPECT_STREQ("DISABLED_Dummy1", tests[0]->name()); + EXPECT_STREQ("ApiTest", tests[0]->test_case_name()); + EXPECT_TRUE(IsNull(tests[0]->value_param())); + EXPECT_TRUE(IsNull(tests[0]->type_param())); + EXPECT_FALSE(tests[0]->should_run()); + + EXPECT_STREQ("TestCaseDisabledAccessorsWork", tests[1]->name()); + EXPECT_STREQ("ApiTest", tests[1]->test_case_name()); + EXPECT_TRUE(IsNull(tests[1]->value_param())); + EXPECT_TRUE(IsNull(tests[1]->type_param())); + EXPECT_TRUE(tests[1]->should_run()); + + EXPECT_STREQ("TestCaseImmutableAccessorsWork", tests[2]->name()); + EXPECT_STREQ("ApiTest", tests[2]->test_case_name()); + EXPECT_TRUE(IsNull(tests[2]->value_param())); + EXPECT_TRUE(IsNull(tests[2]->type_param())); + EXPECT_TRUE(tests[2]->should_run()); + + EXPECT_STREQ("UnitTestImmutableAccessorsWork", tests[3]->name()); + EXPECT_STREQ("ApiTest", tests[3]->test_case_name()); + EXPECT_TRUE(IsNull(tests[3]->value_param())); + EXPECT_TRUE(IsNull(tests[3]->type_param())); + EXPECT_TRUE(tests[3]->should_run()); + + delete[] tests; + tests = NULL; + +#if GTEST_HAS_TYPED_TEST + test_case = UnitTestHelper::FindTestCase("TestCaseWithCommentTest/0"); + ASSERT_TRUE(test_case != NULL); + + EXPECT_STREQ("TestCaseWithCommentTest/0", test_case->name()); + EXPECT_STREQ(GetTypeName().c_str(), test_case->type_param()); + EXPECT_TRUE(test_case->should_run()); + EXPECT_EQ(0, test_case->disabled_test_count()); + EXPECT_EQ(1, test_case->test_to_run_count()); + ASSERT_EQ(1, test_case->total_test_count()); + + tests = UnitTestHelper::GetSortedTests(test_case); + + EXPECT_STREQ("Dummy", tests[0]->name()); + EXPECT_STREQ("TestCaseWithCommentTest/0", tests[0]->test_case_name()); + EXPECT_TRUE(IsNull(tests[0]->value_param())); + EXPECT_STREQ(GetTypeName().c_str(), tests[0]->type_param()); + EXPECT_TRUE(tests[0]->should_run()); + + delete[] tests; +#endif // GTEST_HAS_TYPED_TEST +} + +TEST(ApiTest, TestCaseDisabledAccessorsWork) { + const TestCase* test_case = UnitTestHelper::FindTestCase("DISABLED_Test"); + ASSERT_TRUE(test_case != NULL); + + EXPECT_STREQ("DISABLED_Test", test_case->name()); + EXPECT_TRUE(IsNull(test_case->type_param())); + EXPECT_FALSE(test_case->should_run()); + EXPECT_EQ(1, test_case->disabled_test_count()); + EXPECT_EQ(0, test_case->test_to_run_count()); + ASSERT_EQ(1, test_case->total_test_count()); + + const TestInfo* const test_info = test_case->GetTestInfo(0); + EXPECT_STREQ("Dummy2", test_info->name()); + EXPECT_STREQ("DISABLED_Test", test_info->test_case_name()); + EXPECT_TRUE(IsNull(test_info->value_param())); + EXPECT_TRUE(IsNull(test_info->type_param())); + EXPECT_FALSE(test_info->should_run()); +} + +// These two tests are here to provide support for testing +// test_case_to_run_count, disabled_test_count, and test_to_run_count. +TEST(ApiTest, DISABLED_Dummy1) {} +TEST(DISABLED_Test, Dummy2) {} + +class FinalSuccessChecker : public Environment { + protected: + virtual void TearDown() { + UnitTest* unit_test = UnitTest::GetInstance(); + + EXPECT_EQ(1 + kTypedTestCases, unit_test->successful_test_case_count()); + EXPECT_EQ(3 + kTypedTests, unit_test->successful_test_count()); + EXPECT_EQ(0, unit_test->failed_test_case_count()); + EXPECT_EQ(0, unit_test->failed_test_count()); + EXPECT_TRUE(unit_test->Passed()); + EXPECT_FALSE(unit_test->Failed()); + ASSERT_EQ(2 + kTypedTestCases, unit_test->total_test_case_count()); + + const TestCase** const test_cases = UnitTestHelper::GetSortedTestCases(); + + EXPECT_STREQ("ApiTest", test_cases[0]->name()); + EXPECT_TRUE(IsNull(test_cases[0]->type_param())); + EXPECT_TRUE(test_cases[0]->should_run()); + EXPECT_EQ(1, test_cases[0]->disabled_test_count()); + ASSERT_EQ(4, test_cases[0]->total_test_count()); + EXPECT_EQ(3, test_cases[0]->successful_test_count()); + EXPECT_EQ(0, test_cases[0]->failed_test_count()); + EXPECT_TRUE(test_cases[0]->Passed()); + EXPECT_FALSE(test_cases[0]->Failed()); + + EXPECT_STREQ("DISABLED_Test", test_cases[1]->name()); + EXPECT_TRUE(IsNull(test_cases[1]->type_param())); + EXPECT_FALSE(test_cases[1]->should_run()); + EXPECT_EQ(1, test_cases[1]->disabled_test_count()); + ASSERT_EQ(1, test_cases[1]->total_test_count()); + EXPECT_EQ(0, test_cases[1]->successful_test_count()); + EXPECT_EQ(0, test_cases[1]->failed_test_count()); + +#if GTEST_HAS_TYPED_TEST + EXPECT_STREQ("TestCaseWithCommentTest/0", test_cases[2]->name()); + EXPECT_STREQ(GetTypeName().c_str(), test_cases[2]->type_param()); + EXPECT_TRUE(test_cases[2]->should_run()); + EXPECT_EQ(0, test_cases[2]->disabled_test_count()); + ASSERT_EQ(1, test_cases[2]->total_test_count()); + EXPECT_EQ(1, test_cases[2]->successful_test_count()); + EXPECT_EQ(0, test_cases[2]->failed_test_count()); + EXPECT_TRUE(test_cases[2]->Passed()); + EXPECT_FALSE(test_cases[2]->Failed()); +#endif // GTEST_HAS_TYPED_TEST + + const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); + const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); + EXPECT_STREQ("DISABLED_Dummy1", tests[0]->name()); + EXPECT_STREQ("ApiTest", tests[0]->test_case_name()); + EXPECT_FALSE(tests[0]->should_run()); + + EXPECT_STREQ("TestCaseDisabledAccessorsWork", tests[1]->name()); + EXPECT_STREQ("ApiTest", tests[1]->test_case_name()); + EXPECT_TRUE(IsNull(tests[1]->value_param())); + EXPECT_TRUE(IsNull(tests[1]->type_param())); + EXPECT_TRUE(tests[1]->should_run()); + EXPECT_TRUE(tests[1]->result()->Passed()); + EXPECT_EQ(0, tests[1]->result()->test_property_count()); + + EXPECT_STREQ("TestCaseImmutableAccessorsWork", tests[2]->name()); + EXPECT_STREQ("ApiTest", tests[2]->test_case_name()); + EXPECT_TRUE(IsNull(tests[2]->value_param())); + EXPECT_TRUE(IsNull(tests[2]->type_param())); + EXPECT_TRUE(tests[2]->should_run()); + EXPECT_TRUE(tests[2]->result()->Passed()); + EXPECT_EQ(0, tests[2]->result()->test_property_count()); + + EXPECT_STREQ("UnitTestImmutableAccessorsWork", tests[3]->name()); + EXPECT_STREQ("ApiTest", tests[3]->test_case_name()); + EXPECT_TRUE(IsNull(tests[3]->value_param())); + EXPECT_TRUE(IsNull(tests[3]->type_param())); + EXPECT_TRUE(tests[3]->should_run()); + EXPECT_TRUE(tests[3]->result()->Passed()); + EXPECT_EQ(1, tests[3]->result()->test_property_count()); + const TestProperty& property = tests[3]->result()->GetTestProperty(0); + EXPECT_STREQ("key", property.key()); + EXPECT_STREQ("value", property.value()); + + delete[] tests; + +#if GTEST_HAS_TYPED_TEST + test_case = UnitTestHelper::FindTestCase("TestCaseWithCommentTest/0"); + tests = UnitTestHelper::GetSortedTests(test_case); + + EXPECT_STREQ("Dummy", tests[0]->name()); + EXPECT_STREQ("TestCaseWithCommentTest/0", tests[0]->test_case_name()); + EXPECT_TRUE(IsNull(tests[0]->value_param())); + EXPECT_STREQ(GetTypeName().c_str(), tests[0]->type_param()); + EXPECT_TRUE(tests[0]->should_run()); + EXPECT_TRUE(tests[0]->result()->Passed()); + EXPECT_EQ(0, tests[0]->result()->test_property_count()); + + delete[] tests; +#endif // GTEST_HAS_TYPED_TEST + delete[] test_cases; + } +}; + +} // namespace internal +} // namespace testing + +int main(int argc, char **argv) { + InitGoogleTest(&argc, argv); + + AddGlobalTestEnvironment(new testing::internal::FinalSuccessChecker()); + + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_all_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_all_test.cc new file mode 100644 index 000000000..955aa6282 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_all_test.cc @@ -0,0 +1,47 @@ +// Copyright 2009, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Tests for Google C++ Testing Framework (Google Test) +// +// Sometimes it's desirable to build most of Google Test's own tests +// by compiling a single file. This file serves this purpose. +#include "test/gtest-filepath_test.cc" +#include "test/gtest-linked_ptr_test.cc" +#include "test/gtest-message_test.cc" +#include "test/gtest-options_test.cc" +#include "test/gtest-port_test.cc" +#include "test/gtest_pred_impl_unittest.cc" +#include "test/gtest_prod_test.cc" +#include "test/gtest-test-part_test.cc" +#include "test/gtest-typed-test_test.cc" +#include "test/gtest-typed-test2_test.cc" +#include "test/gtest_unittest.cc" +#include "test/production.cc" diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest.py new file mode 100755 index 000000000..78f3e0f53 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest.py @@ -0,0 +1,212 @@ +#!/usr/bin/env python +# +# Copyright 2006, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Unit test for Google Test's break-on-failure mode. + +A user can ask Google Test to seg-fault when an assertion fails, using +either the GTEST_BREAK_ON_FAILURE environment variable or the +--gtest_break_on_failure flag. This script tests such functionality +by invoking gtest_break_on_failure_unittest_ (a program written with +Google Test) with different environments and command line flags. +""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import gtest_test_utils +import os +import sys + + +# Constants. + +IS_WINDOWS = os.name == 'nt' + +# The environment variable for enabling/disabling the break-on-failure mode. +BREAK_ON_FAILURE_ENV_VAR = 'GTEST_BREAK_ON_FAILURE' + +# The command line flag for enabling/disabling the break-on-failure mode. +BREAK_ON_FAILURE_FLAG = 'gtest_break_on_failure' + +# The environment variable for enabling/disabling the throw-on-failure mode. +THROW_ON_FAILURE_ENV_VAR = 'GTEST_THROW_ON_FAILURE' + +# The environment variable for enabling/disabling the catch-exceptions mode. +CATCH_EXCEPTIONS_ENV_VAR = 'GTEST_CATCH_EXCEPTIONS' + +# Path to the gtest_break_on_failure_unittest_ program. +EXE_PATH = gtest_test_utils.GetTestExecutablePath( + 'gtest_break_on_failure_unittest_') + + +environ = gtest_test_utils.environ +SetEnvVar = gtest_test_utils.SetEnvVar + +# Tests in this file run a Google-Test-based test program and expect it +# to terminate prematurely. Therefore they are incompatible with +# the premature-exit-file protocol by design. Unset the +# premature-exit filepath to prevent Google Test from creating +# the file. +SetEnvVar(gtest_test_utils.PREMATURE_EXIT_FILE_ENV_VAR, None) + + +def Run(command): + """Runs a command; returns 1 if it was killed by a signal, or 0 otherwise.""" + + p = gtest_test_utils.Subprocess(command, env=environ) + if p.terminated_by_signal: + return 1 + else: + return 0 + + +# The tests. + + +class GTestBreakOnFailureUnitTest(gtest_test_utils.TestCase): + """Tests using the GTEST_BREAK_ON_FAILURE environment variable or + the --gtest_break_on_failure flag to turn assertion failures into + segmentation faults. + """ + + def RunAndVerify(self, env_var_value, flag_value, expect_seg_fault): + """Runs gtest_break_on_failure_unittest_ and verifies that it does + (or does not) have a seg-fault. + + Args: + env_var_value: value of the GTEST_BREAK_ON_FAILURE environment + variable; None if the variable should be unset. + flag_value: value of the --gtest_break_on_failure flag; + None if the flag should not be present. + expect_seg_fault: 1 if the program is expected to generate a seg-fault; + 0 otherwise. + """ + + SetEnvVar(BREAK_ON_FAILURE_ENV_VAR, env_var_value) + + if env_var_value is None: + env_var_value_msg = ' is not set' + else: + env_var_value_msg = '=' + env_var_value + + if flag_value is None: + flag = '' + elif flag_value == '0': + flag = '--%s=0' % BREAK_ON_FAILURE_FLAG + else: + flag = '--%s' % BREAK_ON_FAILURE_FLAG + + command = [EXE_PATH] + if flag: + command.append(flag) + + if expect_seg_fault: + should_or_not = 'should' + else: + should_or_not = 'should not' + + has_seg_fault = Run(command) + + SetEnvVar(BREAK_ON_FAILURE_ENV_VAR, None) + + msg = ('when %s%s, an assertion failure in "%s" %s cause a seg-fault.' % + (BREAK_ON_FAILURE_ENV_VAR, env_var_value_msg, ' '.join(command), + should_or_not)) + self.assert_(has_seg_fault == expect_seg_fault, msg) + + def testDefaultBehavior(self): + """Tests the behavior of the default mode.""" + + self.RunAndVerify(env_var_value=None, + flag_value=None, + expect_seg_fault=0) + + def testEnvVar(self): + """Tests using the GTEST_BREAK_ON_FAILURE environment variable.""" + + self.RunAndVerify(env_var_value='0', + flag_value=None, + expect_seg_fault=0) + self.RunAndVerify(env_var_value='1', + flag_value=None, + expect_seg_fault=1) + + def testFlag(self): + """Tests using the --gtest_break_on_failure flag.""" + + self.RunAndVerify(env_var_value=None, + flag_value='0', + expect_seg_fault=0) + self.RunAndVerify(env_var_value=None, + flag_value='1', + expect_seg_fault=1) + + def testFlagOverridesEnvVar(self): + """Tests that the flag overrides the environment variable.""" + + self.RunAndVerify(env_var_value='0', + flag_value='0', + expect_seg_fault=0) + self.RunAndVerify(env_var_value='0', + flag_value='1', + expect_seg_fault=1) + self.RunAndVerify(env_var_value='1', + flag_value='0', + expect_seg_fault=0) + self.RunAndVerify(env_var_value='1', + flag_value='1', + expect_seg_fault=1) + + def testBreakOnFailureOverridesThrowOnFailure(self): + """Tests that gtest_break_on_failure overrides gtest_throw_on_failure.""" + + SetEnvVar(THROW_ON_FAILURE_ENV_VAR, '1') + try: + self.RunAndVerify(env_var_value=None, + flag_value='1', + expect_seg_fault=1) + finally: + SetEnvVar(THROW_ON_FAILURE_ENV_VAR, None) + + if IS_WINDOWS: + def testCatchExceptionsDoesNotInterfere(self): + """Tests that gtest_catch_exceptions doesn't interfere.""" + + SetEnvVar(CATCH_EXCEPTIONS_ENV_VAR, '1') + try: + self.RunAndVerify(env_var_value='1', + flag_value='1', + expect_seg_fault=1) + finally: + SetEnvVar(CATCH_EXCEPTIONS_ENV_VAR, None) + + +if __name__ == '__main__': + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc new file mode 100644 index 000000000..dd07478c0 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc @@ -0,0 +1,88 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Unit test for Google Test's break-on-failure mode. +// +// A user can ask Google Test to seg-fault when an assertion fails, using +// either the GTEST_BREAK_ON_FAILURE environment variable or the +// --gtest_break_on_failure flag. This file is used for testing such +// functionality. +// +// This program will be invoked from a Python unit test. It is +// expected to fail. Don't run it directly. + +#include "gtest/gtest.h" + +#if GTEST_OS_WINDOWS +# include +# include +#endif + +namespace { + +// A test that's expected to fail. +TEST(Foo, Bar) { + EXPECT_EQ(2, 3); +} + +#if GTEST_HAS_SEH && !GTEST_OS_WINDOWS_MOBILE +// On Windows Mobile global exception handlers are not supported. +LONG WINAPI ExitWithExceptionCode( + struct _EXCEPTION_POINTERS* exception_pointers) { + exit(exception_pointers->ExceptionRecord->ExceptionCode); +} +#endif + +} // namespace + +int main(int argc, char **argv) { +#if GTEST_OS_WINDOWS + // Suppresses display of the Windows error dialog upon encountering + // a general protection fault (segment violation). + SetErrorMode(SEM_NOGPFAULTERRORBOX | SEM_FAILCRITICALERRORS); + +# if GTEST_HAS_SEH && !GTEST_OS_WINDOWS_MOBILE + + // The default unhandled exception filter does not always exit + // with the exception code as exit code - for example it exits with + // 0 for EXCEPTION_ACCESS_VIOLATION and 1 for EXCEPTION_BREAKPOINT + // if the application is compiled in debug mode. Thus we use our own + // filter which always exits with the exception code for unhandled + // exceptions. + SetUnhandledExceptionFilter(ExitWithExceptionCode); + +# endif +#endif + + testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_catch_exceptions_test.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_catch_exceptions_test.py new file mode 100755 index 000000000..e6fc22fd1 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_catch_exceptions_test.py @@ -0,0 +1,237 @@ +#!/usr/bin/env python +# +# Copyright 2010 Google Inc. All Rights Reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Tests Google Test's exception catching behavior. + +This script invokes gtest_catch_exceptions_test_ and +gtest_catch_exceptions_ex_test_ (programs written with +Google Test) and verifies their output. +""" + +__author__ = 'vladl@google.com (Vlad Losev)' + +import os + +import gtest_test_utils + +# Constants. +FLAG_PREFIX = '--gtest_' +LIST_TESTS_FLAG = FLAG_PREFIX + 'list_tests' +NO_CATCH_EXCEPTIONS_FLAG = FLAG_PREFIX + 'catch_exceptions=0' +FILTER_FLAG = FLAG_PREFIX + 'filter' + +# Path to the gtest_catch_exceptions_ex_test_ binary, compiled with +# exceptions enabled. +EX_EXE_PATH = gtest_test_utils.GetTestExecutablePath( + 'gtest_catch_exceptions_ex_test_') + +# Path to the gtest_catch_exceptions_test_ binary, compiled with +# exceptions disabled. +EXE_PATH = gtest_test_utils.GetTestExecutablePath( + 'gtest_catch_exceptions_no_ex_test_') + +environ = gtest_test_utils.environ +SetEnvVar = gtest_test_utils.SetEnvVar + +# Tests in this file run a Google-Test-based test program and expect it +# to terminate prematurely. Therefore they are incompatible with +# the premature-exit-file protocol by design. Unset the +# premature-exit filepath to prevent Google Test from creating +# the file. +SetEnvVar(gtest_test_utils.PREMATURE_EXIT_FILE_ENV_VAR, None) + +TEST_LIST = gtest_test_utils.Subprocess( + [EXE_PATH, LIST_TESTS_FLAG], env=environ).output + +SUPPORTS_SEH_EXCEPTIONS = 'ThrowsSehException' in TEST_LIST + +if SUPPORTS_SEH_EXCEPTIONS: + BINARY_OUTPUT = gtest_test_utils.Subprocess([EXE_PATH], env=environ).output + +EX_BINARY_OUTPUT = gtest_test_utils.Subprocess( + [EX_EXE_PATH], env=environ).output + + +# The tests. +if SUPPORTS_SEH_EXCEPTIONS: + # pylint:disable-msg=C6302 + class CatchSehExceptionsTest(gtest_test_utils.TestCase): + """Tests exception-catching behavior.""" + + + def TestSehExceptions(self, test_output): + self.assert_('SEH exception with code 0x2a thrown ' + 'in the test fixture\'s constructor' + in test_output) + self.assert_('SEH exception with code 0x2a thrown ' + 'in the test fixture\'s destructor' + in test_output) + self.assert_('SEH exception with code 0x2a thrown in SetUpTestCase()' + in test_output) + self.assert_('SEH exception with code 0x2a thrown in TearDownTestCase()' + in test_output) + self.assert_('SEH exception with code 0x2a thrown in SetUp()' + in test_output) + self.assert_('SEH exception with code 0x2a thrown in TearDown()' + in test_output) + self.assert_('SEH exception with code 0x2a thrown in the test body' + in test_output) + + def testCatchesSehExceptionsWithCxxExceptionsEnabled(self): + self.TestSehExceptions(EX_BINARY_OUTPUT) + + def testCatchesSehExceptionsWithCxxExceptionsDisabled(self): + self.TestSehExceptions(BINARY_OUTPUT) + + +class CatchCxxExceptionsTest(gtest_test_utils.TestCase): + """Tests C++ exception-catching behavior. + + Tests in this test case verify that: + * C++ exceptions are caught and logged as C++ (not SEH) exceptions + * Exception thrown affect the remainder of the test work flow in the + expected manner. + """ + + def testCatchesCxxExceptionsInFixtureConstructor(self): + self.assert_('C++ exception with description ' + '"Standard C++ exception" thrown ' + 'in the test fixture\'s constructor' + in EX_BINARY_OUTPUT) + self.assert_('unexpected' not in EX_BINARY_OUTPUT, + 'This failure belongs in this test only if ' + '"CxxExceptionInConstructorTest" (no quotes) ' + 'appears on the same line as words "called unexpectedly"') + + if ('CxxExceptionInDestructorTest.ThrowsExceptionInDestructor' in + EX_BINARY_OUTPUT): + + def testCatchesCxxExceptionsInFixtureDestructor(self): + self.assert_('C++ exception with description ' + '"Standard C++ exception" thrown ' + 'in the test fixture\'s destructor' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInDestructorTest::TearDownTestCase() ' + 'called as expected.' + in EX_BINARY_OUTPUT) + + def testCatchesCxxExceptionsInSetUpTestCase(self): + self.assert_('C++ exception with description "Standard C++ exception"' + ' thrown in SetUpTestCase()' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInConstructorTest::TearDownTestCase() ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInSetUpTestCaseTest constructor ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInSetUpTestCaseTest destructor ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInSetUpTestCaseTest::SetUp() ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInSetUpTestCaseTest::TearDown() ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInSetUpTestCaseTest test body ' + 'called as expected.' + in EX_BINARY_OUTPUT) + + def testCatchesCxxExceptionsInTearDownTestCase(self): + self.assert_('C++ exception with description "Standard C++ exception"' + ' thrown in TearDownTestCase()' + in EX_BINARY_OUTPUT) + + def testCatchesCxxExceptionsInSetUp(self): + self.assert_('C++ exception with description "Standard C++ exception"' + ' thrown in SetUp()' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInSetUpTest::TearDownTestCase() ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInSetUpTest destructor ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInSetUpTest::TearDown() ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('unexpected' not in EX_BINARY_OUTPUT, + 'This failure belongs in this test only if ' + '"CxxExceptionInSetUpTest" (no quotes) ' + 'appears on the same line as words "called unexpectedly"') + + def testCatchesCxxExceptionsInTearDown(self): + self.assert_('C++ exception with description "Standard C++ exception"' + ' thrown in TearDown()' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInTearDownTest::TearDownTestCase() ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInTearDownTest destructor ' + 'called as expected.' + in EX_BINARY_OUTPUT) + + def testCatchesCxxExceptionsInTestBody(self): + self.assert_('C++ exception with description "Standard C++ exception"' + ' thrown in the test body' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInTestBodyTest::TearDownTestCase() ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInTestBodyTest destructor ' + 'called as expected.' + in EX_BINARY_OUTPUT) + self.assert_('CxxExceptionInTestBodyTest::TearDown() ' + 'called as expected.' + in EX_BINARY_OUTPUT) + + def testCatchesNonStdCxxExceptions(self): + self.assert_('Unknown C++ exception thrown in the test body' + in EX_BINARY_OUTPUT) + + def testUnhandledCxxExceptionsAbortTheProgram(self): + # Filters out SEH exception tests on Windows. Unhandled SEH exceptions + # cause tests to show pop-up windows there. + FITLER_OUT_SEH_TESTS_FLAG = FILTER_FLAG + '=-*Seh*' + # By default, Google Test doesn't catch the exceptions. + uncaught_exceptions_ex_binary_output = gtest_test_utils.Subprocess( + [EX_EXE_PATH, + NO_CATCH_EXCEPTIONS_FLAG, + FITLER_OUT_SEH_TESTS_FLAG], + env=environ).output + + self.assert_('Unhandled C++ exception terminating the program' + in uncaught_exceptions_ex_binary_output) + self.assert_('unexpected' not in uncaught_exceptions_ex_binary_output) + + +if __name__ == '__main__': + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc new file mode 100644 index 000000000..d0fc82c99 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc @@ -0,0 +1,311 @@ +// Copyright 2010, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) +// +// Tests for Google Test itself. Tests in this file throw C++ or SEH +// exceptions, and the output is verified by gtest_catch_exceptions_test.py. + +#include "gtest/gtest.h" + +#include // NOLINT +#include // For exit(). + +#if GTEST_HAS_SEH +# include +#endif + +#if GTEST_HAS_EXCEPTIONS +# include // For set_terminate(). +# include +#endif + +using testing::Test; + +#if GTEST_HAS_SEH + +class SehExceptionInConstructorTest : public Test { + public: + SehExceptionInConstructorTest() { RaiseException(42, 0, 0, NULL); } +}; + +TEST_F(SehExceptionInConstructorTest, ThrowsExceptionInConstructor) {} + +class SehExceptionInDestructorTest : public Test { + public: + ~SehExceptionInDestructorTest() { RaiseException(42, 0, 0, NULL); } +}; + +TEST_F(SehExceptionInDestructorTest, ThrowsExceptionInDestructor) {} + +class SehExceptionInSetUpTestCaseTest : public Test { + public: + static void SetUpTestCase() { RaiseException(42, 0, 0, NULL); } +}; + +TEST_F(SehExceptionInSetUpTestCaseTest, ThrowsExceptionInSetUpTestCase) {} + +class SehExceptionInTearDownTestCaseTest : public Test { + public: + static void TearDownTestCase() { RaiseException(42, 0, 0, NULL); } +}; + +TEST_F(SehExceptionInTearDownTestCaseTest, ThrowsExceptionInTearDownTestCase) {} + +class SehExceptionInSetUpTest : public Test { + protected: + virtual void SetUp() { RaiseException(42, 0, 0, NULL); } +}; + +TEST_F(SehExceptionInSetUpTest, ThrowsExceptionInSetUp) {} + +class SehExceptionInTearDownTest : public Test { + protected: + virtual void TearDown() { RaiseException(42, 0, 0, NULL); } +}; + +TEST_F(SehExceptionInTearDownTest, ThrowsExceptionInTearDown) {} + +TEST(SehExceptionTest, ThrowsSehException) { + RaiseException(42, 0, 0, NULL); +} + +#endif // GTEST_HAS_SEH + +#if GTEST_HAS_EXCEPTIONS + +class CxxExceptionInConstructorTest : public Test { + public: + CxxExceptionInConstructorTest() { + // Without this macro VC++ complains about unreachable code at the end of + // the constructor. + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_( + throw std::runtime_error("Standard C++ exception")); + } + + static void TearDownTestCase() { + printf("%s", + "CxxExceptionInConstructorTest::TearDownTestCase() " + "called as expected.\n"); + } + + protected: + ~CxxExceptionInConstructorTest() { + ADD_FAILURE() << "CxxExceptionInConstructorTest destructor " + << "called unexpectedly."; + } + + virtual void SetUp() { + ADD_FAILURE() << "CxxExceptionInConstructorTest::SetUp() " + << "called unexpectedly."; + } + + virtual void TearDown() { + ADD_FAILURE() << "CxxExceptionInConstructorTest::TearDown() " + << "called unexpectedly."; + } +}; + +TEST_F(CxxExceptionInConstructorTest, ThrowsExceptionInConstructor) { + ADD_FAILURE() << "CxxExceptionInConstructorTest test body " + << "called unexpectedly."; +} + +// Exceptions in destructors are not supported in C++11. +#if !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L +class CxxExceptionInDestructorTest : public Test { + public: + static void TearDownTestCase() { + printf("%s", + "CxxExceptionInDestructorTest::TearDownTestCase() " + "called as expected.\n"); + } + + protected: + ~CxxExceptionInDestructorTest() { + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_( + throw std::runtime_error("Standard C++ exception")); + } +}; + +TEST_F(CxxExceptionInDestructorTest, ThrowsExceptionInDestructor) {} +#endif // C++11 mode + +class CxxExceptionInSetUpTestCaseTest : public Test { + public: + CxxExceptionInSetUpTestCaseTest() { + printf("%s", + "CxxExceptionInSetUpTestCaseTest constructor " + "called as expected.\n"); + } + + static void SetUpTestCase() { + throw std::runtime_error("Standard C++ exception"); + } + + static void TearDownTestCase() { + printf("%s", + "CxxExceptionInSetUpTestCaseTest::TearDownTestCase() " + "called as expected.\n"); + } + + protected: + ~CxxExceptionInSetUpTestCaseTest() { + printf("%s", + "CxxExceptionInSetUpTestCaseTest destructor " + "called as expected.\n"); + } + + virtual void SetUp() { + printf("%s", + "CxxExceptionInSetUpTestCaseTest::SetUp() " + "called as expected.\n"); + } + + virtual void TearDown() { + printf("%s", + "CxxExceptionInSetUpTestCaseTest::TearDown() " + "called as expected.\n"); + } +}; + +TEST_F(CxxExceptionInSetUpTestCaseTest, ThrowsExceptionInSetUpTestCase) { + printf("%s", + "CxxExceptionInSetUpTestCaseTest test body " + "called as expected.\n"); +} + +class CxxExceptionInTearDownTestCaseTest : public Test { + public: + static void TearDownTestCase() { + throw std::runtime_error("Standard C++ exception"); + } +}; + +TEST_F(CxxExceptionInTearDownTestCaseTest, ThrowsExceptionInTearDownTestCase) {} + +class CxxExceptionInSetUpTest : public Test { + public: + static void TearDownTestCase() { + printf("%s", + "CxxExceptionInSetUpTest::TearDownTestCase() " + "called as expected.\n"); + } + + protected: + ~CxxExceptionInSetUpTest() { + printf("%s", + "CxxExceptionInSetUpTest destructor " + "called as expected.\n"); + } + + virtual void SetUp() { throw std::runtime_error("Standard C++ exception"); } + + virtual void TearDown() { + printf("%s", + "CxxExceptionInSetUpTest::TearDown() " + "called as expected.\n"); + } +}; + +TEST_F(CxxExceptionInSetUpTest, ThrowsExceptionInSetUp) { + ADD_FAILURE() << "CxxExceptionInSetUpTest test body " + << "called unexpectedly."; +} + +class CxxExceptionInTearDownTest : public Test { + public: + static void TearDownTestCase() { + printf("%s", + "CxxExceptionInTearDownTest::TearDownTestCase() " + "called as expected.\n"); + } + + protected: + ~CxxExceptionInTearDownTest() { + printf("%s", + "CxxExceptionInTearDownTest destructor " + "called as expected.\n"); + } + + virtual void TearDown() { + throw std::runtime_error("Standard C++ exception"); + } +}; + +TEST_F(CxxExceptionInTearDownTest, ThrowsExceptionInTearDown) {} + +class CxxExceptionInTestBodyTest : public Test { + public: + static void TearDownTestCase() { + printf("%s", + "CxxExceptionInTestBodyTest::TearDownTestCase() " + "called as expected.\n"); + } + + protected: + ~CxxExceptionInTestBodyTest() { + printf("%s", + "CxxExceptionInTestBodyTest destructor " + "called as expected.\n"); + } + + virtual void TearDown() { + printf("%s", + "CxxExceptionInTestBodyTest::TearDown() " + "called as expected.\n"); + } +}; + +TEST_F(CxxExceptionInTestBodyTest, ThrowsStdCxxException) { + throw std::runtime_error("Standard C++ exception"); +} + +TEST(CxxExceptionTest, ThrowsNonStdCxxException) { + throw "C-string"; +} + +// This terminate handler aborts the program using exit() rather than abort(). +// This avoids showing pop-ups on Windows systems and core dumps on Unix-like +// ones. +void TerminateHandler() { + fprintf(stderr, "%s\n", "Unhandled C++ exception terminating the program."); + fflush(NULL); + exit(3); +} + +#endif // GTEST_HAS_EXCEPTIONS + +int main(int argc, char** argv) { +#if GTEST_HAS_EXCEPTIONS + std::set_terminate(&TerminateHandler); +#endif + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_color_test.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_color_test.py new file mode 100755 index 000000000..d02a53ed8 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_color_test.py @@ -0,0 +1,130 @@ +#!/usr/bin/env python +# +# Copyright 2008, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Verifies that Google Test correctly determines whether to use colors.""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import os +import gtest_test_utils + + +IS_WINDOWS = os.name = 'nt' + +COLOR_ENV_VAR = 'GTEST_COLOR' +COLOR_FLAG = 'gtest_color' +COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_color_test_') + + +def SetEnvVar(env_var, value): + """Sets the env variable to 'value'; unsets it when 'value' is None.""" + + if value is not None: + os.environ[env_var] = value + elif env_var in os.environ: + del os.environ[env_var] + + +def UsesColor(term, color_env_var, color_flag): + """Runs gtest_color_test_ and returns its exit code.""" + + SetEnvVar('TERM', term) + SetEnvVar(COLOR_ENV_VAR, color_env_var) + + if color_flag is None: + args = [] + else: + args = ['--%s=%s' % (COLOR_FLAG, color_flag)] + p = gtest_test_utils.Subprocess([COMMAND] + args) + return not p.exited or p.exit_code + + +class GTestColorTest(gtest_test_utils.TestCase): + def testNoEnvVarNoFlag(self): + """Tests the case when there's neither GTEST_COLOR nor --gtest_color.""" + + if not IS_WINDOWS: + self.assert_(not UsesColor('dumb', None, None)) + self.assert_(not UsesColor('emacs', None, None)) + self.assert_(not UsesColor('xterm-mono', None, None)) + self.assert_(not UsesColor('unknown', None, None)) + self.assert_(not UsesColor(None, None, None)) + self.assert_(UsesColor('linux', None, None)) + self.assert_(UsesColor('cygwin', None, None)) + self.assert_(UsesColor('xterm', None, None)) + self.assert_(UsesColor('xterm-color', None, None)) + self.assert_(UsesColor('xterm-256color', None, None)) + + def testFlagOnly(self): + """Tests the case when there's --gtest_color but not GTEST_COLOR.""" + + self.assert_(not UsesColor('dumb', None, 'no')) + self.assert_(not UsesColor('xterm-color', None, 'no')) + if not IS_WINDOWS: + self.assert_(not UsesColor('emacs', None, 'auto')) + self.assert_(UsesColor('xterm', None, 'auto')) + self.assert_(UsesColor('dumb', None, 'yes')) + self.assert_(UsesColor('xterm', None, 'yes')) + + def testEnvVarOnly(self): + """Tests the case when there's GTEST_COLOR but not --gtest_color.""" + + self.assert_(not UsesColor('dumb', 'no', None)) + self.assert_(not UsesColor('xterm-color', 'no', None)) + if not IS_WINDOWS: + self.assert_(not UsesColor('dumb', 'auto', None)) + self.assert_(UsesColor('xterm-color', 'auto', None)) + self.assert_(UsesColor('dumb', 'yes', None)) + self.assert_(UsesColor('xterm-color', 'yes', None)) + + def testEnvVarAndFlag(self): + """Tests the case when there are both GTEST_COLOR and --gtest_color.""" + + self.assert_(not UsesColor('xterm-color', 'no', 'no')) + self.assert_(UsesColor('dumb', 'no', 'yes')) + self.assert_(UsesColor('xterm-color', 'no', 'auto')) + + def testAliasesOfYesAndNo(self): + """Tests using aliases in specifying --gtest_color.""" + + self.assert_(UsesColor('dumb', None, 'true')) + self.assert_(UsesColor('dumb', None, 'YES')) + self.assert_(UsesColor('dumb', None, 'T')) + self.assert_(UsesColor('dumb', None, '1')) + + self.assert_(not UsesColor('xterm', None, 'f')) + self.assert_(not UsesColor('xterm', None, 'false')) + self.assert_(not UsesColor('xterm', None, '0')) + self.assert_(not UsesColor('xterm', None, 'unknown')) + + +if __name__ == '__main__': + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_color_test_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_color_test_.cc new file mode 100644 index 000000000..f61ebb89b --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_color_test_.cc @@ -0,0 +1,71 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// A helper program for testing how Google Test determines whether to use +// colors in the output. It prints "YES" and returns 1 if Google Test +// decides to use colors, and prints "NO" and returns 0 otherwise. + +#include + +#include "gtest/gtest.h" + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +using testing::internal::ShouldUseColor; + +// The purpose of this is to ensure that the UnitTest singleton is +// created before main() is entered, and thus that ShouldUseColor() +// works the same way as in a real Google-Test-based test. We don't actual +// run the TEST itself. +TEST(GTestColorTest, Dummy) { +} + +int main(int argc, char** argv) { + testing::InitGoogleTest(&argc, argv); + + if (ShouldUseColor(true)) { + // Google Test decides to use colors in the output (assuming it + // goes to a TTY). + printf("YES\n"); + return 1; + } else { + // Google Test decides not to use colors in the output. + printf("NO\n"); + return 0; + } +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_env_var_test.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_env_var_test.py new file mode 100755 index 000000000..ac24337fa --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_env_var_test.py @@ -0,0 +1,103 @@ +#!/usr/bin/env python +# +# Copyright 2008, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Verifies that Google Test correctly parses environment variables.""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import os +import gtest_test_utils + + +IS_WINDOWS = os.name == 'nt' +IS_LINUX = os.name == 'posix' and os.uname()[0] == 'Linux' + +COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_env_var_test_') + +environ = os.environ.copy() + + +def AssertEq(expected, actual): + if expected != actual: + print 'Expected: %s' % (expected,) + print ' Actual: %s' % (actual,) + raise AssertionError + + +def SetEnvVar(env_var, value): + """Sets the env variable to 'value'; unsets it when 'value' is None.""" + + if value is not None: + environ[env_var] = value + elif env_var in environ: + del environ[env_var] + + +def GetFlag(flag): + """Runs gtest_env_var_test_ and returns its output.""" + + args = [COMMAND] + if flag is not None: + args += [flag] + return gtest_test_utils.Subprocess(args, env=environ).output + + +def TestFlag(flag, test_val, default_val): + """Verifies that the given flag is affected by the corresponding env var.""" + + env_var = 'GTEST_' + flag.upper() + SetEnvVar(env_var, test_val) + AssertEq(test_val, GetFlag(flag)) + SetEnvVar(env_var, None) + AssertEq(default_val, GetFlag(flag)) + + +class GTestEnvVarTest(gtest_test_utils.TestCase): + def testEnvVarAffectsFlag(self): + """Tests that environment variable should affect the corresponding flag.""" + + TestFlag('break_on_failure', '1', '0') + TestFlag('color', 'yes', 'auto') + TestFlag('filter', 'FooTest.Bar', '*') + TestFlag('output', 'xml:tmp/foo.xml', '') + TestFlag('print_time', '0', '1') + TestFlag('repeat', '999', '1') + TestFlag('throw_on_failure', '1', '0') + TestFlag('death_test_style', 'threadsafe', 'fast') + TestFlag('catch_exceptions', '0', '1') + + if IS_LINUX: + TestFlag('death_test_use_fork', '1', '0') + TestFlag('stack_trace_depth', '0', '100') + + +if __name__ == '__main__': + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_env_var_test_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_env_var_test_.cc new file mode 100644 index 000000000..539afc968 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_env_var_test_.cc @@ -0,0 +1,126 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// A helper program for testing that Google Test parses the environment +// variables correctly. + +#include "gtest/gtest.h" + +#include + +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +using ::std::cout; + +namespace testing { + +// The purpose of this is to make the test more realistic by ensuring +// that the UnitTest singleton is created before main() is entered. +// We don't actual run the TEST itself. +TEST(GTestEnvVarTest, Dummy) { +} + +void PrintFlag(const char* flag) { + if (strcmp(flag, "break_on_failure") == 0) { + cout << GTEST_FLAG(break_on_failure); + return; + } + + if (strcmp(flag, "catch_exceptions") == 0) { + cout << GTEST_FLAG(catch_exceptions); + return; + } + + if (strcmp(flag, "color") == 0) { + cout << GTEST_FLAG(color); + return; + } + + if (strcmp(flag, "death_test_style") == 0) { + cout << GTEST_FLAG(death_test_style); + return; + } + + if (strcmp(flag, "death_test_use_fork") == 0) { + cout << GTEST_FLAG(death_test_use_fork); + return; + } + + if (strcmp(flag, "filter") == 0) { + cout << GTEST_FLAG(filter); + return; + } + + if (strcmp(flag, "output") == 0) { + cout << GTEST_FLAG(output); + return; + } + + if (strcmp(flag, "print_time") == 0) { + cout << GTEST_FLAG(print_time); + return; + } + + if (strcmp(flag, "repeat") == 0) { + cout << GTEST_FLAG(repeat); + return; + } + + if (strcmp(flag, "stack_trace_depth") == 0) { + cout << GTEST_FLAG(stack_trace_depth); + return; + } + + if (strcmp(flag, "throw_on_failure") == 0) { + cout << GTEST_FLAG(throw_on_failure); + return; + } + + cout << "Invalid flag name " << flag + << ". Valid names are break_on_failure, color, filter, etc.\n"; + exit(1); +} + +} // namespace testing + +int main(int argc, char** argv) { + testing::InitGoogleTest(&argc, argv); + + if (argc != 2) { + cout << "Usage: gtest_env_var_test_ NAME_OF_FLAG\n"; + return 1; + } + + testing::PrintFlag(argv[1]); + return 0; +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_environment_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_environment_test.cc new file mode 100644 index 000000000..3cff19e70 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_environment_test.cc @@ -0,0 +1,192 @@ +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Tests using global test environments. + +#include +#include +#include "gtest/gtest.h" + +#define GTEST_IMPLEMENTATION_ 1 // Required for the next #include. +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +namespace testing { +GTEST_DECLARE_string_(filter); +} + +namespace { + +enum FailureType { + NO_FAILURE, NON_FATAL_FAILURE, FATAL_FAILURE +}; + +// For testing using global test environments. +class MyEnvironment : public testing::Environment { + public: + MyEnvironment() { Reset(); } + + // Depending on the value of failure_in_set_up_, SetUp() will + // generate a non-fatal failure, generate a fatal failure, or + // succeed. + virtual void SetUp() { + set_up_was_run_ = true; + + switch (failure_in_set_up_) { + case NON_FATAL_FAILURE: + ADD_FAILURE() << "Expected non-fatal failure in global set-up."; + break; + case FATAL_FAILURE: + FAIL() << "Expected fatal failure in global set-up."; + break; + default: + break; + } + } + + // Generates a non-fatal failure. + virtual void TearDown() { + tear_down_was_run_ = true; + ADD_FAILURE() << "Expected non-fatal failure in global tear-down."; + } + + // Resets the state of the environment s.t. it can be reused. + void Reset() { + failure_in_set_up_ = NO_FAILURE; + set_up_was_run_ = false; + tear_down_was_run_ = false; + } + + // We call this function to set the type of failure SetUp() should + // generate. + void set_failure_in_set_up(FailureType type) { + failure_in_set_up_ = type; + } + + // Was SetUp() run? + bool set_up_was_run() const { return set_up_was_run_; } + + // Was TearDown() run? + bool tear_down_was_run() const { return tear_down_was_run_; } + + private: + FailureType failure_in_set_up_; + bool set_up_was_run_; + bool tear_down_was_run_; +}; + +// Was the TEST run? +bool test_was_run; + +// The sole purpose of this TEST is to enable us to check whether it +// was run. +TEST(FooTest, Bar) { + test_was_run = true; +} + +// Prints the message and aborts the program if condition is false. +void Check(bool condition, const char* msg) { + if (!condition) { + printf("FAILED: %s\n", msg); + testing::internal::posix::Abort(); + } +} + +// Runs the tests. Return true iff successful. +// +// The 'failure' parameter specifies the type of failure that should +// be generated by the global set-up. +int RunAllTests(MyEnvironment* env, FailureType failure) { + env->Reset(); + env->set_failure_in_set_up(failure); + test_was_run = false; + testing::internal::GetUnitTestImpl()->ClearAdHocTestResult(); + return RUN_ALL_TESTS(); +} + +} // namespace + +int main(int argc, char **argv) { + testing::InitGoogleTest(&argc, argv); + + // Registers a global test environment, and verifies that the + // registration function returns its argument. + MyEnvironment* const env = new MyEnvironment; + Check(testing::AddGlobalTestEnvironment(env) == env, + "AddGlobalTestEnvironment() should return its argument."); + + // Verifies that RUN_ALL_TESTS() runs the tests when the global + // set-up is successful. + Check(RunAllTests(env, NO_FAILURE) != 0, + "RUN_ALL_TESTS() should return non-zero, as the global tear-down " + "should generate a failure."); + Check(test_was_run, + "The tests should run, as the global set-up should generate no " + "failure"); + Check(env->tear_down_was_run(), + "The global tear-down should run, as the global set-up was run."); + + // Verifies that RUN_ALL_TESTS() runs the tests when the global + // set-up generates no fatal failure. + Check(RunAllTests(env, NON_FATAL_FAILURE) != 0, + "RUN_ALL_TESTS() should return non-zero, as both the global set-up " + "and the global tear-down should generate a non-fatal failure."); + Check(test_was_run, + "The tests should run, as the global set-up should generate no " + "fatal failure."); + Check(env->tear_down_was_run(), + "The global tear-down should run, as the global set-up was run."); + + // Verifies that RUN_ALL_TESTS() runs no test when the global set-up + // generates a fatal failure. + Check(RunAllTests(env, FATAL_FAILURE) != 0, + "RUN_ALL_TESTS() should return non-zero, as the global set-up " + "should generate a fatal failure."); + Check(!test_was_run, + "The tests should not run, as the global set-up should generate " + "a fatal failure."); + Check(env->tear_down_was_run(), + "The global tear-down should run, as the global set-up was run."); + + // Verifies that RUN_ALL_TESTS() doesn't do global set-up or + // tear-down when there is no test to run. + testing::GTEST_FLAG(filter) = "-*"; + Check(RunAllTests(env, NO_FAILURE) == 0, + "RUN_ALL_TESTS() should return zero, as there is no test to run."); + Check(!env->set_up_was_run(), + "The global set-up should not run, as there is no test to run."); + Check(!env->tear_down_was_run(), + "The global tear-down should not run, " + "as the global set-up was not run."); + + printf("PASS\n"); + return 0; +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_filter_unittest.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_filter_unittest.py new file mode 100755 index 000000000..0d1a77005 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_filter_unittest.py @@ -0,0 +1,633 @@ +#!/usr/bin/env python +# +# Copyright 2005 Google Inc. All Rights Reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Unit test for Google Test test filters. + +A user can specify which test(s) in a Google Test program to run via either +the GTEST_FILTER environment variable or the --gtest_filter flag. +This script tests such functionality by invoking +gtest_filter_unittest_ (a program written with Google Test) with different +environments and command line flags. + +Note that test sharding may also influence which tests are filtered. Therefore, +we test that here also. +""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import os +import re +import sets +import sys + +import gtest_test_utils + +# Constants. + +# Checks if this platform can pass empty environment variables to child +# processes. We set an env variable to an empty string and invoke a python +# script in a subprocess to print whether the variable is STILL in +# os.environ. We then use 'eval' to parse the child's output so that an +# exception is thrown if the input is anything other than 'True' nor 'False'. +os.environ['EMPTY_VAR'] = '' +child = gtest_test_utils.Subprocess( + [sys.executable, '-c', 'import os; print \'EMPTY_VAR\' in os.environ']) +CAN_PASS_EMPTY_ENV = eval(child.output) + + +# Check if this platform can unset environment variables in child processes. +# We set an env variable to a non-empty string, unset it, and invoke +# a python script in a subprocess to print whether the variable +# is NO LONGER in os.environ. +# We use 'eval' to parse the child's output so that an exception +# is thrown if the input is neither 'True' nor 'False'. +os.environ['UNSET_VAR'] = 'X' +del os.environ['UNSET_VAR'] +child = gtest_test_utils.Subprocess( + [sys.executable, '-c', 'import os; print \'UNSET_VAR\' not in os.environ']) +CAN_UNSET_ENV = eval(child.output) + + +# Checks if we should test with an empty filter. This doesn't +# make sense on platforms that cannot pass empty env variables (Win32) +# and on platforms that cannot unset variables (since we cannot tell +# the difference between "" and NULL -- Borland and Solaris < 5.10) +CAN_TEST_EMPTY_FILTER = (CAN_PASS_EMPTY_ENV and CAN_UNSET_ENV) + + +# The environment variable for specifying the test filters. +FILTER_ENV_VAR = 'GTEST_FILTER' + +# The environment variables for test sharding. +TOTAL_SHARDS_ENV_VAR = 'GTEST_TOTAL_SHARDS' +SHARD_INDEX_ENV_VAR = 'GTEST_SHARD_INDEX' +SHARD_STATUS_FILE_ENV_VAR = 'GTEST_SHARD_STATUS_FILE' + +# The command line flag for specifying the test filters. +FILTER_FLAG = 'gtest_filter' + +# The command line flag for including disabled tests. +ALSO_RUN_DISABED_TESTS_FLAG = 'gtest_also_run_disabled_tests' + +# Command to run the gtest_filter_unittest_ program. +COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_filter_unittest_') + +# Regex for determining whether parameterized tests are enabled in the binary. +PARAM_TEST_REGEX = re.compile(r'/ParamTest') + +# Regex for parsing test case names from Google Test's output. +TEST_CASE_REGEX = re.compile(r'^\[\-+\] \d+ tests? from (\w+(/\w+)?)') + +# Regex for parsing test names from Google Test's output. +TEST_REGEX = re.compile(r'^\[\s*RUN\s*\].*\.(\w+(/\w+)?)') + +# The command line flag to tell Google Test to output the list of tests it +# will run. +LIST_TESTS_FLAG = '--gtest_list_tests' + +# Indicates whether Google Test supports death tests. +SUPPORTS_DEATH_TESTS = 'HasDeathTest' in gtest_test_utils.Subprocess( + [COMMAND, LIST_TESTS_FLAG]).output + +# Full names of all tests in gtest_filter_unittests_. +PARAM_TESTS = [ + 'SeqP/ParamTest.TestX/0', + 'SeqP/ParamTest.TestX/1', + 'SeqP/ParamTest.TestY/0', + 'SeqP/ParamTest.TestY/1', + 'SeqQ/ParamTest.TestX/0', + 'SeqQ/ParamTest.TestX/1', + 'SeqQ/ParamTest.TestY/0', + 'SeqQ/ParamTest.TestY/1', + ] + +DISABLED_TESTS = [ + 'BarTest.DISABLED_TestFour', + 'BarTest.DISABLED_TestFive', + 'BazTest.DISABLED_TestC', + 'DISABLED_FoobarTest.Test1', + 'DISABLED_FoobarTest.DISABLED_Test2', + 'DISABLED_FoobarbazTest.TestA', + ] + +if SUPPORTS_DEATH_TESTS: + DEATH_TESTS = [ + 'HasDeathTest.Test1', + 'HasDeathTest.Test2', + ] +else: + DEATH_TESTS = [] + +# All the non-disabled tests. +ACTIVE_TESTS = [ + 'FooTest.Abc', + 'FooTest.Xyz', + + 'BarTest.TestOne', + 'BarTest.TestTwo', + 'BarTest.TestThree', + + 'BazTest.TestOne', + 'BazTest.TestA', + 'BazTest.TestB', + ] + DEATH_TESTS + PARAM_TESTS + +param_tests_present = None + +# Utilities. + +environ = os.environ.copy() + + +def SetEnvVar(env_var, value): + """Sets the env variable to 'value'; unsets it when 'value' is None.""" + + if value is not None: + environ[env_var] = value + elif env_var in environ: + del environ[env_var] + + +def RunAndReturnOutput(args = None): + """Runs the test program and returns its output.""" + + return gtest_test_utils.Subprocess([COMMAND] + (args or []), + env=environ).output + + +def RunAndExtractTestList(args = None): + """Runs the test program and returns its exit code and a list of tests run.""" + + p = gtest_test_utils.Subprocess([COMMAND] + (args or []), env=environ) + tests_run = [] + test_case = '' + test = '' + for line in p.output.split('\n'): + match = TEST_CASE_REGEX.match(line) + if match is not None: + test_case = match.group(1) + else: + match = TEST_REGEX.match(line) + if match is not None: + test = match.group(1) + tests_run.append(test_case + '.' + test) + return (tests_run, p.exit_code) + + +def InvokeWithModifiedEnv(extra_env, function, *args, **kwargs): + """Runs the given function and arguments in a modified environment.""" + try: + original_env = environ.copy() + environ.update(extra_env) + return function(*args, **kwargs) + finally: + environ.clear() + environ.update(original_env) + + +def RunWithSharding(total_shards, shard_index, command): + """Runs a test program shard and returns exit code and a list of tests run.""" + + extra_env = {SHARD_INDEX_ENV_VAR: str(shard_index), + TOTAL_SHARDS_ENV_VAR: str(total_shards)} + return InvokeWithModifiedEnv(extra_env, RunAndExtractTestList, command) + +# The unit test. + + +class GTestFilterUnitTest(gtest_test_utils.TestCase): + """Tests the env variable or the command line flag to filter tests.""" + + # Utilities. + + def AssertSetEqual(self, lhs, rhs): + """Asserts that two sets are equal.""" + + for elem in lhs: + self.assert_(elem in rhs, '%s in %s' % (elem, rhs)) + + for elem in rhs: + self.assert_(elem in lhs, '%s in %s' % (elem, lhs)) + + def AssertPartitionIsValid(self, set_var, list_of_sets): + """Asserts that list_of_sets is a valid partition of set_var.""" + + full_partition = [] + for slice_var in list_of_sets: + full_partition.extend(slice_var) + self.assertEqual(len(set_var), len(full_partition)) + self.assertEqual(sets.Set(set_var), sets.Set(full_partition)) + + def AdjustForParameterizedTests(self, tests_to_run): + """Adjust tests_to_run in case value parameterized tests are disabled.""" + + global param_tests_present + if not param_tests_present: + return list(sets.Set(tests_to_run) - sets.Set(PARAM_TESTS)) + else: + return tests_to_run + + def RunAndVerify(self, gtest_filter, tests_to_run): + """Checks that the binary runs correct set of tests for a given filter.""" + + tests_to_run = self.AdjustForParameterizedTests(tests_to_run) + + # First, tests using the environment variable. + + # Windows removes empty variables from the environment when passing it + # to a new process. This means it is impossible to pass an empty filter + # into a process using the environment variable. However, we can still + # test the case when the variable is not supplied (i.e., gtest_filter is + # None). + # pylint: disable-msg=C6403 + if CAN_TEST_EMPTY_FILTER or gtest_filter != '': + SetEnvVar(FILTER_ENV_VAR, gtest_filter) + tests_run = RunAndExtractTestList()[0] + SetEnvVar(FILTER_ENV_VAR, None) + self.AssertSetEqual(tests_run, tests_to_run) + # pylint: enable-msg=C6403 + + # Next, tests using the command line flag. + + if gtest_filter is None: + args = [] + else: + args = ['--%s=%s' % (FILTER_FLAG, gtest_filter)] + + tests_run = RunAndExtractTestList(args)[0] + self.AssertSetEqual(tests_run, tests_to_run) + + def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, + args=None, check_exit_0=False): + """Checks that binary runs correct tests for the given filter and shard. + + Runs all shards of gtest_filter_unittest_ with the given filter, and + verifies that the right set of tests were run. The union of tests run + on each shard should be identical to tests_to_run, without duplicates. + + Args: + gtest_filter: A filter to apply to the tests. + total_shards: A total number of shards to split test run into. + tests_to_run: A set of tests expected to run. + args : Arguments to pass to the to the test binary. + check_exit_0: When set to a true value, make sure that all shards + return 0. + """ + + tests_to_run = self.AdjustForParameterizedTests(tests_to_run) + + # Windows removes empty variables from the environment when passing it + # to a new process. This means it is impossible to pass an empty filter + # into a process using the environment variable. However, we can still + # test the case when the variable is not supplied (i.e., gtest_filter is + # None). + # pylint: disable-msg=C6403 + if CAN_TEST_EMPTY_FILTER or gtest_filter != '': + SetEnvVar(FILTER_ENV_VAR, gtest_filter) + partition = [] + for i in range(0, total_shards): + (tests_run, exit_code) = RunWithSharding(total_shards, i, args) + if check_exit_0: + self.assertEqual(0, exit_code) + partition.append(tests_run) + + self.AssertPartitionIsValid(tests_to_run, partition) + SetEnvVar(FILTER_ENV_VAR, None) + # pylint: enable-msg=C6403 + + def RunAndVerifyAllowingDisabled(self, gtest_filter, tests_to_run): + """Checks that the binary runs correct set of tests for the given filter. + + Runs gtest_filter_unittest_ with the given filter, and enables + disabled tests. Verifies that the right set of tests were run. + + Args: + gtest_filter: A filter to apply to the tests. + tests_to_run: A set of tests expected to run. + """ + + tests_to_run = self.AdjustForParameterizedTests(tests_to_run) + + # Construct the command line. + args = ['--%s' % ALSO_RUN_DISABED_TESTS_FLAG] + if gtest_filter is not None: + args.append('--%s=%s' % (FILTER_FLAG, gtest_filter)) + + tests_run = RunAndExtractTestList(args)[0] + self.AssertSetEqual(tests_run, tests_to_run) + + def setUp(self): + """Sets up test case. + + Determines whether value-parameterized tests are enabled in the binary and + sets the flags accordingly. + """ + + global param_tests_present + if param_tests_present is None: + param_tests_present = PARAM_TEST_REGEX.search( + RunAndReturnOutput()) is not None + + def testDefaultBehavior(self): + """Tests the behavior of not specifying the filter.""" + + self.RunAndVerify(None, ACTIVE_TESTS) + + def testDefaultBehaviorWithShards(self): + """Tests the behavior without the filter, with sharding enabled.""" + + self.RunAndVerifyWithSharding(None, 1, ACTIVE_TESTS) + self.RunAndVerifyWithSharding(None, 2, ACTIVE_TESTS) + self.RunAndVerifyWithSharding(None, len(ACTIVE_TESTS) - 1, ACTIVE_TESTS) + self.RunAndVerifyWithSharding(None, len(ACTIVE_TESTS), ACTIVE_TESTS) + self.RunAndVerifyWithSharding(None, len(ACTIVE_TESTS) + 1, ACTIVE_TESTS) + + def testEmptyFilter(self): + """Tests an empty filter.""" + + self.RunAndVerify('', []) + self.RunAndVerifyWithSharding('', 1, []) + self.RunAndVerifyWithSharding('', 2, []) + + def testBadFilter(self): + """Tests a filter that matches nothing.""" + + self.RunAndVerify('BadFilter', []) + self.RunAndVerifyAllowingDisabled('BadFilter', []) + + def testFullName(self): + """Tests filtering by full name.""" + + self.RunAndVerify('FooTest.Xyz', ['FooTest.Xyz']) + self.RunAndVerifyAllowingDisabled('FooTest.Xyz', ['FooTest.Xyz']) + self.RunAndVerifyWithSharding('FooTest.Xyz', 5, ['FooTest.Xyz']) + + def testUniversalFilters(self): + """Tests filters that match everything.""" + + self.RunAndVerify('*', ACTIVE_TESTS) + self.RunAndVerify('*.*', ACTIVE_TESTS) + self.RunAndVerifyWithSharding('*.*', len(ACTIVE_TESTS) - 3, ACTIVE_TESTS) + self.RunAndVerifyAllowingDisabled('*', ACTIVE_TESTS + DISABLED_TESTS) + self.RunAndVerifyAllowingDisabled('*.*', ACTIVE_TESTS + DISABLED_TESTS) + + def testFilterByTestCase(self): + """Tests filtering by test case name.""" + + self.RunAndVerify('FooTest.*', ['FooTest.Abc', 'FooTest.Xyz']) + + BAZ_TESTS = ['BazTest.TestOne', 'BazTest.TestA', 'BazTest.TestB'] + self.RunAndVerify('BazTest.*', BAZ_TESTS) + self.RunAndVerifyAllowingDisabled('BazTest.*', + BAZ_TESTS + ['BazTest.DISABLED_TestC']) + + def testFilterByTest(self): + """Tests filtering by test name.""" + + self.RunAndVerify('*.TestOne', ['BarTest.TestOne', 'BazTest.TestOne']) + + def testFilterDisabledTests(self): + """Select only the disabled tests to run.""" + + self.RunAndVerify('DISABLED_FoobarTest.Test1', []) + self.RunAndVerifyAllowingDisabled('DISABLED_FoobarTest.Test1', + ['DISABLED_FoobarTest.Test1']) + + self.RunAndVerify('*DISABLED_*', []) + self.RunAndVerifyAllowingDisabled('*DISABLED_*', DISABLED_TESTS) + + self.RunAndVerify('*.DISABLED_*', []) + self.RunAndVerifyAllowingDisabled('*.DISABLED_*', [ + 'BarTest.DISABLED_TestFour', + 'BarTest.DISABLED_TestFive', + 'BazTest.DISABLED_TestC', + 'DISABLED_FoobarTest.DISABLED_Test2', + ]) + + self.RunAndVerify('DISABLED_*', []) + self.RunAndVerifyAllowingDisabled('DISABLED_*', [ + 'DISABLED_FoobarTest.Test1', + 'DISABLED_FoobarTest.DISABLED_Test2', + 'DISABLED_FoobarbazTest.TestA', + ]) + + def testWildcardInTestCaseName(self): + """Tests using wildcard in the test case name.""" + + self.RunAndVerify('*a*.*', [ + 'BarTest.TestOne', + 'BarTest.TestTwo', + 'BarTest.TestThree', + + 'BazTest.TestOne', + 'BazTest.TestA', + 'BazTest.TestB', ] + DEATH_TESTS + PARAM_TESTS) + + def testWildcardInTestName(self): + """Tests using wildcard in the test name.""" + + self.RunAndVerify('*.*A*', ['FooTest.Abc', 'BazTest.TestA']) + + def testFilterWithoutDot(self): + """Tests a filter that has no '.' in it.""" + + self.RunAndVerify('*z*', [ + 'FooTest.Xyz', + + 'BazTest.TestOne', + 'BazTest.TestA', + 'BazTest.TestB', + ]) + + def testTwoPatterns(self): + """Tests filters that consist of two patterns.""" + + self.RunAndVerify('Foo*.*:*A*', [ + 'FooTest.Abc', + 'FooTest.Xyz', + + 'BazTest.TestA', + ]) + + # An empty pattern + a non-empty one + self.RunAndVerify(':*A*', ['FooTest.Abc', 'BazTest.TestA']) + + def testThreePatterns(self): + """Tests filters that consist of three patterns.""" + + self.RunAndVerify('*oo*:*A*:*One', [ + 'FooTest.Abc', + 'FooTest.Xyz', + + 'BarTest.TestOne', + + 'BazTest.TestOne', + 'BazTest.TestA', + ]) + + # The 2nd pattern is empty. + self.RunAndVerify('*oo*::*One', [ + 'FooTest.Abc', + 'FooTest.Xyz', + + 'BarTest.TestOne', + + 'BazTest.TestOne', + ]) + + # The last 2 patterns are empty. + self.RunAndVerify('*oo*::', [ + 'FooTest.Abc', + 'FooTest.Xyz', + ]) + + def testNegativeFilters(self): + self.RunAndVerify('*-BazTest.TestOne', [ + 'FooTest.Abc', + 'FooTest.Xyz', + + 'BarTest.TestOne', + 'BarTest.TestTwo', + 'BarTest.TestThree', + + 'BazTest.TestA', + 'BazTest.TestB', + ] + DEATH_TESTS + PARAM_TESTS) + + self.RunAndVerify('*-FooTest.Abc:BazTest.*', [ + 'FooTest.Xyz', + + 'BarTest.TestOne', + 'BarTest.TestTwo', + 'BarTest.TestThree', + ] + DEATH_TESTS + PARAM_TESTS) + + self.RunAndVerify('BarTest.*-BarTest.TestOne', [ + 'BarTest.TestTwo', + 'BarTest.TestThree', + ]) + + # Tests without leading '*'. + self.RunAndVerify('-FooTest.Abc:FooTest.Xyz:BazTest.*', [ + 'BarTest.TestOne', + 'BarTest.TestTwo', + 'BarTest.TestThree', + ] + DEATH_TESTS + PARAM_TESTS) + + # Value parameterized tests. + self.RunAndVerify('*/*', PARAM_TESTS) + + # Value parameterized tests filtering by the sequence name. + self.RunAndVerify('SeqP/*', [ + 'SeqP/ParamTest.TestX/0', + 'SeqP/ParamTest.TestX/1', + 'SeqP/ParamTest.TestY/0', + 'SeqP/ParamTest.TestY/1', + ]) + + # Value parameterized tests filtering by the test name. + self.RunAndVerify('*/0', [ + 'SeqP/ParamTest.TestX/0', + 'SeqP/ParamTest.TestY/0', + 'SeqQ/ParamTest.TestX/0', + 'SeqQ/ParamTest.TestY/0', + ]) + + def testFlagOverridesEnvVar(self): + """Tests that the filter flag overrides the filtering env. variable.""" + + SetEnvVar(FILTER_ENV_VAR, 'Foo*') + args = ['--%s=%s' % (FILTER_FLAG, '*One')] + tests_run = RunAndExtractTestList(args)[0] + SetEnvVar(FILTER_ENV_VAR, None) + + self.AssertSetEqual(tests_run, ['BarTest.TestOne', 'BazTest.TestOne']) + + def testShardStatusFileIsCreated(self): + """Tests that the shard file is created if specified in the environment.""" + + shard_status_file = os.path.join(gtest_test_utils.GetTempDir(), + 'shard_status_file') + self.assert_(not os.path.exists(shard_status_file)) + + extra_env = {SHARD_STATUS_FILE_ENV_VAR: shard_status_file} + try: + InvokeWithModifiedEnv(extra_env, RunAndReturnOutput) + finally: + self.assert_(os.path.exists(shard_status_file)) + os.remove(shard_status_file) + + def testShardStatusFileIsCreatedWithListTests(self): + """Tests that the shard file is created with the "list_tests" flag.""" + + shard_status_file = os.path.join(gtest_test_utils.GetTempDir(), + 'shard_status_file2') + self.assert_(not os.path.exists(shard_status_file)) + + extra_env = {SHARD_STATUS_FILE_ENV_VAR: shard_status_file} + try: + output = InvokeWithModifiedEnv(extra_env, + RunAndReturnOutput, + [LIST_TESTS_FLAG]) + finally: + # This assertion ensures that Google Test enumerated the tests as + # opposed to running them. + self.assert_('[==========]' not in output, + 'Unexpected output during test enumeration.\n' + 'Please ensure that LIST_TESTS_FLAG is assigned the\n' + 'correct flag value for listing Google Test tests.') + + self.assert_(os.path.exists(shard_status_file)) + os.remove(shard_status_file) + + if SUPPORTS_DEATH_TESTS: + def testShardingWorksWithDeathTests(self): + """Tests integration with death tests and sharding.""" + + gtest_filter = 'HasDeathTest.*:SeqP/*' + expected_tests = [ + 'HasDeathTest.Test1', + 'HasDeathTest.Test2', + + 'SeqP/ParamTest.TestX/0', + 'SeqP/ParamTest.TestX/1', + 'SeqP/ParamTest.TestY/0', + 'SeqP/ParamTest.TestY/1', + ] + + for flag in ['--gtest_death_test_style=threadsafe', + '--gtest_death_test_style=fast']: + self.RunAndVerifyWithSharding(gtest_filter, 3, expected_tests, + check_exit_0=True, args=[flag]) + self.RunAndVerifyWithSharding(gtest_filter, 5, expected_tests, + check_exit_0=True, args=[flag]) + +if __name__ == '__main__': + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_filter_unittest_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_filter_unittest_.cc new file mode 100644 index 000000000..77deffc38 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_filter_unittest_.cc @@ -0,0 +1,140 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Unit test for Google Test test filters. +// +// A user can specify which test(s) in a Google Test program to run via +// either the GTEST_FILTER environment variable or the --gtest_filter +// flag. This is used for testing such functionality. +// +// The program will be invoked from a Python unit test. Don't run it +// directly. + +#include "gtest/gtest.h" + +namespace { + +// Test case FooTest. + +class FooTest : public testing::Test { +}; + +TEST_F(FooTest, Abc) { +} + +TEST_F(FooTest, Xyz) { + FAIL() << "Expected failure."; +} + +// Test case BarTest. + +TEST(BarTest, TestOne) { +} + +TEST(BarTest, TestTwo) { +} + +TEST(BarTest, TestThree) { +} + +TEST(BarTest, DISABLED_TestFour) { + FAIL() << "Expected failure."; +} + +TEST(BarTest, DISABLED_TestFive) { + FAIL() << "Expected failure."; +} + +// Test case BazTest. + +TEST(BazTest, TestOne) { + FAIL() << "Expected failure."; +} + +TEST(BazTest, TestA) { +} + +TEST(BazTest, TestB) { +} + +TEST(BazTest, DISABLED_TestC) { + FAIL() << "Expected failure."; +} + +// Test case HasDeathTest + +TEST(HasDeathTest, Test1) { + EXPECT_DEATH_IF_SUPPORTED(exit(1), ".*"); +} + +// We need at least two death tests to make sure that the all death tests +// aren't on the first shard. +TEST(HasDeathTest, Test2) { + EXPECT_DEATH_IF_SUPPORTED(exit(1), ".*"); +} + +// Test case FoobarTest + +TEST(DISABLED_FoobarTest, Test1) { + FAIL() << "Expected failure."; +} + +TEST(DISABLED_FoobarTest, DISABLED_Test2) { + FAIL() << "Expected failure."; +} + +// Test case FoobarbazTest + +TEST(DISABLED_FoobarbazTest, TestA) { + FAIL() << "Expected failure."; +} + +#if GTEST_HAS_PARAM_TEST +class ParamTest : public testing::TestWithParam { +}; + +TEST_P(ParamTest, TestX) { +} + +TEST_P(ParamTest, TestY) { +} + +INSTANTIATE_TEST_CASE_P(SeqP, ParamTest, testing::Values(1, 2)); +INSTANTIATE_TEST_CASE_P(SeqQ, ParamTest, testing::Values(5, 6)); +#endif // GTEST_HAS_PARAM_TEST + +} // namespace + +int main(int argc, char **argv) { + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_help_test.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_help_test.py new file mode 100755 index 000000000..093c838d9 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_help_test.py @@ -0,0 +1,172 @@ +#!/usr/bin/env python +# +# Copyright 2009, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Tests the --help flag of Google C++ Testing Framework. + +SYNOPSIS + gtest_help_test.py --build_dir=BUILD/DIR + # where BUILD/DIR contains the built gtest_help_test_ file. + gtest_help_test.py +""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import os +import re +import gtest_test_utils + + +IS_LINUX = os.name == 'posix' and os.uname()[0] == 'Linux' +IS_WINDOWS = os.name == 'nt' + +PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath('gtest_help_test_') +FLAG_PREFIX = '--gtest_' +DEATH_TEST_STYLE_FLAG = FLAG_PREFIX + 'death_test_style' +STREAM_RESULT_TO_FLAG = FLAG_PREFIX + 'stream_result_to' +UNKNOWN_FLAG = FLAG_PREFIX + 'unknown_flag_for_testing' +LIST_TESTS_FLAG = FLAG_PREFIX + 'list_tests' +INCORRECT_FLAG_VARIANTS = [re.sub('^--', '-', LIST_TESTS_FLAG), + re.sub('^--', '/', LIST_TESTS_FLAG), + re.sub('_', '-', LIST_TESTS_FLAG)] +INTERNAL_FLAG_FOR_TESTING = FLAG_PREFIX + 'internal_flag_for_testing' + +SUPPORTS_DEATH_TESTS = "DeathTest" in gtest_test_utils.Subprocess( + [PROGRAM_PATH, LIST_TESTS_FLAG]).output + +# The help message must match this regex. +HELP_REGEX = re.compile( + FLAG_PREFIX + r'list_tests.*' + + FLAG_PREFIX + r'filter=.*' + + FLAG_PREFIX + r'also_run_disabled_tests.*' + + FLAG_PREFIX + r'repeat=.*' + + FLAG_PREFIX + r'shuffle.*' + + FLAG_PREFIX + r'random_seed=.*' + + FLAG_PREFIX + r'color=.*' + + FLAG_PREFIX + r'print_time.*' + + FLAG_PREFIX + r'output=.*' + + FLAG_PREFIX + r'break_on_failure.*' + + FLAG_PREFIX + r'throw_on_failure.*' + + FLAG_PREFIX + r'catch_exceptions=0.*', + re.DOTALL) + + +def RunWithFlag(flag): + """Runs gtest_help_test_ with the given flag. + + Returns: + the exit code and the text output as a tuple. + Args: + flag: the command-line flag to pass to gtest_help_test_, or None. + """ + + if flag is None: + command = [PROGRAM_PATH] + else: + command = [PROGRAM_PATH, flag] + child = gtest_test_utils.Subprocess(command) + return child.exit_code, child.output + + +class GTestHelpTest(gtest_test_utils.TestCase): + """Tests the --help flag and its equivalent forms.""" + + def TestHelpFlag(self, flag): + """Verifies correct behavior when help flag is specified. + + The right message must be printed and the tests must + skipped when the given flag is specified. + + Args: + flag: A flag to pass to the binary or None. + """ + + exit_code, output = RunWithFlag(flag) + self.assertEquals(0, exit_code) + self.assert_(HELP_REGEX.search(output), output) + + if IS_LINUX: + self.assert_(STREAM_RESULT_TO_FLAG in output, output) + else: + self.assert_(STREAM_RESULT_TO_FLAG not in output, output) + + if SUPPORTS_DEATH_TESTS and not IS_WINDOWS: + self.assert_(DEATH_TEST_STYLE_FLAG in output, output) + else: + self.assert_(DEATH_TEST_STYLE_FLAG not in output, output) + + def TestNonHelpFlag(self, flag): + """Verifies correct behavior when no help flag is specified. + + Verifies that when no help flag is specified, the tests are run + and the help message is not printed. + + Args: + flag: A flag to pass to the binary or None. + """ + + exit_code, output = RunWithFlag(flag) + self.assert_(exit_code != 0) + self.assert_(not HELP_REGEX.search(output), output) + + def testPrintsHelpWithFullFlag(self): + self.TestHelpFlag('--help') + + def testPrintsHelpWithShortFlag(self): + self.TestHelpFlag('-h') + + def testPrintsHelpWithQuestionFlag(self): + self.TestHelpFlag('-?') + + def testPrintsHelpWithWindowsStyleQuestionFlag(self): + self.TestHelpFlag('/?') + + def testPrintsHelpWithUnrecognizedGoogleTestFlag(self): + self.TestHelpFlag(UNKNOWN_FLAG) + + def testPrintsHelpWithIncorrectFlagStyle(self): + for incorrect_flag in INCORRECT_FLAG_VARIANTS: + self.TestHelpFlag(incorrect_flag) + + def testRunsTestsWithoutHelpFlag(self): + """Verifies that when no help flag is specified, the tests are run + and the help message is not printed.""" + + self.TestNonHelpFlag(None) + + def testRunsTestsWithGtestInternalFlag(self): + """Verifies that the tests are run and no help message is printed when + a flag starting with Google Test prefix and 'internal_' is supplied.""" + + self.TestNonHelpFlag(INTERNAL_FLAG_FOR_TESTING) + + +if __name__ == '__main__': + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_help_test_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_help_test_.cc new file mode 100644 index 000000000..31f78c244 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_help_test_.cc @@ -0,0 +1,46 @@ +// Copyright 2009, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// This program is meant to be run by gtest_help_test.py. Do not run +// it directly. + +#include "gtest/gtest.h" + +// When a help flag is specified, this program should skip the tests +// and exit with 0; otherwise the following test will be executed, +// causing this program to exit with a non-zero code. +TEST(HelpFlagTest, ShouldNotBeRun) { + ASSERT_TRUE(false) << "Tests shouldn't be run when --help is specified."; +} + +#if GTEST_HAS_DEATH_TEST +TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {} +#endif diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_list_tests_unittest.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_list_tests_unittest.py new file mode 100755 index 000000000..925b09d9c --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_list_tests_unittest.py @@ -0,0 +1,207 @@ +#!/usr/bin/env python +# +# Copyright 2006, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Unit test for Google Test's --gtest_list_tests flag. + +A user can ask Google Test to list all tests by specifying the +--gtest_list_tests flag. This script tests such functionality +by invoking gtest_list_tests_unittest_ (a program written with +Google Test) the command line flags. +""" + +__author__ = 'phanna@google.com (Patrick Hanna)' + +import gtest_test_utils +import re + + +# Constants. + +# The command line flag for enabling/disabling listing all tests. +LIST_TESTS_FLAG = 'gtest_list_tests' + +# Path to the gtest_list_tests_unittest_ program. +EXE_PATH = gtest_test_utils.GetTestExecutablePath('gtest_list_tests_unittest_') + +# The expected output when running gtest_list_tests_unittest_ with +# --gtest_list_tests +EXPECTED_OUTPUT_NO_FILTER_RE = re.compile(r"""FooDeathTest\. + Test1 +Foo\. + Bar1 + Bar2 + DISABLED_Bar3 +Abc\. + Xyz + Def +FooBar\. + Baz +FooTest\. + Test1 + DISABLED_Test2 + Test3 +TypedTest/0\. # TypeParam = (VeryLo{245}|class VeryLo{239})\.\.\. + TestA + TestB +TypedTest/1\. # TypeParam = int\s*\* + TestA + TestB +TypedTest/2\. # TypeParam = .*MyArray + TestA + TestB +My/TypeParamTest/0\. # TypeParam = (VeryLo{245}|class VeryLo{239})\.\.\. + TestA + TestB +My/TypeParamTest/1\. # TypeParam = int\s*\* + TestA + TestB +My/TypeParamTest/2\. # TypeParam = .*MyArray + TestA + TestB +MyInstantiation/ValueParamTest\. + TestA/0 # GetParam\(\) = one line + TestA/1 # GetParam\(\) = two\\nlines + TestA/2 # GetParam\(\) = a very\\nlo{241}\.\.\. + TestB/0 # GetParam\(\) = one line + TestB/1 # GetParam\(\) = two\\nlines + TestB/2 # GetParam\(\) = a very\\nlo{241}\.\.\. +""") + +# The expected output when running gtest_list_tests_unittest_ with +# --gtest_list_tests and --gtest_filter=Foo*. +EXPECTED_OUTPUT_FILTER_FOO_RE = re.compile(r"""FooDeathTest\. + Test1 +Foo\. + Bar1 + Bar2 + DISABLED_Bar3 +FooBar\. + Baz +FooTest\. + Test1 + DISABLED_Test2 + Test3 +""") + +# Utilities. + + +def Run(args): + """Runs gtest_list_tests_unittest_ and returns the list of tests printed.""" + + return gtest_test_utils.Subprocess([EXE_PATH] + args, + capture_stderr=False).output + + +# The unit test. + +class GTestListTestsUnitTest(gtest_test_utils.TestCase): + """Tests using the --gtest_list_tests flag to list all tests.""" + + def RunAndVerify(self, flag_value, expected_output_re, other_flag): + """Runs gtest_list_tests_unittest_ and verifies that it prints + the correct tests. + + Args: + flag_value: value of the --gtest_list_tests flag; + None if the flag should not be present. + expected_output_re: regular expression that matches the expected + output after running command; + other_flag: a different flag to be passed to command + along with gtest_list_tests; + None if the flag should not be present. + """ + + if flag_value is None: + flag = '' + flag_expression = 'not set' + elif flag_value == '0': + flag = '--%s=0' % LIST_TESTS_FLAG + flag_expression = '0' + else: + flag = '--%s' % LIST_TESTS_FLAG + flag_expression = '1' + + args = [flag] + + if other_flag is not None: + args += [other_flag] + + output = Run(args) + + if expected_output_re: + self.assert_( + expected_output_re.match(output), + ('when %s is %s, the output of "%s" is "%s",\n' + 'which does not match regex "%s"' % + (LIST_TESTS_FLAG, flag_expression, ' '.join(args), output, + expected_output_re.pattern))) + else: + self.assert_( + not EXPECTED_OUTPUT_NO_FILTER_RE.match(output), + ('when %s is %s, the output of "%s" is "%s"'% + (LIST_TESTS_FLAG, flag_expression, ' '.join(args), output))) + + def testDefaultBehavior(self): + """Tests the behavior of the default mode.""" + + self.RunAndVerify(flag_value=None, + expected_output_re=None, + other_flag=None) + + def testFlag(self): + """Tests using the --gtest_list_tests flag.""" + + self.RunAndVerify(flag_value='0', + expected_output_re=None, + other_flag=None) + self.RunAndVerify(flag_value='1', + expected_output_re=EXPECTED_OUTPUT_NO_FILTER_RE, + other_flag=None) + + def testOverrideNonFilterFlags(self): + """Tests that --gtest_list_tests overrides the non-filter flags.""" + + self.RunAndVerify(flag_value='1', + expected_output_re=EXPECTED_OUTPUT_NO_FILTER_RE, + other_flag='--gtest_break_on_failure') + + def testWithFilterFlags(self): + """Tests that --gtest_list_tests takes into account the + --gtest_filter flag.""" + + self.RunAndVerify(flag_value='1', + expected_output_re=EXPECTED_OUTPUT_FILTER_FOO_RE, + other_flag='--gtest_filter=Foo*') + + +if __name__ == '__main__': + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_list_tests_unittest_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_list_tests_unittest_.cc new file mode 100644 index 000000000..907c176ba --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_list_tests_unittest_.cc @@ -0,0 +1,157 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: phanna@google.com (Patrick Hanna) + +// Unit test for Google Test's --gtest_list_tests flag. +// +// A user can ask Google Test to list all tests that will run +// so that when using a filter, a user will know what +// tests to look for. The tests will not be run after listing. +// +// This program will be invoked from a Python unit test. +// Don't run it directly. + +#include "gtest/gtest.h" + +// Several different test cases and tests that will be listed. +TEST(Foo, Bar1) { +} + +TEST(Foo, Bar2) { +} + +TEST(Foo, DISABLED_Bar3) { +} + +TEST(Abc, Xyz) { +} + +TEST(Abc, Def) { +} + +TEST(FooBar, Baz) { +} + +class FooTest : public testing::Test { +}; + +TEST_F(FooTest, Test1) { +} + +TEST_F(FooTest, DISABLED_Test2) { +} + +TEST_F(FooTest, Test3) { +} + +TEST(FooDeathTest, Test1) { +} + +// A group of value-parameterized tests. + +class MyType { + public: + explicit MyType(const std::string& a_value) : value_(a_value) {} + + const std::string& value() const { return value_; } + + private: + std::string value_; +}; + +// Teaches Google Test how to print a MyType. +void PrintTo(const MyType& x, std::ostream* os) { + *os << x.value(); +} + +class ValueParamTest : public testing::TestWithParam { +}; + +TEST_P(ValueParamTest, TestA) { +} + +TEST_P(ValueParamTest, TestB) { +} + +INSTANTIATE_TEST_CASE_P( + MyInstantiation, ValueParamTest, + testing::Values(MyType("one line"), + MyType("two\nlines"), + MyType("a very\nloooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong line"))); // NOLINT + +// A group of typed tests. + +// A deliberately long type name for testing the line-truncating +// behavior when printing a type parameter. +class VeryLoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooogName { // NOLINT +}; + +template +class TypedTest : public testing::Test { +}; + +template +class MyArray { +}; + +typedef testing::Types > MyTypes; + +TYPED_TEST_CASE(TypedTest, MyTypes); + +TYPED_TEST(TypedTest, TestA) { +} + +TYPED_TEST(TypedTest, TestB) { +} + +// A group of type-parameterized tests. + +template +class TypeParamTest : public testing::Test { +}; + +TYPED_TEST_CASE_P(TypeParamTest); + +TYPED_TEST_P(TypeParamTest, TestA) { +} + +TYPED_TEST_P(TypeParamTest, TestB) { +} + +REGISTER_TYPED_TEST_CASE_P(TypeParamTest, TestA, TestB); + +INSTANTIATE_TYPED_TEST_CASE_P(My, TypeParamTest, MyTypes); + +int main(int argc, char **argv) { + ::testing::InitGoogleTest(&argc, argv); + + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_main_unittest.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_main_unittest.cc new file mode 100644 index 000000000..ecd9bb876 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_main_unittest.cc @@ -0,0 +1,45 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#include "gtest/gtest.h" + +// Tests that we don't have to define main() when we link to +// gtest_main instead of gtest. + +namespace { + +TEST(GTestMainTest, ShouldSucceed) { +} + +} // namespace + +// We are using the main() function defined in src/gtest_main.cc, so +// we don't define it here. diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_no_test_unittest.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_no_test_unittest.cc new file mode 100644 index 000000000..292599af8 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_no_test_unittest.cc @@ -0,0 +1,56 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// Tests that a Google Test program that has no test defined can run +// successfully. +// +// Author: wan@google.com (Zhanyong Wan) + +#include "gtest/gtest.h" + +int main(int argc, char **argv) { + testing::InitGoogleTest(&argc, argv); + + // An ad-hoc assertion outside of all tests. + // + // This serves three purposes: + // + // 1. It verifies that an ad-hoc assertion can be executed even if + // no test is defined. + // 2. It verifies that a failed ad-hoc assertion causes the test + // program to fail. + // 3. We had a bug where the XML output won't be generated if an + // assertion is executed before RUN_ALL_TESTS() is called, even + // though --gtest_output=xml is specified. This makes sure the + // bug is fixed and doesn't regress. + EXPECT_EQ(1, 2); + + // The above EXPECT_EQ() should cause RUN_ALL_TESTS() to return non-zero. + return RUN_ALL_TESTS() ? 0 : 1; +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_output_test.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_output_test.py new file mode 100755 index 000000000..f409e2a78 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_output_test.py @@ -0,0 +1,335 @@ +#!/usr/bin/env python +# +# Copyright 2008, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Tests the text output of Google C++ Testing Framework. + +SYNOPSIS + gtest_output_test.py --build_dir=BUILD/DIR --gengolden + # where BUILD/DIR contains the built gtest_output_test_ file. + gtest_output_test.py --gengolden + gtest_output_test.py +""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import os +import re +import sys +import gtest_test_utils + + +# The flag for generating the golden file +GENGOLDEN_FLAG = '--gengolden' +CATCH_EXCEPTIONS_ENV_VAR_NAME = 'GTEST_CATCH_EXCEPTIONS' + +IS_WINDOWS = os.name == 'nt' + +# TODO(vladl@google.com): remove the _lin suffix. +GOLDEN_NAME = 'gtest_output_test_golden_lin.txt' + +PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath('gtest_output_test_') + +# At least one command we exercise must not have the +# --gtest_internal_skip_environment_and_ad_hoc_tests flag. +COMMAND_LIST_TESTS = ({}, [PROGRAM_PATH, '--gtest_list_tests']) +COMMAND_WITH_COLOR = ({}, [PROGRAM_PATH, '--gtest_color=yes']) +COMMAND_WITH_TIME = ({}, [PROGRAM_PATH, + '--gtest_print_time', + '--gtest_internal_skip_environment_and_ad_hoc_tests', + '--gtest_filter=FatalFailureTest.*:LoggingTest.*']) +COMMAND_WITH_DISABLED = ( + {}, [PROGRAM_PATH, + '--gtest_also_run_disabled_tests', + '--gtest_internal_skip_environment_and_ad_hoc_tests', + '--gtest_filter=*DISABLED_*']) +COMMAND_WITH_SHARDING = ( + {'GTEST_SHARD_INDEX': '1', 'GTEST_TOTAL_SHARDS': '2'}, + [PROGRAM_PATH, + '--gtest_internal_skip_environment_and_ad_hoc_tests', + '--gtest_filter=PassingTest.*']) + +GOLDEN_PATH = os.path.join(gtest_test_utils.GetSourceDir(), GOLDEN_NAME) + + +def ToUnixLineEnding(s): + """Changes all Windows/Mac line endings in s to UNIX line endings.""" + + return s.replace('\r\n', '\n').replace('\r', '\n') + + +def RemoveLocations(test_output): + """Removes all file location info from a Google Test program's output. + + Args: + test_output: the output of a Google Test program. + + Returns: + output with all file location info (in the form of + 'DIRECTORY/FILE_NAME:LINE_NUMBER: 'or + 'DIRECTORY\\FILE_NAME(LINE_NUMBER): ') replaced by + 'FILE_NAME:#: '. + """ + + return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output) + + +def RemoveStackTraceDetails(output): + """Removes all stack traces from a Google Test program's output.""" + + # *? means "find the shortest string that matches". + return re.sub(r'Stack trace:(.|\n)*?\n\n', + 'Stack trace: (omitted)\n\n', output) + + +def RemoveStackTraces(output): + """Removes all traces of stack traces from a Google Test program's output.""" + + # *? means "find the shortest string that matches". + return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output) + + +def RemoveTime(output): + """Removes all time information from a Google Test program's output.""" + + return re.sub(r'\(\d+ ms', '(? ms', output) + + +def RemoveTypeInfoDetails(test_output): + """Removes compiler-specific type info from Google Test program's output. + + Args: + test_output: the output of a Google Test program. + + Returns: + output with type information normalized to canonical form. + """ + + # some compilers output the name of type 'unsigned int' as 'unsigned' + return re.sub(r'unsigned int', 'unsigned', test_output) + + +def NormalizeToCurrentPlatform(test_output): + """Normalizes platform specific output details for easier comparison.""" + + if IS_WINDOWS: + # Removes the color information that is not present on Windows. + test_output = re.sub('\x1b\\[(0;3\d)?m', '', test_output) + # Changes failure message headers into the Windows format. + test_output = re.sub(r': Failure\n', r': error: ', test_output) + # Changes file(line_number) to file:line_number. + test_output = re.sub(r'((\w|\.)+)\((\d+)\):', r'\1:\3:', test_output) + + return test_output + + +def RemoveTestCounts(output): + """Removes test counts from a Google Test program's output.""" + + output = re.sub(r'\d+ tests?, listed below', + '? tests, listed below', output) + output = re.sub(r'\d+ FAILED TESTS', + '? FAILED TESTS', output) + output = re.sub(r'\d+ tests? from \d+ test cases?', + '? tests from ? test cases', output) + output = re.sub(r'\d+ tests? from ([a-zA-Z_])', + r'? tests from \1', output) + return re.sub(r'\d+ tests?\.', '? tests.', output) + + +def RemoveMatchingTests(test_output, pattern): + """Removes output of specified tests from a Google Test program's output. + + This function strips not only the beginning and the end of a test but also + all output in between. + + Args: + test_output: A string containing the test output. + pattern: A regex string that matches names of test cases or + tests to remove. + + Returns: + Contents of test_output with tests whose names match pattern removed. + """ + + test_output = re.sub( + r'.*\[ RUN \] .*%s(.|\n)*?\[( FAILED | OK )\] .*%s.*\n' % ( + pattern, pattern), + '', + test_output) + return re.sub(r'.*%s.*\n' % pattern, '', test_output) + + +def NormalizeOutput(output): + """Normalizes output (the output of gtest_output_test_.exe).""" + + output = ToUnixLineEnding(output) + output = RemoveLocations(output) + output = RemoveStackTraceDetails(output) + output = RemoveTime(output) + return output + + +def GetShellCommandOutput(env_cmd): + """Runs a command in a sub-process, and returns its output in a string. + + Args: + env_cmd: The shell command. A 2-tuple where element 0 is a dict of extra + environment variables to set, and element 1 is a string with + the command and any flags. + + Returns: + A string with the command's combined standard and diagnostic output. + """ + + # Spawns cmd in a sub-process, and gets its standard I/O file objects. + # Set and save the environment properly. + environ = os.environ.copy() + environ.update(env_cmd[0]) + p = gtest_test_utils.Subprocess(env_cmd[1], env=environ) + + return p.output + + +def GetCommandOutput(env_cmd): + """Runs a command and returns its output with all file location + info stripped off. + + Args: + env_cmd: The shell command. A 2-tuple where element 0 is a dict of extra + environment variables to set, and element 1 is a string with + the command and any flags. + """ + + # Disables exception pop-ups on Windows. + environ, cmdline = env_cmd + environ = dict(environ) # Ensures we are modifying a copy. + environ[CATCH_EXCEPTIONS_ENV_VAR_NAME] = '1' + return NormalizeOutput(GetShellCommandOutput((environ, cmdline))) + + +def GetOutputOfAllCommands(): + """Returns concatenated output from several representative commands.""" + + return (GetCommandOutput(COMMAND_WITH_COLOR) + + GetCommandOutput(COMMAND_WITH_TIME) + + GetCommandOutput(COMMAND_WITH_DISABLED) + + GetCommandOutput(COMMAND_WITH_SHARDING)) + + +test_list = GetShellCommandOutput(COMMAND_LIST_TESTS) +SUPPORTS_DEATH_TESTS = 'DeathTest' in test_list +SUPPORTS_TYPED_TESTS = 'TypedTest' in test_list +SUPPORTS_THREADS = 'ExpectFailureWithThreadsTest' in test_list +SUPPORTS_STACK_TRACES = False + +CAN_GENERATE_GOLDEN_FILE = (SUPPORTS_DEATH_TESTS and + SUPPORTS_TYPED_TESTS and + SUPPORTS_THREADS) + + +class GTestOutputTest(gtest_test_utils.TestCase): + def RemoveUnsupportedTests(self, test_output): + if not SUPPORTS_DEATH_TESTS: + test_output = RemoveMatchingTests(test_output, 'DeathTest') + if not SUPPORTS_TYPED_TESTS: + test_output = RemoveMatchingTests(test_output, 'TypedTest') + test_output = RemoveMatchingTests(test_output, 'TypedDeathTest') + test_output = RemoveMatchingTests(test_output, 'TypeParamDeathTest') + if not SUPPORTS_THREADS: + test_output = RemoveMatchingTests(test_output, + 'ExpectFailureWithThreadsTest') + test_output = RemoveMatchingTests(test_output, + 'ScopedFakeTestPartResultReporterTest') + test_output = RemoveMatchingTests(test_output, + 'WorksConcurrently') + if not SUPPORTS_STACK_TRACES: + test_output = RemoveStackTraces(test_output) + + return test_output + + def testOutput(self): + output = GetOutputOfAllCommands() + + golden_file = open(GOLDEN_PATH, 'rb') + # A mis-configured source control system can cause \r appear in EOL + # sequences when we read the golden file irrespective of an operating + # system used. Therefore, we need to strip those \r's from newlines + # unconditionally. + golden = ToUnixLineEnding(golden_file.read()) + golden_file.close() + + # We want the test to pass regardless of certain features being + # supported or not. + + # We still have to remove type name specifics in all cases. + normalized_actual = RemoveTypeInfoDetails(output) + normalized_golden = RemoveTypeInfoDetails(golden) + + if CAN_GENERATE_GOLDEN_FILE: + self.assertEqual(normalized_golden, normalized_actual) + else: + normalized_actual = NormalizeToCurrentPlatform( + RemoveTestCounts(normalized_actual)) + normalized_golden = NormalizeToCurrentPlatform( + RemoveTestCounts(self.RemoveUnsupportedTests(normalized_golden))) + + # This code is very handy when debugging golden file differences: + if os.getenv('DEBUG_GTEST_OUTPUT_TEST'): + open(os.path.join( + gtest_test_utils.GetSourceDir(), + '_gtest_output_test_normalized_actual.txt'), 'wb').write( + normalized_actual) + open(os.path.join( + gtest_test_utils.GetSourceDir(), + '_gtest_output_test_normalized_golden.txt'), 'wb').write( + normalized_golden) + + self.assertEqual(normalized_golden, normalized_actual) + + +if __name__ == '__main__': + if sys.argv[1:] == [GENGOLDEN_FLAG]: + if CAN_GENERATE_GOLDEN_FILE: + output = GetOutputOfAllCommands() + golden_file = open(GOLDEN_PATH, 'wb') + golden_file.write(output) + golden_file.close() + else: + message = ( + """Unable to write a golden file when compiled in an environment +that does not support all the required features (death tests, typed tests, +and multiple threads). Please generate the golden file using a binary built +with those features enabled.""") + + sys.stderr.write(message) + sys.exit(1) + else: + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_output_test_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_output_test_.cc new file mode 100644 index 000000000..07ab633d4 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_output_test_.cc @@ -0,0 +1,1034 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// The purpose of this file is to generate Google Test output under +// various conditions. The output will then be verified by +// gtest_output_test.py to ensure that Google Test generates the +// desired messages. Therefore, most tests in this file are MEANT TO +// FAIL. +// +// Author: wan@google.com (Zhanyong Wan) + +#include "gtest/gtest-spi.h" +#include "gtest/gtest.h" + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +#include + +#if GTEST_IS_THREADSAFE +using testing::ScopedFakeTestPartResultReporter; +using testing::TestPartResultArray; + +using testing::internal::Notification; +using testing::internal::ThreadWithParam; +#endif + +namespace posix = ::testing::internal::posix; +using testing::internal::scoped_ptr; + +// Tests catching fatal failures. + +// A subroutine used by the following test. +void TestEq1(int x) { + ASSERT_EQ(1, x); +} + +// This function calls a test subroutine, catches the fatal failure it +// generates, and then returns early. +void TryTestSubroutine() { + // Calls a subrountine that yields a fatal failure. + TestEq1(2); + + // Catches the fatal failure and aborts the test. + // + // The testing::Test:: prefix is necessary when calling + // HasFatalFailure() outside of a TEST, TEST_F, or test fixture. + if (testing::Test::HasFatalFailure()) return; + + // If we get here, something is wrong. + FAIL() << "This should never be reached."; +} + +TEST(PassingTest, PassingTest1) { +} + +TEST(PassingTest, PassingTest2) { +} + +// Tests that parameters of failing parameterized tests are printed in the +// failing test summary. +class FailingParamTest : public testing::TestWithParam {}; + +TEST_P(FailingParamTest, Fails) { + EXPECT_EQ(1, GetParam()); +} + +// This generates a test which will fail. Google Test is expected to print +// its parameter when it outputs the list of all failed tests. +INSTANTIATE_TEST_CASE_P(PrintingFailingParams, + FailingParamTest, + testing::Values(2)); + +static const char kGoldenString[] = "\"Line\0 1\"\nLine 2"; + +TEST(NonfatalFailureTest, EscapesStringOperands) { + std::string actual = "actual \"string\""; + EXPECT_EQ(kGoldenString, actual); + + const char* golden = kGoldenString; + EXPECT_EQ(golden, actual); +} + +// Tests catching a fatal failure in a subroutine. +TEST(FatalFailureTest, FatalFailureInSubroutine) { + printf("(expecting a failure that x should be 1)\n"); + + TryTestSubroutine(); +} + +// Tests catching a fatal failure in a nested subroutine. +TEST(FatalFailureTest, FatalFailureInNestedSubroutine) { + printf("(expecting a failure that x should be 1)\n"); + + // Calls a subrountine that yields a fatal failure. + TryTestSubroutine(); + + // Catches the fatal failure and aborts the test. + // + // When calling HasFatalFailure() inside a TEST, TEST_F, or test + // fixture, the testing::Test:: prefix is not needed. + if (HasFatalFailure()) return; + + // If we get here, something is wrong. + FAIL() << "This should never be reached."; +} + +// Tests HasFatalFailure() after a failed EXPECT check. +TEST(FatalFailureTest, NonfatalFailureInSubroutine) { + printf("(expecting a failure on false)\n"); + EXPECT_TRUE(false); // Generates a nonfatal failure + ASSERT_FALSE(HasFatalFailure()); // This should succeed. +} + +// Tests interleaving user logging and Google Test assertions. +TEST(LoggingTest, InterleavingLoggingAndAssertions) { + static const int a[4] = { + 3, 9, 2, 6 + }; + + printf("(expecting 2 failures on (3) >= (a[i]))\n"); + for (int i = 0; i < static_cast(sizeof(a)/sizeof(*a)); i++) { + printf("i == %d\n", i); + EXPECT_GE(3, a[i]); + } +} + +// Tests the SCOPED_TRACE macro. + +// A helper function for testing SCOPED_TRACE. +void SubWithoutTrace(int n) { + EXPECT_EQ(1, n); + ASSERT_EQ(2, n); +} + +// Another helper function for testing SCOPED_TRACE. +void SubWithTrace(int n) { + SCOPED_TRACE(testing::Message() << "n = " << n); + + SubWithoutTrace(n); +} + +// Tests that SCOPED_TRACE() obeys lexical scopes. +TEST(SCOPED_TRACETest, ObeysScopes) { + printf("(expected to fail)\n"); + + // There should be no trace before SCOPED_TRACE() is invoked. + ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; + + { + SCOPED_TRACE("Expected trace"); + // After SCOPED_TRACE(), a failure in the current scope should contain + // the trace. + ADD_FAILURE() << "This failure is expected, and should have a trace."; + } + + // Once the control leaves the scope of the SCOPED_TRACE(), there + // should be no trace again. + ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; +} + +// Tests that SCOPED_TRACE works inside a loop. +TEST(SCOPED_TRACETest, WorksInLoop) { + printf("(expected to fail)\n"); + + for (int i = 1; i <= 2; i++) { + SCOPED_TRACE(testing::Message() << "i = " << i); + + SubWithoutTrace(i); + } +} + +// Tests that SCOPED_TRACE works in a subroutine. +TEST(SCOPED_TRACETest, WorksInSubroutine) { + printf("(expected to fail)\n"); + + SubWithTrace(1); + SubWithTrace(2); +} + +// Tests that SCOPED_TRACE can be nested. +TEST(SCOPED_TRACETest, CanBeNested) { + printf("(expected to fail)\n"); + + SCOPED_TRACE(""); // A trace without a message. + + SubWithTrace(2); +} + +// Tests that multiple SCOPED_TRACEs can be used in the same scope. +TEST(SCOPED_TRACETest, CanBeRepeated) { + printf("(expected to fail)\n"); + + SCOPED_TRACE("A"); + ADD_FAILURE() + << "This failure is expected, and should contain trace point A."; + + SCOPED_TRACE("B"); + ADD_FAILURE() + << "This failure is expected, and should contain trace point A and B."; + + { + SCOPED_TRACE("C"); + ADD_FAILURE() << "This failure is expected, and should " + << "contain trace point A, B, and C."; + } + + SCOPED_TRACE("D"); + ADD_FAILURE() << "This failure is expected, and should " + << "contain trace point A, B, and D."; +} + +#if GTEST_IS_THREADSAFE +// Tests that SCOPED_TRACE()s can be used concurrently from multiple +// threads. Namely, an assertion should be affected by +// SCOPED_TRACE()s in its own thread only. + +// Here's the sequence of actions that happen in the test: +// +// Thread A (main) | Thread B (spawned) +// ===============================|================================ +// spawns thread B | +// -------------------------------+-------------------------------- +// waits for n1 | SCOPED_TRACE("Trace B"); +// | generates failure #1 +// | notifies n1 +// -------------------------------+-------------------------------- +// SCOPED_TRACE("Trace A"); | waits for n2 +// generates failure #2 | +// notifies n2 | +// -------------------------------|-------------------------------- +// waits for n3 | generates failure #3 +// | trace B dies +// | generates failure #4 +// | notifies n3 +// -------------------------------|-------------------------------- +// generates failure #5 | finishes +// trace A dies | +// generates failure #6 | +// -------------------------------|-------------------------------- +// waits for thread B to finish | + +struct CheckPoints { + Notification n1; + Notification n2; + Notification n3; +}; + +static void ThreadWithScopedTrace(CheckPoints* check_points) { + { + SCOPED_TRACE("Trace B"); + ADD_FAILURE() + << "Expected failure #1 (in thread B, only trace B alive)."; + check_points->n1.Notify(); + check_points->n2.WaitForNotification(); + + ADD_FAILURE() + << "Expected failure #3 (in thread B, trace A & B both alive)."; + } // Trace B dies here. + ADD_FAILURE() + << "Expected failure #4 (in thread B, only trace A alive)."; + check_points->n3.Notify(); +} + +TEST(SCOPED_TRACETest, WorksConcurrently) { + printf("(expecting 6 failures)\n"); + + CheckPoints check_points; + ThreadWithParam thread(&ThreadWithScopedTrace, + &check_points, + NULL); + check_points.n1.WaitForNotification(); + + { + SCOPED_TRACE("Trace A"); + ADD_FAILURE() + << "Expected failure #2 (in thread A, trace A & B both alive)."; + check_points.n2.Notify(); + check_points.n3.WaitForNotification(); + + ADD_FAILURE() + << "Expected failure #5 (in thread A, only trace A alive)."; + } // Trace A dies here. + ADD_FAILURE() + << "Expected failure #6 (in thread A, no trace alive)."; + thread.Join(); +} +#endif // GTEST_IS_THREADSAFE + +TEST(DisabledTestsWarningTest, + DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning) { + // This test body is intentionally empty. Its sole purpose is for + // verifying that the --gtest_also_run_disabled_tests flag + // suppresses the "YOU HAVE 12 DISABLED TESTS" warning at the end of + // the test output. +} + +// Tests using assertions outside of TEST and TEST_F. +// +// This function creates two failures intentionally. +void AdHocTest() { + printf("The non-test part of the code is expected to have 2 failures.\n\n"); + EXPECT_TRUE(false); + EXPECT_EQ(2, 3); +} + +// Runs all TESTs, all TEST_Fs, and the ad hoc test. +int RunAllTests() { + AdHocTest(); + return RUN_ALL_TESTS(); +} + +// Tests non-fatal failures in the fixture constructor. +class NonFatalFailureInFixtureConstructorTest : public testing::Test { + protected: + NonFatalFailureInFixtureConstructorTest() { + printf("(expecting 5 failures)\n"); + ADD_FAILURE() << "Expected failure #1, in the test fixture c'tor."; + } + + ~NonFatalFailureInFixtureConstructorTest() { + ADD_FAILURE() << "Expected failure #5, in the test fixture d'tor."; + } + + virtual void SetUp() { + ADD_FAILURE() << "Expected failure #2, in SetUp()."; + } + + virtual void TearDown() { + ADD_FAILURE() << "Expected failure #4, in TearDown."; + } +}; + +TEST_F(NonFatalFailureInFixtureConstructorTest, FailureInConstructor) { + ADD_FAILURE() << "Expected failure #3, in the test body."; +} + +// Tests fatal failures in the fixture constructor. +class FatalFailureInFixtureConstructorTest : public testing::Test { + protected: + FatalFailureInFixtureConstructorTest() { + printf("(expecting 2 failures)\n"); + Init(); + } + + ~FatalFailureInFixtureConstructorTest() { + ADD_FAILURE() << "Expected failure #2, in the test fixture d'tor."; + } + + virtual void SetUp() { + ADD_FAILURE() << "UNEXPECTED failure in SetUp(). " + << "We should never get here, as the test fixture c'tor " + << "had a fatal failure."; + } + + virtual void TearDown() { + ADD_FAILURE() << "UNEXPECTED failure in TearDown(). " + << "We should never get here, as the test fixture c'tor " + << "had a fatal failure."; + } + + private: + void Init() { + FAIL() << "Expected failure #1, in the test fixture c'tor."; + } +}; + +TEST_F(FatalFailureInFixtureConstructorTest, FailureInConstructor) { + ADD_FAILURE() << "UNEXPECTED failure in the test body. " + << "We should never get here, as the test fixture c'tor " + << "had a fatal failure."; +} + +// Tests non-fatal failures in SetUp(). +class NonFatalFailureInSetUpTest : public testing::Test { + protected: + virtual ~NonFatalFailureInSetUpTest() { + Deinit(); + } + + virtual void SetUp() { + printf("(expecting 4 failures)\n"); + ADD_FAILURE() << "Expected failure #1, in SetUp()."; + } + + virtual void TearDown() { + FAIL() << "Expected failure #3, in TearDown()."; + } + private: + void Deinit() { + FAIL() << "Expected failure #4, in the test fixture d'tor."; + } +}; + +TEST_F(NonFatalFailureInSetUpTest, FailureInSetUp) { + FAIL() << "Expected failure #2, in the test function."; +} + +// Tests fatal failures in SetUp(). +class FatalFailureInSetUpTest : public testing::Test { + protected: + virtual ~FatalFailureInSetUpTest() { + Deinit(); + } + + virtual void SetUp() { + printf("(expecting 3 failures)\n"); + FAIL() << "Expected failure #1, in SetUp()."; + } + + virtual void TearDown() { + FAIL() << "Expected failure #2, in TearDown()."; + } + private: + void Deinit() { + FAIL() << "Expected failure #3, in the test fixture d'tor."; + } +}; + +TEST_F(FatalFailureInSetUpTest, FailureInSetUp) { + FAIL() << "UNEXPECTED failure in the test function. " + << "We should never get here, as SetUp() failed."; +} + +TEST(AddFailureAtTest, MessageContainsSpecifiedFileAndLineNumber) { + ADD_FAILURE_AT("foo.cc", 42) << "Expected failure in foo.cc"; +} + +#if GTEST_IS_THREADSAFE + +// A unary function that may die. +void DieIf(bool should_die) { + GTEST_CHECK_(!should_die) << " - death inside DieIf()."; +} + +// Tests running death tests in a multi-threaded context. + +// Used for coordination between the main and the spawn thread. +struct SpawnThreadNotifications { + SpawnThreadNotifications() {} + + Notification spawn_thread_started; + Notification spawn_thread_ok_to_terminate; + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(SpawnThreadNotifications); +}; + +// The function to be executed in the thread spawn by the +// MultipleThreads test (below). +static void ThreadRoutine(SpawnThreadNotifications* notifications) { + // Signals the main thread that this thread has started. + notifications->spawn_thread_started.Notify(); + + // Waits for permission to finish from the main thread. + notifications->spawn_thread_ok_to_terminate.WaitForNotification(); +} + +// This is a death-test test, but it's not named with a DeathTest +// suffix. It starts threads which might interfere with later +// death tests, so it must run after all other death tests. +class DeathTestAndMultiThreadsTest : public testing::Test { + protected: + // Starts a thread and waits for it to begin. + virtual void SetUp() { + thread_.reset(new ThreadWithParam( + &ThreadRoutine, ¬ifications_, NULL)); + notifications_.spawn_thread_started.WaitForNotification(); + } + // Tells the thread to finish, and reaps it. + // Depending on the version of the thread library in use, + // a manager thread might still be left running that will interfere + // with later death tests. This is unfortunate, but this class + // cleans up after itself as best it can. + virtual void TearDown() { + notifications_.spawn_thread_ok_to_terminate.Notify(); + } + + private: + SpawnThreadNotifications notifications_; + scoped_ptr > thread_; +}; + +#endif // GTEST_IS_THREADSAFE + +// The MixedUpTestCaseTest test case verifies that Google Test will fail a +// test if it uses a different fixture class than what other tests in +// the same test case use. It deliberately contains two fixture +// classes with the same name but defined in different namespaces. + +// The MixedUpTestCaseWithSameTestNameTest test case verifies that +// when the user defines two tests with the same test case name AND +// same test name (but in different namespaces), the second test will +// fail. + +namespace foo { + +class MixedUpTestCaseTest : public testing::Test { +}; + +TEST_F(MixedUpTestCaseTest, FirstTestFromNamespaceFoo) {} +TEST_F(MixedUpTestCaseTest, SecondTestFromNamespaceFoo) {} + +class MixedUpTestCaseWithSameTestNameTest : public testing::Test { +}; + +TEST_F(MixedUpTestCaseWithSameTestNameTest, + TheSecondTestWithThisNameShouldFail) {} + +} // namespace foo + +namespace bar { + +class MixedUpTestCaseTest : public testing::Test { +}; + +// The following two tests are expected to fail. We rely on the +// golden file to check that Google Test generates the right error message. +TEST_F(MixedUpTestCaseTest, ThisShouldFail) {} +TEST_F(MixedUpTestCaseTest, ThisShouldFailToo) {} + +class MixedUpTestCaseWithSameTestNameTest : public testing::Test { +}; + +// Expected to fail. We rely on the golden file to check that Google Test +// generates the right error message. +TEST_F(MixedUpTestCaseWithSameTestNameTest, + TheSecondTestWithThisNameShouldFail) {} + +} // namespace bar + +// The following two test cases verify that Google Test catches the user +// error of mixing TEST and TEST_F in the same test case. The first +// test case checks the scenario where TEST_F appears before TEST, and +// the second one checks where TEST appears before TEST_F. + +class TEST_F_before_TEST_in_same_test_case : public testing::Test { +}; + +TEST_F(TEST_F_before_TEST_in_same_test_case, DefinedUsingTEST_F) {} + +// Expected to fail. We rely on the golden file to check that Google Test +// generates the right error message. +TEST(TEST_F_before_TEST_in_same_test_case, DefinedUsingTESTAndShouldFail) {} + +class TEST_before_TEST_F_in_same_test_case : public testing::Test { +}; + +TEST(TEST_before_TEST_F_in_same_test_case, DefinedUsingTEST) {} + +// Expected to fail. We rely on the golden file to check that Google Test +// generates the right error message. +TEST_F(TEST_before_TEST_F_in_same_test_case, DefinedUsingTEST_FAndShouldFail) { +} + +// Used for testing EXPECT_NONFATAL_FAILURE() and EXPECT_FATAL_FAILURE(). +int global_integer = 0; + +// Tests that EXPECT_NONFATAL_FAILURE() can reference global variables. +TEST(ExpectNonfatalFailureTest, CanReferenceGlobalVariables) { + global_integer = 0; + EXPECT_NONFATAL_FAILURE({ + EXPECT_EQ(1, global_integer) << "Expected non-fatal failure."; + }, "Expected non-fatal failure."); +} + +// Tests that EXPECT_NONFATAL_FAILURE() can reference local variables +// (static or not). +TEST(ExpectNonfatalFailureTest, CanReferenceLocalVariables) { + int m = 0; + static int n; + n = 1; + EXPECT_NONFATAL_FAILURE({ + EXPECT_EQ(m, n) << "Expected non-fatal failure."; + }, "Expected non-fatal failure."); +} + +// Tests that EXPECT_NONFATAL_FAILURE() succeeds when there is exactly +// one non-fatal failure and no fatal failure. +TEST(ExpectNonfatalFailureTest, SucceedsWhenThereIsOneNonfatalFailure) { + EXPECT_NONFATAL_FAILURE({ + ADD_FAILURE() << "Expected non-fatal failure."; + }, "Expected non-fatal failure."); +} + +// Tests that EXPECT_NONFATAL_FAILURE() fails when there is no +// non-fatal failure. +TEST(ExpectNonfatalFailureTest, FailsWhenThereIsNoNonfatalFailure) { + printf("(expecting a failure)\n"); + EXPECT_NONFATAL_FAILURE({ + }, ""); +} + +// Tests that EXPECT_NONFATAL_FAILURE() fails when there are two +// non-fatal failures. +TEST(ExpectNonfatalFailureTest, FailsWhenThereAreTwoNonfatalFailures) { + printf("(expecting a failure)\n"); + EXPECT_NONFATAL_FAILURE({ + ADD_FAILURE() << "Expected non-fatal failure 1."; + ADD_FAILURE() << "Expected non-fatal failure 2."; + }, ""); +} + +// Tests that EXPECT_NONFATAL_FAILURE() fails when there is one fatal +// failure. +TEST(ExpectNonfatalFailureTest, FailsWhenThereIsOneFatalFailure) { + printf("(expecting a failure)\n"); + EXPECT_NONFATAL_FAILURE({ + FAIL() << "Expected fatal failure."; + }, ""); +} + +// Tests that EXPECT_NONFATAL_FAILURE() fails when the statement being +// tested returns. +TEST(ExpectNonfatalFailureTest, FailsWhenStatementReturns) { + printf("(expecting a failure)\n"); + EXPECT_NONFATAL_FAILURE({ + return; + }, ""); +} + +#if GTEST_HAS_EXCEPTIONS + +// Tests that EXPECT_NONFATAL_FAILURE() fails when the statement being +// tested throws. +TEST(ExpectNonfatalFailureTest, FailsWhenStatementThrows) { + printf("(expecting a failure)\n"); + try { + EXPECT_NONFATAL_FAILURE({ + throw 0; + }, ""); + } catch(int) { // NOLINT + } +} + +#endif // GTEST_HAS_EXCEPTIONS + +// Tests that EXPECT_FATAL_FAILURE() can reference global variables. +TEST(ExpectFatalFailureTest, CanReferenceGlobalVariables) { + global_integer = 0; + EXPECT_FATAL_FAILURE({ + ASSERT_EQ(1, global_integer) << "Expected fatal failure."; + }, "Expected fatal failure."); +} + +// Tests that EXPECT_FATAL_FAILURE() can reference local static +// variables. +TEST(ExpectFatalFailureTest, CanReferenceLocalStaticVariables) { + static int n; + n = 1; + EXPECT_FATAL_FAILURE({ + ASSERT_EQ(0, n) << "Expected fatal failure."; + }, "Expected fatal failure."); +} + +// Tests that EXPECT_FATAL_FAILURE() succeeds when there is exactly +// one fatal failure and no non-fatal failure. +TEST(ExpectFatalFailureTest, SucceedsWhenThereIsOneFatalFailure) { + EXPECT_FATAL_FAILURE({ + FAIL() << "Expected fatal failure."; + }, "Expected fatal failure."); +} + +// Tests that EXPECT_FATAL_FAILURE() fails when there is no fatal +// failure. +TEST(ExpectFatalFailureTest, FailsWhenThereIsNoFatalFailure) { + printf("(expecting a failure)\n"); + EXPECT_FATAL_FAILURE({ + }, ""); +} + +// A helper for generating a fatal failure. +void FatalFailure() { + FAIL() << "Expected fatal failure."; +} + +// Tests that EXPECT_FATAL_FAILURE() fails when there are two +// fatal failures. +TEST(ExpectFatalFailureTest, FailsWhenThereAreTwoFatalFailures) { + printf("(expecting a failure)\n"); + EXPECT_FATAL_FAILURE({ + FatalFailure(); + FatalFailure(); + }, ""); +} + +// Tests that EXPECT_FATAL_FAILURE() fails when there is one non-fatal +// failure. +TEST(ExpectFatalFailureTest, FailsWhenThereIsOneNonfatalFailure) { + printf("(expecting a failure)\n"); + EXPECT_FATAL_FAILURE({ + ADD_FAILURE() << "Expected non-fatal failure."; + }, ""); +} + +// Tests that EXPECT_FATAL_FAILURE() fails when the statement being +// tested returns. +TEST(ExpectFatalFailureTest, FailsWhenStatementReturns) { + printf("(expecting a failure)\n"); + EXPECT_FATAL_FAILURE({ + return; + }, ""); +} + +#if GTEST_HAS_EXCEPTIONS + +// Tests that EXPECT_FATAL_FAILURE() fails when the statement being +// tested throws. +TEST(ExpectFatalFailureTest, FailsWhenStatementThrows) { + printf("(expecting a failure)\n"); + try { + EXPECT_FATAL_FAILURE({ + throw 0; + }, ""); + } catch(int) { // NOLINT + } +} + +#endif // GTEST_HAS_EXCEPTIONS + +// This #ifdef block tests the output of typed tests. +#if GTEST_HAS_TYPED_TEST + +template +class TypedTest : public testing::Test { +}; + +TYPED_TEST_CASE(TypedTest, testing::Types); + +TYPED_TEST(TypedTest, Success) { + EXPECT_EQ(0, TypeParam()); +} + +TYPED_TEST(TypedTest, Failure) { + EXPECT_EQ(1, TypeParam()) << "Expected failure"; +} + +#endif // GTEST_HAS_TYPED_TEST + +// This #ifdef block tests the output of type-parameterized tests. +#if GTEST_HAS_TYPED_TEST_P + +template +class TypedTestP : public testing::Test { +}; + +TYPED_TEST_CASE_P(TypedTestP); + +TYPED_TEST_P(TypedTestP, Success) { + EXPECT_EQ(0U, TypeParam()); +} + +TYPED_TEST_P(TypedTestP, Failure) { + EXPECT_EQ(1U, TypeParam()) << "Expected failure"; +} + +REGISTER_TYPED_TEST_CASE_P(TypedTestP, Success, Failure); + +typedef testing::Types UnsignedTypes; +INSTANTIATE_TYPED_TEST_CASE_P(Unsigned, TypedTestP, UnsignedTypes); + +#endif // GTEST_HAS_TYPED_TEST_P + +#if GTEST_HAS_DEATH_TEST + +// We rely on the golden file to verify that tests whose test case +// name ends with DeathTest are run first. + +TEST(ADeathTest, ShouldRunFirst) { +} + +# if GTEST_HAS_TYPED_TEST + +// We rely on the golden file to verify that typed tests whose test +// case name ends with DeathTest are run first. + +template +class ATypedDeathTest : public testing::Test { +}; + +typedef testing::Types NumericTypes; +TYPED_TEST_CASE(ATypedDeathTest, NumericTypes); + +TYPED_TEST(ATypedDeathTest, ShouldRunFirst) { +} + +# endif // GTEST_HAS_TYPED_TEST + +# if GTEST_HAS_TYPED_TEST_P + + +// We rely on the golden file to verify that type-parameterized tests +// whose test case name ends with DeathTest are run first. + +template +class ATypeParamDeathTest : public testing::Test { +}; + +TYPED_TEST_CASE_P(ATypeParamDeathTest); + +TYPED_TEST_P(ATypeParamDeathTest, ShouldRunFirst) { +} + +REGISTER_TYPED_TEST_CASE_P(ATypeParamDeathTest, ShouldRunFirst); + +INSTANTIATE_TYPED_TEST_CASE_P(My, ATypeParamDeathTest, NumericTypes); + +# endif // GTEST_HAS_TYPED_TEST_P + +#endif // GTEST_HAS_DEATH_TEST + +// Tests various failure conditions of +// EXPECT_{,NON}FATAL_FAILURE{,_ON_ALL_THREADS}. +class ExpectFailureTest : public testing::Test { + public: // Must be public and not protected due to a bug in g++ 3.4.2. + enum FailureMode { + FATAL_FAILURE, + NONFATAL_FAILURE + }; + static void AddFailure(FailureMode failure) { + if (failure == FATAL_FAILURE) { + FAIL() << "Expected fatal failure."; + } else { + ADD_FAILURE() << "Expected non-fatal failure."; + } + } +}; + +TEST_F(ExpectFailureTest, ExpectFatalFailure) { + // Expected fatal failure, but succeeds. + printf("(expecting 1 failure)\n"); + EXPECT_FATAL_FAILURE(SUCCEED(), "Expected fatal failure."); + // Expected fatal failure, but got a non-fatal failure. + printf("(expecting 1 failure)\n"); + EXPECT_FATAL_FAILURE(AddFailure(NONFATAL_FAILURE), "Expected non-fatal " + "failure."); + // Wrong message. + printf("(expecting 1 failure)\n"); + EXPECT_FATAL_FAILURE(AddFailure(FATAL_FAILURE), "Some other fatal failure " + "expected."); +} + +TEST_F(ExpectFailureTest, ExpectNonFatalFailure) { + // Expected non-fatal failure, but succeeds. + printf("(expecting 1 failure)\n"); + EXPECT_NONFATAL_FAILURE(SUCCEED(), "Expected non-fatal failure."); + // Expected non-fatal failure, but got a fatal failure. + printf("(expecting 1 failure)\n"); + EXPECT_NONFATAL_FAILURE(AddFailure(FATAL_FAILURE), "Expected fatal failure."); + // Wrong message. + printf("(expecting 1 failure)\n"); + EXPECT_NONFATAL_FAILURE(AddFailure(NONFATAL_FAILURE), "Some other non-fatal " + "failure."); +} + +#if GTEST_IS_THREADSAFE + +class ExpectFailureWithThreadsTest : public ExpectFailureTest { + protected: + static void AddFailureInOtherThread(FailureMode failure) { + ThreadWithParam thread(&AddFailure, failure, NULL); + thread.Join(); + } +}; + +TEST_F(ExpectFailureWithThreadsTest, ExpectFatalFailure) { + // We only intercept the current thread. + printf("(expecting 2 failures)\n"); + EXPECT_FATAL_FAILURE(AddFailureInOtherThread(FATAL_FAILURE), + "Expected fatal failure."); +} + +TEST_F(ExpectFailureWithThreadsTest, ExpectNonFatalFailure) { + // We only intercept the current thread. + printf("(expecting 2 failures)\n"); + EXPECT_NONFATAL_FAILURE(AddFailureInOtherThread(NONFATAL_FAILURE), + "Expected non-fatal failure."); +} + +typedef ExpectFailureWithThreadsTest ScopedFakeTestPartResultReporterTest; + +// Tests that the ScopedFakeTestPartResultReporter only catches failures from +// the current thread if it is instantiated with INTERCEPT_ONLY_CURRENT_THREAD. +TEST_F(ScopedFakeTestPartResultReporterTest, InterceptOnlyCurrentThread) { + printf("(expecting 2 failures)\n"); + TestPartResultArray results; + { + ScopedFakeTestPartResultReporter reporter( + ScopedFakeTestPartResultReporter::INTERCEPT_ONLY_CURRENT_THREAD, + &results); + AddFailureInOtherThread(FATAL_FAILURE); + AddFailureInOtherThread(NONFATAL_FAILURE); + } + // The two failures should not have been intercepted. + EXPECT_EQ(0, results.size()) << "This shouldn't fail."; +} + +#endif // GTEST_IS_THREADSAFE + +TEST_F(ExpectFailureTest, ExpectFatalFailureOnAllThreads) { + // Expected fatal failure, but succeeds. + printf("(expecting 1 failure)\n"); + EXPECT_FATAL_FAILURE_ON_ALL_THREADS(SUCCEED(), "Expected fatal failure."); + // Expected fatal failure, but got a non-fatal failure. + printf("(expecting 1 failure)\n"); + EXPECT_FATAL_FAILURE_ON_ALL_THREADS(AddFailure(NONFATAL_FAILURE), + "Expected non-fatal failure."); + // Wrong message. + printf("(expecting 1 failure)\n"); + EXPECT_FATAL_FAILURE_ON_ALL_THREADS(AddFailure(FATAL_FAILURE), + "Some other fatal failure expected."); +} + +TEST_F(ExpectFailureTest, ExpectNonFatalFailureOnAllThreads) { + // Expected non-fatal failure, but succeeds. + printf("(expecting 1 failure)\n"); + EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(SUCCEED(), "Expected non-fatal " + "failure."); + // Expected non-fatal failure, but got a fatal failure. + printf("(expecting 1 failure)\n"); + EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(AddFailure(FATAL_FAILURE), + "Expected fatal failure."); + // Wrong message. + printf("(expecting 1 failure)\n"); + EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(AddFailure(NONFATAL_FAILURE), + "Some other non-fatal failure."); +} + + +// Two test environments for testing testing::AddGlobalTestEnvironment(). + +class FooEnvironment : public testing::Environment { + public: + virtual void SetUp() { + printf("%s", "FooEnvironment::SetUp() called.\n"); + } + + virtual void TearDown() { + printf("%s", "FooEnvironment::TearDown() called.\n"); + FAIL() << "Expected fatal failure."; + } +}; + +class BarEnvironment : public testing::Environment { + public: + virtual void SetUp() { + printf("%s", "BarEnvironment::SetUp() called.\n"); + } + + virtual void TearDown() { + printf("%s", "BarEnvironment::TearDown() called.\n"); + ADD_FAILURE() << "Expected non-fatal failure."; + } +}; + +bool GTEST_FLAG(internal_skip_environment_and_ad_hoc_tests) = false; + +// The main function. +// +// The idea is to use Google Test to run all the tests we have defined (some +// of them are intended to fail), and then compare the test results +// with the "golden" file. +int main(int argc, char **argv) { + testing::GTEST_FLAG(print_time) = false; + + // We just run the tests, knowing some of them are intended to fail. + // We will use a separate Python script to compare the output of + // this program with the golden file. + + // It's hard to test InitGoogleTest() directly, as it has many + // global side effects. The following line serves as a sanity test + // for it. + testing::InitGoogleTest(&argc, argv); + if (argc >= 2 && + (std::string(argv[1]) == + "--gtest_internal_skip_environment_and_ad_hoc_tests")) + GTEST_FLAG(internal_skip_environment_and_ad_hoc_tests) = true; + +#if GTEST_HAS_DEATH_TEST + if (testing::internal::GTEST_FLAG(internal_run_death_test) != "") { + // Skip the usual output capturing if we're running as the child + // process of an threadsafe-style death test. +# if GTEST_OS_WINDOWS + posix::FReopen("nul:", "w", stdout); +# else + posix::FReopen("/dev/null", "w", stdout); +# endif // GTEST_OS_WINDOWS + return RUN_ALL_TESTS(); + } +#endif // GTEST_HAS_DEATH_TEST + + if (GTEST_FLAG(internal_skip_environment_and_ad_hoc_tests)) + return RUN_ALL_TESTS(); + + // Registers two global test environments. + // The golden file verifies that they are set up in the order they + // are registered, and torn down in the reverse order. + testing::AddGlobalTestEnvironment(new FooEnvironment); + testing::AddGlobalTestEnvironment(new BarEnvironment); + + return RunAllTests(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_output_test_golden_lin.txt b/cpp/thirdparty/gtest-1.7.0/test/gtest_output_test_golden_lin.txt new file mode 100644 index 000000000..960eedce2 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_output_test_golden_lin.txt @@ -0,0 +1,720 @@ +The non-test part of the code is expected to have 2 failures. + +gtest_output_test_.cc:#: Failure +Value of: false + Actual: false +Expected: true +gtest_output_test_.cc:#: Failure +Value of: 3 +Expected: 2 +[==========] Running 63 tests from 28 test cases. +[----------] Global test environment set-up. +FooEnvironment::SetUp() called. +BarEnvironment::SetUp() called. +[----------] 1 test from ADeathTest +[ RUN ] ADeathTest.ShouldRunFirst +[ OK ] ADeathTest.ShouldRunFirst +[----------] 1 test from ATypedDeathTest/0, where TypeParam = int +[ RUN ] ATypedDeathTest/0.ShouldRunFirst +[ OK ] ATypedDeathTest/0.ShouldRunFirst +[----------] 1 test from ATypedDeathTest/1, where TypeParam = double +[ RUN ] ATypedDeathTest/1.ShouldRunFirst +[ OK ] ATypedDeathTest/1.ShouldRunFirst +[----------] 1 test from My/ATypeParamDeathTest/0, where TypeParam = int +[ RUN ] My/ATypeParamDeathTest/0.ShouldRunFirst +[ OK ] My/ATypeParamDeathTest/0.ShouldRunFirst +[----------] 1 test from My/ATypeParamDeathTest/1, where TypeParam = double +[ RUN ] My/ATypeParamDeathTest/1.ShouldRunFirst +[ OK ] My/ATypeParamDeathTest/1.ShouldRunFirst +[----------] 2 tests from PassingTest +[ RUN ] PassingTest.PassingTest1 +[ OK ] PassingTest.PassingTest1 +[ RUN ] PassingTest.PassingTest2 +[ OK ] PassingTest.PassingTest2 +[----------] 1 test from NonfatalFailureTest +[ RUN ] NonfatalFailureTest.EscapesStringOperands +gtest_output_test_.cc:#: Failure +Value of: actual + Actual: "actual \"string\"" +Expected: kGoldenString +Which is: "\"Line" +gtest_output_test_.cc:#: Failure +Value of: actual + Actual: "actual \"string\"" +Expected: golden +Which is: "\"Line" +[ FAILED ] NonfatalFailureTest.EscapesStringOperands +[----------] 3 tests from FatalFailureTest +[ RUN ] FatalFailureTest.FatalFailureInSubroutine +(expecting a failure that x should be 1) +gtest_output_test_.cc:#: Failure +Value of: x + Actual: 2 +Expected: 1 +[ FAILED ] FatalFailureTest.FatalFailureInSubroutine +[ RUN ] FatalFailureTest.FatalFailureInNestedSubroutine +(expecting a failure that x should be 1) +gtest_output_test_.cc:#: Failure +Value of: x + Actual: 2 +Expected: 1 +[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine +[ RUN ] FatalFailureTest.NonfatalFailureInSubroutine +(expecting a failure on false) +gtest_output_test_.cc:#: Failure +Value of: false + Actual: false +Expected: true +[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine +[----------] 1 test from LoggingTest +[ RUN ] LoggingTest.InterleavingLoggingAndAssertions +(expecting 2 failures on (3) >= (a[i])) +i == 0 +i == 1 +gtest_output_test_.cc:#: Failure +Expected: (3) >= (a[i]), actual: 3 vs 9 +i == 2 +i == 3 +gtest_output_test_.cc:#: Failure +Expected: (3) >= (a[i]), actual: 3 vs 6 +[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions +[----------] 6 tests from SCOPED_TRACETest +[ RUN ] SCOPED_TRACETest.ObeysScopes +(expected to fail) +gtest_output_test_.cc:#: Failure +Failed +This failure is expected, and shouldn't have a trace. +gtest_output_test_.cc:#: Failure +Failed +This failure is expected, and should have a trace. +Google Test trace: +gtest_output_test_.cc:#: Expected trace +gtest_output_test_.cc:#: Failure +Failed +This failure is expected, and shouldn't have a trace. +[ FAILED ] SCOPED_TRACETest.ObeysScopes +[ RUN ] SCOPED_TRACETest.WorksInLoop +(expected to fail) +gtest_output_test_.cc:#: Failure +Value of: n + Actual: 1 +Expected: 2 +Google Test trace: +gtest_output_test_.cc:#: i = 1 +gtest_output_test_.cc:#: Failure +Value of: n + Actual: 2 +Expected: 1 +Google Test trace: +gtest_output_test_.cc:#: i = 2 +[ FAILED ] SCOPED_TRACETest.WorksInLoop +[ RUN ] SCOPED_TRACETest.WorksInSubroutine +(expected to fail) +gtest_output_test_.cc:#: Failure +Value of: n + Actual: 1 +Expected: 2 +Google Test trace: +gtest_output_test_.cc:#: n = 1 +gtest_output_test_.cc:#: Failure +Value of: n + Actual: 2 +Expected: 1 +Google Test trace: +gtest_output_test_.cc:#: n = 2 +[ FAILED ] SCOPED_TRACETest.WorksInSubroutine +[ RUN ] SCOPED_TRACETest.CanBeNested +(expected to fail) +gtest_output_test_.cc:#: Failure +Value of: n + Actual: 2 +Expected: 1 +Google Test trace: +gtest_output_test_.cc:#: n = 2 +gtest_output_test_.cc:#: +[ FAILED ] SCOPED_TRACETest.CanBeNested +[ RUN ] SCOPED_TRACETest.CanBeRepeated +(expected to fail) +gtest_output_test_.cc:#: Failure +Failed +This failure is expected, and should contain trace point A. +Google Test trace: +gtest_output_test_.cc:#: A +gtest_output_test_.cc:#: Failure +Failed +This failure is expected, and should contain trace point A and B. +Google Test trace: +gtest_output_test_.cc:#: B +gtest_output_test_.cc:#: A +gtest_output_test_.cc:#: Failure +Failed +This failure is expected, and should contain trace point A, B, and C. +Google Test trace: +gtest_output_test_.cc:#: C +gtest_output_test_.cc:#: B +gtest_output_test_.cc:#: A +gtest_output_test_.cc:#: Failure +Failed +This failure is expected, and should contain trace point A, B, and D. +Google Test trace: +gtest_output_test_.cc:#: D +gtest_output_test_.cc:#: B +gtest_output_test_.cc:#: A +[ FAILED ] SCOPED_TRACETest.CanBeRepeated +[ RUN ] SCOPED_TRACETest.WorksConcurrently +(expecting 6 failures) +gtest_output_test_.cc:#: Failure +Failed +Expected failure #1 (in thread B, only trace B alive). +Google Test trace: +gtest_output_test_.cc:#: Trace B +gtest_output_test_.cc:#: Failure +Failed +Expected failure #2 (in thread A, trace A & B both alive). +Google Test trace: +gtest_output_test_.cc:#: Trace A +gtest_output_test_.cc:#: Failure +Failed +Expected failure #3 (in thread B, trace A & B both alive). +Google Test trace: +gtest_output_test_.cc:#: Trace B +gtest_output_test_.cc:#: Failure +Failed +Expected failure #4 (in thread B, only trace A alive). +gtest_output_test_.cc:#: Failure +Failed +Expected failure #5 (in thread A, only trace A alive). +Google Test trace: +gtest_output_test_.cc:#: Trace A +gtest_output_test_.cc:#: Failure +Failed +Expected failure #6 (in thread A, no trace alive). +[ FAILED ] SCOPED_TRACETest.WorksConcurrently +[----------] 1 test from NonFatalFailureInFixtureConstructorTest +[ RUN ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor +(expecting 5 failures) +gtest_output_test_.cc:#: Failure +Failed +Expected failure #1, in the test fixture c'tor. +gtest_output_test_.cc:#: Failure +Failed +Expected failure #2, in SetUp(). +gtest_output_test_.cc:#: Failure +Failed +Expected failure #3, in the test body. +gtest_output_test_.cc:#: Failure +Failed +Expected failure #4, in TearDown. +gtest_output_test_.cc:#: Failure +Failed +Expected failure #5, in the test fixture d'tor. +[ FAILED ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor +[----------] 1 test from FatalFailureInFixtureConstructorTest +[ RUN ] FatalFailureInFixtureConstructorTest.FailureInConstructor +(expecting 2 failures) +gtest_output_test_.cc:#: Failure +Failed +Expected failure #1, in the test fixture c'tor. +gtest_output_test_.cc:#: Failure +Failed +Expected failure #2, in the test fixture d'tor. +[ FAILED ] FatalFailureInFixtureConstructorTest.FailureInConstructor +[----------] 1 test from NonFatalFailureInSetUpTest +[ RUN ] NonFatalFailureInSetUpTest.FailureInSetUp +(expecting 4 failures) +gtest_output_test_.cc:#: Failure +Failed +Expected failure #1, in SetUp(). +gtest_output_test_.cc:#: Failure +Failed +Expected failure #2, in the test function. +gtest_output_test_.cc:#: Failure +Failed +Expected failure #3, in TearDown(). +gtest_output_test_.cc:#: Failure +Failed +Expected failure #4, in the test fixture d'tor. +[ FAILED ] NonFatalFailureInSetUpTest.FailureInSetUp +[----------] 1 test from FatalFailureInSetUpTest +[ RUN ] FatalFailureInSetUpTest.FailureInSetUp +(expecting 3 failures) +gtest_output_test_.cc:#: Failure +Failed +Expected failure #1, in SetUp(). +gtest_output_test_.cc:#: Failure +Failed +Expected failure #2, in TearDown(). +gtest_output_test_.cc:#: Failure +Failed +Expected failure #3, in the test fixture d'tor. +[ FAILED ] FatalFailureInSetUpTest.FailureInSetUp +[----------] 1 test from AddFailureAtTest +[ RUN ] AddFailureAtTest.MessageContainsSpecifiedFileAndLineNumber +foo.cc:42: Failure +Failed +Expected failure in foo.cc +[ FAILED ] AddFailureAtTest.MessageContainsSpecifiedFileAndLineNumber +[----------] 4 tests from MixedUpTestCaseTest +[ RUN ] MixedUpTestCaseTest.FirstTestFromNamespaceFoo +[ OK ] MixedUpTestCaseTest.FirstTestFromNamespaceFoo +[ RUN ] MixedUpTestCaseTest.SecondTestFromNamespaceFoo +[ OK ] MixedUpTestCaseTest.SecondTestFromNamespaceFoo +[ RUN ] MixedUpTestCaseTest.ThisShouldFail +gtest.cc:#: Failure +Failed +All tests in the same test case must use the same test fixture +class. However, in test case MixedUpTestCaseTest, +you defined test FirstTestFromNamespaceFoo and test ThisShouldFail +using two different test fixture classes. This can happen if +the two classes are from different namespaces or translation +units and have the same name. You should probably rename one +of the classes to put the tests into different test cases. +[ FAILED ] MixedUpTestCaseTest.ThisShouldFail +[ RUN ] MixedUpTestCaseTest.ThisShouldFailToo +gtest.cc:#: Failure +Failed +All tests in the same test case must use the same test fixture +class. However, in test case MixedUpTestCaseTest, +you defined test FirstTestFromNamespaceFoo and test ThisShouldFailToo +using two different test fixture classes. This can happen if +the two classes are from different namespaces or translation +units and have the same name. You should probably rename one +of the classes to put the tests into different test cases. +[ FAILED ] MixedUpTestCaseTest.ThisShouldFailToo +[----------] 2 tests from MixedUpTestCaseWithSameTestNameTest +[ RUN ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail +[ OK ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail +[ RUN ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail +gtest.cc:#: Failure +Failed +All tests in the same test case must use the same test fixture +class. However, in test case MixedUpTestCaseWithSameTestNameTest, +you defined test TheSecondTestWithThisNameShouldFail and test TheSecondTestWithThisNameShouldFail +using two different test fixture classes. This can happen if +the two classes are from different namespaces or translation +units and have the same name. You should probably rename one +of the classes to put the tests into different test cases. +[ FAILED ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail +[----------] 2 tests from TEST_F_before_TEST_in_same_test_case +[ RUN ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTEST_F +[ OK ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTEST_F +[ RUN ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail +gtest.cc:#: Failure +Failed +All tests in the same test case must use the same test fixture +class, so mixing TEST_F and TEST in the same test case is +illegal. In test case TEST_F_before_TEST_in_same_test_case, +test DefinedUsingTEST_F is defined using TEST_F but +test DefinedUsingTESTAndShouldFail is defined using TEST. You probably +want to change the TEST to TEST_F or move it to another test +case. +[ FAILED ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail +[----------] 2 tests from TEST_before_TEST_F_in_same_test_case +[ RUN ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST +[ OK ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST +[ RUN ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail +gtest.cc:#: Failure +Failed +All tests in the same test case must use the same test fixture +class, so mixing TEST_F and TEST in the same test case is +illegal. In test case TEST_before_TEST_F_in_same_test_case, +test DefinedUsingTEST_FAndShouldFail is defined using TEST_F but +test DefinedUsingTEST is defined using TEST. You probably +want to change the TEST to TEST_F or move it to another test +case. +[ FAILED ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail +[----------] 8 tests from ExpectNonfatalFailureTest +[ RUN ] ExpectNonfatalFailureTest.CanReferenceGlobalVariables +[ OK ] ExpectNonfatalFailureTest.CanReferenceGlobalVariables +[ RUN ] ExpectNonfatalFailureTest.CanReferenceLocalVariables +[ OK ] ExpectNonfatalFailureTest.CanReferenceLocalVariables +[ RUN ] ExpectNonfatalFailureTest.SucceedsWhenThereIsOneNonfatalFailure +[ OK ] ExpectNonfatalFailureTest.SucceedsWhenThereIsOneNonfatalFailure +[ RUN ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure +(expecting a failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure + Actual: 0 failures +[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure +[ RUN ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures +(expecting a failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure + Actual: 2 failures +gtest_output_test_.cc:#: Non-fatal failure: +Failed +Expected non-fatal failure 1. + +gtest_output_test_.cc:#: Non-fatal failure: +Failed +Expected non-fatal failure 2. + +[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures +[ RUN ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure +(expecting a failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure + Actual: +gtest_output_test_.cc:#: Fatal failure: +Failed +Expected fatal failure. + +[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure +[ RUN ] ExpectNonfatalFailureTest.FailsWhenStatementReturns +(expecting a failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure + Actual: 0 failures +[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementReturns +[ RUN ] ExpectNonfatalFailureTest.FailsWhenStatementThrows +(expecting a failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure + Actual: 0 failures +[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementThrows +[----------] 8 tests from ExpectFatalFailureTest +[ RUN ] ExpectFatalFailureTest.CanReferenceGlobalVariables +[ OK ] ExpectFatalFailureTest.CanReferenceGlobalVariables +[ RUN ] ExpectFatalFailureTest.CanReferenceLocalStaticVariables +[ OK ] ExpectFatalFailureTest.CanReferenceLocalStaticVariables +[ RUN ] ExpectFatalFailureTest.SucceedsWhenThereIsOneFatalFailure +[ OK ] ExpectFatalFailureTest.SucceedsWhenThereIsOneFatalFailure +[ RUN ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure +(expecting a failure) +gtest.cc:#: Failure +Expected: 1 fatal failure + Actual: 0 failures +[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure +[ RUN ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures +(expecting a failure) +gtest.cc:#: Failure +Expected: 1 fatal failure + Actual: 2 failures +gtest_output_test_.cc:#: Fatal failure: +Failed +Expected fatal failure. + +gtest_output_test_.cc:#: Fatal failure: +Failed +Expected fatal failure. + +[ FAILED ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures +[ RUN ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure +(expecting a failure) +gtest.cc:#: Failure +Expected: 1 fatal failure + Actual: +gtest_output_test_.cc:#: Non-fatal failure: +Failed +Expected non-fatal failure. + +[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure +[ RUN ] ExpectFatalFailureTest.FailsWhenStatementReturns +(expecting a failure) +gtest.cc:#: Failure +Expected: 1 fatal failure + Actual: 0 failures +[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementReturns +[ RUN ] ExpectFatalFailureTest.FailsWhenStatementThrows +(expecting a failure) +gtest.cc:#: Failure +Expected: 1 fatal failure + Actual: 0 failures +[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementThrows +[----------] 2 tests from TypedTest/0, where TypeParam = int +[ RUN ] TypedTest/0.Success +[ OK ] TypedTest/0.Success +[ RUN ] TypedTest/0.Failure +gtest_output_test_.cc:#: Failure +Value of: TypeParam() + Actual: 0 +Expected: 1 +Expected failure +[ FAILED ] TypedTest/0.Failure, where TypeParam = int +[----------] 2 tests from Unsigned/TypedTestP/0, where TypeParam = unsigned char +[ RUN ] Unsigned/TypedTestP/0.Success +[ OK ] Unsigned/TypedTestP/0.Success +[ RUN ] Unsigned/TypedTestP/0.Failure +gtest_output_test_.cc:#: Failure +Value of: TypeParam() + Actual: '\0' +Expected: 1U +Which is: 1 +Expected failure +[ FAILED ] Unsigned/TypedTestP/0.Failure, where TypeParam = unsigned char +[----------] 2 tests from Unsigned/TypedTestP/1, where TypeParam = unsigned int +[ RUN ] Unsigned/TypedTestP/1.Success +[ OK ] Unsigned/TypedTestP/1.Success +[ RUN ] Unsigned/TypedTestP/1.Failure +gtest_output_test_.cc:#: Failure +Value of: TypeParam() + Actual: 0 +Expected: 1U +Which is: 1 +Expected failure +[ FAILED ] Unsigned/TypedTestP/1.Failure, where TypeParam = unsigned int +[----------] 4 tests from ExpectFailureTest +[ RUN ] ExpectFailureTest.ExpectFatalFailure +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 fatal failure + Actual: +gtest_output_test_.cc:#: Success: +Succeeded + +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 fatal failure + Actual: +gtest_output_test_.cc:#: Non-fatal failure: +Failed +Expected non-fatal failure. + +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 fatal failure containing "Some other fatal failure expected." + Actual: +gtest_output_test_.cc:#: Fatal failure: +Failed +Expected fatal failure. + +[ FAILED ] ExpectFailureTest.ExpectFatalFailure +[ RUN ] ExpectFailureTest.ExpectNonFatalFailure +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure + Actual: +gtest_output_test_.cc:#: Success: +Succeeded + +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure + Actual: +gtest_output_test_.cc:#: Fatal failure: +Failed +Expected fatal failure. + +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure containing "Some other non-fatal failure." + Actual: +gtest_output_test_.cc:#: Non-fatal failure: +Failed +Expected non-fatal failure. + +[ FAILED ] ExpectFailureTest.ExpectNonFatalFailure +[ RUN ] ExpectFailureTest.ExpectFatalFailureOnAllThreads +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 fatal failure + Actual: +gtest_output_test_.cc:#: Success: +Succeeded + +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 fatal failure + Actual: +gtest_output_test_.cc:#: Non-fatal failure: +Failed +Expected non-fatal failure. + +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 fatal failure containing "Some other fatal failure expected." + Actual: +gtest_output_test_.cc:#: Fatal failure: +Failed +Expected fatal failure. + +[ FAILED ] ExpectFailureTest.ExpectFatalFailureOnAllThreads +[ RUN ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure + Actual: +gtest_output_test_.cc:#: Success: +Succeeded + +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure + Actual: +gtest_output_test_.cc:#: Fatal failure: +Failed +Expected fatal failure. + +(expecting 1 failure) +gtest.cc:#: Failure +Expected: 1 non-fatal failure containing "Some other non-fatal failure." + Actual: +gtest_output_test_.cc:#: Non-fatal failure: +Failed +Expected non-fatal failure. + +[ FAILED ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads +[----------] 2 tests from ExpectFailureWithThreadsTest +[ RUN ] ExpectFailureWithThreadsTest.ExpectFatalFailure +(expecting 2 failures) +gtest_output_test_.cc:#: Failure +Failed +Expected fatal failure. +gtest.cc:#: Failure +Expected: 1 fatal failure + Actual: 0 failures +[ FAILED ] ExpectFailureWithThreadsTest.ExpectFatalFailure +[ RUN ] ExpectFailureWithThreadsTest.ExpectNonFatalFailure +(expecting 2 failures) +gtest_output_test_.cc:#: Failure +Failed +Expected non-fatal failure. +gtest.cc:#: Failure +Expected: 1 non-fatal failure + Actual: 0 failures +[ FAILED ] ExpectFailureWithThreadsTest.ExpectNonFatalFailure +[----------] 1 test from ScopedFakeTestPartResultReporterTest +[ RUN ] ScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread +(expecting 2 failures) +gtest_output_test_.cc:#: Failure +Failed +Expected fatal failure. +gtest_output_test_.cc:#: Failure +Failed +Expected non-fatal failure. +[ FAILED ] ScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread +[----------] 1 test from PrintingFailingParams/FailingParamTest +[ RUN ] PrintingFailingParams/FailingParamTest.Fails/0 +gtest_output_test_.cc:#: Failure +Value of: GetParam() + Actual: 2 +Expected: 1 +[ FAILED ] PrintingFailingParams/FailingParamTest.Fails/0, where GetParam() = 2 +[----------] Global test environment tear-down +BarEnvironment::TearDown() called. +gtest_output_test_.cc:#: Failure +Failed +Expected non-fatal failure. +FooEnvironment::TearDown() called. +gtest_output_test_.cc:#: Failure +Failed +Expected fatal failure. +[==========] 63 tests from 28 test cases ran. +[ PASSED ] 21 tests. +[ FAILED ] 42 tests, listed below: +[ FAILED ] NonfatalFailureTest.EscapesStringOperands +[ FAILED ] FatalFailureTest.FatalFailureInSubroutine +[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine +[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine +[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions +[ FAILED ] SCOPED_TRACETest.ObeysScopes +[ FAILED ] SCOPED_TRACETest.WorksInLoop +[ FAILED ] SCOPED_TRACETest.WorksInSubroutine +[ FAILED ] SCOPED_TRACETest.CanBeNested +[ FAILED ] SCOPED_TRACETest.CanBeRepeated +[ FAILED ] SCOPED_TRACETest.WorksConcurrently +[ FAILED ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor +[ FAILED ] FatalFailureInFixtureConstructorTest.FailureInConstructor +[ FAILED ] NonFatalFailureInSetUpTest.FailureInSetUp +[ FAILED ] FatalFailureInSetUpTest.FailureInSetUp +[ FAILED ] AddFailureAtTest.MessageContainsSpecifiedFileAndLineNumber +[ FAILED ] MixedUpTestCaseTest.ThisShouldFail +[ FAILED ] MixedUpTestCaseTest.ThisShouldFailToo +[ FAILED ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail +[ FAILED ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail +[ FAILED ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail +[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure +[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures +[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure +[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementReturns +[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementThrows +[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure +[ FAILED ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures +[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure +[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementReturns +[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementThrows +[ FAILED ] TypedTest/0.Failure, where TypeParam = int +[ FAILED ] Unsigned/TypedTestP/0.Failure, where TypeParam = unsigned char +[ FAILED ] Unsigned/TypedTestP/1.Failure, where TypeParam = unsigned int +[ FAILED ] ExpectFailureTest.ExpectFatalFailure +[ FAILED ] ExpectFailureTest.ExpectNonFatalFailure +[ FAILED ] ExpectFailureTest.ExpectFatalFailureOnAllThreads +[ FAILED ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads +[ FAILED ] ExpectFailureWithThreadsTest.ExpectFatalFailure +[ FAILED ] ExpectFailureWithThreadsTest.ExpectNonFatalFailure +[ FAILED ] ScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread +[ FAILED ] PrintingFailingParams/FailingParamTest.Fails/0, where GetParam() = 2 + +42 FAILED TESTS + YOU HAVE 1 DISABLED TEST + +Note: Google Test filter = FatalFailureTest.*:LoggingTest.* +[==========] Running 4 tests from 2 test cases. +[----------] Global test environment set-up. +[----------] 3 tests from FatalFailureTest +[ RUN ] FatalFailureTest.FatalFailureInSubroutine +(expecting a failure that x should be 1) +gtest_output_test_.cc:#: Failure +Value of: x + Actual: 2 +Expected: 1 +[ FAILED ] FatalFailureTest.FatalFailureInSubroutine (? ms) +[ RUN ] FatalFailureTest.FatalFailureInNestedSubroutine +(expecting a failure that x should be 1) +gtest_output_test_.cc:#: Failure +Value of: x + Actual: 2 +Expected: 1 +[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine (? ms) +[ RUN ] FatalFailureTest.NonfatalFailureInSubroutine +(expecting a failure on false) +gtest_output_test_.cc:#: Failure +Value of: false + Actual: false +Expected: true +[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine (? ms) +[----------] 3 tests from FatalFailureTest (? ms total) + +[----------] 1 test from LoggingTest +[ RUN ] LoggingTest.InterleavingLoggingAndAssertions +(expecting 2 failures on (3) >= (a[i])) +i == 0 +i == 1 +gtest_output_test_.cc:#: Failure +Expected: (3) >= (a[i]), actual: 3 vs 9 +i == 2 +i == 3 +gtest_output_test_.cc:#: Failure +Expected: (3) >= (a[i]), actual: 3 vs 6 +[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions (? ms) +[----------] 1 test from LoggingTest (? ms total) + +[----------] Global test environment tear-down +[==========] 4 tests from 2 test cases ran. (? ms total) +[ PASSED ] 0 tests. +[ FAILED ] 4 tests, listed below: +[ FAILED ] FatalFailureTest.FatalFailureInSubroutine +[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine +[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine +[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions + + 4 FAILED TESTS +Note: Google Test filter = *DISABLED_* +[==========] Running 1 test from 1 test case. +[----------] Global test environment set-up. +[----------] 1 test from DisabledTestsWarningTest +[ RUN ] DisabledTestsWarningTest.DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning +[ OK ] DisabledTestsWarningTest.DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning +[----------] Global test environment tear-down +[==========] 1 test from 1 test case ran. +[ PASSED ] 1 test. +Note: Google Test filter = PassingTest.* +Note: This is test shard 2 of 2. +[==========] Running 1 test from 1 test case. +[----------] Global test environment set-up. +[----------] 1 test from PassingTest +[ RUN ] PassingTest.PassingTest2 +[ OK ] PassingTest.PassingTest2 +[----------] Global test environment tear-down +[==========] 1 test from 1 test case ran. +[ PASSED ] 1 test. diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_pred_impl_unittest.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_pred_impl_unittest.cc new file mode 100644 index 000000000..a84eff860 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_pred_impl_unittest.cc @@ -0,0 +1,2427 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// This file is AUTOMATICALLY GENERATED on 10/31/2011 by command +// 'gen_gtest_pred_impl.py 5'. DO NOT EDIT BY HAND! + +// Regression test for gtest_pred_impl.h +// +// This file is generated by a script and quite long. If you intend to +// learn how Google Test works by reading its unit tests, read +// gtest_unittest.cc instead. +// +// This is intended as a regression test for the Google Test predicate +// assertions. We compile it as part of the gtest_unittest target +// only to keep the implementation tidy and compact, as it is quite +// involved to set up the stage for testing Google Test using Google +// Test itself. +// +// Currently, gtest_unittest takes ~11 seconds to run in the testing +// daemon. In the future, if it grows too large and needs much more +// time to finish, we should consider separating this file into a +// stand-alone regression test. + +#include + +#include "gtest/gtest.h" +#include "gtest/gtest-spi.h" + +// A user-defined data type. +struct Bool { + explicit Bool(int val) : value(val != 0) {} + + bool operator>(int n) const { return value > Bool(n).value; } + + Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); } + + bool operator==(const Bool& rhs) const { return value == rhs.value; } + + bool value; +}; + +// Enables Bool to be used in assertions. +std::ostream& operator<<(std::ostream& os, const Bool& x) { + return os << (x.value ? "true" : "false"); +} + +// Sample functions/functors for testing unary predicate assertions. + +// A unary predicate function. +template +bool PredFunction1(T1 v1) { + return v1 > 0; +} + +// The following two functions are needed to circumvent a bug in +// gcc 2.95.3, which sometimes has problem with the above template +// function. +bool PredFunction1Int(int v1) { + return v1 > 0; +} +bool PredFunction1Bool(Bool v1) { + return v1 > 0; +} + +// A unary predicate functor. +struct PredFunctor1 { + template + bool operator()(const T1& v1) { + return v1 > 0; + } +}; + +// A unary predicate-formatter function. +template +testing::AssertionResult PredFormatFunction1(const char* e1, + const T1& v1) { + if (PredFunction1(v1)) + return testing::AssertionSuccess(); + + return testing::AssertionFailure() + << e1 + << " is expected to be positive, but evaluates to " + << v1 << "."; +} + +// A unary predicate-formatter functor. +struct PredFormatFunctor1 { + template + testing::AssertionResult operator()(const char* e1, + const T1& v1) const { + return PredFormatFunction1(e1, v1); + } +}; + +// Tests for {EXPECT|ASSERT}_PRED_FORMAT1. + +class Predicate1Test : public testing::Test { + protected: + virtual void SetUp() { + expected_to_finish_ = true; + finished_ = false; + n1_ = 0; + } + + virtual void TearDown() { + // Verifies that each of the predicate's arguments was evaluated + // exactly once. + EXPECT_EQ(1, n1_) << + "The predicate assertion didn't evaluate argument 2 " + "exactly once."; + + // Verifies that the control flow in the test function is expected. + if (expected_to_finish_ && !finished_) { + FAIL() << "The predicate assertion unexpactedly aborted the test."; + } else if (!expected_to_finish_ && finished_) { + FAIL() << "The failed predicate assertion didn't abort the test " + "as expected."; + } + } + + // true iff the test function is expected to run to finish. + static bool expected_to_finish_; + + // true iff the test function did run to finish. + static bool finished_; + + static int n1_; +}; + +bool Predicate1Test::expected_to_finish_; +bool Predicate1Test::finished_; +int Predicate1Test::n1_; + +typedef Predicate1Test EXPECT_PRED_FORMAT1Test; +typedef Predicate1Test ASSERT_PRED_FORMAT1Test; +typedef Predicate1Test EXPECT_PRED1Test; +typedef Predicate1Test ASSERT_PRED1Test; + +// Tests a successful EXPECT_PRED1 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED1Test, FunctionOnBuiltInTypeSuccess) { + EXPECT_PRED1(PredFunction1Int, + ++n1_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED1 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED1Test, FunctionOnUserTypeSuccess) { + EXPECT_PRED1(PredFunction1Bool, + Bool(++n1_)); + finished_ = true; +} + +// Tests a successful EXPECT_PRED1 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED1Test, FunctorOnBuiltInTypeSuccess) { + EXPECT_PRED1(PredFunctor1(), + ++n1_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED1 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED1Test, FunctorOnUserTypeSuccess) { + EXPECT_PRED1(PredFunctor1(), + Bool(++n1_)); + finished_ = true; +} + +// Tests a failed EXPECT_PRED1 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED1Test, FunctionOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED1(PredFunction1Int, + n1_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED1 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED1Test, FunctionOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED1(PredFunction1Bool, + Bool(n1_++)); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED1 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED1Test, FunctorOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED1(PredFunctor1(), + n1_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED1 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED1Test, FunctorOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED1(PredFunctor1(), + Bool(n1_++)); + finished_ = true; + }, ""); +} + +// Tests a successful ASSERT_PRED1 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED1Test, FunctionOnBuiltInTypeSuccess) { + ASSERT_PRED1(PredFunction1Int, + ++n1_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED1 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED1Test, FunctionOnUserTypeSuccess) { + ASSERT_PRED1(PredFunction1Bool, + Bool(++n1_)); + finished_ = true; +} + +// Tests a successful ASSERT_PRED1 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED1Test, FunctorOnBuiltInTypeSuccess) { + ASSERT_PRED1(PredFunctor1(), + ++n1_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED1 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED1Test, FunctorOnUserTypeSuccess) { + ASSERT_PRED1(PredFunctor1(), + Bool(++n1_)); + finished_ = true; +} + +// Tests a failed ASSERT_PRED1 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED1Test, FunctionOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED1(PredFunction1Int, + n1_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED1 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED1Test, FunctionOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED1(PredFunction1Bool, + Bool(n1_++)); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED1 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED1Test, FunctorOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED1(PredFunctor1(), + n1_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED1 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED1Test, FunctorOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED1(PredFunctor1(), + Bool(n1_++)); + finished_ = true; + }, ""); +} + +// Tests a successful EXPECT_PRED_FORMAT1 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT1Test, FunctionOnBuiltInTypeSuccess) { + EXPECT_PRED_FORMAT1(PredFormatFunction1, + ++n1_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT1 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT1Test, FunctionOnUserTypeSuccess) { + EXPECT_PRED_FORMAT1(PredFormatFunction1, + Bool(++n1_)); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT1 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT1Test, FunctorOnBuiltInTypeSuccess) { + EXPECT_PRED_FORMAT1(PredFormatFunctor1(), + ++n1_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT1 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT1Test, FunctorOnUserTypeSuccess) { + EXPECT_PRED_FORMAT1(PredFormatFunctor1(), + Bool(++n1_)); + finished_ = true; +} + +// Tests a failed EXPECT_PRED_FORMAT1 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT1Test, FunctionOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT1(PredFormatFunction1, + n1_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT1 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT1Test, FunctionOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT1(PredFormatFunction1, + Bool(n1_++)); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT1 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT1Test, FunctorOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT1(PredFormatFunctor1(), + n1_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT1 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT1Test, FunctorOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT1(PredFormatFunctor1(), + Bool(n1_++)); + finished_ = true; + }, ""); +} + +// Tests a successful ASSERT_PRED_FORMAT1 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT1Test, FunctionOnBuiltInTypeSuccess) { + ASSERT_PRED_FORMAT1(PredFormatFunction1, + ++n1_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT1 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT1Test, FunctionOnUserTypeSuccess) { + ASSERT_PRED_FORMAT1(PredFormatFunction1, + Bool(++n1_)); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT1 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT1Test, FunctorOnBuiltInTypeSuccess) { + ASSERT_PRED_FORMAT1(PredFormatFunctor1(), + ++n1_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT1 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT1Test, FunctorOnUserTypeSuccess) { + ASSERT_PRED_FORMAT1(PredFormatFunctor1(), + Bool(++n1_)); + finished_ = true; +} + +// Tests a failed ASSERT_PRED_FORMAT1 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT1Test, FunctionOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT1(PredFormatFunction1, + n1_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT1 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT1Test, FunctionOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT1(PredFormatFunction1, + Bool(n1_++)); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT1 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT1Test, FunctorOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT1(PredFormatFunctor1(), + n1_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT1 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT1Test, FunctorOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT1(PredFormatFunctor1(), + Bool(n1_++)); + finished_ = true; + }, ""); +} +// Sample functions/functors for testing binary predicate assertions. + +// A binary predicate function. +template +bool PredFunction2(T1 v1, T2 v2) { + return v1 + v2 > 0; +} + +// The following two functions are needed to circumvent a bug in +// gcc 2.95.3, which sometimes has problem with the above template +// function. +bool PredFunction2Int(int v1, int v2) { + return v1 + v2 > 0; +} +bool PredFunction2Bool(Bool v1, Bool v2) { + return v1 + v2 > 0; +} + +// A binary predicate functor. +struct PredFunctor2 { + template + bool operator()(const T1& v1, + const T2& v2) { + return v1 + v2 > 0; + } +}; + +// A binary predicate-formatter function. +template +testing::AssertionResult PredFormatFunction2(const char* e1, + const char* e2, + const T1& v1, + const T2& v2) { + if (PredFunction2(v1, v2)) + return testing::AssertionSuccess(); + + return testing::AssertionFailure() + << e1 << " + " << e2 + << " is expected to be positive, but evaluates to " + << v1 + v2 << "."; +} + +// A binary predicate-formatter functor. +struct PredFormatFunctor2 { + template + testing::AssertionResult operator()(const char* e1, + const char* e2, + const T1& v1, + const T2& v2) const { + return PredFormatFunction2(e1, e2, v1, v2); + } +}; + +// Tests for {EXPECT|ASSERT}_PRED_FORMAT2. + +class Predicate2Test : public testing::Test { + protected: + virtual void SetUp() { + expected_to_finish_ = true; + finished_ = false; + n1_ = n2_ = 0; + } + + virtual void TearDown() { + // Verifies that each of the predicate's arguments was evaluated + // exactly once. + EXPECT_EQ(1, n1_) << + "The predicate assertion didn't evaluate argument 2 " + "exactly once."; + EXPECT_EQ(1, n2_) << + "The predicate assertion didn't evaluate argument 3 " + "exactly once."; + + // Verifies that the control flow in the test function is expected. + if (expected_to_finish_ && !finished_) { + FAIL() << "The predicate assertion unexpactedly aborted the test."; + } else if (!expected_to_finish_ && finished_) { + FAIL() << "The failed predicate assertion didn't abort the test " + "as expected."; + } + } + + // true iff the test function is expected to run to finish. + static bool expected_to_finish_; + + // true iff the test function did run to finish. + static bool finished_; + + static int n1_; + static int n2_; +}; + +bool Predicate2Test::expected_to_finish_; +bool Predicate2Test::finished_; +int Predicate2Test::n1_; +int Predicate2Test::n2_; + +typedef Predicate2Test EXPECT_PRED_FORMAT2Test; +typedef Predicate2Test ASSERT_PRED_FORMAT2Test; +typedef Predicate2Test EXPECT_PRED2Test; +typedef Predicate2Test ASSERT_PRED2Test; + +// Tests a successful EXPECT_PRED2 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED2Test, FunctionOnBuiltInTypeSuccess) { + EXPECT_PRED2(PredFunction2Int, + ++n1_, + ++n2_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED2 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED2Test, FunctionOnUserTypeSuccess) { + EXPECT_PRED2(PredFunction2Bool, + Bool(++n1_), + Bool(++n2_)); + finished_ = true; +} + +// Tests a successful EXPECT_PRED2 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED2Test, FunctorOnBuiltInTypeSuccess) { + EXPECT_PRED2(PredFunctor2(), + ++n1_, + ++n2_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED2 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED2Test, FunctorOnUserTypeSuccess) { + EXPECT_PRED2(PredFunctor2(), + Bool(++n1_), + Bool(++n2_)); + finished_ = true; +} + +// Tests a failed EXPECT_PRED2 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED2Test, FunctionOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED2(PredFunction2Int, + n1_++, + n2_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED2 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED2Test, FunctionOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED2(PredFunction2Bool, + Bool(n1_++), + Bool(n2_++)); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED2 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED2Test, FunctorOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED2(PredFunctor2(), + n1_++, + n2_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED2 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED2Test, FunctorOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED2(PredFunctor2(), + Bool(n1_++), + Bool(n2_++)); + finished_ = true; + }, ""); +} + +// Tests a successful ASSERT_PRED2 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED2Test, FunctionOnBuiltInTypeSuccess) { + ASSERT_PRED2(PredFunction2Int, + ++n1_, + ++n2_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED2 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED2Test, FunctionOnUserTypeSuccess) { + ASSERT_PRED2(PredFunction2Bool, + Bool(++n1_), + Bool(++n2_)); + finished_ = true; +} + +// Tests a successful ASSERT_PRED2 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED2Test, FunctorOnBuiltInTypeSuccess) { + ASSERT_PRED2(PredFunctor2(), + ++n1_, + ++n2_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED2 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED2Test, FunctorOnUserTypeSuccess) { + ASSERT_PRED2(PredFunctor2(), + Bool(++n1_), + Bool(++n2_)); + finished_ = true; +} + +// Tests a failed ASSERT_PRED2 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED2Test, FunctionOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED2(PredFunction2Int, + n1_++, + n2_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED2 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED2Test, FunctionOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED2(PredFunction2Bool, + Bool(n1_++), + Bool(n2_++)); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED2 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED2Test, FunctorOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED2(PredFunctor2(), + n1_++, + n2_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED2 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED2Test, FunctorOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED2(PredFunctor2(), + Bool(n1_++), + Bool(n2_++)); + finished_ = true; + }, ""); +} + +// Tests a successful EXPECT_PRED_FORMAT2 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT2Test, FunctionOnBuiltInTypeSuccess) { + EXPECT_PRED_FORMAT2(PredFormatFunction2, + ++n1_, + ++n2_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT2 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT2Test, FunctionOnUserTypeSuccess) { + EXPECT_PRED_FORMAT2(PredFormatFunction2, + Bool(++n1_), + Bool(++n2_)); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT2 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT2Test, FunctorOnBuiltInTypeSuccess) { + EXPECT_PRED_FORMAT2(PredFormatFunctor2(), + ++n1_, + ++n2_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT2 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT2Test, FunctorOnUserTypeSuccess) { + EXPECT_PRED_FORMAT2(PredFormatFunctor2(), + Bool(++n1_), + Bool(++n2_)); + finished_ = true; +} + +// Tests a failed EXPECT_PRED_FORMAT2 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT2Test, FunctionOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT2(PredFormatFunction2, + n1_++, + n2_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT2 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT2Test, FunctionOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT2(PredFormatFunction2, + Bool(n1_++), + Bool(n2_++)); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT2 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT2Test, FunctorOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT2(PredFormatFunctor2(), + n1_++, + n2_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT2 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT2Test, FunctorOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT2(PredFormatFunctor2(), + Bool(n1_++), + Bool(n2_++)); + finished_ = true; + }, ""); +} + +// Tests a successful ASSERT_PRED_FORMAT2 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT2Test, FunctionOnBuiltInTypeSuccess) { + ASSERT_PRED_FORMAT2(PredFormatFunction2, + ++n1_, + ++n2_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT2 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT2Test, FunctionOnUserTypeSuccess) { + ASSERT_PRED_FORMAT2(PredFormatFunction2, + Bool(++n1_), + Bool(++n2_)); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT2 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT2Test, FunctorOnBuiltInTypeSuccess) { + ASSERT_PRED_FORMAT2(PredFormatFunctor2(), + ++n1_, + ++n2_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT2 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT2Test, FunctorOnUserTypeSuccess) { + ASSERT_PRED_FORMAT2(PredFormatFunctor2(), + Bool(++n1_), + Bool(++n2_)); + finished_ = true; +} + +// Tests a failed ASSERT_PRED_FORMAT2 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT2Test, FunctionOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT2(PredFormatFunction2, + n1_++, + n2_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT2 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT2Test, FunctionOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT2(PredFormatFunction2, + Bool(n1_++), + Bool(n2_++)); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT2 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT2Test, FunctorOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT2(PredFormatFunctor2(), + n1_++, + n2_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT2 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT2Test, FunctorOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT2(PredFormatFunctor2(), + Bool(n1_++), + Bool(n2_++)); + finished_ = true; + }, ""); +} +// Sample functions/functors for testing ternary predicate assertions. + +// A ternary predicate function. +template +bool PredFunction3(T1 v1, T2 v2, T3 v3) { + return v1 + v2 + v3 > 0; +} + +// The following two functions are needed to circumvent a bug in +// gcc 2.95.3, which sometimes has problem with the above template +// function. +bool PredFunction3Int(int v1, int v2, int v3) { + return v1 + v2 + v3 > 0; +} +bool PredFunction3Bool(Bool v1, Bool v2, Bool v3) { + return v1 + v2 + v3 > 0; +} + +// A ternary predicate functor. +struct PredFunctor3 { + template + bool operator()(const T1& v1, + const T2& v2, + const T3& v3) { + return v1 + v2 + v3 > 0; + } +}; + +// A ternary predicate-formatter function. +template +testing::AssertionResult PredFormatFunction3(const char* e1, + const char* e2, + const char* e3, + const T1& v1, + const T2& v2, + const T3& v3) { + if (PredFunction3(v1, v2, v3)) + return testing::AssertionSuccess(); + + return testing::AssertionFailure() + << e1 << " + " << e2 << " + " << e3 + << " is expected to be positive, but evaluates to " + << v1 + v2 + v3 << "."; +} + +// A ternary predicate-formatter functor. +struct PredFormatFunctor3 { + template + testing::AssertionResult operator()(const char* e1, + const char* e2, + const char* e3, + const T1& v1, + const T2& v2, + const T3& v3) const { + return PredFormatFunction3(e1, e2, e3, v1, v2, v3); + } +}; + +// Tests for {EXPECT|ASSERT}_PRED_FORMAT3. + +class Predicate3Test : public testing::Test { + protected: + virtual void SetUp() { + expected_to_finish_ = true; + finished_ = false; + n1_ = n2_ = n3_ = 0; + } + + virtual void TearDown() { + // Verifies that each of the predicate's arguments was evaluated + // exactly once. + EXPECT_EQ(1, n1_) << + "The predicate assertion didn't evaluate argument 2 " + "exactly once."; + EXPECT_EQ(1, n2_) << + "The predicate assertion didn't evaluate argument 3 " + "exactly once."; + EXPECT_EQ(1, n3_) << + "The predicate assertion didn't evaluate argument 4 " + "exactly once."; + + // Verifies that the control flow in the test function is expected. + if (expected_to_finish_ && !finished_) { + FAIL() << "The predicate assertion unexpactedly aborted the test."; + } else if (!expected_to_finish_ && finished_) { + FAIL() << "The failed predicate assertion didn't abort the test " + "as expected."; + } + } + + // true iff the test function is expected to run to finish. + static bool expected_to_finish_; + + // true iff the test function did run to finish. + static bool finished_; + + static int n1_; + static int n2_; + static int n3_; +}; + +bool Predicate3Test::expected_to_finish_; +bool Predicate3Test::finished_; +int Predicate3Test::n1_; +int Predicate3Test::n2_; +int Predicate3Test::n3_; + +typedef Predicate3Test EXPECT_PRED_FORMAT3Test; +typedef Predicate3Test ASSERT_PRED_FORMAT3Test; +typedef Predicate3Test EXPECT_PRED3Test; +typedef Predicate3Test ASSERT_PRED3Test; + +// Tests a successful EXPECT_PRED3 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED3Test, FunctionOnBuiltInTypeSuccess) { + EXPECT_PRED3(PredFunction3Int, + ++n1_, + ++n2_, + ++n3_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED3 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED3Test, FunctionOnUserTypeSuccess) { + EXPECT_PRED3(PredFunction3Bool, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_)); + finished_ = true; +} + +// Tests a successful EXPECT_PRED3 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED3Test, FunctorOnBuiltInTypeSuccess) { + EXPECT_PRED3(PredFunctor3(), + ++n1_, + ++n2_, + ++n3_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED3 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED3Test, FunctorOnUserTypeSuccess) { + EXPECT_PRED3(PredFunctor3(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_)); + finished_ = true; +} + +// Tests a failed EXPECT_PRED3 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED3Test, FunctionOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED3(PredFunction3Int, + n1_++, + n2_++, + n3_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED3 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED3Test, FunctionOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED3(PredFunction3Bool, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++)); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED3 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED3Test, FunctorOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED3(PredFunctor3(), + n1_++, + n2_++, + n3_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED3 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED3Test, FunctorOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED3(PredFunctor3(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++)); + finished_ = true; + }, ""); +} + +// Tests a successful ASSERT_PRED3 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED3Test, FunctionOnBuiltInTypeSuccess) { + ASSERT_PRED3(PredFunction3Int, + ++n1_, + ++n2_, + ++n3_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED3 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED3Test, FunctionOnUserTypeSuccess) { + ASSERT_PRED3(PredFunction3Bool, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_)); + finished_ = true; +} + +// Tests a successful ASSERT_PRED3 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED3Test, FunctorOnBuiltInTypeSuccess) { + ASSERT_PRED3(PredFunctor3(), + ++n1_, + ++n2_, + ++n3_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED3 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED3Test, FunctorOnUserTypeSuccess) { + ASSERT_PRED3(PredFunctor3(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_)); + finished_ = true; +} + +// Tests a failed ASSERT_PRED3 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED3Test, FunctionOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED3(PredFunction3Int, + n1_++, + n2_++, + n3_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED3 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED3Test, FunctionOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED3(PredFunction3Bool, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++)); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED3 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED3Test, FunctorOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED3(PredFunctor3(), + n1_++, + n2_++, + n3_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED3 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED3Test, FunctorOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED3(PredFunctor3(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++)); + finished_ = true; + }, ""); +} + +// Tests a successful EXPECT_PRED_FORMAT3 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT3Test, FunctionOnBuiltInTypeSuccess) { + EXPECT_PRED_FORMAT3(PredFormatFunction3, + ++n1_, + ++n2_, + ++n3_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT3 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT3Test, FunctionOnUserTypeSuccess) { + EXPECT_PRED_FORMAT3(PredFormatFunction3, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_)); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT3 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT3Test, FunctorOnBuiltInTypeSuccess) { + EXPECT_PRED_FORMAT3(PredFormatFunctor3(), + ++n1_, + ++n2_, + ++n3_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT3 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT3Test, FunctorOnUserTypeSuccess) { + EXPECT_PRED_FORMAT3(PredFormatFunctor3(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_)); + finished_ = true; +} + +// Tests a failed EXPECT_PRED_FORMAT3 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT3Test, FunctionOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT3(PredFormatFunction3, + n1_++, + n2_++, + n3_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT3 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT3Test, FunctionOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT3(PredFormatFunction3, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++)); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT3 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT3Test, FunctorOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT3(PredFormatFunctor3(), + n1_++, + n2_++, + n3_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT3 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT3Test, FunctorOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT3(PredFormatFunctor3(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++)); + finished_ = true; + }, ""); +} + +// Tests a successful ASSERT_PRED_FORMAT3 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT3Test, FunctionOnBuiltInTypeSuccess) { + ASSERT_PRED_FORMAT3(PredFormatFunction3, + ++n1_, + ++n2_, + ++n3_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT3 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT3Test, FunctionOnUserTypeSuccess) { + ASSERT_PRED_FORMAT3(PredFormatFunction3, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_)); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT3 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT3Test, FunctorOnBuiltInTypeSuccess) { + ASSERT_PRED_FORMAT3(PredFormatFunctor3(), + ++n1_, + ++n2_, + ++n3_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT3 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT3Test, FunctorOnUserTypeSuccess) { + ASSERT_PRED_FORMAT3(PredFormatFunctor3(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_)); + finished_ = true; +} + +// Tests a failed ASSERT_PRED_FORMAT3 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT3Test, FunctionOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT3(PredFormatFunction3, + n1_++, + n2_++, + n3_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT3 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT3Test, FunctionOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT3(PredFormatFunction3, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++)); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT3 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT3Test, FunctorOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT3(PredFormatFunctor3(), + n1_++, + n2_++, + n3_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT3 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT3Test, FunctorOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT3(PredFormatFunctor3(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++)); + finished_ = true; + }, ""); +} +// Sample functions/functors for testing 4-ary predicate assertions. + +// A 4-ary predicate function. +template +bool PredFunction4(T1 v1, T2 v2, T3 v3, T4 v4) { + return v1 + v2 + v3 + v4 > 0; +} + +// The following two functions are needed to circumvent a bug in +// gcc 2.95.3, which sometimes has problem with the above template +// function. +bool PredFunction4Int(int v1, int v2, int v3, int v4) { + return v1 + v2 + v3 + v4 > 0; +} +bool PredFunction4Bool(Bool v1, Bool v2, Bool v3, Bool v4) { + return v1 + v2 + v3 + v4 > 0; +} + +// A 4-ary predicate functor. +struct PredFunctor4 { + template + bool operator()(const T1& v1, + const T2& v2, + const T3& v3, + const T4& v4) { + return v1 + v2 + v3 + v4 > 0; + } +}; + +// A 4-ary predicate-formatter function. +template +testing::AssertionResult PredFormatFunction4(const char* e1, + const char* e2, + const char* e3, + const char* e4, + const T1& v1, + const T2& v2, + const T3& v3, + const T4& v4) { + if (PredFunction4(v1, v2, v3, v4)) + return testing::AssertionSuccess(); + + return testing::AssertionFailure() + << e1 << " + " << e2 << " + " << e3 << " + " << e4 + << " is expected to be positive, but evaluates to " + << v1 + v2 + v3 + v4 << "."; +} + +// A 4-ary predicate-formatter functor. +struct PredFormatFunctor4 { + template + testing::AssertionResult operator()(const char* e1, + const char* e2, + const char* e3, + const char* e4, + const T1& v1, + const T2& v2, + const T3& v3, + const T4& v4) const { + return PredFormatFunction4(e1, e2, e3, e4, v1, v2, v3, v4); + } +}; + +// Tests for {EXPECT|ASSERT}_PRED_FORMAT4. + +class Predicate4Test : public testing::Test { + protected: + virtual void SetUp() { + expected_to_finish_ = true; + finished_ = false; + n1_ = n2_ = n3_ = n4_ = 0; + } + + virtual void TearDown() { + // Verifies that each of the predicate's arguments was evaluated + // exactly once. + EXPECT_EQ(1, n1_) << + "The predicate assertion didn't evaluate argument 2 " + "exactly once."; + EXPECT_EQ(1, n2_) << + "The predicate assertion didn't evaluate argument 3 " + "exactly once."; + EXPECT_EQ(1, n3_) << + "The predicate assertion didn't evaluate argument 4 " + "exactly once."; + EXPECT_EQ(1, n4_) << + "The predicate assertion didn't evaluate argument 5 " + "exactly once."; + + // Verifies that the control flow in the test function is expected. + if (expected_to_finish_ && !finished_) { + FAIL() << "The predicate assertion unexpactedly aborted the test."; + } else if (!expected_to_finish_ && finished_) { + FAIL() << "The failed predicate assertion didn't abort the test " + "as expected."; + } + } + + // true iff the test function is expected to run to finish. + static bool expected_to_finish_; + + // true iff the test function did run to finish. + static bool finished_; + + static int n1_; + static int n2_; + static int n3_; + static int n4_; +}; + +bool Predicate4Test::expected_to_finish_; +bool Predicate4Test::finished_; +int Predicate4Test::n1_; +int Predicate4Test::n2_; +int Predicate4Test::n3_; +int Predicate4Test::n4_; + +typedef Predicate4Test EXPECT_PRED_FORMAT4Test; +typedef Predicate4Test ASSERT_PRED_FORMAT4Test; +typedef Predicate4Test EXPECT_PRED4Test; +typedef Predicate4Test ASSERT_PRED4Test; + +// Tests a successful EXPECT_PRED4 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED4Test, FunctionOnBuiltInTypeSuccess) { + EXPECT_PRED4(PredFunction4Int, + ++n1_, + ++n2_, + ++n3_, + ++n4_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED4 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED4Test, FunctionOnUserTypeSuccess) { + EXPECT_PRED4(PredFunction4Bool, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_)); + finished_ = true; +} + +// Tests a successful EXPECT_PRED4 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED4Test, FunctorOnBuiltInTypeSuccess) { + EXPECT_PRED4(PredFunctor4(), + ++n1_, + ++n2_, + ++n3_, + ++n4_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED4 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED4Test, FunctorOnUserTypeSuccess) { + EXPECT_PRED4(PredFunctor4(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_)); + finished_ = true; +} + +// Tests a failed EXPECT_PRED4 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED4Test, FunctionOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED4(PredFunction4Int, + n1_++, + n2_++, + n3_++, + n4_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED4 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED4Test, FunctionOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED4(PredFunction4Bool, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++)); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED4 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED4Test, FunctorOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED4(PredFunctor4(), + n1_++, + n2_++, + n3_++, + n4_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED4 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED4Test, FunctorOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED4(PredFunctor4(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++)); + finished_ = true; + }, ""); +} + +// Tests a successful ASSERT_PRED4 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED4Test, FunctionOnBuiltInTypeSuccess) { + ASSERT_PRED4(PredFunction4Int, + ++n1_, + ++n2_, + ++n3_, + ++n4_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED4 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED4Test, FunctionOnUserTypeSuccess) { + ASSERT_PRED4(PredFunction4Bool, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_)); + finished_ = true; +} + +// Tests a successful ASSERT_PRED4 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED4Test, FunctorOnBuiltInTypeSuccess) { + ASSERT_PRED4(PredFunctor4(), + ++n1_, + ++n2_, + ++n3_, + ++n4_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED4 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED4Test, FunctorOnUserTypeSuccess) { + ASSERT_PRED4(PredFunctor4(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_)); + finished_ = true; +} + +// Tests a failed ASSERT_PRED4 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED4Test, FunctionOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED4(PredFunction4Int, + n1_++, + n2_++, + n3_++, + n4_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED4 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED4Test, FunctionOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED4(PredFunction4Bool, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++)); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED4 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED4Test, FunctorOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED4(PredFunctor4(), + n1_++, + n2_++, + n3_++, + n4_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED4 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED4Test, FunctorOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED4(PredFunctor4(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++)); + finished_ = true; + }, ""); +} + +// Tests a successful EXPECT_PRED_FORMAT4 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT4Test, FunctionOnBuiltInTypeSuccess) { + EXPECT_PRED_FORMAT4(PredFormatFunction4, + ++n1_, + ++n2_, + ++n3_, + ++n4_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT4 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT4Test, FunctionOnUserTypeSuccess) { + EXPECT_PRED_FORMAT4(PredFormatFunction4, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_)); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT4 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT4Test, FunctorOnBuiltInTypeSuccess) { + EXPECT_PRED_FORMAT4(PredFormatFunctor4(), + ++n1_, + ++n2_, + ++n3_, + ++n4_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT4 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT4Test, FunctorOnUserTypeSuccess) { + EXPECT_PRED_FORMAT4(PredFormatFunctor4(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_)); + finished_ = true; +} + +// Tests a failed EXPECT_PRED_FORMAT4 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT4Test, FunctionOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT4(PredFormatFunction4, + n1_++, + n2_++, + n3_++, + n4_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT4 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT4Test, FunctionOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT4(PredFormatFunction4, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++)); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT4 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT4Test, FunctorOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT4(PredFormatFunctor4(), + n1_++, + n2_++, + n3_++, + n4_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT4 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT4Test, FunctorOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT4(PredFormatFunctor4(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++)); + finished_ = true; + }, ""); +} + +// Tests a successful ASSERT_PRED_FORMAT4 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT4Test, FunctionOnBuiltInTypeSuccess) { + ASSERT_PRED_FORMAT4(PredFormatFunction4, + ++n1_, + ++n2_, + ++n3_, + ++n4_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT4 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT4Test, FunctionOnUserTypeSuccess) { + ASSERT_PRED_FORMAT4(PredFormatFunction4, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_)); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT4 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT4Test, FunctorOnBuiltInTypeSuccess) { + ASSERT_PRED_FORMAT4(PredFormatFunctor4(), + ++n1_, + ++n2_, + ++n3_, + ++n4_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT4 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT4Test, FunctorOnUserTypeSuccess) { + ASSERT_PRED_FORMAT4(PredFormatFunctor4(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_)); + finished_ = true; +} + +// Tests a failed ASSERT_PRED_FORMAT4 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT4Test, FunctionOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT4(PredFormatFunction4, + n1_++, + n2_++, + n3_++, + n4_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT4 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT4Test, FunctionOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT4(PredFormatFunction4, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++)); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT4 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT4Test, FunctorOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT4(PredFormatFunctor4(), + n1_++, + n2_++, + n3_++, + n4_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT4 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT4Test, FunctorOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT4(PredFormatFunctor4(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++)); + finished_ = true; + }, ""); +} +// Sample functions/functors for testing 5-ary predicate assertions. + +// A 5-ary predicate function. +template +bool PredFunction5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) { + return v1 + v2 + v3 + v4 + v5 > 0; +} + +// The following two functions are needed to circumvent a bug in +// gcc 2.95.3, which sometimes has problem with the above template +// function. +bool PredFunction5Int(int v1, int v2, int v3, int v4, int v5) { + return v1 + v2 + v3 + v4 + v5 > 0; +} +bool PredFunction5Bool(Bool v1, Bool v2, Bool v3, Bool v4, Bool v5) { + return v1 + v2 + v3 + v4 + v5 > 0; +} + +// A 5-ary predicate functor. +struct PredFunctor5 { + template + bool operator()(const T1& v1, + const T2& v2, + const T3& v3, + const T4& v4, + const T5& v5) { + return v1 + v2 + v3 + v4 + v5 > 0; + } +}; + +// A 5-ary predicate-formatter function. +template +testing::AssertionResult PredFormatFunction5(const char* e1, + const char* e2, + const char* e3, + const char* e4, + const char* e5, + const T1& v1, + const T2& v2, + const T3& v3, + const T4& v4, + const T5& v5) { + if (PredFunction5(v1, v2, v3, v4, v5)) + return testing::AssertionSuccess(); + + return testing::AssertionFailure() + << e1 << " + " << e2 << " + " << e3 << " + " << e4 << " + " << e5 + << " is expected to be positive, but evaluates to " + << v1 + v2 + v3 + v4 + v5 << "."; +} + +// A 5-ary predicate-formatter functor. +struct PredFormatFunctor5 { + template + testing::AssertionResult operator()(const char* e1, + const char* e2, + const char* e3, + const char* e4, + const char* e5, + const T1& v1, + const T2& v2, + const T3& v3, + const T4& v4, + const T5& v5) const { + return PredFormatFunction5(e1, e2, e3, e4, e5, v1, v2, v3, v4, v5); + } +}; + +// Tests for {EXPECT|ASSERT}_PRED_FORMAT5. + +class Predicate5Test : public testing::Test { + protected: + virtual void SetUp() { + expected_to_finish_ = true; + finished_ = false; + n1_ = n2_ = n3_ = n4_ = n5_ = 0; + } + + virtual void TearDown() { + // Verifies that each of the predicate's arguments was evaluated + // exactly once. + EXPECT_EQ(1, n1_) << + "The predicate assertion didn't evaluate argument 2 " + "exactly once."; + EXPECT_EQ(1, n2_) << + "The predicate assertion didn't evaluate argument 3 " + "exactly once."; + EXPECT_EQ(1, n3_) << + "The predicate assertion didn't evaluate argument 4 " + "exactly once."; + EXPECT_EQ(1, n4_) << + "The predicate assertion didn't evaluate argument 5 " + "exactly once."; + EXPECT_EQ(1, n5_) << + "The predicate assertion didn't evaluate argument 6 " + "exactly once."; + + // Verifies that the control flow in the test function is expected. + if (expected_to_finish_ && !finished_) { + FAIL() << "The predicate assertion unexpactedly aborted the test."; + } else if (!expected_to_finish_ && finished_) { + FAIL() << "The failed predicate assertion didn't abort the test " + "as expected."; + } + } + + // true iff the test function is expected to run to finish. + static bool expected_to_finish_; + + // true iff the test function did run to finish. + static bool finished_; + + static int n1_; + static int n2_; + static int n3_; + static int n4_; + static int n5_; +}; + +bool Predicate5Test::expected_to_finish_; +bool Predicate5Test::finished_; +int Predicate5Test::n1_; +int Predicate5Test::n2_; +int Predicate5Test::n3_; +int Predicate5Test::n4_; +int Predicate5Test::n5_; + +typedef Predicate5Test EXPECT_PRED_FORMAT5Test; +typedef Predicate5Test ASSERT_PRED_FORMAT5Test; +typedef Predicate5Test EXPECT_PRED5Test; +typedef Predicate5Test ASSERT_PRED5Test; + +// Tests a successful EXPECT_PRED5 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED5Test, FunctionOnBuiltInTypeSuccess) { + EXPECT_PRED5(PredFunction5Int, + ++n1_, + ++n2_, + ++n3_, + ++n4_, + ++n5_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED5 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED5Test, FunctionOnUserTypeSuccess) { + EXPECT_PRED5(PredFunction5Bool, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_), + Bool(++n5_)); + finished_ = true; +} + +// Tests a successful EXPECT_PRED5 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED5Test, FunctorOnBuiltInTypeSuccess) { + EXPECT_PRED5(PredFunctor5(), + ++n1_, + ++n2_, + ++n3_, + ++n4_, + ++n5_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED5 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED5Test, FunctorOnUserTypeSuccess) { + EXPECT_PRED5(PredFunctor5(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_), + Bool(++n5_)); + finished_ = true; +} + +// Tests a failed EXPECT_PRED5 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED5Test, FunctionOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED5(PredFunction5Int, + n1_++, + n2_++, + n3_++, + n4_++, + n5_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED5 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED5Test, FunctionOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED5(PredFunction5Bool, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++), + Bool(n5_++)); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED5 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED5Test, FunctorOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED5(PredFunctor5(), + n1_++, + n2_++, + n3_++, + n4_++, + n5_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED5 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED5Test, FunctorOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED5(PredFunctor5(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++), + Bool(n5_++)); + finished_ = true; + }, ""); +} + +// Tests a successful ASSERT_PRED5 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED5Test, FunctionOnBuiltInTypeSuccess) { + ASSERT_PRED5(PredFunction5Int, + ++n1_, + ++n2_, + ++n3_, + ++n4_, + ++n5_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED5 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED5Test, FunctionOnUserTypeSuccess) { + ASSERT_PRED5(PredFunction5Bool, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_), + Bool(++n5_)); + finished_ = true; +} + +// Tests a successful ASSERT_PRED5 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED5Test, FunctorOnBuiltInTypeSuccess) { + ASSERT_PRED5(PredFunctor5(), + ++n1_, + ++n2_, + ++n3_, + ++n4_, + ++n5_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED5 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED5Test, FunctorOnUserTypeSuccess) { + ASSERT_PRED5(PredFunctor5(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_), + Bool(++n5_)); + finished_ = true; +} + +// Tests a failed ASSERT_PRED5 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED5Test, FunctionOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED5(PredFunction5Int, + n1_++, + n2_++, + n3_++, + n4_++, + n5_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED5 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED5Test, FunctionOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED5(PredFunction5Bool, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++), + Bool(n5_++)); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED5 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED5Test, FunctorOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED5(PredFunctor5(), + n1_++, + n2_++, + n3_++, + n4_++, + n5_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED5 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED5Test, FunctorOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED5(PredFunctor5(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++), + Bool(n5_++)); + finished_ = true; + }, ""); +} + +// Tests a successful EXPECT_PRED_FORMAT5 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT5Test, FunctionOnBuiltInTypeSuccess) { + EXPECT_PRED_FORMAT5(PredFormatFunction5, + ++n1_, + ++n2_, + ++n3_, + ++n4_, + ++n5_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT5 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT5Test, FunctionOnUserTypeSuccess) { + EXPECT_PRED_FORMAT5(PredFormatFunction5, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_), + Bool(++n5_)); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT5 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT5Test, FunctorOnBuiltInTypeSuccess) { + EXPECT_PRED_FORMAT5(PredFormatFunctor5(), + ++n1_, + ++n2_, + ++n3_, + ++n4_, + ++n5_); + finished_ = true; +} + +// Tests a successful EXPECT_PRED_FORMAT5 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT5Test, FunctorOnUserTypeSuccess) { + EXPECT_PRED_FORMAT5(PredFormatFunctor5(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_), + Bool(++n5_)); + finished_ = true; +} + +// Tests a failed EXPECT_PRED_FORMAT5 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT5Test, FunctionOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT5(PredFormatFunction5, + n1_++, + n2_++, + n3_++, + n4_++, + n5_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT5 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT5Test, FunctionOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT5(PredFormatFunction5, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++), + Bool(n5_++)); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT5 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(EXPECT_PRED_FORMAT5Test, FunctorOnBuiltInTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT5(PredFormatFunctor5(), + n1_++, + n2_++, + n3_++, + n4_++, + n5_++); + finished_ = true; + }, ""); +} + +// Tests a failed EXPECT_PRED_FORMAT5 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(EXPECT_PRED_FORMAT5Test, FunctorOnUserTypeFailure) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT5(PredFormatFunctor5(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++), + Bool(n5_++)); + finished_ = true; + }, ""); +} + +// Tests a successful ASSERT_PRED_FORMAT5 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT5Test, FunctionOnBuiltInTypeSuccess) { + ASSERT_PRED_FORMAT5(PredFormatFunction5, + ++n1_, + ++n2_, + ++n3_, + ++n4_, + ++n5_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT5 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT5Test, FunctionOnUserTypeSuccess) { + ASSERT_PRED_FORMAT5(PredFormatFunction5, + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_), + Bool(++n5_)); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT5 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT5Test, FunctorOnBuiltInTypeSuccess) { + ASSERT_PRED_FORMAT5(PredFormatFunctor5(), + ++n1_, + ++n2_, + ++n3_, + ++n4_, + ++n5_); + finished_ = true; +} + +// Tests a successful ASSERT_PRED_FORMAT5 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT5Test, FunctorOnUserTypeSuccess) { + ASSERT_PRED_FORMAT5(PredFormatFunctor5(), + Bool(++n1_), + Bool(++n2_), + Bool(++n3_), + Bool(++n4_), + Bool(++n5_)); + finished_ = true; +} + +// Tests a failed ASSERT_PRED_FORMAT5 where the +// predicate-formatter is a function on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT5Test, FunctionOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT5(PredFormatFunction5, + n1_++, + n2_++, + n3_++, + n4_++, + n5_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT5 where the +// predicate-formatter is a function on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT5Test, FunctionOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT5(PredFormatFunction5, + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++), + Bool(n5_++)); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT5 where the +// predicate-formatter is a functor on a built-in type (int). +TEST_F(ASSERT_PRED_FORMAT5Test, FunctorOnBuiltInTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT5(PredFormatFunctor5(), + n1_++, + n2_++, + n3_++, + n4_++, + n5_++); + finished_ = true; + }, ""); +} + +// Tests a failed ASSERT_PRED_FORMAT5 where the +// predicate-formatter is a functor on a user-defined type (Bool). +TEST_F(ASSERT_PRED_FORMAT5Test, FunctorOnUserTypeFailure) { + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT5(PredFormatFunctor5(), + Bool(n1_++), + Bool(n2_++), + Bool(n3_++), + Bool(n4_++), + Bool(n5_++)); + finished_ = true; + }, ""); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_premature_exit_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_premature_exit_test.cc new file mode 100644 index 000000000..f6b6be9ae --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_premature_exit_test.cc @@ -0,0 +1,141 @@ +// Copyright 2013, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Tests that Google Test manipulates the premature-exit-detection +// file correctly. + +#include + +#include "gtest/gtest.h" + +using ::testing::InitGoogleTest; +using ::testing::Test; +using ::testing::internal::posix::GetEnv; +using ::testing::internal::posix::Stat; +using ::testing::internal::posix::StatStruct; + +namespace { + +// Is the TEST_PREMATURE_EXIT_FILE environment variable expected to be +// set? +const bool kTestPrematureExitFileEnvVarShouldBeSet = false; + +class PrematureExitTest : public Test { + public: + // Returns true iff the given file exists. + static bool FileExists(const char* filepath) { + StatStruct stat; + return Stat(filepath, &stat) == 0; + } + + protected: + PrematureExitTest() { + premature_exit_file_path_ = GetEnv("TEST_PREMATURE_EXIT_FILE"); + + // Normalize NULL to "" for ease of handling. + if (premature_exit_file_path_ == NULL) { + premature_exit_file_path_ = ""; + } + } + + // Returns true iff the premature-exit file exists. + bool PrematureExitFileExists() const { + return FileExists(premature_exit_file_path_); + } + + const char* premature_exit_file_path_; +}; + +typedef PrematureExitTest PrematureExitDeathTest; + +// Tests that: +// - the premature-exit file exists during the execution of a +// death test (EXPECT_DEATH*), and +// - a death test doesn't interfere with the main test process's +// handling of the premature-exit file. +TEST_F(PrematureExitDeathTest, FileExistsDuringExecutionOfDeathTest) { + if (*premature_exit_file_path_ == '\0') { + return; + } + + EXPECT_DEATH_IF_SUPPORTED({ + // If the file exists, crash the process such that the main test + // process will catch the (expected) crash and report a success; + // otherwise don't crash, which will cause the main test process + // to report that the death test has failed. + if (PrematureExitFileExists()) { + exit(1); + } + }, ""); +} + +// Tests that TEST_PREMATURE_EXIT_FILE is set where it's expected to +// be set. +TEST_F(PrematureExitTest, TestPrematureExitFileEnvVarIsSet) { + if (kTestPrematureExitFileEnvVarShouldBeSet) { + const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE"); + ASSERT_TRUE(filepath != NULL); + ASSERT_NE(*filepath, '\0'); + } +} + +// Tests that the premature-exit file exists during the execution of a +// normal (non-death) test. +TEST_F(PrematureExitTest, PrematureExitFileExistsDuringTestExecution) { + if (*premature_exit_file_path_ == '\0') { + return; + } + + EXPECT_TRUE(PrematureExitFileExists()) + << " file " << premature_exit_file_path_ + << " should exist during test execution, but doesn't."; +} + +} // namespace + +int main(int argc, char **argv) { + InitGoogleTest(&argc, argv); + const int exit_code = RUN_ALL_TESTS(); + + // Test that the premature-exit file is deleted upon return from + // RUN_ALL_TESTS(). + const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE"); + if (filepath != NULL && *filepath != '\0') { + if (PrematureExitTest::FileExists(filepath)) { + printf( + "File %s shouldn't exist after the test program finishes, but does.", + filepath); + return 1; + } + } + + return exit_code; +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_prod_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_prod_test.cc new file mode 100644 index 000000000..060abce18 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_prod_test.cc @@ -0,0 +1,57 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Unit test for include/gtest/gtest_prod.h. + +#include "gtest/gtest.h" +#include "test/production.h" + +// Tests that private members can be accessed from a TEST declared as +// a friend of the class. +TEST(PrivateCodeTest, CanAccessPrivateMembers) { + PrivateCode a; + EXPECT_EQ(0, a.x_); + + a.set_x(1); + EXPECT_EQ(1, a.x_); +} + +typedef testing::Test PrivateCodeFixtureTest; + +// Tests that private members can be accessed from a TEST_F declared +// as a friend of the class. +TEST_F(PrivateCodeFixtureTest, CanAccessPrivateMembers) { + PrivateCode a; + EXPECT_EQ(0, a.x_); + + a.set_x(2); + EXPECT_EQ(2, a.x_); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_repeat_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_repeat_test.cc new file mode 100644 index 000000000..481012adc --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_repeat_test.cc @@ -0,0 +1,253 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Tests the --gtest_repeat=number flag. + +#include +#include +#include "gtest/gtest.h" + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +namespace testing { + +GTEST_DECLARE_string_(death_test_style); +GTEST_DECLARE_string_(filter); +GTEST_DECLARE_int32_(repeat); + +} // namespace testing + +using testing::GTEST_FLAG(death_test_style); +using testing::GTEST_FLAG(filter); +using testing::GTEST_FLAG(repeat); + +namespace { + +// We need this when we are testing Google Test itself and therefore +// cannot use Google Test assertions. +#define GTEST_CHECK_INT_EQ_(expected, actual) \ + do {\ + const int expected_val = (expected);\ + const int actual_val = (actual);\ + if (::testing::internal::IsTrue(expected_val != actual_val)) {\ + ::std::cout << "Value of: " #actual "\n"\ + << " Actual: " << actual_val << "\n"\ + << "Expected: " #expected "\n"\ + << "Which is: " << expected_val << "\n";\ + ::testing::internal::posix::Abort();\ + }\ + } while (::testing::internal::AlwaysFalse()) + + +// Used for verifying that global environment set-up and tear-down are +// inside the gtest_repeat loop. + +int g_environment_set_up_count = 0; +int g_environment_tear_down_count = 0; + +class MyEnvironment : public testing::Environment { + public: + MyEnvironment() {} + virtual void SetUp() { g_environment_set_up_count++; } + virtual void TearDown() { g_environment_tear_down_count++; } +}; + +// A test that should fail. + +int g_should_fail_count = 0; + +TEST(FooTest, ShouldFail) { + g_should_fail_count++; + EXPECT_EQ(0, 1) << "Expected failure."; +} + +// A test that should pass. + +int g_should_pass_count = 0; + +TEST(FooTest, ShouldPass) { + g_should_pass_count++; +} + +// A test that contains a thread-safe death test and a fast death +// test. It should pass. + +int g_death_test_count = 0; + +TEST(BarDeathTest, ThreadSafeAndFast) { + g_death_test_count++; + + GTEST_FLAG(death_test_style) = "threadsafe"; + EXPECT_DEATH_IF_SUPPORTED(::testing::internal::posix::Abort(), ""); + + GTEST_FLAG(death_test_style) = "fast"; + EXPECT_DEATH_IF_SUPPORTED(::testing::internal::posix::Abort(), ""); +} + +#if GTEST_HAS_PARAM_TEST +int g_param_test_count = 0; + +const int kNumberOfParamTests = 10; + +class MyParamTest : public testing::TestWithParam {}; + +TEST_P(MyParamTest, ShouldPass) { + // TODO(vladl@google.com): Make parameter value checking robust + // WRT order of tests. + GTEST_CHECK_INT_EQ_(g_param_test_count % kNumberOfParamTests, GetParam()); + g_param_test_count++; +} +INSTANTIATE_TEST_CASE_P(MyParamSequence, + MyParamTest, + testing::Range(0, kNumberOfParamTests)); +#endif // GTEST_HAS_PARAM_TEST + +// Resets the count for each test. +void ResetCounts() { + g_environment_set_up_count = 0; + g_environment_tear_down_count = 0; + g_should_fail_count = 0; + g_should_pass_count = 0; + g_death_test_count = 0; +#if GTEST_HAS_PARAM_TEST + g_param_test_count = 0; +#endif // GTEST_HAS_PARAM_TEST +} + +// Checks that the count for each test is expected. +void CheckCounts(int expected) { + GTEST_CHECK_INT_EQ_(expected, g_environment_set_up_count); + GTEST_CHECK_INT_EQ_(expected, g_environment_tear_down_count); + GTEST_CHECK_INT_EQ_(expected, g_should_fail_count); + GTEST_CHECK_INT_EQ_(expected, g_should_pass_count); + GTEST_CHECK_INT_EQ_(expected, g_death_test_count); +#if GTEST_HAS_PARAM_TEST + GTEST_CHECK_INT_EQ_(expected * kNumberOfParamTests, g_param_test_count); +#endif // GTEST_HAS_PARAM_TEST +} + +// Tests the behavior of Google Test when --gtest_repeat is not specified. +void TestRepeatUnspecified() { + ResetCounts(); + GTEST_CHECK_INT_EQ_(1, RUN_ALL_TESTS()); + CheckCounts(1); +} + +// Tests the behavior of Google Test when --gtest_repeat has the given value. +void TestRepeat(int repeat) { + GTEST_FLAG(repeat) = repeat; + + ResetCounts(); + GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); + CheckCounts(repeat); +} + +// Tests using --gtest_repeat when --gtest_filter specifies an empty +// set of tests. +void TestRepeatWithEmptyFilter(int repeat) { + GTEST_FLAG(repeat) = repeat; + GTEST_FLAG(filter) = "None"; + + ResetCounts(); + GTEST_CHECK_INT_EQ_(0, RUN_ALL_TESTS()); + CheckCounts(0); +} + +// Tests using --gtest_repeat when --gtest_filter specifies a set of +// successful tests. +void TestRepeatWithFilterForSuccessfulTests(int repeat) { + GTEST_FLAG(repeat) = repeat; + GTEST_FLAG(filter) = "*-*ShouldFail"; + + ResetCounts(); + GTEST_CHECK_INT_EQ_(0, RUN_ALL_TESTS()); + GTEST_CHECK_INT_EQ_(repeat, g_environment_set_up_count); + GTEST_CHECK_INT_EQ_(repeat, g_environment_tear_down_count); + GTEST_CHECK_INT_EQ_(0, g_should_fail_count); + GTEST_CHECK_INT_EQ_(repeat, g_should_pass_count); + GTEST_CHECK_INT_EQ_(repeat, g_death_test_count); +#if GTEST_HAS_PARAM_TEST + GTEST_CHECK_INT_EQ_(repeat * kNumberOfParamTests, g_param_test_count); +#endif // GTEST_HAS_PARAM_TEST +} + +// Tests using --gtest_repeat when --gtest_filter specifies a set of +// failed tests. +void TestRepeatWithFilterForFailedTests(int repeat) { + GTEST_FLAG(repeat) = repeat; + GTEST_FLAG(filter) = "*ShouldFail"; + + ResetCounts(); + GTEST_CHECK_INT_EQ_(1, RUN_ALL_TESTS()); + GTEST_CHECK_INT_EQ_(repeat, g_environment_set_up_count); + GTEST_CHECK_INT_EQ_(repeat, g_environment_tear_down_count); + GTEST_CHECK_INT_EQ_(repeat, g_should_fail_count); + GTEST_CHECK_INT_EQ_(0, g_should_pass_count); + GTEST_CHECK_INT_EQ_(0, g_death_test_count); +#if GTEST_HAS_PARAM_TEST + GTEST_CHECK_INT_EQ_(0, g_param_test_count); +#endif // GTEST_HAS_PARAM_TEST +} + +} // namespace + +int main(int argc, char **argv) { + testing::InitGoogleTest(&argc, argv); + testing::AddGlobalTestEnvironment(new MyEnvironment); + + TestRepeatUnspecified(); + TestRepeat(0); + TestRepeat(1); + TestRepeat(5); + + TestRepeatWithEmptyFilter(2); + TestRepeatWithEmptyFilter(3); + + TestRepeatWithFilterForSuccessfulTests(3); + + TestRepeatWithFilterForFailedTests(4); + + // It would be nice to verify that the tests indeed loop forever + // when GTEST_FLAG(repeat) is negative, but this test will be quite + // complicated to write. Since this flag is for interactive + // debugging only and doesn't affect the normal test result, such a + // test would be an overkill. + + printf("PASS\n"); + return 0; +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_shuffle_test.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_shuffle_test.py new file mode 100755 index 000000000..30d0303d1 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_shuffle_test.py @@ -0,0 +1,325 @@ +#!/usr/bin/env python +# +# Copyright 2009 Google Inc. All Rights Reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Verifies that test shuffling works.""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import os +import gtest_test_utils + +# Command to run the gtest_shuffle_test_ program. +COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_shuffle_test_') + +# The environment variables for test sharding. +TOTAL_SHARDS_ENV_VAR = 'GTEST_TOTAL_SHARDS' +SHARD_INDEX_ENV_VAR = 'GTEST_SHARD_INDEX' + +TEST_FILTER = 'A*.A:A*.B:C*' + +ALL_TESTS = [] +ACTIVE_TESTS = [] +FILTERED_TESTS = [] +SHARDED_TESTS = [] + +SHUFFLED_ALL_TESTS = [] +SHUFFLED_ACTIVE_TESTS = [] +SHUFFLED_FILTERED_TESTS = [] +SHUFFLED_SHARDED_TESTS = [] + + +def AlsoRunDisabledTestsFlag(): + return '--gtest_also_run_disabled_tests' + + +def FilterFlag(test_filter): + return '--gtest_filter=%s' % (test_filter,) + + +def RepeatFlag(n): + return '--gtest_repeat=%s' % (n,) + + +def ShuffleFlag(): + return '--gtest_shuffle' + + +def RandomSeedFlag(n): + return '--gtest_random_seed=%s' % (n,) + + +def RunAndReturnOutput(extra_env, args): + """Runs the test program and returns its output.""" + + environ_copy = os.environ.copy() + environ_copy.update(extra_env) + + return gtest_test_utils.Subprocess([COMMAND] + args, env=environ_copy).output + + +def GetTestsForAllIterations(extra_env, args): + """Runs the test program and returns a list of test lists. + + Args: + extra_env: a map from environment variables to their values + args: command line flags to pass to gtest_shuffle_test_ + + Returns: + A list where the i-th element is the list of tests run in the i-th + test iteration. + """ + + test_iterations = [] + for line in RunAndReturnOutput(extra_env, args).split('\n'): + if line.startswith('----'): + tests = [] + test_iterations.append(tests) + elif line.strip(): + tests.append(line.strip()) # 'TestCaseName.TestName' + + return test_iterations + + +def GetTestCases(tests): + """Returns a list of test cases in the given full test names. + + Args: + tests: a list of full test names + + Returns: + A list of test cases from 'tests', in their original order. + Consecutive duplicates are removed. + """ + + test_cases = [] + for test in tests: + test_case = test.split('.')[0] + if not test_case in test_cases: + test_cases.append(test_case) + + return test_cases + + +def CalculateTestLists(): + """Calculates the list of tests run under different flags.""" + + if not ALL_TESTS: + ALL_TESTS.extend( + GetTestsForAllIterations({}, [AlsoRunDisabledTestsFlag()])[0]) + + if not ACTIVE_TESTS: + ACTIVE_TESTS.extend(GetTestsForAllIterations({}, [])[0]) + + if not FILTERED_TESTS: + FILTERED_TESTS.extend( + GetTestsForAllIterations({}, [FilterFlag(TEST_FILTER)])[0]) + + if not SHARDED_TESTS: + SHARDED_TESTS.extend( + GetTestsForAllIterations({TOTAL_SHARDS_ENV_VAR: '3', + SHARD_INDEX_ENV_VAR: '1'}, + [])[0]) + + if not SHUFFLED_ALL_TESTS: + SHUFFLED_ALL_TESTS.extend(GetTestsForAllIterations( + {}, [AlsoRunDisabledTestsFlag(), ShuffleFlag(), RandomSeedFlag(1)])[0]) + + if not SHUFFLED_ACTIVE_TESTS: + SHUFFLED_ACTIVE_TESTS.extend(GetTestsForAllIterations( + {}, [ShuffleFlag(), RandomSeedFlag(1)])[0]) + + if not SHUFFLED_FILTERED_TESTS: + SHUFFLED_FILTERED_TESTS.extend(GetTestsForAllIterations( + {}, [ShuffleFlag(), RandomSeedFlag(1), FilterFlag(TEST_FILTER)])[0]) + + if not SHUFFLED_SHARDED_TESTS: + SHUFFLED_SHARDED_TESTS.extend( + GetTestsForAllIterations({TOTAL_SHARDS_ENV_VAR: '3', + SHARD_INDEX_ENV_VAR: '1'}, + [ShuffleFlag(), RandomSeedFlag(1)])[0]) + + +class GTestShuffleUnitTest(gtest_test_utils.TestCase): + """Tests test shuffling.""" + + def setUp(self): + CalculateTestLists() + + def testShufflePreservesNumberOfTests(self): + self.assertEqual(len(ALL_TESTS), len(SHUFFLED_ALL_TESTS)) + self.assertEqual(len(ACTIVE_TESTS), len(SHUFFLED_ACTIVE_TESTS)) + self.assertEqual(len(FILTERED_TESTS), len(SHUFFLED_FILTERED_TESTS)) + self.assertEqual(len(SHARDED_TESTS), len(SHUFFLED_SHARDED_TESTS)) + + def testShuffleChangesTestOrder(self): + self.assert_(SHUFFLED_ALL_TESTS != ALL_TESTS, SHUFFLED_ALL_TESTS) + self.assert_(SHUFFLED_ACTIVE_TESTS != ACTIVE_TESTS, SHUFFLED_ACTIVE_TESTS) + self.assert_(SHUFFLED_FILTERED_TESTS != FILTERED_TESTS, + SHUFFLED_FILTERED_TESTS) + self.assert_(SHUFFLED_SHARDED_TESTS != SHARDED_TESTS, + SHUFFLED_SHARDED_TESTS) + + def testShuffleChangesTestCaseOrder(self): + self.assert_(GetTestCases(SHUFFLED_ALL_TESTS) != GetTestCases(ALL_TESTS), + GetTestCases(SHUFFLED_ALL_TESTS)) + self.assert_( + GetTestCases(SHUFFLED_ACTIVE_TESTS) != GetTestCases(ACTIVE_TESTS), + GetTestCases(SHUFFLED_ACTIVE_TESTS)) + self.assert_( + GetTestCases(SHUFFLED_FILTERED_TESTS) != GetTestCases(FILTERED_TESTS), + GetTestCases(SHUFFLED_FILTERED_TESTS)) + self.assert_( + GetTestCases(SHUFFLED_SHARDED_TESTS) != GetTestCases(SHARDED_TESTS), + GetTestCases(SHUFFLED_SHARDED_TESTS)) + + def testShuffleDoesNotRepeatTest(self): + for test in SHUFFLED_ALL_TESTS: + self.assertEqual(1, SHUFFLED_ALL_TESTS.count(test), + '%s appears more than once' % (test,)) + for test in SHUFFLED_ACTIVE_TESTS: + self.assertEqual(1, SHUFFLED_ACTIVE_TESTS.count(test), + '%s appears more than once' % (test,)) + for test in SHUFFLED_FILTERED_TESTS: + self.assertEqual(1, SHUFFLED_FILTERED_TESTS.count(test), + '%s appears more than once' % (test,)) + for test in SHUFFLED_SHARDED_TESTS: + self.assertEqual(1, SHUFFLED_SHARDED_TESTS.count(test), + '%s appears more than once' % (test,)) + + def testShuffleDoesNotCreateNewTest(self): + for test in SHUFFLED_ALL_TESTS: + self.assert_(test in ALL_TESTS, '%s is an invalid test' % (test,)) + for test in SHUFFLED_ACTIVE_TESTS: + self.assert_(test in ACTIVE_TESTS, '%s is an invalid test' % (test,)) + for test in SHUFFLED_FILTERED_TESTS: + self.assert_(test in FILTERED_TESTS, '%s is an invalid test' % (test,)) + for test in SHUFFLED_SHARDED_TESTS: + self.assert_(test in SHARDED_TESTS, '%s is an invalid test' % (test,)) + + def testShuffleIncludesAllTests(self): + for test in ALL_TESTS: + self.assert_(test in SHUFFLED_ALL_TESTS, '%s is missing' % (test,)) + for test in ACTIVE_TESTS: + self.assert_(test in SHUFFLED_ACTIVE_TESTS, '%s is missing' % (test,)) + for test in FILTERED_TESTS: + self.assert_(test in SHUFFLED_FILTERED_TESTS, '%s is missing' % (test,)) + for test in SHARDED_TESTS: + self.assert_(test in SHUFFLED_SHARDED_TESTS, '%s is missing' % (test,)) + + def testShuffleLeavesDeathTestsAtFront(self): + non_death_test_found = False + for test in SHUFFLED_ACTIVE_TESTS: + if 'DeathTest.' in test: + self.assert_(not non_death_test_found, + '%s appears after a non-death test' % (test,)) + else: + non_death_test_found = True + + def _VerifyTestCasesDoNotInterleave(self, tests): + test_cases = [] + for test in tests: + [test_case, _] = test.split('.') + if test_cases and test_cases[-1] != test_case: + test_cases.append(test_case) + self.assertEqual(1, test_cases.count(test_case), + 'Test case %s is not grouped together in %s' % + (test_case, tests)) + + def testShuffleDoesNotInterleaveTestCases(self): + self._VerifyTestCasesDoNotInterleave(SHUFFLED_ALL_TESTS) + self._VerifyTestCasesDoNotInterleave(SHUFFLED_ACTIVE_TESTS) + self._VerifyTestCasesDoNotInterleave(SHUFFLED_FILTERED_TESTS) + self._VerifyTestCasesDoNotInterleave(SHUFFLED_SHARDED_TESTS) + + def testShuffleRestoresOrderAfterEachIteration(self): + # Get the test lists in all 3 iterations, using random seed 1, 2, + # and 3 respectively. Google Test picks a different seed in each + # iteration, and this test depends on the current implementation + # picking successive numbers. This dependency is not ideal, but + # makes the test much easier to write. + [tests_in_iteration1, tests_in_iteration2, tests_in_iteration3] = ( + GetTestsForAllIterations( + {}, [ShuffleFlag(), RandomSeedFlag(1), RepeatFlag(3)])) + + # Make sure running the tests with random seed 1 gets the same + # order as in iteration 1 above. + [tests_with_seed1] = GetTestsForAllIterations( + {}, [ShuffleFlag(), RandomSeedFlag(1)]) + self.assertEqual(tests_in_iteration1, tests_with_seed1) + + # Make sure running the tests with random seed 2 gets the same + # order as in iteration 2 above. Success means that Google Test + # correctly restores the test order before re-shuffling at the + # beginning of iteration 2. + [tests_with_seed2] = GetTestsForAllIterations( + {}, [ShuffleFlag(), RandomSeedFlag(2)]) + self.assertEqual(tests_in_iteration2, tests_with_seed2) + + # Make sure running the tests with random seed 3 gets the same + # order as in iteration 3 above. Success means that Google Test + # correctly restores the test order before re-shuffling at the + # beginning of iteration 3. + [tests_with_seed3] = GetTestsForAllIterations( + {}, [ShuffleFlag(), RandomSeedFlag(3)]) + self.assertEqual(tests_in_iteration3, tests_with_seed3) + + def testShuffleGeneratesNewOrderInEachIteration(self): + [tests_in_iteration1, tests_in_iteration2, tests_in_iteration3] = ( + GetTestsForAllIterations( + {}, [ShuffleFlag(), RandomSeedFlag(1), RepeatFlag(3)])) + + self.assert_(tests_in_iteration1 != tests_in_iteration2, + tests_in_iteration1) + self.assert_(tests_in_iteration1 != tests_in_iteration3, + tests_in_iteration1) + self.assert_(tests_in_iteration2 != tests_in_iteration3, + tests_in_iteration2) + + def testShuffleShardedTestsPreservesPartition(self): + # If we run M tests on N shards, the same M tests should be run in + # total, regardless of the random seeds used by the shards. + [tests1] = GetTestsForAllIterations({TOTAL_SHARDS_ENV_VAR: '3', + SHARD_INDEX_ENV_VAR: '0'}, + [ShuffleFlag(), RandomSeedFlag(1)]) + [tests2] = GetTestsForAllIterations({TOTAL_SHARDS_ENV_VAR: '3', + SHARD_INDEX_ENV_VAR: '1'}, + [ShuffleFlag(), RandomSeedFlag(20)]) + [tests3] = GetTestsForAllIterations({TOTAL_SHARDS_ENV_VAR: '3', + SHARD_INDEX_ENV_VAR: '2'}, + [ShuffleFlag(), RandomSeedFlag(25)]) + sorted_sharded_tests = tests1 + tests2 + tests3 + sorted_sharded_tests.sort() + sorted_active_tests = [] + sorted_active_tests.extend(ACTIVE_TESTS) + sorted_active_tests.sort() + self.assertEqual(sorted_active_tests, sorted_sharded_tests) + +if __name__ == '__main__': + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_shuffle_test_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_shuffle_test_.cc new file mode 100644 index 000000000..6fb441bd4 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_shuffle_test_.cc @@ -0,0 +1,103 @@ +// Copyright 2009, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Verifies that test shuffling works. + +#include "gtest/gtest.h" + +namespace { + +using ::testing::EmptyTestEventListener; +using ::testing::InitGoogleTest; +using ::testing::Message; +using ::testing::Test; +using ::testing::TestEventListeners; +using ::testing::TestInfo; +using ::testing::UnitTest; +using ::testing::internal::scoped_ptr; + +// The test methods are empty, as the sole purpose of this program is +// to print the test names before/after shuffling. + +class A : public Test {}; +TEST_F(A, A) {} +TEST_F(A, B) {} + +TEST(ADeathTest, A) {} +TEST(ADeathTest, B) {} +TEST(ADeathTest, C) {} + +TEST(B, A) {} +TEST(B, B) {} +TEST(B, C) {} +TEST(B, DISABLED_D) {} +TEST(B, DISABLED_E) {} + +TEST(BDeathTest, A) {} +TEST(BDeathTest, B) {} + +TEST(C, A) {} +TEST(C, B) {} +TEST(C, C) {} +TEST(C, DISABLED_D) {} + +TEST(CDeathTest, A) {} + +TEST(DISABLED_D, A) {} +TEST(DISABLED_D, DISABLED_B) {} + +// This printer prints the full test names only, starting each test +// iteration with a "----" marker. +class TestNamePrinter : public EmptyTestEventListener { + public: + virtual void OnTestIterationStart(const UnitTest& /* unit_test */, + int /* iteration */) { + printf("----\n"); + } + + virtual void OnTestStart(const TestInfo& test_info) { + printf("%s.%s\n", test_info.test_case_name(), test_info.name()); + } +}; + +} // namespace + +int main(int argc, char **argv) { + InitGoogleTest(&argc, argv); + + // Replaces the default printer with TestNamePrinter, which prints + // the test name only. + TestEventListeners& listeners = UnitTest::GetInstance()->listeners(); + delete listeners.Release(listeners.default_result_printer()); + listeners.Append(new TestNamePrinter); + + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_sole_header_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_sole_header_test.cc new file mode 100644 index 000000000..ccd091a28 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_sole_header_test.cc @@ -0,0 +1,57 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: mheule@google.com (Markus Heule) +// +// This test verifies that it's possible to use Google Test by including +// the gtest.h header file alone. + +#include "gtest/gtest.h" + +namespace { + +void Subroutine() { + EXPECT_EQ(42, 42); +} + +TEST(NoFatalFailureTest, ExpectNoFatalFailure) { + EXPECT_NO_FATAL_FAILURE(;); + EXPECT_NO_FATAL_FAILURE(SUCCEED()); + EXPECT_NO_FATAL_FAILURE(Subroutine()); + EXPECT_NO_FATAL_FAILURE({ SUCCEED(); }); +} + +TEST(NoFatalFailureTest, AssertNoFatalFailure) { + ASSERT_NO_FATAL_FAILURE(;); + ASSERT_NO_FATAL_FAILURE(SUCCEED()); + ASSERT_NO_FATAL_FAILURE(Subroutine()); + ASSERT_NO_FATAL_FAILURE({ SUCCEED(); }); +} + +} // namespace diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_stress_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_stress_test.cc new file mode 100644 index 000000000..e7daa430d --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_stress_test.cc @@ -0,0 +1,256 @@ +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Tests that SCOPED_TRACE() and various Google Test assertions can be +// used in a large number of threads concurrently. + +#include "gtest/gtest.h" + +#include +#include + +// We must define this macro in order to #include +// gtest-internal-inl.h. This is how Google Test prevents a user from +// accidentally depending on its internal implementation. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +#if GTEST_IS_THREADSAFE + +namespace testing { +namespace { + +using internal::Notification; +using internal::TestPropertyKeyIs; +using internal::ThreadWithParam; +using internal::scoped_ptr; + +// In order to run tests in this file, for platforms where Google Test is +// thread safe, implement ThreadWithParam. See the description of its API +// in gtest-port.h, where it is defined for already supported platforms. + +// How many threads to create? +const int kThreadCount = 50; + +std::string IdToKey(int id, const char* suffix) { + Message key; + key << "key_" << id << "_" << suffix; + return key.GetString(); +} + +std::string IdToString(int id) { + Message id_message; + id_message << id; + return id_message.GetString(); +} + +void ExpectKeyAndValueWereRecordedForId( + const std::vector& properties, + int id, const char* suffix) { + TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str()); + const std::vector::const_iterator property = + std::find_if(properties.begin(), properties.end(), matches_key); + ASSERT_TRUE(property != properties.end()) + << "expecting " << suffix << " value for id " << id; + EXPECT_STREQ(IdToString(id).c_str(), property->value()); +} + +// Calls a large number of Google Test assertions, where exactly one of them +// will fail. +void ManyAsserts(int id) { + GTEST_LOG_(INFO) << "Thread #" << id << " running..."; + + SCOPED_TRACE(Message() << "Thread #" << id); + + for (int i = 0; i < kThreadCount; i++) { + SCOPED_TRACE(Message() << "Iteration #" << i); + + // A bunch of assertions that should succeed. + EXPECT_TRUE(true); + ASSERT_FALSE(false) << "This shouldn't fail."; + EXPECT_STREQ("a", "a"); + ASSERT_LE(5, 6); + EXPECT_EQ(i, i) << "This shouldn't fail."; + + // RecordProperty() should interact safely with other threads as well. + // The shared_key forces property updates. + Test::RecordProperty(IdToKey(id, "string").c_str(), IdToString(id).c_str()); + Test::RecordProperty(IdToKey(id, "int").c_str(), id); + Test::RecordProperty("shared_key", IdToString(id).c_str()); + + // This assertion should fail kThreadCount times per thread. It + // is for testing whether Google Test can handle failed assertions in a + // multi-threaded context. + EXPECT_LT(i, 0) << "This should always fail."; + } +} + +void CheckTestFailureCount(int expected_failures) { + const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); + const TestResult* const result = info->result(); + GTEST_CHECK_(expected_failures == result->total_part_count()) + << "Logged " << result->total_part_count() << " failures " + << " vs. " << expected_failures << " expected"; +} + +// Tests using SCOPED_TRACE() and Google Test assertions in many threads +// concurrently. +TEST(StressTest, CanUseScopedTraceAndAssertionsInManyThreads) { + { + scoped_ptr > threads[kThreadCount]; + Notification threads_can_start; + for (int i = 0; i != kThreadCount; i++) + threads[i].reset(new ThreadWithParam(&ManyAsserts, + i, + &threads_can_start)); + + threads_can_start.Notify(); + + // Blocks until all the threads are done. + for (int i = 0; i != kThreadCount; i++) + threads[i]->Join(); + } + + // Ensures that kThreadCount*kThreadCount failures have been reported. + const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); + const TestResult* const result = info->result(); + + std::vector properties; + // We have no access to the TestResult's list of properties but we can + // copy them one by one. + for (int i = 0; i < result->test_property_count(); ++i) + properties.push_back(result->GetTestProperty(i)); + + EXPECT_EQ(kThreadCount * 2 + 1, result->test_property_count()) + << "String and int values recorded on each thread, " + << "as well as one shared_key"; + for (int i = 0; i < kThreadCount; ++i) { + ExpectKeyAndValueWereRecordedForId(properties, i, "string"); + ExpectKeyAndValueWereRecordedForId(properties, i, "int"); + } + CheckTestFailureCount(kThreadCount*kThreadCount); +} + +void FailingThread(bool is_fatal) { + if (is_fatal) + FAIL() << "Fatal failure in some other thread. " + << "(This failure is expected.)"; + else + ADD_FAILURE() << "Non-fatal failure in some other thread. " + << "(This failure is expected.)"; +} + +void GenerateFatalFailureInAnotherThread(bool is_fatal) { + ThreadWithParam thread(&FailingThread, is_fatal, NULL); + thread.Join(); +} + +TEST(NoFatalFailureTest, ExpectNoFatalFailureIgnoresFailuresInOtherThreads) { + EXPECT_NO_FATAL_FAILURE(GenerateFatalFailureInAnotherThread(true)); + // We should only have one failure (the one from + // GenerateFatalFailureInAnotherThread()), since the EXPECT_NO_FATAL_FAILURE + // should succeed. + CheckTestFailureCount(1); +} + +void AssertNoFatalFailureIgnoresFailuresInOtherThreads() { + ASSERT_NO_FATAL_FAILURE(GenerateFatalFailureInAnotherThread(true)); +} +TEST(NoFatalFailureTest, AssertNoFatalFailureIgnoresFailuresInOtherThreads) { + // Using a subroutine, to make sure, that the test continues. + AssertNoFatalFailureIgnoresFailuresInOtherThreads(); + // We should only have one failure (the one from + // GenerateFatalFailureInAnotherThread()), since the EXPECT_NO_FATAL_FAILURE + // should succeed. + CheckTestFailureCount(1); +} + +TEST(FatalFailureTest, ExpectFatalFailureIgnoresFailuresInOtherThreads) { + // This statement should fail, since the current thread doesn't generate a + // fatal failure, only another one does. + EXPECT_FATAL_FAILURE(GenerateFatalFailureInAnotherThread(true), "expected"); + CheckTestFailureCount(2); +} + +TEST(FatalFailureOnAllThreadsTest, ExpectFatalFailureOnAllThreads) { + // This statement should succeed, because failures in all threads are + // considered. + EXPECT_FATAL_FAILURE_ON_ALL_THREADS( + GenerateFatalFailureInAnotherThread(true), "expected"); + CheckTestFailureCount(0); + // We need to add a failure, because main() checks that there are failures. + // But when only this test is run, we shouldn't have any failures. + ADD_FAILURE() << "This is an expected non-fatal failure."; +} + +TEST(NonFatalFailureTest, ExpectNonFatalFailureIgnoresFailuresInOtherThreads) { + // This statement should fail, since the current thread doesn't generate a + // fatal failure, only another one does. + EXPECT_NONFATAL_FAILURE(GenerateFatalFailureInAnotherThread(false), + "expected"); + CheckTestFailureCount(2); +} + +TEST(NonFatalFailureOnAllThreadsTest, ExpectNonFatalFailureOnAllThreads) { + // This statement should succeed, because failures in all threads are + // considered. + EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS( + GenerateFatalFailureInAnotherThread(false), "expected"); + CheckTestFailureCount(0); + // We need to add a failure, because main() checks that there are failures, + // But when only this test is run, we shouldn't have any failures. + ADD_FAILURE() << "This is an expected non-fatal failure."; +} + +} // namespace +} // namespace testing + +int main(int argc, char **argv) { + testing::InitGoogleTest(&argc, argv); + + const int result = RUN_ALL_TESTS(); // Expected to fail. + GTEST_CHECK_(result == 1) << "RUN_ALL_TESTS() did not fail as expected"; + + printf("\nPASS\n"); + return 0; +} + +#else +TEST(StressTest, + DISABLED_ThreadSafetyTestsAreSkippedWhenGoogleTestIsNotThreadSafe) { +} + +int main(int argc, char **argv) { + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} +#endif // GTEST_IS_THREADSAFE diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_test_utils.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_test_utils.py new file mode 100755 index 000000000..28884bdc1 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_test_utils.py @@ -0,0 +1,320 @@ +#!/usr/bin/env python +# +# Copyright 2006, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Unit test utilities for Google C++ Testing Framework.""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import atexit +import os +import shutil +import sys +import tempfile +import unittest +_test_module = unittest + +# Suppresses the 'Import not at the top of the file' lint complaint. +# pylint: disable-msg=C6204 +try: + import subprocess + _SUBPROCESS_MODULE_AVAILABLE = True +except: + import popen2 + _SUBPROCESS_MODULE_AVAILABLE = False +# pylint: enable-msg=C6204 + +GTEST_OUTPUT_VAR_NAME = 'GTEST_OUTPUT' + +IS_WINDOWS = os.name == 'nt' +IS_CYGWIN = os.name == 'posix' and 'CYGWIN' in os.uname()[0] + +# The environment variable for specifying the path to the premature-exit file. +PREMATURE_EXIT_FILE_ENV_VAR = 'TEST_PREMATURE_EXIT_FILE' + +environ = os.environ.copy() + + +def SetEnvVar(env_var, value): + """Sets/unsets an environment variable to a given value.""" + + if value is not None: + environ[env_var] = value + elif env_var in environ: + del environ[env_var] + + +# Here we expose a class from a particular module, depending on the +# environment. The comment suppresses the 'Invalid variable name' lint +# complaint. +TestCase = _test_module.TestCase # pylint: disable-msg=C6409 + +# Initially maps a flag to its default value. After +# _ParseAndStripGTestFlags() is called, maps a flag to its actual value. +_flag_map = {'source_dir': os.path.dirname(sys.argv[0]), + 'build_dir': os.path.dirname(sys.argv[0])} +_gtest_flags_are_parsed = False + + +def _ParseAndStripGTestFlags(argv): + """Parses and strips Google Test flags from argv. This is idempotent.""" + + # Suppresses the lint complaint about a global variable since we need it + # here to maintain module-wide state. + global _gtest_flags_are_parsed # pylint: disable-msg=W0603 + if _gtest_flags_are_parsed: + return + + _gtest_flags_are_parsed = True + for flag in _flag_map: + # The environment variable overrides the default value. + if flag.upper() in os.environ: + _flag_map[flag] = os.environ[flag.upper()] + + # The command line flag overrides the environment variable. + i = 1 # Skips the program name. + while i < len(argv): + prefix = '--' + flag + '=' + if argv[i].startswith(prefix): + _flag_map[flag] = argv[i][len(prefix):] + del argv[i] + break + else: + # We don't increment i in case we just found a --gtest_* flag + # and removed it from argv. + i += 1 + + +def GetFlag(flag): + """Returns the value of the given flag.""" + + # In case GetFlag() is called before Main(), we always call + # _ParseAndStripGTestFlags() here to make sure the --gtest_* flags + # are parsed. + _ParseAndStripGTestFlags(sys.argv) + + return _flag_map[flag] + + +def GetSourceDir(): + """Returns the absolute path of the directory where the .py files are.""" + + return os.path.abspath(GetFlag('source_dir')) + + +def GetBuildDir(): + """Returns the absolute path of the directory where the test binaries are.""" + + return os.path.abspath(GetFlag('build_dir')) + + +_temp_dir = None + +def _RemoveTempDir(): + if _temp_dir: + shutil.rmtree(_temp_dir, ignore_errors=True) + +atexit.register(_RemoveTempDir) + + +def GetTempDir(): + """Returns a directory for temporary files.""" + + global _temp_dir + if not _temp_dir: + _temp_dir = tempfile.mkdtemp() + return _temp_dir + + +def GetTestExecutablePath(executable_name, build_dir=None): + """Returns the absolute path of the test binary given its name. + + The function will print a message and abort the program if the resulting file + doesn't exist. + + Args: + executable_name: name of the test binary that the test script runs. + build_dir: directory where to look for executables, by default + the result of GetBuildDir(). + + Returns: + The absolute path of the test binary. + """ + + path = os.path.abspath(os.path.join(build_dir or GetBuildDir(), + executable_name)) + if (IS_WINDOWS or IS_CYGWIN) and not path.endswith('.exe'): + path += '.exe' + + if not os.path.exists(path): + message = ( + 'Unable to find the test binary. Please make sure to provide path\n' + 'to the binary via the --build_dir flag or the BUILD_DIR\n' + 'environment variable.') + print >> sys.stderr, message + sys.exit(1) + + return path + + +def GetExitStatus(exit_code): + """Returns the argument to exit(), or -1 if exit() wasn't called. + + Args: + exit_code: the result value of os.system(command). + """ + + if os.name == 'nt': + # On Windows, os.WEXITSTATUS() doesn't work and os.system() returns + # the argument to exit() directly. + return exit_code + else: + # On Unix, os.WEXITSTATUS() must be used to extract the exit status + # from the result of os.system(). + if os.WIFEXITED(exit_code): + return os.WEXITSTATUS(exit_code) + else: + return -1 + + +class Subprocess: + def __init__(self, command, working_dir=None, capture_stderr=True, env=None): + """Changes into a specified directory, if provided, and executes a command. + + Restores the old directory afterwards. + + Args: + command: The command to run, in the form of sys.argv. + working_dir: The directory to change into. + capture_stderr: Determines whether to capture stderr in the output member + or to discard it. + env: Dictionary with environment to pass to the subprocess. + + Returns: + An object that represents outcome of the executed process. It has the + following attributes: + terminated_by_signal True iff the child process has been terminated + by a signal. + signal Sygnal that terminated the child process. + exited True iff the child process exited normally. + exit_code The code with which the child process exited. + output Child process's stdout and stderr output + combined in a string. + """ + + # The subprocess module is the preferrable way of running programs + # since it is available and behaves consistently on all platforms, + # including Windows. But it is only available starting in python 2.4. + # In earlier python versions, we revert to the popen2 module, which is + # available in python 2.0 and later but doesn't provide required + # functionality (Popen4) under Windows. This allows us to support Mac + # OS X 10.4 Tiger, which has python 2.3 installed. + if _SUBPROCESS_MODULE_AVAILABLE: + if capture_stderr: + stderr = subprocess.STDOUT + else: + stderr = subprocess.PIPE + + p = subprocess.Popen(command, + stdout=subprocess.PIPE, stderr=stderr, + cwd=working_dir, universal_newlines=True, env=env) + # communicate returns a tuple with the file obect for the child's + # output. + self.output = p.communicate()[0] + self._return_code = p.returncode + else: + old_dir = os.getcwd() + + def _ReplaceEnvDict(dest, src): + # Changes made by os.environ.clear are not inheritable by child + # processes until Python 2.6. To produce inheritable changes we have + # to delete environment items with the del statement. + for key in dest.keys(): + del dest[key] + dest.update(src) + + # When 'env' is not None, backup the environment variables and replace + # them with the passed 'env'. When 'env' is None, we simply use the + # current 'os.environ' for compatibility with the subprocess.Popen + # semantics used above. + if env is not None: + old_environ = os.environ.copy() + _ReplaceEnvDict(os.environ, env) + + try: + if working_dir is not None: + os.chdir(working_dir) + if capture_stderr: + p = popen2.Popen4(command) + else: + p = popen2.Popen3(command) + p.tochild.close() + self.output = p.fromchild.read() + ret_code = p.wait() + finally: + os.chdir(old_dir) + + # Restore the old environment variables + # if they were replaced. + if env is not None: + _ReplaceEnvDict(os.environ, old_environ) + + # Converts ret_code to match the semantics of + # subprocess.Popen.returncode. + if os.WIFSIGNALED(ret_code): + self._return_code = -os.WTERMSIG(ret_code) + else: # os.WIFEXITED(ret_code) should return True here. + self._return_code = os.WEXITSTATUS(ret_code) + + if self._return_code < 0: + self.terminated_by_signal = True + self.exited = False + self.signal = -self._return_code + else: + self.terminated_by_signal = False + self.exited = True + self.exit_code = self._return_code + + +def Main(): + """Runs the unit test.""" + + # We must call _ParseAndStripGTestFlags() before calling + # unittest.main(). Otherwise the latter will be confused by the + # --gtest_* flags. + _ParseAndStripGTestFlags(sys.argv) + # The tested binaries should not be writing XML output files unless the + # script explicitly instructs them to. + # TODO(vladl@google.com): Move this into Subprocess when we implement + # passing environment into it as a parameter. + if GTEST_OUTPUT_VAR_NAME in os.environ: + del os.environ[GTEST_OUTPUT_VAR_NAME] + + _test_module.main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc new file mode 100644 index 000000000..8d46c76f1 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc @@ -0,0 +1,92 @@ +// Copyright 2009, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Tests Google Test's throw-on-failure mode with exceptions enabled. + +#include "gtest/gtest.h" + +#include +#include +#include +#include + +// Prints the given failure message and exits the program with +// non-zero. We use this instead of a Google Test assertion to +// indicate a failure, as the latter is been tested and cannot be +// relied on. +void Fail(const char* msg) { + printf("FAILURE: %s\n", msg); + fflush(stdout); + exit(1); +} + +// Tests that an assertion failure throws a subclass of +// std::runtime_error. +void TestFailureThrowsRuntimeError() { + testing::GTEST_FLAG(throw_on_failure) = true; + + // A successful assertion shouldn't throw. + try { + EXPECT_EQ(3, 3); + } catch(...) { + Fail("A successful assertion wrongfully threw."); + } + + // A failed assertion should throw a subclass of std::runtime_error. + try { + EXPECT_EQ(2, 3) << "Expected failure"; + } catch(const std::runtime_error& e) { + if (strstr(e.what(), "Expected failure") != NULL) + return; + + printf("%s", + "A failed assertion did throw an exception of the right type, " + "but the message is incorrect. Instead of containing \"Expected " + "failure\", it is:\n"); + Fail(e.what()); + } catch(...) { + Fail("A failed assertion threw the wrong type of exception."); + } + Fail("A failed assertion should've thrown but didn't."); +} + +int main(int argc, char** argv) { + testing::InitGoogleTest(&argc, argv); + + // We want to ensure that people can use Google Test assertions in + // other testing frameworks, as long as they initialize Google Test + // properly and set the thrown-on-failure mode. Therefore, we don't + // use Google Test's constructs for defining and running tests + // (e.g. TEST and RUN_ALL_TESTS) here. + + TestFailureThrowsRuntimeError(); + return 0; +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_test.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_test.py new file mode 100755 index 000000000..5678ffeaf --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_test.py @@ -0,0 +1,171 @@ +#!/usr/bin/env python +# +# Copyright 2009, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Tests Google Test's throw-on-failure mode with exceptions disabled. + +This script invokes gtest_throw_on_failure_test_ (a program written with +Google Test) with different environments and command line flags. +""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import os +import gtest_test_utils + + +# Constants. + +# The command line flag for enabling/disabling the throw-on-failure mode. +THROW_ON_FAILURE = 'gtest_throw_on_failure' + +# Path to the gtest_throw_on_failure_test_ program, compiled with +# exceptions disabled. +EXE_PATH = gtest_test_utils.GetTestExecutablePath( + 'gtest_throw_on_failure_test_') + + +# Utilities. + + +def SetEnvVar(env_var, value): + """Sets an environment variable to a given value; unsets it when the + given value is None. + """ + + env_var = env_var.upper() + if value is not None: + os.environ[env_var] = value + elif env_var in os.environ: + del os.environ[env_var] + + +def Run(command): + """Runs a command; returns True/False if its exit code is/isn't 0.""" + + print 'Running "%s". . .' % ' '.join(command) + p = gtest_test_utils.Subprocess(command) + return p.exited and p.exit_code == 0 + + +# The tests. TODO(wan@google.com): refactor the class to share common +# logic with code in gtest_break_on_failure_unittest.py. +class ThrowOnFailureTest(gtest_test_utils.TestCase): + """Tests the throw-on-failure mode.""" + + def RunAndVerify(self, env_var_value, flag_value, should_fail): + """Runs gtest_throw_on_failure_test_ and verifies that it does + (or does not) exit with a non-zero code. + + Args: + env_var_value: value of the GTEST_BREAK_ON_FAILURE environment + variable; None if the variable should be unset. + flag_value: value of the --gtest_break_on_failure flag; + None if the flag should not be present. + should_fail: True iff the program is expected to fail. + """ + + SetEnvVar(THROW_ON_FAILURE, env_var_value) + + if env_var_value is None: + env_var_value_msg = ' is not set' + else: + env_var_value_msg = '=' + env_var_value + + if flag_value is None: + flag = '' + elif flag_value == '0': + flag = '--%s=0' % THROW_ON_FAILURE + else: + flag = '--%s' % THROW_ON_FAILURE + + command = [EXE_PATH] + if flag: + command.append(flag) + + if should_fail: + should_or_not = 'should' + else: + should_or_not = 'should not' + + failed = not Run(command) + + SetEnvVar(THROW_ON_FAILURE, None) + + msg = ('when %s%s, an assertion failure in "%s" %s cause a non-zero ' + 'exit code.' % + (THROW_ON_FAILURE, env_var_value_msg, ' '.join(command), + should_or_not)) + self.assert_(failed == should_fail, msg) + + def testDefaultBehavior(self): + """Tests the behavior of the default mode.""" + + self.RunAndVerify(env_var_value=None, flag_value=None, should_fail=False) + + def testThrowOnFailureEnvVar(self): + """Tests using the GTEST_THROW_ON_FAILURE environment variable.""" + + self.RunAndVerify(env_var_value='0', + flag_value=None, + should_fail=False) + self.RunAndVerify(env_var_value='1', + flag_value=None, + should_fail=True) + + def testThrowOnFailureFlag(self): + """Tests using the --gtest_throw_on_failure flag.""" + + self.RunAndVerify(env_var_value=None, + flag_value='0', + should_fail=False) + self.RunAndVerify(env_var_value=None, + flag_value='1', + should_fail=True) + + def testThrowOnFailureFlagOverridesEnvVar(self): + """Tests that --gtest_throw_on_failure overrides GTEST_THROW_ON_FAILURE.""" + + self.RunAndVerify(env_var_value='0', + flag_value='0', + should_fail=False) + self.RunAndVerify(env_var_value='0', + flag_value='1', + should_fail=True) + self.RunAndVerify(env_var_value='1', + flag_value='0', + should_fail=False) + self.RunAndVerify(env_var_value='1', + flag_value='1', + should_fail=True) + + +if __name__ == '__main__': + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc new file mode 100644 index 000000000..2b88fe3d9 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc @@ -0,0 +1,72 @@ +// Copyright 2009, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Tests Google Test's throw-on-failure mode with exceptions disabled. +// +// This program must be compiled with exceptions disabled. It will be +// invoked by gtest_throw_on_failure_test.py, and is expected to exit +// with non-zero in the throw-on-failure mode or 0 otherwise. + +#include "gtest/gtest.h" + +#include // for fflush, fprintf, NULL, etc. +#include // for exit +#include // for set_terminate + +// This terminate handler aborts the program using exit() rather than abort(). +// This avoids showing pop-ups on Windows systems and core dumps on Unix-like +// ones. +void TerminateHandler() { + fprintf(stderr, "%s\n", "Unhandled C++ exception terminating the program."); + fflush(NULL); + exit(1); +} + +int main(int argc, char** argv) { +#if GTEST_HAS_EXCEPTIONS + std::set_terminate(&TerminateHandler); +#endif + testing::InitGoogleTest(&argc, argv); + + // We want to ensure that people can use Google Test assertions in + // other testing frameworks, as long as they initialize Google Test + // properly and set the throw-on-failure mode. Therefore, we don't + // use Google Test's constructs for defining and running tests + // (e.g. TEST and RUN_ALL_TESTS) here. + + // In the throw-on-failure mode with exceptions disabled, this + // assertion will cause the program to exit with a non-zero code. + EXPECT_EQ(2, 3); + + // When not in the throw-on-failure mode, the control will reach + // here. + return 0; +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_uninitialized_test.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_uninitialized_test.py new file mode 100755 index 000000000..6ae57eeed --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_uninitialized_test.py @@ -0,0 +1,70 @@ +#!/usr/bin/env python +# +# Copyright 2008, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Verifies that Google Test warns the user when not initialized properly.""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import gtest_test_utils + + +COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_') + + +def Assert(condition): + if not condition: + raise AssertionError + + +def AssertEq(expected, actual): + if expected != actual: + print 'Expected: %s' % (expected,) + print ' Actual: %s' % (actual,) + raise AssertionError + + +def TestExitCodeAndOutput(command): + """Runs the given command and verifies its exit code and output.""" + + # Verifies that 'command' exits with code 1. + p = gtest_test_utils.Subprocess(command) + Assert(p.exited) + AssertEq(1, p.exit_code) + Assert('InitGoogleTest' in p.output) + + +class GTestUninitializedTest(gtest_test_utils.TestCase): + def testExitCodeAndOutput(self): + TestExitCodeAndOutput(COMMAND) + + +if __name__ == '__main__': + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_uninitialized_test_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_uninitialized_test_.cc new file mode 100644 index 000000000..44316987f --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_uninitialized_test_.cc @@ -0,0 +1,43 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#include "gtest/gtest.h" + +TEST(DummyTest, Dummy) { + // This test doesn't verify anything. We just need it to create a + // realistic stage for testing the behavior of Google Test when + // RUN_ALL_TESTS() is called without testing::InitGoogleTest() being + // called first. +} + +int main() { + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_unittest.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_unittest.cc new file mode 100644 index 000000000..0cab07d15 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_unittest.cc @@ -0,0 +1,7415 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Tests for Google Test itself. This verifies that the basic constructs of +// Google Test work. + +#include "gtest/gtest.h" + +// Verifies that the command line flag variables can be accessed +// in code once has been #included. +// Do not move it after other #includes. +TEST(CommandLineFlagsTest, CanBeAccessedInCodeOnceGTestHIsIncluded) { + bool dummy = testing::GTEST_FLAG(also_run_disabled_tests) + || testing::GTEST_FLAG(break_on_failure) + || testing::GTEST_FLAG(catch_exceptions) + || testing::GTEST_FLAG(color) != "unknown" + || testing::GTEST_FLAG(filter) != "unknown" + || testing::GTEST_FLAG(list_tests) + || testing::GTEST_FLAG(output) != "unknown" + || testing::GTEST_FLAG(print_time) + || testing::GTEST_FLAG(random_seed) + || testing::GTEST_FLAG(repeat) > 0 + || testing::GTEST_FLAG(show_internal_stack_frames) + || testing::GTEST_FLAG(shuffle) + || testing::GTEST_FLAG(stack_trace_depth) > 0 + || testing::GTEST_FLAG(stream_result_to) != "unknown" + || testing::GTEST_FLAG(throw_on_failure); + EXPECT_TRUE(dummy || !dummy); // Suppresses warning that dummy is unused. +} + +#include // For INT_MAX. +#include +#include +#include + +#include +#include +#include + +#include "gtest/gtest-spi.h" + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#include "src/gtest-internal-inl.h" +#undef GTEST_IMPLEMENTATION_ + +namespace testing { +namespace internal { + +#if GTEST_CAN_STREAM_RESULTS_ + +class StreamingListenerTest : public Test { + public: + class FakeSocketWriter : public StreamingListener::AbstractSocketWriter { + public: + // Sends a string to the socket. + virtual void Send(const string& message) { output_ += message; } + + string output_; + }; + + StreamingListenerTest() + : fake_sock_writer_(new FakeSocketWriter), + streamer_(fake_sock_writer_), + test_info_obj_("FooTest", "Bar", NULL, NULL, 0, NULL) {} + + protected: + string* output() { return &(fake_sock_writer_->output_); } + + FakeSocketWriter* const fake_sock_writer_; + StreamingListener streamer_; + UnitTest unit_test_; + TestInfo test_info_obj_; // The name test_info_ was taken by testing::Test. +}; + +TEST_F(StreamingListenerTest, OnTestProgramEnd) { + *output() = ""; + streamer_.OnTestProgramEnd(unit_test_); + EXPECT_EQ("event=TestProgramEnd&passed=1\n", *output()); +} + +TEST_F(StreamingListenerTest, OnTestIterationEnd) { + *output() = ""; + streamer_.OnTestIterationEnd(unit_test_, 42); + EXPECT_EQ("event=TestIterationEnd&passed=1&elapsed_time=0ms\n", *output()); +} + +TEST_F(StreamingListenerTest, OnTestCaseStart) { + *output() = ""; + streamer_.OnTestCaseStart(TestCase("FooTest", "Bar", NULL, NULL)); + EXPECT_EQ("event=TestCaseStart&name=FooTest\n", *output()); +} + +TEST_F(StreamingListenerTest, OnTestCaseEnd) { + *output() = ""; + streamer_.OnTestCaseEnd(TestCase("FooTest", "Bar", NULL, NULL)); + EXPECT_EQ("event=TestCaseEnd&passed=1&elapsed_time=0ms\n", *output()); +} + +TEST_F(StreamingListenerTest, OnTestStart) { + *output() = ""; + streamer_.OnTestStart(test_info_obj_); + EXPECT_EQ("event=TestStart&name=Bar\n", *output()); +} + +TEST_F(StreamingListenerTest, OnTestEnd) { + *output() = ""; + streamer_.OnTestEnd(test_info_obj_); + EXPECT_EQ("event=TestEnd&passed=1&elapsed_time=0ms\n", *output()); +} + +TEST_F(StreamingListenerTest, OnTestPartResult) { + *output() = ""; + streamer_.OnTestPartResult(TestPartResult( + TestPartResult::kFatalFailure, "foo.cc", 42, "failed=\n&%")); + + // Meta characters in the failure message should be properly escaped. + EXPECT_EQ( + "event=TestPartResult&file=foo.cc&line=42&message=failed%3D%0A%26%25\n", + *output()); +} + +#endif // GTEST_CAN_STREAM_RESULTS_ + +// Provides access to otherwise private parts of the TestEventListeners class +// that are needed to test it. +class TestEventListenersAccessor { + public: + static TestEventListener* GetRepeater(TestEventListeners* listeners) { + return listeners->repeater(); + } + + static void SetDefaultResultPrinter(TestEventListeners* listeners, + TestEventListener* listener) { + listeners->SetDefaultResultPrinter(listener); + } + static void SetDefaultXmlGenerator(TestEventListeners* listeners, + TestEventListener* listener) { + listeners->SetDefaultXmlGenerator(listener); + } + + static bool EventForwardingEnabled(const TestEventListeners& listeners) { + return listeners.EventForwardingEnabled(); + } + + static void SuppressEventForwarding(TestEventListeners* listeners) { + listeners->SuppressEventForwarding(); + } +}; + +class UnitTestRecordPropertyTestHelper : public Test { + protected: + UnitTestRecordPropertyTestHelper() {} + + // Forwards to UnitTest::RecordProperty() to bypass access controls. + void UnitTestRecordProperty(const char* key, const std::string& value) { + unit_test_.RecordProperty(key, value); + } + + UnitTest unit_test_; +}; + +} // namespace internal +} // namespace testing + +using testing::AssertionFailure; +using testing::AssertionResult; +using testing::AssertionSuccess; +using testing::DoubleLE; +using testing::EmptyTestEventListener; +using testing::Environment; +using testing::FloatLE; +using testing::GTEST_FLAG(also_run_disabled_tests); +using testing::GTEST_FLAG(break_on_failure); +using testing::GTEST_FLAG(catch_exceptions); +using testing::GTEST_FLAG(color); +using testing::GTEST_FLAG(death_test_use_fork); +using testing::GTEST_FLAG(filter); +using testing::GTEST_FLAG(list_tests); +using testing::GTEST_FLAG(output); +using testing::GTEST_FLAG(print_time); +using testing::GTEST_FLAG(random_seed); +using testing::GTEST_FLAG(repeat); +using testing::GTEST_FLAG(show_internal_stack_frames); +using testing::GTEST_FLAG(shuffle); +using testing::GTEST_FLAG(stack_trace_depth); +using testing::GTEST_FLAG(stream_result_to); +using testing::GTEST_FLAG(throw_on_failure); +using testing::IsNotSubstring; +using testing::IsSubstring; +using testing::Message; +using testing::ScopedFakeTestPartResultReporter; +using testing::StaticAssertTypeEq; +using testing::Test; +using testing::TestCase; +using testing::TestEventListeners; +using testing::TestInfo; +using testing::TestPartResult; +using testing::TestPartResultArray; +using testing::TestProperty; +using testing::TestResult; +using testing::TimeInMillis; +using testing::UnitTest; +using testing::kMaxStackTraceDepth; +using testing::internal::AddReference; +using testing::internal::AlwaysFalse; +using testing::internal::AlwaysTrue; +using testing::internal::AppendUserMessage; +using testing::internal::ArrayAwareFind; +using testing::internal::ArrayEq; +using testing::internal::CodePointToUtf8; +using testing::internal::CompileAssertTypesEqual; +using testing::internal::CopyArray; +using testing::internal::CountIf; +using testing::internal::EqFailure; +using testing::internal::FloatingPoint; +using testing::internal::ForEach; +using testing::internal::FormatEpochTimeInMillisAsIso8601; +using testing::internal::FormatTimeInMillisAsSeconds; +using testing::internal::GTestFlagSaver; +using testing::internal::GetCurrentOsStackTraceExceptTop; +using testing::internal::GetElementOr; +using testing::internal::GetNextRandomSeed; +using testing::internal::GetRandomSeedFromFlag; +using testing::internal::GetTestTypeId; +using testing::internal::GetTimeInMillis; +using testing::internal::GetTypeId; +using testing::internal::GetUnitTestImpl; +using testing::internal::ImplicitlyConvertible; +using testing::internal::Int32; +using testing::internal::Int32FromEnvOrDie; +using testing::internal::IsAProtocolMessage; +using testing::internal::IsContainer; +using testing::internal::IsContainerTest; +using testing::internal::IsNotContainer; +using testing::internal::NativeArray; +using testing::internal::ParseInt32Flag; +using testing::internal::RemoveConst; +using testing::internal::RemoveReference; +using testing::internal::ShouldRunTestOnShard; +using testing::internal::ShouldShard; +using testing::internal::ShouldUseColor; +using testing::internal::Shuffle; +using testing::internal::ShuffleRange; +using testing::internal::SkipPrefix; +using testing::internal::StreamableToString; +using testing::internal::String; +using testing::internal::TestEventListenersAccessor; +using testing::internal::TestResultAccessor; +using testing::internal::UInt32; +using testing::internal::WideStringToUtf8; +using testing::internal::kCopy; +using testing::internal::kMaxRandomSeed; +using testing::internal::kReference; +using testing::internal::kTestTypeIdInGoogleTest; +using testing::internal::scoped_ptr; + +#if GTEST_HAS_STREAM_REDIRECTION +using testing::internal::CaptureStdout; +using testing::internal::GetCapturedStdout; +#endif + +#if GTEST_IS_THREADSAFE +using testing::internal::ThreadWithParam; +#endif + +class TestingVector : public std::vector { +}; + +::std::ostream& operator<<(::std::ostream& os, + const TestingVector& vector) { + os << "{ "; + for (size_t i = 0; i < vector.size(); i++) { + os << vector[i] << " "; + } + os << "}"; + return os; +} + +// This line tests that we can define tests in an unnamed namespace. +namespace { + +TEST(GetRandomSeedFromFlagTest, HandlesZero) { + const int seed = GetRandomSeedFromFlag(0); + EXPECT_LE(1, seed); + EXPECT_LE(seed, static_cast(kMaxRandomSeed)); +} + +TEST(GetRandomSeedFromFlagTest, PreservesValidSeed) { + EXPECT_EQ(1, GetRandomSeedFromFlag(1)); + EXPECT_EQ(2, GetRandomSeedFromFlag(2)); + EXPECT_EQ(kMaxRandomSeed - 1, GetRandomSeedFromFlag(kMaxRandomSeed - 1)); + EXPECT_EQ(static_cast(kMaxRandomSeed), + GetRandomSeedFromFlag(kMaxRandomSeed)); +} + +TEST(GetRandomSeedFromFlagTest, NormalizesInvalidSeed) { + const int seed1 = GetRandomSeedFromFlag(-1); + EXPECT_LE(1, seed1); + EXPECT_LE(seed1, static_cast(kMaxRandomSeed)); + + const int seed2 = GetRandomSeedFromFlag(kMaxRandomSeed + 1); + EXPECT_LE(1, seed2); + EXPECT_LE(seed2, static_cast(kMaxRandomSeed)); +} + +TEST(GetNextRandomSeedTest, WorksForValidInput) { + EXPECT_EQ(2, GetNextRandomSeed(1)); + EXPECT_EQ(3, GetNextRandomSeed(2)); + EXPECT_EQ(static_cast(kMaxRandomSeed), + GetNextRandomSeed(kMaxRandomSeed - 1)); + EXPECT_EQ(1, GetNextRandomSeed(kMaxRandomSeed)); + + // We deliberately don't test GetNextRandomSeed() with invalid + // inputs, as that requires death tests, which are expensive. This + // is fine as GetNextRandomSeed() is internal and has a + // straightforward definition. +} + +static void ClearCurrentTestPartResults() { + TestResultAccessor::ClearTestPartResults( + GetUnitTestImpl()->current_test_result()); +} + +// Tests GetTypeId. + +TEST(GetTypeIdTest, ReturnsSameValueForSameType) { + EXPECT_EQ(GetTypeId(), GetTypeId()); + EXPECT_EQ(GetTypeId(), GetTypeId()); +} + +class SubClassOfTest : public Test {}; +class AnotherSubClassOfTest : public Test {}; + +TEST(GetTypeIdTest, ReturnsDifferentValuesForDifferentTypes) { + EXPECT_NE(GetTypeId(), GetTypeId()); + EXPECT_NE(GetTypeId(), GetTypeId()); + EXPECT_NE(GetTypeId(), GetTestTypeId()); + EXPECT_NE(GetTypeId(), GetTestTypeId()); + EXPECT_NE(GetTypeId(), GetTestTypeId()); + EXPECT_NE(GetTypeId(), GetTypeId()); +} + +// Verifies that GetTestTypeId() returns the same value, no matter it +// is called from inside Google Test or outside of it. +TEST(GetTestTypeIdTest, ReturnsTheSameValueInsideOrOutsideOfGoogleTest) { + EXPECT_EQ(kTestTypeIdInGoogleTest, GetTestTypeId()); +} + +// Tests FormatTimeInMillisAsSeconds(). + +TEST(FormatTimeInMillisAsSecondsTest, FormatsZero) { + EXPECT_EQ("0", FormatTimeInMillisAsSeconds(0)); +} + +TEST(FormatTimeInMillisAsSecondsTest, FormatsPositiveNumber) { + EXPECT_EQ("0.003", FormatTimeInMillisAsSeconds(3)); + EXPECT_EQ("0.01", FormatTimeInMillisAsSeconds(10)); + EXPECT_EQ("0.2", FormatTimeInMillisAsSeconds(200)); + EXPECT_EQ("1.2", FormatTimeInMillisAsSeconds(1200)); + EXPECT_EQ("3", FormatTimeInMillisAsSeconds(3000)); +} + +TEST(FormatTimeInMillisAsSecondsTest, FormatsNegativeNumber) { + EXPECT_EQ("-0.003", FormatTimeInMillisAsSeconds(-3)); + EXPECT_EQ("-0.01", FormatTimeInMillisAsSeconds(-10)); + EXPECT_EQ("-0.2", FormatTimeInMillisAsSeconds(-200)); + EXPECT_EQ("-1.2", FormatTimeInMillisAsSeconds(-1200)); + EXPECT_EQ("-3", FormatTimeInMillisAsSeconds(-3000)); +} + +// Tests FormatEpochTimeInMillisAsIso8601(). The correctness of conversion +// for particular dates below was verified in Python using +// datetime.datetime.fromutctimestamp(/1000). + +// FormatEpochTimeInMillisAsIso8601 depends on the current timezone, so we +// have to set up a particular timezone to obtain predictable results. +class FormatEpochTimeInMillisAsIso8601Test : public Test { + public: + // On Cygwin, GCC doesn't allow unqualified integer literals to exceed + // 32 bits, even when 64-bit integer types are available. We have to + // force the constants to have a 64-bit type here. + static const TimeInMillis kMillisPerSec = 1000; + + private: + virtual void SetUp() { + saved_tz_ = NULL; +#if _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4996) // Temporarily disables warning 4996 + // (function or variable may be unsafe + // for getenv, function is deprecated for + // strdup). + if (getenv("TZ")) + saved_tz_ = strdup(getenv("TZ")); +# pragma warning(pop) // Restores the warning state again. +#else + if (getenv("TZ")) + saved_tz_ = strdup(getenv("TZ")); +#endif + + // Set up the time zone for FormatEpochTimeInMillisAsIso8601 to use. We + // cannot use the local time zone because the function's output depends + // on the time zone. + SetTimeZone("UTC+00"); + } + + virtual void TearDown() { + SetTimeZone(saved_tz_); + free(const_cast(saved_tz_)); + saved_tz_ = NULL; + } + + static void SetTimeZone(const char* time_zone) { + // tzset() distinguishes between the TZ variable being present and empty + // and not being present, so we have to consider the case of time_zone + // being NULL. +#if _MSC_VER + // ...Unless it's MSVC, whose standard library's _putenv doesn't + // distinguish between an empty and a missing variable. + const std::string env_var = + std::string("TZ=") + (time_zone ? time_zone : ""); + _putenv(env_var.c_str()); +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4996) // Temporarily disables warning 4996 + // (function is deprecated). + tzset(); +# pragma warning(pop) // Restores the warning state again. +#else + if (time_zone) { + setenv(("TZ"), time_zone, 1); + } else { + unsetenv("TZ"); + } + tzset(); +#endif + } + + const char* saved_tz_; +}; + +const TimeInMillis FormatEpochTimeInMillisAsIso8601Test::kMillisPerSec; + +TEST_F(FormatEpochTimeInMillisAsIso8601Test, PrintsTwoDigitSegments) { + EXPECT_EQ("2011-10-31T18:52:42", + FormatEpochTimeInMillisAsIso8601(1320087162 * kMillisPerSec)); +} + +TEST_F(FormatEpochTimeInMillisAsIso8601Test, MillisecondsDoNotAffectResult) { + EXPECT_EQ( + "2011-10-31T18:52:42", + FormatEpochTimeInMillisAsIso8601(1320087162 * kMillisPerSec + 234)); +} + +TEST_F(FormatEpochTimeInMillisAsIso8601Test, PrintsLeadingZeroes) { + EXPECT_EQ("2011-09-03T05:07:02", + FormatEpochTimeInMillisAsIso8601(1315026422 * kMillisPerSec)); +} + +TEST_F(FormatEpochTimeInMillisAsIso8601Test, Prints24HourTime) { + EXPECT_EQ("2011-09-28T17:08:22", + FormatEpochTimeInMillisAsIso8601(1317229702 * kMillisPerSec)); +} + +TEST_F(FormatEpochTimeInMillisAsIso8601Test, PrintsEpochStart) { + EXPECT_EQ("1970-01-01T00:00:00", FormatEpochTimeInMillisAsIso8601(0)); +} + +#if GTEST_CAN_COMPARE_NULL + +# ifdef __BORLANDC__ +// Silences warnings: "Condition is always true", "Unreachable code" +# pragma option push -w-ccc -w-rch +# endif + +// Tests that GTEST_IS_NULL_LITERAL_(x) is true when x is a null +// pointer literal. +TEST(NullLiteralTest, IsTrueForNullLiterals) { + EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(NULL)); + EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(0)); + EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(0U)); + EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(0L)); +} + +// Tests that GTEST_IS_NULL_LITERAL_(x) is false when x is not a null +// pointer literal. +TEST(NullLiteralTest, IsFalseForNonNullLiterals) { + EXPECT_FALSE(GTEST_IS_NULL_LITERAL_(1)); + EXPECT_FALSE(GTEST_IS_NULL_LITERAL_(0.0)); + EXPECT_FALSE(GTEST_IS_NULL_LITERAL_('a')); + EXPECT_FALSE(GTEST_IS_NULL_LITERAL_(static_cast(NULL))); +} + +# ifdef __BORLANDC__ +// Restores warnings after previous "#pragma option push" suppressed them. +# pragma option pop +# endif + +#endif // GTEST_CAN_COMPARE_NULL +// +// Tests CodePointToUtf8(). + +// Tests that the NUL character L'\0' is encoded correctly. +TEST(CodePointToUtf8Test, CanEncodeNul) { + EXPECT_EQ("", CodePointToUtf8(L'\0')); +} + +// Tests that ASCII characters are encoded correctly. +TEST(CodePointToUtf8Test, CanEncodeAscii) { + EXPECT_EQ("a", CodePointToUtf8(L'a')); + EXPECT_EQ("Z", CodePointToUtf8(L'Z')); + EXPECT_EQ("&", CodePointToUtf8(L'&')); + EXPECT_EQ("\x7F", CodePointToUtf8(L'\x7F')); +} + +// Tests that Unicode code-points that have 8 to 11 bits are encoded +// as 110xxxxx 10xxxxxx. +TEST(CodePointToUtf8Test, CanEncode8To11Bits) { + // 000 1101 0011 => 110-00011 10-010011 + EXPECT_EQ("\xC3\x93", CodePointToUtf8(L'\xD3')); + + // 101 0111 0110 => 110-10101 10-110110 + // Some compilers (e.g., GCC on MinGW) cannot handle non-ASCII codepoints + // in wide strings and wide chars. In order to accomodate them, we have to + // introduce such character constants as integers. + EXPECT_EQ("\xD5\xB6", + CodePointToUtf8(static_cast(0x576))); +} + +// Tests that Unicode code-points that have 12 to 16 bits are encoded +// as 1110xxxx 10xxxxxx 10xxxxxx. +TEST(CodePointToUtf8Test, CanEncode12To16Bits) { + // 0000 1000 1101 0011 => 1110-0000 10-100011 10-010011 + EXPECT_EQ("\xE0\xA3\x93", + CodePointToUtf8(static_cast(0x8D3))); + + // 1100 0111 0100 1101 => 1110-1100 10-011101 10-001101 + EXPECT_EQ("\xEC\x9D\x8D", + CodePointToUtf8(static_cast(0xC74D))); +} + +#if !GTEST_WIDE_STRING_USES_UTF16_ +// Tests in this group require a wchar_t to hold > 16 bits, and thus +// are skipped on Windows, Cygwin, and Symbian, where a wchar_t is +// 16-bit wide. This code may not compile on those systems. + +// Tests that Unicode code-points that have 17 to 21 bits are encoded +// as 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx. +TEST(CodePointToUtf8Test, CanEncode17To21Bits) { + // 0 0001 0000 1000 1101 0011 => 11110-000 10-010000 10-100011 10-010011 + EXPECT_EQ("\xF0\x90\xA3\x93", CodePointToUtf8(L'\x108D3')); + + // 0 0001 0000 0100 0000 0000 => 11110-000 10-010000 10-010000 10-000000 + EXPECT_EQ("\xF0\x90\x90\x80", CodePointToUtf8(L'\x10400')); + + // 1 0000 1000 0110 0011 0100 => 11110-100 10-001000 10-011000 10-110100 + EXPECT_EQ("\xF4\x88\x98\xB4", CodePointToUtf8(L'\x108634')); +} + +// Tests that encoding an invalid code-point generates the expected result. +TEST(CodePointToUtf8Test, CanEncodeInvalidCodePoint) { + EXPECT_EQ("(Invalid Unicode 0x1234ABCD)", CodePointToUtf8(L'\x1234ABCD')); +} + +#endif // !GTEST_WIDE_STRING_USES_UTF16_ + +// Tests WideStringToUtf8(). + +// Tests that the NUL character L'\0' is encoded correctly. +TEST(WideStringToUtf8Test, CanEncodeNul) { + EXPECT_STREQ("", WideStringToUtf8(L"", 0).c_str()); + EXPECT_STREQ("", WideStringToUtf8(L"", -1).c_str()); +} + +// Tests that ASCII strings are encoded correctly. +TEST(WideStringToUtf8Test, CanEncodeAscii) { + EXPECT_STREQ("a", WideStringToUtf8(L"a", 1).c_str()); + EXPECT_STREQ("ab", WideStringToUtf8(L"ab", 2).c_str()); + EXPECT_STREQ("a", WideStringToUtf8(L"a", -1).c_str()); + EXPECT_STREQ("ab", WideStringToUtf8(L"ab", -1).c_str()); +} + +// Tests that Unicode code-points that have 8 to 11 bits are encoded +// as 110xxxxx 10xxxxxx. +TEST(WideStringToUtf8Test, CanEncode8To11Bits) { + // 000 1101 0011 => 110-00011 10-010011 + EXPECT_STREQ("\xC3\x93", WideStringToUtf8(L"\xD3", 1).c_str()); + EXPECT_STREQ("\xC3\x93", WideStringToUtf8(L"\xD3", -1).c_str()); + + // 101 0111 0110 => 110-10101 10-110110 + const wchar_t s[] = { 0x576, '\0' }; + EXPECT_STREQ("\xD5\xB6", WideStringToUtf8(s, 1).c_str()); + EXPECT_STREQ("\xD5\xB6", WideStringToUtf8(s, -1).c_str()); +} + +// Tests that Unicode code-points that have 12 to 16 bits are encoded +// as 1110xxxx 10xxxxxx 10xxxxxx. +TEST(WideStringToUtf8Test, CanEncode12To16Bits) { + // 0000 1000 1101 0011 => 1110-0000 10-100011 10-010011 + const wchar_t s1[] = { 0x8D3, '\0' }; + EXPECT_STREQ("\xE0\xA3\x93", WideStringToUtf8(s1, 1).c_str()); + EXPECT_STREQ("\xE0\xA3\x93", WideStringToUtf8(s1, -1).c_str()); + + // 1100 0111 0100 1101 => 1110-1100 10-011101 10-001101 + const wchar_t s2[] = { 0xC74D, '\0' }; + EXPECT_STREQ("\xEC\x9D\x8D", WideStringToUtf8(s2, 1).c_str()); + EXPECT_STREQ("\xEC\x9D\x8D", WideStringToUtf8(s2, -1).c_str()); +} + +// Tests that the conversion stops when the function encounters \0 character. +TEST(WideStringToUtf8Test, StopsOnNulCharacter) { + EXPECT_STREQ("ABC", WideStringToUtf8(L"ABC\0XYZ", 100).c_str()); +} + +// Tests that the conversion stops when the function reaches the limit +// specified by the 'length' parameter. +TEST(WideStringToUtf8Test, StopsWhenLengthLimitReached) { + EXPECT_STREQ("ABC", WideStringToUtf8(L"ABCDEF", 3).c_str()); +} + +#if !GTEST_WIDE_STRING_USES_UTF16_ +// Tests that Unicode code-points that have 17 to 21 bits are encoded +// as 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx. This code may not compile +// on the systems using UTF-16 encoding. +TEST(WideStringToUtf8Test, CanEncode17To21Bits) { + // 0 0001 0000 1000 1101 0011 => 11110-000 10-010000 10-100011 10-010011 + EXPECT_STREQ("\xF0\x90\xA3\x93", WideStringToUtf8(L"\x108D3", 1).c_str()); + EXPECT_STREQ("\xF0\x90\xA3\x93", WideStringToUtf8(L"\x108D3", -1).c_str()); + + // 1 0000 1000 0110 0011 0100 => 11110-100 10-001000 10-011000 10-110100 + EXPECT_STREQ("\xF4\x88\x98\xB4", WideStringToUtf8(L"\x108634", 1).c_str()); + EXPECT_STREQ("\xF4\x88\x98\xB4", WideStringToUtf8(L"\x108634", -1).c_str()); +} + +// Tests that encoding an invalid code-point generates the expected result. +TEST(WideStringToUtf8Test, CanEncodeInvalidCodePoint) { + EXPECT_STREQ("(Invalid Unicode 0xABCDFF)", + WideStringToUtf8(L"\xABCDFF", -1).c_str()); +} +#else // !GTEST_WIDE_STRING_USES_UTF16_ +// Tests that surrogate pairs are encoded correctly on the systems using +// UTF-16 encoding in the wide strings. +TEST(WideStringToUtf8Test, CanEncodeValidUtf16SUrrogatePairs) { + const wchar_t s[] = { 0xD801, 0xDC00, '\0' }; + EXPECT_STREQ("\xF0\x90\x90\x80", WideStringToUtf8(s, -1).c_str()); +} + +// Tests that encoding an invalid UTF-16 surrogate pair +// generates the expected result. +TEST(WideStringToUtf8Test, CanEncodeInvalidUtf16SurrogatePair) { + // Leading surrogate is at the end of the string. + const wchar_t s1[] = { 0xD800, '\0' }; + EXPECT_STREQ("\xED\xA0\x80", WideStringToUtf8(s1, -1).c_str()); + // Leading surrogate is not followed by the trailing surrogate. + const wchar_t s2[] = { 0xD800, 'M', '\0' }; + EXPECT_STREQ("\xED\xA0\x80M", WideStringToUtf8(s2, -1).c_str()); + // Trailing surrogate appearas without a leading surrogate. + const wchar_t s3[] = { 0xDC00, 'P', 'Q', 'R', '\0' }; + EXPECT_STREQ("\xED\xB0\x80PQR", WideStringToUtf8(s3, -1).c_str()); +} +#endif // !GTEST_WIDE_STRING_USES_UTF16_ + +// Tests that codepoint concatenation works correctly. +#if !GTEST_WIDE_STRING_USES_UTF16_ +TEST(WideStringToUtf8Test, ConcatenatesCodepointsCorrectly) { + const wchar_t s[] = { 0x108634, 0xC74D, '\n', 0x576, 0x8D3, 0x108634, '\0'}; + EXPECT_STREQ( + "\xF4\x88\x98\xB4" + "\xEC\x9D\x8D" + "\n" + "\xD5\xB6" + "\xE0\xA3\x93" + "\xF4\x88\x98\xB4", + WideStringToUtf8(s, -1).c_str()); +} +#else +TEST(WideStringToUtf8Test, ConcatenatesCodepointsCorrectly) { + const wchar_t s[] = { 0xC74D, '\n', 0x576, 0x8D3, '\0'}; + EXPECT_STREQ( + "\xEC\x9D\x8D" "\n" "\xD5\xB6" "\xE0\xA3\x93", + WideStringToUtf8(s, -1).c_str()); +} +#endif // !GTEST_WIDE_STRING_USES_UTF16_ + +// Tests the Random class. + +TEST(RandomDeathTest, GeneratesCrashesOnInvalidRange) { + testing::internal::Random random(42); + EXPECT_DEATH_IF_SUPPORTED( + random.Generate(0), + "Cannot generate a number in the range \\[0, 0\\)"); + EXPECT_DEATH_IF_SUPPORTED( + random.Generate(testing::internal::Random::kMaxRange + 1), + "Generation of a number in \\[0, 2147483649\\) was requested, " + "but this can only generate numbers in \\[0, 2147483648\\)"); +} + +TEST(RandomTest, GeneratesNumbersWithinRange) { + const UInt32 kRange = 10000; + testing::internal::Random random(12345); + for (int i = 0; i < 10; i++) { + EXPECT_LT(random.Generate(kRange), kRange) << " for iteration " << i; + } + + testing::internal::Random random2(testing::internal::Random::kMaxRange); + for (int i = 0; i < 10; i++) { + EXPECT_LT(random2.Generate(kRange), kRange) << " for iteration " << i; + } +} + +TEST(RandomTest, RepeatsWhenReseeded) { + const int kSeed = 123; + const int kArraySize = 10; + const UInt32 kRange = 10000; + UInt32 values[kArraySize]; + + testing::internal::Random random(kSeed); + for (int i = 0; i < kArraySize; i++) { + values[i] = random.Generate(kRange); + } + + random.Reseed(kSeed); + for (int i = 0; i < kArraySize; i++) { + EXPECT_EQ(values[i], random.Generate(kRange)) << " for iteration " << i; + } +} + +// Tests STL container utilities. + +// Tests CountIf(). + +static bool IsPositive(int n) { return n > 0; } + +TEST(ContainerUtilityTest, CountIf) { + std::vector v; + EXPECT_EQ(0, CountIf(v, IsPositive)); // Works for an empty container. + + v.push_back(-1); + v.push_back(0); + EXPECT_EQ(0, CountIf(v, IsPositive)); // Works when no value satisfies. + + v.push_back(2); + v.push_back(-10); + v.push_back(10); + EXPECT_EQ(2, CountIf(v, IsPositive)); +} + +// Tests ForEach(). + +static int g_sum = 0; +static void Accumulate(int n) { g_sum += n; } + +TEST(ContainerUtilityTest, ForEach) { + std::vector v; + g_sum = 0; + ForEach(v, Accumulate); + EXPECT_EQ(0, g_sum); // Works for an empty container; + + g_sum = 0; + v.push_back(1); + ForEach(v, Accumulate); + EXPECT_EQ(1, g_sum); // Works for a container with one element. + + g_sum = 0; + v.push_back(20); + v.push_back(300); + ForEach(v, Accumulate); + EXPECT_EQ(321, g_sum); +} + +// Tests GetElementOr(). +TEST(ContainerUtilityTest, GetElementOr) { + std::vector a; + EXPECT_EQ('x', GetElementOr(a, 0, 'x')); + + a.push_back('a'); + a.push_back('b'); + EXPECT_EQ('a', GetElementOr(a, 0, 'x')); + EXPECT_EQ('b', GetElementOr(a, 1, 'x')); + EXPECT_EQ('x', GetElementOr(a, -2, 'x')); + EXPECT_EQ('x', GetElementOr(a, 2, 'x')); +} + +TEST(ContainerUtilityDeathTest, ShuffleRange) { + std::vector a; + a.push_back(0); + a.push_back(1); + a.push_back(2); + testing::internal::Random random(1); + + EXPECT_DEATH_IF_SUPPORTED( + ShuffleRange(&random, -1, 1, &a), + "Invalid shuffle range start -1: must be in range \\[0, 3\\]"); + EXPECT_DEATH_IF_SUPPORTED( + ShuffleRange(&random, 4, 4, &a), + "Invalid shuffle range start 4: must be in range \\[0, 3\\]"); + EXPECT_DEATH_IF_SUPPORTED( + ShuffleRange(&random, 3, 2, &a), + "Invalid shuffle range finish 2: must be in range \\[3, 3\\]"); + EXPECT_DEATH_IF_SUPPORTED( + ShuffleRange(&random, 3, 4, &a), + "Invalid shuffle range finish 4: must be in range \\[3, 3\\]"); +} + +class VectorShuffleTest : public Test { + protected: + static const int kVectorSize = 20; + + VectorShuffleTest() : random_(1) { + for (int i = 0; i < kVectorSize; i++) { + vector_.push_back(i); + } + } + + static bool VectorIsCorrupt(const TestingVector& vector) { + if (kVectorSize != static_cast(vector.size())) { + return true; + } + + bool found_in_vector[kVectorSize] = { false }; + for (size_t i = 0; i < vector.size(); i++) { + const int e = vector[i]; + if (e < 0 || e >= kVectorSize || found_in_vector[e]) { + return true; + } + found_in_vector[e] = true; + } + + // Vector size is correct, elements' range is correct, no + // duplicate elements. Therefore no corruption has occurred. + return false; + } + + static bool VectorIsNotCorrupt(const TestingVector& vector) { + return !VectorIsCorrupt(vector); + } + + static bool RangeIsShuffled(const TestingVector& vector, int begin, int end) { + for (int i = begin; i < end; i++) { + if (i != vector[i]) { + return true; + } + } + return false; + } + + static bool RangeIsUnshuffled( + const TestingVector& vector, int begin, int end) { + return !RangeIsShuffled(vector, begin, end); + } + + static bool VectorIsShuffled(const TestingVector& vector) { + return RangeIsShuffled(vector, 0, static_cast(vector.size())); + } + + static bool VectorIsUnshuffled(const TestingVector& vector) { + return !VectorIsShuffled(vector); + } + + testing::internal::Random random_; + TestingVector vector_; +}; // class VectorShuffleTest + +const int VectorShuffleTest::kVectorSize; + +TEST_F(VectorShuffleTest, HandlesEmptyRange) { + // Tests an empty range at the beginning... + ShuffleRange(&random_, 0, 0, &vector_); + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + ASSERT_PRED1(VectorIsUnshuffled, vector_); + + // ...in the middle... + ShuffleRange(&random_, kVectorSize/2, kVectorSize/2, &vector_); + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + ASSERT_PRED1(VectorIsUnshuffled, vector_); + + // ...at the end... + ShuffleRange(&random_, kVectorSize - 1, kVectorSize - 1, &vector_); + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + ASSERT_PRED1(VectorIsUnshuffled, vector_); + + // ...and past the end. + ShuffleRange(&random_, kVectorSize, kVectorSize, &vector_); + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + ASSERT_PRED1(VectorIsUnshuffled, vector_); +} + +TEST_F(VectorShuffleTest, HandlesRangeOfSizeOne) { + // Tests a size one range at the beginning... + ShuffleRange(&random_, 0, 1, &vector_); + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + ASSERT_PRED1(VectorIsUnshuffled, vector_); + + // ...in the middle... + ShuffleRange(&random_, kVectorSize/2, kVectorSize/2 + 1, &vector_); + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + ASSERT_PRED1(VectorIsUnshuffled, vector_); + + // ...and at the end. + ShuffleRange(&random_, kVectorSize - 1, kVectorSize, &vector_); + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + ASSERT_PRED1(VectorIsUnshuffled, vector_); +} + +// Because we use our own random number generator and a fixed seed, +// we can guarantee that the following "random" tests will succeed. + +TEST_F(VectorShuffleTest, ShufflesEntireVector) { + Shuffle(&random_, &vector_); + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + EXPECT_FALSE(VectorIsUnshuffled(vector_)) << vector_; + + // Tests the first and last elements in particular to ensure that + // there are no off-by-one problems in our shuffle algorithm. + EXPECT_NE(0, vector_[0]); + EXPECT_NE(kVectorSize - 1, vector_[kVectorSize - 1]); +} + +TEST_F(VectorShuffleTest, ShufflesStartOfVector) { + const int kRangeSize = kVectorSize/2; + + ShuffleRange(&random_, 0, kRangeSize, &vector_); + + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + EXPECT_PRED3(RangeIsShuffled, vector_, 0, kRangeSize); + EXPECT_PRED3(RangeIsUnshuffled, vector_, kRangeSize, kVectorSize); +} + +TEST_F(VectorShuffleTest, ShufflesEndOfVector) { + const int kRangeSize = kVectorSize / 2; + ShuffleRange(&random_, kRangeSize, kVectorSize, &vector_); + + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + EXPECT_PRED3(RangeIsUnshuffled, vector_, 0, kRangeSize); + EXPECT_PRED3(RangeIsShuffled, vector_, kRangeSize, kVectorSize); +} + +TEST_F(VectorShuffleTest, ShufflesMiddleOfVector) { + int kRangeSize = kVectorSize/3; + ShuffleRange(&random_, kRangeSize, 2*kRangeSize, &vector_); + + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + EXPECT_PRED3(RangeIsUnshuffled, vector_, 0, kRangeSize); + EXPECT_PRED3(RangeIsShuffled, vector_, kRangeSize, 2*kRangeSize); + EXPECT_PRED3(RangeIsUnshuffled, vector_, 2*kRangeSize, kVectorSize); +} + +TEST_F(VectorShuffleTest, ShufflesRepeatably) { + TestingVector vector2; + for (int i = 0; i < kVectorSize; i++) { + vector2.push_back(i); + } + + random_.Reseed(1234); + Shuffle(&random_, &vector_); + random_.Reseed(1234); + Shuffle(&random_, &vector2); + + ASSERT_PRED1(VectorIsNotCorrupt, vector_); + ASSERT_PRED1(VectorIsNotCorrupt, vector2); + + for (int i = 0; i < kVectorSize; i++) { + EXPECT_EQ(vector_[i], vector2[i]) << " where i is " << i; + } +} + +// Tests the size of the AssertHelper class. + +TEST(AssertHelperTest, AssertHelperIsSmall) { + // To avoid breaking clients that use lots of assertions in one + // function, we cannot grow the size of AssertHelper. + EXPECT_LE(sizeof(testing::internal::AssertHelper), sizeof(void*)); +} + +// Tests String::EndsWithCaseInsensitive(). +TEST(StringTest, EndsWithCaseInsensitive) { + EXPECT_TRUE(String::EndsWithCaseInsensitive("foobar", "BAR")); + EXPECT_TRUE(String::EndsWithCaseInsensitive("foobaR", "bar")); + EXPECT_TRUE(String::EndsWithCaseInsensitive("foobar", "")); + EXPECT_TRUE(String::EndsWithCaseInsensitive("", "")); + + EXPECT_FALSE(String::EndsWithCaseInsensitive("Foobar", "foo")); + EXPECT_FALSE(String::EndsWithCaseInsensitive("foobar", "Foo")); + EXPECT_FALSE(String::EndsWithCaseInsensitive("", "foo")); +} + +// C++Builder's preprocessor is buggy; it fails to expand macros that +// appear in macro parameters after wide char literals. Provide an alias +// for NULL as a workaround. +static const wchar_t* const kNull = NULL; + +// Tests String::CaseInsensitiveWideCStringEquals +TEST(StringTest, CaseInsensitiveWideCStringEquals) { + EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(NULL, NULL)); + EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(kNull, L"")); + EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(L"", kNull)); + EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(kNull, L"foobar")); + EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(L"foobar", kNull)); + EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"foobar", L"foobar")); + EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"foobar", L"FOOBAR")); + EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"FOOBAR", L"foobar")); +} + +#if GTEST_OS_WINDOWS + +// Tests String::ShowWideCString(). +TEST(StringTest, ShowWideCString) { + EXPECT_STREQ("(null)", + String::ShowWideCString(NULL).c_str()); + EXPECT_STREQ("", String::ShowWideCString(L"").c_str()); + EXPECT_STREQ("foo", String::ShowWideCString(L"foo").c_str()); +} + +# if GTEST_OS_WINDOWS_MOBILE +TEST(StringTest, AnsiAndUtf16Null) { + EXPECT_EQ(NULL, String::AnsiToUtf16(NULL)); + EXPECT_EQ(NULL, String::Utf16ToAnsi(NULL)); +} + +TEST(StringTest, AnsiAndUtf16ConvertBasic) { + const char* ansi = String::Utf16ToAnsi(L"str"); + EXPECT_STREQ("str", ansi); + delete [] ansi; + const WCHAR* utf16 = String::AnsiToUtf16("str"); + EXPECT_EQ(0, wcsncmp(L"str", utf16, 3)); + delete [] utf16; +} + +TEST(StringTest, AnsiAndUtf16ConvertPathChars) { + const char* ansi = String::Utf16ToAnsi(L".:\\ \"*?"); + EXPECT_STREQ(".:\\ \"*?", ansi); + delete [] ansi; + const WCHAR* utf16 = String::AnsiToUtf16(".:\\ \"*?"); + EXPECT_EQ(0, wcsncmp(L".:\\ \"*?", utf16, 3)); + delete [] utf16; +} +# endif // GTEST_OS_WINDOWS_MOBILE + +#endif // GTEST_OS_WINDOWS + +// Tests TestProperty construction. +TEST(TestPropertyTest, StringValue) { + TestProperty property("key", "1"); + EXPECT_STREQ("key", property.key()); + EXPECT_STREQ("1", property.value()); +} + +// Tests TestProperty replacing a value. +TEST(TestPropertyTest, ReplaceStringValue) { + TestProperty property("key", "1"); + EXPECT_STREQ("1", property.value()); + property.SetValue("2"); + EXPECT_STREQ("2", property.value()); +} + +// AddFatalFailure() and AddNonfatalFailure() must be stand-alone +// functions (i.e. their definitions cannot be inlined at the call +// sites), or C++Builder won't compile the code. +static void AddFatalFailure() { + FAIL() << "Expected fatal failure."; +} + +static void AddNonfatalFailure() { + ADD_FAILURE() << "Expected non-fatal failure."; +} + +class ScopedFakeTestPartResultReporterTest : public Test { + public: // Must be public and not protected due to a bug in g++ 3.4.2. + enum FailureMode { + FATAL_FAILURE, + NONFATAL_FAILURE + }; + static void AddFailure(FailureMode failure) { + if (failure == FATAL_FAILURE) { + AddFatalFailure(); + } else { + AddNonfatalFailure(); + } + } +}; + +// Tests that ScopedFakeTestPartResultReporter intercepts test +// failures. +TEST_F(ScopedFakeTestPartResultReporterTest, InterceptsTestFailures) { + TestPartResultArray results; + { + ScopedFakeTestPartResultReporter reporter( + ScopedFakeTestPartResultReporter::INTERCEPT_ONLY_CURRENT_THREAD, + &results); + AddFailure(NONFATAL_FAILURE); + AddFailure(FATAL_FAILURE); + } + + EXPECT_EQ(2, results.size()); + EXPECT_TRUE(results.GetTestPartResult(0).nonfatally_failed()); + EXPECT_TRUE(results.GetTestPartResult(1).fatally_failed()); +} + +TEST_F(ScopedFakeTestPartResultReporterTest, DeprecatedConstructor) { + TestPartResultArray results; + { + // Tests, that the deprecated constructor still works. + ScopedFakeTestPartResultReporter reporter(&results); + AddFailure(NONFATAL_FAILURE); + } + EXPECT_EQ(1, results.size()); +} + +#if GTEST_IS_THREADSAFE + +class ScopedFakeTestPartResultReporterWithThreadsTest + : public ScopedFakeTestPartResultReporterTest { + protected: + static void AddFailureInOtherThread(FailureMode failure) { + ThreadWithParam thread(&AddFailure, failure, NULL); + thread.Join(); + } +}; + +TEST_F(ScopedFakeTestPartResultReporterWithThreadsTest, + InterceptsTestFailuresInAllThreads) { + TestPartResultArray results; + { + ScopedFakeTestPartResultReporter reporter( + ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS, &results); + AddFailure(NONFATAL_FAILURE); + AddFailure(FATAL_FAILURE); + AddFailureInOtherThread(NONFATAL_FAILURE); + AddFailureInOtherThread(FATAL_FAILURE); + } + + EXPECT_EQ(4, results.size()); + EXPECT_TRUE(results.GetTestPartResult(0).nonfatally_failed()); + EXPECT_TRUE(results.GetTestPartResult(1).fatally_failed()); + EXPECT_TRUE(results.GetTestPartResult(2).nonfatally_failed()); + EXPECT_TRUE(results.GetTestPartResult(3).fatally_failed()); +} + +#endif // GTEST_IS_THREADSAFE + +// Tests EXPECT_FATAL_FAILURE{,ON_ALL_THREADS}. Makes sure that they +// work even if the failure is generated in a called function rather than +// the current context. + +typedef ScopedFakeTestPartResultReporterTest ExpectFatalFailureTest; + +TEST_F(ExpectFatalFailureTest, CatchesFatalFaliure) { + EXPECT_FATAL_FAILURE(AddFatalFailure(), "Expected fatal failure."); +} + +#if GTEST_HAS_GLOBAL_STRING +TEST_F(ExpectFatalFailureTest, AcceptsStringObject) { + EXPECT_FATAL_FAILURE(AddFatalFailure(), ::string("Expected fatal failure.")); +} +#endif + +TEST_F(ExpectFatalFailureTest, AcceptsStdStringObject) { + EXPECT_FATAL_FAILURE(AddFatalFailure(), + ::std::string("Expected fatal failure.")); +} + +TEST_F(ExpectFatalFailureTest, CatchesFatalFailureOnAllThreads) { + // We have another test below to verify that the macro catches fatal + // failures generated on another thread. + EXPECT_FATAL_FAILURE_ON_ALL_THREADS(AddFatalFailure(), + "Expected fatal failure."); +} + +#ifdef __BORLANDC__ +// Silences warnings: "Condition is always true" +# pragma option push -w-ccc +#endif + +// Tests that EXPECT_FATAL_FAILURE() can be used in a non-void +// function even when the statement in it contains ASSERT_*. + +int NonVoidFunction() { + EXPECT_FATAL_FAILURE(ASSERT_TRUE(false), ""); + EXPECT_FATAL_FAILURE_ON_ALL_THREADS(FAIL(), ""); + return 0; +} + +TEST_F(ExpectFatalFailureTest, CanBeUsedInNonVoidFunction) { + NonVoidFunction(); +} + +// Tests that EXPECT_FATAL_FAILURE(statement, ...) doesn't abort the +// current function even though 'statement' generates a fatal failure. + +void DoesNotAbortHelper(bool* aborted) { + EXPECT_FATAL_FAILURE(ASSERT_TRUE(false), ""); + EXPECT_FATAL_FAILURE_ON_ALL_THREADS(FAIL(), ""); + + *aborted = false; +} + +#ifdef __BORLANDC__ +// Restores warnings after previous "#pragma option push" suppressed them. +# pragma option pop +#endif + +TEST_F(ExpectFatalFailureTest, DoesNotAbort) { + bool aborted = true; + DoesNotAbortHelper(&aborted); + EXPECT_FALSE(aborted); +} + +// Tests that the EXPECT_FATAL_FAILURE{,_ON_ALL_THREADS} accepts a +// statement that contains a macro which expands to code containing an +// unprotected comma. + +static int global_var = 0; +#define GTEST_USE_UNPROTECTED_COMMA_ global_var++, global_var++ + +TEST_F(ExpectFatalFailureTest, AcceptsMacroThatExpandsToUnprotectedComma) { +#ifndef __BORLANDC__ + // ICE's in C++Builder. + EXPECT_FATAL_FAILURE({ + GTEST_USE_UNPROTECTED_COMMA_; + AddFatalFailure(); + }, ""); +#endif + + EXPECT_FATAL_FAILURE_ON_ALL_THREADS({ + GTEST_USE_UNPROTECTED_COMMA_; + AddFatalFailure(); + }, ""); +} + +// Tests EXPECT_NONFATAL_FAILURE{,ON_ALL_THREADS}. + +typedef ScopedFakeTestPartResultReporterTest ExpectNonfatalFailureTest; + +TEST_F(ExpectNonfatalFailureTest, CatchesNonfatalFailure) { + EXPECT_NONFATAL_FAILURE(AddNonfatalFailure(), + "Expected non-fatal failure."); +} + +#if GTEST_HAS_GLOBAL_STRING +TEST_F(ExpectNonfatalFailureTest, AcceptsStringObject) { + EXPECT_NONFATAL_FAILURE(AddNonfatalFailure(), + ::string("Expected non-fatal failure.")); +} +#endif + +TEST_F(ExpectNonfatalFailureTest, AcceptsStdStringObject) { + EXPECT_NONFATAL_FAILURE(AddNonfatalFailure(), + ::std::string("Expected non-fatal failure.")); +} + +TEST_F(ExpectNonfatalFailureTest, CatchesNonfatalFailureOnAllThreads) { + // We have another test below to verify that the macro catches + // non-fatal failures generated on another thread. + EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(AddNonfatalFailure(), + "Expected non-fatal failure."); +} + +// Tests that the EXPECT_NONFATAL_FAILURE{,_ON_ALL_THREADS} accepts a +// statement that contains a macro which expands to code containing an +// unprotected comma. +TEST_F(ExpectNonfatalFailureTest, AcceptsMacroThatExpandsToUnprotectedComma) { + EXPECT_NONFATAL_FAILURE({ + GTEST_USE_UNPROTECTED_COMMA_; + AddNonfatalFailure(); + }, ""); + + EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS({ + GTEST_USE_UNPROTECTED_COMMA_; + AddNonfatalFailure(); + }, ""); +} + +#if GTEST_IS_THREADSAFE + +typedef ScopedFakeTestPartResultReporterWithThreadsTest + ExpectFailureWithThreadsTest; + +TEST_F(ExpectFailureWithThreadsTest, ExpectFatalFailureOnAllThreads) { + EXPECT_FATAL_FAILURE_ON_ALL_THREADS(AddFailureInOtherThread(FATAL_FAILURE), + "Expected fatal failure."); +} + +TEST_F(ExpectFailureWithThreadsTest, ExpectNonFatalFailureOnAllThreads) { + EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS( + AddFailureInOtherThread(NONFATAL_FAILURE), "Expected non-fatal failure."); +} + +#endif // GTEST_IS_THREADSAFE + +// Tests the TestProperty class. + +TEST(TestPropertyTest, ConstructorWorks) { + const TestProperty property("key", "value"); + EXPECT_STREQ("key", property.key()); + EXPECT_STREQ("value", property.value()); +} + +TEST(TestPropertyTest, SetValue) { + TestProperty property("key", "value_1"); + EXPECT_STREQ("key", property.key()); + property.SetValue("value_2"); + EXPECT_STREQ("key", property.key()); + EXPECT_STREQ("value_2", property.value()); +} + +// Tests the TestResult class + +// The test fixture for testing TestResult. +class TestResultTest : public Test { + protected: + typedef std::vector TPRVector; + + // We make use of 2 TestPartResult objects, + TestPartResult * pr1, * pr2; + + // ... and 3 TestResult objects. + TestResult * r0, * r1, * r2; + + virtual void SetUp() { + // pr1 is for success. + pr1 = new TestPartResult(TestPartResult::kSuccess, + "foo/bar.cc", + 10, + "Success!"); + + // pr2 is for fatal failure. + pr2 = new TestPartResult(TestPartResult::kFatalFailure, + "foo/bar.cc", + -1, // This line number means "unknown" + "Failure!"); + + // Creates the TestResult objects. + r0 = new TestResult(); + r1 = new TestResult(); + r2 = new TestResult(); + + // In order to test TestResult, we need to modify its internal + // state, in particular the TestPartResult vector it holds. + // test_part_results() returns a const reference to this vector. + // We cast it to a non-const object s.t. it can be modified (yes, + // this is a hack). + TPRVector* results1 = const_cast( + &TestResultAccessor::test_part_results(*r1)); + TPRVector* results2 = const_cast( + &TestResultAccessor::test_part_results(*r2)); + + // r0 is an empty TestResult. + + // r1 contains a single SUCCESS TestPartResult. + results1->push_back(*pr1); + + // r2 contains a SUCCESS, and a FAILURE. + results2->push_back(*pr1); + results2->push_back(*pr2); + } + + virtual void TearDown() { + delete pr1; + delete pr2; + + delete r0; + delete r1; + delete r2; + } + + // Helper that compares two two TestPartResults. + static void CompareTestPartResult(const TestPartResult& expected, + const TestPartResult& actual) { + EXPECT_EQ(expected.type(), actual.type()); + EXPECT_STREQ(expected.file_name(), actual.file_name()); + EXPECT_EQ(expected.line_number(), actual.line_number()); + EXPECT_STREQ(expected.summary(), actual.summary()); + EXPECT_STREQ(expected.message(), actual.message()); + EXPECT_EQ(expected.passed(), actual.passed()); + EXPECT_EQ(expected.failed(), actual.failed()); + EXPECT_EQ(expected.nonfatally_failed(), actual.nonfatally_failed()); + EXPECT_EQ(expected.fatally_failed(), actual.fatally_failed()); + } +}; + +// Tests TestResult::total_part_count(). +TEST_F(TestResultTest, total_part_count) { + ASSERT_EQ(0, r0->total_part_count()); + ASSERT_EQ(1, r1->total_part_count()); + ASSERT_EQ(2, r2->total_part_count()); +} + +// Tests TestResult::Passed(). +TEST_F(TestResultTest, Passed) { + ASSERT_TRUE(r0->Passed()); + ASSERT_TRUE(r1->Passed()); + ASSERT_FALSE(r2->Passed()); +} + +// Tests TestResult::Failed(). +TEST_F(TestResultTest, Failed) { + ASSERT_FALSE(r0->Failed()); + ASSERT_FALSE(r1->Failed()); + ASSERT_TRUE(r2->Failed()); +} + +// Tests TestResult::GetTestPartResult(). + +typedef TestResultTest TestResultDeathTest; + +TEST_F(TestResultDeathTest, GetTestPartResult) { + CompareTestPartResult(*pr1, r2->GetTestPartResult(0)); + CompareTestPartResult(*pr2, r2->GetTestPartResult(1)); + EXPECT_DEATH_IF_SUPPORTED(r2->GetTestPartResult(2), ""); + EXPECT_DEATH_IF_SUPPORTED(r2->GetTestPartResult(-1), ""); +} + +// Tests TestResult has no properties when none are added. +TEST(TestResultPropertyTest, NoPropertiesFoundWhenNoneAreAdded) { + TestResult test_result; + ASSERT_EQ(0, test_result.test_property_count()); +} + +// Tests TestResult has the expected property when added. +TEST(TestResultPropertyTest, OnePropertyFoundWhenAdded) { + TestResult test_result; + TestProperty property("key_1", "1"); + TestResultAccessor::RecordProperty(&test_result, "testcase", property); + ASSERT_EQ(1, test_result.test_property_count()); + const TestProperty& actual_property = test_result.GetTestProperty(0); + EXPECT_STREQ("key_1", actual_property.key()); + EXPECT_STREQ("1", actual_property.value()); +} + +// Tests TestResult has multiple properties when added. +TEST(TestResultPropertyTest, MultiplePropertiesFoundWhenAdded) { + TestResult test_result; + TestProperty property_1("key_1", "1"); + TestProperty property_2("key_2", "2"); + TestResultAccessor::RecordProperty(&test_result, "testcase", property_1); + TestResultAccessor::RecordProperty(&test_result, "testcase", property_2); + ASSERT_EQ(2, test_result.test_property_count()); + const TestProperty& actual_property_1 = test_result.GetTestProperty(0); + EXPECT_STREQ("key_1", actual_property_1.key()); + EXPECT_STREQ("1", actual_property_1.value()); + + const TestProperty& actual_property_2 = test_result.GetTestProperty(1); + EXPECT_STREQ("key_2", actual_property_2.key()); + EXPECT_STREQ("2", actual_property_2.value()); +} + +// Tests TestResult::RecordProperty() overrides values for duplicate keys. +TEST(TestResultPropertyTest, OverridesValuesForDuplicateKeys) { + TestResult test_result; + TestProperty property_1_1("key_1", "1"); + TestProperty property_2_1("key_2", "2"); + TestProperty property_1_2("key_1", "12"); + TestProperty property_2_2("key_2", "22"); + TestResultAccessor::RecordProperty(&test_result, "testcase", property_1_1); + TestResultAccessor::RecordProperty(&test_result, "testcase", property_2_1); + TestResultAccessor::RecordProperty(&test_result, "testcase", property_1_2); + TestResultAccessor::RecordProperty(&test_result, "testcase", property_2_2); + + ASSERT_EQ(2, test_result.test_property_count()); + const TestProperty& actual_property_1 = test_result.GetTestProperty(0); + EXPECT_STREQ("key_1", actual_property_1.key()); + EXPECT_STREQ("12", actual_property_1.value()); + + const TestProperty& actual_property_2 = test_result.GetTestProperty(1); + EXPECT_STREQ("key_2", actual_property_2.key()); + EXPECT_STREQ("22", actual_property_2.value()); +} + +// Tests TestResult::GetTestProperty(). +TEST(TestResultPropertyTest, GetTestProperty) { + TestResult test_result; + TestProperty property_1("key_1", "1"); + TestProperty property_2("key_2", "2"); + TestProperty property_3("key_3", "3"); + TestResultAccessor::RecordProperty(&test_result, "testcase", property_1); + TestResultAccessor::RecordProperty(&test_result, "testcase", property_2); + TestResultAccessor::RecordProperty(&test_result, "testcase", property_3); + + const TestProperty& fetched_property_1 = test_result.GetTestProperty(0); + const TestProperty& fetched_property_2 = test_result.GetTestProperty(1); + const TestProperty& fetched_property_3 = test_result.GetTestProperty(2); + + EXPECT_STREQ("key_1", fetched_property_1.key()); + EXPECT_STREQ("1", fetched_property_1.value()); + + EXPECT_STREQ("key_2", fetched_property_2.key()); + EXPECT_STREQ("2", fetched_property_2.value()); + + EXPECT_STREQ("key_3", fetched_property_3.key()); + EXPECT_STREQ("3", fetched_property_3.value()); + + EXPECT_DEATH_IF_SUPPORTED(test_result.GetTestProperty(3), ""); + EXPECT_DEATH_IF_SUPPORTED(test_result.GetTestProperty(-1), ""); +} + +// Tests that GTestFlagSaver works on Windows and Mac. + +class GTestFlagSaverTest : public Test { + protected: + // Saves the Google Test flags such that we can restore them later, and + // then sets them to their default values. This will be called + // before the first test in this test case is run. + static void SetUpTestCase() { + saver_ = new GTestFlagSaver; + + GTEST_FLAG(also_run_disabled_tests) = false; + GTEST_FLAG(break_on_failure) = false; + GTEST_FLAG(catch_exceptions) = false; + GTEST_FLAG(death_test_use_fork) = false; + GTEST_FLAG(color) = "auto"; + GTEST_FLAG(filter) = ""; + GTEST_FLAG(list_tests) = false; + GTEST_FLAG(output) = ""; + GTEST_FLAG(print_time) = true; + GTEST_FLAG(random_seed) = 0; + GTEST_FLAG(repeat) = 1; + GTEST_FLAG(shuffle) = false; + GTEST_FLAG(stack_trace_depth) = kMaxStackTraceDepth; + GTEST_FLAG(stream_result_to) = ""; + GTEST_FLAG(throw_on_failure) = false; + } + + // Restores the Google Test flags that the tests have modified. This will + // be called after the last test in this test case is run. + static void TearDownTestCase() { + delete saver_; + saver_ = NULL; + } + + // Verifies that the Google Test flags have their default values, and then + // modifies each of them. + void VerifyAndModifyFlags() { + EXPECT_FALSE(GTEST_FLAG(also_run_disabled_tests)); + EXPECT_FALSE(GTEST_FLAG(break_on_failure)); + EXPECT_FALSE(GTEST_FLAG(catch_exceptions)); + EXPECT_STREQ("auto", GTEST_FLAG(color).c_str()); + EXPECT_FALSE(GTEST_FLAG(death_test_use_fork)); + EXPECT_STREQ("", GTEST_FLAG(filter).c_str()); + EXPECT_FALSE(GTEST_FLAG(list_tests)); + EXPECT_STREQ("", GTEST_FLAG(output).c_str()); + EXPECT_TRUE(GTEST_FLAG(print_time)); + EXPECT_EQ(0, GTEST_FLAG(random_seed)); + EXPECT_EQ(1, GTEST_FLAG(repeat)); + EXPECT_FALSE(GTEST_FLAG(shuffle)); + EXPECT_EQ(kMaxStackTraceDepth, GTEST_FLAG(stack_trace_depth)); + EXPECT_STREQ("", GTEST_FLAG(stream_result_to).c_str()); + EXPECT_FALSE(GTEST_FLAG(throw_on_failure)); + + GTEST_FLAG(also_run_disabled_tests) = true; + GTEST_FLAG(break_on_failure) = true; + GTEST_FLAG(catch_exceptions) = true; + GTEST_FLAG(color) = "no"; + GTEST_FLAG(death_test_use_fork) = true; + GTEST_FLAG(filter) = "abc"; + GTEST_FLAG(list_tests) = true; + GTEST_FLAG(output) = "xml:foo.xml"; + GTEST_FLAG(print_time) = false; + GTEST_FLAG(random_seed) = 1; + GTEST_FLAG(repeat) = 100; + GTEST_FLAG(shuffle) = true; + GTEST_FLAG(stack_trace_depth) = 1; + GTEST_FLAG(stream_result_to) = "localhost:1234"; + GTEST_FLAG(throw_on_failure) = true; + } + + private: + // For saving Google Test flags during this test case. + static GTestFlagSaver* saver_; +}; + +GTestFlagSaver* GTestFlagSaverTest::saver_ = NULL; + +// Google Test doesn't guarantee the order of tests. The following two +// tests are designed to work regardless of their order. + +// Modifies the Google Test flags in the test body. +TEST_F(GTestFlagSaverTest, ModifyGTestFlags) { + VerifyAndModifyFlags(); +} + +// Verifies that the Google Test flags in the body of the previous test were +// restored to their original values. +TEST_F(GTestFlagSaverTest, VerifyGTestFlags) { + VerifyAndModifyFlags(); +} + +// Sets an environment variable with the given name to the given +// value. If the value argument is "", unsets the environment +// variable. The caller must ensure that both arguments are not NULL. +static void SetEnv(const char* name, const char* value) { +#if GTEST_OS_WINDOWS_MOBILE + // Environment variables are not supported on Windows CE. + return; +#elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9) + // C++Builder's putenv only stores a pointer to its parameter; we have to + // ensure that the string remains valid as long as it might be needed. + // We use an std::map to do so. + static std::map added_env; + + // Because putenv stores a pointer to the string buffer, we can't delete the + // previous string (if present) until after it's replaced. + std::string *prev_env = NULL; + if (added_env.find(name) != added_env.end()) { + prev_env = added_env[name]; + } + added_env[name] = new std::string( + (Message() << name << "=" << value).GetString()); + + // The standard signature of putenv accepts a 'char*' argument. Other + // implementations, like C++Builder's, accept a 'const char*'. + // We cast away the 'const' since that would work for both variants. + putenv(const_cast(added_env[name]->c_str())); + delete prev_env; +#elif GTEST_OS_WINDOWS // If we are on Windows proper. + _putenv((Message() << name << "=" << value).GetString().c_str()); +#else + if (*value == '\0') { + unsetenv(name); + } else { + setenv(name, value, 1); + } +#endif // GTEST_OS_WINDOWS_MOBILE +} + +#if !GTEST_OS_WINDOWS_MOBILE +// Environment variables are not supported on Windows CE. + +using testing::internal::Int32FromGTestEnv; + +// Tests Int32FromGTestEnv(). + +// Tests that Int32FromGTestEnv() returns the default value when the +// environment variable is not set. +TEST(Int32FromGTestEnvTest, ReturnsDefaultWhenVariableIsNotSet) { + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", ""); + EXPECT_EQ(10, Int32FromGTestEnv("temp", 10)); +} + +// Tests that Int32FromGTestEnv() returns the default value when the +// environment variable overflows as an Int32. +TEST(Int32FromGTestEnvTest, ReturnsDefaultWhenValueOverflows) { + printf("(expecting 2 warnings)\n"); + + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "12345678987654321"); + EXPECT_EQ(20, Int32FromGTestEnv("temp", 20)); + + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "-12345678987654321"); + EXPECT_EQ(30, Int32FromGTestEnv("temp", 30)); +} + +// Tests that Int32FromGTestEnv() returns the default value when the +// environment variable does not represent a valid decimal integer. +TEST(Int32FromGTestEnvTest, ReturnsDefaultWhenValueIsInvalid) { + printf("(expecting 2 warnings)\n"); + + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "A1"); + EXPECT_EQ(40, Int32FromGTestEnv("temp", 40)); + + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "12X"); + EXPECT_EQ(50, Int32FromGTestEnv("temp", 50)); +} + +// Tests that Int32FromGTestEnv() parses and returns the value of the +// environment variable when it represents a valid decimal integer in +// the range of an Int32. +TEST(Int32FromGTestEnvTest, ParsesAndReturnsValidValue) { + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "123"); + EXPECT_EQ(123, Int32FromGTestEnv("temp", 0)); + + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "-321"); + EXPECT_EQ(-321, Int32FromGTestEnv("temp", 0)); +} +#endif // !GTEST_OS_WINDOWS_MOBILE + +// Tests ParseInt32Flag(). + +// Tests that ParseInt32Flag() returns false and doesn't change the +// output value when the flag has wrong format +TEST(ParseInt32FlagTest, ReturnsFalseForInvalidFlag) { + Int32 value = 123; + EXPECT_FALSE(ParseInt32Flag("--a=100", "b", &value)); + EXPECT_EQ(123, value); + + EXPECT_FALSE(ParseInt32Flag("a=100", "a", &value)); + EXPECT_EQ(123, value); +} + +// Tests that ParseInt32Flag() returns false and doesn't change the +// output value when the flag overflows as an Int32. +TEST(ParseInt32FlagTest, ReturnsDefaultWhenValueOverflows) { + printf("(expecting 2 warnings)\n"); + + Int32 value = 123; + EXPECT_FALSE(ParseInt32Flag("--abc=12345678987654321", "abc", &value)); + EXPECT_EQ(123, value); + + EXPECT_FALSE(ParseInt32Flag("--abc=-12345678987654321", "abc", &value)); + EXPECT_EQ(123, value); +} + +// Tests that ParseInt32Flag() returns false and doesn't change the +// output value when the flag does not represent a valid decimal +// integer. +TEST(ParseInt32FlagTest, ReturnsDefaultWhenValueIsInvalid) { + printf("(expecting 2 warnings)\n"); + + Int32 value = 123; + EXPECT_FALSE(ParseInt32Flag("--abc=A1", "abc", &value)); + EXPECT_EQ(123, value); + + EXPECT_FALSE(ParseInt32Flag("--abc=12X", "abc", &value)); + EXPECT_EQ(123, value); +} + +// Tests that ParseInt32Flag() parses the value of the flag and +// returns true when the flag represents a valid decimal integer in +// the range of an Int32. +TEST(ParseInt32FlagTest, ParsesAndReturnsValidValue) { + Int32 value = 123; + EXPECT_TRUE(ParseInt32Flag("--" GTEST_FLAG_PREFIX_ "abc=456", "abc", &value)); + EXPECT_EQ(456, value); + + EXPECT_TRUE(ParseInt32Flag("--" GTEST_FLAG_PREFIX_ "abc=-789", + "abc", &value)); + EXPECT_EQ(-789, value); +} + +// Tests that Int32FromEnvOrDie() parses the value of the var or +// returns the correct default. +// Environment variables are not supported on Windows CE. +#if !GTEST_OS_WINDOWS_MOBILE +TEST(Int32FromEnvOrDieTest, ParsesAndReturnsValidValue) { + EXPECT_EQ(333, Int32FromEnvOrDie(GTEST_FLAG_PREFIX_UPPER_ "UnsetVar", 333)); + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "UnsetVar", "123"); + EXPECT_EQ(123, Int32FromEnvOrDie(GTEST_FLAG_PREFIX_UPPER_ "UnsetVar", 333)); + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "UnsetVar", "-123"); + EXPECT_EQ(-123, Int32FromEnvOrDie(GTEST_FLAG_PREFIX_UPPER_ "UnsetVar", 333)); +} +#endif // !GTEST_OS_WINDOWS_MOBILE + +// Tests that Int32FromEnvOrDie() aborts with an error message +// if the variable is not an Int32. +TEST(Int32FromEnvOrDieDeathTest, AbortsOnFailure) { + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "VAR", "xxx"); + EXPECT_DEATH_IF_SUPPORTED( + Int32FromEnvOrDie(GTEST_FLAG_PREFIX_UPPER_ "VAR", 123), + ".*"); +} + +// Tests that Int32FromEnvOrDie() aborts with an error message +// if the variable cannot be represnted by an Int32. +TEST(Int32FromEnvOrDieDeathTest, AbortsOnInt32Overflow) { + SetEnv(GTEST_FLAG_PREFIX_UPPER_ "VAR", "1234567891234567891234"); + EXPECT_DEATH_IF_SUPPORTED( + Int32FromEnvOrDie(GTEST_FLAG_PREFIX_UPPER_ "VAR", 123), + ".*"); +} + +// Tests that ShouldRunTestOnShard() selects all tests +// where there is 1 shard. +TEST(ShouldRunTestOnShardTest, IsPartitionWhenThereIsOneShard) { + EXPECT_TRUE(ShouldRunTestOnShard(1, 0, 0)); + EXPECT_TRUE(ShouldRunTestOnShard(1, 0, 1)); + EXPECT_TRUE(ShouldRunTestOnShard(1, 0, 2)); + EXPECT_TRUE(ShouldRunTestOnShard(1, 0, 3)); + EXPECT_TRUE(ShouldRunTestOnShard(1, 0, 4)); +} + +class ShouldShardTest : public testing::Test { + protected: + virtual void SetUp() { + index_var_ = GTEST_FLAG_PREFIX_UPPER_ "INDEX"; + total_var_ = GTEST_FLAG_PREFIX_UPPER_ "TOTAL"; + } + + virtual void TearDown() { + SetEnv(index_var_, ""); + SetEnv(total_var_, ""); + } + + const char* index_var_; + const char* total_var_; +}; + +// Tests that sharding is disabled if neither of the environment variables +// are set. +TEST_F(ShouldShardTest, ReturnsFalseWhenNeitherEnvVarIsSet) { + SetEnv(index_var_, ""); + SetEnv(total_var_, ""); + + EXPECT_FALSE(ShouldShard(total_var_, index_var_, false)); + EXPECT_FALSE(ShouldShard(total_var_, index_var_, true)); +} + +// Tests that sharding is not enabled if total_shards == 1. +TEST_F(ShouldShardTest, ReturnsFalseWhenTotalShardIsOne) { + SetEnv(index_var_, "0"); + SetEnv(total_var_, "1"); + EXPECT_FALSE(ShouldShard(total_var_, index_var_, false)); + EXPECT_FALSE(ShouldShard(total_var_, index_var_, true)); +} + +// Tests that sharding is enabled if total_shards > 1 and +// we are not in a death test subprocess. +// Environment variables are not supported on Windows CE. +#if !GTEST_OS_WINDOWS_MOBILE +TEST_F(ShouldShardTest, WorksWhenShardEnvVarsAreValid) { + SetEnv(index_var_, "4"); + SetEnv(total_var_, "22"); + EXPECT_TRUE(ShouldShard(total_var_, index_var_, false)); + EXPECT_FALSE(ShouldShard(total_var_, index_var_, true)); + + SetEnv(index_var_, "8"); + SetEnv(total_var_, "9"); + EXPECT_TRUE(ShouldShard(total_var_, index_var_, false)); + EXPECT_FALSE(ShouldShard(total_var_, index_var_, true)); + + SetEnv(index_var_, "0"); + SetEnv(total_var_, "9"); + EXPECT_TRUE(ShouldShard(total_var_, index_var_, false)); + EXPECT_FALSE(ShouldShard(total_var_, index_var_, true)); +} +#endif // !GTEST_OS_WINDOWS_MOBILE + +// Tests that we exit in error if the sharding values are not valid. + +typedef ShouldShardTest ShouldShardDeathTest; + +TEST_F(ShouldShardDeathTest, AbortsWhenShardingEnvVarsAreInvalid) { + SetEnv(index_var_, "4"); + SetEnv(total_var_, "4"); + EXPECT_DEATH_IF_SUPPORTED(ShouldShard(total_var_, index_var_, false), ".*"); + + SetEnv(index_var_, "4"); + SetEnv(total_var_, "-2"); + EXPECT_DEATH_IF_SUPPORTED(ShouldShard(total_var_, index_var_, false), ".*"); + + SetEnv(index_var_, "5"); + SetEnv(total_var_, ""); + EXPECT_DEATH_IF_SUPPORTED(ShouldShard(total_var_, index_var_, false), ".*"); + + SetEnv(index_var_, ""); + SetEnv(total_var_, "5"); + EXPECT_DEATH_IF_SUPPORTED(ShouldShard(total_var_, index_var_, false), ".*"); +} + +// Tests that ShouldRunTestOnShard is a partition when 5 +// shards are used. +TEST(ShouldRunTestOnShardTest, IsPartitionWhenThereAreFiveShards) { + // Choose an arbitrary number of tests and shards. + const int num_tests = 17; + const int num_shards = 5; + + // Check partitioning: each test should be on exactly 1 shard. + for (int test_id = 0; test_id < num_tests; test_id++) { + int prev_selected_shard_index = -1; + for (int shard_index = 0; shard_index < num_shards; shard_index++) { + if (ShouldRunTestOnShard(num_shards, shard_index, test_id)) { + if (prev_selected_shard_index < 0) { + prev_selected_shard_index = shard_index; + } else { + ADD_FAILURE() << "Shard " << prev_selected_shard_index << " and " + << shard_index << " are both selected to run test " << test_id; + } + } + } + } + + // Check balance: This is not required by the sharding protocol, but is a + // desirable property for performance. + for (int shard_index = 0; shard_index < num_shards; shard_index++) { + int num_tests_on_shard = 0; + for (int test_id = 0; test_id < num_tests; test_id++) { + num_tests_on_shard += + ShouldRunTestOnShard(num_shards, shard_index, test_id); + } + EXPECT_GE(num_tests_on_shard, num_tests / num_shards); + } +} + +// For the same reason we are not explicitly testing everything in the +// Test class, there are no separate tests for the following classes +// (except for some trivial cases): +// +// TestCase, UnitTest, UnitTestResultPrinter. +// +// Similarly, there are no separate tests for the following macros: +// +// TEST, TEST_F, RUN_ALL_TESTS + +TEST(UnitTestTest, CanGetOriginalWorkingDir) { + ASSERT_TRUE(UnitTest::GetInstance()->original_working_dir() != NULL); + EXPECT_STRNE(UnitTest::GetInstance()->original_working_dir(), ""); +} + +TEST(UnitTestTest, ReturnsPlausibleTimestamp) { + EXPECT_LT(0, UnitTest::GetInstance()->start_timestamp()); + EXPECT_LE(UnitTest::GetInstance()->start_timestamp(), GetTimeInMillis()); +} + +// When a property using a reserved key is supplied to this function, it +// tests that a non-fatal failure is added, a fatal failure is not added, +// and that the property is not recorded. +void ExpectNonFatalFailureRecordingPropertyWithReservedKey( + const TestResult& test_result, const char* key) { + EXPECT_NONFATAL_FAILURE(Test::RecordProperty(key, "1"), "Reserved key"); + ASSERT_EQ(0, test_result.test_property_count()) << "Property for key '" << key + << "' recorded unexpectedly."; +} + +void ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTest( + const char* key) { + const TestInfo* test_info = UnitTest::GetInstance()->current_test_info(); + ASSERT_TRUE(test_info != NULL); + ExpectNonFatalFailureRecordingPropertyWithReservedKey(*test_info->result(), + key); +} + +void ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTestCase( + const char* key) { + const TestCase* test_case = UnitTest::GetInstance()->current_test_case(); + ASSERT_TRUE(test_case != NULL); + ExpectNonFatalFailureRecordingPropertyWithReservedKey( + test_case->ad_hoc_test_result(), key); +} + +void ExpectNonFatalFailureRecordingPropertyWithReservedKeyOutsideOfTestCase( + const char* key) { + ExpectNonFatalFailureRecordingPropertyWithReservedKey( + UnitTest::GetInstance()->ad_hoc_test_result(), key); +} + +// Tests that property recording functions in UnitTest outside of tests +// functions correcly. Creating a separate instance of UnitTest ensures it +// is in a state similar to the UnitTest's singleton's between tests. +class UnitTestRecordPropertyTest : + public testing::internal::UnitTestRecordPropertyTestHelper { + public: + static void SetUpTestCase() { + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTestCase( + "disabled"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTestCase( + "errors"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTestCase( + "failures"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTestCase( + "name"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTestCase( + "tests"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTestCase( + "time"); + + Test::RecordProperty("test_case_key_1", "1"); + const TestCase* test_case = UnitTest::GetInstance()->current_test_case(); + ASSERT_TRUE(test_case != NULL); + + ASSERT_EQ(1, test_case->ad_hoc_test_result().test_property_count()); + EXPECT_STREQ("test_case_key_1", + test_case->ad_hoc_test_result().GetTestProperty(0).key()); + EXPECT_STREQ("1", + test_case->ad_hoc_test_result().GetTestProperty(0).value()); + } +}; + +// Tests TestResult has the expected property when added. +TEST_F(UnitTestRecordPropertyTest, OnePropertyFoundWhenAdded) { + UnitTestRecordProperty("key_1", "1"); + + ASSERT_EQ(1, unit_test_.ad_hoc_test_result().test_property_count()); + + EXPECT_STREQ("key_1", + unit_test_.ad_hoc_test_result().GetTestProperty(0).key()); + EXPECT_STREQ("1", + unit_test_.ad_hoc_test_result().GetTestProperty(0).value()); +} + +// Tests TestResult has multiple properties when added. +TEST_F(UnitTestRecordPropertyTest, MultiplePropertiesFoundWhenAdded) { + UnitTestRecordProperty("key_1", "1"); + UnitTestRecordProperty("key_2", "2"); + + ASSERT_EQ(2, unit_test_.ad_hoc_test_result().test_property_count()); + + EXPECT_STREQ("key_1", + unit_test_.ad_hoc_test_result().GetTestProperty(0).key()); + EXPECT_STREQ("1", unit_test_.ad_hoc_test_result().GetTestProperty(0).value()); + + EXPECT_STREQ("key_2", + unit_test_.ad_hoc_test_result().GetTestProperty(1).key()); + EXPECT_STREQ("2", unit_test_.ad_hoc_test_result().GetTestProperty(1).value()); +} + +// Tests TestResult::RecordProperty() overrides values for duplicate keys. +TEST_F(UnitTestRecordPropertyTest, OverridesValuesForDuplicateKeys) { + UnitTestRecordProperty("key_1", "1"); + UnitTestRecordProperty("key_2", "2"); + UnitTestRecordProperty("key_1", "12"); + UnitTestRecordProperty("key_2", "22"); + + ASSERT_EQ(2, unit_test_.ad_hoc_test_result().test_property_count()); + + EXPECT_STREQ("key_1", + unit_test_.ad_hoc_test_result().GetTestProperty(0).key()); + EXPECT_STREQ("12", + unit_test_.ad_hoc_test_result().GetTestProperty(0).value()); + + EXPECT_STREQ("key_2", + unit_test_.ad_hoc_test_result().GetTestProperty(1).key()); + EXPECT_STREQ("22", + unit_test_.ad_hoc_test_result().GetTestProperty(1).value()); +} + +TEST_F(UnitTestRecordPropertyTest, + AddFailureInsideTestsWhenUsingTestCaseReservedKeys) { + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTest( + "name"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTest( + "value_param"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTest( + "type_param"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTest( + "status"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTest( + "time"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTest( + "classname"); +} + +TEST_F(UnitTestRecordPropertyTest, + AddRecordWithReservedKeysGeneratesCorrectPropertyList) { + EXPECT_NONFATAL_FAILURE( + Test::RecordProperty("name", "1"), + "'classname', 'name', 'status', 'time', 'type_param', and 'value_param'" + " are reserved"); +} + +class UnitTestRecordPropertyTestEnvironment : public Environment { + public: + virtual void TearDown() { + ExpectNonFatalFailureRecordingPropertyWithReservedKeyOutsideOfTestCase( + "tests"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyOutsideOfTestCase( + "failures"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyOutsideOfTestCase( + "disabled"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyOutsideOfTestCase( + "errors"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyOutsideOfTestCase( + "name"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyOutsideOfTestCase( + "timestamp"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyOutsideOfTestCase( + "time"); + ExpectNonFatalFailureRecordingPropertyWithReservedKeyOutsideOfTestCase( + "random_seed"); + } +}; + +// This will test property recording outside of any test or test case. +static Environment* record_property_env = + AddGlobalTestEnvironment(new UnitTestRecordPropertyTestEnvironment); + +// This group of tests is for predicate assertions (ASSERT_PRED*, etc) +// of various arities. They do not attempt to be exhaustive. Rather, +// view them as smoke tests that can be easily reviewed and verified. +// A more complete set of tests for predicate assertions can be found +// in gtest_pred_impl_unittest.cc. + +// First, some predicates and predicate-formatters needed by the tests. + +// Returns true iff the argument is an even number. +bool IsEven(int n) { + return (n % 2) == 0; +} + +// A functor that returns true iff the argument is an even number. +struct IsEvenFunctor { + bool operator()(int n) { return IsEven(n); } +}; + +// A predicate-formatter function that asserts the argument is an even +// number. +AssertionResult AssertIsEven(const char* expr, int n) { + if (IsEven(n)) { + return AssertionSuccess(); + } + + Message msg; + msg << expr << " evaluates to " << n << ", which is not even."; + return AssertionFailure(msg); +} + +// A predicate function that returns AssertionResult for use in +// EXPECT/ASSERT_TRUE/FALSE. +AssertionResult ResultIsEven(int n) { + if (IsEven(n)) + return AssertionSuccess() << n << " is even"; + else + return AssertionFailure() << n << " is odd"; +} + +// A predicate function that returns AssertionResult but gives no +// explanation why it succeeds. Needed for testing that +// EXPECT/ASSERT_FALSE handles such functions correctly. +AssertionResult ResultIsEvenNoExplanation(int n) { + if (IsEven(n)) + return AssertionSuccess(); + else + return AssertionFailure() << n << " is odd"; +} + +// A predicate-formatter functor that asserts the argument is an even +// number. +struct AssertIsEvenFunctor { + AssertionResult operator()(const char* expr, int n) { + return AssertIsEven(expr, n); + } +}; + +// Returns true iff the sum of the arguments is an even number. +bool SumIsEven2(int n1, int n2) { + return IsEven(n1 + n2); +} + +// A functor that returns true iff the sum of the arguments is an even +// number. +struct SumIsEven3Functor { + bool operator()(int n1, int n2, int n3) { + return IsEven(n1 + n2 + n3); + } +}; + +// A predicate-formatter function that asserts the sum of the +// arguments is an even number. +AssertionResult AssertSumIsEven4( + const char* e1, const char* e2, const char* e3, const char* e4, + int n1, int n2, int n3, int n4) { + const int sum = n1 + n2 + n3 + n4; + if (IsEven(sum)) { + return AssertionSuccess(); + } + + Message msg; + msg << e1 << " + " << e2 << " + " << e3 << " + " << e4 + << " (" << n1 << " + " << n2 << " + " << n3 << " + " << n4 + << ") evaluates to " << sum << ", which is not even."; + return AssertionFailure(msg); +} + +// A predicate-formatter functor that asserts the sum of the arguments +// is an even number. +struct AssertSumIsEven5Functor { + AssertionResult operator()( + const char* e1, const char* e2, const char* e3, const char* e4, + const char* e5, int n1, int n2, int n3, int n4, int n5) { + const int sum = n1 + n2 + n3 + n4 + n5; + if (IsEven(sum)) { + return AssertionSuccess(); + } + + Message msg; + msg << e1 << " + " << e2 << " + " << e3 << " + " << e4 << " + " << e5 + << " (" + << n1 << " + " << n2 << " + " << n3 << " + " << n4 << " + " << n5 + << ") evaluates to " << sum << ", which is not even."; + return AssertionFailure(msg); + } +}; + + +// Tests unary predicate assertions. + +// Tests unary predicate assertions that don't use a custom formatter. +TEST(Pred1Test, WithoutFormat) { + // Success cases. + EXPECT_PRED1(IsEvenFunctor(), 2) << "This failure is UNEXPECTED!"; + ASSERT_PRED1(IsEven, 4); + + // Failure cases. + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED1(IsEven, 5) << "This failure is expected."; + }, "This failure is expected."); + EXPECT_FATAL_FAILURE(ASSERT_PRED1(IsEvenFunctor(), 5), + "evaluates to false"); +} + +// Tests unary predicate assertions that use a custom formatter. +TEST(Pred1Test, WithFormat) { + // Success cases. + EXPECT_PRED_FORMAT1(AssertIsEven, 2); + ASSERT_PRED_FORMAT1(AssertIsEvenFunctor(), 4) + << "This failure is UNEXPECTED!"; + + // Failure cases. + const int n = 5; + EXPECT_NONFATAL_FAILURE(EXPECT_PRED_FORMAT1(AssertIsEvenFunctor(), n), + "n evaluates to 5, which is not even."); + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT1(AssertIsEven, 5) << "This failure is expected."; + }, "This failure is expected."); +} + +// Tests that unary predicate assertions evaluates their arguments +// exactly once. +TEST(Pred1Test, SingleEvaluationOnFailure) { + // A success case. + static int n = 0; + EXPECT_PRED1(IsEven, n++); + EXPECT_EQ(1, n) << "The argument is not evaluated exactly once."; + + // A failure case. + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT1(AssertIsEvenFunctor(), n++) + << "This failure is expected."; + }, "This failure is expected."); + EXPECT_EQ(2, n) << "The argument is not evaluated exactly once."; +} + + +// Tests predicate assertions whose arity is >= 2. + +// Tests predicate assertions that don't use a custom formatter. +TEST(PredTest, WithoutFormat) { + // Success cases. + ASSERT_PRED2(SumIsEven2, 2, 4) << "This failure is UNEXPECTED!"; + EXPECT_PRED3(SumIsEven3Functor(), 4, 6, 8); + + // Failure cases. + const int n1 = 1; + const int n2 = 2; + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED2(SumIsEven2, n1, n2) << "This failure is expected."; + }, "This failure is expected."); + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED3(SumIsEven3Functor(), 1, 2, 4); + }, "evaluates to false"); +} + +// Tests predicate assertions that use a custom formatter. +TEST(PredTest, WithFormat) { + // Success cases. + ASSERT_PRED_FORMAT4(AssertSumIsEven4, 4, 6, 8, 10) << + "This failure is UNEXPECTED!"; + EXPECT_PRED_FORMAT5(AssertSumIsEven5Functor(), 2, 4, 6, 8, 10); + + // Failure cases. + const int n1 = 1; + const int n2 = 2; + const int n3 = 4; + const int n4 = 6; + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT4(AssertSumIsEven4, n1, n2, n3, n4); + }, "evaluates to 13, which is not even."); + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT5(AssertSumIsEven5Functor(), 1, 2, 4, 6, 8) + << "This failure is expected."; + }, "This failure is expected."); +} + +// Tests that predicate assertions evaluates their arguments +// exactly once. +TEST(PredTest, SingleEvaluationOnFailure) { + // A success case. + int n1 = 0; + int n2 = 0; + EXPECT_PRED2(SumIsEven2, n1++, n2++); + EXPECT_EQ(1, n1) << "Argument 1 is not evaluated exactly once."; + EXPECT_EQ(1, n2) << "Argument 2 is not evaluated exactly once."; + + // Another success case. + n1 = n2 = 0; + int n3 = 0; + int n4 = 0; + int n5 = 0; + ASSERT_PRED_FORMAT5(AssertSumIsEven5Functor(), + n1++, n2++, n3++, n4++, n5++) + << "This failure is UNEXPECTED!"; + EXPECT_EQ(1, n1) << "Argument 1 is not evaluated exactly once."; + EXPECT_EQ(1, n2) << "Argument 2 is not evaluated exactly once."; + EXPECT_EQ(1, n3) << "Argument 3 is not evaluated exactly once."; + EXPECT_EQ(1, n4) << "Argument 4 is not evaluated exactly once."; + EXPECT_EQ(1, n5) << "Argument 5 is not evaluated exactly once."; + + // A failure case. + n1 = n2 = n3 = 0; + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED3(SumIsEven3Functor(), ++n1, n2++, n3++) + << "This failure is expected."; + }, "This failure is expected."); + EXPECT_EQ(1, n1) << "Argument 1 is not evaluated exactly once."; + EXPECT_EQ(1, n2) << "Argument 2 is not evaluated exactly once."; + EXPECT_EQ(1, n3) << "Argument 3 is not evaluated exactly once."; + + // Another failure case. + n1 = n2 = n3 = n4 = 0; + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT4(AssertSumIsEven4, ++n1, n2++, n3++, n4++); + }, "evaluates to 1, which is not even."); + EXPECT_EQ(1, n1) << "Argument 1 is not evaluated exactly once."; + EXPECT_EQ(1, n2) << "Argument 2 is not evaluated exactly once."; + EXPECT_EQ(1, n3) << "Argument 3 is not evaluated exactly once."; + EXPECT_EQ(1, n4) << "Argument 4 is not evaluated exactly once."; +} + + +// Some helper functions for testing using overloaded/template +// functions with ASSERT_PREDn and EXPECT_PREDn. + +bool IsPositive(double x) { + return x > 0; +} + +template +bool IsNegative(T x) { + return x < 0; +} + +template +bool GreaterThan(T1 x1, T2 x2) { + return x1 > x2; +} + +// Tests that overloaded functions can be used in *_PRED* as long as +// their types are explicitly specified. +TEST(PredicateAssertionTest, AcceptsOverloadedFunction) { + // C++Builder requires C-style casts rather than static_cast. + EXPECT_PRED1((bool (*)(int))(IsPositive), 5); // NOLINT + ASSERT_PRED1((bool (*)(double))(IsPositive), 6.0); // NOLINT +} + +// Tests that template functions can be used in *_PRED* as long as +// their types are explicitly specified. +TEST(PredicateAssertionTest, AcceptsTemplateFunction) { + EXPECT_PRED1(IsNegative, -5); + // Makes sure that we can handle templates with more than one + // parameter. + ASSERT_PRED2((GreaterThan), 5, 0); +} + + +// Some helper functions for testing using overloaded/template +// functions with ASSERT_PRED_FORMATn and EXPECT_PRED_FORMATn. + +AssertionResult IsPositiveFormat(const char* /* expr */, int n) { + return n > 0 ? AssertionSuccess() : + AssertionFailure(Message() << "Failure"); +} + +AssertionResult IsPositiveFormat(const char* /* expr */, double x) { + return x > 0 ? AssertionSuccess() : + AssertionFailure(Message() << "Failure"); +} + +template +AssertionResult IsNegativeFormat(const char* /* expr */, T x) { + return x < 0 ? AssertionSuccess() : + AssertionFailure(Message() << "Failure"); +} + +template +AssertionResult EqualsFormat(const char* /* expr1 */, const char* /* expr2 */, + const T1& x1, const T2& x2) { + return x1 == x2 ? AssertionSuccess() : + AssertionFailure(Message() << "Failure"); +} + +// Tests that overloaded functions can be used in *_PRED_FORMAT* +// without explicitly specifying their types. +TEST(PredicateFormatAssertionTest, AcceptsOverloadedFunction) { + EXPECT_PRED_FORMAT1(IsPositiveFormat, 5); + ASSERT_PRED_FORMAT1(IsPositiveFormat, 6.0); +} + +// Tests that template functions can be used in *_PRED_FORMAT* without +// explicitly specifying their types. +TEST(PredicateFormatAssertionTest, AcceptsTemplateFunction) { + EXPECT_PRED_FORMAT1(IsNegativeFormat, -5); + ASSERT_PRED_FORMAT2(EqualsFormat, 3, 3); +} + + +// Tests string assertions. + +// Tests ASSERT_STREQ with non-NULL arguments. +TEST(StringAssertionTest, ASSERT_STREQ) { + const char * const p1 = "good"; + ASSERT_STREQ(p1, p1); + + // Let p2 have the same content as p1, but be at a different address. + const char p2[] = "good"; + ASSERT_STREQ(p1, p2); + + EXPECT_FATAL_FAILURE(ASSERT_STREQ("bad", "good"), + "Expected: \"bad\""); +} + +// Tests ASSERT_STREQ with NULL arguments. +TEST(StringAssertionTest, ASSERT_STREQ_Null) { + ASSERT_STREQ(static_cast(NULL), NULL); + EXPECT_FATAL_FAILURE(ASSERT_STREQ(NULL, "non-null"), + "non-null"); +} + +// Tests ASSERT_STREQ with NULL arguments. +TEST(StringAssertionTest, ASSERT_STREQ_Null2) { + EXPECT_FATAL_FAILURE(ASSERT_STREQ("non-null", NULL), + "non-null"); +} + +// Tests ASSERT_STRNE. +TEST(StringAssertionTest, ASSERT_STRNE) { + ASSERT_STRNE("hi", "Hi"); + ASSERT_STRNE("Hi", NULL); + ASSERT_STRNE(NULL, "Hi"); + ASSERT_STRNE("", NULL); + ASSERT_STRNE(NULL, ""); + ASSERT_STRNE("", "Hi"); + ASSERT_STRNE("Hi", ""); + EXPECT_FATAL_FAILURE(ASSERT_STRNE("Hi", "Hi"), + "\"Hi\" vs \"Hi\""); +} + +// Tests ASSERT_STRCASEEQ. +TEST(StringAssertionTest, ASSERT_STRCASEEQ) { + ASSERT_STRCASEEQ("hi", "Hi"); + ASSERT_STRCASEEQ(static_cast(NULL), NULL); + + ASSERT_STRCASEEQ("", ""); + EXPECT_FATAL_FAILURE(ASSERT_STRCASEEQ("Hi", "hi2"), + "(ignoring case)"); +} + +// Tests ASSERT_STRCASENE. +TEST(StringAssertionTest, ASSERT_STRCASENE) { + ASSERT_STRCASENE("hi1", "Hi2"); + ASSERT_STRCASENE("Hi", NULL); + ASSERT_STRCASENE(NULL, "Hi"); + ASSERT_STRCASENE("", NULL); + ASSERT_STRCASENE(NULL, ""); + ASSERT_STRCASENE("", "Hi"); + ASSERT_STRCASENE("Hi", ""); + EXPECT_FATAL_FAILURE(ASSERT_STRCASENE("Hi", "hi"), + "(ignoring case)"); +} + +// Tests *_STREQ on wide strings. +TEST(StringAssertionTest, STREQ_Wide) { + // NULL strings. + ASSERT_STREQ(static_cast(NULL), NULL); + + // Empty strings. + ASSERT_STREQ(L"", L""); + + // Non-null vs NULL. + EXPECT_NONFATAL_FAILURE(EXPECT_STREQ(L"non-null", NULL), + "non-null"); + + // Equal strings. + EXPECT_STREQ(L"Hi", L"Hi"); + + // Unequal strings. + EXPECT_NONFATAL_FAILURE(EXPECT_STREQ(L"abc", L"Abc"), + "Abc"); + + // Strings containing wide characters. + EXPECT_NONFATAL_FAILURE(EXPECT_STREQ(L"abc\x8119", L"abc\x8120"), + "abc"); + + // The streaming variation. + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_STREQ(L"abc\x8119", L"abc\x8121") << "Expected failure"; + }, "Expected failure"); +} + +// Tests *_STRNE on wide strings. +TEST(StringAssertionTest, STRNE_Wide) { + // NULL strings. + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_STRNE(static_cast(NULL), NULL); + }, ""); + + // Empty strings. + EXPECT_NONFATAL_FAILURE(EXPECT_STRNE(L"", L""), + "L\"\""); + + // Non-null vs NULL. + ASSERT_STRNE(L"non-null", NULL); + + // Equal strings. + EXPECT_NONFATAL_FAILURE(EXPECT_STRNE(L"Hi", L"Hi"), + "L\"Hi\""); + + // Unequal strings. + EXPECT_STRNE(L"abc", L"Abc"); + + // Strings containing wide characters. + EXPECT_NONFATAL_FAILURE(EXPECT_STRNE(L"abc\x8119", L"abc\x8119"), + "abc"); + + // The streaming variation. + ASSERT_STRNE(L"abc\x8119", L"abc\x8120") << "This shouldn't happen"; +} + +// Tests for ::testing::IsSubstring(). + +// Tests that IsSubstring() returns the correct result when the input +// argument type is const char*. +TEST(IsSubstringTest, ReturnsCorrectResultForCString) { + EXPECT_FALSE(IsSubstring("", "", NULL, "a")); + EXPECT_FALSE(IsSubstring("", "", "b", NULL)); + EXPECT_FALSE(IsSubstring("", "", "needle", "haystack")); + + EXPECT_TRUE(IsSubstring("", "", static_cast(NULL), NULL)); + EXPECT_TRUE(IsSubstring("", "", "needle", "two needles")); +} + +// Tests that IsSubstring() returns the correct result when the input +// argument type is const wchar_t*. +TEST(IsSubstringTest, ReturnsCorrectResultForWideCString) { + EXPECT_FALSE(IsSubstring("", "", kNull, L"a")); + EXPECT_FALSE(IsSubstring("", "", L"b", kNull)); + EXPECT_FALSE(IsSubstring("", "", L"needle", L"haystack")); + + EXPECT_TRUE(IsSubstring("", "", static_cast(NULL), NULL)); + EXPECT_TRUE(IsSubstring("", "", L"needle", L"two needles")); +} + +// Tests that IsSubstring() generates the correct message when the input +// argument type is const char*. +TEST(IsSubstringTest, GeneratesCorrectMessageForCString) { + EXPECT_STREQ("Value of: needle_expr\n" + " Actual: \"needle\"\n" + "Expected: a substring of haystack_expr\n" + "Which is: \"haystack\"", + IsSubstring("needle_expr", "haystack_expr", + "needle", "haystack").failure_message()); +} + +// Tests that IsSubstring returns the correct result when the input +// argument type is ::std::string. +TEST(IsSubstringTest, ReturnsCorrectResultsForStdString) { + EXPECT_TRUE(IsSubstring("", "", std::string("hello"), "ahellob")); + EXPECT_FALSE(IsSubstring("", "", "hello", std::string("world"))); +} + +#if GTEST_HAS_STD_WSTRING +// Tests that IsSubstring returns the correct result when the input +// argument type is ::std::wstring. +TEST(IsSubstringTest, ReturnsCorrectResultForStdWstring) { + EXPECT_TRUE(IsSubstring("", "", ::std::wstring(L"needle"), L"two needles")); + EXPECT_FALSE(IsSubstring("", "", L"needle", ::std::wstring(L"haystack"))); +} + +// Tests that IsSubstring() generates the correct message when the input +// argument type is ::std::wstring. +TEST(IsSubstringTest, GeneratesCorrectMessageForWstring) { + EXPECT_STREQ("Value of: needle_expr\n" + " Actual: L\"needle\"\n" + "Expected: a substring of haystack_expr\n" + "Which is: L\"haystack\"", + IsSubstring( + "needle_expr", "haystack_expr", + ::std::wstring(L"needle"), L"haystack").failure_message()); +} + +#endif // GTEST_HAS_STD_WSTRING + +// Tests for ::testing::IsNotSubstring(). + +// Tests that IsNotSubstring() returns the correct result when the input +// argument type is const char*. +TEST(IsNotSubstringTest, ReturnsCorrectResultForCString) { + EXPECT_TRUE(IsNotSubstring("", "", "needle", "haystack")); + EXPECT_FALSE(IsNotSubstring("", "", "needle", "two needles")); +} + +// Tests that IsNotSubstring() returns the correct result when the input +// argument type is const wchar_t*. +TEST(IsNotSubstringTest, ReturnsCorrectResultForWideCString) { + EXPECT_TRUE(IsNotSubstring("", "", L"needle", L"haystack")); + EXPECT_FALSE(IsNotSubstring("", "", L"needle", L"two needles")); +} + +// Tests that IsNotSubstring() generates the correct message when the input +// argument type is const wchar_t*. +TEST(IsNotSubstringTest, GeneratesCorrectMessageForWideCString) { + EXPECT_STREQ("Value of: needle_expr\n" + " Actual: L\"needle\"\n" + "Expected: not a substring of haystack_expr\n" + "Which is: L\"two needles\"", + IsNotSubstring( + "needle_expr", "haystack_expr", + L"needle", L"two needles").failure_message()); +} + +// Tests that IsNotSubstring returns the correct result when the input +// argument type is ::std::string. +TEST(IsNotSubstringTest, ReturnsCorrectResultsForStdString) { + EXPECT_FALSE(IsNotSubstring("", "", std::string("hello"), "ahellob")); + EXPECT_TRUE(IsNotSubstring("", "", "hello", std::string("world"))); +} + +// Tests that IsNotSubstring() generates the correct message when the input +// argument type is ::std::string. +TEST(IsNotSubstringTest, GeneratesCorrectMessageForStdString) { + EXPECT_STREQ("Value of: needle_expr\n" + " Actual: \"needle\"\n" + "Expected: not a substring of haystack_expr\n" + "Which is: \"two needles\"", + IsNotSubstring( + "needle_expr", "haystack_expr", + ::std::string("needle"), "two needles").failure_message()); +} + +#if GTEST_HAS_STD_WSTRING + +// Tests that IsNotSubstring returns the correct result when the input +// argument type is ::std::wstring. +TEST(IsNotSubstringTest, ReturnsCorrectResultForStdWstring) { + EXPECT_FALSE( + IsNotSubstring("", "", ::std::wstring(L"needle"), L"two needles")); + EXPECT_TRUE(IsNotSubstring("", "", L"needle", ::std::wstring(L"haystack"))); +} + +#endif // GTEST_HAS_STD_WSTRING + +// Tests floating-point assertions. + +template +class FloatingPointTest : public Test { + protected: + // Pre-calculated numbers to be used by the tests. + struct TestValues { + RawType close_to_positive_zero; + RawType close_to_negative_zero; + RawType further_from_negative_zero; + + RawType close_to_one; + RawType further_from_one; + + RawType infinity; + RawType close_to_infinity; + RawType further_from_infinity; + + RawType nan1; + RawType nan2; + }; + + typedef typename testing::internal::FloatingPoint Floating; + typedef typename Floating::Bits Bits; + + virtual void SetUp() { + const size_t max_ulps = Floating::kMaxUlps; + + // The bits that represent 0.0. + const Bits zero_bits = Floating(0).bits(); + + // Makes some numbers close to 0.0. + values_.close_to_positive_zero = Floating::ReinterpretBits( + zero_bits + max_ulps/2); + values_.close_to_negative_zero = -Floating::ReinterpretBits( + zero_bits + max_ulps - max_ulps/2); + values_.further_from_negative_zero = -Floating::ReinterpretBits( + zero_bits + max_ulps + 1 - max_ulps/2); + + // The bits that represent 1.0. + const Bits one_bits = Floating(1).bits(); + + // Makes some numbers close to 1.0. + values_.close_to_one = Floating::ReinterpretBits(one_bits + max_ulps); + values_.further_from_one = Floating::ReinterpretBits( + one_bits + max_ulps + 1); + + // +infinity. + values_.infinity = Floating::Infinity(); + + // The bits that represent +infinity. + const Bits infinity_bits = Floating(values_.infinity).bits(); + + // Makes some numbers close to infinity. + values_.close_to_infinity = Floating::ReinterpretBits( + infinity_bits - max_ulps); + values_.further_from_infinity = Floating::ReinterpretBits( + infinity_bits - max_ulps - 1); + + // Makes some NAN's. Sets the most significant bit of the fraction so that + // our NaN's are quiet; trying to process a signaling NaN would raise an + // exception if our environment enables floating point exceptions. + values_.nan1 = Floating::ReinterpretBits(Floating::kExponentBitMask + | (static_cast(1) << (Floating::kFractionBitCount - 1)) | 1); + values_.nan2 = Floating::ReinterpretBits(Floating::kExponentBitMask + | (static_cast(1) << (Floating::kFractionBitCount - 1)) | 200); + } + + void TestSize() { + EXPECT_EQ(sizeof(RawType), sizeof(Bits)); + } + + static TestValues values_; +}; + +template +typename FloatingPointTest::TestValues + FloatingPointTest::values_; + +// Instantiates FloatingPointTest for testing *_FLOAT_EQ. +typedef FloatingPointTest FloatTest; + +// Tests that the size of Float::Bits matches the size of float. +TEST_F(FloatTest, Size) { + TestSize(); +} + +// Tests comparing with +0 and -0. +TEST_F(FloatTest, Zeros) { + EXPECT_FLOAT_EQ(0.0, -0.0); + EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(-0.0, 1.0), + "1.0"); + EXPECT_FATAL_FAILURE(ASSERT_FLOAT_EQ(0.0, 1.5), + "1.5"); +} + +// Tests comparing numbers close to 0. +// +// This ensures that *_FLOAT_EQ handles the sign correctly and no +// overflow occurs when comparing numbers whose absolute value is very +// small. +TEST_F(FloatTest, AlmostZeros) { + // In C++Builder, names within local classes (such as used by + // EXPECT_FATAL_FAILURE) cannot be resolved against static members of the + // scoping class. Use a static local alias as a workaround. + // We use the assignment syntax since some compilers, like Sun Studio, + // don't allow initializing references using construction syntax + // (parentheses). + static const FloatTest::TestValues& v = this->values_; + + EXPECT_FLOAT_EQ(0.0, v.close_to_positive_zero); + EXPECT_FLOAT_EQ(-0.0, v.close_to_negative_zero); + EXPECT_FLOAT_EQ(v.close_to_positive_zero, v.close_to_negative_zero); + + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_FLOAT_EQ(v.close_to_positive_zero, + v.further_from_negative_zero); + }, "v.further_from_negative_zero"); +} + +// Tests comparing numbers close to each other. +TEST_F(FloatTest, SmallDiff) { + EXPECT_FLOAT_EQ(1.0, values_.close_to_one); + EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(1.0, values_.further_from_one), + "values_.further_from_one"); +} + +// Tests comparing numbers far apart. +TEST_F(FloatTest, LargeDiff) { + EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(2.5, 3.0), + "3.0"); +} + +// Tests comparing with infinity. +// +// This ensures that no overflow occurs when comparing numbers whose +// absolute value is very large. +TEST_F(FloatTest, Infinity) { + EXPECT_FLOAT_EQ(values_.infinity, values_.close_to_infinity); + EXPECT_FLOAT_EQ(-values_.infinity, -values_.close_to_infinity); +#if !GTEST_OS_SYMBIAN + // Nokia's STLport crashes if we try to output infinity or NaN. + EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(values_.infinity, -values_.infinity), + "-values_.infinity"); + + // This is interesting as the representations of infinity and nan1 + // are only 1 DLP apart. + EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(values_.infinity, values_.nan1), + "values_.nan1"); +#endif // !GTEST_OS_SYMBIAN +} + +// Tests that comparing with NAN always returns false. +TEST_F(FloatTest, NaN) { +#if !GTEST_OS_SYMBIAN +// Nokia's STLport crashes if we try to output infinity or NaN. + + // In C++Builder, names within local classes (such as used by + // EXPECT_FATAL_FAILURE) cannot be resolved against static members of the + // scoping class. Use a static local alias as a workaround. + // We use the assignment syntax since some compilers, like Sun Studio, + // don't allow initializing references using construction syntax + // (parentheses). + static const FloatTest::TestValues& v = this->values_; + + EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(v.nan1, v.nan1), + "v.nan1"); + EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(v.nan1, v.nan2), + "v.nan2"); + EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(1.0, v.nan1), + "v.nan1"); + + EXPECT_FATAL_FAILURE(ASSERT_FLOAT_EQ(v.nan1, v.infinity), + "v.infinity"); +#endif // !GTEST_OS_SYMBIAN +} + +// Tests that *_FLOAT_EQ are reflexive. +TEST_F(FloatTest, Reflexive) { + EXPECT_FLOAT_EQ(0.0, 0.0); + EXPECT_FLOAT_EQ(1.0, 1.0); + ASSERT_FLOAT_EQ(values_.infinity, values_.infinity); +} + +// Tests that *_FLOAT_EQ are commutative. +TEST_F(FloatTest, Commutative) { + // We already tested EXPECT_FLOAT_EQ(1.0, values_.close_to_one). + EXPECT_FLOAT_EQ(values_.close_to_one, 1.0); + + // We already tested EXPECT_FLOAT_EQ(1.0, values_.further_from_one). + EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(values_.further_from_one, 1.0), + "1.0"); +} + +// Tests EXPECT_NEAR. +TEST_F(FloatTest, EXPECT_NEAR) { + EXPECT_NEAR(-1.0f, -1.1f, 0.2f); + EXPECT_NEAR(2.0f, 3.0f, 1.0f); + EXPECT_NONFATAL_FAILURE(EXPECT_NEAR(1.0f,1.5f, 0.25f), // NOLINT + "The difference between 1.0f and 1.5f is 0.5, " + "which exceeds 0.25f"); + // To work around a bug in gcc 2.95.0, there is intentionally no + // space after the first comma in the previous line. +} + +// Tests ASSERT_NEAR. +TEST_F(FloatTest, ASSERT_NEAR) { + ASSERT_NEAR(-1.0f, -1.1f, 0.2f); + ASSERT_NEAR(2.0f, 3.0f, 1.0f); + EXPECT_FATAL_FAILURE(ASSERT_NEAR(1.0f,1.5f, 0.25f), // NOLINT + "The difference between 1.0f and 1.5f is 0.5, " + "which exceeds 0.25f"); + // To work around a bug in gcc 2.95.0, there is intentionally no + // space after the first comma in the previous line. +} + +// Tests the cases where FloatLE() should succeed. +TEST_F(FloatTest, FloatLESucceeds) { + EXPECT_PRED_FORMAT2(FloatLE, 1.0f, 2.0f); // When val1 < val2, + ASSERT_PRED_FORMAT2(FloatLE, 1.0f, 1.0f); // val1 == val2, + + // or when val1 is greater than, but almost equals to, val2. + EXPECT_PRED_FORMAT2(FloatLE, values_.close_to_positive_zero, 0.0f); +} + +// Tests the cases where FloatLE() should fail. +TEST_F(FloatTest, FloatLEFails) { + // When val1 is greater than val2 by a large margin, + EXPECT_NONFATAL_FAILURE(EXPECT_PRED_FORMAT2(FloatLE, 2.0f, 1.0f), + "(2.0f) <= (1.0f)"); + + // or by a small yet non-negligible margin, + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT2(FloatLE, values_.further_from_one, 1.0f); + }, "(values_.further_from_one) <= (1.0f)"); + +#if !GTEST_OS_SYMBIAN && !defined(__BORLANDC__) + // Nokia's STLport crashes if we try to output infinity or NaN. + // C++Builder gives bad results for ordered comparisons involving NaNs + // due to compiler bugs. + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT2(FloatLE, values_.nan1, values_.infinity); + }, "(values_.nan1) <= (values_.infinity)"); + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT2(FloatLE, -values_.infinity, values_.nan1); + }, "(-values_.infinity) <= (values_.nan1)"); + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT2(FloatLE, values_.nan1, values_.nan1); + }, "(values_.nan1) <= (values_.nan1)"); +#endif // !GTEST_OS_SYMBIAN && !defined(__BORLANDC__) +} + +// Instantiates FloatingPointTest for testing *_DOUBLE_EQ. +typedef FloatingPointTest DoubleTest; + +// Tests that the size of Double::Bits matches the size of double. +TEST_F(DoubleTest, Size) { + TestSize(); +} + +// Tests comparing with +0 and -0. +TEST_F(DoubleTest, Zeros) { + EXPECT_DOUBLE_EQ(0.0, -0.0); + EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(-0.0, 1.0), + "1.0"); + EXPECT_FATAL_FAILURE(ASSERT_DOUBLE_EQ(0.0, 1.0), + "1.0"); +} + +// Tests comparing numbers close to 0. +// +// This ensures that *_DOUBLE_EQ handles the sign correctly and no +// overflow occurs when comparing numbers whose absolute value is very +// small. +TEST_F(DoubleTest, AlmostZeros) { + // In C++Builder, names within local classes (such as used by + // EXPECT_FATAL_FAILURE) cannot be resolved against static members of the + // scoping class. Use a static local alias as a workaround. + // We use the assignment syntax since some compilers, like Sun Studio, + // don't allow initializing references using construction syntax + // (parentheses). + static const DoubleTest::TestValues& v = this->values_; + + EXPECT_DOUBLE_EQ(0.0, v.close_to_positive_zero); + EXPECT_DOUBLE_EQ(-0.0, v.close_to_negative_zero); + EXPECT_DOUBLE_EQ(v.close_to_positive_zero, v.close_to_negative_zero); + + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_DOUBLE_EQ(v.close_to_positive_zero, + v.further_from_negative_zero); + }, "v.further_from_negative_zero"); +} + +// Tests comparing numbers close to each other. +TEST_F(DoubleTest, SmallDiff) { + EXPECT_DOUBLE_EQ(1.0, values_.close_to_one); + EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(1.0, values_.further_from_one), + "values_.further_from_one"); +} + +// Tests comparing numbers far apart. +TEST_F(DoubleTest, LargeDiff) { + EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(2.0, 3.0), + "3.0"); +} + +// Tests comparing with infinity. +// +// This ensures that no overflow occurs when comparing numbers whose +// absolute value is very large. +TEST_F(DoubleTest, Infinity) { + EXPECT_DOUBLE_EQ(values_.infinity, values_.close_to_infinity); + EXPECT_DOUBLE_EQ(-values_.infinity, -values_.close_to_infinity); +#if !GTEST_OS_SYMBIAN + // Nokia's STLport crashes if we try to output infinity or NaN. + EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(values_.infinity, -values_.infinity), + "-values_.infinity"); + + // This is interesting as the representations of infinity_ and nan1_ + // are only 1 DLP apart. + EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(values_.infinity, values_.nan1), + "values_.nan1"); +#endif // !GTEST_OS_SYMBIAN +} + +// Tests that comparing with NAN always returns false. +TEST_F(DoubleTest, NaN) { +#if !GTEST_OS_SYMBIAN + // In C++Builder, names within local classes (such as used by + // EXPECT_FATAL_FAILURE) cannot be resolved against static members of the + // scoping class. Use a static local alias as a workaround. + // We use the assignment syntax since some compilers, like Sun Studio, + // don't allow initializing references using construction syntax + // (parentheses). + static const DoubleTest::TestValues& v = this->values_; + + // Nokia's STLport crashes if we try to output infinity or NaN. + EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(v.nan1, v.nan1), + "v.nan1"); + EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(v.nan1, v.nan2), "v.nan2"); + EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(1.0, v.nan1), "v.nan1"); + EXPECT_FATAL_FAILURE(ASSERT_DOUBLE_EQ(v.nan1, v.infinity), + "v.infinity"); +#endif // !GTEST_OS_SYMBIAN +} + +// Tests that *_DOUBLE_EQ are reflexive. +TEST_F(DoubleTest, Reflexive) { + EXPECT_DOUBLE_EQ(0.0, 0.0); + EXPECT_DOUBLE_EQ(1.0, 1.0); +#if !GTEST_OS_SYMBIAN + // Nokia's STLport crashes if we try to output infinity or NaN. + ASSERT_DOUBLE_EQ(values_.infinity, values_.infinity); +#endif // !GTEST_OS_SYMBIAN +} + +// Tests that *_DOUBLE_EQ are commutative. +TEST_F(DoubleTest, Commutative) { + // We already tested EXPECT_DOUBLE_EQ(1.0, values_.close_to_one). + EXPECT_DOUBLE_EQ(values_.close_to_one, 1.0); + + // We already tested EXPECT_DOUBLE_EQ(1.0, values_.further_from_one). + EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(values_.further_from_one, 1.0), + "1.0"); +} + +// Tests EXPECT_NEAR. +TEST_F(DoubleTest, EXPECT_NEAR) { + EXPECT_NEAR(-1.0, -1.1, 0.2); + EXPECT_NEAR(2.0, 3.0, 1.0); + EXPECT_NONFATAL_FAILURE(EXPECT_NEAR(1.0, 1.5, 0.25), // NOLINT + "The difference between 1.0 and 1.5 is 0.5, " + "which exceeds 0.25"); + // To work around a bug in gcc 2.95.0, there is intentionally no + // space after the first comma in the previous statement. +} + +// Tests ASSERT_NEAR. +TEST_F(DoubleTest, ASSERT_NEAR) { + ASSERT_NEAR(-1.0, -1.1, 0.2); + ASSERT_NEAR(2.0, 3.0, 1.0); + EXPECT_FATAL_FAILURE(ASSERT_NEAR(1.0, 1.5, 0.25), // NOLINT + "The difference between 1.0 and 1.5 is 0.5, " + "which exceeds 0.25"); + // To work around a bug in gcc 2.95.0, there is intentionally no + // space after the first comma in the previous statement. +} + +// Tests the cases where DoubleLE() should succeed. +TEST_F(DoubleTest, DoubleLESucceeds) { + EXPECT_PRED_FORMAT2(DoubleLE, 1.0, 2.0); // When val1 < val2, + ASSERT_PRED_FORMAT2(DoubleLE, 1.0, 1.0); // val1 == val2, + + // or when val1 is greater than, but almost equals to, val2. + EXPECT_PRED_FORMAT2(DoubleLE, values_.close_to_positive_zero, 0.0); +} + +// Tests the cases where DoubleLE() should fail. +TEST_F(DoubleTest, DoubleLEFails) { + // When val1 is greater than val2 by a large margin, + EXPECT_NONFATAL_FAILURE(EXPECT_PRED_FORMAT2(DoubleLE, 2.0, 1.0), + "(2.0) <= (1.0)"); + + // or by a small yet non-negligible margin, + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT2(DoubleLE, values_.further_from_one, 1.0); + }, "(values_.further_from_one) <= (1.0)"); + +#if !GTEST_OS_SYMBIAN && !defined(__BORLANDC__) + // Nokia's STLport crashes if we try to output infinity or NaN. + // C++Builder gives bad results for ordered comparisons involving NaNs + // due to compiler bugs. + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT2(DoubleLE, values_.nan1, values_.infinity); + }, "(values_.nan1) <= (values_.infinity)"); + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_PRED_FORMAT2(DoubleLE, -values_.infinity, values_.nan1); + }, " (-values_.infinity) <= (values_.nan1)"); + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_PRED_FORMAT2(DoubleLE, values_.nan1, values_.nan1); + }, "(values_.nan1) <= (values_.nan1)"); +#endif // !GTEST_OS_SYMBIAN && !defined(__BORLANDC__) +} + + +// Verifies that a test or test case whose name starts with DISABLED_ is +// not run. + +// A test whose name starts with DISABLED_. +// Should not run. +TEST(DisabledTest, DISABLED_TestShouldNotRun) { + FAIL() << "Unexpected failure: Disabled test should not be run."; +} + +// A test whose name does not start with DISABLED_. +// Should run. +TEST(DisabledTest, NotDISABLED_TestShouldRun) { + EXPECT_EQ(1, 1); +} + +// A test case whose name starts with DISABLED_. +// Should not run. +TEST(DISABLED_TestCase, TestShouldNotRun) { + FAIL() << "Unexpected failure: Test in disabled test case should not be run."; +} + +// A test case and test whose names start with DISABLED_. +// Should not run. +TEST(DISABLED_TestCase, DISABLED_TestShouldNotRun) { + FAIL() << "Unexpected failure: Test in disabled test case should not be run."; +} + +// Check that when all tests in a test case are disabled, SetupTestCase() and +// TearDownTestCase() are not called. +class DisabledTestsTest : public Test { + protected: + static void SetUpTestCase() { + FAIL() << "Unexpected failure: All tests disabled in test case. " + "SetupTestCase() should not be called."; + } + + static void TearDownTestCase() { + FAIL() << "Unexpected failure: All tests disabled in test case. " + "TearDownTestCase() should not be called."; + } +}; + +TEST_F(DisabledTestsTest, DISABLED_TestShouldNotRun_1) { + FAIL() << "Unexpected failure: Disabled test should not be run."; +} + +TEST_F(DisabledTestsTest, DISABLED_TestShouldNotRun_2) { + FAIL() << "Unexpected failure: Disabled test should not be run."; +} + +// Tests that disabled typed tests aren't run. + +#if GTEST_HAS_TYPED_TEST + +template +class TypedTest : public Test { +}; + +typedef testing::Types NumericTypes; +TYPED_TEST_CASE(TypedTest, NumericTypes); + +TYPED_TEST(TypedTest, DISABLED_ShouldNotRun) { + FAIL() << "Unexpected failure: Disabled typed test should not run."; +} + +template +class DISABLED_TypedTest : public Test { +}; + +TYPED_TEST_CASE(DISABLED_TypedTest, NumericTypes); + +TYPED_TEST(DISABLED_TypedTest, ShouldNotRun) { + FAIL() << "Unexpected failure: Disabled typed test should not run."; +} + +#endif // GTEST_HAS_TYPED_TEST + +// Tests that disabled type-parameterized tests aren't run. + +#if GTEST_HAS_TYPED_TEST_P + +template +class TypedTestP : public Test { +}; + +TYPED_TEST_CASE_P(TypedTestP); + +TYPED_TEST_P(TypedTestP, DISABLED_ShouldNotRun) { + FAIL() << "Unexpected failure: " + << "Disabled type-parameterized test should not run."; +} + +REGISTER_TYPED_TEST_CASE_P(TypedTestP, DISABLED_ShouldNotRun); + +INSTANTIATE_TYPED_TEST_CASE_P(My, TypedTestP, NumericTypes); + +template +class DISABLED_TypedTestP : public Test { +}; + +TYPED_TEST_CASE_P(DISABLED_TypedTestP); + +TYPED_TEST_P(DISABLED_TypedTestP, ShouldNotRun) { + FAIL() << "Unexpected failure: " + << "Disabled type-parameterized test should not run."; +} + +REGISTER_TYPED_TEST_CASE_P(DISABLED_TypedTestP, ShouldNotRun); + +INSTANTIATE_TYPED_TEST_CASE_P(My, DISABLED_TypedTestP, NumericTypes); + +#endif // GTEST_HAS_TYPED_TEST_P + +// Tests that assertion macros evaluate their arguments exactly once. + +class SingleEvaluationTest : public Test { + public: // Must be public and not protected due to a bug in g++ 3.4.2. + // This helper function is needed by the FailedASSERT_STREQ test + // below. It's public to work around C++Builder's bug with scoping local + // classes. + static void CompareAndIncrementCharPtrs() { + ASSERT_STREQ(p1_++, p2_++); + } + + // This helper function is needed by the FailedASSERT_NE test below. It's + // public to work around C++Builder's bug with scoping local classes. + static void CompareAndIncrementInts() { + ASSERT_NE(a_++, b_++); + } + + protected: + SingleEvaluationTest() { + p1_ = s1_; + p2_ = s2_; + a_ = 0; + b_ = 0; + } + + static const char* const s1_; + static const char* const s2_; + static const char* p1_; + static const char* p2_; + + static int a_; + static int b_; +}; + +const char* const SingleEvaluationTest::s1_ = "01234"; +const char* const SingleEvaluationTest::s2_ = "abcde"; +const char* SingleEvaluationTest::p1_; +const char* SingleEvaluationTest::p2_; +int SingleEvaluationTest::a_; +int SingleEvaluationTest::b_; + +// Tests that when ASSERT_STREQ fails, it evaluates its arguments +// exactly once. +TEST_F(SingleEvaluationTest, FailedASSERT_STREQ) { + EXPECT_FATAL_FAILURE(SingleEvaluationTest::CompareAndIncrementCharPtrs(), + "p2_++"); + EXPECT_EQ(s1_ + 1, p1_); + EXPECT_EQ(s2_ + 1, p2_); +} + +// Tests that string assertion arguments are evaluated exactly once. +TEST_F(SingleEvaluationTest, ASSERT_STR) { + // successful EXPECT_STRNE + EXPECT_STRNE(p1_++, p2_++); + EXPECT_EQ(s1_ + 1, p1_); + EXPECT_EQ(s2_ + 1, p2_); + + // failed EXPECT_STRCASEEQ + EXPECT_NONFATAL_FAILURE(EXPECT_STRCASEEQ(p1_++, p2_++), + "ignoring case"); + EXPECT_EQ(s1_ + 2, p1_); + EXPECT_EQ(s2_ + 2, p2_); +} + +// Tests that when ASSERT_NE fails, it evaluates its arguments exactly +// once. +TEST_F(SingleEvaluationTest, FailedASSERT_NE) { + EXPECT_FATAL_FAILURE(SingleEvaluationTest::CompareAndIncrementInts(), + "(a_++) != (b_++)"); + EXPECT_EQ(1, a_); + EXPECT_EQ(1, b_); +} + +// Tests that assertion arguments are evaluated exactly once. +TEST_F(SingleEvaluationTest, OtherCases) { + // successful EXPECT_TRUE + EXPECT_TRUE(0 == a_++); // NOLINT + EXPECT_EQ(1, a_); + + // failed EXPECT_TRUE + EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(-1 == a_++), "-1 == a_++"); + EXPECT_EQ(2, a_); + + // successful EXPECT_GT + EXPECT_GT(a_++, b_++); + EXPECT_EQ(3, a_); + EXPECT_EQ(1, b_); + + // failed EXPECT_LT + EXPECT_NONFATAL_FAILURE(EXPECT_LT(a_++, b_++), "(a_++) < (b_++)"); + EXPECT_EQ(4, a_); + EXPECT_EQ(2, b_); + + // successful ASSERT_TRUE + ASSERT_TRUE(0 < a_++); // NOLINT + EXPECT_EQ(5, a_); + + // successful ASSERT_GT + ASSERT_GT(a_++, b_++); + EXPECT_EQ(6, a_); + EXPECT_EQ(3, b_); +} + +#if GTEST_HAS_EXCEPTIONS + +void ThrowAnInteger() { + throw 1; +} + +// Tests that assertion arguments are evaluated exactly once. +TEST_F(SingleEvaluationTest, ExceptionTests) { + // successful EXPECT_THROW + EXPECT_THROW({ // NOLINT + a_++; + ThrowAnInteger(); + }, int); + EXPECT_EQ(1, a_); + + // failed EXPECT_THROW, throws different + EXPECT_NONFATAL_FAILURE(EXPECT_THROW({ // NOLINT + a_++; + ThrowAnInteger(); + }, bool), "throws a different type"); + EXPECT_EQ(2, a_); + + // failed EXPECT_THROW, throws nothing + EXPECT_NONFATAL_FAILURE(EXPECT_THROW(a_++, bool), "throws nothing"); + EXPECT_EQ(3, a_); + + // successful EXPECT_NO_THROW + EXPECT_NO_THROW(a_++); + EXPECT_EQ(4, a_); + + // failed EXPECT_NO_THROW + EXPECT_NONFATAL_FAILURE(EXPECT_NO_THROW({ // NOLINT + a_++; + ThrowAnInteger(); + }), "it throws"); + EXPECT_EQ(5, a_); + + // successful EXPECT_ANY_THROW + EXPECT_ANY_THROW({ // NOLINT + a_++; + ThrowAnInteger(); + }); + EXPECT_EQ(6, a_); + + // failed EXPECT_ANY_THROW + EXPECT_NONFATAL_FAILURE(EXPECT_ANY_THROW(a_++), "it doesn't"); + EXPECT_EQ(7, a_); +} + +#endif // GTEST_HAS_EXCEPTIONS + +// Tests {ASSERT|EXPECT}_NO_FATAL_FAILURE. +class NoFatalFailureTest : public Test { + protected: + void Succeeds() {} + void FailsNonFatal() { + ADD_FAILURE() << "some non-fatal failure"; + } + void Fails() { + FAIL() << "some fatal failure"; + } + + void DoAssertNoFatalFailureOnFails() { + ASSERT_NO_FATAL_FAILURE(Fails()); + ADD_FAILURE() << "shold not reach here."; + } + + void DoExpectNoFatalFailureOnFails() { + EXPECT_NO_FATAL_FAILURE(Fails()); + ADD_FAILURE() << "other failure"; + } +}; + +TEST_F(NoFatalFailureTest, NoFailure) { + EXPECT_NO_FATAL_FAILURE(Succeeds()); + ASSERT_NO_FATAL_FAILURE(Succeeds()); +} + +TEST_F(NoFatalFailureTest, NonFatalIsNoFailure) { + EXPECT_NONFATAL_FAILURE( + EXPECT_NO_FATAL_FAILURE(FailsNonFatal()), + "some non-fatal failure"); + EXPECT_NONFATAL_FAILURE( + ASSERT_NO_FATAL_FAILURE(FailsNonFatal()), + "some non-fatal failure"); +} + +TEST_F(NoFatalFailureTest, AssertNoFatalFailureOnFatalFailure) { + TestPartResultArray gtest_failures; + { + ScopedFakeTestPartResultReporter gtest_reporter(>est_failures); + DoAssertNoFatalFailureOnFails(); + } + ASSERT_EQ(2, gtest_failures.size()); + EXPECT_EQ(TestPartResult::kFatalFailure, + gtest_failures.GetTestPartResult(0).type()); + EXPECT_EQ(TestPartResult::kFatalFailure, + gtest_failures.GetTestPartResult(1).type()); + EXPECT_PRED_FORMAT2(testing::IsSubstring, "some fatal failure", + gtest_failures.GetTestPartResult(0).message()); + EXPECT_PRED_FORMAT2(testing::IsSubstring, "it does", + gtest_failures.GetTestPartResult(1).message()); +} + +TEST_F(NoFatalFailureTest, ExpectNoFatalFailureOnFatalFailure) { + TestPartResultArray gtest_failures; + { + ScopedFakeTestPartResultReporter gtest_reporter(>est_failures); + DoExpectNoFatalFailureOnFails(); + } + ASSERT_EQ(3, gtest_failures.size()); + EXPECT_EQ(TestPartResult::kFatalFailure, + gtest_failures.GetTestPartResult(0).type()); + EXPECT_EQ(TestPartResult::kNonFatalFailure, + gtest_failures.GetTestPartResult(1).type()); + EXPECT_EQ(TestPartResult::kNonFatalFailure, + gtest_failures.GetTestPartResult(2).type()); + EXPECT_PRED_FORMAT2(testing::IsSubstring, "some fatal failure", + gtest_failures.GetTestPartResult(0).message()); + EXPECT_PRED_FORMAT2(testing::IsSubstring, "it does", + gtest_failures.GetTestPartResult(1).message()); + EXPECT_PRED_FORMAT2(testing::IsSubstring, "other failure", + gtest_failures.GetTestPartResult(2).message()); +} + +TEST_F(NoFatalFailureTest, MessageIsStreamable) { + TestPartResultArray gtest_failures; + { + ScopedFakeTestPartResultReporter gtest_reporter(>est_failures); + EXPECT_NO_FATAL_FAILURE(FAIL() << "foo") << "my message"; + } + ASSERT_EQ(2, gtest_failures.size()); + EXPECT_EQ(TestPartResult::kNonFatalFailure, + gtest_failures.GetTestPartResult(0).type()); + EXPECT_EQ(TestPartResult::kNonFatalFailure, + gtest_failures.GetTestPartResult(1).type()); + EXPECT_PRED_FORMAT2(testing::IsSubstring, "foo", + gtest_failures.GetTestPartResult(0).message()); + EXPECT_PRED_FORMAT2(testing::IsSubstring, "my message", + gtest_failures.GetTestPartResult(1).message()); +} + +// Tests non-string assertions. + +// Tests EqFailure(), used for implementing *EQ* assertions. +TEST(AssertionTest, EqFailure) { + const std::string foo_val("5"), bar_val("6"); + const std::string msg1( + EqFailure("foo", "bar", foo_val, bar_val, false) + .failure_message()); + EXPECT_STREQ( + "Value of: bar\n" + " Actual: 6\n" + "Expected: foo\n" + "Which is: 5", + msg1.c_str()); + + const std::string msg2( + EqFailure("foo", "6", foo_val, bar_val, false) + .failure_message()); + EXPECT_STREQ( + "Value of: 6\n" + "Expected: foo\n" + "Which is: 5", + msg2.c_str()); + + const std::string msg3( + EqFailure("5", "bar", foo_val, bar_val, false) + .failure_message()); + EXPECT_STREQ( + "Value of: bar\n" + " Actual: 6\n" + "Expected: 5", + msg3.c_str()); + + const std::string msg4( + EqFailure("5", "6", foo_val, bar_val, false).failure_message()); + EXPECT_STREQ( + "Value of: 6\n" + "Expected: 5", + msg4.c_str()); + + const std::string msg5( + EqFailure("foo", "bar", + std::string("\"x\""), std::string("\"y\""), + true).failure_message()); + EXPECT_STREQ( + "Value of: bar\n" + " Actual: \"y\"\n" + "Expected: foo (ignoring case)\n" + "Which is: \"x\"", + msg5.c_str()); +} + +// Tests AppendUserMessage(), used for implementing the *EQ* macros. +TEST(AssertionTest, AppendUserMessage) { + const std::string foo("foo"); + + Message msg; + EXPECT_STREQ("foo", + AppendUserMessage(foo, msg).c_str()); + + msg << "bar"; + EXPECT_STREQ("foo\nbar", + AppendUserMessage(foo, msg).c_str()); +} + +#ifdef __BORLANDC__ +// Silences warnings: "Condition is always true", "Unreachable code" +# pragma option push -w-ccc -w-rch +#endif + +// Tests ASSERT_TRUE. +TEST(AssertionTest, ASSERT_TRUE) { + ASSERT_TRUE(2 > 1); // NOLINT + EXPECT_FATAL_FAILURE(ASSERT_TRUE(2 < 1), + "2 < 1"); +} + +// Tests ASSERT_TRUE(predicate) for predicates returning AssertionResult. +TEST(AssertionTest, AssertTrueWithAssertionResult) { + ASSERT_TRUE(ResultIsEven(2)); +#ifndef __BORLANDC__ + // ICE's in C++Builder. + EXPECT_FATAL_FAILURE(ASSERT_TRUE(ResultIsEven(3)), + "Value of: ResultIsEven(3)\n" + " Actual: false (3 is odd)\n" + "Expected: true"); +#endif + ASSERT_TRUE(ResultIsEvenNoExplanation(2)); + EXPECT_FATAL_FAILURE(ASSERT_TRUE(ResultIsEvenNoExplanation(3)), + "Value of: ResultIsEvenNoExplanation(3)\n" + " Actual: false (3 is odd)\n" + "Expected: true"); +} + +// Tests ASSERT_FALSE. +TEST(AssertionTest, ASSERT_FALSE) { + ASSERT_FALSE(2 < 1); // NOLINT + EXPECT_FATAL_FAILURE(ASSERT_FALSE(2 > 1), + "Value of: 2 > 1\n" + " Actual: true\n" + "Expected: false"); +} + +// Tests ASSERT_FALSE(predicate) for predicates returning AssertionResult. +TEST(AssertionTest, AssertFalseWithAssertionResult) { + ASSERT_FALSE(ResultIsEven(3)); +#ifndef __BORLANDC__ + // ICE's in C++Builder. + EXPECT_FATAL_FAILURE(ASSERT_FALSE(ResultIsEven(2)), + "Value of: ResultIsEven(2)\n" + " Actual: true (2 is even)\n" + "Expected: false"); +#endif + ASSERT_FALSE(ResultIsEvenNoExplanation(3)); + EXPECT_FATAL_FAILURE(ASSERT_FALSE(ResultIsEvenNoExplanation(2)), + "Value of: ResultIsEvenNoExplanation(2)\n" + " Actual: true\n" + "Expected: false"); +} + +#ifdef __BORLANDC__ +// Restores warnings after previous "#pragma option push" supressed them +# pragma option pop +#endif + +// Tests using ASSERT_EQ on double values. The purpose is to make +// sure that the specialization we did for integer and anonymous enums +// isn't used for double arguments. +TEST(ExpectTest, ASSERT_EQ_Double) { + // A success. + ASSERT_EQ(5.6, 5.6); + + // A failure. + EXPECT_FATAL_FAILURE(ASSERT_EQ(5.1, 5.2), + "5.1"); +} + +// Tests ASSERT_EQ. +TEST(AssertionTest, ASSERT_EQ) { + ASSERT_EQ(5, 2 + 3); + EXPECT_FATAL_FAILURE(ASSERT_EQ(5, 2*3), + "Value of: 2*3\n" + " Actual: 6\n" + "Expected: 5"); +} + +// Tests ASSERT_EQ(NULL, pointer). +#if GTEST_CAN_COMPARE_NULL +TEST(AssertionTest, ASSERT_EQ_NULL) { + // A success. + const char* p = NULL; + // Some older GCC versions may issue a spurious waring in this or the next + // assertion statement. This warning should not be suppressed with + // static_cast since the test verifies the ability to use bare NULL as the + // expected parameter to the macro. + ASSERT_EQ(NULL, p); + + // A failure. + static int n = 0; + EXPECT_FATAL_FAILURE(ASSERT_EQ(NULL, &n), + "Value of: &n\n"); +} +#endif // GTEST_CAN_COMPARE_NULL + +// Tests ASSERT_EQ(0, non_pointer). Since the literal 0 can be +// treated as a null pointer by the compiler, we need to make sure +// that ASSERT_EQ(0, non_pointer) isn't interpreted by Google Test as +// ASSERT_EQ(static_cast(NULL), non_pointer). +TEST(ExpectTest, ASSERT_EQ_0) { + int n = 0; + + // A success. + ASSERT_EQ(0, n); + + // A failure. + EXPECT_FATAL_FAILURE(ASSERT_EQ(0, 5.6), + "Expected: 0"); +} + +// Tests ASSERT_NE. +TEST(AssertionTest, ASSERT_NE) { + ASSERT_NE(6, 7); + EXPECT_FATAL_FAILURE(ASSERT_NE('a', 'a'), + "Expected: ('a') != ('a'), " + "actual: 'a' (97, 0x61) vs 'a' (97, 0x61)"); +} + +// Tests ASSERT_LE. +TEST(AssertionTest, ASSERT_LE) { + ASSERT_LE(2, 3); + ASSERT_LE(2, 2); + EXPECT_FATAL_FAILURE(ASSERT_LE(2, 0), + "Expected: (2) <= (0), actual: 2 vs 0"); +} + +// Tests ASSERT_LT. +TEST(AssertionTest, ASSERT_LT) { + ASSERT_LT(2, 3); + EXPECT_FATAL_FAILURE(ASSERT_LT(2, 2), + "Expected: (2) < (2), actual: 2 vs 2"); +} + +// Tests ASSERT_GE. +TEST(AssertionTest, ASSERT_GE) { + ASSERT_GE(2, 1); + ASSERT_GE(2, 2); + EXPECT_FATAL_FAILURE(ASSERT_GE(2, 3), + "Expected: (2) >= (3), actual: 2 vs 3"); +} + +// Tests ASSERT_GT. +TEST(AssertionTest, ASSERT_GT) { + ASSERT_GT(2, 1); + EXPECT_FATAL_FAILURE(ASSERT_GT(2, 2), + "Expected: (2) > (2), actual: 2 vs 2"); +} + +#if GTEST_HAS_EXCEPTIONS + +void ThrowNothing() {} + +// Tests ASSERT_THROW. +TEST(AssertionTest, ASSERT_THROW) { + ASSERT_THROW(ThrowAnInteger(), int); + +# ifndef __BORLANDC__ + + // ICE's in C++Builder 2007 and 2009. + EXPECT_FATAL_FAILURE( + ASSERT_THROW(ThrowAnInteger(), bool), + "Expected: ThrowAnInteger() throws an exception of type bool.\n" + " Actual: it throws a different type."); +# endif + + EXPECT_FATAL_FAILURE( + ASSERT_THROW(ThrowNothing(), bool), + "Expected: ThrowNothing() throws an exception of type bool.\n" + " Actual: it throws nothing."); +} + +// Tests ASSERT_NO_THROW. +TEST(AssertionTest, ASSERT_NO_THROW) { + ASSERT_NO_THROW(ThrowNothing()); + EXPECT_FATAL_FAILURE(ASSERT_NO_THROW(ThrowAnInteger()), + "Expected: ThrowAnInteger() doesn't throw an exception." + "\n Actual: it throws."); +} + +// Tests ASSERT_ANY_THROW. +TEST(AssertionTest, ASSERT_ANY_THROW) { + ASSERT_ANY_THROW(ThrowAnInteger()); + EXPECT_FATAL_FAILURE( + ASSERT_ANY_THROW(ThrowNothing()), + "Expected: ThrowNothing() throws an exception.\n" + " Actual: it doesn't."); +} + +#endif // GTEST_HAS_EXCEPTIONS + +// Makes sure we deal with the precedence of <<. This test should +// compile. +TEST(AssertionTest, AssertPrecedence) { + ASSERT_EQ(1 < 2, true); + bool false_value = false; + ASSERT_EQ(true && false_value, false); +} + +// A subroutine used by the following test. +void TestEq1(int x) { + ASSERT_EQ(1, x); +} + +// Tests calling a test subroutine that's not part of a fixture. +TEST(AssertionTest, NonFixtureSubroutine) { + EXPECT_FATAL_FAILURE(TestEq1(2), + "Value of: x"); +} + +// An uncopyable class. +class Uncopyable { + public: + explicit Uncopyable(int a_value) : value_(a_value) {} + + int value() const { return value_; } + bool operator==(const Uncopyable& rhs) const { + return value() == rhs.value(); + } + private: + // This constructor deliberately has no implementation, as we don't + // want this class to be copyable. + Uncopyable(const Uncopyable&); // NOLINT + + int value_; +}; + +::std::ostream& operator<<(::std::ostream& os, const Uncopyable& value) { + return os << value.value(); +} + + +bool IsPositiveUncopyable(const Uncopyable& x) { + return x.value() > 0; +} + +// A subroutine used by the following test. +void TestAssertNonPositive() { + Uncopyable y(-1); + ASSERT_PRED1(IsPositiveUncopyable, y); +} +// A subroutine used by the following test. +void TestAssertEqualsUncopyable() { + Uncopyable x(5); + Uncopyable y(-1); + ASSERT_EQ(x, y); +} + +// Tests that uncopyable objects can be used in assertions. +TEST(AssertionTest, AssertWorksWithUncopyableObject) { + Uncopyable x(5); + ASSERT_PRED1(IsPositiveUncopyable, x); + ASSERT_EQ(x, x); + EXPECT_FATAL_FAILURE(TestAssertNonPositive(), + "IsPositiveUncopyable(y) evaluates to false, where\ny evaluates to -1"); + EXPECT_FATAL_FAILURE(TestAssertEqualsUncopyable(), + "Value of: y\n Actual: -1\nExpected: x\nWhich is: 5"); +} + +// Tests that uncopyable objects can be used in expects. +TEST(AssertionTest, ExpectWorksWithUncopyableObject) { + Uncopyable x(5); + EXPECT_PRED1(IsPositiveUncopyable, x); + Uncopyable y(-1); + EXPECT_NONFATAL_FAILURE(EXPECT_PRED1(IsPositiveUncopyable, y), + "IsPositiveUncopyable(y) evaluates to false, where\ny evaluates to -1"); + EXPECT_EQ(x, x); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(x, y), + "Value of: y\n Actual: -1\nExpected: x\nWhich is: 5"); +} + +enum NamedEnum { + kE1 = 0, + kE2 = 1 +}; + +TEST(AssertionTest, NamedEnum) { + EXPECT_EQ(kE1, kE1); + EXPECT_LT(kE1, kE2); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(kE1, kE2), "Which is: 0"); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(kE1, kE2), "Actual: 1"); +} + +// The version of gcc used in XCode 2.2 has a bug and doesn't allow +// anonymous enums in assertions. Therefore the following test is not +// done on Mac. +// Sun Studio and HP aCC also reject this code. +#if !GTEST_OS_MAC && !defined(__SUNPRO_CC) && !defined(__HP_aCC) + +// Tests using assertions with anonymous enums. +enum { + kCaseA = -1, + +# if GTEST_OS_LINUX + + // We want to test the case where the size of the anonymous enum is + // larger than sizeof(int), to make sure our implementation of the + // assertions doesn't truncate the enums. However, MSVC + // (incorrectly) doesn't allow an enum value to exceed the range of + // an int, so this has to be conditionally compiled. + // + // On Linux, kCaseB and kCaseA have the same value when truncated to + // int size. We want to test whether this will confuse the + // assertions. + kCaseB = testing::internal::kMaxBiggestInt, + +# else + + kCaseB = INT_MAX, + +# endif // GTEST_OS_LINUX + + kCaseC = 42 +}; + +TEST(AssertionTest, AnonymousEnum) { +# if GTEST_OS_LINUX + + EXPECT_EQ(static_cast(kCaseA), static_cast(kCaseB)); + +# endif // GTEST_OS_LINUX + + EXPECT_EQ(kCaseA, kCaseA); + EXPECT_NE(kCaseA, kCaseB); + EXPECT_LT(kCaseA, kCaseB); + EXPECT_LE(kCaseA, kCaseB); + EXPECT_GT(kCaseB, kCaseA); + EXPECT_GE(kCaseA, kCaseA); + EXPECT_NONFATAL_FAILURE(EXPECT_GE(kCaseA, kCaseB), + "(kCaseA) >= (kCaseB)"); + EXPECT_NONFATAL_FAILURE(EXPECT_GE(kCaseA, kCaseC), + "-1 vs 42"); + + ASSERT_EQ(kCaseA, kCaseA); + ASSERT_NE(kCaseA, kCaseB); + ASSERT_LT(kCaseA, kCaseB); + ASSERT_LE(kCaseA, kCaseB); + ASSERT_GT(kCaseB, kCaseA); + ASSERT_GE(kCaseA, kCaseA); + +# ifndef __BORLANDC__ + + // ICE's in C++Builder. + EXPECT_FATAL_FAILURE(ASSERT_EQ(kCaseA, kCaseB), + "Value of: kCaseB"); + EXPECT_FATAL_FAILURE(ASSERT_EQ(kCaseA, kCaseC), + "Actual: 42"); +# endif + + EXPECT_FATAL_FAILURE(ASSERT_EQ(kCaseA, kCaseC), + "Which is: -1"); +} + +#endif // !GTEST_OS_MAC && !defined(__SUNPRO_CC) + +#if GTEST_OS_WINDOWS + +static HRESULT UnexpectedHRESULTFailure() { + return E_UNEXPECTED; +} + +static HRESULT OkHRESULTSuccess() { + return S_OK; +} + +static HRESULT FalseHRESULTSuccess() { + return S_FALSE; +} + +// HRESULT assertion tests test both zero and non-zero +// success codes as well as failure message for each. +// +// Windows CE doesn't support message texts. +TEST(HRESULTAssertionTest, EXPECT_HRESULT_SUCCEEDED) { + EXPECT_HRESULT_SUCCEEDED(S_OK); + EXPECT_HRESULT_SUCCEEDED(S_FALSE); + + EXPECT_NONFATAL_FAILURE(EXPECT_HRESULT_SUCCEEDED(UnexpectedHRESULTFailure()), + "Expected: (UnexpectedHRESULTFailure()) succeeds.\n" + " Actual: 0x8000FFFF"); +} + +TEST(HRESULTAssertionTest, ASSERT_HRESULT_SUCCEEDED) { + ASSERT_HRESULT_SUCCEEDED(S_OK); + ASSERT_HRESULT_SUCCEEDED(S_FALSE); + + EXPECT_FATAL_FAILURE(ASSERT_HRESULT_SUCCEEDED(UnexpectedHRESULTFailure()), + "Expected: (UnexpectedHRESULTFailure()) succeeds.\n" + " Actual: 0x8000FFFF"); +} + +TEST(HRESULTAssertionTest, EXPECT_HRESULT_FAILED) { + EXPECT_HRESULT_FAILED(E_UNEXPECTED); + + EXPECT_NONFATAL_FAILURE(EXPECT_HRESULT_FAILED(OkHRESULTSuccess()), + "Expected: (OkHRESULTSuccess()) fails.\n" + " Actual: 0x0"); + EXPECT_NONFATAL_FAILURE(EXPECT_HRESULT_FAILED(FalseHRESULTSuccess()), + "Expected: (FalseHRESULTSuccess()) fails.\n" + " Actual: 0x1"); +} + +TEST(HRESULTAssertionTest, ASSERT_HRESULT_FAILED) { + ASSERT_HRESULT_FAILED(E_UNEXPECTED); + +# ifndef __BORLANDC__ + + // ICE's in C++Builder 2007 and 2009. + EXPECT_FATAL_FAILURE(ASSERT_HRESULT_FAILED(OkHRESULTSuccess()), + "Expected: (OkHRESULTSuccess()) fails.\n" + " Actual: 0x0"); +# endif + + EXPECT_FATAL_FAILURE(ASSERT_HRESULT_FAILED(FalseHRESULTSuccess()), + "Expected: (FalseHRESULTSuccess()) fails.\n" + " Actual: 0x1"); +} + +// Tests that streaming to the HRESULT macros works. +TEST(HRESULTAssertionTest, Streaming) { + EXPECT_HRESULT_SUCCEEDED(S_OK) << "unexpected failure"; + ASSERT_HRESULT_SUCCEEDED(S_OK) << "unexpected failure"; + EXPECT_HRESULT_FAILED(E_UNEXPECTED) << "unexpected failure"; + ASSERT_HRESULT_FAILED(E_UNEXPECTED) << "unexpected failure"; + + EXPECT_NONFATAL_FAILURE( + EXPECT_HRESULT_SUCCEEDED(E_UNEXPECTED) << "expected failure", + "expected failure"); + +# ifndef __BORLANDC__ + + // ICE's in C++Builder 2007 and 2009. + EXPECT_FATAL_FAILURE( + ASSERT_HRESULT_SUCCEEDED(E_UNEXPECTED) << "expected failure", + "expected failure"); +# endif + + EXPECT_NONFATAL_FAILURE( + EXPECT_HRESULT_FAILED(S_OK) << "expected failure", + "expected failure"); + + EXPECT_FATAL_FAILURE( + ASSERT_HRESULT_FAILED(S_OK) << "expected failure", + "expected failure"); +} + +#endif // GTEST_OS_WINDOWS + +#ifdef __BORLANDC__ +// Silences warnings: "Condition is always true", "Unreachable code" +# pragma option push -w-ccc -w-rch +#endif + +// Tests that the assertion macros behave like single statements. +TEST(AssertionSyntaxTest, BasicAssertionsBehavesLikeSingleStatement) { + if (AlwaysFalse()) + ASSERT_TRUE(false) << "This should never be executed; " + "It's a compilation test only."; + + if (AlwaysTrue()) + EXPECT_FALSE(false); + else + ; // NOLINT + + if (AlwaysFalse()) + ASSERT_LT(1, 3); + + if (AlwaysFalse()) + ; // NOLINT + else + EXPECT_GT(3, 2) << ""; +} + +#if GTEST_HAS_EXCEPTIONS +// Tests that the compiler will not complain about unreachable code in the +// EXPECT_THROW/EXPECT_ANY_THROW/EXPECT_NO_THROW macros. +TEST(ExpectThrowTest, DoesNotGenerateUnreachableCodeWarning) { + int n = 0; + + EXPECT_THROW(throw 1, int); + EXPECT_NONFATAL_FAILURE(EXPECT_THROW(n++, int), ""); + EXPECT_NONFATAL_FAILURE(EXPECT_THROW(throw 1, const char*), ""); + EXPECT_NO_THROW(n++); + EXPECT_NONFATAL_FAILURE(EXPECT_NO_THROW(throw 1), ""); + EXPECT_ANY_THROW(throw 1); + EXPECT_NONFATAL_FAILURE(EXPECT_ANY_THROW(n++), ""); +} + +TEST(AssertionSyntaxTest, ExceptionAssertionsBehavesLikeSingleStatement) { + if (AlwaysFalse()) + EXPECT_THROW(ThrowNothing(), bool); + + if (AlwaysTrue()) + EXPECT_THROW(ThrowAnInteger(), int); + else + ; // NOLINT + + if (AlwaysFalse()) + EXPECT_NO_THROW(ThrowAnInteger()); + + if (AlwaysTrue()) + EXPECT_NO_THROW(ThrowNothing()); + else + ; // NOLINT + + if (AlwaysFalse()) + EXPECT_ANY_THROW(ThrowNothing()); + + if (AlwaysTrue()) + EXPECT_ANY_THROW(ThrowAnInteger()); + else + ; // NOLINT +} +#endif // GTEST_HAS_EXCEPTIONS + +TEST(AssertionSyntaxTest, NoFatalFailureAssertionsBehavesLikeSingleStatement) { + if (AlwaysFalse()) + EXPECT_NO_FATAL_FAILURE(FAIL()) << "This should never be executed. " + << "It's a compilation test only."; + else + ; // NOLINT + + if (AlwaysFalse()) + ASSERT_NO_FATAL_FAILURE(FAIL()) << ""; + else + ; // NOLINT + + if (AlwaysTrue()) + EXPECT_NO_FATAL_FAILURE(SUCCEED()); + else + ; // NOLINT + + if (AlwaysFalse()) + ; // NOLINT + else + ASSERT_NO_FATAL_FAILURE(SUCCEED()); +} + +// Tests that the assertion macros work well with switch statements. +TEST(AssertionSyntaxTest, WorksWithSwitch) { + switch (0) { + case 1: + break; + default: + ASSERT_TRUE(true); + } + + switch (0) + case 0: + EXPECT_FALSE(false) << "EXPECT_FALSE failed in switch case"; + + // Binary assertions are implemented using a different code path + // than the Boolean assertions. Hence we test them separately. + switch (0) { + case 1: + default: + ASSERT_EQ(1, 1) << "ASSERT_EQ failed in default switch handler"; + } + + switch (0) + case 0: + EXPECT_NE(1, 2); +} + +#if GTEST_HAS_EXCEPTIONS + +void ThrowAString() { + throw "std::string"; +} + +// Test that the exception assertion macros compile and work with const +// type qualifier. +TEST(AssertionSyntaxTest, WorksWithConst) { + ASSERT_THROW(ThrowAString(), const char*); + + EXPECT_THROW(ThrowAString(), const char*); +} + +#endif // GTEST_HAS_EXCEPTIONS + +} // namespace + +namespace testing { + +// Tests that Google Test tracks SUCCEED*. +TEST(SuccessfulAssertionTest, SUCCEED) { + SUCCEED(); + SUCCEED() << "OK"; + EXPECT_EQ(2, GetUnitTestImpl()->current_test_result()->total_part_count()); +} + +// Tests that Google Test doesn't track successful EXPECT_*. +TEST(SuccessfulAssertionTest, EXPECT) { + EXPECT_TRUE(true); + EXPECT_EQ(0, GetUnitTestImpl()->current_test_result()->total_part_count()); +} + +// Tests that Google Test doesn't track successful EXPECT_STR*. +TEST(SuccessfulAssertionTest, EXPECT_STR) { + EXPECT_STREQ("", ""); + EXPECT_EQ(0, GetUnitTestImpl()->current_test_result()->total_part_count()); +} + +// Tests that Google Test doesn't track successful ASSERT_*. +TEST(SuccessfulAssertionTest, ASSERT) { + ASSERT_TRUE(true); + EXPECT_EQ(0, GetUnitTestImpl()->current_test_result()->total_part_count()); +} + +// Tests that Google Test doesn't track successful ASSERT_STR*. +TEST(SuccessfulAssertionTest, ASSERT_STR) { + ASSERT_STREQ("", ""); + EXPECT_EQ(0, GetUnitTestImpl()->current_test_result()->total_part_count()); +} + +} // namespace testing + +namespace { + +// Tests the message streaming variation of assertions. + +TEST(AssertionWithMessageTest, EXPECT) { + EXPECT_EQ(1, 1) << "This should succeed."; + EXPECT_NONFATAL_FAILURE(EXPECT_NE(1, 1) << "Expected failure #1.", + "Expected failure #1"); + EXPECT_LE(1, 2) << "This should succeed."; + EXPECT_NONFATAL_FAILURE(EXPECT_LT(1, 0) << "Expected failure #2.", + "Expected failure #2."); + EXPECT_GE(1, 0) << "This should succeed."; + EXPECT_NONFATAL_FAILURE(EXPECT_GT(1, 2) << "Expected failure #3.", + "Expected failure #3."); + + EXPECT_STREQ("1", "1") << "This should succeed."; + EXPECT_NONFATAL_FAILURE(EXPECT_STRNE("1", "1") << "Expected failure #4.", + "Expected failure #4."); + EXPECT_STRCASEEQ("a", "A") << "This should succeed."; + EXPECT_NONFATAL_FAILURE(EXPECT_STRCASENE("a", "A") << "Expected failure #5.", + "Expected failure #5."); + + EXPECT_FLOAT_EQ(1, 1) << "This should succeed."; + EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(1, 1.2) << "Expected failure #6.", + "Expected failure #6."); + EXPECT_NEAR(1, 1.1, 0.2) << "This should succeed."; +} + +TEST(AssertionWithMessageTest, ASSERT) { + ASSERT_EQ(1, 1) << "This should succeed."; + ASSERT_NE(1, 2) << "This should succeed."; + ASSERT_LE(1, 2) << "This should succeed."; + ASSERT_LT(1, 2) << "This should succeed."; + ASSERT_GE(1, 0) << "This should succeed."; + EXPECT_FATAL_FAILURE(ASSERT_GT(1, 2) << "Expected failure.", + "Expected failure."); +} + +TEST(AssertionWithMessageTest, ASSERT_STR) { + ASSERT_STREQ("1", "1") << "This should succeed."; + ASSERT_STRNE("1", "2") << "This should succeed."; + ASSERT_STRCASEEQ("a", "A") << "This should succeed."; + EXPECT_FATAL_FAILURE(ASSERT_STRCASENE("a", "A") << "Expected failure.", + "Expected failure."); +} + +TEST(AssertionWithMessageTest, ASSERT_FLOATING) { + ASSERT_FLOAT_EQ(1, 1) << "This should succeed."; + ASSERT_DOUBLE_EQ(1, 1) << "This should succeed."; + EXPECT_FATAL_FAILURE(ASSERT_NEAR(1,1.2, 0.1) << "Expect failure.", // NOLINT + "Expect failure."); + // To work around a bug in gcc 2.95.0, there is intentionally no + // space after the first comma in the previous statement. +} + +// Tests using ASSERT_FALSE with a streamed message. +TEST(AssertionWithMessageTest, ASSERT_FALSE) { + ASSERT_FALSE(false) << "This shouldn't fail."; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_FALSE(true) << "Expected failure: " << 2 << " > " << 1 + << " evaluates to " << true; + }, "Expected failure"); +} + +// Tests using FAIL with a streamed message. +TEST(AssertionWithMessageTest, FAIL) { + EXPECT_FATAL_FAILURE(FAIL() << 0, + "0"); +} + +// Tests using SUCCEED with a streamed message. +TEST(AssertionWithMessageTest, SUCCEED) { + SUCCEED() << "Success == " << 1; +} + +// Tests using ASSERT_TRUE with a streamed message. +TEST(AssertionWithMessageTest, ASSERT_TRUE) { + ASSERT_TRUE(true) << "This should succeed."; + ASSERT_TRUE(true) << true; + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_TRUE(false) << static_cast(NULL) + << static_cast(NULL); + }, "(null)(null)"); +} + +#if GTEST_OS_WINDOWS +// Tests using wide strings in assertion messages. +TEST(AssertionWithMessageTest, WideStringMessage) { + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_TRUE(false) << L"This failure is expected.\x8119"; + }, "This failure is expected."); + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_EQ(1, 2) << "This failure is " + << L"expected too.\x8120"; + }, "This failure is expected too."); +} +#endif // GTEST_OS_WINDOWS + +// Tests EXPECT_TRUE. +TEST(ExpectTest, EXPECT_TRUE) { + EXPECT_TRUE(true) << "Intentional success"; + EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(false) << "Intentional failure #1.", + "Intentional failure #1."); + EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(false) << "Intentional failure #2.", + "Intentional failure #2."); + EXPECT_TRUE(2 > 1); // NOLINT + EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(2 < 1), + "Value of: 2 < 1\n" + " Actual: false\n" + "Expected: true"); + EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(2 > 3), + "2 > 3"); +} + +// Tests EXPECT_TRUE(predicate) for predicates returning AssertionResult. +TEST(ExpectTest, ExpectTrueWithAssertionResult) { + EXPECT_TRUE(ResultIsEven(2)); + EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(ResultIsEven(3)), + "Value of: ResultIsEven(3)\n" + " Actual: false (3 is odd)\n" + "Expected: true"); + EXPECT_TRUE(ResultIsEvenNoExplanation(2)); + EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(ResultIsEvenNoExplanation(3)), + "Value of: ResultIsEvenNoExplanation(3)\n" + " Actual: false (3 is odd)\n" + "Expected: true"); +} + +// Tests EXPECT_FALSE with a streamed message. +TEST(ExpectTest, EXPECT_FALSE) { + EXPECT_FALSE(2 < 1); // NOLINT + EXPECT_FALSE(false) << "Intentional success"; + EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(true) << "Intentional failure #1.", + "Intentional failure #1."); + EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(true) << "Intentional failure #2.", + "Intentional failure #2."); + EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(2 > 1), + "Value of: 2 > 1\n" + " Actual: true\n" + "Expected: false"); + EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(2 < 3), + "2 < 3"); +} + +// Tests EXPECT_FALSE(predicate) for predicates returning AssertionResult. +TEST(ExpectTest, ExpectFalseWithAssertionResult) { + EXPECT_FALSE(ResultIsEven(3)); + EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(ResultIsEven(2)), + "Value of: ResultIsEven(2)\n" + " Actual: true (2 is even)\n" + "Expected: false"); + EXPECT_FALSE(ResultIsEvenNoExplanation(3)); + EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(ResultIsEvenNoExplanation(2)), + "Value of: ResultIsEvenNoExplanation(2)\n" + " Actual: true\n" + "Expected: false"); +} + +#ifdef __BORLANDC__ +// Restores warnings after previous "#pragma option push" supressed them +# pragma option pop +#endif + +// Tests EXPECT_EQ. +TEST(ExpectTest, EXPECT_EQ) { + EXPECT_EQ(5, 2 + 3); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(5, 2*3), + "Value of: 2*3\n" + " Actual: 6\n" + "Expected: 5"); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(5, 2 - 3), + "2 - 3"); +} + +// Tests using EXPECT_EQ on double values. The purpose is to make +// sure that the specialization we did for integer and anonymous enums +// isn't used for double arguments. +TEST(ExpectTest, EXPECT_EQ_Double) { + // A success. + EXPECT_EQ(5.6, 5.6); + + // A failure. + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(5.1, 5.2), + "5.1"); +} + +#if GTEST_CAN_COMPARE_NULL +// Tests EXPECT_EQ(NULL, pointer). +TEST(ExpectTest, EXPECT_EQ_NULL) { + // A success. + const char* p = NULL; + // Some older GCC versions may issue a spurious warning in this or the next + // assertion statement. This warning should not be suppressed with + // static_cast since the test verifies the ability to use bare NULL as the + // expected parameter to the macro. + EXPECT_EQ(NULL, p); + + // A failure. + int n = 0; + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(NULL, &n), + "Value of: &n\n"); +} +#endif // GTEST_CAN_COMPARE_NULL + +// Tests EXPECT_EQ(0, non_pointer). Since the literal 0 can be +// treated as a null pointer by the compiler, we need to make sure +// that EXPECT_EQ(0, non_pointer) isn't interpreted by Google Test as +// EXPECT_EQ(static_cast(NULL), non_pointer). +TEST(ExpectTest, EXPECT_EQ_0) { + int n = 0; + + // A success. + EXPECT_EQ(0, n); + + // A failure. + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(0, 5.6), + "Expected: 0"); +} + +// Tests EXPECT_NE. +TEST(ExpectTest, EXPECT_NE) { + EXPECT_NE(6, 7); + + EXPECT_NONFATAL_FAILURE(EXPECT_NE('a', 'a'), + "Expected: ('a') != ('a'), " + "actual: 'a' (97, 0x61) vs 'a' (97, 0x61)"); + EXPECT_NONFATAL_FAILURE(EXPECT_NE(2, 2), + "2"); + char* const p0 = NULL; + EXPECT_NONFATAL_FAILURE(EXPECT_NE(p0, p0), + "p0"); + // Only way to get the Nokia compiler to compile the cast + // is to have a separate void* variable first. Putting + // the two casts on the same line doesn't work, neither does + // a direct C-style to char*. + void* pv1 = (void*)0x1234; // NOLINT + char* const p1 = reinterpret_cast(pv1); + EXPECT_NONFATAL_FAILURE(EXPECT_NE(p1, p1), + "p1"); +} + +// Tests EXPECT_LE. +TEST(ExpectTest, EXPECT_LE) { + EXPECT_LE(2, 3); + EXPECT_LE(2, 2); + EXPECT_NONFATAL_FAILURE(EXPECT_LE(2, 0), + "Expected: (2) <= (0), actual: 2 vs 0"); + EXPECT_NONFATAL_FAILURE(EXPECT_LE(1.1, 0.9), + "(1.1) <= (0.9)"); +} + +// Tests EXPECT_LT. +TEST(ExpectTest, EXPECT_LT) { + EXPECT_LT(2, 3); + EXPECT_NONFATAL_FAILURE(EXPECT_LT(2, 2), + "Expected: (2) < (2), actual: 2 vs 2"); + EXPECT_NONFATAL_FAILURE(EXPECT_LT(2, 1), + "(2) < (1)"); +} + +// Tests EXPECT_GE. +TEST(ExpectTest, EXPECT_GE) { + EXPECT_GE(2, 1); + EXPECT_GE(2, 2); + EXPECT_NONFATAL_FAILURE(EXPECT_GE(2, 3), + "Expected: (2) >= (3), actual: 2 vs 3"); + EXPECT_NONFATAL_FAILURE(EXPECT_GE(0.9, 1.1), + "(0.9) >= (1.1)"); +} + +// Tests EXPECT_GT. +TEST(ExpectTest, EXPECT_GT) { + EXPECT_GT(2, 1); + EXPECT_NONFATAL_FAILURE(EXPECT_GT(2, 2), + "Expected: (2) > (2), actual: 2 vs 2"); + EXPECT_NONFATAL_FAILURE(EXPECT_GT(2, 3), + "(2) > (3)"); +} + +#if GTEST_HAS_EXCEPTIONS + +// Tests EXPECT_THROW. +TEST(ExpectTest, EXPECT_THROW) { + EXPECT_THROW(ThrowAnInteger(), int); + EXPECT_NONFATAL_FAILURE(EXPECT_THROW(ThrowAnInteger(), bool), + "Expected: ThrowAnInteger() throws an exception of " + "type bool.\n Actual: it throws a different type."); + EXPECT_NONFATAL_FAILURE( + EXPECT_THROW(ThrowNothing(), bool), + "Expected: ThrowNothing() throws an exception of type bool.\n" + " Actual: it throws nothing."); +} + +// Tests EXPECT_NO_THROW. +TEST(ExpectTest, EXPECT_NO_THROW) { + EXPECT_NO_THROW(ThrowNothing()); + EXPECT_NONFATAL_FAILURE(EXPECT_NO_THROW(ThrowAnInteger()), + "Expected: ThrowAnInteger() doesn't throw an " + "exception.\n Actual: it throws."); +} + +// Tests EXPECT_ANY_THROW. +TEST(ExpectTest, EXPECT_ANY_THROW) { + EXPECT_ANY_THROW(ThrowAnInteger()); + EXPECT_NONFATAL_FAILURE( + EXPECT_ANY_THROW(ThrowNothing()), + "Expected: ThrowNothing() throws an exception.\n" + " Actual: it doesn't."); +} + +#endif // GTEST_HAS_EXCEPTIONS + +// Make sure we deal with the precedence of <<. +TEST(ExpectTest, ExpectPrecedence) { + EXPECT_EQ(1 < 2, true); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(true, true && false), + "Value of: true && false"); +} + + +// Tests the StreamableToString() function. + +// Tests using StreamableToString() on a scalar. +TEST(StreamableToStringTest, Scalar) { + EXPECT_STREQ("5", StreamableToString(5).c_str()); +} + +// Tests using StreamableToString() on a non-char pointer. +TEST(StreamableToStringTest, Pointer) { + int n = 0; + int* p = &n; + EXPECT_STRNE("(null)", StreamableToString(p).c_str()); +} + +// Tests using StreamableToString() on a NULL non-char pointer. +TEST(StreamableToStringTest, NullPointer) { + int* p = NULL; + EXPECT_STREQ("(null)", StreamableToString(p).c_str()); +} + +// Tests using StreamableToString() on a C string. +TEST(StreamableToStringTest, CString) { + EXPECT_STREQ("Foo", StreamableToString("Foo").c_str()); +} + +// Tests using StreamableToString() on a NULL C string. +TEST(StreamableToStringTest, NullCString) { + char* p = NULL; + EXPECT_STREQ("(null)", StreamableToString(p).c_str()); +} + +// Tests using streamable values as assertion messages. + +// Tests using std::string as an assertion message. +TEST(StreamableTest, string) { + static const std::string str( + "This failure message is a std::string, and is expected."); + EXPECT_FATAL_FAILURE(FAIL() << str, + str.c_str()); +} + +// Tests that we can output strings containing embedded NULs. +// Limited to Linux because we can only do this with std::string's. +TEST(StreamableTest, stringWithEmbeddedNUL) { + static const char char_array_with_nul[] = + "Here's a NUL\0 and some more string"; + static const std::string string_with_nul(char_array_with_nul, + sizeof(char_array_with_nul) + - 1); // drops the trailing NUL + EXPECT_FATAL_FAILURE(FAIL() << string_with_nul, + "Here's a NUL\\0 and some more string"); +} + +// Tests that we can output a NUL char. +TEST(StreamableTest, NULChar) { + EXPECT_FATAL_FAILURE({ // NOLINT + FAIL() << "A NUL" << '\0' << " and some more string"; + }, "A NUL\\0 and some more string"); +} + +// Tests using int as an assertion message. +TEST(StreamableTest, int) { + EXPECT_FATAL_FAILURE(FAIL() << 900913, + "900913"); +} + +// Tests using NULL char pointer as an assertion message. +// +// In MSVC, streaming a NULL char * causes access violation. Google Test +// implemented a workaround (substituting "(null)" for NULL). This +// tests whether the workaround works. +TEST(StreamableTest, NullCharPtr) { + EXPECT_FATAL_FAILURE(FAIL() << static_cast(NULL), + "(null)"); +} + +// Tests that basic IO manipulators (endl, ends, and flush) can be +// streamed to testing::Message. +TEST(StreamableTest, BasicIoManip) { + EXPECT_FATAL_FAILURE({ // NOLINT + FAIL() << "Line 1." << std::endl + << "A NUL char " << std::ends << std::flush << " in line 2."; + }, "Line 1.\nA NUL char \\0 in line 2."); +} + +// Tests the macros that haven't been covered so far. + +void AddFailureHelper(bool* aborted) { + *aborted = true; + ADD_FAILURE() << "Intentional failure."; + *aborted = false; +} + +// Tests ADD_FAILURE. +TEST(MacroTest, ADD_FAILURE) { + bool aborted = true; + EXPECT_NONFATAL_FAILURE(AddFailureHelper(&aborted), + "Intentional failure."); + EXPECT_FALSE(aborted); +} + +// Tests ADD_FAILURE_AT. +TEST(MacroTest, ADD_FAILURE_AT) { + // Verifies that ADD_FAILURE_AT does generate a nonfatal failure and + // the failure message contains the user-streamed part. + EXPECT_NONFATAL_FAILURE(ADD_FAILURE_AT("foo.cc", 42) << "Wrong!", "Wrong!"); + + // Verifies that the user-streamed part is optional. + EXPECT_NONFATAL_FAILURE(ADD_FAILURE_AT("foo.cc", 42), "Failed"); + + // Unfortunately, we cannot verify that the failure message contains + // the right file path and line number the same way, as + // EXPECT_NONFATAL_FAILURE() doesn't get to see the file path and + // line number. Instead, we do that in gtest_output_test_.cc. +} + +// Tests FAIL. +TEST(MacroTest, FAIL) { + EXPECT_FATAL_FAILURE(FAIL(), + "Failed"); + EXPECT_FATAL_FAILURE(FAIL() << "Intentional failure.", + "Intentional failure."); +} + +// Tests SUCCEED +TEST(MacroTest, SUCCEED) { + SUCCEED(); + SUCCEED() << "Explicit success."; +} + +// Tests for EXPECT_EQ() and ASSERT_EQ(). +// +// These tests fail *intentionally*, s.t. the failure messages can be +// generated and tested. +// +// We have different tests for different argument types. + +// Tests using bool values in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, Bool) { + EXPECT_EQ(true, true); + EXPECT_FATAL_FAILURE({ + bool false_value = false; + ASSERT_EQ(false_value, true); + }, "Value of: true"); +} + +// Tests using int values in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, Int) { + ASSERT_EQ(32, 32); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(32, 33), + "33"); +} + +// Tests using time_t values in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, Time_T) { + EXPECT_EQ(static_cast(0), + static_cast(0)); + EXPECT_FATAL_FAILURE(ASSERT_EQ(static_cast(0), + static_cast(1234)), + "1234"); +} + +// Tests using char values in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, Char) { + ASSERT_EQ('z', 'z'); + const char ch = 'b'; + EXPECT_NONFATAL_FAILURE(EXPECT_EQ('\0', ch), + "ch"); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ('a', ch), + "ch"); +} + +// Tests using wchar_t values in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, WideChar) { + EXPECT_EQ(L'b', L'b'); + + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(L'\0', L'x'), + "Value of: L'x'\n" + " Actual: L'x' (120, 0x78)\n" + "Expected: L'\0'\n" + "Which is: L'\0' (0, 0x0)"); + + static wchar_t wchar; + wchar = L'b'; + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(L'a', wchar), + "wchar"); + wchar = 0x8119; + EXPECT_FATAL_FAILURE(ASSERT_EQ(static_cast(0x8120), wchar), + "Value of: wchar"); +} + +// Tests using ::std::string values in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, StdString) { + // Compares a const char* to an std::string that has identical + // content. + ASSERT_EQ("Test", ::std::string("Test")); + + // Compares two identical std::strings. + static const ::std::string str1("A * in the middle"); + static const ::std::string str2(str1); + EXPECT_EQ(str1, str2); + + // Compares a const char* to an std::string that has different + // content + EXPECT_NONFATAL_FAILURE(EXPECT_EQ("Test", ::std::string("test")), + "\"test\""); + + // Compares an std::string to a char* that has different content. + char* const p1 = const_cast("foo"); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(::std::string("bar"), p1), + "p1"); + + // Compares two std::strings that have different contents, one of + // which having a NUL character in the middle. This should fail. + static ::std::string str3(str1); + str3.at(2) = '\0'; + EXPECT_FATAL_FAILURE(ASSERT_EQ(str1, str3), + "Value of: str3\n" + " Actual: \"A \\0 in the middle\""); +} + +#if GTEST_HAS_STD_WSTRING + +// Tests using ::std::wstring values in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, StdWideString) { + // Compares two identical std::wstrings. + const ::std::wstring wstr1(L"A * in the middle"); + const ::std::wstring wstr2(wstr1); + ASSERT_EQ(wstr1, wstr2); + + // Compares an std::wstring to a const wchar_t* that has identical + // content. + const wchar_t kTestX8119[] = { 'T', 'e', 's', 't', 0x8119, '\0' }; + EXPECT_EQ(::std::wstring(kTestX8119), kTestX8119); + + // Compares an std::wstring to a const wchar_t* that has different + // content. + const wchar_t kTestX8120[] = { 'T', 'e', 's', 't', 0x8120, '\0' }; + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_EQ(::std::wstring(kTestX8119), kTestX8120); + }, "kTestX8120"); + + // Compares two std::wstrings that have different contents, one of + // which having a NUL character in the middle. + ::std::wstring wstr3(wstr1); + wstr3.at(2) = L'\0'; + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(wstr1, wstr3), + "wstr3"); + + // Compares a wchar_t* to an std::wstring that has different + // content. + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_EQ(const_cast(L"foo"), ::std::wstring(L"bar")); + }, ""); +} + +#endif // GTEST_HAS_STD_WSTRING + +#if GTEST_HAS_GLOBAL_STRING +// Tests using ::string values in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, GlobalString) { + // Compares a const char* to a ::string that has identical content. + EXPECT_EQ("Test", ::string("Test")); + + // Compares two identical ::strings. + const ::string str1("A * in the middle"); + const ::string str2(str1); + ASSERT_EQ(str1, str2); + + // Compares a ::string to a const char* that has different content. + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(::string("Test"), "test"), + "test"); + + // Compares two ::strings that have different contents, one of which + // having a NUL character in the middle. + ::string str3(str1); + str3.at(2) = '\0'; + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(str1, str3), + "str3"); + + // Compares a ::string to a char* that has different content. + EXPECT_FATAL_FAILURE({ // NOLINT + ASSERT_EQ(::string("bar"), const_cast("foo")); + }, ""); +} + +#endif // GTEST_HAS_GLOBAL_STRING + +#if GTEST_HAS_GLOBAL_WSTRING + +// Tests using ::wstring values in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, GlobalWideString) { + // Compares two identical ::wstrings. + static const ::wstring wstr1(L"A * in the middle"); + static const ::wstring wstr2(wstr1); + EXPECT_EQ(wstr1, wstr2); + + // Compares a const wchar_t* to a ::wstring that has identical content. + const wchar_t kTestX8119[] = { 'T', 'e', 's', 't', 0x8119, '\0' }; + ASSERT_EQ(kTestX8119, ::wstring(kTestX8119)); + + // Compares a const wchar_t* to a ::wstring that has different + // content. + const wchar_t kTestX8120[] = { 'T', 'e', 's', 't', 0x8120, '\0' }; + EXPECT_NONFATAL_FAILURE({ // NOLINT + EXPECT_EQ(kTestX8120, ::wstring(kTestX8119)); + }, "Test\\x8119"); + + // Compares a wchar_t* to a ::wstring that has different content. + wchar_t* const p1 = const_cast(L"foo"); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p1, ::wstring(L"bar")), + "bar"); + + // Compares two ::wstrings that have different contents, one of which + // having a NUL character in the middle. + static ::wstring wstr3; + wstr3 = wstr1; + wstr3.at(2) = L'\0'; + EXPECT_FATAL_FAILURE(ASSERT_EQ(wstr1, wstr3), + "wstr3"); +} + +#endif // GTEST_HAS_GLOBAL_WSTRING + +// Tests using char pointers in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, CharPointer) { + char* const p0 = NULL; + // Only way to get the Nokia compiler to compile the cast + // is to have a separate void* variable first. Putting + // the two casts on the same line doesn't work, neither does + // a direct C-style to char*. + void* pv1 = (void*)0x1234; // NOLINT + void* pv2 = (void*)0xABC0; // NOLINT + char* const p1 = reinterpret_cast(pv1); + char* const p2 = reinterpret_cast(pv2); + ASSERT_EQ(p1, p1); + + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p0, p2), + "Value of: p2"); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p1, p2), + "p2"); + EXPECT_FATAL_FAILURE(ASSERT_EQ(reinterpret_cast(0x1234), + reinterpret_cast(0xABC0)), + "ABC0"); +} + +// Tests using wchar_t pointers in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, WideCharPointer) { + wchar_t* const p0 = NULL; + // Only way to get the Nokia compiler to compile the cast + // is to have a separate void* variable first. Putting + // the two casts on the same line doesn't work, neither does + // a direct C-style to char*. + void* pv1 = (void*)0x1234; // NOLINT + void* pv2 = (void*)0xABC0; // NOLINT + wchar_t* const p1 = reinterpret_cast(pv1); + wchar_t* const p2 = reinterpret_cast(pv2); + EXPECT_EQ(p0, p0); + + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p0, p2), + "Value of: p2"); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p1, p2), + "p2"); + void* pv3 = (void*)0x1234; // NOLINT + void* pv4 = (void*)0xABC0; // NOLINT + const wchar_t* p3 = reinterpret_cast(pv3); + const wchar_t* p4 = reinterpret_cast(pv4); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p3, p4), + "p4"); +} + +// Tests using other types of pointers in {EXPECT|ASSERT}_EQ. +TEST(EqAssertionTest, OtherPointer) { + ASSERT_EQ(static_cast(NULL), + static_cast(NULL)); + EXPECT_FATAL_FAILURE(ASSERT_EQ(static_cast(NULL), + reinterpret_cast(0x1234)), + "0x1234"); +} + +// A class that supports binary comparison operators but not streaming. +class UnprintableChar { + public: + explicit UnprintableChar(char ch) : char_(ch) {} + + bool operator==(const UnprintableChar& rhs) const { + return char_ == rhs.char_; + } + bool operator!=(const UnprintableChar& rhs) const { + return char_ != rhs.char_; + } + bool operator<(const UnprintableChar& rhs) const { + return char_ < rhs.char_; + } + bool operator<=(const UnprintableChar& rhs) const { + return char_ <= rhs.char_; + } + bool operator>(const UnprintableChar& rhs) const { + return char_ > rhs.char_; + } + bool operator>=(const UnprintableChar& rhs) const { + return char_ >= rhs.char_; + } + + private: + char char_; +}; + +// Tests that ASSERT_EQ() and friends don't require the arguments to +// be printable. +TEST(ComparisonAssertionTest, AcceptsUnprintableArgs) { + const UnprintableChar x('x'), y('y'); + ASSERT_EQ(x, x); + EXPECT_NE(x, y); + ASSERT_LT(x, y); + EXPECT_LE(x, y); + ASSERT_GT(y, x); + EXPECT_GE(x, x); + + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(x, y), "1-byte object <78>"); + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(x, y), "1-byte object <79>"); + EXPECT_NONFATAL_FAILURE(EXPECT_LT(y, y), "1-byte object <79>"); + EXPECT_NONFATAL_FAILURE(EXPECT_GT(x, y), "1-byte object <78>"); + EXPECT_NONFATAL_FAILURE(EXPECT_GT(x, y), "1-byte object <79>"); + + // Code tested by EXPECT_FATAL_FAILURE cannot reference local + // variables, so we have to write UnprintableChar('x') instead of x. +#ifndef __BORLANDC__ + // ICE's in C++Builder. + EXPECT_FATAL_FAILURE(ASSERT_NE(UnprintableChar('x'), UnprintableChar('x')), + "1-byte object <78>"); + EXPECT_FATAL_FAILURE(ASSERT_LE(UnprintableChar('y'), UnprintableChar('x')), + "1-byte object <78>"); +#endif + EXPECT_FATAL_FAILURE(ASSERT_LE(UnprintableChar('y'), UnprintableChar('x')), + "1-byte object <79>"); + EXPECT_FATAL_FAILURE(ASSERT_GE(UnprintableChar('x'), UnprintableChar('y')), + "1-byte object <78>"); + EXPECT_FATAL_FAILURE(ASSERT_GE(UnprintableChar('x'), UnprintableChar('y')), + "1-byte object <79>"); +} + +// Tests the FRIEND_TEST macro. + +// This class has a private member we want to test. We will test it +// both in a TEST and in a TEST_F. +class Foo { + public: + Foo() {} + + private: + int Bar() const { return 1; } + + // Declares the friend tests that can access the private member + // Bar(). + FRIEND_TEST(FRIEND_TEST_Test, TEST); + FRIEND_TEST(FRIEND_TEST_Test2, TEST_F); +}; + +// Tests that the FRIEND_TEST declaration allows a TEST to access a +// class's private members. This should compile. +TEST(FRIEND_TEST_Test, TEST) { + ASSERT_EQ(1, Foo().Bar()); +} + +// The fixture needed to test using FRIEND_TEST with TEST_F. +class FRIEND_TEST_Test2 : public Test { + protected: + Foo foo; +}; + +// Tests that the FRIEND_TEST declaration allows a TEST_F to access a +// class's private members. This should compile. +TEST_F(FRIEND_TEST_Test2, TEST_F) { + ASSERT_EQ(1, foo.Bar()); +} + +// Tests the life cycle of Test objects. + +// The test fixture for testing the life cycle of Test objects. +// +// This class counts the number of live test objects that uses this +// fixture. +class TestLifeCycleTest : public Test { + protected: + // Constructor. Increments the number of test objects that uses + // this fixture. + TestLifeCycleTest() { count_++; } + + // Destructor. Decrements the number of test objects that uses this + // fixture. + ~TestLifeCycleTest() { count_--; } + + // Returns the number of live test objects that uses this fixture. + int count() const { return count_; } + + private: + static int count_; +}; + +int TestLifeCycleTest::count_ = 0; + +// Tests the life cycle of test objects. +TEST_F(TestLifeCycleTest, Test1) { + // There should be only one test object in this test case that's + // currently alive. + ASSERT_EQ(1, count()); +} + +// Tests the life cycle of test objects. +TEST_F(TestLifeCycleTest, Test2) { + // After Test1 is done and Test2 is started, there should still be + // only one live test object, as the object for Test1 should've been + // deleted. + ASSERT_EQ(1, count()); +} + +} // namespace + +// Tests that the copy constructor works when it is NOT optimized away by +// the compiler. +TEST(AssertionResultTest, CopyConstructorWorksWhenNotOptimied) { + // Checks that the copy constructor doesn't try to dereference NULL pointers + // in the source object. + AssertionResult r1 = AssertionSuccess(); + AssertionResult r2 = r1; + // The following line is added to prevent the compiler from optimizing + // away the constructor call. + r1 << "abc"; + + AssertionResult r3 = r1; + EXPECT_EQ(static_cast(r3), static_cast(r1)); + EXPECT_STREQ("abc", r1.message()); +} + +// Tests that AssertionSuccess and AssertionFailure construct +// AssertionResult objects as expected. +TEST(AssertionResultTest, ConstructionWorks) { + AssertionResult r1 = AssertionSuccess(); + EXPECT_TRUE(r1); + EXPECT_STREQ("", r1.message()); + + AssertionResult r2 = AssertionSuccess() << "abc"; + EXPECT_TRUE(r2); + EXPECT_STREQ("abc", r2.message()); + + AssertionResult r3 = AssertionFailure(); + EXPECT_FALSE(r3); + EXPECT_STREQ("", r3.message()); + + AssertionResult r4 = AssertionFailure() << "def"; + EXPECT_FALSE(r4); + EXPECT_STREQ("def", r4.message()); + + AssertionResult r5 = AssertionFailure(Message() << "ghi"); + EXPECT_FALSE(r5); + EXPECT_STREQ("ghi", r5.message()); +} + +// Tests that the negation flips the predicate result but keeps the message. +TEST(AssertionResultTest, NegationWorks) { + AssertionResult r1 = AssertionSuccess() << "abc"; + EXPECT_FALSE(!r1); + EXPECT_STREQ("abc", (!r1).message()); + + AssertionResult r2 = AssertionFailure() << "def"; + EXPECT_TRUE(!r2); + EXPECT_STREQ("def", (!r2).message()); +} + +TEST(AssertionResultTest, StreamingWorks) { + AssertionResult r = AssertionSuccess(); + r << "abc" << 'd' << 0 << true; + EXPECT_STREQ("abcd0true", r.message()); +} + +TEST(AssertionResultTest, CanStreamOstreamManipulators) { + AssertionResult r = AssertionSuccess(); + r << "Data" << std::endl << std::flush << std::ends << "Will be visible"; + EXPECT_STREQ("Data\n\\0Will be visible", r.message()); +} + +// Tests streaming a user type whose definition and operator << are +// both in the global namespace. +class Base { + public: + explicit Base(int an_x) : x_(an_x) {} + int x() const { return x_; } + private: + int x_; +}; +std::ostream& operator<<(std::ostream& os, + const Base& val) { + return os << val.x(); +} +std::ostream& operator<<(std::ostream& os, + const Base* pointer) { + return os << "(" << pointer->x() << ")"; +} + +TEST(MessageTest, CanStreamUserTypeInGlobalNameSpace) { + Message msg; + Base a(1); + + msg << a << &a; // Uses ::operator<<. + EXPECT_STREQ("1(1)", msg.GetString().c_str()); +} + +// Tests streaming a user type whose definition and operator<< are +// both in an unnamed namespace. +namespace { +class MyTypeInUnnamedNameSpace : public Base { + public: + explicit MyTypeInUnnamedNameSpace(int an_x): Base(an_x) {} +}; +std::ostream& operator<<(std::ostream& os, + const MyTypeInUnnamedNameSpace& val) { + return os << val.x(); +} +std::ostream& operator<<(std::ostream& os, + const MyTypeInUnnamedNameSpace* pointer) { + return os << "(" << pointer->x() << ")"; +} +} // namespace + +TEST(MessageTest, CanStreamUserTypeInUnnamedNameSpace) { + Message msg; + MyTypeInUnnamedNameSpace a(1); + + msg << a << &a; // Uses ::operator<<. + EXPECT_STREQ("1(1)", msg.GetString().c_str()); +} + +// Tests streaming a user type whose definition and operator<< are +// both in a user namespace. +namespace namespace1 { +class MyTypeInNameSpace1 : public Base { + public: + explicit MyTypeInNameSpace1(int an_x): Base(an_x) {} +}; +std::ostream& operator<<(std::ostream& os, + const MyTypeInNameSpace1& val) { + return os << val.x(); +} +std::ostream& operator<<(std::ostream& os, + const MyTypeInNameSpace1* pointer) { + return os << "(" << pointer->x() << ")"; +} +} // namespace namespace1 + +TEST(MessageTest, CanStreamUserTypeInUserNameSpace) { + Message msg; + namespace1::MyTypeInNameSpace1 a(1); + + msg << a << &a; // Uses namespace1::operator<<. + EXPECT_STREQ("1(1)", msg.GetString().c_str()); +} + +// Tests streaming a user type whose definition is in a user namespace +// but whose operator<< is in the global namespace. +namespace namespace2 { +class MyTypeInNameSpace2 : public ::Base { + public: + explicit MyTypeInNameSpace2(int an_x): Base(an_x) {} +}; +} // namespace namespace2 +std::ostream& operator<<(std::ostream& os, + const namespace2::MyTypeInNameSpace2& val) { + return os << val.x(); +} +std::ostream& operator<<(std::ostream& os, + const namespace2::MyTypeInNameSpace2* pointer) { + return os << "(" << pointer->x() << ")"; +} + +TEST(MessageTest, CanStreamUserTypeInUserNameSpaceWithStreamOperatorInGlobal) { + Message msg; + namespace2::MyTypeInNameSpace2 a(1); + + msg << a << &a; // Uses ::operator<<. + EXPECT_STREQ("1(1)", msg.GetString().c_str()); +} + +// Tests streaming NULL pointers to testing::Message. +TEST(MessageTest, NullPointers) { + Message msg; + char* const p1 = NULL; + unsigned char* const p2 = NULL; + int* p3 = NULL; + double* p4 = NULL; + bool* p5 = NULL; + Message* p6 = NULL; + + msg << p1 << p2 << p3 << p4 << p5 << p6; + ASSERT_STREQ("(null)(null)(null)(null)(null)(null)", + msg.GetString().c_str()); +} + +// Tests streaming wide strings to testing::Message. +TEST(MessageTest, WideStrings) { + // Streams a NULL of type const wchar_t*. + const wchar_t* const_wstr = NULL; + EXPECT_STREQ("(null)", + (Message() << const_wstr).GetString().c_str()); + + // Streams a NULL of type wchar_t*. + wchar_t* wstr = NULL; + EXPECT_STREQ("(null)", + (Message() << wstr).GetString().c_str()); + + // Streams a non-NULL of type const wchar_t*. + const_wstr = L"abc\x8119"; + EXPECT_STREQ("abc\xe8\x84\x99", + (Message() << const_wstr).GetString().c_str()); + + // Streams a non-NULL of type wchar_t*. + wstr = const_cast(const_wstr); + EXPECT_STREQ("abc\xe8\x84\x99", + (Message() << wstr).GetString().c_str()); +} + + +// This line tests that we can define tests in the testing namespace. +namespace testing { + +// Tests the TestInfo class. + +class TestInfoTest : public Test { + protected: + static const TestInfo* GetTestInfo(const char* test_name) { + const TestCase* const test_case = GetUnitTestImpl()-> + GetTestCase("TestInfoTest", "", NULL, NULL); + + for (int i = 0; i < test_case->total_test_count(); ++i) { + const TestInfo* const test_info = test_case->GetTestInfo(i); + if (strcmp(test_name, test_info->name()) == 0) + return test_info; + } + return NULL; + } + + static const TestResult* GetTestResult( + const TestInfo* test_info) { + return test_info->result(); + } +}; + +// Tests TestInfo::test_case_name() and TestInfo::name(). +TEST_F(TestInfoTest, Names) { + const TestInfo* const test_info = GetTestInfo("Names"); + + ASSERT_STREQ("TestInfoTest", test_info->test_case_name()); + ASSERT_STREQ("Names", test_info->name()); +} + +// Tests TestInfo::result(). +TEST_F(TestInfoTest, result) { + const TestInfo* const test_info = GetTestInfo("result"); + + // Initially, there is no TestPartResult for this test. + ASSERT_EQ(0, GetTestResult(test_info)->total_part_count()); + + // After the previous assertion, there is still none. + ASSERT_EQ(0, GetTestResult(test_info)->total_part_count()); +} + +// Tests setting up and tearing down a test case. + +class SetUpTestCaseTest : public Test { + protected: + // This will be called once before the first test in this test case + // is run. + static void SetUpTestCase() { + printf("Setting up the test case . . .\n"); + + // Initializes some shared resource. In this simple example, we + // just create a C string. More complex stuff can be done if + // desired. + shared_resource_ = "123"; + + // Increments the number of test cases that have been set up. + counter_++; + + // SetUpTestCase() should be called only once. + EXPECT_EQ(1, counter_); + } + + // This will be called once after the last test in this test case is + // run. + static void TearDownTestCase() { + printf("Tearing down the test case . . .\n"); + + // Decrements the number of test cases that have been set up. + counter_--; + + // TearDownTestCase() should be called only once. + EXPECT_EQ(0, counter_); + + // Cleans up the shared resource. + shared_resource_ = NULL; + } + + // This will be called before each test in this test case. + virtual void SetUp() { + // SetUpTestCase() should be called only once, so counter_ should + // always be 1. + EXPECT_EQ(1, counter_); + } + + // Number of test cases that have been set up. + static int counter_; + + // Some resource to be shared by all tests in this test case. + static const char* shared_resource_; +}; + +int SetUpTestCaseTest::counter_ = 0; +const char* SetUpTestCaseTest::shared_resource_ = NULL; + +// A test that uses the shared resource. +TEST_F(SetUpTestCaseTest, Test1) { + EXPECT_STRNE(NULL, shared_resource_); +} + +// Another test that uses the shared resource. +TEST_F(SetUpTestCaseTest, Test2) { + EXPECT_STREQ("123", shared_resource_); +} + +// The InitGoogleTestTest test case tests testing::InitGoogleTest(). + +// The Flags struct stores a copy of all Google Test flags. +struct Flags { + // Constructs a Flags struct where each flag has its default value. + Flags() : also_run_disabled_tests(false), + break_on_failure(false), + catch_exceptions(false), + death_test_use_fork(false), + filter(""), + list_tests(false), + output(""), + print_time(true), + random_seed(0), + repeat(1), + shuffle(false), + stack_trace_depth(kMaxStackTraceDepth), + stream_result_to(""), + throw_on_failure(false) {} + + // Factory methods. + + // Creates a Flags struct where the gtest_also_run_disabled_tests flag has + // the given value. + static Flags AlsoRunDisabledTests(bool also_run_disabled_tests) { + Flags flags; + flags.also_run_disabled_tests = also_run_disabled_tests; + return flags; + } + + // Creates a Flags struct where the gtest_break_on_failure flag has + // the given value. + static Flags BreakOnFailure(bool break_on_failure) { + Flags flags; + flags.break_on_failure = break_on_failure; + return flags; + } + + // Creates a Flags struct where the gtest_catch_exceptions flag has + // the given value. + static Flags CatchExceptions(bool catch_exceptions) { + Flags flags; + flags.catch_exceptions = catch_exceptions; + return flags; + } + + // Creates a Flags struct where the gtest_death_test_use_fork flag has + // the given value. + static Flags DeathTestUseFork(bool death_test_use_fork) { + Flags flags; + flags.death_test_use_fork = death_test_use_fork; + return flags; + } + + // Creates a Flags struct where the gtest_filter flag has the given + // value. + static Flags Filter(const char* filter) { + Flags flags; + flags.filter = filter; + return flags; + } + + // Creates a Flags struct where the gtest_list_tests flag has the + // given value. + static Flags ListTests(bool list_tests) { + Flags flags; + flags.list_tests = list_tests; + return flags; + } + + // Creates a Flags struct where the gtest_output flag has the given + // value. + static Flags Output(const char* output) { + Flags flags; + flags.output = output; + return flags; + } + + // Creates a Flags struct where the gtest_print_time flag has the given + // value. + static Flags PrintTime(bool print_time) { + Flags flags; + flags.print_time = print_time; + return flags; + } + + // Creates a Flags struct where the gtest_random_seed flag has + // the given value. + static Flags RandomSeed(Int32 random_seed) { + Flags flags; + flags.random_seed = random_seed; + return flags; + } + + // Creates a Flags struct where the gtest_repeat flag has the given + // value. + static Flags Repeat(Int32 repeat) { + Flags flags; + flags.repeat = repeat; + return flags; + } + + // Creates a Flags struct where the gtest_shuffle flag has + // the given value. + static Flags Shuffle(bool shuffle) { + Flags flags; + flags.shuffle = shuffle; + return flags; + } + + // Creates a Flags struct where the GTEST_FLAG(stack_trace_depth) flag has + // the given value. + static Flags StackTraceDepth(Int32 stack_trace_depth) { + Flags flags; + flags.stack_trace_depth = stack_trace_depth; + return flags; + } + + // Creates a Flags struct where the GTEST_FLAG(stream_result_to) flag has + // the given value. + static Flags StreamResultTo(const char* stream_result_to) { + Flags flags; + flags.stream_result_to = stream_result_to; + return flags; + } + + // Creates a Flags struct where the gtest_throw_on_failure flag has + // the given value. + static Flags ThrowOnFailure(bool throw_on_failure) { + Flags flags; + flags.throw_on_failure = throw_on_failure; + return flags; + } + + // These fields store the flag values. + bool also_run_disabled_tests; + bool break_on_failure; + bool catch_exceptions; + bool death_test_use_fork; + const char* filter; + bool list_tests; + const char* output; + bool print_time; + Int32 random_seed; + Int32 repeat; + bool shuffle; + Int32 stack_trace_depth; + const char* stream_result_to; + bool throw_on_failure; +}; + +// Fixture for testing InitGoogleTest(). +class InitGoogleTestTest : public Test { + protected: + // Clears the flags before each test. + virtual void SetUp() { + GTEST_FLAG(also_run_disabled_tests) = false; + GTEST_FLAG(break_on_failure) = false; + GTEST_FLAG(catch_exceptions) = false; + GTEST_FLAG(death_test_use_fork) = false; + GTEST_FLAG(filter) = ""; + GTEST_FLAG(list_tests) = false; + GTEST_FLAG(output) = ""; + GTEST_FLAG(print_time) = true; + GTEST_FLAG(random_seed) = 0; + GTEST_FLAG(repeat) = 1; + GTEST_FLAG(shuffle) = false; + GTEST_FLAG(stack_trace_depth) = kMaxStackTraceDepth; + GTEST_FLAG(stream_result_to) = ""; + GTEST_FLAG(throw_on_failure) = false; + } + + // Asserts that two narrow or wide string arrays are equal. + template + static void AssertStringArrayEq(size_t size1, CharType** array1, + size_t size2, CharType** array2) { + ASSERT_EQ(size1, size2) << " Array sizes different."; + + for (size_t i = 0; i != size1; i++) { + ASSERT_STREQ(array1[i], array2[i]) << " where i == " << i; + } + } + + // Verifies that the flag values match the expected values. + static void CheckFlags(const Flags& expected) { + EXPECT_EQ(expected.also_run_disabled_tests, + GTEST_FLAG(also_run_disabled_tests)); + EXPECT_EQ(expected.break_on_failure, GTEST_FLAG(break_on_failure)); + EXPECT_EQ(expected.catch_exceptions, GTEST_FLAG(catch_exceptions)); + EXPECT_EQ(expected.death_test_use_fork, GTEST_FLAG(death_test_use_fork)); + EXPECT_STREQ(expected.filter, GTEST_FLAG(filter).c_str()); + EXPECT_EQ(expected.list_tests, GTEST_FLAG(list_tests)); + EXPECT_STREQ(expected.output, GTEST_FLAG(output).c_str()); + EXPECT_EQ(expected.print_time, GTEST_FLAG(print_time)); + EXPECT_EQ(expected.random_seed, GTEST_FLAG(random_seed)); + EXPECT_EQ(expected.repeat, GTEST_FLAG(repeat)); + EXPECT_EQ(expected.shuffle, GTEST_FLAG(shuffle)); + EXPECT_EQ(expected.stack_trace_depth, GTEST_FLAG(stack_trace_depth)); + EXPECT_STREQ(expected.stream_result_to, + GTEST_FLAG(stream_result_to).c_str()); + EXPECT_EQ(expected.throw_on_failure, GTEST_FLAG(throw_on_failure)); + } + + // Parses a command line (specified by argc1 and argv1), then + // verifies that the flag values are expected and that the + // recognized flags are removed from the command line. + template + static void TestParsingFlags(int argc1, const CharType** argv1, + int argc2, const CharType** argv2, + const Flags& expected, bool should_print_help) { + const bool saved_help_flag = ::testing::internal::g_help_flag; + ::testing::internal::g_help_flag = false; + +#if GTEST_HAS_STREAM_REDIRECTION + CaptureStdout(); +#endif + + // Parses the command line. + internal::ParseGoogleTestFlagsOnly(&argc1, const_cast(argv1)); + +#if GTEST_HAS_STREAM_REDIRECTION + const std::string captured_stdout = GetCapturedStdout(); +#endif + + // Verifies the flag values. + CheckFlags(expected); + + // Verifies that the recognized flags are removed from the command + // line. + AssertStringArrayEq(argc1 + 1, argv1, argc2 + 1, argv2); + + // ParseGoogleTestFlagsOnly should neither set g_help_flag nor print the + // help message for the flags it recognizes. + EXPECT_EQ(should_print_help, ::testing::internal::g_help_flag); + +#if GTEST_HAS_STREAM_REDIRECTION + const char* const expected_help_fragment = + "This program contains tests written using"; + if (should_print_help) { + EXPECT_PRED_FORMAT2(IsSubstring, expected_help_fragment, captured_stdout); + } else { + EXPECT_PRED_FORMAT2(IsNotSubstring, + expected_help_fragment, captured_stdout); + } +#endif // GTEST_HAS_STREAM_REDIRECTION + + ::testing::internal::g_help_flag = saved_help_flag; + } + + // This macro wraps TestParsingFlags s.t. the user doesn't need + // to specify the array sizes. + +#define GTEST_TEST_PARSING_FLAGS_(argv1, argv2, expected, should_print_help) \ + TestParsingFlags(sizeof(argv1)/sizeof(*argv1) - 1, argv1, \ + sizeof(argv2)/sizeof(*argv2) - 1, argv2, \ + expected, should_print_help) +}; + +// Tests parsing an empty command line. +TEST_F(InitGoogleTestTest, Empty) { + const char* argv[] = { + NULL + }; + + const char* argv2[] = { + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags(), false); +} + +// Tests parsing a command line that has no flag. +TEST_F(InitGoogleTestTest, NoFlag) { + const char* argv[] = { + "foo.exe", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags(), false); +} + +// Tests parsing a bad --gtest_filter flag. +TEST_F(InitGoogleTestTest, FilterBad) { + const char* argv[] = { + "foo.exe", + "--gtest_filter", + NULL + }; + + const char* argv2[] = { + "foo.exe", + "--gtest_filter", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Filter(""), true); +} + +// Tests parsing an empty --gtest_filter flag. +TEST_F(InitGoogleTestTest, FilterEmpty) { + const char* argv[] = { + "foo.exe", + "--gtest_filter=", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Filter(""), false); +} + +// Tests parsing a non-empty --gtest_filter flag. +TEST_F(InitGoogleTestTest, FilterNonEmpty) { + const char* argv[] = { + "foo.exe", + "--gtest_filter=abc", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Filter("abc"), false); +} + +// Tests parsing --gtest_break_on_failure. +TEST_F(InitGoogleTestTest, BreakOnFailureWithoutValue) { + const char* argv[] = { + "foo.exe", + "--gtest_break_on_failure", + NULL +}; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::BreakOnFailure(true), false); +} + +// Tests parsing --gtest_break_on_failure=0. +TEST_F(InitGoogleTestTest, BreakOnFailureFalse_0) { + const char* argv[] = { + "foo.exe", + "--gtest_break_on_failure=0", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::BreakOnFailure(false), false); +} + +// Tests parsing --gtest_break_on_failure=f. +TEST_F(InitGoogleTestTest, BreakOnFailureFalse_f) { + const char* argv[] = { + "foo.exe", + "--gtest_break_on_failure=f", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::BreakOnFailure(false), false); +} + +// Tests parsing --gtest_break_on_failure=F. +TEST_F(InitGoogleTestTest, BreakOnFailureFalse_F) { + const char* argv[] = { + "foo.exe", + "--gtest_break_on_failure=F", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::BreakOnFailure(false), false); +} + +// Tests parsing a --gtest_break_on_failure flag that has a "true" +// definition. +TEST_F(InitGoogleTestTest, BreakOnFailureTrue) { + const char* argv[] = { + "foo.exe", + "--gtest_break_on_failure=1", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::BreakOnFailure(true), false); +} + +// Tests parsing --gtest_catch_exceptions. +TEST_F(InitGoogleTestTest, CatchExceptions) { + const char* argv[] = { + "foo.exe", + "--gtest_catch_exceptions", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::CatchExceptions(true), false); +} + +// Tests parsing --gtest_death_test_use_fork. +TEST_F(InitGoogleTestTest, DeathTestUseFork) { + const char* argv[] = { + "foo.exe", + "--gtest_death_test_use_fork", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::DeathTestUseFork(true), false); +} + +// Tests having the same flag twice with different values. The +// expected behavior is that the one coming last takes precedence. +TEST_F(InitGoogleTestTest, DuplicatedFlags) { + const char* argv[] = { + "foo.exe", + "--gtest_filter=a", + "--gtest_filter=b", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Filter("b"), false); +} + +// Tests having an unrecognized flag on the command line. +TEST_F(InitGoogleTestTest, UnrecognizedFlag) { + const char* argv[] = { + "foo.exe", + "--gtest_break_on_failure", + "bar", // Unrecognized by Google Test. + "--gtest_filter=b", + NULL + }; + + const char* argv2[] = { + "foo.exe", + "bar", + NULL + }; + + Flags flags; + flags.break_on_failure = true; + flags.filter = "b"; + GTEST_TEST_PARSING_FLAGS_(argv, argv2, flags, false); +} + +// Tests having a --gtest_list_tests flag +TEST_F(InitGoogleTestTest, ListTestsFlag) { + const char* argv[] = { + "foo.exe", + "--gtest_list_tests", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ListTests(true), false); +} + +// Tests having a --gtest_list_tests flag with a "true" value +TEST_F(InitGoogleTestTest, ListTestsTrue) { + const char* argv[] = { + "foo.exe", + "--gtest_list_tests=1", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ListTests(true), false); +} + +// Tests having a --gtest_list_tests flag with a "false" value +TEST_F(InitGoogleTestTest, ListTestsFalse) { + const char* argv[] = { + "foo.exe", + "--gtest_list_tests=0", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ListTests(false), false); +} + +// Tests parsing --gtest_list_tests=f. +TEST_F(InitGoogleTestTest, ListTestsFalse_f) { + const char* argv[] = { + "foo.exe", + "--gtest_list_tests=f", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ListTests(false), false); +} + +// Tests parsing --gtest_list_tests=F. +TEST_F(InitGoogleTestTest, ListTestsFalse_F) { + const char* argv[] = { + "foo.exe", + "--gtest_list_tests=F", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ListTests(false), false); +} + +// Tests parsing --gtest_output (invalid). +TEST_F(InitGoogleTestTest, OutputEmpty) { + const char* argv[] = { + "foo.exe", + "--gtest_output", + NULL + }; + + const char* argv2[] = { + "foo.exe", + "--gtest_output", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags(), true); +} + +// Tests parsing --gtest_output=xml +TEST_F(InitGoogleTestTest, OutputXml) { + const char* argv[] = { + "foo.exe", + "--gtest_output=xml", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Output("xml"), false); +} + +// Tests parsing --gtest_output=xml:file +TEST_F(InitGoogleTestTest, OutputXmlFile) { + const char* argv[] = { + "foo.exe", + "--gtest_output=xml:file", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Output("xml:file"), false); +} + +// Tests parsing --gtest_output=xml:directory/path/ +TEST_F(InitGoogleTestTest, OutputXmlDirectory) { + const char* argv[] = { + "foo.exe", + "--gtest_output=xml:directory/path/", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, + Flags::Output("xml:directory/path/"), false); +} + +// Tests having a --gtest_print_time flag +TEST_F(InitGoogleTestTest, PrintTimeFlag) { + const char* argv[] = { + "foo.exe", + "--gtest_print_time", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::PrintTime(true), false); +} + +// Tests having a --gtest_print_time flag with a "true" value +TEST_F(InitGoogleTestTest, PrintTimeTrue) { + const char* argv[] = { + "foo.exe", + "--gtest_print_time=1", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::PrintTime(true), false); +} + +// Tests having a --gtest_print_time flag with a "false" value +TEST_F(InitGoogleTestTest, PrintTimeFalse) { + const char* argv[] = { + "foo.exe", + "--gtest_print_time=0", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::PrintTime(false), false); +} + +// Tests parsing --gtest_print_time=f. +TEST_F(InitGoogleTestTest, PrintTimeFalse_f) { + const char* argv[] = { + "foo.exe", + "--gtest_print_time=f", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::PrintTime(false), false); +} + +// Tests parsing --gtest_print_time=F. +TEST_F(InitGoogleTestTest, PrintTimeFalse_F) { + const char* argv[] = { + "foo.exe", + "--gtest_print_time=F", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::PrintTime(false), false); +} + +// Tests parsing --gtest_random_seed=number +TEST_F(InitGoogleTestTest, RandomSeed) { + const char* argv[] = { + "foo.exe", + "--gtest_random_seed=1000", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::RandomSeed(1000), false); +} + +// Tests parsing --gtest_repeat=number +TEST_F(InitGoogleTestTest, Repeat) { + const char* argv[] = { + "foo.exe", + "--gtest_repeat=1000", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Repeat(1000), false); +} + +// Tests having a --gtest_also_run_disabled_tests flag +TEST_F(InitGoogleTestTest, AlsoRunDisabledTestsFlag) { + const char* argv[] = { + "foo.exe", + "--gtest_also_run_disabled_tests", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, + Flags::AlsoRunDisabledTests(true), false); +} + +// Tests having a --gtest_also_run_disabled_tests flag with a "true" value +TEST_F(InitGoogleTestTest, AlsoRunDisabledTestsTrue) { + const char* argv[] = { + "foo.exe", + "--gtest_also_run_disabled_tests=1", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, + Flags::AlsoRunDisabledTests(true), false); +} + +// Tests having a --gtest_also_run_disabled_tests flag with a "false" value +TEST_F(InitGoogleTestTest, AlsoRunDisabledTestsFalse) { + const char* argv[] = { + "foo.exe", + "--gtest_also_run_disabled_tests=0", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, + Flags::AlsoRunDisabledTests(false), false); +} + +// Tests parsing --gtest_shuffle. +TEST_F(InitGoogleTestTest, ShuffleWithoutValue) { + const char* argv[] = { + "foo.exe", + "--gtest_shuffle", + NULL +}; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Shuffle(true), false); +} + +// Tests parsing --gtest_shuffle=0. +TEST_F(InitGoogleTestTest, ShuffleFalse_0) { + const char* argv[] = { + "foo.exe", + "--gtest_shuffle=0", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Shuffle(false), false); +} + +// Tests parsing a --gtest_shuffle flag that has a "true" +// definition. +TEST_F(InitGoogleTestTest, ShuffleTrue) { + const char* argv[] = { + "foo.exe", + "--gtest_shuffle=1", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Shuffle(true), false); +} + +// Tests parsing --gtest_stack_trace_depth=number. +TEST_F(InitGoogleTestTest, StackTraceDepth) { + const char* argv[] = { + "foo.exe", + "--gtest_stack_trace_depth=5", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::StackTraceDepth(5), false); +} + +TEST_F(InitGoogleTestTest, StreamResultTo) { + const char* argv[] = { + "foo.exe", + "--gtest_stream_result_to=localhost:1234", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_( + argv, argv2, Flags::StreamResultTo("localhost:1234"), false); +} + +// Tests parsing --gtest_throw_on_failure. +TEST_F(InitGoogleTestTest, ThrowOnFailureWithoutValue) { + const char* argv[] = { + "foo.exe", + "--gtest_throw_on_failure", + NULL +}; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ThrowOnFailure(true), false); +} + +// Tests parsing --gtest_throw_on_failure=0. +TEST_F(InitGoogleTestTest, ThrowOnFailureFalse_0) { + const char* argv[] = { + "foo.exe", + "--gtest_throw_on_failure=0", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ThrowOnFailure(false), false); +} + +// Tests parsing a --gtest_throw_on_failure flag that has a "true" +// definition. +TEST_F(InitGoogleTestTest, ThrowOnFailureTrue) { + const char* argv[] = { + "foo.exe", + "--gtest_throw_on_failure=1", + NULL + }; + + const char* argv2[] = { + "foo.exe", + NULL + }; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ThrowOnFailure(true), false); +} + +#if GTEST_OS_WINDOWS +// Tests parsing wide strings. +TEST_F(InitGoogleTestTest, WideStrings) { + const wchar_t* argv[] = { + L"foo.exe", + L"--gtest_filter=Foo*", + L"--gtest_list_tests=1", + L"--gtest_break_on_failure", + L"--non_gtest_flag", + NULL + }; + + const wchar_t* argv2[] = { + L"foo.exe", + L"--non_gtest_flag", + NULL + }; + + Flags expected_flags; + expected_flags.break_on_failure = true; + expected_flags.filter = "Foo*"; + expected_flags.list_tests = true; + + GTEST_TEST_PARSING_FLAGS_(argv, argv2, expected_flags, false); +} +#endif // GTEST_OS_WINDOWS + +// Tests current_test_info() in UnitTest. +class CurrentTestInfoTest : public Test { + protected: + // Tests that current_test_info() returns NULL before the first test in + // the test case is run. + static void SetUpTestCase() { + // There should be no tests running at this point. + const TestInfo* test_info = + UnitTest::GetInstance()->current_test_info(); + EXPECT_TRUE(test_info == NULL) + << "There should be no tests running at this point."; + } + + // Tests that current_test_info() returns NULL after the last test in + // the test case has run. + static void TearDownTestCase() { + const TestInfo* test_info = + UnitTest::GetInstance()->current_test_info(); + EXPECT_TRUE(test_info == NULL) + << "There should be no tests running at this point."; + } +}; + +// Tests that current_test_info() returns TestInfo for currently running +// test by checking the expected test name against the actual one. +TEST_F(CurrentTestInfoTest, WorksForFirstTestInATestCase) { + const TestInfo* test_info = + UnitTest::GetInstance()->current_test_info(); + ASSERT_TRUE(NULL != test_info) + << "There is a test running so we should have a valid TestInfo."; + EXPECT_STREQ("CurrentTestInfoTest", test_info->test_case_name()) + << "Expected the name of the currently running test case."; + EXPECT_STREQ("WorksForFirstTestInATestCase", test_info->name()) + << "Expected the name of the currently running test."; +} + +// Tests that current_test_info() returns TestInfo for currently running +// test by checking the expected test name against the actual one. We +// use this test to see that the TestInfo object actually changed from +// the previous invocation. +TEST_F(CurrentTestInfoTest, WorksForSecondTestInATestCase) { + const TestInfo* test_info = + UnitTest::GetInstance()->current_test_info(); + ASSERT_TRUE(NULL != test_info) + << "There is a test running so we should have a valid TestInfo."; + EXPECT_STREQ("CurrentTestInfoTest", test_info->test_case_name()) + << "Expected the name of the currently running test case."; + EXPECT_STREQ("WorksForSecondTestInATestCase", test_info->name()) + << "Expected the name of the currently running test."; +} + +} // namespace testing + +// These two lines test that we can define tests in a namespace that +// has the name "testing" and is nested in another namespace. +namespace my_namespace { +namespace testing { + +// Makes sure that TEST knows to use ::testing::Test instead of +// ::my_namespace::testing::Test. +class Test {}; + +// Makes sure that an assertion knows to use ::testing::Message instead of +// ::my_namespace::testing::Message. +class Message {}; + +// Makes sure that an assertion knows to use +// ::testing::AssertionResult instead of +// ::my_namespace::testing::AssertionResult. +class AssertionResult {}; + +// Tests that an assertion that should succeed works as expected. +TEST(NestedTestingNamespaceTest, Success) { + EXPECT_EQ(1, 1) << "This shouldn't fail."; +} + +// Tests that an assertion that should fail works as expected. +TEST(NestedTestingNamespaceTest, Failure) { + EXPECT_FATAL_FAILURE(FAIL() << "This failure is expected.", + "This failure is expected."); +} + +} // namespace testing +} // namespace my_namespace + +// Tests that one can call superclass SetUp and TearDown methods-- +// that is, that they are not private. +// No tests are based on this fixture; the test "passes" if it compiles +// successfully. +class ProtectedFixtureMethodsTest : public Test { + protected: + virtual void SetUp() { + Test::SetUp(); + } + virtual void TearDown() { + Test::TearDown(); + } +}; + +// StreamingAssertionsTest tests the streaming versions of a representative +// sample of assertions. +TEST(StreamingAssertionsTest, Unconditional) { + SUCCEED() << "expected success"; + EXPECT_NONFATAL_FAILURE(ADD_FAILURE() << "expected failure", + "expected failure"); + EXPECT_FATAL_FAILURE(FAIL() << "expected failure", + "expected failure"); +} + +#ifdef __BORLANDC__ +// Silences warnings: "Condition is always true", "Unreachable code" +# pragma option push -w-ccc -w-rch +#endif + +TEST(StreamingAssertionsTest, Truth) { + EXPECT_TRUE(true) << "unexpected failure"; + ASSERT_TRUE(true) << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(false) << "expected failure", + "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_TRUE(false) << "expected failure", + "expected failure"); +} + +TEST(StreamingAssertionsTest, Truth2) { + EXPECT_FALSE(false) << "unexpected failure"; + ASSERT_FALSE(false) << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(true) << "expected failure", + "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_FALSE(true) << "expected failure", + "expected failure"); +} + +#ifdef __BORLANDC__ +// Restores warnings after previous "#pragma option push" supressed them +# pragma option pop +#endif + +TEST(StreamingAssertionsTest, IntegerEquals) { + EXPECT_EQ(1, 1) << "unexpected failure"; + ASSERT_EQ(1, 1) << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_EQ(1, 2) << "expected failure", + "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_EQ(1, 2) << "expected failure", + "expected failure"); +} + +TEST(StreamingAssertionsTest, IntegerLessThan) { + EXPECT_LT(1, 2) << "unexpected failure"; + ASSERT_LT(1, 2) << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_LT(2, 1) << "expected failure", + "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_LT(2, 1) << "expected failure", + "expected failure"); +} + +TEST(StreamingAssertionsTest, StringsEqual) { + EXPECT_STREQ("foo", "foo") << "unexpected failure"; + ASSERT_STREQ("foo", "foo") << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_STREQ("foo", "bar") << "expected failure", + "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_STREQ("foo", "bar") << "expected failure", + "expected failure"); +} + +TEST(StreamingAssertionsTest, StringsNotEqual) { + EXPECT_STRNE("foo", "bar") << "unexpected failure"; + ASSERT_STRNE("foo", "bar") << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_STRNE("foo", "foo") << "expected failure", + "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_STRNE("foo", "foo") << "expected failure", + "expected failure"); +} + +TEST(StreamingAssertionsTest, StringsEqualIgnoringCase) { + EXPECT_STRCASEEQ("foo", "FOO") << "unexpected failure"; + ASSERT_STRCASEEQ("foo", "FOO") << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_STRCASEEQ("foo", "bar") << "expected failure", + "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_STRCASEEQ("foo", "bar") << "expected failure", + "expected failure"); +} + +TEST(StreamingAssertionsTest, StringNotEqualIgnoringCase) { + EXPECT_STRCASENE("foo", "bar") << "unexpected failure"; + ASSERT_STRCASENE("foo", "bar") << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_STRCASENE("foo", "FOO") << "expected failure", + "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_STRCASENE("bar", "BAR") << "expected failure", + "expected failure"); +} + +TEST(StreamingAssertionsTest, FloatingPointEquals) { + EXPECT_FLOAT_EQ(1.0, 1.0) << "unexpected failure"; + ASSERT_FLOAT_EQ(1.0, 1.0) << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(0.0, 1.0) << "expected failure", + "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_FLOAT_EQ(0.0, 1.0) << "expected failure", + "expected failure"); +} + +#if GTEST_HAS_EXCEPTIONS + +TEST(StreamingAssertionsTest, Throw) { + EXPECT_THROW(ThrowAnInteger(), int) << "unexpected failure"; + ASSERT_THROW(ThrowAnInteger(), int) << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_THROW(ThrowAnInteger(), bool) << + "expected failure", "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_THROW(ThrowAnInteger(), bool) << + "expected failure", "expected failure"); +} + +TEST(StreamingAssertionsTest, NoThrow) { + EXPECT_NO_THROW(ThrowNothing()) << "unexpected failure"; + ASSERT_NO_THROW(ThrowNothing()) << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_NO_THROW(ThrowAnInteger()) << + "expected failure", "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_NO_THROW(ThrowAnInteger()) << + "expected failure", "expected failure"); +} + +TEST(StreamingAssertionsTest, AnyThrow) { + EXPECT_ANY_THROW(ThrowAnInteger()) << "unexpected failure"; + ASSERT_ANY_THROW(ThrowAnInteger()) << "unexpected failure"; + EXPECT_NONFATAL_FAILURE(EXPECT_ANY_THROW(ThrowNothing()) << + "expected failure", "expected failure"); + EXPECT_FATAL_FAILURE(ASSERT_ANY_THROW(ThrowNothing()) << + "expected failure", "expected failure"); +} + +#endif // GTEST_HAS_EXCEPTIONS + +// Tests that Google Test correctly decides whether to use colors in the output. + +TEST(ColoredOutputTest, UsesColorsWhenGTestColorFlagIsYes) { + GTEST_FLAG(color) = "yes"; + + SetEnv("TERM", "xterm"); // TERM supports colors. + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. + EXPECT_TRUE(ShouldUseColor(false)); // Stdout is not a TTY. + + SetEnv("TERM", "dumb"); // TERM doesn't support colors. + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. + EXPECT_TRUE(ShouldUseColor(false)); // Stdout is not a TTY. +} + +TEST(ColoredOutputTest, UsesColorsWhenGTestColorFlagIsAliasOfYes) { + SetEnv("TERM", "dumb"); // TERM doesn't support colors. + + GTEST_FLAG(color) = "True"; + EXPECT_TRUE(ShouldUseColor(false)); // Stdout is not a TTY. + + GTEST_FLAG(color) = "t"; + EXPECT_TRUE(ShouldUseColor(false)); // Stdout is not a TTY. + + GTEST_FLAG(color) = "1"; + EXPECT_TRUE(ShouldUseColor(false)); // Stdout is not a TTY. +} + +TEST(ColoredOutputTest, UsesNoColorWhenGTestColorFlagIsNo) { + GTEST_FLAG(color) = "no"; + + SetEnv("TERM", "xterm"); // TERM supports colors. + EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. + EXPECT_FALSE(ShouldUseColor(false)); // Stdout is not a TTY. + + SetEnv("TERM", "dumb"); // TERM doesn't support colors. + EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. + EXPECT_FALSE(ShouldUseColor(false)); // Stdout is not a TTY. +} + +TEST(ColoredOutputTest, UsesNoColorWhenGTestColorFlagIsInvalid) { + SetEnv("TERM", "xterm"); // TERM supports colors. + + GTEST_FLAG(color) = "F"; + EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. + + GTEST_FLAG(color) = "0"; + EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. + + GTEST_FLAG(color) = "unknown"; + EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. +} + +TEST(ColoredOutputTest, UsesColorsWhenStdoutIsTty) { + GTEST_FLAG(color) = "auto"; + + SetEnv("TERM", "xterm"); // TERM supports colors. + EXPECT_FALSE(ShouldUseColor(false)); // Stdout is not a TTY. + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. +} + +TEST(ColoredOutputTest, UsesColorsWhenTermSupportsColors) { + GTEST_FLAG(color) = "auto"; + +#if GTEST_OS_WINDOWS + // On Windows, we ignore the TERM variable as it's usually not set. + + SetEnv("TERM", "dumb"); + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", ""); + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "xterm"); + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. +#else + // On non-Windows platforms, we rely on TERM to determine if the + // terminal supports colors. + + SetEnv("TERM", "dumb"); // TERM doesn't support colors. + EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "emacs"); // TERM doesn't support colors. + EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "vt100"); // TERM doesn't support colors. + EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "xterm-mono"); // TERM doesn't support colors. + EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "xterm"); // TERM supports colors. + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "xterm-color"); // TERM supports colors. + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "xterm-256color"); // TERM supports colors. + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "screen"); // TERM supports colors. + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "screen-256color"); // TERM supports colors. + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "linux"); // TERM supports colors. + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. + + SetEnv("TERM", "cygwin"); // TERM supports colors. + EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. +#endif // GTEST_OS_WINDOWS +} + +// Verifies that StaticAssertTypeEq works in a namespace scope. + +static bool dummy1 GTEST_ATTRIBUTE_UNUSED_ = StaticAssertTypeEq(); +static bool dummy2 GTEST_ATTRIBUTE_UNUSED_ = + StaticAssertTypeEq(); + +// Verifies that StaticAssertTypeEq works in a class. + +template +class StaticAssertTypeEqTestHelper { + public: + StaticAssertTypeEqTestHelper() { StaticAssertTypeEq(); } +}; + +TEST(StaticAssertTypeEqTest, WorksInClass) { + StaticAssertTypeEqTestHelper(); +} + +// Verifies that StaticAssertTypeEq works inside a function. + +typedef int IntAlias; + +TEST(StaticAssertTypeEqTest, CompilesForEqualTypes) { + StaticAssertTypeEq(); + StaticAssertTypeEq(); +} + +TEST(GetCurrentOsStackTraceExceptTopTest, ReturnsTheStackTrace) { + testing::UnitTest* const unit_test = testing::UnitTest::GetInstance(); + + // We don't have a stack walker in Google Test yet. + EXPECT_STREQ("", GetCurrentOsStackTraceExceptTop(unit_test, 0).c_str()); + EXPECT_STREQ("", GetCurrentOsStackTraceExceptTop(unit_test, 1).c_str()); +} + +TEST(HasNonfatalFailureTest, ReturnsFalseWhenThereIsNoFailure) { + EXPECT_FALSE(HasNonfatalFailure()); +} + +static void FailFatally() { FAIL(); } + +TEST(HasNonfatalFailureTest, ReturnsFalseWhenThereIsOnlyFatalFailure) { + FailFatally(); + const bool has_nonfatal_failure = HasNonfatalFailure(); + ClearCurrentTestPartResults(); + EXPECT_FALSE(has_nonfatal_failure); +} + +TEST(HasNonfatalFailureTest, ReturnsTrueWhenThereIsNonfatalFailure) { + ADD_FAILURE(); + const bool has_nonfatal_failure = HasNonfatalFailure(); + ClearCurrentTestPartResults(); + EXPECT_TRUE(has_nonfatal_failure); +} + +TEST(HasNonfatalFailureTest, ReturnsTrueWhenThereAreFatalAndNonfatalFailures) { + FailFatally(); + ADD_FAILURE(); + const bool has_nonfatal_failure = HasNonfatalFailure(); + ClearCurrentTestPartResults(); + EXPECT_TRUE(has_nonfatal_failure); +} + +// A wrapper for calling HasNonfatalFailure outside of a test body. +static bool HasNonfatalFailureHelper() { + return testing::Test::HasNonfatalFailure(); +} + +TEST(HasNonfatalFailureTest, WorksOutsideOfTestBody) { + EXPECT_FALSE(HasNonfatalFailureHelper()); +} + +TEST(HasNonfatalFailureTest, WorksOutsideOfTestBody2) { + ADD_FAILURE(); + const bool has_nonfatal_failure = HasNonfatalFailureHelper(); + ClearCurrentTestPartResults(); + EXPECT_TRUE(has_nonfatal_failure); +} + +TEST(HasFailureTest, ReturnsFalseWhenThereIsNoFailure) { + EXPECT_FALSE(HasFailure()); +} + +TEST(HasFailureTest, ReturnsTrueWhenThereIsFatalFailure) { + FailFatally(); + const bool has_failure = HasFailure(); + ClearCurrentTestPartResults(); + EXPECT_TRUE(has_failure); +} + +TEST(HasFailureTest, ReturnsTrueWhenThereIsNonfatalFailure) { + ADD_FAILURE(); + const bool has_failure = HasFailure(); + ClearCurrentTestPartResults(); + EXPECT_TRUE(has_failure); +} + +TEST(HasFailureTest, ReturnsTrueWhenThereAreFatalAndNonfatalFailures) { + FailFatally(); + ADD_FAILURE(); + const bool has_failure = HasFailure(); + ClearCurrentTestPartResults(); + EXPECT_TRUE(has_failure); +} + +// A wrapper for calling HasFailure outside of a test body. +static bool HasFailureHelper() { return testing::Test::HasFailure(); } + +TEST(HasFailureTest, WorksOutsideOfTestBody) { + EXPECT_FALSE(HasFailureHelper()); +} + +TEST(HasFailureTest, WorksOutsideOfTestBody2) { + ADD_FAILURE(); + const bool has_failure = HasFailureHelper(); + ClearCurrentTestPartResults(); + EXPECT_TRUE(has_failure); +} + +class TestListener : public EmptyTestEventListener { + public: + TestListener() : on_start_counter_(NULL), is_destroyed_(NULL) {} + TestListener(int* on_start_counter, bool* is_destroyed) + : on_start_counter_(on_start_counter), + is_destroyed_(is_destroyed) {} + + virtual ~TestListener() { + if (is_destroyed_) + *is_destroyed_ = true; + } + + protected: + virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) { + if (on_start_counter_ != NULL) + (*on_start_counter_)++; + } + + private: + int* on_start_counter_; + bool* is_destroyed_; +}; + +// Tests the constructor. +TEST(TestEventListenersTest, ConstructionWorks) { + TestEventListeners listeners; + + EXPECT_TRUE(TestEventListenersAccessor::GetRepeater(&listeners) != NULL); + EXPECT_TRUE(listeners.default_result_printer() == NULL); + EXPECT_TRUE(listeners.default_xml_generator() == NULL); +} + +// Tests that the TestEventListeners destructor deletes all the listeners it +// owns. +TEST(TestEventListenersTest, DestructionWorks) { + bool default_result_printer_is_destroyed = false; + bool default_xml_printer_is_destroyed = false; + bool extra_listener_is_destroyed = false; + TestListener* default_result_printer = new TestListener( + NULL, &default_result_printer_is_destroyed); + TestListener* default_xml_printer = new TestListener( + NULL, &default_xml_printer_is_destroyed); + TestListener* extra_listener = new TestListener( + NULL, &extra_listener_is_destroyed); + + { + TestEventListeners listeners; + TestEventListenersAccessor::SetDefaultResultPrinter(&listeners, + default_result_printer); + TestEventListenersAccessor::SetDefaultXmlGenerator(&listeners, + default_xml_printer); + listeners.Append(extra_listener); + } + EXPECT_TRUE(default_result_printer_is_destroyed); + EXPECT_TRUE(default_xml_printer_is_destroyed); + EXPECT_TRUE(extra_listener_is_destroyed); +} + +// Tests that a listener Append'ed to a TestEventListeners list starts +// receiving events. +TEST(TestEventListenersTest, Append) { + int on_start_counter = 0; + bool is_destroyed = false; + TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); + { + TestEventListeners listeners; + listeners.Append(listener); + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( + *UnitTest::GetInstance()); + EXPECT_EQ(1, on_start_counter); + } + EXPECT_TRUE(is_destroyed); +} + +// Tests that listeners receive events in the order they were appended to +// the list, except for *End requests, which must be received in the reverse +// order. +class SequenceTestingListener : public EmptyTestEventListener { + public: + SequenceTestingListener(std::vector* vector, const char* id) + : vector_(vector), id_(id) {} + + protected: + virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) { + vector_->push_back(GetEventDescription("OnTestProgramStart")); + } + + virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) { + vector_->push_back(GetEventDescription("OnTestProgramEnd")); + } + + virtual void OnTestIterationStart(const UnitTest& /*unit_test*/, + int /*iteration*/) { + vector_->push_back(GetEventDescription("OnTestIterationStart")); + } + + virtual void OnTestIterationEnd(const UnitTest& /*unit_test*/, + int /*iteration*/) { + vector_->push_back(GetEventDescription("OnTestIterationEnd")); + } + + private: + std::string GetEventDescription(const char* method) { + Message message; + message << id_ << "." << method; + return message.GetString(); + } + + std::vector* vector_; + const char* const id_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(SequenceTestingListener); +}; + +TEST(EventListenerTest, AppendKeepsOrder) { + std::vector vec; + TestEventListeners listeners; + listeners.Append(new SequenceTestingListener(&vec, "1st")); + listeners.Append(new SequenceTestingListener(&vec, "2nd")); + listeners.Append(new SequenceTestingListener(&vec, "3rd")); + + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( + *UnitTest::GetInstance()); + ASSERT_EQ(3U, vec.size()); + EXPECT_STREQ("1st.OnTestProgramStart", vec[0].c_str()); + EXPECT_STREQ("2nd.OnTestProgramStart", vec[1].c_str()); + EXPECT_STREQ("3rd.OnTestProgramStart", vec[2].c_str()); + + vec.clear(); + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramEnd( + *UnitTest::GetInstance()); + ASSERT_EQ(3U, vec.size()); + EXPECT_STREQ("3rd.OnTestProgramEnd", vec[0].c_str()); + EXPECT_STREQ("2nd.OnTestProgramEnd", vec[1].c_str()); + EXPECT_STREQ("1st.OnTestProgramEnd", vec[2].c_str()); + + vec.clear(); + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestIterationStart( + *UnitTest::GetInstance(), 0); + ASSERT_EQ(3U, vec.size()); + EXPECT_STREQ("1st.OnTestIterationStart", vec[0].c_str()); + EXPECT_STREQ("2nd.OnTestIterationStart", vec[1].c_str()); + EXPECT_STREQ("3rd.OnTestIterationStart", vec[2].c_str()); + + vec.clear(); + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestIterationEnd( + *UnitTest::GetInstance(), 0); + ASSERT_EQ(3U, vec.size()); + EXPECT_STREQ("3rd.OnTestIterationEnd", vec[0].c_str()); + EXPECT_STREQ("2nd.OnTestIterationEnd", vec[1].c_str()); + EXPECT_STREQ("1st.OnTestIterationEnd", vec[2].c_str()); +} + +// Tests that a listener removed from a TestEventListeners list stops receiving +// events and is not deleted when the list is destroyed. +TEST(TestEventListenersTest, Release) { + int on_start_counter = 0; + bool is_destroyed = false; + // Although Append passes the ownership of this object to the list, + // the following calls release it, and we need to delete it before the + // test ends. + TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); + { + TestEventListeners listeners; + listeners.Append(listener); + EXPECT_EQ(listener, listeners.Release(listener)); + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( + *UnitTest::GetInstance()); + EXPECT_TRUE(listeners.Release(listener) == NULL); + } + EXPECT_EQ(0, on_start_counter); + EXPECT_FALSE(is_destroyed); + delete listener; +} + +// Tests that no events are forwarded when event forwarding is disabled. +TEST(EventListenerTest, SuppressEventForwarding) { + int on_start_counter = 0; + TestListener* listener = new TestListener(&on_start_counter, NULL); + + TestEventListeners listeners; + listeners.Append(listener); + ASSERT_TRUE(TestEventListenersAccessor::EventForwardingEnabled(listeners)); + TestEventListenersAccessor::SuppressEventForwarding(&listeners); + ASSERT_FALSE(TestEventListenersAccessor::EventForwardingEnabled(listeners)); + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( + *UnitTest::GetInstance()); + EXPECT_EQ(0, on_start_counter); +} + +// Tests that events generated by Google Test are not forwarded in +// death test subprocesses. +TEST(EventListenerDeathTest, EventsNotForwardedInDeathTestSubprecesses) { + EXPECT_DEATH_IF_SUPPORTED({ + GTEST_CHECK_(TestEventListenersAccessor::EventForwardingEnabled( + *GetUnitTestImpl()->listeners())) << "expected failure";}, + "expected failure"); +} + +// Tests that a listener installed via SetDefaultResultPrinter() starts +// receiving events and is returned via default_result_printer() and that +// the previous default_result_printer is removed from the list and deleted. +TEST(EventListenerTest, default_result_printer) { + int on_start_counter = 0; + bool is_destroyed = false; + TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); + + TestEventListeners listeners; + TestEventListenersAccessor::SetDefaultResultPrinter(&listeners, listener); + + EXPECT_EQ(listener, listeners.default_result_printer()); + + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( + *UnitTest::GetInstance()); + + EXPECT_EQ(1, on_start_counter); + + // Replacing default_result_printer with something else should remove it + // from the list and destroy it. + TestEventListenersAccessor::SetDefaultResultPrinter(&listeners, NULL); + + EXPECT_TRUE(listeners.default_result_printer() == NULL); + EXPECT_TRUE(is_destroyed); + + // After broadcasting an event the counter is still the same, indicating + // the listener is not in the list anymore. + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( + *UnitTest::GetInstance()); + EXPECT_EQ(1, on_start_counter); +} + +// Tests that the default_result_printer listener stops receiving events +// when removed via Release and that is not owned by the list anymore. +TEST(EventListenerTest, RemovingDefaultResultPrinterWorks) { + int on_start_counter = 0; + bool is_destroyed = false; + // Although Append passes the ownership of this object to the list, + // the following calls release it, and we need to delete it before the + // test ends. + TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); + { + TestEventListeners listeners; + TestEventListenersAccessor::SetDefaultResultPrinter(&listeners, listener); + + EXPECT_EQ(listener, listeners.Release(listener)); + EXPECT_TRUE(listeners.default_result_printer() == NULL); + EXPECT_FALSE(is_destroyed); + + // Broadcasting events now should not affect default_result_printer. + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( + *UnitTest::GetInstance()); + EXPECT_EQ(0, on_start_counter); + } + // Destroying the list should not affect the listener now, too. + EXPECT_FALSE(is_destroyed); + delete listener; +} + +// Tests that a listener installed via SetDefaultXmlGenerator() starts +// receiving events and is returned via default_xml_generator() and that +// the previous default_xml_generator is removed from the list and deleted. +TEST(EventListenerTest, default_xml_generator) { + int on_start_counter = 0; + bool is_destroyed = false; + TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); + + TestEventListeners listeners; + TestEventListenersAccessor::SetDefaultXmlGenerator(&listeners, listener); + + EXPECT_EQ(listener, listeners.default_xml_generator()); + + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( + *UnitTest::GetInstance()); + + EXPECT_EQ(1, on_start_counter); + + // Replacing default_xml_generator with something else should remove it + // from the list and destroy it. + TestEventListenersAccessor::SetDefaultXmlGenerator(&listeners, NULL); + + EXPECT_TRUE(listeners.default_xml_generator() == NULL); + EXPECT_TRUE(is_destroyed); + + // After broadcasting an event the counter is still the same, indicating + // the listener is not in the list anymore. + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( + *UnitTest::GetInstance()); + EXPECT_EQ(1, on_start_counter); +} + +// Tests that the default_xml_generator listener stops receiving events +// when removed via Release and that is not owned by the list anymore. +TEST(EventListenerTest, RemovingDefaultXmlGeneratorWorks) { + int on_start_counter = 0; + bool is_destroyed = false; + // Although Append passes the ownership of this object to the list, + // the following calls release it, and we need to delete it before the + // test ends. + TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); + { + TestEventListeners listeners; + TestEventListenersAccessor::SetDefaultXmlGenerator(&listeners, listener); + + EXPECT_EQ(listener, listeners.Release(listener)); + EXPECT_TRUE(listeners.default_xml_generator() == NULL); + EXPECT_FALSE(is_destroyed); + + // Broadcasting events now should not affect default_xml_generator. + TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( + *UnitTest::GetInstance()); + EXPECT_EQ(0, on_start_counter); + } + // Destroying the list should not affect the listener now, too. + EXPECT_FALSE(is_destroyed); + delete listener; +} + +// Sanity tests to ensure that the alternative, verbose spellings of +// some of the macros work. We don't test them thoroughly as that +// would be quite involved. Since their implementations are +// straightforward, and they are rarely used, we'll just rely on the +// users to tell us when they are broken. +GTEST_TEST(AlternativeNameTest, Works) { // GTEST_TEST is the same as TEST. + GTEST_SUCCEED() << "OK"; // GTEST_SUCCEED is the same as SUCCEED. + + // GTEST_FAIL is the same as FAIL. + EXPECT_FATAL_FAILURE(GTEST_FAIL() << "An expected failure", + "An expected failure"); + + // GTEST_ASSERT_XY is the same as ASSERT_XY. + + GTEST_ASSERT_EQ(0, 0); + EXPECT_FATAL_FAILURE(GTEST_ASSERT_EQ(0, 1) << "An expected failure", + "An expected failure"); + EXPECT_FATAL_FAILURE(GTEST_ASSERT_EQ(1, 0) << "An expected failure", + "An expected failure"); + + GTEST_ASSERT_NE(0, 1); + GTEST_ASSERT_NE(1, 0); + EXPECT_FATAL_FAILURE(GTEST_ASSERT_NE(0, 0) << "An expected failure", + "An expected failure"); + + GTEST_ASSERT_LE(0, 0); + GTEST_ASSERT_LE(0, 1); + EXPECT_FATAL_FAILURE(GTEST_ASSERT_LE(1, 0) << "An expected failure", + "An expected failure"); + + GTEST_ASSERT_LT(0, 1); + EXPECT_FATAL_FAILURE(GTEST_ASSERT_LT(0, 0) << "An expected failure", + "An expected failure"); + EXPECT_FATAL_FAILURE(GTEST_ASSERT_LT(1, 0) << "An expected failure", + "An expected failure"); + + GTEST_ASSERT_GE(0, 0); + GTEST_ASSERT_GE(1, 0); + EXPECT_FATAL_FAILURE(GTEST_ASSERT_GE(0, 1) << "An expected failure", + "An expected failure"); + + GTEST_ASSERT_GT(1, 0); + EXPECT_FATAL_FAILURE(GTEST_ASSERT_GT(0, 1) << "An expected failure", + "An expected failure"); + EXPECT_FATAL_FAILURE(GTEST_ASSERT_GT(1, 1) << "An expected failure", + "An expected failure"); +} + +// Tests for internal utilities necessary for implementation of the universal +// printing. +// TODO(vladl@google.com): Find a better home for them. + +class ConversionHelperBase {}; +class ConversionHelperDerived : public ConversionHelperBase {}; + +// Tests that IsAProtocolMessage::value is a compile-time constant. +TEST(IsAProtocolMessageTest, ValueIsCompileTimeConstant) { + GTEST_COMPILE_ASSERT_(IsAProtocolMessage::value, + const_true); + GTEST_COMPILE_ASSERT_(!IsAProtocolMessage::value, const_false); +} + +// Tests that IsAProtocolMessage::value is true when T is +// proto2::Message or a sub-class of it. +TEST(IsAProtocolMessageTest, ValueIsTrueWhenTypeIsAProtocolMessage) { + EXPECT_TRUE(IsAProtocolMessage< ::proto2::Message>::value); + EXPECT_TRUE(IsAProtocolMessage::value); +} + +// Tests that IsAProtocolMessage::value is false when T is neither +// ProtocolMessage nor a sub-class of it. +TEST(IsAProtocolMessageTest, ValueIsFalseWhenTypeIsNotAProtocolMessage) { + EXPECT_FALSE(IsAProtocolMessage::value); + EXPECT_FALSE(IsAProtocolMessage::value); +} + +// Tests that CompileAssertTypesEqual compiles when the type arguments are +// equal. +TEST(CompileAssertTypesEqual, CompilesWhenTypesAreEqual) { + CompileAssertTypesEqual(); + CompileAssertTypesEqual(); +} + +// Tests that RemoveReference does not affect non-reference types. +TEST(RemoveReferenceTest, DoesNotAffectNonReferenceType) { + CompileAssertTypesEqual::type>(); + CompileAssertTypesEqual::type>(); +} + +// Tests that RemoveReference removes reference from reference types. +TEST(RemoveReferenceTest, RemovesReference) { + CompileAssertTypesEqual::type>(); + CompileAssertTypesEqual::type>(); +} + +// Tests GTEST_REMOVE_REFERENCE_. + +template +void TestGTestRemoveReference() { + CompileAssertTypesEqual(); +} + +TEST(RemoveReferenceTest, MacroVersion) { + TestGTestRemoveReference(); + TestGTestRemoveReference(); +} + + +// Tests that RemoveConst does not affect non-const types. +TEST(RemoveConstTest, DoesNotAffectNonConstType) { + CompileAssertTypesEqual::type>(); + CompileAssertTypesEqual::type>(); +} + +// Tests that RemoveConst removes const from const types. +TEST(RemoveConstTest, RemovesConst) { + CompileAssertTypesEqual::type>(); + CompileAssertTypesEqual::type>(); + CompileAssertTypesEqual::type>(); +} + +// Tests GTEST_REMOVE_CONST_. + +template +void TestGTestRemoveConst() { + CompileAssertTypesEqual(); +} + +TEST(RemoveConstTest, MacroVersion) { + TestGTestRemoveConst(); + TestGTestRemoveConst(); + TestGTestRemoveConst(); +} + +// Tests GTEST_REMOVE_REFERENCE_AND_CONST_. + +template +void TestGTestRemoveReferenceAndConst() { + CompileAssertTypesEqual(); +} + +TEST(RemoveReferenceToConstTest, Works) { + TestGTestRemoveReferenceAndConst(); + TestGTestRemoveReferenceAndConst(); + TestGTestRemoveReferenceAndConst(); + TestGTestRemoveReferenceAndConst(); + TestGTestRemoveReferenceAndConst(); +} + +// Tests that AddReference does not affect reference types. +TEST(AddReferenceTest, DoesNotAffectReferenceType) { + CompileAssertTypesEqual::type>(); + CompileAssertTypesEqual::type>(); +} + +// Tests that AddReference adds reference to non-reference types. +TEST(AddReferenceTest, AddsReference) { + CompileAssertTypesEqual::type>(); + CompileAssertTypesEqual::type>(); +} + +// Tests GTEST_ADD_REFERENCE_. + +template +void TestGTestAddReference() { + CompileAssertTypesEqual(); +} + +TEST(AddReferenceTest, MacroVersion) { + TestGTestAddReference(); + TestGTestAddReference(); +} + +// Tests GTEST_REFERENCE_TO_CONST_. + +template +void TestGTestReferenceToConst() { + CompileAssertTypesEqual(); +} + +TEST(GTestReferenceToConstTest, Works) { + TestGTestReferenceToConst(); + TestGTestReferenceToConst(); + TestGTestReferenceToConst(); + TestGTestReferenceToConst(); +} + +// Tests that ImplicitlyConvertible::value is a compile-time constant. +TEST(ImplicitlyConvertibleTest, ValueIsCompileTimeConstant) { + GTEST_COMPILE_ASSERT_((ImplicitlyConvertible::value), const_true); + GTEST_COMPILE_ASSERT_((!ImplicitlyConvertible::value), + const_false); +} + +// Tests that ImplicitlyConvertible::value is true when T1 can +// be implicitly converted to T2. +TEST(ImplicitlyConvertibleTest, ValueIsTrueWhenConvertible) { + EXPECT_TRUE((ImplicitlyConvertible::value)); + EXPECT_TRUE((ImplicitlyConvertible::value)); + EXPECT_TRUE((ImplicitlyConvertible::value)); + EXPECT_TRUE((ImplicitlyConvertible::value)); + EXPECT_TRUE((ImplicitlyConvertible::value)); + EXPECT_TRUE((ImplicitlyConvertible::value)); +} + +// Tests that ImplicitlyConvertible::value is false when T1 +// cannot be implicitly converted to T2. +TEST(ImplicitlyConvertibleTest, ValueIsFalseWhenNotConvertible) { + EXPECT_FALSE((ImplicitlyConvertible::value)); + EXPECT_FALSE((ImplicitlyConvertible::value)); + EXPECT_FALSE((ImplicitlyConvertible::value)); + EXPECT_FALSE((ImplicitlyConvertible::value)); +} + +// Tests IsContainerTest. + +class NonContainer {}; + +TEST(IsContainerTestTest, WorksForNonContainer) { + EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest(0))); + EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest(0))); + EXPECT_EQ(sizeof(IsNotContainer), sizeof(IsContainerTest(0))); +} + +TEST(IsContainerTestTest, WorksForContainer) { + EXPECT_EQ(sizeof(IsContainer), + sizeof(IsContainerTest >(0))); + EXPECT_EQ(sizeof(IsContainer), + sizeof(IsContainerTest >(0))); +} + +// Tests ArrayEq(). + +TEST(ArrayEqTest, WorksForDegeneratedArrays) { + EXPECT_TRUE(ArrayEq(5, 5L)); + EXPECT_FALSE(ArrayEq('a', 0)); +} + +TEST(ArrayEqTest, WorksForOneDimensionalArrays) { + // Note that a and b are distinct but compatible types. + const int a[] = { 0, 1 }; + long b[] = { 0, 1 }; + EXPECT_TRUE(ArrayEq(a, b)); + EXPECT_TRUE(ArrayEq(a, 2, b)); + + b[0] = 2; + EXPECT_FALSE(ArrayEq(a, b)); + EXPECT_FALSE(ArrayEq(a, 1, b)); +} + +TEST(ArrayEqTest, WorksForTwoDimensionalArrays) { + const char a[][3] = { "hi", "lo" }; + const char b[][3] = { "hi", "lo" }; + const char c[][3] = { "hi", "li" }; + + EXPECT_TRUE(ArrayEq(a, b)); + EXPECT_TRUE(ArrayEq(a, 2, b)); + + EXPECT_FALSE(ArrayEq(a, c)); + EXPECT_FALSE(ArrayEq(a, 2, c)); +} + +// Tests ArrayAwareFind(). + +TEST(ArrayAwareFindTest, WorksForOneDimensionalArray) { + const char a[] = "hello"; + EXPECT_EQ(a + 4, ArrayAwareFind(a, a + 5, 'o')); + EXPECT_EQ(a + 5, ArrayAwareFind(a, a + 5, 'x')); +} + +TEST(ArrayAwareFindTest, WorksForTwoDimensionalArray) { + int a[][2] = { { 0, 1 }, { 2, 3 }, { 4, 5 } }; + const int b[2] = { 2, 3 }; + EXPECT_EQ(a + 1, ArrayAwareFind(a, a + 3, b)); + + const int c[2] = { 6, 7 }; + EXPECT_EQ(a + 3, ArrayAwareFind(a, a + 3, c)); +} + +// Tests CopyArray(). + +TEST(CopyArrayTest, WorksForDegeneratedArrays) { + int n = 0; + CopyArray('a', &n); + EXPECT_EQ('a', n); +} + +TEST(CopyArrayTest, WorksForOneDimensionalArrays) { + const char a[3] = "hi"; + int b[3]; +#ifndef __BORLANDC__ // C++Builder cannot compile some array size deductions. + CopyArray(a, &b); + EXPECT_TRUE(ArrayEq(a, b)); +#endif + + int c[3]; + CopyArray(a, 3, c); + EXPECT_TRUE(ArrayEq(a, c)); +} + +TEST(CopyArrayTest, WorksForTwoDimensionalArrays) { + const int a[2][3] = { { 0, 1, 2 }, { 3, 4, 5 } }; + int b[2][3]; +#ifndef __BORLANDC__ // C++Builder cannot compile some array size deductions. + CopyArray(a, &b); + EXPECT_TRUE(ArrayEq(a, b)); +#endif + + int c[2][3]; + CopyArray(a, 2, c); + EXPECT_TRUE(ArrayEq(a, c)); +} + +// Tests NativeArray. + +TEST(NativeArrayTest, ConstructorFromArrayWorks) { + const int a[3] = { 0, 1, 2 }; + NativeArray na(a, 3, kReference); + EXPECT_EQ(3U, na.size()); + EXPECT_EQ(a, na.begin()); +} + +TEST(NativeArrayTest, CreatesAndDeletesCopyOfArrayWhenAskedTo) { + typedef int Array[2]; + Array* a = new Array[1]; + (*a)[0] = 0; + (*a)[1] = 1; + NativeArray na(*a, 2, kCopy); + EXPECT_NE(*a, na.begin()); + delete[] a; + EXPECT_EQ(0, na.begin()[0]); + EXPECT_EQ(1, na.begin()[1]); + + // We rely on the heap checker to verify that na deletes the copy of + // array. +} + +TEST(NativeArrayTest, TypeMembersAreCorrect) { + StaticAssertTypeEq::value_type>(); + StaticAssertTypeEq::value_type>(); + + StaticAssertTypeEq::const_iterator>(); + StaticAssertTypeEq::const_iterator>(); +} + +TEST(NativeArrayTest, MethodsWork) { + const int a[3] = { 0, 1, 2 }; + NativeArray na(a, 3, kCopy); + ASSERT_EQ(3U, na.size()); + EXPECT_EQ(3, na.end() - na.begin()); + + NativeArray::const_iterator it = na.begin(); + EXPECT_EQ(0, *it); + ++it; + EXPECT_EQ(1, *it); + it++; + EXPECT_EQ(2, *it); + ++it; + EXPECT_EQ(na.end(), it); + + EXPECT_TRUE(na == na); + + NativeArray na2(a, 3, kReference); + EXPECT_TRUE(na == na2); + + const int b1[3] = { 0, 1, 1 }; + const int b2[4] = { 0, 1, 2, 3 }; + EXPECT_FALSE(na == NativeArray(b1, 3, kReference)); + EXPECT_FALSE(na == NativeArray(b2, 4, kCopy)); +} + +TEST(NativeArrayTest, WorksForTwoDimensionalArray) { + const char a[2][3] = { "hi", "lo" }; + NativeArray na(a, 2, kReference); + ASSERT_EQ(2U, na.size()); + EXPECT_EQ(a, na.begin()); +} + +// Tests SkipPrefix(). + +TEST(SkipPrefixTest, SkipsWhenPrefixMatches) { + const char* const str = "hello"; + + const char* p = str; + EXPECT_TRUE(SkipPrefix("", &p)); + EXPECT_EQ(str, p); + + p = str; + EXPECT_TRUE(SkipPrefix("hell", &p)); + EXPECT_EQ(str + 4, p); +} + +TEST(SkipPrefixTest, DoesNotSkipWhenPrefixDoesNotMatch) { + const char* const str = "world"; + + const char* p = str; + EXPECT_FALSE(SkipPrefix("W", &p)); + EXPECT_EQ(str, p); + + p = str; + EXPECT_FALSE(SkipPrefix("world!", &p)); + EXPECT_EQ(str, p); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc new file mode 100644 index 000000000..531ced49d --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc @@ -0,0 +1,49 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: keith.ray@gmail.com (Keith Ray) +// +// gtest_xml_outfile1_test_ writes some xml via TestProperty used by +// gtest_xml_outfiles_test.py + +#include "gtest/gtest.h" + +class PropertyOne : public testing::Test { + protected: + virtual void SetUp() { + RecordProperty("SetUpProp", 1); + } + virtual void TearDown() { + RecordProperty("TearDownProp", 1); + } +}; + +TEST_F(PropertyOne, TestSomeProperties) { + RecordProperty("TestSomeProperty", 1); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc new file mode 100644 index 000000000..7b400b276 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc @@ -0,0 +1,49 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: keith.ray@gmail.com (Keith Ray) +// +// gtest_xml_outfile2_test_ writes some xml via TestProperty used by +// gtest_xml_outfiles_test.py + +#include "gtest/gtest.h" + +class PropertyTwo : public testing::Test { + protected: + virtual void SetUp() { + RecordProperty("SetUpProp", 2); + } + virtual void TearDown() { + RecordProperty("TearDownProp", 2); + } +}; + +TEST_F(PropertyTwo, TestSomeProperties) { + RecordProperty("TestSomeProperty", 2); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfiles_test.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfiles_test.py new file mode 100755 index 000000000..524e437e6 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfiles_test.py @@ -0,0 +1,132 @@ +#!/usr/bin/env python +# +# Copyright 2008, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Unit test for the gtest_xml_output module.""" + +__author__ = "keith.ray@gmail.com (Keith Ray)" + +import os +from xml.dom import minidom, Node + +import gtest_test_utils +import gtest_xml_test_utils + + +GTEST_OUTPUT_SUBDIR = "xml_outfiles" +GTEST_OUTPUT_1_TEST = "gtest_xml_outfile1_test_" +GTEST_OUTPUT_2_TEST = "gtest_xml_outfile2_test_" + +EXPECTED_XML_1 = """ + + + + + +""" + +EXPECTED_XML_2 = """ + + + + + +""" + + +class GTestXMLOutFilesTest(gtest_xml_test_utils.GTestXMLTestCase): + """Unit test for Google Test's XML output functionality.""" + + def setUp(self): + # We want the trailing '/' that the last "" provides in os.path.join, for + # telling Google Test to create an output directory instead of a single file + # for xml output. + self.output_dir_ = os.path.join(gtest_test_utils.GetTempDir(), + GTEST_OUTPUT_SUBDIR, "") + self.DeleteFilesAndDir() + + def tearDown(self): + self.DeleteFilesAndDir() + + def DeleteFilesAndDir(self): + try: + os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml")) + except os.error: + pass + try: + os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml")) + except os.error: + pass + try: + os.rmdir(self.output_dir_) + except os.error: + pass + + def testOutfile1(self): + self._TestOutFile(GTEST_OUTPUT_1_TEST, EXPECTED_XML_1) + + def testOutfile2(self): + self._TestOutFile(GTEST_OUTPUT_2_TEST, EXPECTED_XML_2) + + def _TestOutFile(self, test_name, expected_xml): + gtest_prog_path = gtest_test_utils.GetTestExecutablePath(test_name) + command = [gtest_prog_path, "--gtest_output=xml:%s" % self.output_dir_] + p = gtest_test_utils.Subprocess(command, + working_dir=gtest_test_utils.GetTempDir()) + self.assert_(p.exited) + self.assertEquals(0, p.exit_code) + + # TODO(wan@google.com): libtool causes the built test binary to be + # named lt-gtest_xml_outfiles_test_ instead of + # gtest_xml_outfiles_test_. To account for this possibillity, we + # allow both names in the following code. We should remove this + # hack when Chandler Carruth's libtool replacement tool is ready. + output_file_name1 = test_name + ".xml" + output_file1 = os.path.join(self.output_dir_, output_file_name1) + output_file_name2 = 'lt-' + output_file_name1 + output_file2 = os.path.join(self.output_dir_, output_file_name2) + self.assert_(os.path.isfile(output_file1) or os.path.isfile(output_file2), + output_file1) + + expected = minidom.parseString(expected_xml) + if os.path.isfile(output_file1): + actual = minidom.parse(output_file1) + else: + actual = minidom.parse(output_file2) + self.NormalizeXml(actual.documentElement) + self.AssertEquivalentNodes(expected.documentElement, + actual.documentElement) + expected.unlink() + actual.unlink() + + +if __name__ == "__main__": + os.environ["GTEST_STACK_TRACE_DEPTH"] = "0" + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_output_unittest.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_output_unittest.py new file mode 100755 index 000000000..f605d4ee2 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_output_unittest.py @@ -0,0 +1,307 @@ +#!/usr/bin/env python +# +# Copyright 2006, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Unit test for the gtest_xml_output module""" + +__author__ = 'eefacm@gmail.com (Sean Mcafee)' + +import datetime +import errno +import os +import re +import sys +from xml.dom import minidom, Node + +import gtest_test_utils +import gtest_xml_test_utils + + +GTEST_FILTER_FLAG = '--gtest_filter' +GTEST_LIST_TESTS_FLAG = '--gtest_list_tests' +GTEST_OUTPUT_FLAG = "--gtest_output" +GTEST_DEFAULT_OUTPUT_FILE = "test_detail.xml" +GTEST_PROGRAM_NAME = "gtest_xml_output_unittest_" + +SUPPORTS_STACK_TRACES = False + +if SUPPORTS_STACK_TRACES: + STACK_TRACE_TEMPLATE = '\nStack trace:\n*' +else: + STACK_TRACE_TEMPLATE = '' + +EXPECTED_NON_EMPTY_XML = """ + + + + + + + + + + + + + + + + + + + + ]]>%(stack)s]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +""" % {'stack': STACK_TRACE_TEMPLATE} + +EXPECTED_FILTERED_TEST_XML = """ + + + + +""" + +EXPECTED_EMPTY_XML = """ + +""" + +GTEST_PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath(GTEST_PROGRAM_NAME) + +SUPPORTS_TYPED_TESTS = 'TypedTest' in gtest_test_utils.Subprocess( + [GTEST_PROGRAM_PATH, GTEST_LIST_TESTS_FLAG], capture_stderr=False).output + + +class GTestXMLOutputUnitTest(gtest_xml_test_utils.GTestXMLTestCase): + """ + Unit test for Google Test's XML output functionality. + """ + + # This test currently breaks on platforms that do not support typed and + # type-parameterized tests, so we don't run it under them. + if SUPPORTS_TYPED_TESTS: + def testNonEmptyXmlOutput(self): + """ + Runs a test program that generates a non-empty XML output, and + tests that the XML output is expected. + """ + self._TestXmlOutput(GTEST_PROGRAM_NAME, EXPECTED_NON_EMPTY_XML, 1) + + def testEmptyXmlOutput(self): + """Verifies XML output for a Google Test binary without actual tests. + + Runs a test program that generates an empty XML output, and + tests that the XML output is expected. + """ + + self._TestXmlOutput('gtest_no_test_unittest', EXPECTED_EMPTY_XML, 0) + + def testTimestampValue(self): + """Checks whether the timestamp attribute in the XML output is valid. + + Runs a test program that generates an empty XML output, and checks if + the timestamp attribute in the testsuites tag is valid. + """ + actual = self._GetXmlOutput('gtest_no_test_unittest', [], 0) + date_time_str = actual.documentElement.getAttributeNode('timestamp').value + # datetime.strptime() is only available in Python 2.5+ so we have to + # parse the expected datetime manually. + match = re.match(r'(\d+)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)', date_time_str) + self.assertTrue( + re.match, + 'XML datettime string %s has incorrect format' % date_time_str) + date_time_from_xml = datetime.datetime( + year=int(match.group(1)), month=int(match.group(2)), + day=int(match.group(3)), hour=int(match.group(4)), + minute=int(match.group(5)), second=int(match.group(6))) + + time_delta = abs(datetime.datetime.now() - date_time_from_xml) + # timestamp value should be near the current local time + self.assertTrue(time_delta < datetime.timedelta(seconds=600), + 'time_delta is %s' % time_delta) + actual.unlink() + + def testDefaultOutputFile(self): + """ + Confirms that Google Test produces an XML output file with the expected + default name if no name is explicitly specified. + """ + output_file = os.path.join(gtest_test_utils.GetTempDir(), + GTEST_DEFAULT_OUTPUT_FILE) + gtest_prog_path = gtest_test_utils.GetTestExecutablePath( + 'gtest_no_test_unittest') + try: + os.remove(output_file) + except OSError, e: + if e.errno != errno.ENOENT: + raise + + p = gtest_test_utils.Subprocess( + [gtest_prog_path, '%s=xml' % GTEST_OUTPUT_FLAG], + working_dir=gtest_test_utils.GetTempDir()) + self.assert_(p.exited) + self.assertEquals(0, p.exit_code) + self.assert_(os.path.isfile(output_file)) + + def testSuppressedXmlOutput(self): + """ + Tests that no XML file is generated if the default XML listener is + shut down before RUN_ALL_TESTS is invoked. + """ + + xml_path = os.path.join(gtest_test_utils.GetTempDir(), + GTEST_PROGRAM_NAME + 'out.xml') + if os.path.isfile(xml_path): + os.remove(xml_path) + + command = [GTEST_PROGRAM_PATH, + '%s=xml:%s' % (GTEST_OUTPUT_FLAG, xml_path), + '--shut_down_xml'] + p = gtest_test_utils.Subprocess(command) + if p.terminated_by_signal: + # p.signal is avalable only if p.terminated_by_signal is True. + self.assertFalse( + p.terminated_by_signal, + '%s was killed by signal %d' % (GTEST_PROGRAM_NAME, p.signal)) + else: + self.assert_(p.exited) + self.assertEquals(1, p.exit_code, + "'%s' exited with code %s, which doesn't match " + 'the expected exit code %s.' + % (command, p.exit_code, 1)) + + self.assert_(not os.path.isfile(xml_path)) + + def testFilteredTestXmlOutput(self): + """Verifies XML output when a filter is applied. + + Runs a test program that executes only some tests and verifies that + non-selected tests do not show up in the XML output. + """ + + self._TestXmlOutput(GTEST_PROGRAM_NAME, EXPECTED_FILTERED_TEST_XML, 0, + extra_args=['%s=SuccessfulTest.*' % GTEST_FILTER_FLAG]) + + def _GetXmlOutput(self, gtest_prog_name, extra_args, expected_exit_code): + """ + Returns the xml output generated by running the program gtest_prog_name. + Furthermore, the program's exit code must be expected_exit_code. + """ + xml_path = os.path.join(gtest_test_utils.GetTempDir(), + gtest_prog_name + 'out.xml') + gtest_prog_path = gtest_test_utils.GetTestExecutablePath(gtest_prog_name) + + command = ([gtest_prog_path, '%s=xml:%s' % (GTEST_OUTPUT_FLAG, xml_path)] + + extra_args) + p = gtest_test_utils.Subprocess(command) + if p.terminated_by_signal: + self.assert_(False, + '%s was killed by signal %d' % (gtest_prog_name, p.signal)) + else: + self.assert_(p.exited) + self.assertEquals(expected_exit_code, p.exit_code, + "'%s' exited with code %s, which doesn't match " + 'the expected exit code %s.' + % (command, p.exit_code, expected_exit_code)) + actual = minidom.parse(xml_path) + return actual + + def _TestXmlOutput(self, gtest_prog_name, expected_xml, + expected_exit_code, extra_args=None): + """ + Asserts that the XML document generated by running the program + gtest_prog_name matches expected_xml, a string containing another + XML document. Furthermore, the program's exit code must be + expected_exit_code. + """ + + actual = self._GetXmlOutput(gtest_prog_name, extra_args or [], + expected_exit_code) + expected = minidom.parseString(expected_xml) + self.NormalizeXml(actual.documentElement) + self.AssertEquivalentNodes(expected.documentElement, + actual.documentElement) + expected.unlink() + actual.unlink() + + +if __name__ == '__main__': + os.environ['GTEST_STACK_TRACE_DEPTH'] = '1' + gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_output_unittest_.cc b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_output_unittest_.cc new file mode 100644 index 000000000..48b8771b5 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_output_unittest_.cc @@ -0,0 +1,181 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// Author: eefacm@gmail.com (Sean Mcafee) + +// Unit test for Google Test XML output. +// +// A user can specify XML output in a Google Test program to run via +// either the GTEST_OUTPUT environment variable or the --gtest_output +// flag. This is used for testing such functionality. +// +// This program will be invoked from a Python unit test. Don't run it +// directly. + +#include "gtest/gtest.h" + +using ::testing::InitGoogleTest; +using ::testing::TestEventListeners; +using ::testing::TestWithParam; +using ::testing::UnitTest; +using ::testing::Test; +using ::testing::Values; + +class SuccessfulTest : public Test { +}; + +TEST_F(SuccessfulTest, Succeeds) { + SUCCEED() << "This is a success."; + ASSERT_EQ(1, 1); +} + +class FailedTest : public Test { +}; + +TEST_F(FailedTest, Fails) { + ASSERT_EQ(1, 2); +} + +class DisabledTest : public Test { +}; + +TEST_F(DisabledTest, DISABLED_test_not_run) { + FAIL() << "Unexpected failure: Disabled test should not be run"; +} + +TEST(MixedResultTest, Succeeds) { + EXPECT_EQ(1, 1); + ASSERT_EQ(1, 1); +} + +TEST(MixedResultTest, Fails) { + EXPECT_EQ(1, 2); + ASSERT_EQ(2, 3); +} + +TEST(MixedResultTest, DISABLED_test) { + FAIL() << "Unexpected failure: Disabled test should not be run"; +} + +TEST(XmlQuotingTest, OutputsCData) { + FAIL() << "XML output: " + ""; +} + +// Helps to test that invalid characters produced by test code do not make +// it into the XML file. +TEST(InvalidCharactersTest, InvalidCharactersInMessage) { + FAIL() << "Invalid characters in brackets [\x1\x2]"; +} + +class PropertyRecordingTest : public Test { + public: + static void SetUpTestCase() { RecordProperty("SetUpTestCase", "yes"); } + static void TearDownTestCase() { RecordProperty("TearDownTestCase", "aye"); } +}; + +TEST_F(PropertyRecordingTest, OneProperty) { + RecordProperty("key_1", "1"); +} + +TEST_F(PropertyRecordingTest, IntValuedProperty) { + RecordProperty("key_int", 1); +} + +TEST_F(PropertyRecordingTest, ThreeProperties) { + RecordProperty("key_1", "1"); + RecordProperty("key_2", "2"); + RecordProperty("key_3", "3"); +} + +TEST_F(PropertyRecordingTest, TwoValuesForOneKeyUsesLastValue) { + RecordProperty("key_1", "1"); + RecordProperty("key_1", "2"); +} + +TEST(NoFixtureTest, RecordProperty) { + RecordProperty("key", "1"); +} + +void ExternalUtilityThatCallsRecordProperty(const std::string& key, int value) { + testing::Test::RecordProperty(key, value); +} + +void ExternalUtilityThatCallsRecordProperty(const std::string& key, + const std::string& value) { + testing::Test::RecordProperty(key, value); +} + +TEST(NoFixtureTest, ExternalUtilityThatCallsRecordIntValuedProperty) { + ExternalUtilityThatCallsRecordProperty("key_for_utility_int", 1); +} + +TEST(NoFixtureTest, ExternalUtilityThatCallsRecordStringValuedProperty) { + ExternalUtilityThatCallsRecordProperty("key_for_utility_string", "1"); +} + +// Verifies that the test parameter value is output in the 'value_param' +// XML attribute for value-parameterized tests. +class ValueParamTest : public TestWithParam {}; +TEST_P(ValueParamTest, HasValueParamAttribute) {} +TEST_P(ValueParamTest, AnotherTestThatHasValueParamAttribute) {} +INSTANTIATE_TEST_CASE_P(Single, ValueParamTest, Values(33, 42)); + +#if GTEST_HAS_TYPED_TEST +// Verifies that the type parameter name is output in the 'type_param' +// XML attribute for typed tests. +template class TypedTest : public Test {}; +typedef testing::Types TypedTestTypes; +TYPED_TEST_CASE(TypedTest, TypedTestTypes); +TYPED_TEST(TypedTest, HasTypeParamAttribute) {} +#endif + +#if GTEST_HAS_TYPED_TEST_P +// Verifies that the type parameter name is output in the 'type_param' +// XML attribute for type-parameterized tests. +template class TypeParameterizedTestCase : public Test {}; +TYPED_TEST_CASE_P(TypeParameterizedTestCase); +TYPED_TEST_P(TypeParameterizedTestCase, HasTypeParamAttribute) {} +REGISTER_TYPED_TEST_CASE_P(TypeParameterizedTestCase, HasTypeParamAttribute); +typedef testing::Types TypeParameterizedTestCaseTypes; +INSTANTIATE_TYPED_TEST_CASE_P(Single, + TypeParameterizedTestCase, + TypeParameterizedTestCaseTypes); +#endif + +int main(int argc, char** argv) { + InitGoogleTest(&argc, argv); + + if (argc > 1 && strcmp(argv[1], "--shut_down_xml") == 0) { + TestEventListeners& listeners = UnitTest::GetInstance()->listeners(); + delete listeners.Release(listeners.default_xml_generator()); + } + testing::Test::RecordProperty("ad_hoc_property", "42"); + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_test_utils.py b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_test_utils.py new file mode 100755 index 000000000..3d0c3b2c2 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/gtest_xml_test_utils.py @@ -0,0 +1,194 @@ +#!/usr/bin/env python +# +# Copyright 2006, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""Unit test utilities for gtest_xml_output""" + +__author__ = 'eefacm@gmail.com (Sean Mcafee)' + +import re +from xml.dom import minidom, Node + +import gtest_test_utils + + +GTEST_OUTPUT_FLAG = '--gtest_output' +GTEST_DEFAULT_OUTPUT_FILE = 'test_detail.xml' + +class GTestXMLTestCase(gtest_test_utils.TestCase): + """ + Base class for tests of Google Test's XML output functionality. + """ + + + def AssertEquivalentNodes(self, expected_node, actual_node): + """ + Asserts that actual_node (a DOM node object) is equivalent to + expected_node (another DOM node object), in that either both of + them are CDATA nodes and have the same value, or both are DOM + elements and actual_node meets all of the following conditions: + + * It has the same tag name as expected_node. + * It has the same set of attributes as expected_node, each with + the same value as the corresponding attribute of expected_node. + Exceptions are any attribute named "time", which needs only be + convertible to a floating-point number and any attribute named + "type_param" which only has to be non-empty. + * It has an equivalent set of child nodes (including elements and + CDATA sections) as expected_node. Note that we ignore the + order of the children as they are not guaranteed to be in any + particular order. + """ + + if expected_node.nodeType == Node.CDATA_SECTION_NODE: + self.assertEquals(Node.CDATA_SECTION_NODE, actual_node.nodeType) + self.assertEquals(expected_node.nodeValue, actual_node.nodeValue) + return + + self.assertEquals(Node.ELEMENT_NODE, actual_node.nodeType) + self.assertEquals(Node.ELEMENT_NODE, expected_node.nodeType) + self.assertEquals(expected_node.tagName, actual_node.tagName) + + expected_attributes = expected_node.attributes + actual_attributes = actual_node .attributes + self.assertEquals( + expected_attributes.length, actual_attributes.length, + 'attribute numbers differ in element %s:\nExpected: %r\nActual: %r' % ( + actual_node.tagName, expected_attributes.keys(), + actual_attributes.keys())) + for i in range(expected_attributes.length): + expected_attr = expected_attributes.item(i) + actual_attr = actual_attributes.get(expected_attr.name) + self.assert_( + actual_attr is not None, + 'expected attribute %s not found in element %s' % + (expected_attr.name, actual_node.tagName)) + self.assertEquals( + expected_attr.value, actual_attr.value, + ' values of attribute %s in element %s differ: %s vs %s' % + (expected_attr.name, actual_node.tagName, + expected_attr.value, actual_attr.value)) + + expected_children = self._GetChildren(expected_node) + actual_children = self._GetChildren(actual_node) + self.assertEquals( + len(expected_children), len(actual_children), + 'number of child elements differ in element ' + actual_node.tagName) + for child_id, child in expected_children.iteritems(): + self.assert_(child_id in actual_children, + '<%s> is not in <%s> (in element %s)' % + (child_id, actual_children, actual_node.tagName)) + self.AssertEquivalentNodes(child, actual_children[child_id]) + + identifying_attribute = { + 'testsuites': 'name', + 'testsuite': 'name', + 'testcase': 'name', + 'failure': 'message', + } + + def _GetChildren(self, element): + """ + Fetches all of the child nodes of element, a DOM Element object. + Returns them as the values of a dictionary keyed by the IDs of the + children. For , and elements, the ID + is the value of their "name" attribute; for elements, it is + the value of the "message" attribute; CDATA sections and non-whitespace + text nodes are concatenated into a single CDATA section with ID + "detail". An exception is raised if any element other than the above + four is encountered, if two child elements with the same identifying + attributes are encountered, or if any other type of node is encountered. + """ + + children = {} + for child in element.childNodes: + if child.nodeType == Node.ELEMENT_NODE: + self.assert_(child.tagName in self.identifying_attribute, + 'Encountered unknown element <%s>' % child.tagName) + childID = child.getAttribute(self.identifying_attribute[child.tagName]) + self.assert_(childID not in children) + children[childID] = child + elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]: + if 'detail' not in children: + if (child.nodeType == Node.CDATA_SECTION_NODE or + not child.nodeValue.isspace()): + children['detail'] = child.ownerDocument.createCDATASection( + child.nodeValue) + else: + children['detail'].nodeValue += child.nodeValue + else: + self.fail('Encountered unexpected node type %d' % child.nodeType) + return children + + def NormalizeXml(self, element): + """ + Normalizes Google Test's XML output to eliminate references to transient + information that may change from run to run. + + * The "time" attribute of , and + elements is replaced with a single asterisk, if it contains + only digit characters. + * The "timestamp" attribute of elements is replaced with a + single asterisk, if it contains a valid ISO8601 datetime value. + * The "type_param" attribute of elements is replaced with a + single asterisk (if it sn non-empty) as it is the type name returned + by the compiler and is platform dependent. + * The line info reported in the first line of the "message" + attribute and CDATA section of elements is replaced with the + file's basename and a single asterisk for the line number. + * The directory names in file paths are removed. + * The stack traces are removed. + """ + + if element.tagName == 'testsuites': + timestamp = element.getAttributeNode('timestamp') + timestamp.value = re.sub(r'^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d$', + '*', timestamp.value) + if element.tagName in ('testsuites', 'testsuite', 'testcase'): + time = element.getAttributeNode('time') + time.value = re.sub(r'^\d+(\.\d+)?$', '*', time.value) + type_param = element.getAttributeNode('type_param') + if type_param and type_param.value: + type_param.value = '*' + elif element.tagName == 'failure': + source_line_pat = r'^.*[/\\](.*:)\d+\n' + # Replaces the source line information with a normalized form. + message = element.getAttributeNode('message') + message.value = re.sub(source_line_pat, '\\1*\n', message.value) + for child in element.childNodes: + if child.nodeType == Node.CDATA_SECTION_NODE: + # Replaces the source line information with a normalized form. + cdata = re.sub(source_line_pat, '\\1*\n', child.nodeValue) + # Removes the actual stack trace. + child.nodeValue = re.sub(r'\nStack trace:\n(.|\n)*', + '', cdata) + for child in element.childNodes: + if child.nodeType == Node.ELEMENT_NODE: + self.NormalizeXml(child) diff --git a/cpp/thirdparty/gtest-1.7.0/test/production.cc b/cpp/thirdparty/gtest-1.7.0/test/production.cc new file mode 100644 index 000000000..8b8a40b44 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/production.cc @@ -0,0 +1,36 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// This is part of the unit test for include/gtest/gtest_prod.h. + +#include "production.h" + +PrivateCode::PrivateCode() : x_(0) {} diff --git a/cpp/thirdparty/gtest-1.7.0/test/production.h b/cpp/thirdparty/gtest-1.7.0/test/production.h new file mode 100644 index 000000000..98fd5e476 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/test/production.h @@ -0,0 +1,55 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// This is part of the unit test for include/gtest/gtest_prod.h. + +#ifndef GTEST_TEST_PRODUCTION_H_ +#define GTEST_TEST_PRODUCTION_H_ + +#include "gtest/gtest_prod.h" + +class PrivateCode { + public: + // Declares a friend test that does not use a fixture. + FRIEND_TEST(PrivateCodeTest, CanAccessPrivateMembers); + + // Declares a friend test that uses a fixture. + FRIEND_TEST(PrivateCodeFixtureTest, CanAccessPrivateMembers); + + PrivateCode(); + + int x() const { return x_; } + private: + void set_x(int an_x) { x_ = an_x; } + int x_; +}; + +#endif // GTEST_TEST_PRODUCTION_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Config/DebugProject.xcconfig b/cpp/thirdparty/gtest-1.7.0/xcode/Config/DebugProject.xcconfig new file mode 100644 index 000000000..3d68157d5 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Config/DebugProject.xcconfig @@ -0,0 +1,30 @@ +// +// DebugProject.xcconfig +// +// These are Debug Configuration project settings for the gtest framework and +// examples. It is set in the "Based On:" dropdown in the "Project" info +// dialog. +// This file is based on the Xcode Configuration files in: +// http://code.google.com/p/google-toolbox-for-mac/ +// + +#include "General.xcconfig" + +// No optimization +GCC_OPTIMIZATION_LEVEL = 0 + +// Deployment postprocessing is what triggers Xcode to strip, turn it off +DEPLOYMENT_POSTPROCESSING = NO + +// Dead code stripping off +DEAD_CODE_STRIPPING = NO + +// Debug symbols should be on obviously +GCC_GENERATE_DEBUGGING_SYMBOLS = YES + +// Define the DEBUG macro in all debug builds +OTHER_CFLAGS = $(OTHER_CFLAGS) -DDEBUG=1 + +// These are turned off to avoid STL incompatibilities with client code +// // Turns on special C++ STL checks to "encourage" good STL use +// GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) _GLIBCXX_DEBUG_PEDANTIC _GLIBCXX_DEBUG _GLIBCPP_CONCEPT_CHECKS diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig b/cpp/thirdparty/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig new file mode 100644 index 000000000..357b1c8fb --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig @@ -0,0 +1,17 @@ +// +// FrameworkTarget.xcconfig +// +// These are Framework target settings for the gtest framework and examples. It +// is set in the "Based On:" dropdown in the "Target" info dialog. +// This file is based on the Xcode Configuration files in: +// http://code.google.com/p/google-toolbox-for-mac/ +// + +// Dynamic libs need to be position independent +GCC_DYNAMIC_NO_PIC = NO + +// Dynamic libs should not have their external symbols stripped. +STRIP_STYLE = non-global + +// Let the user install by specifying the $DSTROOT with xcodebuild +SKIP_INSTALL = NO diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Config/General.xcconfig b/cpp/thirdparty/gtest-1.7.0/xcode/Config/General.xcconfig new file mode 100644 index 000000000..f23e32227 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Config/General.xcconfig @@ -0,0 +1,41 @@ +// +// General.xcconfig +// +// These are General configuration settings for the gtest framework and +// examples. +// This file is based on the Xcode Configuration files in: +// http://code.google.com/p/google-toolbox-for-mac/ +// + +// Build for PPC and Intel, 32- and 64-bit +ARCHS = i386 x86_64 ppc ppc64 + +// Zerolink prevents link warnings so turn it off +ZERO_LINK = NO + +// Prebinding considered unhelpful in 10.3 and later +PREBINDING = NO + +// Strictest warning policy +WARNING_CFLAGS = -Wall -Werror -Wendif-labels -Wnewline-eof -Wno-sign-compare -Wshadow + +// Work around Xcode bugs by using external strip. See: +// http://lists.apple.com/archives/Xcode-users/2006/Feb/msg00050.html +SEPARATE_STRIP = YES + +// Force C99 dialect +GCC_C_LANGUAGE_STANDARD = c99 + +// not sure why apple defaults this on, but it's pretty risky +ALWAYS_SEARCH_USER_PATHS = NO + +// Turn on position dependent code for most cases (overridden where appropriate) +GCC_DYNAMIC_NO_PIC = YES + +// Default SDK and minimum OS version is 10.4 +SDKROOT = $(DEVELOPER_SDK_DIR)/MacOSX10.4u.sdk +MACOSX_DEPLOYMENT_TARGET = 10.4 +GCC_VERSION = 4.0 + +// VERSIONING BUILD SETTINGS (used in Info.plist) +GTEST_VERSIONINFO_ABOUT = © 2008 Google Inc. diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig b/cpp/thirdparty/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig new file mode 100644 index 000000000..5349f0a04 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig @@ -0,0 +1,32 @@ +// +// ReleaseProject.xcconfig +// +// These are Release Configuration project settings for the gtest framework +// and examples. It is set in the "Based On:" dropdown in the "Project" info +// dialog. +// This file is based on the Xcode Configuration files in: +// http://code.google.com/p/google-toolbox-for-mac/ +// + +#include "General.xcconfig" + +// subconfig/Release.xcconfig + +// Optimize for space and size (Apple recommendation) +GCC_OPTIMIZATION_LEVEL = s + +// Deploment postprocessing is what triggers Xcode to strip +DEPLOYMENT_POSTPROCESSING = YES + +// No symbols +GCC_GENERATE_DEBUGGING_SYMBOLS = NO + +// Dead code strip does not affect ObjC code but can help for C +DEAD_CODE_STRIPPING = YES + +// NDEBUG is used by things like assert.h, so define it for general compat. +// ASSERT going away in release tends to create unused vars. +OTHER_CFLAGS = $(OTHER_CFLAGS) -DNDEBUG=1 -Wno-unused-variable + +// When we strip we want to strip all symbols in release, but save externals. +STRIP_STYLE = all diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig b/cpp/thirdparty/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig new file mode 100644 index 000000000..3922fa51d --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig @@ -0,0 +1,18 @@ +// +// StaticLibraryTarget.xcconfig +// +// These are static library target settings for libgtest.a. It +// is set in the "Based On:" dropdown in the "Target" info dialog. +// This file is based on the Xcode Configuration files in: +// http://code.google.com/p/google-toolbox-for-mac/ +// + +// Static libs can be included in bundles so make them position independent +GCC_DYNAMIC_NO_PIC = NO + +// Static libs should not have their internal globals or external symbols +// stripped. +STRIP_STYLE = debugging + +// Let the user install by specifying the $DSTROOT with xcodebuild +SKIP_INSTALL = NO diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Config/TestTarget.xcconfig b/cpp/thirdparty/gtest-1.7.0/xcode/Config/TestTarget.xcconfig new file mode 100644 index 000000000..e6652ba85 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Config/TestTarget.xcconfig @@ -0,0 +1,8 @@ +// +// TestTarget.xcconfig +// +// These are Test target settings for the gtest framework and examples. It +// is set in the "Based On:" dropdown in the "Target" info dialog. + +PRODUCT_NAME = $(TARGET_NAME) +HEADER_SEARCH_PATHS = ../include diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Resources/Info.plist b/cpp/thirdparty/gtest-1.7.0/xcode/Resources/Info.plist new file mode 100644 index 000000000..9dd28ea14 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Resources/Info.plist @@ -0,0 +1,30 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.google.${PRODUCT_NAME} + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + FMWK + CFBundleSignature + ???? + CFBundleVersion + GTEST_VERSIONINFO_LONG + CFBundleShortVersionString + GTEST_VERSIONINFO_SHORT + CFBundleGetInfoString + ${PRODUCT_NAME} GTEST_VERSIONINFO_LONG, ${GTEST_VERSIONINFO_ABOUT} + NSHumanReadableCopyright + ${GTEST_VERSIONINFO_ABOUT} + CSResourcesFileMapped + + + diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist new file mode 100644 index 000000000..f3852edea --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.google.gtest.${PRODUCT_NAME:identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + CSResourcesFileMapped + + + diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj new file mode 100644 index 000000000..497617eb6 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj @@ -0,0 +1,457 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXAggregateTarget section */ + 4024D162113D7D2400C7059E /* Test */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 4024D169113D7D4600C7059E /* Build configuration list for PBXAggregateTarget "Test" */; + buildPhases = ( + 4024D161113D7D2400C7059E /* ShellScript */, + ); + dependencies = ( + 4024D166113D7D3100C7059E /* PBXTargetDependency */, + ); + name = Test; + productName = TestAndBuild; + }; + 4024D1E9113D83FF00C7059E /* TestAndBuild */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 4024D1F0113D842B00C7059E /* Build configuration list for PBXAggregateTarget "TestAndBuild" */; + buildPhases = ( + ); + dependencies = ( + 4024D1ED113D840900C7059E /* PBXTargetDependency */, + 4024D1EF113D840D00C7059E /* PBXTargetDependency */, + ); + name = TestAndBuild; + productName = TestAndBuild; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 3B7EB1250E5AEE3500C7F239 /* widget.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B7EB1230E5AEE3500C7F239 /* widget.cc */; }; + 3B7EB1260E5AEE3500C7F239 /* widget.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B7EB1240E5AEE3500C7F239 /* widget.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B7EB1280E5AEE4600C7F239 /* widget_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B7EB1270E5AEE4600C7F239 /* widget_test.cc */; }; + 3B7EB1480E5AF3B400C7F239 /* Widget.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8D07F2C80486CC7A007CD1D0 /* Widget.framework */; }; + 4024D188113D7D7800C7059E /* libgtest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4024D185113D7D5500C7059E /* libgtest.a */; }; + 4024D189113D7D7A00C7059E /* libgtest_main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4024D183113D7D5500C7059E /* libgtest_main.a */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 3B07BDF00E3F3FAE00647869 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D07F2BC0486CC7A007CD1D0; + remoteInfo = gTestExample; + }; + 4024D165113D7D3100C7059E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3B07BDE90E3F3F9E00647869; + remoteInfo = WidgetFrameworkTest; + }; + 4024D1EC113D840900C7059E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D07F2BC0486CC7A007CD1D0; + remoteInfo = WidgetFramework; + }; + 4024D1EE113D840D00C7059E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4024D162113D7D2400C7059E; + remoteInfo = Test; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 3B07BDEA0E3F3F9E00647869 /* WidgetFrameworkTest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = WidgetFrameworkTest; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B7EB1230E5AEE3500C7F239 /* widget.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = widget.cc; sourceTree = ""; }; + 3B7EB1240E5AEE3500C7F239 /* widget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = widget.h; sourceTree = ""; }; + 3B7EB1270E5AEE4600C7F239 /* widget_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = widget_test.cc; sourceTree = ""; }; + 4024D183113D7D5500C7059E /* libgtest_main.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libgtest_main.a; path = /usr/local/lib/libgtest_main.a; sourceTree = ""; }; + 4024D185113D7D5500C7059E /* libgtest.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libgtest.a; path = /usr/local/lib/libgtest.a; sourceTree = ""; }; + 4024D1E2113D838200C7059E /* runtests.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = runtests.sh; sourceTree = ""; }; + 8D07F2C70486CC7A007CD1D0 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 8D07F2C80486CC7A007CD1D0 /* Widget.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Widget.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 3B07BDE80E3F3F9E00647869 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4024D189113D7D7A00C7059E /* libgtest_main.a in Frameworks */, + 4024D188113D7D7800C7059E /* libgtest.a in Frameworks */, + 3B7EB1480E5AF3B400C7F239 /* Widget.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8D07F2C30486CC7A007CD1D0 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 034768DDFF38A45A11DB9C8B /* Products */ = { + isa = PBXGroup; + children = ( + 8D07F2C80486CC7A007CD1D0 /* Widget.framework */, + 3B07BDEA0E3F3F9E00647869 /* WidgetFrameworkTest */, + ); + name = Products; + sourceTree = ""; + }; + 0867D691FE84028FC02AAC07 /* gTestExample */ = { + isa = PBXGroup; + children = ( + 4024D1E1113D836C00C7059E /* Scripts */, + 08FB77ACFE841707C02AAC07 /* Source */, + 089C1665FE841158C02AAC07 /* Resources */, + 3B07BE350E4094E400647869 /* Test */, + 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */, + 034768DDFF38A45A11DB9C8B /* Products */, + ); + name = gTestExample; + sourceTree = ""; + }; + 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */ = { + isa = PBXGroup; + children = ( + 4024D183113D7D5500C7059E /* libgtest_main.a */, + 4024D185113D7D5500C7059E /* libgtest.a */, + ); + name = "External Frameworks and Libraries"; + sourceTree = ""; + }; + 089C1665FE841158C02AAC07 /* Resources */ = { + isa = PBXGroup; + children = ( + 8D07F2C70486CC7A007CD1D0 /* Info.plist */, + ); + name = Resources; + sourceTree = ""; + }; + 08FB77ACFE841707C02AAC07 /* Source */ = { + isa = PBXGroup; + children = ( + 3B7EB1230E5AEE3500C7F239 /* widget.cc */, + 3B7EB1240E5AEE3500C7F239 /* widget.h */, + ); + name = Source; + sourceTree = ""; + }; + 3B07BE350E4094E400647869 /* Test */ = { + isa = PBXGroup; + children = ( + 3B7EB1270E5AEE4600C7F239 /* widget_test.cc */, + ); + name = Test; + sourceTree = ""; + }; + 4024D1E1113D836C00C7059E /* Scripts */ = { + isa = PBXGroup; + children = ( + 4024D1E2113D838200C7059E /* runtests.sh */, + ); + name = Scripts; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 8D07F2BD0486CC7A007CD1D0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 3B7EB1260E5AEE3500C7F239 /* widget.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 3B07BDE90E3F3F9E00647869 /* WidgetFrameworkTest */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3B07BDF40E3F3FB600647869 /* Build configuration list for PBXNativeTarget "WidgetFrameworkTest" */; + buildPhases = ( + 3B07BDE70E3F3F9E00647869 /* Sources */, + 3B07BDE80E3F3F9E00647869 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 3B07BDF10E3F3FAE00647869 /* PBXTargetDependency */, + ); + name = WidgetFrameworkTest; + productName = gTestExampleTest; + productReference = 3B07BDEA0E3F3F9E00647869 /* WidgetFrameworkTest */; + productType = "com.apple.product-type.tool"; + }; + 8D07F2BC0486CC7A007CD1D0 /* WidgetFramework */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4FADC24208B4156D00ABE55E /* Build configuration list for PBXNativeTarget "WidgetFramework" */; + buildPhases = ( + 8D07F2C10486CC7A007CD1D0 /* Sources */, + 8D07F2C30486CC7A007CD1D0 /* Frameworks */, + 8D07F2BD0486CC7A007CD1D0 /* Headers */, + 8D07F2BF0486CC7A007CD1D0 /* Resources */, + 8D07F2C50486CC7A007CD1D0 /* Rez */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = WidgetFramework; + productInstallPath = "$(HOME)/Library/Frameworks"; + productName = gTestExample; + productReference = 8D07F2C80486CC7A007CD1D0 /* Widget.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 0867D690FE84028FC02AAC07 /* Project object */ = { + isa = PBXProject; + buildConfigurationList = 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "WidgetFramework" */; + compatibilityVersion = "Xcode 2.4"; + hasScannedForEncodings = 1; + mainGroup = 0867D691FE84028FC02AAC07 /* gTestExample */; + productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8D07F2BC0486CC7A007CD1D0 /* WidgetFramework */, + 3B07BDE90E3F3F9E00647869 /* WidgetFrameworkTest */, + 4024D162113D7D2400C7059E /* Test */, + 4024D1E9113D83FF00C7059E /* TestAndBuild */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D07F2BF0486CC7A007CD1D0 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXRezBuildPhase section */ + 8D07F2C50486CC7A007CD1D0 /* Rez */ = { + isa = PBXRezBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXRezBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 4024D161113D7D2400C7059E /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/bash $SRCROOT/runtests.sh $BUILT_PRODUCTS_DIR/WidgetFrameworkTest\n"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 3B07BDE70E3F3F9E00647869 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3B7EB1280E5AEE4600C7F239 /* widget_test.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8D07F2C10486CC7A007CD1D0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3B7EB1250E5AEE3500C7F239 /* widget.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 3B07BDF10E3F3FAE00647869 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 8D07F2BC0486CC7A007CD1D0 /* WidgetFramework */; + targetProxy = 3B07BDF00E3F3FAE00647869 /* PBXContainerItemProxy */; + }; + 4024D166113D7D3100C7059E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 3B07BDE90E3F3F9E00647869 /* WidgetFrameworkTest */; + targetProxy = 4024D165113D7D3100C7059E /* PBXContainerItemProxy */; + }; + 4024D1ED113D840900C7059E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 8D07F2BC0486CC7A007CD1D0 /* WidgetFramework */; + targetProxy = 4024D1EC113D840900C7059E /* PBXContainerItemProxy */; + }; + 4024D1EF113D840D00C7059E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 4024D162113D7D2400C7059E /* Test */; + targetProxy = 4024D1EE113D840D00C7059E /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 3B07BDEC0E3F3F9F00647869 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = WidgetFrameworkTest; + }; + name = Debug; + }; + 3B07BDED0E3F3F9F00647869 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = WidgetFrameworkTest; + }; + name = Release; + }; + 4024D163113D7D2400C7059E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = TestAndBuild; + }; + name = Debug; + }; + 4024D164113D7D2400C7059E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = TestAndBuild; + }; + name = Release; + }; + 4024D1EA113D83FF00C7059E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = TestAndBuild; + }; + name = Debug; + }; + 4024D1EB113D83FF00C7059E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = TestAndBuild; + }; + name = Release; + }; + 4FADC24308B4156D00ABE55E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + FRAMEWORK_VERSION = A; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "@loader_path/../Frameworks"; + PRODUCT_NAME = Widget; + }; + name = Debug; + }; + 4FADC24408B4156D00ABE55E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + FRAMEWORK_VERSION = A; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "@loader_path/../Frameworks"; + PRODUCT_NAME = Widget; + }; + name = Release; + }; + 4FADC24708B4156D00ABE55E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_VERSION = 4.0; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Debug; + }; + 4FADC24808B4156D00ABE55E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_VERSION = 4.0; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 3B07BDF40E3F3FB600647869 /* Build configuration list for PBXNativeTarget "WidgetFrameworkTest" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3B07BDEC0E3F3F9F00647869 /* Debug */, + 3B07BDED0E3F3F9F00647869 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4024D169113D7D4600C7059E /* Build configuration list for PBXAggregateTarget "Test" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4024D163113D7D2400C7059E /* Debug */, + 4024D164113D7D2400C7059E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4024D1F0113D842B00C7059E /* Build configuration list for PBXAggregateTarget "TestAndBuild" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4024D1EA113D83FF00C7059E /* Debug */, + 4024D1EB113D83FF00C7059E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4FADC24208B4156D00ABE55E /* Build configuration list for PBXNativeTarget "WidgetFramework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4FADC24308B4156D00ABE55E /* Debug */, + 4FADC24408B4156D00ABE55E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "WidgetFramework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4FADC24708B4156D00ABE55E /* Debug */, + 4FADC24808B4156D00ABE55E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 0867D690FE84028FC02AAC07 /* Project object */; +} diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh new file mode 100644 index 000000000..4a0d413e5 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh @@ -0,0 +1,62 @@ +#!/bin/bash +# +# Copyright 2008, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Executes the samples and tests for the Google Test Framework. + +# Help the dynamic linker find the path to the libraries. +export DYLD_FRAMEWORK_PATH=$BUILT_PRODUCTS_DIR +export DYLD_LIBRARY_PATH=$BUILT_PRODUCTS_DIR + +# Create some executables. +test_executables=$@ + +# Now execute each one in turn keeping track of how many succeeded and failed. +succeeded=0 +failed=0 +failed_list=() +for test in ${test_executables[*]}; do + "$test" + result=$? + if [ $result -eq 0 ]; then + succeeded=$(( $succeeded + 1 )) + else + failed=$(( failed + 1 )) + failed_list="$failed_list $test" + fi +done + +# Report the successes and failures to the console. +echo "Tests complete with $succeeded successes and $failed failures." +if [ $failed -ne 0 ]; then + echo "The following tests failed:" + echo $failed_list +fi +exit $failed diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc new file mode 100644 index 000000000..bfc4e7fcf --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc @@ -0,0 +1,63 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: preston.a.jackson@gmail.com (Preston Jackson) +// +// Google Test - FrameworkSample +// widget.cc +// + +// Widget is a very simple class used for demonstrating the use of gtest + +#include "widget.h" + +Widget::Widget(int number, const std::string& name) + : number_(number), + name_(name) {} + +Widget::~Widget() {} + +float Widget::GetFloatValue() const { + return number_; +} + +int Widget::GetIntValue() const { + return static_cast(number_); +} + +std::string Widget::GetStringValue() const { + return name_; +} + +void Widget::GetCharPtrValue(char* buffer, size_t max_size) const { + // Copy the char* representation of name_ into buffer, up to max_size. + strncpy(buffer, name_.c_str(), max_size-1); + buffer[max_size-1] = '\0'; + return; +} diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h new file mode 100644 index 000000000..0c55cdc8c --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h @@ -0,0 +1,59 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: preston.a.jackson@gmail.com (Preston Jackson) +// +// Google Test - FrameworkSample +// widget.h +// + +// Widget is a very simple class used for demonstrating the use of gtest. It +// simply stores two values a string and an integer, which are returned via +// public accessors in multiple forms. + +#import + +class Widget { + public: + Widget(int number, const std::string& name); + ~Widget(); + + // Public accessors to number data + float GetFloatValue() const; + int GetIntValue() const; + + // Public accessors to the string data + std::string GetStringValue() const; + void GetCharPtrValue(char* buffer, size_t max_size) const; + + private: + // Data members + float number_; + std::string name_; +}; diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc new file mode 100644 index 000000000..872599421 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc @@ -0,0 +1,68 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: preston.a.jackson@gmail.com (Preston Jackson) +// +// Google Test - FrameworkSample +// widget_test.cc +// + +// This is a simple test file for the Widget class in the Widget.framework + +#include +#include "gtest/gtest.h" + +#include + +// This test verifies that the constructor sets the internal state of the +// Widget class correctly. +TEST(WidgetInitializerTest, TestConstructor) { + Widget widget(1.0f, "name"); + EXPECT_FLOAT_EQ(1.0f, widget.GetFloatValue()); + EXPECT_EQ(std::string("name"), widget.GetStringValue()); +} + +// This test verifies the conversion of the float and string values to int and +// char*, respectively. +TEST(WidgetInitializerTest, TestConversion) { + Widget widget(1.0f, "name"); + EXPECT_EQ(1, widget.GetIntValue()); + + size_t max_size = 128; + char buffer[max_size]; + widget.GetCharPtrValue(buffer, max_size); + EXPECT_STREQ("name", buffer); +} + +// Use the Google Test main that is linked into the framework. It does something +// like this: +// int main(int argc, char** argv) { +// testing::InitGoogleTest(&argc, argv); +// return RUN_ALL_TESTS(); +// } diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Scripts/runtests.sh b/cpp/thirdparty/gtest-1.7.0/xcode/Scripts/runtests.sh new file mode 100644 index 000000000..3fc229f1d --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Scripts/runtests.sh @@ -0,0 +1,65 @@ +#!/bin/bash +# +# Copyright 2008, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Executes the samples and tests for the Google Test Framework. + +# Help the dynamic linker find the path to the libraries. +export DYLD_FRAMEWORK_PATH=$BUILT_PRODUCTS_DIR +export DYLD_LIBRARY_PATH=$BUILT_PRODUCTS_DIR + +# Create some executables. +test_executables=("$BUILT_PRODUCTS_DIR/gtest_unittest-framework" + "$BUILT_PRODUCTS_DIR/gtest_unittest" + "$BUILT_PRODUCTS_DIR/sample1_unittest-framework" + "$BUILT_PRODUCTS_DIR/sample1_unittest-static") + +# Now execute each one in turn keeping track of how many succeeded and failed. +succeeded=0 +failed=0 +failed_list=() +for test in ${test_executables[*]}; do + "$test" + result=$? + if [ $result -eq 0 ]; then + succeeded=$(( $succeeded + 1 )) + else + failed=$(( failed + 1 )) + failed_list="$failed_list $test" + fi +done + +# Report the successes and failures to the console. +echo "Tests complete with $succeeded successes and $failed failures." +if [ $failed -ne 0 ]; then + echo "The following tests failed:" + echo $failed_list +fi +exit $failed diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/Scripts/versiongenerate.py b/cpp/thirdparty/gtest-1.7.0/xcode/Scripts/versiongenerate.py new file mode 100755 index 000000000..81de8c96a --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/Scripts/versiongenerate.py @@ -0,0 +1,100 @@ +#!/usr/bin/env python +# +# Copyright 2008, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""A script to prepare version informtion for use the gtest Info.plist file. + + This script extracts the version information from the configure.ac file and + uses it to generate a header file containing the same information. The + #defines in this header file will be included in during the generation of + the Info.plist of the framework, giving the correct value to the version + shown in the Finder. + + This script makes the following assumptions (these are faults of the script, + not problems with the Autoconf): + 1. The AC_INIT macro will be contained within the first 1024 characters + of configure.ac + 2. The version string will be 3 integers separated by periods and will be + surrounded by squre brackets, "[" and "]" (e.g. [1.0.1]). The first + segment represents the major version, the second represents the minor + version and the third represents the fix version. + 3. No ")" character exists between the opening "(" and closing ")" of + AC_INIT, including in comments and character strings. +""" + +import sys +import re + +# Read the command line argument (the output directory for Version.h) +if (len(sys.argv) < 3): + print "Usage: versiongenerate.py input_dir output_dir" + sys.exit(1) +else: + input_dir = sys.argv[1] + output_dir = sys.argv[2] + +# Read the first 1024 characters of the configure.ac file +config_file = open("%s/configure.ac" % input_dir, 'r') +buffer_size = 1024 +opening_string = config_file.read(buffer_size) +config_file.close() + +# Extract the version string from the AC_INIT macro +# The following init_expression means: +# Extract three integers separated by periods and surrounded by squre +# brackets(e.g. "[1.0.1]") between "AC_INIT(" and ")". Do not be greedy +# (*? is the non-greedy flag) since that would pull in everything between +# the first "(" and the last ")" in the file. +version_expression = re.compile(r"AC_INIT\(.*?\[(\d+)\.(\d+)\.(\d+)\].*?\)", + re.DOTALL) +version_values = version_expression.search(opening_string) +major_version = version_values.group(1) +minor_version = version_values.group(2) +fix_version = version_values.group(3) + +# Write the version information to a header file to be included in the +# Info.plist file. +file_data = """// +// DO NOT MODIFY THIS FILE (but you can delete it) +// +// This file is autogenerated by the versiongenerate.py script. This script +// is executed in a "Run Script" build phase when creating gtest.framework. This +// header file is not used during compilation of C-source. Rather, it simply +// defines some version strings for substitution in the Info.plist. Because of +// this, we are not not restricted to C-syntax nor are we using include guards. +// + +#define GTEST_VERSIONINFO_SHORT %s.%s +#define GTEST_VERSIONINFO_LONG %s.%s.%s + +""" % (major_version, minor_version, major_version, minor_version, fix_version) +version_file = open("%s/Version.h" % output_dir, 'w') +version_file.write(file_data) +version_file.close() diff --git a/cpp/thirdparty/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj b/cpp/thirdparty/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj new file mode 100644 index 000000000..0452a63d0 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj @@ -0,0 +1,1135 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXAggregateTarget section */ + 3B238F5F0E828B5400846E11 /* Check */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 3B238FA30E828BB600846E11 /* Build configuration list for PBXAggregateTarget "Check" */; + buildPhases = ( + 3B238F5E0E828B5400846E11 /* ShellScript */, + ); + dependencies = ( + 40899F9D0FFA740F000B29AE /* PBXTargetDependency */, + 40C849F7101A43440083642A /* PBXTargetDependency */, + 4089A0980FFAD34A000B29AE /* PBXTargetDependency */, + 40C849F9101A43490083642A /* PBXTargetDependency */, + ); + name = Check; + productName = Check; + }; + 40C44ADC0E3798F4008FCC51 /* Version Info */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 40C44AE40E379905008FCC51 /* Build configuration list for PBXAggregateTarget "Version Info" */; + buildPhases = ( + 40C44ADB0E3798F4008FCC51 /* Generate Version.h */, + ); + comments = "The generation of Version.h must be performed in its own target. Since the Info.plist is preprocessed before any of the other build phases in gtest, the Version.h file would not be ready if included as a build phase of that target."; + dependencies = ( + ); + name = "Version Info"; + productName = Version.h; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 224A12A30E9EADCC00BD17FD /* gtest-test-part.h in Headers */ = {isa = PBXBuildFile; fileRef = 224A12A20E9EADCC00BD17FD /* gtest-test-part.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BF6F2A00E79B5AD000F2EEE /* gtest-type-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 3BF6F29F0E79B5AD000F2EEE /* gtest-type-util.h */; }; + 3BF6F2A50E79B616000F2EEE /* gtest-typed-test.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF6F2A40E79B616000F2EEE /* gtest-typed-test.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 404884380E2F799B00CF7658 /* gtest-death-test.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883DB0E2F799B00CF7658 /* gtest-death-test.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 404884390E2F799B00CF7658 /* gtest-message.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883DC0E2F799B00CF7658 /* gtest-message.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4048843A0E2F799B00CF7658 /* gtest-spi.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883DD0E2F799B00CF7658 /* gtest-spi.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4048843B0E2F799B00CF7658 /* gtest.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883DE0E2F799B00CF7658 /* gtest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4048843C0E2F799B00CF7658 /* gtest_pred_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883DF0E2F799B00CF7658 /* gtest_pred_impl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4048843D0E2F799B00CF7658 /* gtest_prod.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883E00E2F799B00CF7658 /* gtest_prod.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 404884500E2F799B00CF7658 /* README in Resources */ = {isa = PBXBuildFile; fileRef = 404883F60E2F799B00CF7658 /* README */; }; + 404884A00E2F7BE600CF7658 /* gtest-death-test-internal.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 404883E20E2F799B00CF7658 /* gtest-death-test-internal.h */; }; + 404884A10E2F7BE600CF7658 /* gtest-filepath.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 404883E30E2F799B00CF7658 /* gtest-filepath.h */; }; + 404884A20E2F7BE600CF7658 /* gtest-internal.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 404883E40E2F799B00CF7658 /* gtest-internal.h */; }; + 404884A30E2F7BE600CF7658 /* gtest-port.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 404883E50E2F799B00CF7658 /* gtest-port.h */; }; + 404884A40E2F7BE600CF7658 /* gtest-string.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 404883E60E2F799B00CF7658 /* gtest-string.h */; }; + 404884AC0E2F7CD900CF7658 /* CHANGES in Resources */ = {isa = PBXBuildFile; fileRef = 404884A90E2F7CD900CF7658 /* CHANGES */; }; + 404884AD0E2F7CD900CF7658 /* CONTRIBUTORS in Resources */ = {isa = PBXBuildFile; fileRef = 404884AA0E2F7CD900CF7658 /* CONTRIBUTORS */; }; + 404884AE0E2F7CD900CF7658 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 404884AB0E2F7CD900CF7658 /* LICENSE */; }; + 40899F3A0FFA70D4000B29AE /* gtest-all.cc in Sources */ = {isa = PBXBuildFile; fileRef = 224A12A10E9EADA700BD17FD /* gtest-all.cc */; }; + 40899F500FFA7281000B29AE /* gtest-tuple.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 40899F4D0FFA7271000B29AE /* gtest-tuple.h */; }; + 40899F530FFA72A0000B29AE /* gtest_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B238C120E7FE13C00846E11 /* gtest_unittest.cc */; }; + 4089A0440FFAD1BE000B29AE /* sample1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4089A02C0FFACF7F000B29AE /* sample1.cc */; }; + 4089A0460FFAD1BE000B29AE /* sample1_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4089A02E0FFACF7F000B29AE /* sample1_unittest.cc */; }; + 40C848FF101A21150083642A /* gtest-all.cc in Sources */ = {isa = PBXBuildFile; fileRef = 224A12A10E9EADA700BD17FD /* gtest-all.cc */; }; + 40C84915101A21DF0083642A /* gtest_main.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4048840D0E2F799B00CF7658 /* gtest_main.cc */; }; + 40C84916101A235B0083642A /* libgtest_main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C8490B101A217E0083642A /* libgtest_main.a */; }; + 40C84921101A23AD0083642A /* libgtest_main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C8490B101A217E0083642A /* libgtest_main.a */; }; + 40C84978101A36540083642A /* libgtest_main.a in Resources */ = {isa = PBXBuildFile; fileRef = 40C8490B101A217E0083642A /* libgtest_main.a */; }; + 40C84980101A36850083642A /* gtest_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B238C120E7FE13C00846E11 /* gtest_unittest.cc */; }; + 40C84982101A36850083642A /* libgtest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C848FA101A209C0083642A /* libgtest.a */; }; + 40C84983101A36850083642A /* libgtest_main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C8490B101A217E0083642A /* libgtest_main.a */; }; + 40C8498F101A36A60083642A /* sample1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4089A02C0FFACF7F000B29AE /* sample1.cc */; }; + 40C84990101A36A60083642A /* sample1_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4089A02E0FFACF7F000B29AE /* sample1_unittest.cc */; }; + 40C84992101A36A60083642A /* libgtest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C848FA101A209C0083642A /* libgtest.a */; }; + 40C84993101A36A60083642A /* libgtest_main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C8490B101A217E0083642A /* libgtest_main.a */; }; + 40C849A2101A37050083642A /* gtest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4539C8FF0EC27F6400A70F4C /* gtest.framework */; }; + 40C849A4101A37150083642A /* gtest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4539C8FF0EC27F6400A70F4C /* gtest.framework */; }; + 4539C9340EC280AE00A70F4C /* gtest-param-test.h in Headers */ = {isa = PBXBuildFile; fileRef = 4539C9330EC280AE00A70F4C /* gtest-param-test.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4539C9380EC280E200A70F4C /* gtest-linked_ptr.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 4539C9350EC280E200A70F4C /* gtest-linked_ptr.h */; }; + 4539C9390EC280E200A70F4C /* gtest-param-util-generated.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 4539C9360EC280E200A70F4C /* gtest-param-util-generated.h */; }; + 4539C93A0EC280E200A70F4C /* gtest-param-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 4539C9370EC280E200A70F4C /* gtest-param-util.h */; }; + 4567C8181264FF71007740BE /* gtest-printers.h in Headers */ = {isa = PBXBuildFile; fileRef = 4567C8171264FF71007740BE /* gtest-printers.h */; settings = {ATTRIBUTES = (Public, ); }; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 40899F9C0FFA740F000B29AE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 40899F420FFA7184000B29AE; + remoteInfo = gtest_unittest; + }; + 4089A0970FFAD34A000B29AE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4089A0120FFACEFC000B29AE; + remoteInfo = sample1_unittest; + }; + 408BEC0F1046CFE900DEF522 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 40C848F9101A209C0083642A; + remoteInfo = "gtest-static"; + }; + 40C44AE50E379922008FCC51 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 40C44ADC0E3798F4008FCC51; + remoteInfo = Version.h; + }; + 40C8497C101A36850083642A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 40C848F9101A209C0083642A; + remoteInfo = "gtest-static"; + }; + 40C8497E101A36850083642A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 40C8490A101A217E0083642A; + remoteInfo = "gtest_main-static"; + }; + 40C8498B101A36A60083642A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 40C848F9101A209C0083642A; + remoteInfo = "gtest-static"; + }; + 40C8498D101A36A60083642A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 40C8490A101A217E0083642A; + remoteInfo = "gtest_main-static"; + }; + 40C8499B101A36DC0083642A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 40C8490A101A217E0083642A; + remoteInfo = "gtest_main-static"; + }; + 40C8499D101A36E50083642A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D07F2BC0486CC7A007CD1D0; + remoteInfo = "gtest-framework"; + }; + 40C8499F101A36F10083642A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D07F2BC0486CC7A007CD1D0; + remoteInfo = "gtest-framework"; + }; + 40C849F6101A43440083642A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 40C8497A101A36850083642A; + remoteInfo = "gtest_unittest-static"; + }; + 40C849F8101A43490083642A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 40C84989101A36A60083642A; + remoteInfo = "sample1_unittest-static"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 404884A50E2F7C0400CF7658 /* Copy Headers Internal */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = Headers/internal; + dstSubfolderSpec = 6; + files = ( + 404884A00E2F7BE600CF7658 /* gtest-death-test-internal.h in Copy Headers Internal */, + 404884A10E2F7BE600CF7658 /* gtest-filepath.h in Copy Headers Internal */, + 404884A20E2F7BE600CF7658 /* gtest-internal.h in Copy Headers Internal */, + 4539C9380EC280E200A70F4C /* gtest-linked_ptr.h in Copy Headers Internal */, + 4539C9390EC280E200A70F4C /* gtest-param-util-generated.h in Copy Headers Internal */, + 4539C93A0EC280E200A70F4C /* gtest-param-util.h in Copy Headers Internal */, + 404884A30E2F7BE600CF7658 /* gtest-port.h in Copy Headers Internal */, + 404884A40E2F7BE600CF7658 /* gtest-string.h in Copy Headers Internal */, + 40899F500FFA7281000B29AE /* gtest-tuple.h in Copy Headers Internal */, + 3BF6F2A00E79B5AD000F2EEE /* gtest-type-util.h in Copy Headers Internal */, + ); + name = "Copy Headers Internal"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 224A12A10E9EADA700BD17FD /* gtest-all.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "gtest-all.cc"; sourceTree = ""; }; + 224A12A20E9EADCC00BD17FD /* gtest-test-part.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = "gtest-test-part.h"; sourceTree = ""; }; + 3B238C120E7FE13C00846E11 /* gtest_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gtest_unittest.cc; sourceTree = ""; }; + 3B87D2100E96B92E000D1852 /* runtests.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = runtests.sh; sourceTree = ""; }; + 3BF6F29F0E79B5AD000F2EEE /* gtest-type-util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-type-util.h"; sourceTree = ""; }; + 3BF6F2A40E79B616000F2EEE /* gtest-typed-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-typed-test.h"; sourceTree = ""; }; + 403EE37C0E377822004BD1E2 /* versiongenerate.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = versiongenerate.py; sourceTree = ""; }; + 404883DB0E2F799B00CF7658 /* gtest-death-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-death-test.h"; sourceTree = ""; }; + 404883DC0E2F799B00CF7658 /* gtest-message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-message.h"; sourceTree = ""; }; + 404883DD0E2F799B00CF7658 /* gtest-spi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-spi.h"; sourceTree = ""; }; + 404883DE0E2F799B00CF7658 /* gtest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gtest.h; sourceTree = ""; }; + 404883DF0E2F799B00CF7658 /* gtest_pred_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gtest_pred_impl.h; sourceTree = ""; }; + 404883E00E2F799B00CF7658 /* gtest_prod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gtest_prod.h; sourceTree = ""; }; + 404883E20E2F799B00CF7658 /* gtest-death-test-internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-death-test-internal.h"; sourceTree = ""; }; + 404883E30E2F799B00CF7658 /* gtest-filepath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-filepath.h"; sourceTree = ""; }; + 404883E40E2F799B00CF7658 /* gtest-internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-internal.h"; sourceTree = ""; }; + 404883E50E2F799B00CF7658 /* gtest-port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-port.h"; sourceTree = ""; }; + 404883E60E2F799B00CF7658 /* gtest-string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-string.h"; sourceTree = ""; }; + 404883F60E2F799B00CF7658 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = README; path = ../README; sourceTree = SOURCE_ROOT; }; + 4048840D0E2F799B00CF7658 /* gtest_main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gtest_main.cc; sourceTree = ""; }; + 404884A90E2F7CD900CF7658 /* CHANGES */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = CHANGES; path = ../CHANGES; sourceTree = SOURCE_ROOT; }; + 404884AA0E2F7CD900CF7658 /* CONTRIBUTORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = CONTRIBUTORS; path = ../CONTRIBUTORS; sourceTree = SOURCE_ROOT; }; + 404884AB0E2F7CD900CF7658 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = SOURCE_ROOT; }; + 40899F430FFA7184000B29AE /* gtest_unittest-framework */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "gtest_unittest-framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 40899F4D0FFA7271000B29AE /* gtest-tuple.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-tuple.h"; sourceTree = ""; }; + 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = StaticLibraryTarget.xcconfig; sourceTree = ""; }; + 4089A0130FFACEFC000B29AE /* sample1_unittest-framework */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "sample1_unittest-framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4089A02C0FFACF7F000B29AE /* sample1.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sample1.cc; sourceTree = ""; }; + 4089A02D0FFACF7F000B29AE /* sample1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sample1.h; sourceTree = ""; }; + 4089A02E0FFACF7F000B29AE /* sample1_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sample1_unittest.cc; sourceTree = ""; }; + 40C848FA101A209C0083642A /* libgtest.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libgtest.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 40C8490B101A217E0083642A /* libgtest_main.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libgtest_main.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 40C84987101A36850083642A /* gtest_unittest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = gtest_unittest; sourceTree = BUILT_PRODUCTS_DIR; }; + 40C84997101A36A60083642A /* sample1_unittest-static */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "sample1_unittest-static"; sourceTree = BUILT_PRODUCTS_DIR; }; + 40D4CDF10E30E07400294801 /* DebugProject.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = DebugProject.xcconfig; sourceTree = ""; }; + 40D4CDF20E30E07400294801 /* FrameworkTarget.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = FrameworkTarget.xcconfig; sourceTree = ""; }; + 40D4CDF30E30E07400294801 /* General.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = General.xcconfig; sourceTree = ""; }; + 40D4CDF40E30E07400294801 /* ReleaseProject.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = ReleaseProject.xcconfig; sourceTree = ""; }; + 40D4CF510E30F5E200294801 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 4539C8FF0EC27F6400A70F4C /* gtest.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = gtest.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4539C9330EC280AE00A70F4C /* gtest-param-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-param-test.h"; sourceTree = ""; }; + 4539C9350EC280E200A70F4C /* gtest-linked_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-linked_ptr.h"; sourceTree = ""; }; + 4539C9360EC280E200A70F4C /* gtest-param-util-generated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-param-util-generated.h"; sourceTree = ""; }; + 4539C9370EC280E200A70F4C /* gtest-param-util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-param-util.h"; sourceTree = ""; }; + 4567C8171264FF71007740BE /* gtest-printers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-printers.h"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 40899F410FFA7184000B29AE /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 40C849A4101A37150083642A /* gtest.framework in Frameworks */, + 40C84916101A235B0083642A /* libgtest_main.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4089A0110FFACEFC000B29AE /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 40C849A2101A37050083642A /* gtest.framework in Frameworks */, + 40C84921101A23AD0083642A /* libgtest_main.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 40C84981101A36850083642A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 40C84982101A36850083642A /* libgtest.a in Frameworks */, + 40C84983101A36850083642A /* libgtest_main.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 40C84991101A36A60083642A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 40C84992101A36A60083642A /* libgtest.a in Frameworks */, + 40C84993101A36A60083642A /* libgtest_main.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 034768DDFF38A45A11DB9C8B /* Products */ = { + isa = PBXGroup; + children = ( + 4539C8FF0EC27F6400A70F4C /* gtest.framework */, + 40C848FA101A209C0083642A /* libgtest.a */, + 40C8490B101A217E0083642A /* libgtest_main.a */, + 40899F430FFA7184000B29AE /* gtest_unittest-framework */, + 40C84987101A36850083642A /* gtest_unittest */, + 4089A0130FFACEFC000B29AE /* sample1_unittest-framework */, + 40C84997101A36A60083642A /* sample1_unittest-static */, + ); + name = Products; + sourceTree = ""; + }; + 0867D691FE84028FC02AAC07 /* gtest */ = { + isa = PBXGroup; + children = ( + 40D4CDF00E30E07400294801 /* Config */, + 08FB77ACFE841707C02AAC07 /* Source */, + 40D4CF4E0E30F5E200294801 /* Resources */, + 403EE37B0E377822004BD1E2 /* Scripts */, + 034768DDFF38A45A11DB9C8B /* Products */, + ); + name = gtest; + sourceTree = ""; + }; + 08FB77ACFE841707C02AAC07 /* Source */ = { + isa = PBXGroup; + children = ( + 404884A90E2F7CD900CF7658 /* CHANGES */, + 404884AA0E2F7CD900CF7658 /* CONTRIBUTORS */, + 404884AB0E2F7CD900CF7658 /* LICENSE */, + 404883F60E2F799B00CF7658 /* README */, + 404883D90E2F799B00CF7658 /* include */, + 4089A02F0FFACF84000B29AE /* samples */, + 404884070E2F799B00CF7658 /* src */, + 3B238BF00E7FE13B00846E11 /* test */, + ); + name = Source; + sourceTree = ""; + }; + 3B238BF00E7FE13B00846E11 /* test */ = { + isa = PBXGroup; + children = ( + 3B238C120E7FE13C00846E11 /* gtest_unittest.cc */, + ); + name = test; + path = ../test; + sourceTree = SOURCE_ROOT; + }; + 403EE37B0E377822004BD1E2 /* Scripts */ = { + isa = PBXGroup; + children = ( + 403EE37C0E377822004BD1E2 /* versiongenerate.py */, + 3B87D2100E96B92E000D1852 /* runtests.sh */, + ); + path = Scripts; + sourceTree = ""; + }; + 404883D90E2F799B00CF7658 /* include */ = { + isa = PBXGroup; + children = ( + 404883DA0E2F799B00CF7658 /* gtest */, + ); + name = include; + path = ../include; + sourceTree = SOURCE_ROOT; + }; + 404883DA0E2F799B00CF7658 /* gtest */ = { + isa = PBXGroup; + children = ( + 404883E10E2F799B00CF7658 /* internal */, + 224A12A20E9EADCC00BD17FD /* gtest-test-part.h */, + 404883DB0E2F799B00CF7658 /* gtest-death-test.h */, + 404883DC0E2F799B00CF7658 /* gtest-message.h */, + 4539C9330EC280AE00A70F4C /* gtest-param-test.h */, + 4567C8171264FF71007740BE /* gtest-printers.h */, + 404883DD0E2F799B00CF7658 /* gtest-spi.h */, + 404883DE0E2F799B00CF7658 /* gtest.h */, + 404883DF0E2F799B00CF7658 /* gtest_pred_impl.h */, + 404883E00E2F799B00CF7658 /* gtest_prod.h */, + 3BF6F2A40E79B616000F2EEE /* gtest-typed-test.h */, + ); + path = gtest; + sourceTree = ""; + }; + 404883E10E2F799B00CF7658 /* internal */ = { + isa = PBXGroup; + children = ( + 404883E20E2F799B00CF7658 /* gtest-death-test-internal.h */, + 404883E30E2F799B00CF7658 /* gtest-filepath.h */, + 404883E40E2F799B00CF7658 /* gtest-internal.h */, + 4539C9350EC280E200A70F4C /* gtest-linked_ptr.h */, + 4539C9360EC280E200A70F4C /* gtest-param-util-generated.h */, + 4539C9370EC280E200A70F4C /* gtest-param-util.h */, + 404883E50E2F799B00CF7658 /* gtest-port.h */, + 404883E60E2F799B00CF7658 /* gtest-string.h */, + 40899F4D0FFA7271000B29AE /* gtest-tuple.h */, + 3BF6F29F0E79B5AD000F2EEE /* gtest-type-util.h */, + ); + path = internal; + sourceTree = ""; + }; + 404884070E2F799B00CF7658 /* src */ = { + isa = PBXGroup; + children = ( + 224A12A10E9EADA700BD17FD /* gtest-all.cc */, + 4048840D0E2F799B00CF7658 /* gtest_main.cc */, + ); + name = src; + path = ../src; + sourceTree = SOURCE_ROOT; + }; + 4089A02F0FFACF84000B29AE /* samples */ = { + isa = PBXGroup; + children = ( + 4089A02C0FFACF7F000B29AE /* sample1.cc */, + 4089A02D0FFACF7F000B29AE /* sample1.h */, + 4089A02E0FFACF7F000B29AE /* sample1_unittest.cc */, + ); + name = samples; + path = ../samples; + sourceTree = SOURCE_ROOT; + }; + 40D4CDF00E30E07400294801 /* Config */ = { + isa = PBXGroup; + children = ( + 40D4CDF10E30E07400294801 /* DebugProject.xcconfig */, + 40D4CDF20E30E07400294801 /* FrameworkTarget.xcconfig */, + 40D4CDF30E30E07400294801 /* General.xcconfig */, + 40D4CDF40E30E07400294801 /* ReleaseProject.xcconfig */, + 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */, + ); + path = Config; + sourceTree = ""; + }; + 40D4CF4E0E30F5E200294801 /* Resources */ = { + isa = PBXGroup; + children = ( + 40D4CF510E30F5E200294801 /* Info.plist */, + ); + path = Resources; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 8D07F2BD0486CC7A007CD1D0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 404884380E2F799B00CF7658 /* gtest-death-test.h in Headers */, + 404884390E2F799B00CF7658 /* gtest-message.h in Headers */, + 4539C9340EC280AE00A70F4C /* gtest-param-test.h in Headers */, + 4567C8181264FF71007740BE /* gtest-printers.h in Headers */, + 3BF6F2A50E79B616000F2EEE /* gtest-typed-test.h in Headers */, + 4048843A0E2F799B00CF7658 /* gtest-spi.h in Headers */, + 4048843B0E2F799B00CF7658 /* gtest.h in Headers */, + 4048843C0E2F799B00CF7658 /* gtest_pred_impl.h in Headers */, + 4048843D0E2F799B00CF7658 /* gtest_prod.h in Headers */, + 224A12A30E9EADCC00BD17FD /* gtest-test-part.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 40899F420FFA7184000B29AE /* gtest_unittest-framework */ = { + isa = PBXNativeTarget; + buildConfigurationList = 40899F4A0FFA71BC000B29AE /* Build configuration list for PBXNativeTarget "gtest_unittest-framework" */; + buildPhases = ( + 40899F400FFA7184000B29AE /* Sources */, + 40899F410FFA7184000B29AE /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 40C849A0101A36F10083642A /* PBXTargetDependency */, + ); + name = "gtest_unittest-framework"; + productName = gtest_unittest; + productReference = 40899F430FFA7184000B29AE /* gtest_unittest-framework */; + productType = "com.apple.product-type.tool"; + }; + 4089A0120FFACEFC000B29AE /* sample1_unittest-framework */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4089A0240FFACF01000B29AE /* Build configuration list for PBXNativeTarget "sample1_unittest-framework" */; + buildPhases = ( + 4089A0100FFACEFC000B29AE /* Sources */, + 4089A0110FFACEFC000B29AE /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 40C8499E101A36E50083642A /* PBXTargetDependency */, + ); + name = "sample1_unittest-framework"; + productName = sample1_unittest; + productReference = 4089A0130FFACEFC000B29AE /* sample1_unittest-framework */; + productType = "com.apple.product-type.tool"; + }; + 40C848F9101A209C0083642A /* gtest-static */ = { + isa = PBXNativeTarget; + buildConfigurationList = 40C84902101A212E0083642A /* Build configuration list for PBXNativeTarget "gtest-static" */; + buildPhases = ( + 40C848F7101A209C0083642A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "gtest-static"; + productName = "gtest-static"; + productReference = 40C848FA101A209C0083642A /* libgtest.a */; + productType = "com.apple.product-type.library.static"; + }; + 40C8490A101A217E0083642A /* gtest_main-static */ = { + isa = PBXNativeTarget; + buildConfigurationList = 40C84912101A21D20083642A /* Build configuration list for PBXNativeTarget "gtest_main-static" */; + buildPhases = ( + 40C84908101A217E0083642A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "gtest_main-static"; + productName = "gtest_main-static"; + productReference = 40C8490B101A217E0083642A /* libgtest_main.a */; + productType = "com.apple.product-type.library.static"; + }; + 40C8497A101A36850083642A /* gtest_unittest-static */ = { + isa = PBXNativeTarget; + buildConfigurationList = 40C84984101A36850083642A /* Build configuration list for PBXNativeTarget "gtest_unittest-static" */; + buildPhases = ( + 40C8497F101A36850083642A /* Sources */, + 40C84981101A36850083642A /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 40C8497B101A36850083642A /* PBXTargetDependency */, + 40C8497D101A36850083642A /* PBXTargetDependency */, + ); + name = "gtest_unittest-static"; + productName = gtest_unittest; + productReference = 40C84987101A36850083642A /* gtest_unittest */; + productType = "com.apple.product-type.tool"; + }; + 40C84989101A36A60083642A /* sample1_unittest-static */ = { + isa = PBXNativeTarget; + buildConfigurationList = 40C84994101A36A60083642A /* Build configuration list for PBXNativeTarget "sample1_unittest-static" */; + buildPhases = ( + 40C8498E101A36A60083642A /* Sources */, + 40C84991101A36A60083642A /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 40C8498A101A36A60083642A /* PBXTargetDependency */, + 40C8498C101A36A60083642A /* PBXTargetDependency */, + ); + name = "sample1_unittest-static"; + productName = sample1_unittest; + productReference = 40C84997101A36A60083642A /* sample1_unittest-static */; + productType = "com.apple.product-type.tool"; + }; + 8D07F2BC0486CC7A007CD1D0 /* gtest-framework */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4FADC24208B4156D00ABE55E /* Build configuration list for PBXNativeTarget "gtest-framework" */; + buildPhases = ( + 8D07F2C10486CC7A007CD1D0 /* Sources */, + 8D07F2BD0486CC7A007CD1D0 /* Headers */, + 404884A50E2F7C0400CF7658 /* Copy Headers Internal */, + 8D07F2BF0486CC7A007CD1D0 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 40C44AE60E379922008FCC51 /* PBXTargetDependency */, + 408BEC101046CFE900DEF522 /* PBXTargetDependency */, + 40C8499C101A36DC0083642A /* PBXTargetDependency */, + ); + name = "gtest-framework"; + productInstallPath = "$(HOME)/Library/Frameworks"; + productName = gtest; + productReference = 4539C8FF0EC27F6400A70F4C /* gtest.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 0867D690FE84028FC02AAC07 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0460; + }; + buildConfigurationList = 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "gtest" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + en, + ); + mainGroup = 0867D691FE84028FC02AAC07 /* gtest */; + productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8D07F2BC0486CC7A007CD1D0 /* gtest-framework */, + 40C848F9101A209C0083642A /* gtest-static */, + 40C8490A101A217E0083642A /* gtest_main-static */, + 40899F420FFA7184000B29AE /* gtest_unittest-framework */, + 40C8497A101A36850083642A /* gtest_unittest-static */, + 4089A0120FFACEFC000B29AE /* sample1_unittest-framework */, + 40C84989101A36A60083642A /* sample1_unittest-static */, + 3B238F5F0E828B5400846E11 /* Check */, + 40C44ADC0E3798F4008FCC51 /* Version Info */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D07F2BF0486CC7A007CD1D0 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 404884500E2F799B00CF7658 /* README in Resources */, + 404884AC0E2F7CD900CF7658 /* CHANGES in Resources */, + 404884AD0E2F7CD900CF7658 /* CONTRIBUTORS in Resources */, + 404884AE0E2F7CD900CF7658 /* LICENSE in Resources */, + 40C84978101A36540083642A /* libgtest_main.a in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B238F5E0E828B5400846E11 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# Remember, this \"Run Script\" build phase will be executed from $SRCROOT\n/bin/bash Scripts/runtests.sh"; + }; + 40C44ADB0E3798F4008FCC51 /* Generate Version.h */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "$(SRCROOT)/Scripts/versiongenerate.py", + "$(SRCROOT)/../configure.ac", + ); + name = "Generate Version.h"; + outputPaths = ( + "$(PROJECT_TEMP_DIR)/Version.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# Remember, this \"Run Script\" build phase will be executed from $SRCROOT\n/usr/bin/python Scripts/versiongenerate.py ../ $PROJECT_TEMP_DIR"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 40899F400FFA7184000B29AE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 40899F530FFA72A0000B29AE /* gtest_unittest.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4089A0100FFACEFC000B29AE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4089A0440FFAD1BE000B29AE /* sample1.cc in Sources */, + 4089A0460FFAD1BE000B29AE /* sample1_unittest.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 40C848F7101A209C0083642A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 40C848FF101A21150083642A /* gtest-all.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 40C84908101A217E0083642A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 40C84915101A21DF0083642A /* gtest_main.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 40C8497F101A36850083642A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 40C84980101A36850083642A /* gtest_unittest.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 40C8498E101A36A60083642A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 40C8498F101A36A60083642A /* sample1.cc in Sources */, + 40C84990101A36A60083642A /* sample1_unittest.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8D07F2C10486CC7A007CD1D0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 40899F3A0FFA70D4000B29AE /* gtest-all.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 40899F9D0FFA740F000B29AE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 40899F420FFA7184000B29AE /* gtest_unittest-framework */; + targetProxy = 40899F9C0FFA740F000B29AE /* PBXContainerItemProxy */; + }; + 4089A0980FFAD34A000B29AE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 4089A0120FFACEFC000B29AE /* sample1_unittest-framework */; + targetProxy = 4089A0970FFAD34A000B29AE /* PBXContainerItemProxy */; + }; + 408BEC101046CFE900DEF522 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 40C848F9101A209C0083642A /* gtest-static */; + targetProxy = 408BEC0F1046CFE900DEF522 /* PBXContainerItemProxy */; + }; + 40C44AE60E379922008FCC51 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 40C44ADC0E3798F4008FCC51 /* Version Info */; + targetProxy = 40C44AE50E379922008FCC51 /* PBXContainerItemProxy */; + }; + 40C8497B101A36850083642A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 40C848F9101A209C0083642A /* gtest-static */; + targetProxy = 40C8497C101A36850083642A /* PBXContainerItemProxy */; + }; + 40C8497D101A36850083642A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 40C8490A101A217E0083642A /* gtest_main-static */; + targetProxy = 40C8497E101A36850083642A /* PBXContainerItemProxy */; + }; + 40C8498A101A36A60083642A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 40C848F9101A209C0083642A /* gtest-static */; + targetProxy = 40C8498B101A36A60083642A /* PBXContainerItemProxy */; + }; + 40C8498C101A36A60083642A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 40C8490A101A217E0083642A /* gtest_main-static */; + targetProxy = 40C8498D101A36A60083642A /* PBXContainerItemProxy */; + }; + 40C8499C101A36DC0083642A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 40C8490A101A217E0083642A /* gtest_main-static */; + targetProxy = 40C8499B101A36DC0083642A /* PBXContainerItemProxy */; + }; + 40C8499E101A36E50083642A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 8D07F2BC0486CC7A007CD1D0 /* gtest-framework */; + targetProxy = 40C8499D101A36E50083642A /* PBXContainerItemProxy */; + }; + 40C849A0101A36F10083642A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 8D07F2BC0486CC7A007CD1D0 /* gtest-framework */; + targetProxy = 40C8499F101A36F10083642A /* PBXContainerItemProxy */; + }; + 40C849F7101A43440083642A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 40C8497A101A36850083642A /* gtest_unittest-static */; + targetProxy = 40C849F6101A43440083642A /* PBXContainerItemProxy */; + }; + 40C849F9101A43490083642A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 40C84989101A36A60083642A /* sample1_unittest-static */; + targetProxy = 40C849F8101A43490083642A /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 3B238F600E828B5400846E11 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + PRODUCT_NAME = Check; + SDKROOT = macosx; + }; + name = Debug; + }; + 3B238F610E828B5400846E11 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + PRODUCT_NAME = Check; + SDKROOT = macosx; + ZERO_LINK = NO; + }; + name = Release; + }; + 40899F450FFA7185000B29AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + HEADER_SEARCH_PATHS = ../; + PRODUCT_NAME = "gtest_unittest-framework"; + SDKROOT = macosx; + }; + name = Debug; + }; + 40899F460FFA7185000B29AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + HEADER_SEARCH_PATHS = ../; + PRODUCT_NAME = "gtest_unittest-framework"; + SDKROOT = macosx; + }; + name = Release; + }; + 4089A0150FFACEFD000B29AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + PRODUCT_NAME = "sample1_unittest-framework"; + SDKROOT = macosx; + }; + name = Debug; + }; + 4089A0160FFACEFD000B29AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + PRODUCT_NAME = "sample1_unittest-framework"; + SDKROOT = macosx; + }; + name = Release; + }; + 40C44ADF0E3798F4008FCC51 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + MACOSX_DEPLOYMENT_TARGET = 10.7; + PRODUCT_NAME = gtest; + SDKROOT = macosx; + TARGET_NAME = gtest; + }; + name = Debug; + }; + 40C44AE00E3798F4008FCC51 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + MACOSX_DEPLOYMENT_TARGET = 10.7; + PRODUCT_NAME = gtest; + SDKROOT = macosx; + TARGET_NAME = gtest; + }; + name = Release; + }; + 40C848FB101A209D0083642A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + GCC_INLINES_ARE_PRIVATE_EXTERN = YES; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + HEADER_SEARCH_PATHS = ( + ../, + ../include/, + ); + PRODUCT_NAME = gtest; + SDKROOT = macosx; + }; + name = Debug; + }; + 40C848FC101A209D0083642A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + GCC_INLINES_ARE_PRIVATE_EXTERN = YES; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + HEADER_SEARCH_PATHS = ( + ../, + ../include/, + ); + PRODUCT_NAME = gtest; + SDKROOT = macosx; + }; + name = Release; + }; + 40C8490E101A217F0083642A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + HEADER_SEARCH_PATHS = ( + ../, + ../include/, + ); + PRODUCT_NAME = gtest_main; + SDKROOT = macosx; + }; + name = Debug; + }; + 40C8490F101A217F0083642A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + HEADER_SEARCH_PATHS = ( + ../, + ../include/, + ); + PRODUCT_NAME = gtest_main; + SDKROOT = macosx; + }; + name = Release; + }; + 40C84985101A36850083642A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + HEADER_SEARCH_PATHS = ../; + PRODUCT_NAME = gtest_unittest; + SDKROOT = macosx; + }; + name = Debug; + }; + 40C84986101A36850083642A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + HEADER_SEARCH_PATHS = ../; + PRODUCT_NAME = gtest_unittest; + SDKROOT = macosx; + }; + name = Release; + }; + 40C84995101A36A60083642A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + PRODUCT_NAME = "sample1_unittest-static"; + SDKROOT = macosx; + }; + name = Debug; + }; + 40C84996101A36A60083642A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + PRODUCT_NAME = "sample1_unittest-static"; + SDKROOT = macosx; + }; + name = Release; + }; + 4FADC24308B4156D00ABE55E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 40D4CDF20E30E07400294801 /* FrameworkTarget.xcconfig */; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + HEADER_SEARCH_PATHS = ( + ../, + ../include/, + ); + INFOPLIST_FILE = Resources/Info.plist; + INFOPLIST_PREFIX_HEADER = "$(PROJECT_TEMP_DIR)/Version.h"; + INFOPLIST_PREPROCESS = YES; + PRODUCT_NAME = gtest; + SDKROOT = macosx; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 4FADC24408B4156D00ABE55E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 40D4CDF20E30E07400294801 /* FrameworkTarget.xcconfig */; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + HEADER_SEARCH_PATHS = ( + ../, + ../include/, + ); + INFOPLIST_FILE = Resources/Info.plist; + INFOPLIST_PREFIX_HEADER = "$(PROJECT_TEMP_DIR)/Version.h"; + INFOPLIST_PREPROCESS = YES; + PRODUCT_NAME = gtest; + SDKROOT = macosx; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; + 4FADC24708B4156D00ABE55E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 40D4CDF10E30E07400294801 /* DebugProject.xcconfig */; + buildSettings = { + }; + name = Debug; + }; + 4FADC24808B4156D00ABE55E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 40D4CDF40E30E07400294801 /* ReleaseProject.xcconfig */; + buildSettings = { + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 3B238FA30E828BB600846E11 /* Build configuration list for PBXAggregateTarget "Check" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3B238F600E828B5400846E11 /* Debug */, + 3B238F610E828B5400846E11 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 40899F4A0FFA71BC000B29AE /* Build configuration list for PBXNativeTarget "gtest_unittest-framework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 40899F450FFA7185000B29AE /* Debug */, + 40899F460FFA7185000B29AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4089A0240FFACF01000B29AE /* Build configuration list for PBXNativeTarget "sample1_unittest-framework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4089A0150FFACEFD000B29AE /* Debug */, + 4089A0160FFACEFD000B29AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 40C44AE40E379905008FCC51 /* Build configuration list for PBXAggregateTarget "Version Info" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 40C44ADF0E3798F4008FCC51 /* Debug */, + 40C44AE00E3798F4008FCC51 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 40C84902101A212E0083642A /* Build configuration list for PBXNativeTarget "gtest-static" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 40C848FB101A209D0083642A /* Debug */, + 40C848FC101A209D0083642A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 40C84912101A21D20083642A /* Build configuration list for PBXNativeTarget "gtest_main-static" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 40C8490E101A217F0083642A /* Debug */, + 40C8490F101A217F0083642A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 40C84984101A36850083642A /* Build configuration list for PBXNativeTarget "gtest_unittest-static" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 40C84985101A36850083642A /* Debug */, + 40C84986101A36850083642A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 40C84994101A36A60083642A /* Build configuration list for PBXNativeTarget "sample1_unittest-static" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 40C84995101A36A60083642A /* Debug */, + 40C84996101A36A60083642A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4FADC24208B4156D00ABE55E /* Build configuration list for PBXNativeTarget "gtest-framework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4FADC24308B4156D00ABE55E /* Debug */, + 4FADC24408B4156D00ABE55E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "gtest" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4FADC24708B4156D00ABE55E /* Debug */, + 4FADC24808B4156D00ABE55E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 0867D690FE84028FC02AAC07 /* Project object */; +} -- GitLab From 5a502da846ef8bda95816c972c36bcb983ed7805 Mon Sep 17 00:00:00 2001 From: Thorsten Schuett Date: Fri, 10 Oct 2014 14:27:31 +0200 Subject: [PATCH 137/192] delete gtest-1.5.0 --- cpp/thirdparty/gtest-1.5.0/.gitignore | 6 - cpp/thirdparty/gtest-1.5.0/CHANGES | 98 - cpp/thirdparty/gtest-1.5.0/CMakeLists.txt | 384 - cpp/thirdparty/gtest-1.5.0/CONTRIBUTORS | 36 - cpp/thirdparty/gtest-1.5.0/COPYING | 28 - cpp/thirdparty/gtest-1.5.0/Makefile.am | 284 - cpp/thirdparty/gtest-1.5.0/Makefile.in | 1237 - cpp/thirdparty/gtest-1.5.0/README | 417 - cpp/thirdparty/gtest-1.5.0/aclocal.m4 | 7701 ------ .../gtest-1.5.0/build-aux/.gitignore | 2 - .../gtest-1.5.0/build-aux/config.guess | 1516 -- .../gtest-1.5.0/build-aux/config.h.in | 62 - .../gtest-1.5.0/build-aux/config.sub | 1626 -- cpp/thirdparty/gtest-1.5.0/build-aux/depcomp | 589 - .../gtest-1.5.0/build-aux/install-sh | 519 - .../gtest-1.5.0/build-aux/ltmain.sh | 6964 ----- cpp/thirdparty/gtest-1.5.0/build-aux/missing | 367 - .../gtest-1.5.0/codegear/gtest.cbproj | 138 - .../gtest-1.5.0/codegear/gtest.groupproj | 54 - .../gtest-1.5.0/codegear/gtest_all.cc | 38 - .../gtest-1.5.0/codegear/gtest_link.cc | 40 - .../gtest-1.5.0/codegear/gtest_main.cbproj | 82 - .../codegear/gtest_unittest.cbproj | 88 - cpp/thirdparty/gtest-1.5.0/configure | 21137 ---------------- cpp/thirdparty/gtest-1.5.0/configure.ac | 67 - .../gtest-1.5.0/fused-src/gtest/.gitignore | 1 - .../gtest-1.5.0/fused-src/gtest/gtest-all.cc | 8510 ------- .../gtest-1.5.0/fused-src/gtest/gtest.h | 18007 ------------- .../gtest-1.5.0/fused-src/gtest/gtest_main.cc | 39 - .../include/gtest/gtest-death-test.h | 283 - .../gtest-1.5.0/include/gtest/gtest-message.h | 230 - .../include/gtest/gtest-param-test.h | 1392 - .../include/gtest/gtest-param-test.h.pump | 457 - .../gtest-1.5.0/include/gtest/gtest-spi.h | 232 - .../include/gtest/gtest-test-part.h | 176 - .../include/gtest/gtest-typed-test.h | 259 - .../gtest-1.5.0/include/gtest/gtest.h | 2052 -- .../include/gtest/gtest_pred_impl.h | 368 - .../gtest-1.5.0/include/gtest/gtest_prod.h | 58 - .../internal/gtest-death-test-internal.h | 275 - .../include/gtest/internal/gtest-filepath.h | 210 - .../include/gtest/internal/gtest-internal.h | 923 - .../include/gtest/internal/gtest-linked_ptr.h | 242 - .../internal/gtest-param-util-generated.h | 4820 ---- .../gtest-param-util-generated.h.pump | 301 - .../include/gtest/internal/gtest-param-util.h | 619 - .../include/gtest/internal/gtest-port.h | 1497 -- .../include/gtest/internal/gtest-string.h | 350 - .../include/gtest/internal/gtest-tuple.h | 968 - .../include/gtest/internal/gtest-tuple.h.pump | 336 - .../include/gtest/internal/gtest-type-util.h | 3321 --- .../gtest/internal/gtest-type-util.h.pump | 287 - cpp/thirdparty/gtest-1.5.0/m4/acx_pthread.m4 | 363 - cpp/thirdparty/gtest-1.5.0/m4/gtest.m4 | 74 - cpp/thirdparty/gtest-1.5.0/make/Makefile | 80 - cpp/thirdparty/gtest-1.5.0/msvc/gtest-md.sln | 45 - .../gtest-1.5.0/msvc/gtest-md.vcproj | 237 - cpp/thirdparty/gtest-1.5.0/msvc/gtest.sln | 45 - cpp/thirdparty/gtest-1.5.0/msvc/gtest.vcproj | 237 - .../gtest-1.5.0/msvc/gtest_main-md.vcproj | 165 - .../gtest-1.5.0/msvc/gtest_main.vcproj | 165 - .../msvc/gtest_prod_test-md.vcproj | 164 - .../gtest-1.5.0/msvc/gtest_prod_test.vcproj | 164 - .../gtest-1.5.0/msvc/gtest_unittest-md.vcproj | 147 - .../gtest-1.5.0/msvc/gtest_unittest.vcproj | 147 - cpp/thirdparty/gtest-1.5.0/samples/.gitignore | 6 - .../gtest-1.5.0/samples/prime_tables.h | 123 - cpp/thirdparty/gtest-1.5.0/samples/sample1.cc | 68 - cpp/thirdparty/gtest-1.5.0/samples/sample1.h | 43 - .../gtest-1.5.0/samples/sample10_unittest.cc | 145 - .../gtest-1.5.0/samples/sample1_unittest.cc | 153 - cpp/thirdparty/gtest-1.5.0/samples/sample2.cc | 56 - cpp/thirdparty/gtest-1.5.0/samples/sample2.h | 86 - .../gtest-1.5.0/samples/sample2_unittest.cc | 109 - .../gtest-1.5.0/samples/sample3-inl.h | 173 - .../gtest-1.5.0/samples/sample3_unittest.cc | 151 - cpp/thirdparty/gtest-1.5.0/samples/sample4.cc | 46 - cpp/thirdparty/gtest-1.5.0/samples/sample4.h | 53 - .../gtest-1.5.0/samples/sample4_unittest.cc | 45 - .../gtest-1.5.0/samples/sample5_unittest.cc | 199 - .../gtest-1.5.0/samples/sample6_unittest.cc | 224 - .../gtest-1.5.0/samples/sample7_unittest.cc | 132 - .../gtest-1.5.0/samples/sample8_unittest.cc | 173 - .../gtest-1.5.0/samples/sample9_unittest.cc | 160 - cpp/thirdparty/gtest-1.5.0/scripts/.gitignore | 1 - .../gtest-1.5.0/scripts/fuse_gtest_files.py | 250 - .../scripts/gen_gtest_pred_impl.py | 733 - .../gtest-1.5.0/scripts/gtest-config.in | 274 - cpp/thirdparty/gtest-1.5.0/scripts/pump.py | 835 - .../gtest-1.5.0/scripts/test/Makefile | 57 - cpp/thirdparty/gtest-1.5.0/src/.gitignore | 6 - cpp/thirdparty/gtest-1.5.0/src/gtest-all.cc | 47 - .../gtest-1.5.0/src/gtest-death-test.cc | 1172 - .../gtest-1.5.0/src/gtest-filepath.cc | 380 - .../gtest-1.5.0/src/gtest-internal-inl.h | 1074 - cpp/thirdparty/gtest-1.5.0/src/gtest-port.cc | 711 - .../gtest-1.5.0/src/gtest-test-part.cc | 110 - .../gtest-1.5.0/src/gtest-typed-test.cc | 110 - cpp/thirdparty/gtest-1.5.0/src/gtest.cc | 4704 ---- cpp/thirdparty/gtest-1.5.0/src/gtest_main.cc | 39 - cpp/thirdparty/gtest-1.5.0/test/.gitignore | 1 - .../gtest-1.5.0/test/gtest-death-test_test.cc | 1230 - .../gtest-1.5.0/test/gtest-filepath_test.cc | 690 - .../gtest-1.5.0/test/gtest-linked_ptr_test.cc | 154 - .../gtest-1.5.0/test/gtest-listener_test.cc | 313 - .../gtest-1.5.0/test/gtest-message_test.cc | 167 - .../gtest-1.5.0/test/gtest-options_test.cc | 212 - .../test/gtest-param-test2_test.cc | 65 - .../gtest-1.5.0/test/gtest-param-test_test.cc | 835 - .../gtest-1.5.0/test/gtest-param-test_test.h | 55 - .../gtest-1.5.0/test/gtest-port_test.cc | 1018 - .../gtest-1.5.0/test/gtest-test-part_test.cc | 208 - .../gtest-1.5.0/test/gtest-tuple_test.cc | 320 - .../test/gtest-typed-test2_test.cc | 45 - .../gtest-1.5.0/test/gtest-typed-test_test.cc | 360 - .../gtest-1.5.0/test/gtest-typed-test_test.h | 66 - .../test/gtest-unittest-api_test.cc | 343 - .../gtest-1.5.0/test/gtest_all_test.cc | 48 - .../test/gtest_break_on_failure_unittest.py | 218 - .../test/gtest_break_on_failure_unittest_.cc | 86 - .../gtest-1.5.0/test/gtest_color_test.py | 130 - .../gtest-1.5.0/test/gtest_color_test_.cc | 71 - .../gtest-1.5.0/test/gtest_env_var_test.py | 105 - .../gtest-1.5.0/test/gtest_env_var_test_.cc | 126 - .../test/gtest_environment_test.cc | 186 - .../gtest-1.5.0/test/gtest_filter_unittest.py | 633 - .../test/gtest_filter_unittest_.cc | 140 - .../gtest-1.5.0/test/gtest_help_test.py | 169 - .../gtest-1.5.0/test/gtest_help_test_.cc | 46 - .../test/gtest_list_tests_unittest.py | 177 - .../test/gtest_list_tests_unittest_.cc | 85 - .../gtest-1.5.0/test/gtest_main_unittest.cc | 45 - .../test/gtest_no_test_unittest.cc | 54 - .../gtest-1.5.0/test/gtest_output_test.py | 327 - .../gtest-1.5.0/test/gtest_output_test_.cc | 1135 - .../test/gtest_output_test_golden_lin.txt | 696 - .../test/gtest_output_test_golden_win.txt | 605 - .../test/gtest_pred_impl_unittest.cc | 2432 -- .../gtest-1.5.0/test/gtest_prod_test.cc | 57 - .../gtest-1.5.0/test/gtest_repeat_test.cc | 253 - .../gtest-1.5.0/test/gtest_shuffle_test.py | 325 - .../gtest-1.5.0/test/gtest_shuffle_test_.cc | 104 - .../test/gtest_sole_header_test.cc | 57 - .../gtest-1.5.0/test/gtest_stress_test.cc | 257 - .../gtest-1.5.0/test/gtest_test_utils.py | 309 - .../test/gtest_throw_on_failure_ex_test.cc | 92 - .../test/gtest_throw_on_failure_test.py | 171 - .../test/gtest_throw_on_failure_test_.cc | 56 - .../test/gtest_uninitialized_test.py | 70 - .../test/gtest_uninitialized_test_.cc | 43 - .../gtest-1.5.0/test/gtest_unittest.cc | 6718 ----- .../test/gtest_xml_outfile1_test_.cc | 49 - .../test/gtest_xml_outfile2_test_.cc | 49 - .../test/gtest_xml_outfiles_test.py | 132 - .../test/gtest_xml_output_unittest.py | 224 - .../test/gtest_xml_output_unittest_.cc | 145 - .../gtest-1.5.0/test/gtest_xml_test_utils.py | 172 - cpp/thirdparty/gtest-1.5.0/test/production.cc | 36 - cpp/thirdparty/gtest-1.5.0/test/production.h | 55 - .../gtest-1.5.0/test/run_tests_util.py | 466 - .../gtest-1.5.0/test/run_tests_util_test.py | 676 - .../xcode/Config/DebugProject.xcconfig | 30 - .../xcode/Config/FrameworkTarget.xcconfig | 17 - .../gtest-1.5.0/xcode/Config/General.xcconfig | 41 - .../xcode/Config/ReleaseProject.xcconfig | 32 - .../xcode/Config/StaticLibraryTarget.xcconfig | 18 - .../xcode/Config/TestTarget.xcconfig | 8 - .../gtest-1.5.0/xcode/Resources/Info.plist | 30 - .../xcode/Samples/FrameworkSample/Info.plist | 28 - .../WidgetFramework.xcodeproj/project.pbxproj | 457 - .../xcode/Samples/FrameworkSample/runtests.sh | 62 - .../xcode/Samples/FrameworkSample/widget.cc | 63 - .../xcode/Samples/FrameworkSample/widget.h | 59 - .../Samples/FrameworkSample/widget_test.cc | 68 - .../gtest-1.5.0/xcode/Scripts/runtests.sh | 65 - .../xcode/Scripts/versiongenerate.py | 100 - .../xcode/gtest.xcodeproj/project.pbxproj | 1080 - 177 files changed, 130644 deletions(-) delete mode 100644 cpp/thirdparty/gtest-1.5.0/.gitignore delete mode 100644 cpp/thirdparty/gtest-1.5.0/CHANGES delete mode 100644 cpp/thirdparty/gtest-1.5.0/CMakeLists.txt delete mode 100644 cpp/thirdparty/gtest-1.5.0/CONTRIBUTORS delete mode 100644 cpp/thirdparty/gtest-1.5.0/COPYING delete mode 100644 cpp/thirdparty/gtest-1.5.0/Makefile.am delete mode 100644 cpp/thirdparty/gtest-1.5.0/Makefile.in delete mode 100644 cpp/thirdparty/gtest-1.5.0/README delete mode 100644 cpp/thirdparty/gtest-1.5.0/aclocal.m4 delete mode 100644 cpp/thirdparty/gtest-1.5.0/build-aux/.gitignore delete mode 100755 cpp/thirdparty/gtest-1.5.0/build-aux/config.guess delete mode 100644 cpp/thirdparty/gtest-1.5.0/build-aux/config.h.in delete mode 100755 cpp/thirdparty/gtest-1.5.0/build-aux/config.sub delete mode 100755 cpp/thirdparty/gtest-1.5.0/build-aux/depcomp delete mode 100755 cpp/thirdparty/gtest-1.5.0/build-aux/install-sh delete mode 100644 cpp/thirdparty/gtest-1.5.0/build-aux/ltmain.sh delete mode 100755 cpp/thirdparty/gtest-1.5.0/build-aux/missing delete mode 100644 cpp/thirdparty/gtest-1.5.0/codegear/gtest.cbproj delete mode 100644 cpp/thirdparty/gtest-1.5.0/codegear/gtest.groupproj delete mode 100644 cpp/thirdparty/gtest-1.5.0/codegear/gtest_all.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/codegear/gtest_link.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/codegear/gtest_main.cbproj delete mode 100644 cpp/thirdparty/gtest-1.5.0/codegear/gtest_unittest.cbproj delete mode 100755 cpp/thirdparty/gtest-1.5.0/configure delete mode 100644 cpp/thirdparty/gtest-1.5.0/configure.ac delete mode 100644 cpp/thirdparty/gtest-1.5.0/fused-src/gtest/.gitignore delete mode 100644 cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest-all.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest_main.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-death-test.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-message.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-param-test.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-param-test.h.pump delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-spi.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-test-part.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-typed-test.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/gtest.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/gtest_pred_impl.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/gtest_prod.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-death-test-internal.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-filepath.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-internal.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-linked_ptr.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util-generated.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util-generated.h.pump delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-port.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-string.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-tuple.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-tuple.h.pump delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-type-util.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-type-util.h.pump delete mode 100644 cpp/thirdparty/gtest-1.5.0/m4/acx_pthread.m4 delete mode 100644 cpp/thirdparty/gtest-1.5.0/m4/gtest.m4 delete mode 100644 cpp/thirdparty/gtest-1.5.0/make/Makefile delete mode 100755 cpp/thirdparty/gtest-1.5.0/msvc/gtest-md.sln delete mode 100755 cpp/thirdparty/gtest-1.5.0/msvc/gtest-md.vcproj delete mode 100755 cpp/thirdparty/gtest-1.5.0/msvc/gtest.sln delete mode 100755 cpp/thirdparty/gtest-1.5.0/msvc/gtest.vcproj delete mode 100755 cpp/thirdparty/gtest-1.5.0/msvc/gtest_main-md.vcproj delete mode 100755 cpp/thirdparty/gtest-1.5.0/msvc/gtest_main.vcproj delete mode 100755 cpp/thirdparty/gtest-1.5.0/msvc/gtest_prod_test-md.vcproj delete mode 100755 cpp/thirdparty/gtest-1.5.0/msvc/gtest_prod_test.vcproj delete mode 100755 cpp/thirdparty/gtest-1.5.0/msvc/gtest_unittest-md.vcproj delete mode 100755 cpp/thirdparty/gtest-1.5.0/msvc/gtest_unittest.vcproj delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/.gitignore delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/prime_tables.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample1.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample1.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample10_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample1_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample2.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample2.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample2_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample3-inl.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample3_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample4.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample4.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample4_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample5_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample6_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample7_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample8_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/samples/sample9_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/scripts/.gitignore delete mode 100755 cpp/thirdparty/gtest-1.5.0/scripts/fuse_gtest_files.py delete mode 100755 cpp/thirdparty/gtest-1.5.0/scripts/gen_gtest_pred_impl.py delete mode 100755 cpp/thirdparty/gtest-1.5.0/scripts/gtest-config.in delete mode 100755 cpp/thirdparty/gtest-1.5.0/scripts/pump.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/scripts/test/Makefile delete mode 100644 cpp/thirdparty/gtest-1.5.0/src/.gitignore delete mode 100644 cpp/thirdparty/gtest-1.5.0/src/gtest-all.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/src/gtest-death-test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/src/gtest-filepath.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/src/gtest-internal-inl.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/src/gtest-port.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/src/gtest-test-part.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/src/gtest-typed-test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/src/gtest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/src/gtest_main.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/.gitignore delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-death-test_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-filepath_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-linked_ptr_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-listener_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-message_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-options_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-param-test2_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-param-test_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-param-test_test.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-port_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-test-part_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-tuple_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test2_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test_test.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest-unittest-api_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_all_test.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_break_on_failure_unittest.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_break_on_failure_unittest_.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_color_test.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_color_test_.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_env_var_test.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_env_var_test_.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_environment_test.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_filter_unittest.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_filter_unittest_.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_help_test.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_help_test_.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_list_tests_unittest.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_list_tests_unittest_.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_main_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_no_test_unittest.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_output_test.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_golden_lin.txt delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_golden_win.txt delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_pred_impl_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_prod_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_repeat_test.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_shuffle_test.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_shuffle_test_.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_sole_header_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_stress_test.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_test_utils.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_ex_test.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_test.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_test_.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_uninitialized_test.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_uninitialized_test_.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_unittest.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfile1_test_.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfile2_test_.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfiles_test.py delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_xml_output_unittest.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/gtest_xml_output_unittest_.cc delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/gtest_xml_test_utils.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/production.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/test/production.h delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/run_tests_util.py delete mode 100755 cpp/thirdparty/gtest-1.5.0/test/run_tests_util_test.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Config/DebugProject.xcconfig delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Config/FrameworkTarget.xcconfig delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Config/General.xcconfig delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Config/ReleaseProject.xcconfig delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Config/StaticLibraryTarget.xcconfig delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Config/TestTarget.xcconfig delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Resources/Info.plist delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/Info.plist delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/runtests.sh delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget.h delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget_test.cc delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/Scripts/runtests.sh delete mode 100755 cpp/thirdparty/gtest-1.5.0/xcode/Scripts/versiongenerate.py delete mode 100644 cpp/thirdparty/gtest-1.5.0/xcode/gtest.xcodeproj/project.pbxproj diff --git a/cpp/thirdparty/gtest-1.5.0/.gitignore b/cpp/thirdparty/gtest-1.5.0/.gitignore deleted file mode 100644 index 9dc198501..000000000 --- a/cpp/thirdparty/gtest-1.5.0/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/config.log -/config.status -/libtool -/Makefile -/lib -/autom4te.cache diff --git a/cpp/thirdparty/gtest-1.5.0/CHANGES b/cpp/thirdparty/gtest-1.5.0/CHANGES deleted file mode 100644 index e574415ee..000000000 --- a/cpp/thirdparty/gtest-1.5.0/CHANGES +++ /dev/null @@ -1,98 +0,0 @@ -Changes for 1.5.0: - - * New feature: assertions can be safely called in multiple threads - where the pthreads library is available. - * New feature: predicates used inside EXPECT_TRUE() and friends - can now generate custom failure messages. - * New feature: Google Test can now be compiled as a DLL. - * New feature: fused source files are included. - * New feature: prints help when encountering unrecognized Google Test flags. - * Experimental feature: CMake build script (requires CMake 2.6.4+). - * Experimental feature: the Pump script for meta programming. - * double values streamed to an assertion are printed with enough precision - to differentiate any two different values. - * Google Test now works on Solaris and AIX. - * Build and test script improvements. - * Bug fixes and implementation clean-ups. - - Potentially breaking changes: - - * Stopped supporting VC++ 7.1 with exceptions disabled. - * Dropped support for 'make install'. - -Changes for 1.4.0: - - * New feature: the event listener API - * New feature: test shuffling - * New feature: the XML report format is closer to junitreport and can - be parsed by Hudson now. - * New feature: when a test runs under Visual Studio, its failures are - integrated in the IDE. - * New feature: /MD(d) versions of VC++ projects. - * New feature: elapsed time for the tests is printed by default. - * New feature: comes with a TR1 tuple implementation such that Boost - is no longer needed for Combine(). - * New feature: EXPECT_DEATH_IF_SUPPORTED macro and friends. - * New feature: the Xcode project can now produce static gtest - libraries in addition to a framework. - * Compatibility fixes for Solaris, Cygwin, minGW, Windows Mobile, - Symbian, gcc, and C++Builder. - * Bug fixes and implementation clean-ups. - -Changes for 1.3.0: - - * New feature: death tests on Windows, Cygwin, and Mac. - * New feature: ability to use Google Test assertions in other testing - frameworks. - * New feature: ability to run disabled test via - --gtest_also_run_disabled_tests. - * New feature: the --help flag for printing the usage. - * New feature: access to Google Test flag values in user code. - * New feature: a script that packs Google Test into one .h and one - .cc file for easy deployment. - * New feature: support for distributing test functions to multiple - machines (requires support from the test runner). - * Bug fixes and implementation clean-ups. - -Changes for 1.2.1: - - * Compatibility fixes for Linux IA-64 and IBM z/OS. - * Added support for using Boost and other TR1 implementations. - * Changes to the build scripts to support upcoming release of Google C++ - Mocking Framework. - * Added Makefile to the distribution package. - * Improved build instructions in README. - -Changes for 1.2.0: - - * New feature: value-parameterized tests. - * New feature: the ASSERT/EXPECT_(NON)FATAL_FAILURE(_ON_ALL_THREADS) - macros. - * Changed the XML report format to match JUnit/Ant's. - * Added tests to the Xcode project. - * Added scons/SConscript for building with SCons. - * Added src/gtest-all.cc for building Google Test from a single file. - * Fixed compatibility with Solaris and z/OS. - * Enabled running Python tests on systems with python 2.3 installed, - e.g. Mac OS X 10.4. - * Bug fixes. - -Changes for 1.1.0: - - * New feature: type-parameterized tests. - * New feature: exception assertions. - * New feature: printing elapsed time of tests. - * Improved the robustness of death tests. - * Added an Xcode project and samples. - * Adjusted the output format on Windows to be understandable by Visual Studio. - * Minor bug fixes. - -Changes for 1.0.1: - - * Added project files for Visual Studio 7.1. - * Fixed issues with compiling on Mac OS X. - * Fixed issues with compiling on Cygwin. - -Changes for 1.0.0: - - * Initial Open Source release of Google Test diff --git a/cpp/thirdparty/gtest-1.5.0/CMakeLists.txt b/cpp/thirdparty/gtest-1.5.0/CMakeLists.txt deleted file mode 100644 index 7910b5df2..000000000 --- a/cpp/thirdparty/gtest-1.5.0/CMakeLists.txt +++ /dev/null @@ -1,384 +0,0 @@ -######################################################################## -# Experimental CMake build script for Google Test. -# -# Consider this a prototype. It will change drastically. For now, -# this is only for people on the cutting edge. -# -# To run the tests for Google Test itself on Linux, use 'make test' or -# ctest. You can select which tests to run using 'ctest -R regex'. -# For more options, run 'ctest --help'. - -# For hermetic builds, we may need to tell CMake to use compiler in a -# specific location. -if (gtest_compiler) - include(CMakeForceCompiler) - cmake_force_c_compiler("${gtest_compiler}" "") - cmake_force_cxx_compiler("${gtest_compiler}" "") -endif() - -######################################################################## -# -# Project-wide settings - -# Name of the project. -# -# CMake files in this project can refer to the root source directory -# as ${gtest_SOURCE_DIR} and to the root binary directory as -# ${gtest_BINARY_DIR}. -# Language "C" is required for find_package(Threads). -project(gtest CXX C) -cmake_minimum_required(VERSION 2.6.4) - -if (MSVC) - # For MSVC, CMake sets certain flags to defaults we want to override. - # This replacement code is taken from sample in the CMake Wiki at - # http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace. - foreach (flag_var - CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE - CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO) - # In hermetic build environments, tests may not have access to MS runtime - # DLLs, so this replaces /MD (CRT libraries in DLLs) with /MT (static CRT - # libraries). - string(REPLACE "/MD" "-MT" ${flag_var} "${${flag_var}}") - # We prefer more strict warning checking for building Google Test. - # Replaces /W3 with /W4 in defaults. - string(REPLACE "/W3" "-W4" ${flag_var} "${${flag_var}}") - endforeach() -endif() - -# Where gtest's .h files can be found. -include_directories( - ${gtest_SOURCE_DIR}/include - ${gtest_SOURCE_DIR}) - -# Where the gtest libraries can be found. -link_directories( - ${gtest_BINARY_DIR}/src) - -# Defines CMAKE_USE_PTHREADS_INIT and CMAKE_THREAD_LIBS_INIT. -find_package(Threads) - -# Defines the compiler/linker flags used to build gtest. You can -# tweak these definitions to suit your need. A variable's value is -# empty before it's explicitly assigned to. - -if (MSVC) - # Newlines inside flags variables break CMake's NMake generator. - set(cxx_base_flags "-GS -W4 -WX -wd4275 -nologo -J -Zi") - set(cxx_base_flags "${cxx_base_flags} -D_UNICODE -DUNICODE -DWIN32 -D_WIN32") - set(cxx_base_flags "${cxx_base_flags} -DSTRICT -DWIN32_LEAN_AND_MEAN") - set(cxx_exception_flags "-EHsc -D_HAS_EXCEPTIONS=1") - set(cxx_no_exception_flags "-D_HAS_EXCEPTIONS=0") - set(cxx_no_rtti_flags "-GR-") -elseif (CMAKE_COMPILER_IS_GNUCXX) - set(cxx_base_flags "-Wall -Wshadow") - set(cxx_exception_flags "-fexceptions") - set(cxx_no_exception_flags "-fno-exceptions") - # Until version 4.3.2, GCC doesn't define a macro to indicate - # whether RTTI is enabled. Therefore we define GTEST_HAS_RTTI - # explicitly. - set(cxx_no_rtti_flags "-fno-rtti -DGTEST_HAS_RTTI=0") - set(cxx_strict_flags "-Wextra") -elseif (CMAKE_CXX_COMPILER_ID STREQUAL "SunPro") - set(cxx_exception_flags "-features=except") - # Sun Pro doesn't provide macros to indicate whether exceptions and - # RTTI are enabled, so we define GTEST_HAS_* explicitly. - set(cxx_no_exception_flags "-features=no%except -DGTEST_HAS_EXCEPTIONS=0") - set(cxx_no_rtti_flags "-features=no%rtti -DGTEST_HAS_RTTI=0") -elseif (CMAKE_CXX_COMPILER_ID STREQUAL "VisualAge" OR - CMAKE_CXX_COMPILER_ID STREQUAL "XL") - # CMake 2.8 changes Visual Age's compiler ID to "XL". - set(cxx_exception_flags "-qeh") - set(cxx_no_exception_flags "-qnoeh") - # Until version 9.0, Visual Age doesn't define a macro to indicate - # whether RTTI is enabled. Therefore we define GTEST_HAS_RTTI - # explicitly. - set(cxx_no_rtti_flags "-qnortti -DGTEST_HAS_RTTI=0") -endif() - -if (CMAKE_USE_PTHREADS_INIT) # The pthreads library is available. - set(cxx_base_flags "${cxx_base_flags} -DGTEST_HAS_PTHREAD=1") -endif() - -# For building gtest's own tests and samples. -set(cxx_exception "${CMAKE_CXX_FLAGS} ${cxx_base_flags} ${cxx_exception_flags}") -set(cxx_no_exception - "${CMAKE_CXX_FLAGS} ${cxx_base_flags} ${cxx_no_exception_flags}") -set(cxx_default "${cxx_exception}") -set(cxx_no_rtti "${cxx_default} ${cxx_no_rtti_flags}") -set(cxx_use_own_tuple "${cxx_default} -DGTEST_USE_OWN_TR1_TUPLE=1") - -# For building the gtest libraries. -set(cxx_strict "${cxx_default} ${cxx_strict_flags}") - -######################################################################## -# -# Defines the gtest & gtest_main libraries. User tests should link -# with one of them. -function(cxx_library_with_type name type cxx_flags) - # type can be either STATIC or SHARED to denote a static or shared library. - # ARGN refers to additional arguments after 'cxx_flags'. - add_library(${name} ${type} ${ARGN}) - set_target_properties(${name} - PROPERTIES - COMPILE_FLAGS "${cxx_flags}") - if (CMAKE_USE_PTHREADS_INIT) - target_link_libraries(${name} ${CMAKE_THREAD_LIBS_INIT}) - endif() -endfunction() - -function(cxx_static_library name cxx_flags) - cxx_library_with_type(${name} STATIC "${cxx_flags}" ${ARGN}) -endfunction() - -function(cxx_shared_library name cxx_flags) - cxx_library_with_type(${name} SHARED "${cxx_flags}" ${ARGN}) -endfunction() - -function(cxx_library name cxx_flags) - # TODO(vladl@google.com): Make static/shared a user option. - cxx_static_library(${name} "${cxx_flags}" ${ARGN}) -endfunction() - -# Static versions of Google Test libraries. We build them using more -# strict warnings than what are used for other targets, to ensure that -# gtest can be compiled by a user aggressive about warnings. -cxx_static_library(gtest "${cxx_strict}" src/gtest-all.cc) -cxx_static_library(gtest_main "${cxx_strict}" src/gtest_main.cc) -target_link_libraries(gtest_main gtest) - -######################################################################## -# -# Samples on how to link user tests with gtest or gtest_main. -# -# They are not built by default. To build them, set the -# build_gtest_samples option to ON. You can do it by running ccmake -# or specifying the -Dbuild_gtest_samples=ON flag when running cmake. - -option(build_gtest_samples "Build gtest's sample programs." OFF) - -# cxx_executable_with_flags(name cxx_flags lib srcs...) -# -# creates a named C++ executable that depends on the given library and -# is built from the given source files with the given compiler flags. -function(cxx_executable_with_flags name cxx_flags lib) - add_executable(${name} ${ARGN}) - if (cxx_flags) - set_target_properties(${name} - PROPERTIES - COMPILE_FLAGS "${cxx_flags}") - endif() - target_link_libraries(${name} ${lib}) -endfunction() - -# cxx_executable(name dir lib srcs...) -# -# creates a named target that depends on the given lib and is built -# from the given source files. dir/name.cc is implicitly included in -# the source file list. -function(cxx_executable name dir lib) - cxx_executable_with_flags( - ${name} "${cxx_default}" ${lib} "${dir}/${name}.cc" ${ARGN}) -endfunction() - -if (build_gtest_samples) - cxx_executable(sample1_unittest samples gtest_main samples/sample1.cc) - cxx_executable(sample2_unittest samples gtest_main samples/sample2.cc) - cxx_executable(sample3_unittest samples gtest_main) - cxx_executable(sample4_unittest samples gtest_main samples/sample4.cc) - cxx_executable(sample5_unittest samples gtest_main samples/sample1.cc) - cxx_executable(sample6_unittest samples gtest_main) - cxx_executable(sample7_unittest samples gtest_main) - cxx_executable(sample8_unittest samples gtest_main) - cxx_executable(sample9_unittest samples gtest) - cxx_executable(sample10_unittest samples gtest) -endif() - -######################################################################## -# -# Google Test's own tests. -# -# You can skip this section if you aren't interested in testing -# Google Test itself. -# -# Most of the tests are not built by default. To build them, set the -# build_all_gtest_tests option to ON. You can do it by running ccmake -# or specifying the -Dbuild_all_gtest_tests=ON flag when running cmake. - -option(build_all_gtest_tests "Build all of gtest's own tests." OFF) - -# This must be set in the root directory for the tests to be run by -# 'make test' or ctest. -enable_testing() - -# Sets PYTHONINTERP_FOUND and PYTHON_EXECUTABLE. -find_package(PythonInterp) - -############################################################ -# C++ tests built with standard compiler flags. - -# cxx_test_with_flags(name cxx_flags libs srcs...) -# -# creates a named C++ test that depends on the given libs and is built -# from the given source files with the given compiler flags. -function(cxx_test_with_flags name cxx_flags libs) - add_executable(${name} ${ARGN}) - set_target_properties(${name} - PROPERTIES - COMPILE_FLAGS "${cxx_flags}") - # To support mixing linking in static and dynamic libraries, link each - # library in with an extra call to target_link_libraries. - foreach (lib "${libs}") - target_link_libraries(${name} ${lib}) - endforeach() - add_test(${name} ${name}) -endfunction() - -# cxx_test(name libs srcs...) -# -# creates a named test target that depends on the given libs and is -# built from the given source files. Unlike cxx_test_with_flags, -# test/name.cc is already implicitly included in the source file list. -function(cxx_test name libs) - cxx_test_with_flags("${name}" "${cxx_default}" "${libs}" - "test/${name}.cc" ${ARGN}) -endfunction() - -cxx_test(gtest_unittest gtest_main) - -if (build_all_gtest_tests) - cxx_test(gtest-death-test_test gtest_main) - cxx_test(gtest_environment_test gtest) - cxx_test(gtest-filepath_test gtest_main) - cxx_test(gtest-linked_ptr_test gtest_main) - cxx_test(gtest-listener_test gtest_main) - cxx_test(gtest_main_unittest gtest_main) - cxx_test(gtest-message_test gtest_main) - cxx_test(gtest_no_test_unittest gtest) - cxx_test(gtest-options_test gtest_main) - cxx_test(gtest-param-test_test gtest - test/gtest-param-test2_test.cc) - cxx_test(gtest-port_test gtest_main) - cxx_test(gtest_pred_impl_unittest gtest_main) - cxx_test(gtest_prod_test gtest_main - test/production.cc) - cxx_test(gtest_repeat_test gtest) - cxx_test(gtest_sole_header_test gtest_main) - cxx_test(gtest_stress_test gtest) - cxx_test(gtest-test-part_test gtest_main) - cxx_test(gtest_throw_on_failure_ex_test gtest) - cxx_test(gtest-typed-test_test gtest_main - test/gtest-typed-test2_test.cc) - cxx_test(gtest-unittest-api_test gtest) -endif() - -############################################################ -# C++ tests built with non-standard compiler flags. - -if (build_all_gtest_tests) - cxx_library(gtest_no_exception "${cxx_no_exception}" - src/gtest-all.cc) - cxx_library(gtest_main_no_rtti "${cxx_no_rtti}" - src/gtest-all.cc src/gtest_main.cc) - - cxx_test_with_flags(gtest_no_rtti_unittest "${cxx_no_rtti}" - gtest_main_no_rtti test/gtest_unittest.cc) - - set(cxx_use_shared_gtest "${cxx_default} -DGTEST_LINKED_AS_SHARED_LIBRARY=1") - set(cxx_build_shared_gtest "${cxx_default} -DGTEST_CREATE_SHARED_LIBRARY=1") - if (MSVC) - # Disables the "class 'X' needs to have dll-interface to be used - # by clients of class 'Y'" warning. This particularly concerns generic - # classes like vector that MS doesn't mark as exported. - set(cxx_use_shared_gtest "${cxx_use_shared_gtest} -wd4251") - set(cxx_build_shared_gtest "${cxx_build_shared_gtest} -wd4251") - endif() - - cxx_shared_library(gtest_dll "${cxx_build_shared_gtest}" - src/gtest-all.cc) - - # TODO(vladl): This and the next tests may not run in the hermetic - # environment on Windows. Re-evaluate and possibly make them - # platform-conditional after implementing hermetic builds. - cxx_executable_with_flags(gtest_dll_test_ "${cxx_use_shared_gtest}" - gtest_dll test/gtest_all_test.cc) - - if (NOT(MSVC AND (MSVC_VERSION EQUAL 1600))) - # The C++ Standard specifies tuple_element. - # Yet MSVC 10's declares tuple_element. - # That declaration conflicts with our own standard-conforming - # tuple implementation. Therefore using our own tuple with - # MSVC 10 doesn't compile. - cxx_library(gtest_main_use_own_tuple "${cxx_use_own_tuple}" - src/gtest-all.cc src/gtest_main.cc) - - cxx_test_with_flags(gtest-tuple_test "${cxx_use_own_tuple}" - gtest_main_use_own_tuple test/gtest-tuple_test.cc) - - cxx_test_with_flags(gtest_use_own_tuple_test "${cxx_use_own_tuple}" - gtest_main_use_own_tuple - test/gtest-param-test_test.cc test/gtest-param-test2_test.cc) - endif() - -endif() - -############################################################ -# Python tests. - -# py_test(name) -# -# creates a Python test with the given name whose main module is in -# test/name.py. It does nothing if Python is not installed. -function(py_test name) - if (PYTHONINTERP_FOUND) - # ${gtest_BINARY_DIR} is known at configuration time, so we can - # directly bind it from cmake. ${CTEST_CONFIGURATION_TYPE} is known - # only at ctest runtime (by calling ctest -c ), so - # we have to escape $ to delay variable substitution here. - add_test(${name} - ${PYTHON_EXECUTABLE} ${gtest_SOURCE_DIR}/test/${name}.py - --gtest_build_dir=${gtest_BINARY_DIR}/\${CTEST_CONFIGURATION_TYPE}) - endif() -endfunction() - -if (build_all_gtest_tests) - cxx_executable(gtest_break_on_failure_unittest_ test gtest) - py_test(gtest_break_on_failure_unittest) - - cxx_executable(gtest_color_test_ test gtest) - py_test(gtest_color_test) - - cxx_executable(gtest_env_var_test_ test gtest) - py_test(gtest_env_var_test) - - cxx_executable(gtest_filter_unittest_ test gtest) - py_test(gtest_filter_unittest) - - cxx_executable(gtest_help_test_ test gtest_main) - py_test(gtest_help_test) - - cxx_executable(gtest_list_tests_unittest_ test gtest) - py_test(gtest_list_tests_unittest) - - cxx_executable(gtest_output_test_ test gtest) - py_test(gtest_output_test) - - cxx_executable(gtest_shuffle_test_ test gtest) - py_test(gtest_shuffle_test) - - cxx_executable(gtest_throw_on_failure_test_ test gtest_no_exception) - set_target_properties(gtest_throw_on_failure_test_ - PROPERTIES - COMPILE_FLAGS "${cxx_no_exception}") - py_test(gtest_throw_on_failure_test) - - cxx_executable(gtest_uninitialized_test_ test gtest) - py_test(gtest_uninitialized_test) - - cxx_executable(gtest_xml_outfile1_test_ test gtest_main) - cxx_executable(gtest_xml_outfile2_test_ test gtest_main) - py_test(gtest_xml_outfiles_test) - - cxx_executable(gtest_xml_output_unittest_ test gtest) - py_test(gtest_xml_output_unittest) -endif() diff --git a/cpp/thirdparty/gtest-1.5.0/CONTRIBUTORS b/cpp/thirdparty/gtest-1.5.0/CONTRIBUTORS deleted file mode 100644 index 0934ae130..000000000 --- a/cpp/thirdparty/gtest-1.5.0/CONTRIBUTORS +++ /dev/null @@ -1,36 +0,0 @@ -# This file contains a list of people who've made non-trivial -# contribution to the Google C++ Testing Framework project. People -# who commit code to the project are encouraged to add their names -# here. Please keep the list sorted by first names. - -Ajay Joshi -Balázs Dán -Bharat Mediratta -Chandler Carruth -Chris Prince -Chris Taylor -Dan Egnor -Eric Roman -Hady Zalek -Jeffrey Yasskin -Jói Sigurðsson -Keir Mierle -Keith Ray -Kenton Varda -Manuel Klimek -Markus Heule -Mika Raento -Miklós Fazekas -Patrick Hanna -Patrick Riley -Peter Kaminski -Preston Jackson -Rainer Klaffenboeck -Russ Cox -Russ Rufer -Sean Mcafee -Sigurður Ásgeirsson -Tracy Bialik -Vadim Berman -Vlad Losev -Zhanyong Wan diff --git a/cpp/thirdparty/gtest-1.5.0/COPYING b/cpp/thirdparty/gtest-1.5.0/COPYING deleted file mode 100644 index 1941a11f8..000000000 --- a/cpp/thirdparty/gtest-1.5.0/COPYING +++ /dev/null @@ -1,28 +0,0 @@ -Copyright 2008, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/cpp/thirdparty/gtest-1.5.0/Makefile.am b/cpp/thirdparty/gtest-1.5.0/Makefile.am deleted file mode 100644 index 8d75e32cc..000000000 --- a/cpp/thirdparty/gtest-1.5.0/Makefile.am +++ /dev/null @@ -1,284 +0,0 @@ -# Automake file - -# Nonstandard package files for distribution -EXTRA_DIST = \ - CHANGES \ - CONTRIBUTORS \ - include/gtest/gtest-param-test.h.pump \ - include/gtest/internal/gtest-tuple.h.pump \ - include/gtest/internal/gtest-type-util.h.pump \ - include/gtest/internal/gtest-param-util-generated.h.pump \ - make/Makefile \ - scripts/fuse_gtest_files.py \ - scripts/gen_gtest_pred_impl.py \ - scripts/pump.py \ - scripts/test/Makefile - -# gtest source files that we don't compile directly. They are -# #included by gtest-all.cc. -GTEST_SRC = \ - src/gtest.cc \ - src/gtest-death-test.cc \ - src/gtest-filepath.cc \ - src/gtest-internal-inl.h \ - src/gtest-port.cc \ - src/gtest-test-part.cc \ - src/gtest-typed-test.cc - -EXTRA_DIST += $(GTEST_SRC) - -# Sample files that we don't compile. -EXTRA_DIST += \ - samples/prime_tables.h \ - samples/sample2_unittest.cc \ - samples/sample3_unittest.cc \ - samples/sample4_unittest.cc \ - samples/sample5_unittest.cc \ - samples/sample6_unittest.cc \ - samples/sample7_unittest.cc \ - samples/sample8_unittest.cc \ - samples/sample9_unittest.cc - -# C++ test files that we don't compile directly. -EXTRA_DIST += \ - test/gtest-death-test_test.cc \ - test/gtest_environment_test.cc \ - test/gtest-filepath_test.cc \ - test/gtest-linked_ptr_test.cc \ - test/gtest-message_test.cc \ - test/gtest_no_test_unittest.cc \ - test/gtest-options_test.cc \ - test/gtest-param-test_test.cc \ - test/gtest-param-test2_test.cc \ - test/gtest-param-test_test.h \ - test/gtest-port_test.cc \ - test/gtest_pred_impl_unittest.cc \ - test/gtest_prod_test.cc \ - test/production.cc \ - test/production.h \ - test/gtest_repeat_test.cc \ - test/gtest_sole_header_test.cc \ - test/gtest_stress_test.cc \ - test/gtest-test-part_test.cc \ - test/gtest_throw_on_failure_ex_test.cc \ - test/gtest-typed-test_test.cc \ - test/gtest-typed-test2_test.cc \ - test/gtest-typed-test_test.h \ - test/gtest_unittest.cc \ - test/gtest-unittest-api_test.cc \ - test/gtest-listener_test.cc \ - test/gtest_main_unittest.cc \ - test/gtest_unittest.cc \ - test/gtest-tuple_test.cc \ - test/gtest-param-test_test.cc \ - test/gtest-param-test2_test.cc \ - test/gtest_break_on_failure_unittest_.cc \ - test/gtest_color_test_.cc \ - test/gtest_env_var_test_.cc \ - test/gtest_filter_unittest_.cc \ - test/gtest_help_test_.cc \ - test/gtest_list_tests_unittest_.cc \ - test/gtest_output_test_.cc \ - test/gtest_shuffle_test_.cc \ - test/gtest_throw_on_failure_test_.cc \ - test/gtest_uninitialized_test_.cc \ - test/gtest_xml_outfile1_test_.cc \ - test/gtest_xml_outfile2_test_.cc \ - test/gtest_xml_output_unittest_.cc - -# Python tests that we don't run. -EXTRA_DIST += \ - test/gtest_test_utils.py \ - test/gtest_xml_test_utils.py \ - test/gtest_break_on_failure_unittest.py \ - test/gtest_color_test.py \ - test/gtest_env_var_test.py \ - test/gtest_filter_unittest.py \ - test/gtest_help_test.py \ - test/gtest_list_tests_unittest.py \ - test/gtest_output_test.py \ - test/gtest_output_test_golden_lin.txt \ - test/gtest_output_test_golden_win.txt \ - test/gtest_shuffle_test.py \ - test/gtest_throw_on_failure_test.py \ - test/gtest_uninitialized_test.py \ - test/gtest_xml_outfiles_test.py \ - test/gtest_xml_output_unittest.py \ - test/run_tests_util.py \ - test/run_tests_util_test.py - -# CMake script -EXTRA_DIST += \ - CMakeLists.txt - -# MSVC project files -EXTRA_DIST += \ - msvc/gtest-md.sln \ - msvc/gtest.sln \ - msvc/gtest-md.vcproj \ - msvc/gtest.vcproj \ - msvc/gtest_main-md.vcproj \ - msvc/gtest_main.vcproj \ - msvc/gtest_prod_test-md.vcproj \ - msvc/gtest_prod_test.vcproj \ - msvc/gtest_unittest-md.vcproj \ - msvc/gtest_unittest.vcproj - -# xcode project files -EXTRA_DIST += \ - xcode/Config/DebugProject.xcconfig \ - xcode/Config/FrameworkTarget.xcconfig \ - xcode/Config/General.xcconfig \ - xcode/Config/ReleaseProject.xcconfig \ - xcode/Config/StaticLibraryTarget.xcconfig \ - xcode/Config/TestTarget.xcconfig \ - xcode/Resources/Info.plist \ - xcode/Scripts/versiongenerate.py \ - xcode/Scripts/runtests.sh \ - xcode/gtest.xcodeproj/project.pbxproj - -# xcode sample files -EXTRA_DIST += \ - xcode/Samples/FrameworkSample/Info.plist \ - xcode/Samples/FrameworkSample/runtests.sh \ - xcode/Samples/FrameworkSample/widget_test.cc \ - xcode/Samples/FrameworkSample/widget.cc \ - xcode/Samples/FrameworkSample/widget.h \ - xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj - -# C++Builder project files -EXTRA_DIST += \ - codegear/gtest_all.cc \ - codegear/gtest_link.cc \ - codegear/gtest.cbproj \ - codegear/gtest_main.cbproj \ - codegear/gtest_unittest.cbproj \ - codegear/gtest.groupproj - -# Scripts and utilities -bin_SCRIPTS = scripts/gtest-config -CLEANFILES = $(bin_SCRIPTS) - -# Distribute and install M4 macro -m4datadir = $(datadir)/aclocal -m4data_DATA = m4/gtest.m4 -EXTRA_DIST += $(m4data_DATA) - -# We define the global AM_CPPFLAGS as everything we compile includes from these -# directories. -AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/include - -# Modifies compiler and linker flags for pthreads compatibility. -if HAVE_PTHREADS - AM_CXXFLAGS = @PTHREAD_CFLAGS@ -DGTEST_HAS_PTHREAD=1 - AM_LIBS = @PTHREAD_LIBS@ -else - AM_CXXFLAGS = -DGTEST_HAS_PTHREAD=0 -endif - -# Build rules for libraries. -lib_LTLIBRARIES = lib/libgtest.la lib/libgtest_main.la - -lib_libgtest_la_SOURCES = src/gtest-all.cc - -pkginclude_HEADERS = include/gtest/gtest.h \ - include/gtest/gtest-death-test.h \ - include/gtest/gtest-message.h \ - include/gtest/gtest-param-test.h \ - include/gtest/gtest_pred_impl.h \ - include/gtest/gtest_prod.h \ - include/gtest/gtest-spi.h \ - include/gtest/gtest-test-part.h \ - include/gtest/gtest-typed-test.h - -pkginclude_internaldir = $(pkgincludedir)/internal -pkginclude_internal_HEADERS = \ - include/gtest/internal/gtest-death-test-internal.h \ - include/gtest/internal/gtest-filepath.h \ - include/gtest/internal/gtest-internal.h \ - include/gtest/internal/gtest-linked_ptr.h \ - include/gtest/internal/gtest-param-util-generated.h \ - include/gtest/internal/gtest-param-util.h \ - include/gtest/internal/gtest-port.h \ - include/gtest/internal/gtest-string.h \ - include/gtest/internal/gtest-tuple.h \ - include/gtest/internal/gtest-type-util.h - -lib_libgtest_main_la_SOURCES = src/gtest_main.cc -lib_libgtest_main_la_LIBADD = lib/libgtest.la - -# Bulid rules for samples and tests. Automake's naming for some of -# these variables isn't terribly obvious, so this is a brief -# reference: -# -# TESTS -- Programs run automatically by "make check" -# check_PROGRAMS -- Programs built by "make check" but not necessarily run - -noinst_LTLIBRARIES = samples/libsamples.la - -samples_libsamples_la_SOURCES = samples/sample1.cc \ - samples/sample1.h \ - samples/sample2.cc \ - samples/sample2.h \ - samples/sample3-inl.h \ - samples/sample4.cc \ - samples/sample4.h - -TESTS= -TESTS_ENVIRONMENT = GTEST_SOURCE_DIR="$(srcdir)/test" \ - GTEST_BUILD_DIR="$(top_builddir)/test" -check_PROGRAMS= - -# A simple sample on using gtest. -TESTS += samples/sample1_unittest -check_PROGRAMS += samples/sample1_unittest -samples_sample1_unittest_SOURCES = samples/sample1_unittest.cc -samples_sample1_unittest_LDADD = lib/libgtest_main.la \ - samples/libsamples.la - -# Another sample. It also verifies that libgtest works. -TESTS += samples/sample10_unittest -check_PROGRAMS += samples/sample10_unittest -samples_sample10_unittest_SOURCES = samples/sample10_unittest.cc -samples_sample10_unittest_LDADD = lib/libgtest.la - -# This tests most constructs of gtest and verifies that libgtest_main -# works. -TESTS += test/gtest_all_test -check_PROGRAMS += test/gtest_all_test -test_gtest_all_test_SOURCES = test/gtest_all_test.cc -test_gtest_all_test_LDADD = lib/libgtest_main.la - -# Tests that fused gtest files compile and work. -FUSED_GTEST_SRC = \ - fused-src/gtest/gtest-all.cc \ - fused-src/gtest/gtest_main.cc \ - fused-src/gtest/gtest.h - -TESTS += test/fused_gtest_test -check_PROGRAMS += test/fused_gtest_test -test_fused_gtest_test_SOURCES = $(FUSED_GTEST_SRC) \ - samples/sample1.cc samples/sample1_unittest.cc -test_fused_gtest_test_CPPFLAGS = -I"$(srcdir)/fused-src" - -# Build rules for putting fused Google Test files into the distribution -# package. The user can also create those files by manually running -# scripts/fuse_gtest_files.py. -$(test_fused_gtest_test_SOURCES): fused-gtest - -fused-gtest: $(pkginclude_HEADERS) $(pkginclude_internal_HEADERS) \ - $(GTEST_SRC) src/gtest-all.cc src/gtest_main.cc \ - scripts/fuse_gtest_files.py - mkdir -p "$(srcdir)/fused-src" - chmod -R u+w "$(srcdir)/fused-src" - rm -f "$(srcdir)/fused-src/gtest/gtest-all.cc" - rm -f "$(srcdir)/fused-src/gtest/gtest.h" - "$(srcdir)/scripts/fuse_gtest_files.py" "$(srcdir)/fused-src" - cp -f "$(srcdir)/src/gtest_main.cc" "$(srcdir)/fused-src/gtest/" - -maintainer-clean-local: - rm -rf "$(srcdir)/fused-src" - -# Death tests may produce core dumps in the build directory. In case -# this happens, clean them to keep distcleancheck happy. -CLEANFILES += core diff --git a/cpp/thirdparty/gtest-1.5.0/Makefile.in b/cpp/thirdparty/gtest-1.5.0/Makefile.in deleted file mode 100644 index d6b15eb31..000000000 --- a/cpp/thirdparty/gtest-1.5.0/Makefile.in +++ /dev/null @@ -1,1237 +0,0 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -# Automake file - - - - -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -TESTS = samples/sample1_unittest$(EXEEXT) \ - samples/sample10_unittest$(EXEEXT) \ - test/gtest_all_test$(EXEEXT) test/fused_gtest_test$(EXEEXT) -check_PROGRAMS = samples/sample1_unittest$(EXEEXT) \ - samples/sample10_unittest$(EXEEXT) \ - test/gtest_all_test$(EXEEXT) test/fused_gtest_test$(EXEEXT) -subdir = . -DIST_COMMON = README $(am__configure_deps) $(pkginclude_HEADERS) \ - $(pkginclude_internal_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(top_srcdir)/build-aux/config.h.in \ - $(top_srcdir)/configure $(top_srcdir)/scripts/gtest-config.in \ - COPYING build-aux/config.guess build-aux/config.sub \ - build-aux/depcomp build-aux/install-sh build-aux/ltmain.sh \ - build-aux/missing -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/acx_pthread.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno config.status.lineno -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/build-aux/config.h -CONFIG_CLEAN_FILES = scripts/gtest-config -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; -am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \ - "$(DESTDIR)$(m4datadir)" "$(DESTDIR)$(pkgincludedir)" \ - "$(DESTDIR)$(pkginclude_internaldir)" -libLTLIBRARIES_INSTALL = $(INSTALL) -LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES) -lib_libgtest_la_LIBADD = -am__dirstamp = $(am__leading_dot)dirstamp -am_lib_libgtest_la_OBJECTS = src/gtest-all.lo -lib_libgtest_la_OBJECTS = $(am_lib_libgtest_la_OBJECTS) -lib_libgtest_main_la_DEPENDENCIES = lib/libgtest.la -am_lib_libgtest_main_la_OBJECTS = src/gtest_main.lo -lib_libgtest_main_la_OBJECTS = $(am_lib_libgtest_main_la_OBJECTS) -samples_libsamples_la_LIBADD = -am_samples_libsamples_la_OBJECTS = samples/sample1.lo \ - samples/sample2.lo samples/sample4.lo -samples_libsamples_la_OBJECTS = $(am_samples_libsamples_la_OBJECTS) -am_samples_sample10_unittest_OBJECTS = \ - samples/sample10_unittest.$(OBJEXT) -samples_sample10_unittest_OBJECTS = \ - $(am_samples_sample10_unittest_OBJECTS) -samples_sample10_unittest_DEPENDENCIES = lib/libgtest.la -am_samples_sample1_unittest_OBJECTS = \ - samples/sample1_unittest.$(OBJEXT) -samples_sample1_unittest_OBJECTS = \ - $(am_samples_sample1_unittest_OBJECTS) -samples_sample1_unittest_DEPENDENCIES = lib/libgtest_main.la \ - samples/libsamples.la -am__objects_1 = \ - fused-src/gtest/test_fused_gtest_test-gtest-all.$(OBJEXT) \ - fused-src/gtest/test_fused_gtest_test-gtest_main.$(OBJEXT) -am_test_fused_gtest_test_OBJECTS = $(am__objects_1) \ - samples/test_fused_gtest_test-sample1.$(OBJEXT) \ - samples/test_fused_gtest_test-sample1_unittest.$(OBJEXT) -test_fused_gtest_test_OBJECTS = $(am_test_fused_gtest_test_OBJECTS) -test_fused_gtest_test_LDADD = $(LDADD) -am_test_gtest_all_test_OBJECTS = test/gtest_all_test.$(OBJEXT) -test_gtest_all_test_OBJECTS = $(am_test_gtest_all_test_OBJECTS) -test_gtest_all_test_DEPENDENCIES = lib/libgtest_main.la -binSCRIPT_INSTALL = $(INSTALL_SCRIPT) -SCRIPTS = $(bin_SCRIPTS) -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/build-aux -depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp -am__depfiles_maybe = depfiles -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ -SOURCES = $(lib_libgtest_la_SOURCES) $(lib_libgtest_main_la_SOURCES) \ - $(samples_libsamples_la_SOURCES) \ - $(samples_sample10_unittest_SOURCES) \ - $(samples_sample1_unittest_SOURCES) \ - $(test_fused_gtest_test_SOURCES) \ - $(test_gtest_all_test_SOURCES) -DIST_SOURCES = $(lib_libgtest_la_SOURCES) \ - $(lib_libgtest_main_la_SOURCES) \ - $(samples_libsamples_la_SOURCES) \ - $(samples_sample10_unittest_SOURCES) \ - $(samples_sample1_unittest_SOURCES) \ - $(test_fused_gtest_test_SOURCES) \ - $(test_gtest_all_test_SOURCES) -m4dataDATA_INSTALL = $(INSTALL_DATA) -DATA = $(m4data_DATA) -pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER) -pkginclude_internalHEADERS_INSTALL = $(INSTALL_HEADER) -HEADERS = $(pkginclude_HEADERS) $(pkginclude_internal_HEADERS) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -distdir = $(PACKAGE)-$(VERSION) -top_distdir = $(distdir) -am__remove_distdir = \ - { test ! -d $(distdir) \ - || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -fr $(distdir); }; } -DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 $(distdir).zip -GZIP_ENV = --best -distuninstallcheck_listfiles = find . -type f -print -distcleancheck_listfiles = find . -type f -print -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DSYMUTIL = @DSYMUTIL@ -ECHO = @ECHO@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FFLAGS = @FFLAGS@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -NMEDIT = @NMEDIT@ -OBJEXT = @OBJEXT@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PTHREAD_CC = @PTHREAD_CC@ -PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ -PTHREAD_LIBS = @PTHREAD_LIBS@ -PYTHON = @PYTHON@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_F77 = @ac_ct_F77@ -acx_pthread_config = @acx_pthread_config@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ - -# Nonstandard package files for distribution - -# Sample files that we don't compile. - -# C++ test files that we don't compile directly. - -# Python tests that we don't run. - -# CMake script - -# MSVC project files - -# xcode project files - -# xcode sample files - -# C++Builder project files -EXTRA_DIST = CHANGES CONTRIBUTORS \ - include/gtest/gtest-param-test.h.pump \ - include/gtest/internal/gtest-tuple.h.pump \ - include/gtest/internal/gtest-type-util.h.pump \ - include/gtest/internal/gtest-param-util-generated.h.pump \ - make/Makefile scripts/fuse_gtest_files.py \ - scripts/gen_gtest_pred_impl.py scripts/pump.py \ - scripts/test/Makefile $(GTEST_SRC) samples/prime_tables.h \ - samples/sample2_unittest.cc samples/sample3_unittest.cc \ - samples/sample4_unittest.cc samples/sample5_unittest.cc \ - samples/sample6_unittest.cc samples/sample7_unittest.cc \ - samples/sample8_unittest.cc samples/sample9_unittest.cc \ - test/gtest-death-test_test.cc test/gtest_environment_test.cc \ - test/gtest-filepath_test.cc test/gtest-linked_ptr_test.cc \ - test/gtest-message_test.cc test/gtest_no_test_unittest.cc \ - test/gtest-options_test.cc test/gtest-param-test_test.cc \ - test/gtest-param-test2_test.cc test/gtest-param-test_test.h \ - test/gtest-port_test.cc test/gtest_pred_impl_unittest.cc \ - test/gtest_prod_test.cc test/production.cc test/production.h \ - test/gtest_repeat_test.cc test/gtest_sole_header_test.cc \ - test/gtest_stress_test.cc test/gtest-test-part_test.cc \ - test/gtest_throw_on_failure_ex_test.cc \ - test/gtest-typed-test_test.cc test/gtest-typed-test2_test.cc \ - test/gtest-typed-test_test.h test/gtest_unittest.cc \ - test/gtest-unittest-api_test.cc test/gtest-listener_test.cc \ - test/gtest_main_unittest.cc test/gtest_unittest.cc \ - test/gtest-tuple_test.cc test/gtest-param-test_test.cc \ - test/gtest-param-test2_test.cc \ - test/gtest_break_on_failure_unittest_.cc \ - test/gtest_color_test_.cc test/gtest_env_var_test_.cc \ - test/gtest_filter_unittest_.cc test/gtest_help_test_.cc \ - test/gtest_list_tests_unittest_.cc test/gtest_output_test_.cc \ - test/gtest_shuffle_test_.cc \ - test/gtest_throw_on_failure_test_.cc \ - test/gtest_uninitialized_test_.cc \ - test/gtest_xml_outfile1_test_.cc \ - test/gtest_xml_outfile2_test_.cc \ - test/gtest_xml_output_unittest_.cc test/gtest_test_utils.py \ - test/gtest_xml_test_utils.py \ - test/gtest_break_on_failure_unittest.py \ - test/gtest_color_test.py test/gtest_env_var_test.py \ - test/gtest_filter_unittest.py test/gtest_help_test.py \ - test/gtest_list_tests_unittest.py test/gtest_output_test.py \ - test/gtest_output_test_golden_lin.txt \ - test/gtest_output_test_golden_win.txt \ - test/gtest_shuffle_test.py test/gtest_throw_on_failure_test.py \ - test/gtest_uninitialized_test.py \ - test/gtest_xml_outfiles_test.py \ - test/gtest_xml_output_unittest.py test/run_tests_util.py \ - test/run_tests_util_test.py CMakeLists.txt msvc/gtest-md.sln \ - msvc/gtest.sln msvc/gtest-md.vcproj msvc/gtest.vcproj \ - msvc/gtest_main-md.vcproj msvc/gtest_main.vcproj \ - msvc/gtest_prod_test-md.vcproj msvc/gtest_prod_test.vcproj \ - msvc/gtest_unittest-md.vcproj msvc/gtest_unittest.vcproj \ - xcode/Config/DebugProject.xcconfig \ - xcode/Config/FrameworkTarget.xcconfig \ - xcode/Config/General.xcconfig \ - xcode/Config/ReleaseProject.xcconfig \ - xcode/Config/StaticLibraryTarget.xcconfig \ - xcode/Config/TestTarget.xcconfig xcode/Resources/Info.plist \ - xcode/Scripts/versiongenerate.py xcode/Scripts/runtests.sh \ - xcode/gtest.xcodeproj/project.pbxproj \ - xcode/Samples/FrameworkSample/Info.plist \ - xcode/Samples/FrameworkSample/runtests.sh \ - xcode/Samples/FrameworkSample/widget_test.cc \ - xcode/Samples/FrameworkSample/widget.cc \ - xcode/Samples/FrameworkSample/widget.h \ - xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj \ - codegear/gtest_all.cc codegear/gtest_link.cc \ - codegear/gtest.cbproj codegear/gtest_main.cbproj \ - codegear/gtest_unittest.cbproj codegear/gtest.groupproj \ - $(m4data_DATA) - -# gtest source files that we don't compile directly. They are -# #included by gtest-all.cc. -GTEST_SRC = \ - src/gtest.cc \ - src/gtest-death-test.cc \ - src/gtest-filepath.cc \ - src/gtest-internal-inl.h \ - src/gtest-port.cc \ - src/gtest-test-part.cc \ - src/gtest-typed-test.cc - - -# Scripts and utilities -bin_SCRIPTS = scripts/gtest-config - -# Death tests may produce core dumps in the build directory. In case -# this happens, clean them to keep distcleancheck happy. -CLEANFILES = $(bin_SCRIPTS) core - -# Distribute and install M4 macro -m4datadir = $(datadir)/aclocal -m4data_DATA = m4/gtest.m4 - -# We define the global AM_CPPFLAGS as everything we compile includes from these -# directories. -AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/include -@HAVE_PTHREADS_FALSE@AM_CXXFLAGS = -DGTEST_HAS_PTHREAD=0 - -# Modifies compiler and linker flags for pthreads compatibility. -@HAVE_PTHREADS_TRUE@AM_CXXFLAGS = @PTHREAD_CFLAGS@ -DGTEST_HAS_PTHREAD=1 -@HAVE_PTHREADS_TRUE@AM_LIBS = @PTHREAD_LIBS@ - -# Build rules for libraries. -lib_LTLIBRARIES = lib/libgtest.la lib/libgtest_main.la -lib_libgtest_la_SOURCES = src/gtest-all.cc -pkginclude_HEADERS = include/gtest/gtest.h \ - include/gtest/gtest-death-test.h \ - include/gtest/gtest-message.h \ - include/gtest/gtest-param-test.h \ - include/gtest/gtest_pred_impl.h \ - include/gtest/gtest_prod.h \ - include/gtest/gtest-spi.h \ - include/gtest/gtest-test-part.h \ - include/gtest/gtest-typed-test.h - -pkginclude_internaldir = $(pkgincludedir)/internal -pkginclude_internal_HEADERS = \ - include/gtest/internal/gtest-death-test-internal.h \ - include/gtest/internal/gtest-filepath.h \ - include/gtest/internal/gtest-internal.h \ - include/gtest/internal/gtest-linked_ptr.h \ - include/gtest/internal/gtest-param-util-generated.h \ - include/gtest/internal/gtest-param-util.h \ - include/gtest/internal/gtest-port.h \ - include/gtest/internal/gtest-string.h \ - include/gtest/internal/gtest-tuple.h \ - include/gtest/internal/gtest-type-util.h - -lib_libgtest_main_la_SOURCES = src/gtest_main.cc -lib_libgtest_main_la_LIBADD = lib/libgtest.la - -# Bulid rules for samples and tests. Automake's naming for some of -# these variables isn't terribly obvious, so this is a brief -# reference: -# -# TESTS -- Programs run automatically by "make check" -# check_PROGRAMS -- Programs built by "make check" but not necessarily run -noinst_LTLIBRARIES = samples/libsamples.la -samples_libsamples_la_SOURCES = samples/sample1.cc \ - samples/sample1.h \ - samples/sample2.cc \ - samples/sample2.h \ - samples/sample3-inl.h \ - samples/sample4.cc \ - samples/sample4.h - -TESTS_ENVIRONMENT = GTEST_SOURCE_DIR="$(srcdir)/test" \ - GTEST_BUILD_DIR="$(top_builddir)/test" - -samples_sample1_unittest_SOURCES = samples/sample1_unittest.cc -samples_sample1_unittest_LDADD = lib/libgtest_main.la \ - samples/libsamples.la - -samples_sample10_unittest_SOURCES = samples/sample10_unittest.cc -samples_sample10_unittest_LDADD = lib/libgtest.la -test_gtest_all_test_SOURCES = test/gtest_all_test.cc -test_gtest_all_test_LDADD = lib/libgtest_main.la - -# Tests that fused gtest files compile and work. -FUSED_GTEST_SRC = \ - fused-src/gtest/gtest-all.cc \ - fused-src/gtest/gtest_main.cc \ - fused-src/gtest/gtest.h - -test_fused_gtest_test_SOURCES = $(FUSED_GTEST_SRC) \ - samples/sample1.cc samples/sample1_unittest.cc - -test_fused_gtest_test_CPPFLAGS = -I"$(srcdir)/fused-src" -all: all-am - -.SUFFIXES: -.SUFFIXES: .cc .lo .o .obj -am--refresh: - @: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \ - cd $(srcdir) && $(AUTOMAKE) --foreign \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --foreign Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - echo ' $(SHELL) ./config.status'; \ - $(SHELL) ./config.status;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - $(SHELL) ./config.status --recheck - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) - -build-aux/config.h: build-aux/stamp-h1 - @if test ! -f $@; then \ - rm -f build-aux/stamp-h1; \ - $(MAKE) $(AM_MAKEFLAGS) build-aux/stamp-h1; \ - else :; fi - -build-aux/stamp-h1: $(top_srcdir)/build-aux/config.h.in $(top_builddir)/config.status - @rm -f build-aux/stamp-h1 - cd $(top_builddir) && $(SHELL) ./config.status build-aux/config.h -$(top_srcdir)/build-aux/config.h.in: $(am__configure_deps) - cd $(top_srcdir) && $(AUTOHEADER) - rm -f build-aux/stamp-h1 - touch $@ - -distclean-hdr: - -rm -f build-aux/config.h build-aux/stamp-h1 -scripts/gtest-config: $(top_builddir)/config.status $(top_srcdir)/scripts/gtest-config.in - cd $(top_builddir) && $(SHELL) ./config.status $@ -install-libLTLIBRARIES: $(lib_LTLIBRARIES) - @$(NORMAL_INSTALL) - test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - if test -f $$p; then \ - f=$(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ - else :; fi; \ - done - -uninstall-libLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - p=$(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ - done - -clean-libLTLIBRARIES: - -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done - -clean-noinstLTLIBRARIES: - -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) - @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ - dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" != "$$p" || dir=.; \ - echo "rm -f \"$${dir}/so_locations\""; \ - rm -f "$${dir}/so_locations"; \ - done -src/$(am__dirstamp): - @$(MKDIR_P) src - @: > src/$(am__dirstamp) -src/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) src/$(DEPDIR) - @: > src/$(DEPDIR)/$(am__dirstamp) -src/gtest-all.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) -lib/$(am__dirstamp): - @$(MKDIR_P) lib - @: > lib/$(am__dirstamp) -lib/libgtest.la: $(lib_libgtest_la_OBJECTS) $(lib_libgtest_la_DEPENDENCIES) lib/$(am__dirstamp) - $(CXXLINK) -rpath $(libdir) $(lib_libgtest_la_OBJECTS) $(lib_libgtest_la_LIBADD) $(LIBS) -src/gtest_main.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) -lib/libgtest_main.la: $(lib_libgtest_main_la_OBJECTS) $(lib_libgtest_main_la_DEPENDENCIES) lib/$(am__dirstamp) - $(CXXLINK) -rpath $(libdir) $(lib_libgtest_main_la_OBJECTS) $(lib_libgtest_main_la_LIBADD) $(LIBS) -samples/$(am__dirstamp): - @$(MKDIR_P) samples - @: > samples/$(am__dirstamp) -samples/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) samples/$(DEPDIR) - @: > samples/$(DEPDIR)/$(am__dirstamp) -samples/sample1.lo: samples/$(am__dirstamp) \ - samples/$(DEPDIR)/$(am__dirstamp) -samples/sample2.lo: samples/$(am__dirstamp) \ - samples/$(DEPDIR)/$(am__dirstamp) -samples/sample4.lo: samples/$(am__dirstamp) \ - samples/$(DEPDIR)/$(am__dirstamp) -samples/libsamples.la: $(samples_libsamples_la_OBJECTS) $(samples_libsamples_la_DEPENDENCIES) samples/$(am__dirstamp) - $(CXXLINK) $(samples_libsamples_la_OBJECTS) $(samples_libsamples_la_LIBADD) $(LIBS) - -clean-checkPROGRAMS: - @list='$(check_PROGRAMS)'; for p in $$list; do \ - f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f $$p $$f"; \ - rm -f $$p $$f ; \ - done -samples/sample10_unittest.$(OBJEXT): samples/$(am__dirstamp) \ - samples/$(DEPDIR)/$(am__dirstamp) -samples/sample10_unittest$(EXEEXT): $(samples_sample10_unittest_OBJECTS) $(samples_sample10_unittest_DEPENDENCIES) samples/$(am__dirstamp) - @rm -f samples/sample10_unittest$(EXEEXT) - $(CXXLINK) $(samples_sample10_unittest_OBJECTS) $(samples_sample10_unittest_LDADD) $(LIBS) -samples/sample1_unittest.$(OBJEXT): samples/$(am__dirstamp) \ - samples/$(DEPDIR)/$(am__dirstamp) -samples/sample1_unittest$(EXEEXT): $(samples_sample1_unittest_OBJECTS) $(samples_sample1_unittest_DEPENDENCIES) samples/$(am__dirstamp) - @rm -f samples/sample1_unittest$(EXEEXT) - $(CXXLINK) $(samples_sample1_unittest_OBJECTS) $(samples_sample1_unittest_LDADD) $(LIBS) -fused-src/gtest/$(am__dirstamp): - @$(MKDIR_P) fused-src/gtest - @: > fused-src/gtest/$(am__dirstamp) -fused-src/gtest/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) fused-src/gtest/$(DEPDIR) - @: > fused-src/gtest/$(DEPDIR)/$(am__dirstamp) -fused-src/gtest/test_fused_gtest_test-gtest-all.$(OBJEXT): \ - fused-src/gtest/$(am__dirstamp) \ - fused-src/gtest/$(DEPDIR)/$(am__dirstamp) -fused-src/gtest/test_fused_gtest_test-gtest_main.$(OBJEXT): \ - fused-src/gtest/$(am__dirstamp) \ - fused-src/gtest/$(DEPDIR)/$(am__dirstamp) -samples/test_fused_gtest_test-sample1.$(OBJEXT): \ - samples/$(am__dirstamp) samples/$(DEPDIR)/$(am__dirstamp) -samples/test_fused_gtest_test-sample1_unittest.$(OBJEXT): \ - samples/$(am__dirstamp) samples/$(DEPDIR)/$(am__dirstamp) -test/$(am__dirstamp): - @$(MKDIR_P) test - @: > test/$(am__dirstamp) -test/fused_gtest_test$(EXEEXT): $(test_fused_gtest_test_OBJECTS) $(test_fused_gtest_test_DEPENDENCIES) test/$(am__dirstamp) - @rm -f test/fused_gtest_test$(EXEEXT) - $(CXXLINK) $(test_fused_gtest_test_OBJECTS) $(test_fused_gtest_test_LDADD) $(LIBS) -test/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) test/$(DEPDIR) - @: > test/$(DEPDIR)/$(am__dirstamp) -test/gtest_all_test.$(OBJEXT): test/$(am__dirstamp) \ - test/$(DEPDIR)/$(am__dirstamp) -test/gtest_all_test$(EXEEXT): $(test_gtest_all_test_OBJECTS) $(test_gtest_all_test_DEPENDENCIES) test/$(am__dirstamp) - @rm -f test/gtest_all_test$(EXEEXT) - $(CXXLINK) $(test_gtest_all_test_OBJECTS) $(test_gtest_all_test_LDADD) $(LIBS) -install-binSCRIPTS: $(bin_SCRIPTS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_SCRIPTS)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - if test -f $$d$$p; then \ - f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ - echo " $(binSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(bindir)/$$f'"; \ - $(binSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(bindir)/$$f"; \ - else :; fi; \ - done - -uninstall-binSCRIPTS: - @$(NORMAL_UNINSTALL) - @list='$(bin_SCRIPTS)'; for p in $$list; do \ - f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ - echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ - rm -f "$(DESTDIR)$(bindir)/$$f"; \ - done - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -rm -f fused-src/gtest/test_fused_gtest_test-gtest-all.$(OBJEXT) - -rm -f fused-src/gtest/test_fused_gtest_test-gtest_main.$(OBJEXT) - -rm -f samples/sample1.$(OBJEXT) - -rm -f samples/sample1.lo - -rm -f samples/sample10_unittest.$(OBJEXT) - -rm -f samples/sample1_unittest.$(OBJEXT) - -rm -f samples/sample2.$(OBJEXT) - -rm -f samples/sample2.lo - -rm -f samples/sample4.$(OBJEXT) - -rm -f samples/sample4.lo - -rm -f samples/test_fused_gtest_test-sample1.$(OBJEXT) - -rm -f samples/test_fused_gtest_test-sample1_unittest.$(OBJEXT) - -rm -f src/gtest-all.$(OBJEXT) - -rm -f src/gtest-all.lo - -rm -f src/gtest_main.$(OBJEXT) - -rm -f src/gtest_main.lo - -rm -f test/gtest_all_test.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/sample1.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/sample10_unittest.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/sample1_unittest.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/sample2.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/sample4.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/test_fused_gtest_test-sample1.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/gtest-all.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/gtest_main.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/gtest_all_test.Po@am__quote@ - -.cc.o: -@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCXX_TRUE@ mv -f $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< - -.cc.obj: -@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCXX_TRUE@ mv -f $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cc.lo: -@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCXX_TRUE@ mv -f $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< - -fused-src/gtest/test_fused_gtest_test-gtest-all.o: fused-src/gtest/gtest-all.cc -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/gtest/test_fused_gtest_test-gtest-all.o -MD -MP -MF fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Tpo -c -o fused-src/gtest/test_fused_gtest_test-gtest-all.o `test -f 'fused-src/gtest/gtest-all.cc' || echo '$(srcdir)/'`fused-src/gtest/gtest-all.cc -@am__fastdepCXX_TRUE@ mv -f fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Tpo fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gtest/gtest-all.cc' object='fused-src/gtest/test_fused_gtest_test-gtest-all.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/gtest/test_fused_gtest_test-gtest-all.o `test -f 'fused-src/gtest/gtest-all.cc' || echo '$(srcdir)/'`fused-src/gtest/gtest-all.cc - -fused-src/gtest/test_fused_gtest_test-gtest-all.obj: fused-src/gtest/gtest-all.cc -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/gtest/test_fused_gtest_test-gtest-all.obj -MD -MP -MF fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Tpo -c -o fused-src/gtest/test_fused_gtest_test-gtest-all.obj `if test -f 'fused-src/gtest/gtest-all.cc'; then $(CYGPATH_W) 'fused-src/gtest/gtest-all.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gtest/gtest-all.cc'; fi` -@am__fastdepCXX_TRUE@ mv -f fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Tpo fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gtest/gtest-all.cc' object='fused-src/gtest/test_fused_gtest_test-gtest-all.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/gtest/test_fused_gtest_test-gtest-all.obj `if test -f 'fused-src/gtest/gtest-all.cc'; then $(CYGPATH_W) 'fused-src/gtest/gtest-all.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gtest/gtest-all.cc'; fi` - -fused-src/gtest/test_fused_gtest_test-gtest_main.o: fused-src/gtest/gtest_main.cc -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/gtest/test_fused_gtest_test-gtest_main.o -MD -MP -MF fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Tpo -c -o fused-src/gtest/test_fused_gtest_test-gtest_main.o `test -f 'fused-src/gtest/gtest_main.cc' || echo '$(srcdir)/'`fused-src/gtest/gtest_main.cc -@am__fastdepCXX_TRUE@ mv -f fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Tpo fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gtest/gtest_main.cc' object='fused-src/gtest/test_fused_gtest_test-gtest_main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/gtest/test_fused_gtest_test-gtest_main.o `test -f 'fused-src/gtest/gtest_main.cc' || echo '$(srcdir)/'`fused-src/gtest/gtest_main.cc - -fused-src/gtest/test_fused_gtest_test-gtest_main.obj: fused-src/gtest/gtest_main.cc -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/gtest/test_fused_gtest_test-gtest_main.obj -MD -MP -MF fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Tpo -c -o fused-src/gtest/test_fused_gtest_test-gtest_main.obj `if test -f 'fused-src/gtest/gtest_main.cc'; then $(CYGPATH_W) 'fused-src/gtest/gtest_main.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gtest/gtest_main.cc'; fi` -@am__fastdepCXX_TRUE@ mv -f fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Tpo fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gtest/gtest_main.cc' object='fused-src/gtest/test_fused_gtest_test-gtest_main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/gtest/test_fused_gtest_test-gtest_main.obj `if test -f 'fused-src/gtest/gtest_main.cc'; then $(CYGPATH_W) 'fused-src/gtest/gtest_main.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gtest/gtest_main.cc'; fi` - -samples/test_fused_gtest_test-sample1.o: samples/sample1.cc -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT samples/test_fused_gtest_test-sample1.o -MD -MP -MF samples/$(DEPDIR)/test_fused_gtest_test-sample1.Tpo -c -o samples/test_fused_gtest_test-sample1.o `test -f 'samples/sample1.cc' || echo '$(srcdir)/'`samples/sample1.cc -@am__fastdepCXX_TRUE@ mv -f samples/$(DEPDIR)/test_fused_gtest_test-sample1.Tpo samples/$(DEPDIR)/test_fused_gtest_test-sample1.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='samples/sample1.cc' object='samples/test_fused_gtest_test-sample1.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o samples/test_fused_gtest_test-sample1.o `test -f 'samples/sample1.cc' || echo '$(srcdir)/'`samples/sample1.cc - -samples/test_fused_gtest_test-sample1.obj: samples/sample1.cc -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT samples/test_fused_gtest_test-sample1.obj -MD -MP -MF samples/$(DEPDIR)/test_fused_gtest_test-sample1.Tpo -c -o samples/test_fused_gtest_test-sample1.obj `if test -f 'samples/sample1.cc'; then $(CYGPATH_W) 'samples/sample1.cc'; else $(CYGPATH_W) '$(srcdir)/samples/sample1.cc'; fi` -@am__fastdepCXX_TRUE@ mv -f samples/$(DEPDIR)/test_fused_gtest_test-sample1.Tpo samples/$(DEPDIR)/test_fused_gtest_test-sample1.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='samples/sample1.cc' object='samples/test_fused_gtest_test-sample1.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o samples/test_fused_gtest_test-sample1.obj `if test -f 'samples/sample1.cc'; then $(CYGPATH_W) 'samples/sample1.cc'; else $(CYGPATH_W) '$(srcdir)/samples/sample1.cc'; fi` - -samples/test_fused_gtest_test-sample1_unittest.o: samples/sample1_unittest.cc -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT samples/test_fused_gtest_test-sample1_unittest.o -MD -MP -MF samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Tpo -c -o samples/test_fused_gtest_test-sample1_unittest.o `test -f 'samples/sample1_unittest.cc' || echo '$(srcdir)/'`samples/sample1_unittest.cc -@am__fastdepCXX_TRUE@ mv -f samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Tpo samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='samples/sample1_unittest.cc' object='samples/test_fused_gtest_test-sample1_unittest.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o samples/test_fused_gtest_test-sample1_unittest.o `test -f 'samples/sample1_unittest.cc' || echo '$(srcdir)/'`samples/sample1_unittest.cc - -samples/test_fused_gtest_test-sample1_unittest.obj: samples/sample1_unittest.cc -@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT samples/test_fused_gtest_test-sample1_unittest.obj -MD -MP -MF samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Tpo -c -o samples/test_fused_gtest_test-sample1_unittest.obj `if test -f 'samples/sample1_unittest.cc'; then $(CYGPATH_W) 'samples/sample1_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/samples/sample1_unittest.cc'; fi` -@am__fastdepCXX_TRUE@ mv -f samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Tpo samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='samples/sample1_unittest.cc' object='samples/test_fused_gtest_test-sample1_unittest.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o samples/test_fused_gtest_test-sample1_unittest.obj `if test -f 'samples/sample1_unittest.cc'; then $(CYGPATH_W) 'samples/sample1_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/samples/sample1_unittest.cc'; fi` - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -rm -rf lib/.libs lib/_libs - -rm -rf samples/.libs samples/_libs - -rm -rf src/.libs src/_libs - -rm -rf test/.libs test/_libs - -distclean-libtool: - -rm -f libtool -install-m4dataDATA: $(m4data_DATA) - @$(NORMAL_INSTALL) - test -z "$(m4datadir)" || $(MKDIR_P) "$(DESTDIR)$(m4datadir)" - @list='$(m4data_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(m4dataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(m4datadir)/$$f'"; \ - $(m4dataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(m4datadir)/$$f"; \ - done - -uninstall-m4dataDATA: - @$(NORMAL_UNINSTALL) - @list='$(m4data_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(m4datadir)/$$f'"; \ - rm -f "$(DESTDIR)$(m4datadir)/$$f"; \ - done -install-pkgincludeHEADERS: $(pkginclude_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" - @list='$(pkginclude_HEADERS)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(pkgincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgincludedir)/$$f'"; \ - $(pkgincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgincludedir)/$$f"; \ - done - -uninstall-pkgincludeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(pkginclude_HEADERS)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(pkgincludedir)/$$f'"; \ - rm -f "$(DESTDIR)$(pkgincludedir)/$$f"; \ - done -install-pkginclude_internalHEADERS: $(pkginclude_internal_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(pkginclude_internaldir)" || $(MKDIR_P) "$(DESTDIR)$(pkginclude_internaldir)" - @list='$(pkginclude_internal_HEADERS)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(pkginclude_internalHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkginclude_internaldir)/$$f'"; \ - $(pkginclude_internalHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkginclude_internaldir)/$$f"; \ - done - -uninstall-pkginclude_internalHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(pkginclude_internal_HEADERS)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(pkginclude_internaldir)/$$f'"; \ - rm -f "$(DESTDIR)$(pkginclude_internaldir)/$$f"; \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -check-TESTS: $(TESTS) - @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ - srcdir=$(srcdir); export srcdir; \ - list=' $(TESTS) '; \ - if test -n "$$list"; then \ - for tst in $$list; do \ - if test -f ./$$tst; then dir=./; \ - elif test -f $$tst; then dir=; \ - else dir="$(srcdir)/"; fi; \ - if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *$$ws$$tst$$ws*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - echo "XPASS: $$tst"; \ - ;; \ - *) \ - echo "PASS: $$tst"; \ - ;; \ - esac; \ - elif test $$? -ne 77; then \ - all=`expr $$all + 1`; \ - case " $(XFAIL_TESTS) " in \ - *$$ws$$tst$$ws*) \ - xfail=`expr $$xfail + 1`; \ - echo "XFAIL: $$tst"; \ - ;; \ - *) \ - failed=`expr $$failed + 1`; \ - echo "FAIL: $$tst"; \ - ;; \ - esac; \ - else \ - skip=`expr $$skip + 1`; \ - echo "SKIP: $$tst"; \ - fi; \ - done; \ - if test "$$failed" -eq 0; then \ - if test "$$xfail" -eq 0; then \ - banner="All $$all tests passed"; \ - else \ - banner="All $$all tests behaved as expected ($$xfail expected failures)"; \ - fi; \ - else \ - if test "$$xpass" -eq 0; then \ - banner="$$failed of $$all tests failed"; \ - else \ - banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \ - fi; \ - fi; \ - dashes="$$banner"; \ - skipped=""; \ - if test "$$skip" -ne 0; then \ - skipped="($$skip tests were not run)"; \ - test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$skipped"; \ - fi; \ - report=""; \ - if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ - report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ - dashes="$$report"; \ - fi; \ - dashes=`echo "$$dashes" | sed s/./=/g`; \ - echo "$$dashes"; \ - echo "$$banner"; \ - test -z "$$skipped" || echo "$$skipped"; \ - test -z "$$report" || echo "$$report"; \ - echo "$$dashes"; \ - test "$$failed" -eq 0; \ - else :; fi - -distdir: $(DISTFILES) - $(am__remove_distdir) - test -d $(distdir) || mkdir $(distdir) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done - -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ - ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ - || chmod -R a+r $(distdir) -dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - $(am__remove_distdir) -dist-bzip2: distdir - tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 - $(am__remove_distdir) - -dist-lzma: distdir - tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma - $(am__remove_distdir) - -dist-tarZ: distdir - tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z - $(am__remove_distdir) - -dist-shar: distdir - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz - $(am__remove_distdir) -dist-zip: distdir - -rm -f $(distdir).zip - zip -rq $(distdir).zip $(distdir) - $(am__remove_distdir) - -dist dist-all: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 - -rm -f $(distdir).zip - zip -rq $(distdir).zip $(distdir) - $(am__remove_distdir) - -# This target untars the dist file and tries a VPATH configuration. Then -# it guarantees that the distribution is self-contained by making another -# tarfile. -distcheck: dist - case '$(DIST_ARCHIVES)' in \ - *.tar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ - *.tar.bz2*) \ - bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ - *.tar.lzma*) \ - unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ - *.tar.Z*) \ - uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ - *.shar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ - *.zip*) \ - unzip $(distdir).zip ;;\ - esac - chmod -R a-w $(distdir); chmod a+w $(distdir) - mkdir $(distdir)/_build - mkdir $(distdir)/_inst - chmod a-w $(distdir) - dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ - && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ - && cd $(distdir)/_build \ - && ../configure --srcdir=.. --prefix="$$dc_install_base" \ - $(DISTCHECK_CONFIGURE_FLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) dvi \ - && $(MAKE) $(AM_MAKEFLAGS) check \ - && $(MAKE) $(AM_MAKEFLAGS) install \ - && $(MAKE) $(AM_MAKEFLAGS) installcheck \ - && $(MAKE) $(AM_MAKEFLAGS) uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ - distuninstallcheck \ - && chmod -R a-w "$$dc_install_base" \ - && ({ \ - (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ - distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ - } || { rm -rf "$$dc_destdir"; exit 1; }) \ - && rm -rf "$$dc_destdir" \ - && $(MAKE) $(AM_MAKEFLAGS) dist \ - && rm -rf $(DIST_ARCHIVES) \ - && $(MAKE) $(AM_MAKEFLAGS) distcleancheck - $(am__remove_distdir) - @(echo "$(distdir) archives ready for distribution: "; \ - list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ - sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' -distuninstallcheck: - @cd $(distuninstallcheck_dir) \ - && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ - || { echo "ERROR: files left after uninstall:" ; \ - if test -n "$(DESTDIR)"; then \ - echo " (check DESTDIR support)"; \ - fi ; \ - $(distuninstallcheck_listfiles) ; \ - exit 1; } >&2 -distcleancheck: distclean - @if test '$(srcdir)' = . ; then \ - echo "ERROR: distcleancheck can only run from a VPATH build" ; \ - exit 1 ; \ - fi - @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ - || { echo "ERROR: files left in build directory after distclean:" ; \ - $(distcleancheck_listfiles) ; \ - exit 1; } >&2 -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) - $(MAKE) $(AM_MAKEFLAGS) check-TESTS -check: check-am -all-am: Makefile $(LTLIBRARIES) $(SCRIPTS) $(DATA) $(HEADERS) -installdirs: - for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(m4datadir)" "$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(pkginclude_internaldir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -rm -f fused-src/gtest/$(DEPDIR)/$(am__dirstamp) - -rm -f fused-src/gtest/$(am__dirstamp) - -rm -f lib/$(am__dirstamp) - -rm -f samples/$(DEPDIR)/$(am__dirstamp) - -rm -f samples/$(am__dirstamp) - -rm -f src/$(DEPDIR)/$(am__dirstamp) - -rm -f src/$(am__dirstamp) - -rm -f test/$(DEPDIR)/$(am__dirstamp) - -rm -f test/$(am__dirstamp) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \ - clean-libtool clean-noinstLTLIBRARIES mostlyclean-am - -distclean: distclean-am - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -rf fused-src/gtest/$(DEPDIR) samples/$(DEPDIR) src/$(DEPDIR) test/$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-hdr distclean-libtool distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -info: info-am - -info-am: - -install-data-am: install-m4dataDATA install-pkgincludeHEADERS \ - install-pkginclude_internalHEADERS - -install-dvi: install-dvi-am - -install-exec-am: install-binSCRIPTS install-libLTLIBRARIES - -install-html: install-html-am - -install-info: install-info-am - -install-man: - -install-pdf: install-pdf-am - -install-ps: install-ps-am - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -rf $(top_srcdir)/autom4te.cache - -rm -rf fused-src/gtest/$(DEPDIR) samples/$(DEPDIR) src/$(DEPDIR) test/$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic \ - maintainer-clean-local - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binSCRIPTS uninstall-libLTLIBRARIES \ - uninstall-m4dataDATA uninstall-pkgincludeHEADERS \ - uninstall-pkginclude_internalHEADERS - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS all all-am am--refresh check check-TESTS check-am \ - clean clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \ - clean-libtool clean-noinstLTLIBRARIES ctags dist dist-all \ - dist-bzip2 dist-gzip dist-lzma dist-shar dist-tarZ dist-zip \ - distcheck distclean distclean-compile distclean-generic \ - distclean-hdr distclean-libtool distclean-tags distcleancheck \ - distdir distuninstallcheck dvi dvi-am html html-am info \ - info-am install install-am install-binSCRIPTS install-data \ - install-data-am install-dvi install-dvi-am install-exec \ - install-exec-am install-html install-html-am install-info \ - install-info-am install-libLTLIBRARIES install-m4dataDATA \ - install-man install-pdf install-pdf-am \ - install-pkgincludeHEADERS install-pkginclude_internalHEADERS \ - install-ps install-ps-am install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic maintainer-clean-local mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - pdf pdf-am ps ps-am tags uninstall uninstall-am \ - uninstall-binSCRIPTS uninstall-libLTLIBRARIES \ - uninstall-m4dataDATA uninstall-pkgincludeHEADERS \ - uninstall-pkginclude_internalHEADERS - - -# Build rules for putting fused Google Test files into the distribution -# package. The user can also create those files by manually running -# scripts/fuse_gtest_files.py. -$(test_fused_gtest_test_SOURCES): fused-gtest - -fused-gtest: $(pkginclude_HEADERS) $(pkginclude_internal_HEADERS) \ - $(GTEST_SRC) src/gtest-all.cc src/gtest_main.cc \ - scripts/fuse_gtest_files.py - mkdir -p "$(srcdir)/fused-src" - chmod -R u+w "$(srcdir)/fused-src" - rm -f "$(srcdir)/fused-src/gtest/gtest-all.cc" - rm -f "$(srcdir)/fused-src/gtest/gtest.h" - "$(srcdir)/scripts/fuse_gtest_files.py" "$(srcdir)/fused-src" - cp -f "$(srcdir)/src/gtest_main.cc" "$(srcdir)/fused-src/gtest/" - -maintainer-clean-local: - rm -rf "$(srcdir)/fused-src" -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/cpp/thirdparty/gtest-1.5.0/README b/cpp/thirdparty/gtest-1.5.0/README deleted file mode 100644 index ec6119002..000000000 --- a/cpp/thirdparty/gtest-1.5.0/README +++ /dev/null @@ -1,417 +0,0 @@ -Google C++ Testing Framework -============================ - -http://code.google.com/p/googletest/ - -Overview --------- - -Google's framework for writing C++ tests on a variety of platforms -(Linux, Mac OS X, Windows, Windows CE, Symbian, etc). Based on the -xUnit architecture. Supports automatic test discovery, a rich set of -assertions, user-defined assertions, death tests, fatal and non-fatal -failures, various options for running the tests, and XML test report -generation. - -Please see the project page above for more information as well as the -mailing list for questions, discussions, and development. There is -also an IRC channel on OFTC (irc.oftc.net) #gtest available. Please -join us! - -Requirements for End Users --------------------------- - -Google Test is designed to have fairly minimal requirements to build -and use with your projects, but there are some. Currently, we support -Linux, Windows, Mac OS X, and Cygwin. We will also make our best -effort to support other platforms (e.g. Solaris, AIX, and z/OS). -However, since core members of the Google Test project have no access -to these platforms, Google Test may have outstanding issues there. If -you notice any problems on your platform, please notify -googletestframework@googlegroups.com. Patches for fixing them are -even more welcome! - -### Linux Requirements ### - -These are the base requirements to build and use Google Test from a source -package (as described below): - * GNU-compatible Make or gmake - * POSIX-standard shell - * POSIX(-2) Regular Expressions (regex.h) - * A C++98-standard-compliant compiler - -### Windows Requirements ### - - * Microsoft Visual C++ 7.1 or newer - -### Cygwin Requirements ### - - * Cygwin 1.5.25-14 or newer - -### Mac OS X Requirements ### - - * Mac OS X 10.4 Tiger or newer - * Developer Tools Installed - -Also, you'll need CMake 2.6.4 or higher if you want to build the -samples using the provided CMake script, regardless of the platform. - -Requirements for Contributors ------------------------------ - -We welcome patches. If you plan to contribute a patch, you need to -build Google Test and its own tests from an SVN checkout (described -below), which has further requirements: - - * Python version 2.3 or newer (for running some of the tests and - re-generating certain source files from templates) - * CMake 2.6.4 or newer - -Getting the Source ------------------- - -There are two primary ways of getting Google Test's source code: you -can download a stable source release in your preferred archive format, -or directly check out the source from our Subversion (SVN) repositary. -The SVN checkout requires a few extra steps and some extra software -packages on your system, but lets you track the latest development and -make patches much more easily, so we highly encourage it. - -### Source Package ### - -Google Test is released in versioned source packages which can be -downloaded from the download page [1]. Several different archive -formats are provided, but the only difference is the tools used to -manipulate them, and the size of the resulting file. Download -whichever you are most comfortable with. - - [1] http://code.google.com/p/googletest/downloads/list - -Once the package is downloaded, expand it using whichever tools you -prefer for that type. This will result in a new directory with the -name "gtest-X.Y.Z" which contains all of the source code. Here are -some examples on Linux: - - tar -xvzf gtest-X.Y.Z.tar.gz - tar -xvjf gtest-X.Y.Z.tar.bz2 - unzip gtest-X.Y.Z.zip - -### SVN Checkout ### - -To check out the main branch (also known as the "trunk") of Google -Test, run the following Subversion command: - - svn checkout http://googletest.googlecode.com/svn/trunk/ gtest-svn - -Setting up the Build --------------------- - -To build Google Test and your tests that use it, you need to tell your -build system where to find its headers and source files. The exact -way to do it depends on which build system you use, and is usually -straightforward. - -### Generic Build Instructions ### - -Suppose you put Google Test in directory ${GTEST_DIR}. To build it, -create a library build target (or a project as called by Visual Studio -and Xcode) to compile - - ${GTEST_DIR}/src/gtest-all.cc - -with - - ${GTEST_DIR}/include and ${GTEST_DIR} - -in the header search path. Assuming a Linux-like system and gcc, -something like the following will do: - - g++ -I${GTEST_DIR}/include -I${GTEST_DIR} -c ${GTEST_DIR}/src/gtest-all.cc - ar -rv libgtest.a gtest-all.o - -Next, you should compile your test source file with -${GTEST_DIR}/include in the header search path, and link it with gtest -and any other necessary libraries: - - g++ -I${GTEST_DIR}/include path/to/your_test.cc libgtest.a -o your_test - -As an example, the make/ directory contains a Makefile that you can -use to build Google Test on systems where GNU make is available -(e.g. Linux, Mac OS X, and Cygwin). It doesn't try to build Google -Test's own tests. Instead, it just builds the Google Test library and -a sample test. You can use it as a starting point for your own build -script. - -If the default settings are correct for your environment, the -following commands should succeed: - - cd ${GTEST_DIR}/make - make - ./sample1_unittest - -If you see errors, try to tweak the contents of make/Makefile to make -them go away. There are instructions in make/Makefile on how to do -it. - -### Using CMake ### - -Google Test comes with a CMake build script (CMakeLists.txt) that can -be used on a wide range of platforms ("C" stands for cross-platofrm.). -If you don't have CMake installed already, you can download it for -free from http://www.cmake.org/. - -CMake works by generating native makefiles or build projects that can -be used in the compiler environment of your choice. The typical -workflow starts with: - - mkdir mybuild # Create a directory to hold the build output. - cd mybuild - cmake ${GTEST_DIR} # Generate native build scripts. - -If you want to build Google Test's samples, you should replace the -last command with - - cmake -Dbuild_gtest_samples=ON ${GTEST_DIR} - -If you are on a *nix system, you should now see a Makefile in the -current directory. Just type 'make' to build gtest. - -If you use Windows and have Vistual Studio installed, a gtest.sln file -and several .vcproj files will be created. You can then build them -using Visual Studio. - -On Mac OS X with Xcode installed, a .xcodeproj file will be generated. - -### Legacy Build Scripts ### - -Before settling on CMake, we have been providing hand-maintained build -projects/scripts for Visual Studio, Xcode, and Autotools. While we -continue to provide them for convenience, they are not actively -maintained any more. We highly recommend that you follow the -instructions in the previous two sections to integrate Google Test -with your existing build system. - -If you still need to use the legacy build scripts, here's how: - -The msvc\ folder contains two solutions with Visual C++ projects. -Open the gtest.sln or gtest-md.sln file using Visual Studio, and you -are ready to build Google Test the same way you build any Visual -Studio project. Files that have names ending with -md use DLL -versions of Microsoft runtime libraries (the /MD or the /MDd compiler -option). Files without that suffix use static versions of the runtime -libraries (the /MT or the /MTd option). Please note that one must use -the same option to compile both gtest and the test code. If you use -Visual Studio 2005 or above, we recommend the -md version as /MD is -the default for new projects in these versions of Visual Studio. - -On Mac OS X, open the gtest.xcodeproj in the xcode/ folder using -Xcode. Build the "gtest" target. The universal binary framework will -end up in your selected build directory (selected in the Xcode -"Preferences..." -> "Building" pane and defaults to xcode/build). -Alternatively, at the command line, enter: - - xcodebuild - -This will build the "Release" configuration of gtest.framework in your -default build location. See the "xcodebuild" man page for more -information about building different configurations and building in -different locations. - -Tweaking Google Test --------------------- - -Google Test can be used in diverse environments. The default -configuration may not work (or may not work well) out of the box in -some environments. However, you can easily tweak Google Test by -defining control macros on the compiler command line. Generally, -these macros are named like GTEST_XYZ and you define them to either 1 -or 0 to enable or disable a certain feature. - -We list the most frequently used macros below. For a complete list, -see file include/gtest/internal/gtest-port.h. - -### Choosing a TR1 Tuple Library ### - -Some Google Test features require the C++ Technical Report 1 (TR1) -tuple library, which is not yet available with all compilers. The -good news is that Google Test implements a subset of TR1 tuple that's -enough for its own need, and will automatically use this when the -compiler doesn't provide TR1 tuple. - -Usually you don't need to care about which tuple library Google Test -uses. However, if your project already uses TR1 tuple, you need to -tell Google Test to use the same TR1 tuple library the rest of your -project uses, or the two tuple implementations will clash. To do -that, add - - -DGTEST_USE_OWN_TR1_TUPLE=0 - -to the compiler flags while compiling Google Test and your tests. If -you want to force Google Test to use its own tuple library, just add - - -DGTEST_USE_OWN_TR1_TUPLE=1 - -to the compiler flags instead. - -If you don't want Google Test to use tuple at all, add - - -DGTEST_HAS_TR1_TUPLE=0 - -and all features using tuple will be disabled. - -### Multi-threaded Tests ### - -Google Test is thread-safe where the pthread library is available. -After #include , you can check the GTEST_IS_THREADSAFE -macro to see whether this is the case (yes if the macro is #defined to -1, no if it's undefined.). - -If Google Test doesn't correctly detect whether pthread is available -in your environment, you can force it with - - -DGTEST_HAS_PTHREAD=1 - -or - - -DGTEST_HAS_PTHREAD=0 - -When Google Test uses pthread, you may need to add flags to your -compiler and/or linker to select the pthread library, or you'll get -link errors. If you use the CMake script or the deprecated Autotools -script, this is taken care of for you. If you use your own build -script, you'll need to read your compiler and linker's manual to -figure out what flags to add. - -### As a Shared Library (DLL) ### - -Google Test is compact, so most users can build and link it as a -static library for the simplicity. You can choose to use Google Test -as a shared library (known as a DLL on Windows) if you prefer. - -To compile gtest as a shared library, add - - -DGTEST_CREATE_SHARED_LIBRARY=1 - -to the compiler flags. You'll also need to tell the linker to produce -a shared library instead - consult your linker's manual for how to do -it. - -To compile your tests that use the gtest shared library, add - - -DGTEST_LINKED_AS_SHARED_LIBRARY=1 - -to the compiler flags. - -### Avoiding Macro Name Clashes ### - -In C++, macros don't obey namespaces. Therefore two libraries that -both define a macro of the same name will clash if you #include both -definitions. In case a Google Test macro clashes with another -library, you can force Google Test to rename its macro to avoid the -conflict. - -Specifically, if both Google Test and some other code define macro -FOO, you can add - - -DGTEST_DONT_DEFINE_FOO=1 - -to the compiler flags to tell Google Test to change the macro's name -from FOO to GTEST_FOO. Currently FOO can be FAIL, SUCCEED, or TEST. -For example, with -DGTEST_DONT_DEFINE_TEST=1, you'll need to write - - GTEST_TEST(SomeTest, DoesThis) { ... } - -instead of - - TEST(SomeTest, DoesThis) { ... } - -in order to define a test. - -Upgrating from an Earlier Version ---------------------------------- - -We strive to keep Google Test releases backward compatible. -Sometimes, though, we have to make some breaking changes for the -users' long-term benefits. This section describes what you'll need to -do if you are upgrading from an earlier version of Google Test. - -### Upgrading from 1.3.0 or Earlier ### - -You may need to explicitly enable or disable Google Test's own TR1 -tuple library. See the instructions in section "Choosing a TR1 Tuple -Library". - -### Upgrading from 1.4.0 or Earlier ### - -The Autotools build script (configure + make) is no longer officially -supportted. You are encouraged to migrate to your own build system or -use CMake. If you still need to use Autotools, you can find -instructions in the README file from Google Test 1.4.0. - -On platforms where the pthread library is available, Google Test uses -it in order to be thread-safe. See the "Multi-threaded Tests" section -for what this means to your build script. - -If you use Microsoft Visual C++ 7.1 with exceptions disabled, Google -Test will no longer compile. This should affect very few people, as a -large portion of STL (including ) doesn't compile in this mode -anyway. We decided to stop supporting it in order to greatly simplify -Google Test's implementation. - -Developing Google Test ----------------------- - -This section discusses how to make your own changes to Google Test. - -### Testing Google Test Itself ### - -To make sure your changes work as intended and don't break existing -functionality, you'll want to compile and run Google Test's own tests. -For that you can use CMake: - - mkdir mybuild - cd mybuild - cmake -Dbuild_all_gtest_tests=ON ${GTEST_DIR} - -Make sure you have Python installed, as some of Google Test's tests -are written in Python. If the cmake command complains about not being -able to find Python ("Could NOT find PythonInterp (missing: -PYTHON_EXECUTABLE)"), try telling it explicitly where your Python -executable can be found: - - cmake -DPYTHON_EXECUTABLE=path/to/python -Dbuild_all_gtest_tests=ON \ - ${GTEST_DIR} - -Next, you can build Google Test and all of its own tests. On *nix, -this is usually done by 'make'. To run the tests, do - - make test - -All tests should pass. - -### Regenerating Source Files ### - -Some of Google Test's source files are generated from templates (not -in the C++ sense) using a script. A template file is named FOO.pump, -where FOO is the name of the file it will generate. For example, the -file include/gtest/internal/gtest-type-util.h.pump is used to generate -gtest-type-util.h in the same directory. - -Normally you don't need to worry about regenerating the source files, -unless you need to modify them. In that case, you should modify the -corresponding .pump files instead and run the pump.py Python script to -regenerate them. You can find pump.py in the scripts/ directory. -Read the Pump manual [2] for how to use it. - - [2] http://code.google.com/p/googletest/wiki/PumpManual - -### Contributing a Patch ### - -We welcome patches. Please read the Google Test developer's guide [3] -for how you can contribute. In particular, make sure you have signed -the Contributor License Agreement, or we won't be able to accept the -patch. - - [3] http://code.google.com/p/googletest/wiki/GoogleTestDevGuide - -Happy testing! diff --git a/cpp/thirdparty/gtest-1.5.0/aclocal.m4 b/cpp/thirdparty/gtest-1.5.0/aclocal.m4 deleted file mode 100644 index fb8dccb1c..000000000 --- a/cpp/thirdparty/gtest-1.5.0/aclocal.m4 +++ /dev/null @@ -1,7701 +0,0 @@ -# generated automatically by aclocal 1.10.1 -*- Autoconf -*- - -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2007, 2008 Free Software Foundation, Inc. -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(AC_AUTOCONF_VERSION, [2.61],, -[m4_warning([this file was generated for autoconf 2.61. -You have another version of autoconf. It may work, but is not guaranteed to. -If you have problems, you may need to regenerate the build system entirely. -To do so, use the procedure documented by the package, typically `autoreconf'.])]) - -# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- - -# serial 52 Debian 1.5.26-1ubuntu1 AC_PROG_LIBTOOL - - -# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) -# ----------------------------------------------------------- -# If this macro is not defined by Autoconf, define it here. -m4_ifdef([AC_PROVIDE_IFELSE], - [], - [m4_define([AC_PROVIDE_IFELSE], - [m4_ifdef([AC_PROVIDE_$1], - [$2], [$3])])]) - - -# AC_PROG_LIBTOOL -# --------------- -AC_DEFUN([AC_PROG_LIBTOOL], -[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl -dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX -dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. - AC_PROVIDE_IFELSE([AC_PROG_CXX], - [AC_LIBTOOL_CXX], - [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX - ])]) -dnl And a similar setup for Fortran 77 support - AC_PROVIDE_IFELSE([AC_PROG_F77], - [AC_LIBTOOL_F77], - [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 -])]) - -dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. -dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run -dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. - AC_PROVIDE_IFELSE([AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [ifdef([AC_PROG_GCJ], - [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([A][M_PROG_GCJ], - [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([LT_AC_PROG_GCJ], - [define([LT_AC_PROG_GCJ], - defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) -])])# AC_PROG_LIBTOOL - - -# _AC_PROG_LIBTOOL -# ---------------- -AC_DEFUN([_AC_PROG_LIBTOOL], -[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl -AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl -AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl -AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl - -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" - -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -AC_SUBST(LIBTOOL)dnl - -# Prevent multiple expansion -define([AC_PROG_LIBTOOL], []) -])# _AC_PROG_LIBTOOL - - -# AC_LIBTOOL_SETUP -# ---------------- -AC_DEFUN([AC_LIBTOOL_SETUP], -[AC_PREREQ(2.50)dnl -AC_REQUIRE([AC_ENABLE_SHARED])dnl -AC_REQUIRE([AC_ENABLE_STATIC])dnl -AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_PROG_LD])dnl -AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl -AC_REQUIRE([AC_PROG_NM])dnl - -AC_REQUIRE([AC_PROG_LN_S])dnl -AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl -# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! -AC_REQUIRE([AC_OBJEXT])dnl -AC_REQUIRE([AC_EXEEXT])dnl -dnl -AC_LIBTOOL_SYS_MAX_CMD_LEN -AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE -AC_LIBTOOL_OBJDIR - -AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl -_LT_AC_PROG_ECHO_BACKSLASH - -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed='sed -e 1s/^X//' -[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] - -# Same as above, but do not quote variable references. -[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] - -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' - -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' - -# Constants: -rm="rm -f" - -# Global variables: -default_ofile=libtool -can_build_shared=yes - -# All known linkers require a `.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a -ltmain="$ac_aux_dir/ltmain.sh" -ofile="$default_ofile" -with_gnu_ld="$lt_cv_prog_gnu_ld" - -AC_CHECK_TOOL(AR, ar, false) -AC_CHECK_TOOL(RANLIB, ranlib, :) -AC_CHECK_TOOL(STRIP, strip, :) - -old_CC="$CC" -old_CFLAGS="$CFLAGS" - -# Set sane defaults for various variables -test -z "$AR" && AR=ar -test -z "$AR_FLAGS" && AR_FLAGS=cru -test -z "$AS" && AS=as -test -z "$CC" && CC=cc -test -z "$LTCC" && LTCC=$CC -test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -test -z "$DLLTOOL" && DLLTOOL=dlltool -test -z "$LD" && LD=ld -test -z "$LN_S" && LN_S="ln -s" -test -z "$MAGIC_CMD" && MAGIC_CMD=file -test -z "$NM" && NM=nm -test -z "$SED" && SED=sed -test -z "$OBJDUMP" && OBJDUMP=objdump -test -z "$RANLIB" && RANLIB=: -test -z "$STRIP" && STRIP=: -test -z "$ac_objext" && ac_objext=o - -# Determine commands to create old-style static archives. -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' -old_postinstall_cmds='chmod 644 $oldlib' -old_postuninstall_cmds= - -if test -n "$RANLIB"; then - case $host_os in - openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" - ;; - *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" - ;; - esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" -fi - -_LT_CC_BASENAME([$compiler]) - -# Only perform the check for file, if the check method requires it -case $deplibs_check_method in -file_magic*) - if test "$file_magic_cmd" = '$MAGIC_CMD'; then - AC_PATH_MAGIC - fi - ;; -esac - -_LT_REQUIRED_DARWIN_CHECKS - -AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) -AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], -enable_win32_dll=yes, enable_win32_dll=no) - -AC_ARG_ENABLE([libtool-lock], - [AC_HELP_STRING([--disable-libtool-lock], - [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - -AC_ARG_WITH([pic], - [AC_HELP_STRING([--with-pic], - [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], - [pic_mode="$withval"], - [pic_mode=default]) -test -z "$pic_mode" && pic_mode=default - -# Use C for the default configuration in the libtool script -tagname= -AC_LIBTOOL_LANG_C_CONFIG -_LT_AC_TAGCONFIG -])# AC_LIBTOOL_SETUP - - -# _LT_AC_SYS_COMPILER -# ------------------- -AC_DEFUN([_LT_AC_SYS_COMPILER], -[AC_REQUIRE([AC_PROG_CC])dnl - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC -])# _LT_AC_SYS_COMPILER - - -# _LT_CC_BASENAME(CC) -# ------------------- -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -AC_DEFUN([_LT_CC_BASENAME], -[for cc_temp in $1""; do - case $cc_temp in - compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; - distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` -]) - - -# _LT_COMPILER_BOILERPLATE -# ------------------------ -# Check for compiler boilerplate output or warnings with -# the simple compiler test code. -AC_DEFUN([_LT_COMPILER_BOILERPLATE], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$rm conftest* -])# _LT_COMPILER_BOILERPLATE - - -# _LT_LINKER_BOILERPLATE -# ---------------------- -# Check for linker boilerplate output or warnings with -# the simple link test code. -AC_DEFUN([_LT_LINKER_BOILERPLATE], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$rm -r conftest* -])# _LT_LINKER_BOILERPLATE - -# _LT_REQUIRED_DARWIN_CHECKS -# -------------------------- -# Check for some things on darwin -AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS],[ - case $host_os in - rhapsody* | darwin*) - AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) - AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) - - AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], - [lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then - # By default we will add the -single_module flag. You can override - # by either setting the environment variable LT_MULTI_MODULE - # non-empty at configure time, or by adding -multi_module to the - # link flags. - echo "int foo(void){return 1;}" > conftest.c - $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ - -dynamiclib ${wl}-single_module conftest.c - if test -f libconftest.dylib; then - lt_cv_apple_cc_single_mod=yes - rm -rf libconftest.dylib* - fi - rm conftest.c - fi]) - AC_CACHE_CHECK([for -exported_symbols_list linker flag], - [lt_cv_ld_exported_symbols_list], - [lt_cv_ld_exported_symbols_list=no - save_LDFLAGS=$LDFLAGS - echo "_main" > conftest.sym - LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" - AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], - [lt_cv_ld_exported_symbols_list=yes], - [lt_cv_ld_exported_symbols_list=no]) - LDFLAGS="$save_LDFLAGS" - ]) - case $host_os in - rhapsody* | darwin1.[[0123]]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; - darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - darwin*) - # if running on 10.5 or later, the deployment target defaults - # to the OS version, if on x86, and 10.4, the deployment - # target defaults to 10.4. Don't you love it? - case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in - 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[[012]]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - esac - ;; - esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then - _lt_dar_single_mod='$single_module' - fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' - else - _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}" - fi - if test "$DSYMUTIL" != ":"; then - _lt_dsymutil="~$DSYMUTIL \$lib || :" - else - _lt_dsymutil= - fi - ;; - esac -]) - -# _LT_AC_SYS_LIBPATH_AIX -# ---------------------- -# Links a minimal program and checks the executable -# for the system default hardcoded library path. In most cases, -# this is /usr/lib:/lib, but when the MPI compilers are used -# the location of the communication and MPI libs are included too. -# If we don't find anything, use the default library path according -# to the aix ld manual. -AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_LINK_IFELSE(AC_LANG_PROGRAM,[ -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi],[]) -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -])# _LT_AC_SYS_LIBPATH_AIX - - -# _LT_AC_SHELL_INIT(ARG) -# ---------------------- -AC_DEFUN([_LT_AC_SHELL_INIT], -[ifdef([AC_DIVERSION_NOTICE], - [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], - [AC_DIVERT_PUSH(NOTICE)]) -$1 -AC_DIVERT_POP -])# _LT_AC_SHELL_INIT - - -# _LT_AC_PROG_ECHO_BACKSLASH -# -------------------------- -# Add some code to the start of the generated configure script which -# will find an echo command which doesn't interpret backslashes. -AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], -[_LT_AC_SHELL_INIT([ -# Check that we are running under the correct shell. -SHELL=${CONFIG_SHELL-/bin/sh} - -case X$ECHO in -X*--fallback-echo) - # Remove one level of quotation (which was required for Make). - ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` - ;; -esac - -echo=${ECHO-echo} -if test "X[$]1" = X--no-reexec; then - # Discard the --no-reexec flag, and continue. - shift -elif test "X[$]1" = X--fallback-echo; then - # Avoid inline document here, it may be left over - : -elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then - # Yippee, $echo works! - : -else - # Restart under the correct shell. - exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} -fi - -if test "X[$]1" = X--fallback-echo; then - # used as fallback echo - shift - cat </dev/null 2>&1 && unset CDPATH - -if test -z "$ECHO"; then -if test "X${echo_test_string+set}" != Xset; then -# find a string as large as possible, as long as the shell can cope with it - for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do - # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... - if (echo_test_string=`eval $cmd`) 2>/dev/null && - echo_test_string=`eval $cmd` && - (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null - then - break - fi - done -fi - -if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - : -else - # The Solaris, AIX, and Digital Unix default echo programs unquote - # backslashes. This makes it impossible to quote backslashes using - # echo "$something" | sed 's/\\/\\\\/g' - # - # So, first we look for a working echo in the user's PATH. - - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for dir in $PATH /usr/ucb; do - IFS="$lt_save_ifs" - if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && - test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - echo="$dir/echo" - break - fi - done - IFS="$lt_save_ifs" - - if test "X$echo" = Xecho; then - # We didn't find a better echo, so look for alternatives. - if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # This shell has a builtin print -r that does the trick. - echo='print -r' - elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && - test "X$CONFIG_SHELL" != X/bin/ksh; then - # If we have ksh, try running configure again with it. - ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} - export ORIGINAL_CONFIG_SHELL - CONFIG_SHELL=/bin/ksh - export CONFIG_SHELL - exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} - else - # Try using printf. - echo='printf %s\n' - if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # Cool, printf works - : - elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL - export CONFIG_SHELL - SHELL="$CONFIG_SHELL" - export SHELL - echo="$CONFIG_SHELL [$]0 --fallback-echo" - elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - echo="$CONFIG_SHELL [$]0 --fallback-echo" - else - # maybe with a smaller string... - prev=: - - for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do - if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null - then - break - fi - prev="$cmd" - done - - if test "$prev" != 'sed 50q "[$]0"'; then - echo_test_string=`eval $prev` - export echo_test_string - exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} - else - # Oops. We lost completely, so just stick with echo. - echo=echo - fi - fi - fi - fi -fi -fi - -# Copy echo and quote the copy suitably for passing to libtool from -# the Makefile, instead of quoting the original, which is used later. -ECHO=$echo -if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then - ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" -fi - -AC_SUBST(ECHO) -])])# _LT_AC_PROG_ECHO_BACKSLASH - - -# _LT_AC_LOCK -# ----------- -AC_DEFUN([_LT_AC_LOCK], -[AC_ARG_ENABLE([libtool-lock], - [AC_HELP_STRING([--disable-libtool-lock], - [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - -# Some flags need to be propagated to the compiler or linker for good -# libtool support. -case $host in -ia64-*-hpux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.$ac_objext` in - *ELF-32*) - HPUX_IA64_MODE="32" - ;; - *ELF-64*) - HPUX_IA64_MODE="64" - ;; - esac - fi - rm -rf conftest* - ;; -*-*-irix6*) - # Find out which ABI we are using. - echo '[#]line __oline__ "configure"' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - if test "$lt_cv_prog_gnu_ld" = yes; then - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -melf32bsmip" - ;; - *N32*) - LD="${LD-ld} -melf32bmipn32" - ;; - *64-bit*) - LD="${LD-ld} -melf64bmip" - ;; - esac - else - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -32" - ;; - *N32*) - LD="${LD-ld} -n32" - ;; - *64-bit*) - LD="${LD-ld} -64" - ;; - esac - fi - fi - rm -rf conftest* - ;; - -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ -s390*-*linux*|sparc*-*linux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in - *32-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_i386_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_i386" - ;; - ppc64-*linux*|powerpc64-*linux*) - LD="${LD-ld} -m elf32ppclinux" - ;; - s390x-*linux*) - LD="${LD-ld} -m elf_s390" - ;; - sparc64-*linux*) - LD="${LD-ld} -m elf32_sparc" - ;; - esac - ;; - *64-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_x86_64" - ;; - ppc*-*linux*|powerpc*-*linux*) - LD="${LD-ld} -m elf64ppc" - ;; - s390*-*linux*) - LD="${LD-ld} -m elf64_s390" - ;; - sparc*-*linux*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -*-*-sco3.2v5*) - # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -belf" - AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, - [AC_LANG_PUSH(C) - AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) - AC_LANG_POP]) - if test x"$lt_cv_cc_needs_belf" != x"yes"; then - # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" - fi - ;; -sparc*-*solaris*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in - *64-bit*) - case $lt_cv_prog_gnu_ld in - yes*) LD="${LD-ld} -m elf64_sparc" ;; - *) - if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then - LD="${LD-ld} -64" - fi - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], -[*-*-cygwin* | *-*-mingw* | *-*-pw32*) - AC_CHECK_TOOL(DLLTOOL, dlltool, false) - AC_CHECK_TOOL(AS, as, false) - AC_CHECK_TOOL(OBJDUMP, objdump, false) - ;; - ]) -esac - -need_locks="$enable_libtool_lock" - -])# _LT_AC_LOCK - - -# AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) -# ---------------------------------------------------------------- -# Check whether the given compiler option works -AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], -[AC_REQUIRE([LT_AC_PROG_SED]) -AC_CACHE_CHECK([$1], [$2], - [$2=no - ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$3" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - $2=yes - fi - fi - $rm conftest* -]) - -if test x"[$]$2" = xyes; then - ifelse([$5], , :, [$5]) -else - ifelse([$6], , :, [$6]) -fi -])# AC_LIBTOOL_COMPILER_OPTION - - -# AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [ACTION-SUCCESS], [ACTION-FAILURE]) -# ------------------------------------------------------------ -# Check whether the given compiler option works -AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_CACHE_CHECK([$1], [$2], - [$2=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $3" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&AS_MESSAGE_LOG_FD - $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - $2=yes - fi - else - $2=yes - fi - fi - $rm -r conftest* - LDFLAGS="$save_LDFLAGS" -]) - -if test x"[$]$2" = xyes; then - ifelse([$4], , :, [$4]) -else - ifelse([$5], , :, [$5]) -fi -])# AC_LIBTOOL_LINKER_OPTION - - -# AC_LIBTOOL_SYS_MAX_CMD_LEN -# -------------------------- -AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], -[# find the maximum length of command line arguments -AC_MSG_CHECKING([the maximum length of command line arguments]) -AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl - i=0 - teststring="ABCD" - - case $build_os in - msdosdjgpp*) - # On DJGPP, this test can blow up pretty badly due to problems in libc - # (any single argument exceeding 2000 bytes causes a buffer overrun - # during glob expansion). Even if it were fixed, the result of this - # check would be larger than it should be. - lt_cv_sys_max_cmd_len=12288; # 12K is about right - ;; - - gnu*) - # Under GNU Hurd, this test is not required because there is - # no limit to the length of command line arguments. - # Libtool will interpret -1 as no limit whatsoever - lt_cv_sys_max_cmd_len=-1; - ;; - - cygwin* | mingw*) - # On Win9x/ME, this test blows up -- it succeeds, but takes - # about 5 minutes as the teststring grows exponentially. - # Worse, since 9x/ME are not pre-emptively multitasking, - # you end up with a "frozen" computer, even though with patience - # the test eventually succeeds (with a max line length of 256k). - # Instead, let's just punt: use the minimum linelength reported by - # all of the supported platforms: 8192 (on NT/2K/XP). - lt_cv_sys_max_cmd_len=8192; - ;; - - amigaos*) - # On AmigaOS with pdksh, this test takes hours, literally. - # So we just punt and use a minimum line length of 8192. - lt_cv_sys_max_cmd_len=8192; - ;; - - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) - # This has been around since 386BSD, at least. Likely further. - if test -x /sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` - elif test -x /usr/sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` - else - lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs - fi - # And add a safety zone - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - ;; - - interix*) - # We know the value 262144 and hardcode it with a safety zone (like BSD) - lt_cv_sys_max_cmd_len=196608 - ;; - - osf*) - # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure - # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not - # nice to cause kernel panics so lets avoid the loop below. - # First set a reasonable default. - lt_cv_sys_max_cmd_len=16384 - # - if test -x /sbin/sysconfig; then - case `/sbin/sysconfig -q proc exec_disable_arg_limit` in - *1*) lt_cv_sys_max_cmd_len=-1 ;; - esac - fi - ;; - sco3.2v5*) - lt_cv_sys_max_cmd_len=102400 - ;; - sysv5* | sco5v6* | sysv4.2uw2*) - kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` - if test -n "$kargmax"; then - lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` - else - lt_cv_sys_max_cmd_len=32768 - fi - ;; - *) - lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - else - SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} - while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ - = "XX$teststring") >/dev/null 2>&1 && - new_result=`expr "X$teststring" : ".*" 2>&1` && - lt_cv_sys_max_cmd_len=$new_result && - test $i != 17 # 1/2 MB should be enough - do - i=`expr $i + 1` - teststring=$teststring$teststring - done - teststring= - # Add a significant safety factor because C++ compilers can tack on massive - # amounts of additional arguments before passing them to the linker. - # It appears as though 1/2 is a usable value. - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` - fi - ;; - esac -]) -if test -n $lt_cv_sys_max_cmd_len ; then - AC_MSG_RESULT($lt_cv_sys_max_cmd_len) -else - AC_MSG_RESULT(none) -fi -])# AC_LIBTOOL_SYS_MAX_CMD_LEN - - -# _LT_AC_CHECK_DLFCN -# ------------------ -AC_DEFUN([_LT_AC_CHECK_DLFCN], -[AC_CHECK_HEADERS(dlfcn.h)dnl -])# _LT_AC_CHECK_DLFCN - - -# _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, -# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) -# --------------------------------------------------------------------- -AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], -[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl -if test "$cross_compiling" = yes; then : - [$4] -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext < -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -#ifdef __cplusplus -extern "C" void exit (int); -#endif - -void fnord() { int i=42;} -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - /* dlclose (self); */ - } - else - puts (dlerror ()); - - exit (status); -}] -EOF - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) $1 ;; - x$lt_dlneed_uscore) $2 ;; - x$lt_dlunknown|x*) $3 ;; - esac - else : - # compilation failed - $3 - fi -fi -rm -fr conftest* -])# _LT_AC_TRY_DLOPEN_SELF - - -# AC_LIBTOOL_DLOPEN_SELF -# ---------------------- -AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], -[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl -if test "x$enable_dlopen" != xyes; then - enable_dlopen=unknown - enable_dlopen_self=unknown - enable_dlopen_self_static=unknown -else - lt_cv_dlopen=no - lt_cv_dlopen_libs= - - case $host_os in - beos*) - lt_cv_dlopen="load_add_on" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ;; - - mingw* | pw32*) - lt_cv_dlopen="LoadLibrary" - lt_cv_dlopen_libs= - ;; - - cygwin*) - lt_cv_dlopen="dlopen" - lt_cv_dlopen_libs= - ;; - - darwin*) - # if libdl is installed we need to link against it - AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ - lt_cv_dlopen="dyld" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ]) - ;; - - *) - AC_CHECK_FUNC([shl_load], - [lt_cv_dlopen="shl_load"], - [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], - [AC_CHECK_FUNC([dlopen], - [lt_cv_dlopen="dlopen"], - [AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], - [AC_CHECK_LIB([svld], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], - [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) - ]) - ]) - ]) - ]) - ]) - ;; - esac - - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else - enable_dlopen=no - fi - - case $lt_cv_dlopen in - dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - - save_LDFLAGS="$LDFLAGS" - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - - save_LIBS="$LIBS" - LIBS="$lt_cv_dlopen_libs $LIBS" - - AC_CACHE_CHECK([whether a program can dlopen itself], - lt_cv_dlopen_self, [dnl - _LT_AC_TRY_DLOPEN_SELF( - lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, - lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) - ]) - - if test "x$lt_cv_dlopen_self" = xyes; then - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" - AC_CACHE_CHECK([whether a statically linked program can dlopen itself], - lt_cv_dlopen_self_static, [dnl - _LT_AC_TRY_DLOPEN_SELF( - lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, - lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) - ]) - fi - - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" - ;; - esac - - case $lt_cv_dlopen_self in - yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; - *) enable_dlopen_self=unknown ;; - esac - - case $lt_cv_dlopen_self_static in - yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; - *) enable_dlopen_self_static=unknown ;; - esac -fi -])# AC_LIBTOOL_DLOPEN_SELF - - -# AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) -# --------------------------------- -# Check to see if options -c and -o are simultaneously supported by compiler -AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl -AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], - [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], - [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no - $rm -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes - fi - fi - chmod u+w . 2>&AS_MESSAGE_LOG_FD - $rm conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files - $rm out/* && rmdir out - cd .. - rmdir conftest - $rm conftest* -]) -])# AC_LIBTOOL_PROG_CC_C_O - - -# AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) -# ----------------------------------------- -# Check to see if we can do hard links to lock some files if needed -AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], -[AC_REQUIRE([_LT_AC_LOCK])dnl - -hard_links="nottested" -if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - AC_MSG_CHECKING([if we can lock with hard links]) - hard_links=yes - $rm conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - AC_MSG_RESULT([$hard_links]) - if test "$hard_links" = no; then - AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) - need_locks=warn - fi -else - need_locks=no -fi -])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS - - -# AC_LIBTOOL_OBJDIR -# ----------------- -AC_DEFUN([AC_LIBTOOL_OBJDIR], -[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], -[rm -f .libs 2>/dev/null -mkdir .libs 2>/dev/null -if test -d .libs; then - lt_cv_objdir=.libs -else - # MS-DOS does not allow filenames that begin with a dot. - lt_cv_objdir=_libs -fi -rmdir .libs 2>/dev/null]) -objdir=$lt_cv_objdir -])# AC_LIBTOOL_OBJDIR - - -# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) -# ---------------------------------------------- -# Check hardcoding attributes. -AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], -[AC_MSG_CHECKING([how to hardcode library paths into programs]) -_LT_AC_TAGVAR(hardcode_action, $1)= -if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ - test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ - test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then - - # We can hardcode non-existant directories. - if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && - test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then - # Linking always hardcodes the temporary library directory. - _LT_AC_TAGVAR(hardcode_action, $1)=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - _LT_AC_TAGVAR(hardcode_action, $1)=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - _LT_AC_TAGVAR(hardcode_action, $1)=unsupported -fi -AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) - -if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi -])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH - - -# AC_LIBTOOL_SYS_LIB_STRIP -# ------------------------ -AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], -[striplib= -old_striplib= -AC_MSG_CHECKING([whether stripping libraries is possible]) -if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - AC_MSG_RESULT([yes]) -else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP" ; then - striplib="$STRIP -x" - old_striplib="$STRIP -S" - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) -fi - ;; - *) - AC_MSG_RESULT([no]) - ;; - esac -fi -])# AC_LIBTOOL_SYS_LIB_STRIP - - -# AC_LIBTOOL_SYS_DYNAMIC_LINKER -# ----------------------------- -# PORTME Fill in your ld.so characteristics -AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_MSG_CHECKING([dynamic linker characteristics]) -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -m4_if($1,[],[ -if test "$GCC" = yes; then - case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; - esac - lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then - # if the path contains ";" then we assume it to be the separator - # otherwise default to the standard path separator (i.e. ":") - it is - # assumed that no part of a normal pathname contains ";" but that should - # okay in the real world where ";" in dirpaths is itself problematic. - lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e 's/;/ /g'` - else - lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. - lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` - for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else - test -d "$lt_sys_path" && \ - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" - fi - done - lt_search_path_spec=`echo $lt_tmp_lt_search_path_spec | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; - for (lt_i = NF; lt_i > 0; lt_i--) { - if ($lt_i != "" && $lt_i != ".") { - if ($lt_i == "..") { - lt_count++; - } else { - if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; - } else { - lt_count--; - } - } - } - } - if (lt_foo != "") { lt_freq[[lt_foo]]++; } - if (lt_freq[[lt_foo]] == 1) { print lt_foo; } -}'` - sys_lib_search_path_spec=`echo $lt_search_path_spec` -else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -fi]) -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[[4-9]]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[[01]] | aix4.[[01]].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[[45]]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $rm \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - m4_if([$1], [],[ - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[[123]]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[[01]]* | freebsdelf3.[[01]]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ - freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix[[3-9]]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -nto-qnx*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[[89]] | openbsd2.[[89]].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - export_dynamic_flag_spec='${wl}-Blargedynsym' - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - shlibpath_overrides_runpath=no - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - shlibpath_overrides_runpath=yes - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -AC_MSG_RESULT([$dynamic_linker]) -test "$dynamic_linker" = no && can_build_shared=no - -AC_CACHE_VAL([lt_cv_sys_lib_search_path_spec], -[lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"]) -sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -AC_CACHE_VAL([lt_cv_sys_lib_dlsearch_path_spec], -[lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"]) -sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi -])# AC_LIBTOOL_SYS_DYNAMIC_LINKER - - -# _LT_AC_TAGCONFIG -# ---------------- -AC_DEFUN([_LT_AC_TAGCONFIG], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_ARG_WITH([tags], - [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], - [include additional configurations @<:@automatic@:>@])], - [tagnames="$withval"]) - -if test -f "$ltmain" && test -n "$tagnames"; then - if test ! -f "${ofile}"; then - AC_MSG_WARN([output file `$ofile' does not exist]) - fi - - if test -z "$LTCC"; then - eval "`$SHELL ${ofile} --config | grep '^LTCC='`" - if test -z "$LTCC"; then - AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) - else - AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) - fi - fi - if test -z "$LTCFLAGS"; then - eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" - fi - - # Extract list of available tagged configurations in $ofile. - # Note that this assumes the entire list is on one line. - available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` - - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for tagname in $tagnames; do - IFS="$lt_save_ifs" - # Check whether tagname contains only valid characters - case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in - "") ;; - *) AC_MSG_ERROR([invalid tag name: $tagname]) - ;; - esac - - if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null - then - AC_MSG_ERROR([tag name \"$tagname\" already exists]) - fi - - # Update the list of available tags. - if test -n "$tagname"; then - echo appending configuration tag \"$tagname\" to $ofile - - case $tagname in - CXX) - if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then - AC_LIBTOOL_LANG_CXX_CONFIG - else - tagname="" - fi - ;; - - F77) - if test -n "$F77" && test "X$F77" != "Xno"; then - AC_LIBTOOL_LANG_F77_CONFIG - else - tagname="" - fi - ;; - - GCJ) - if test -n "$GCJ" && test "X$GCJ" != "Xno"; then - AC_LIBTOOL_LANG_GCJ_CONFIG - else - tagname="" - fi - ;; - - RC) - AC_LIBTOOL_LANG_RC_CONFIG - ;; - - *) - AC_MSG_ERROR([Unsupported tag name: $tagname]) - ;; - esac - - # Append the new tag name to the list of available tags. - if test -n "$tagname" ; then - available_tags="$available_tags $tagname" - fi - fi - done - IFS="$lt_save_ifs" - - # Now substitute the updated list of available tags. - if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then - mv "${ofile}T" "$ofile" - chmod +x "$ofile" - else - rm -f "${ofile}T" - AC_MSG_ERROR([unable to update list of available tagged configurations.]) - fi -fi -])# _LT_AC_TAGCONFIG - - -# AC_LIBTOOL_DLOPEN -# ----------------- -# enable checks for dlopen support -AC_DEFUN([AC_LIBTOOL_DLOPEN], - [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) -])# AC_LIBTOOL_DLOPEN - - -# AC_LIBTOOL_WIN32_DLL -# -------------------- -# declare package support for building win32 DLLs -AC_DEFUN([AC_LIBTOOL_WIN32_DLL], -[AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) -])# AC_LIBTOOL_WIN32_DLL - - -# AC_ENABLE_SHARED([DEFAULT]) -# --------------------------- -# implement the --enable-shared flag -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -AC_DEFUN([AC_ENABLE_SHARED], -[define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl -AC_ARG_ENABLE([shared], - [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], - [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_shared=yes ;; - no) enable_shared=no ;; - *) - enable_shared=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_shared=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_shared=]AC_ENABLE_SHARED_DEFAULT) -])# AC_ENABLE_SHARED - - -# AC_DISABLE_SHARED -# ----------------- -# set the default shared flag to --disable-shared -AC_DEFUN([AC_DISABLE_SHARED], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -AC_ENABLE_SHARED(no) -])# AC_DISABLE_SHARED - - -# AC_ENABLE_STATIC([DEFAULT]) -# --------------------------- -# implement the --enable-static flag -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -AC_DEFUN([AC_ENABLE_STATIC], -[define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl -AC_ARG_ENABLE([static], - [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], - [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; - *) - enable_static=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_static=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_static=]AC_ENABLE_STATIC_DEFAULT) -])# AC_ENABLE_STATIC - - -# AC_DISABLE_STATIC -# ----------------- -# set the default static flag to --disable-static -AC_DEFUN([AC_DISABLE_STATIC], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -AC_ENABLE_STATIC(no) -])# AC_DISABLE_STATIC - - -# AC_ENABLE_FAST_INSTALL([DEFAULT]) -# --------------------------------- -# implement the --enable-fast-install flag -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -AC_DEFUN([AC_ENABLE_FAST_INSTALL], -[define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl -AC_ARG_ENABLE([fast-install], - [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], - [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_fast_install=yes ;; - no) enable_fast_install=no ;; - *) - enable_fast_install=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_fast_install=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) -])# AC_ENABLE_FAST_INSTALL - - -# AC_DISABLE_FAST_INSTALL -# ----------------------- -# set the default to --disable-fast-install -AC_DEFUN([AC_DISABLE_FAST_INSTALL], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -AC_ENABLE_FAST_INSTALL(no) -])# AC_DISABLE_FAST_INSTALL - - -# AC_LIBTOOL_PICMODE([MODE]) -# -------------------------- -# implement the --with-pic flag -# MODE is either `yes' or `no'. If omitted, it defaults to `both'. -AC_DEFUN([AC_LIBTOOL_PICMODE], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -pic_mode=ifelse($#,1,$1,default) -])# AC_LIBTOOL_PICMODE - - -# AC_PROG_EGREP -# ------------- -# This is predefined starting with Autoconf 2.54, so this conditional -# definition can be removed once we require Autoconf 2.54 or later. -m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], -[AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], - [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 - then ac_cv_prog_egrep='grep -E' - else ac_cv_prog_egrep='egrep' - fi]) - EGREP=$ac_cv_prog_egrep - AC_SUBST([EGREP]) -])]) - - -# AC_PATH_TOOL_PREFIX -# ------------------- -# find a file program which can recognize shared library -AC_DEFUN([AC_PATH_TOOL_PREFIX], -[AC_REQUIRE([AC_PROG_EGREP])dnl -AC_MSG_CHECKING([for $1]) -AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, -[case $MAGIC_CMD in -[[\\/*] | ?:[\\/]*]) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -dnl $ac_dummy forces splitting on constant user-supplied paths. -dnl POSIX.2 word splitting is done only on the output of word expansions, -dnl not every word. This closes a longstanding sh security hole. - ac_dummy="ifelse([$2], , $PATH, [$2])" - for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$1; then - lt_cv_path_MAGIC_CMD="$ac_dir/$1" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -EOF - fi ;; - esac - fi - break - fi - done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" - ;; -esac]) -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -if test -n "$MAGIC_CMD"; then - AC_MSG_RESULT($MAGIC_CMD) -else - AC_MSG_RESULT(no) -fi -])# AC_PATH_TOOL_PREFIX - - -# AC_PATH_MAGIC -# ------------- -# find a file program which can recognize a shared library -AC_DEFUN([AC_PATH_MAGIC], -[AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) -if test -z "$lt_cv_path_MAGIC_CMD"; then - if test -n "$ac_tool_prefix"; then - AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) - else - MAGIC_CMD=: - fi -fi -])# AC_PATH_MAGIC - - -# AC_PROG_LD -# ---------- -# find the pathname to the GNU or non-GNU linker -AC_DEFUN([AC_PROG_LD], -[AC_ARG_WITH([gnu-ld], - [AC_HELP_STRING([--with-gnu-ld], - [assume the C compiler uses GNU ld @<:@default=no@:>@])], - [test "$withval" = no || with_gnu_ld=yes], - [with_gnu_ld=no]) -AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - AC_MSG_CHECKING([for ld used by $CC]) - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [[\\/]]* | ?:[[\\/]]*) - re_direlt='/[[^/]][[^/]]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` - while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do - ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - AC_MSG_CHECKING([for GNU ld]) -else - AC_MSG_CHECKING([for non-GNU ld]) -fi -AC_CACHE_VAL(lt_cv_path_LD, -[if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - else - lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - fi - ;; - -darwin* | rhapsody*) - lt_cv_deplibs_check_method=pass_all - ;; - -freebsd* | dragonfly*) - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then - case $host_cpu in - i*86 ) - # Not sure whether the presence of OpenBSD here was a mistake. - # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` - ;; - esac - else - lt_cv_deplibs_check_method=pass_all - fi - ;; - -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - -hpux10.20* | hpux11*) - lt_cv_file_magic_cmd=/usr/bin/file - case $host_cpu in - ia64*) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' - lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so - ;; - hppa*64*) - [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] - lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl - ;; - *) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' - lt_cv_file_magic_test_file=/usr/lib/libc.sl - ;; - esac - ;; - -interix[[3-9]]*) - # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' - ;; - -irix5* | irix6* | nonstopux*) - case $LD in - *-32|*"-32 ") libmagic=32-bit;; - *-n32|*"-n32 ") libmagic=N32;; - *-64|*"-64 ") libmagic=64-bit;; - *) libmagic=never-match;; - esac - lt_cv_deplibs_check_method=pass_all - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu) - lt_cv_deplibs_check_method=pass_all - ;; - -netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' - fi - ;; - -newos6*) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=/usr/lib/libnls.so - ;; - -nto-qnx*) - lt_cv_deplibs_check_method=unknown - ;; - -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - fi - ;; - -osf3* | osf4* | osf5*) - lt_cv_deplibs_check_method=pass_all - ;; - -rdos*) - lt_cv_deplibs_check_method=pass_all - ;; - -solaris*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv4 | sysv4.3*) - case $host_vendor in - motorola) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` - ;; - ncr) - lt_cv_deplibs_check_method=pass_all - ;; - sequent) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' - ;; - sni) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" - lt_cv_file_magic_test_file=/lib/libc.so - ;; - siemens) - lt_cv_deplibs_check_method=pass_all - ;; - pc) - lt_cv_deplibs_check_method=pass_all - ;; - esac - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - lt_cv_deplibs_check_method=pass_all - ;; -esac -]) -file_magic_cmd=$lt_cv_file_magic_cmd -deplibs_check_method=$lt_cv_deplibs_check_method -test -z "$deplibs_check_method" && deplibs_check_method=unknown -])# AC_DEPLIBS_CHECK_METHOD - - -# AC_PROG_NM -# ---------- -# find the pathname to a BSD-compatible name lister -AC_DEFUN([AC_PROG_NM], -[AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, -[if test -n "$NM"; then - # Let the user override the test. - lt_cv_path_NM="$NM" -else - lt_nm_to_check="${ac_tool_prefix}nm" - if test -n "$ac_tool_prefix" && test "$build" = "$host"; then - lt_nm_to_check="$lt_nm_to_check nm" - fi - for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then - # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: - # nm: unknown option "B" ignored - # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) - lt_cv_path_NM="$tmp_nm -B" - break - ;; - *) - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in - */dev/null*) - lt_cv_path_NM="$tmp_nm -p" - break - ;; - *) - lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but - continue # so that we can try to find one that supports BSD flags - ;; - esac - ;; - esac - fi - done - IFS="$lt_save_ifs" - done - test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm -fi]) -NM="$lt_cv_path_NM" -])# AC_PROG_NM - - -# AC_CHECK_LIBM -# ------------- -# check for math library -AC_DEFUN([AC_CHECK_LIBM], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -LIBM= -case $host in -*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) - # These system don't have libm, or don't need it - ;; -*-ncr-sysv4.3*) - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") - AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") - ;; -*) - AC_CHECK_LIB(m, cos, LIBM="-lm") - ;; -esac -])# AC_CHECK_LIBM - - -# AC_LIBLTDL_CONVENIENCE([DIRECTORY]) -# ----------------------------------- -# sets LIBLTDL to the link flags for the libltdl convenience library and -# LTDLINCL to the include flags for the libltdl header and adds -# --enable-ltdl-convenience to the configure arguments. Note that -# AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, -# it is assumed to be `libltdl'. LIBLTDL will be prefixed with -# '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' -# (note the single quotes!). If your package is not flat and you're not -# using automake, define top_builddir and top_srcdir appropriately in -# the Makefiles. -AC_DEFUN([AC_LIBLTDL_CONVENIENCE], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl - case $enable_ltdl_convenience in - no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; - "") enable_ltdl_convenience=yes - ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; - esac - LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la - LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) - # For backwards non-gettext consistent compatibility... - INCLTDL="$LTDLINCL" -])# AC_LIBLTDL_CONVENIENCE - - -# AC_LIBLTDL_INSTALLABLE([DIRECTORY]) -# ----------------------------------- -# sets LIBLTDL to the link flags for the libltdl installable library and -# LTDLINCL to the include flags for the libltdl header and adds -# --enable-ltdl-install to the configure arguments. Note that -# AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, -# and an installed libltdl is not found, it is assumed to be `libltdl'. -# LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with -# '${top_srcdir}/' (note the single quotes!). If your package is not -# flat and you're not using automake, define top_builddir and top_srcdir -# appropriately in the Makefiles. -# In the future, this macro may have to be called after AC_PROG_LIBTOOL. -AC_DEFUN([AC_LIBLTDL_INSTALLABLE], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl - AC_CHECK_LIB(ltdl, lt_dlinit, - [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], - [if test x"$enable_ltdl_install" = xno; then - AC_MSG_WARN([libltdl not installed, but installation disabled]) - else - enable_ltdl_install=yes - fi - ]) - if test x"$enable_ltdl_install" = x"yes"; then - ac_configure_args="$ac_configure_args --enable-ltdl-install" - LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la - LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) - else - ac_configure_args="$ac_configure_args --enable-ltdl-install=no" - LIBLTDL="-lltdl" - LTDLINCL= - fi - # For backwards non-gettext consistent compatibility... - INCLTDL="$LTDLINCL" -])# AC_LIBLTDL_INSTALLABLE - - -# AC_LIBTOOL_CXX -# -------------- -# enable support for C++ libraries -AC_DEFUN([AC_LIBTOOL_CXX], -[AC_REQUIRE([_LT_AC_LANG_CXX]) -])# AC_LIBTOOL_CXX - - -# _LT_AC_LANG_CXX -# --------------- -AC_DEFUN([_LT_AC_LANG_CXX], -[AC_REQUIRE([AC_PROG_CXX]) -AC_REQUIRE([_LT_AC_PROG_CXXCPP]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) -])# _LT_AC_LANG_CXX - -# _LT_AC_PROG_CXXCPP -# ------------------ -AC_DEFUN([_LT_AC_PROG_CXXCPP], -[ -AC_REQUIRE([AC_PROG_CXX]) -if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then - AC_PROG_CXXCPP -fi -])# _LT_AC_PROG_CXXCPP - -# AC_LIBTOOL_F77 -# -------------- -# enable support for Fortran 77 libraries -AC_DEFUN([AC_LIBTOOL_F77], -[AC_REQUIRE([_LT_AC_LANG_F77]) -])# AC_LIBTOOL_F77 - - -# _LT_AC_LANG_F77 -# --------------- -AC_DEFUN([_LT_AC_LANG_F77], -[AC_REQUIRE([AC_PROG_F77]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) -])# _LT_AC_LANG_F77 - - -# AC_LIBTOOL_GCJ -# -------------- -# enable support for GCJ libraries -AC_DEFUN([AC_LIBTOOL_GCJ], -[AC_REQUIRE([_LT_AC_LANG_GCJ]) -])# AC_LIBTOOL_GCJ - - -# _LT_AC_LANG_GCJ -# --------------- -AC_DEFUN([_LT_AC_LANG_GCJ], -[AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], - [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], - [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], - [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) -])# _LT_AC_LANG_GCJ - - -# AC_LIBTOOL_RC -# ------------- -# enable support for Windows resource files -AC_DEFUN([AC_LIBTOOL_RC], -[AC_REQUIRE([LT_AC_PROG_RC]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) -])# AC_LIBTOOL_RC - - -# AC_LIBTOOL_LANG_C_CONFIG -# ------------------------ -# Ensure that the configuration vars for the C compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) -AC_DEFUN([_LT_AC_LANG_C_CONFIG], -[lt_save_CC="$CC" -AC_LANG_PUSH(C) - -# Source file extension for C test sources. -ac_ext=c - -# Object file extension for compiled C test sources. -objext=o -_LT_AC_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(){return(0);}' - -_LT_AC_SYS_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) -AC_LIBTOOL_PROG_COMPILER_PIC($1) -AC_LIBTOOL_PROG_CC_C_O($1) -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) -AC_LIBTOOL_PROG_LD_SHLIBS($1) -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) -AC_LIBTOOL_SYS_LIB_STRIP -AC_LIBTOOL_DLOPEN_SELF - -# Report which library types will actually be built -AC_MSG_CHECKING([if libtool supports shared libraries]) -AC_MSG_RESULT([$can_build_shared]) - -AC_MSG_CHECKING([whether to build shared libraries]) -test "$can_build_shared" = "no" && enable_shared=no - -# On AIX, shared libraries and static libraries use the same namespace, and -# are all built from PIC. -case $host_os in -aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - -aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; -esac -AC_MSG_RESULT([$enable_shared]) - -AC_MSG_CHECKING([whether to build static libraries]) -# Make sure either enable_shared or enable_static is yes. -test "$enable_shared" = yes || enable_static=yes -AC_MSG_RESULT([$enable_static]) - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_POP -CC="$lt_save_CC" -])# AC_LIBTOOL_LANG_C_CONFIG - - -# AC_LIBTOOL_LANG_CXX_CONFIG -# -------------------------- -# Ensure that the configuration vars for the C compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) -AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], -[AC_LANG_PUSH(C++) -AC_REQUIRE([AC_PROG_CXX]) -AC_REQUIRE([_LT_AC_PROG_CXXCPP]) - -_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_AC_TAGVAR(allow_undefined_flag, $1)= -_LT_AC_TAGVAR(always_export_symbols, $1)=no -_LT_AC_TAGVAR(archive_expsym_cmds, $1)= -_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_AC_TAGVAR(hardcode_direct, $1)=no -_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= -_LT_AC_TAGVAR(hardcode_minus_L, $1)=no -_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported -_LT_AC_TAGVAR(hardcode_automatic, $1)=no -_LT_AC_TAGVAR(module_cmds, $1)= -_LT_AC_TAGVAR(module_expsym_cmds, $1)= -_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown -_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_AC_TAGVAR(no_undefined_flag, $1)= -_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= -_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Dependencies to place before and after the object being linked: -_LT_AC_TAGVAR(predep_objects, $1)= -_LT_AC_TAGVAR(postdep_objects, $1)= -_LT_AC_TAGVAR(predeps, $1)= -_LT_AC_TAGVAR(postdeps, $1)= -_LT_AC_TAGVAR(compiler_lib_search_path, $1)= -_LT_AC_TAGVAR(compiler_lib_search_dirs, $1)= - -# Source file extension for C++ test sources. -ac_ext=cpp - -# Object file extension for compiled C++ test sources. -objext=o -_LT_AC_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_AC_SYS_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC=$CC -lt_save_LD=$LD -lt_save_GCC=$GCC -GCC=$GXX -lt_save_with_gnu_ld=$with_gnu_ld -lt_save_path_LD=$lt_cv_path_LD -if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then - lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx -else - $as_unset lt_cv_prog_gnu_ld -fi -if test -n "${lt_cv_path_LDCXX+set}"; then - lt_cv_path_LD=$lt_cv_path_LDCXX -else - $as_unset lt_cv_path_LD -fi -test -z "${LDCXX+set}" || LD=$LDCXX -CC=${CXX-"c++"} -compiler=$CC -_LT_AC_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) - -# We don't want -fno-exception wen compiling C++ code, so set the -# no_builtin_flag separately -if test "$GXX" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' -else - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= -fi - -if test "$GXX" = yes; then - # Set up default GNU C++ configuration - - AC_PROG_LD - - # Check if GNU C++ uses GNU ld as the underlying linker, since the - # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - - # If archive_cmds runs LD, not CC, wlarc should be empty - # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to - # investigate it a little bit more. (MM) - wlarc='${wl}' - - # ancient GNU ld didn't support --whole-archive et. al. - if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ - grep 'no-whole-archive' > /dev/null; then - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - fi - else - with_gnu_ld=no - wlarc= - - # A generic and very simple default shared library creation - # command for GNU C++ for the case where it uses the native - # linker, instead of GNU ld. If possible, this setting should - # overridden to take advantage of the native linker features on - # the platform it is being used on. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - fi - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' - -else - GXX=no - with_gnu_ld=no - wlarc= -fi - -# PORTME: fill in a description of your system's C++ link characteristics -AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) -_LT_AC_TAGVAR(ld_shlibs, $1)=yes -case $host_os in - aix3*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - aix[[4-9]]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) - for ld_flag in $LDFLAGS; do - case $ld_flag in - *-brtl*) - aix_use_runtimelinking=yes - break - ;; - esac - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - _LT_AC_TAGVAR(archive_cmds, $1)='' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - if test "$GXX" = yes; then - case $host_os in aix4.[[012]]|aix4.[[012]].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - _LT_AC_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an empty executable. - _LT_AC_SYS_LIBPATH_AIX - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' - _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an empty executable. - _LT_AC_SYS_LIBPATH_AIX - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - chorus*) - case $cc_basename in - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - cygwin* | mingw* | pw32*) - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(always_export_symbols, $1)=no - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - darwin* | rhapsody*) - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - _LT_AC_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" - if test "$GXX" = yes ; then - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - if test "$lt_cv_apple_cc_single_mod" != "yes"; then - _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" - fi - else - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - fi - ;; - - dgux*) - case $cc_basename in - ec++*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - ghcx*) - # Green Hills C++ Compiler - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - freebsd[[12]]*) - # C++ shared libraries reported to be fairly broken before switch to ELF - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - freebsd-elf*) - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - ;; - freebsd* | dragonfly*) - # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF - # conventions - _LT_AC_TAGVAR(ld_shlibs, $1)=yes - ;; - gnu*) - ;; - hpux9*) - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, - # but as the default - # location of the library. - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - hpux10*|hpux11*) - if test $with_gnu_ld = no; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) ;; - *) - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - ;; - esac - fi - case $host_cpu in - hppa*64*|ia64*) - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, - # but as the default - # location of the library. - ;; - esac - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - fi - else - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - interix[[3-9]]*) - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - irix5* | irix6*) - case $cc_basename in - CC*) - # SGI C++ - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - - # Archives containing C++ object files must be created using - # "CC -ar", where "CC" is the IRIX C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' - ;; - *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' - fi - fi - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - ;; - esac - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - linux* | k*bsd*-gnu) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' - ;; - icpc*) - # Intel C++ - with_gnu_ld=yes - # version 8.0 and above of icpc choke on multiply defined symbols - # if we add $predep_objects and $postdep_objects, however 7.1 and - # earlier do not add the objects themselves. - case `$CC -V 2>&1` in - *"Version 7."*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - *) # Version 8.0 or newer - tmp_idyn= - case $host_cpu in - ia64*) tmp_idyn=' -i_dynamic';; - esac - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - esac - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - ;; - cxx*) - # Compaq C++ - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' - - runpath_var=LD_RUN_PATH - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - - # Not sure whether something based on - # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 - # would be better. - output_verbose_link_cmd='echo' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - esac - ;; - esac - ;; - lynxos*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - m88k*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - mvs*) - case $cc_basename in - cxx*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - fi - # Workaround some broken pre-1.5 toolchains - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' - ;; - openbsd2*) - # C++ shared libraries are fairly broken - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - openbsd*) - if test -f /usr/libexec/ld.so; then - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - fi - output_verbose_link_cmd='echo' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - osf3*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' - - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - cxx*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' - - else - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - osf4* | osf5*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Archives containing C++ object files must be created using - # the KAI C++ compiler. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - cxx*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ - $rm $lib.exp' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' - - else - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - psos*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - lcc*) - # Lucid - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. - # Supported since Solaris 2.6 (maybe 2.5.1?) - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' - ;; - esac - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - output_verbose_link_cmd='echo' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - - # The C++ compiler must be used to create the archive. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' - ;; - *) - # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' - if $CC --version | grep -v '^2\.7' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" - else - # g++ 2.7 appears to require `-G' NOT `-shared' on this - # platform. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" - fi - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - ;; - esac - fi - ;; - esac - ;; - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - # So that behaviour is only enabled if SCOABSPATH is set to a - # non-empty value in the environment. Most likely only useful for - # creating official distributions of packages. - # This is a hack until libtool officially supports absolute path - # names for shared libraries. - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - vxworks*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; -esac -AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) -test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no - -_LT_AC_TAGVAR(GCC, $1)="$GXX" -_LT_AC_TAGVAR(LD, $1)="$LD" - -AC_LIBTOOL_POSTDEP_PREDEP($1) -AC_LIBTOOL_PROG_COMPILER_PIC($1) -AC_LIBTOOL_PROG_CC_C_O($1) -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) -AC_LIBTOOL_PROG_LD_SHLIBS($1) -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_POP -CC=$lt_save_CC -LDCXX=$LD -LD=$lt_save_LD -GCC=$lt_save_GCC -with_gnu_ldcxx=$with_gnu_ld -with_gnu_ld=$lt_save_with_gnu_ld -lt_cv_path_LDCXX=$lt_cv_path_LD -lt_cv_path_LD=$lt_save_path_LD -lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld -lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -])# AC_LIBTOOL_LANG_CXX_CONFIG - -# AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) -# ------------------------------------ -# Figure out "hidden" library dependencies from verbose -# compiler output when linking a shared library. -# Parse the compiler output and extract the necessary -# objects, libraries and library flags. -AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -dnl we can't use the lt_simple_compile_test_code here, -dnl because it contains code intended for an executable, -dnl not a library. It's possible we should let each -dnl tag define a new lt_????_link_test_code variable, -dnl but it's only used here... -ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - # - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - if test "$solaris_use_stlport4" != yes; then - _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; -esac -]) -case " $_LT_AC_TAGVAR(postdeps, $1) " in -*" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; -esac -])# AC_LIBTOOL_POSTDEP_PREDEP - -# AC_LIBTOOL_LANG_F77_CONFIG -# -------------------------- -# Ensure that the configuration vars for the C compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)]) -AC_DEFUN([_LT_AC_LANG_F77_CONFIG], -[AC_REQUIRE([AC_PROG_F77]) -AC_LANG_PUSH(Fortran 77) - -_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_AC_TAGVAR(allow_undefined_flag, $1)= -_LT_AC_TAGVAR(always_export_symbols, $1)=no -_LT_AC_TAGVAR(archive_expsym_cmds, $1)= -_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_AC_TAGVAR(hardcode_direct, $1)=no -_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= -_LT_AC_TAGVAR(hardcode_minus_L, $1)=no -_LT_AC_TAGVAR(hardcode_automatic, $1)=no -_LT_AC_TAGVAR(module_cmds, $1)= -_LT_AC_TAGVAR(module_expsym_cmds, $1)= -_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown -_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_AC_TAGVAR(no_undefined_flag, $1)= -_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= -_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Source file extension for f77 test sources. -ac_ext=f - -# Object file extension for compiled f77 test sources. -objext=o -_LT_AC_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="\ - subroutine t - return - end -" - -# Code to be used in simple link tests -lt_simple_link_test_code="\ - program t - end -" - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_AC_SYS_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC="$CC" -CC=${F77-"f77"} -compiler=$CC -_LT_AC_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) - -AC_MSG_CHECKING([if libtool supports shared libraries]) -AC_MSG_RESULT([$can_build_shared]) - -AC_MSG_CHECKING([whether to build shared libraries]) -test "$can_build_shared" = "no" && enable_shared=no - -# On AIX, shared libraries and static libraries use the same namespace, and -# are all built from PIC. -case $host_os in -aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; -aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; -esac -AC_MSG_RESULT([$enable_shared]) - -AC_MSG_CHECKING([whether to build static libraries]) -# Make sure either enable_shared or enable_static is yes. -test "$enable_shared" = yes || enable_static=yes -AC_MSG_RESULT([$enable_static]) - -_LT_AC_TAGVAR(GCC, $1)="$G77" -_LT_AC_TAGVAR(LD, $1)="$LD" - -AC_LIBTOOL_PROG_COMPILER_PIC($1) -AC_LIBTOOL_PROG_CC_C_O($1) -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) -AC_LIBTOOL_PROG_LD_SHLIBS($1) -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_POP -CC="$lt_save_CC" -])# AC_LIBTOOL_LANG_F77_CONFIG - - -# AC_LIBTOOL_LANG_GCJ_CONFIG -# -------------------------- -# Ensure that the configuration vars for the C compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)]) -AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], -[AC_LANG_SAVE - -# Source file extension for Java test sources. -ac_ext=java - -# Object file extension for compiled Java test sources. -objext=o -_LT_AC_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="class foo {}" - -# Code to be used in simple link tests -lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_AC_SYS_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC="$CC" -CC=${GCJ-"gcj"} -compiler=$CC -_LT_AC_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) - -# GCJ did not exist at the time GCC didn't implicitly link libc in. -_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - -_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds - -AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) -AC_LIBTOOL_PROG_COMPILER_PIC($1) -AC_LIBTOOL_PROG_CC_C_O($1) -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) -AC_LIBTOOL_PROG_LD_SHLIBS($1) -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_RESTORE -CC="$lt_save_CC" -])# AC_LIBTOOL_LANG_GCJ_CONFIG - - -# AC_LIBTOOL_LANG_RC_CONFIG -# ------------------------- -# Ensure that the configuration vars for the Windows resource compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)]) -AC_DEFUN([_LT_AC_LANG_RC_CONFIG], -[AC_LANG_SAVE - -# Source file extension for RC test sources. -ac_ext=rc - -# Object file extension for compiled RC test sources. -objext=o -_LT_AC_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' - -# Code to be used in simple link tests -lt_simple_link_test_code="$lt_simple_compile_test_code" - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_AC_SYS_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC="$CC" -CC=${RC-"windres"} -compiler=$CC -_LT_AC_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) -_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_RESTORE -CC="$lt_save_CC" -])# AC_LIBTOOL_LANG_RC_CONFIG - - -# AC_LIBTOOL_CONFIG([TAGNAME]) -# ---------------------------- -# If TAGNAME is not passed, then create an initial libtool script -# with a default configuration from the untagged config vars. Otherwise -# add code to config.status for appending the configuration named by -# TAGNAME from the matching tagged config vars. -AC_DEFUN([AC_LIBTOOL_CONFIG], -[# The else clause should only fire when bootstrapping the -# libtool distribution, otherwise you forgot to ship ltmain.sh -# with your package, and you will get complaints that there are -# no rules to generate ltmain.sh. -if test -f "$ltmain"; then - # See if we are running on zsh, and set the options which allow our commands through - # without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST - fi - # Now quote all the things that may contain metacharacters while being - # careful not to overquote the AC_SUBSTed values. We take copies of the - # variables and quote the copies for generation of the libtool script. - for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ - SED SHELL STRIP \ - libname_spec library_names_spec soname_spec extract_expsyms_cmds \ - old_striplib striplib file_magic_cmd finish_cmds finish_eval \ - deplibs_check_method reload_flag reload_cmds need_locks \ - lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ - lt_cv_sys_global_symbol_to_c_name_address \ - sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ - old_postinstall_cmds old_postuninstall_cmds \ - _LT_AC_TAGVAR(compiler, $1) \ - _LT_AC_TAGVAR(CC, $1) \ - _LT_AC_TAGVAR(LD, $1) \ - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \ - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \ - _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \ - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \ - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \ - _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \ - _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \ - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \ - _LT_AC_TAGVAR(old_archive_cmds, $1) \ - _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \ - _LT_AC_TAGVAR(predep_objects, $1) \ - _LT_AC_TAGVAR(postdep_objects, $1) \ - _LT_AC_TAGVAR(predeps, $1) \ - _LT_AC_TAGVAR(postdeps, $1) \ - _LT_AC_TAGVAR(compiler_lib_search_path, $1) \ - _LT_AC_TAGVAR(compiler_lib_search_dirs, $1) \ - _LT_AC_TAGVAR(archive_cmds, $1) \ - _LT_AC_TAGVAR(archive_expsym_cmds, $1) \ - _LT_AC_TAGVAR(postinstall_cmds, $1) \ - _LT_AC_TAGVAR(postuninstall_cmds, $1) \ - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \ - _LT_AC_TAGVAR(allow_undefined_flag, $1) \ - _LT_AC_TAGVAR(no_undefined_flag, $1) \ - _LT_AC_TAGVAR(export_symbols_cmds, $1) \ - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \ - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \ - _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \ - _LT_AC_TAGVAR(hardcode_automatic, $1) \ - _LT_AC_TAGVAR(module_cmds, $1) \ - _LT_AC_TAGVAR(module_expsym_cmds, $1) \ - _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \ - _LT_AC_TAGVAR(fix_srcfile_path, $1) \ - _LT_AC_TAGVAR(exclude_expsyms, $1) \ - _LT_AC_TAGVAR(include_expsyms, $1); do - - case $var in - _LT_AC_TAGVAR(old_archive_cmds, $1) | \ - _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \ - _LT_AC_TAGVAR(archive_cmds, $1) | \ - _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \ - _LT_AC_TAGVAR(module_cmds, $1) | \ - _LT_AC_TAGVAR(module_expsym_cmds, $1) | \ - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \ - _LT_AC_TAGVAR(export_symbols_cmds, $1) | \ - extract_expsyms_cmds | reload_cmds | finish_cmds | \ - postinstall_cmds | postuninstall_cmds | \ - old_postinstall_cmds | old_postuninstall_cmds | \ - sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) - # Double-quote double-evaled strings. - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" - ;; - *) - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" - ;; - esac - done - - case $lt_echo in - *'\[$]0 --fallback-echo"') - lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'` - ;; - esac - -ifelse([$1], [], - [cfgfile="${ofile}T" - trap "$rm \"$cfgfile\"; exit 1" 1 2 15 - $rm -f "$cfgfile" - AC_MSG_NOTICE([creating $ofile])], - [cfgfile="$ofile"]) - - cat <<__EOF__ >> "$cfgfile" -ifelse([$1], [], -[#! $SHELL - -# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) -# NOTE: Changes made to this file will be lost: look at ltmain.sh. -# -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 -# Free Software Foundation, Inc. -# -# This file is part of GNU Libtool: -# Originally by Gordon Matzigkeit , 1996 -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# A sed program that does not truncate output. -SED=$lt_SED - -# Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="$SED -e 1s/^X//" - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -# The names of the tagged configurations supported by this script. -available_tags= - -# ### BEGIN LIBTOOL CONFIG], -[# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) - -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) - -# Whether or not to disallow shared libs when runtime libs are static -allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# An echo program that does not interpret backslashes. -echo=$lt_echo - -# The archiver. -AR=$lt_AR -AR_FLAGS=$lt_AR_FLAGS - -# A C compiler. -LTCC=$lt_LTCC - -# LTCC compiler flags. -LTCFLAGS=$lt_LTCFLAGS - -# A language-specific compiler. -CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) - -# Is the compiler the GNU C compiler? -with_gcc=$_LT_AC_TAGVAR(GCC, $1) - -# An ERE matcher. -EGREP=$lt_EGREP - -# The linker used to build libraries. -LD=$lt_[]_LT_AC_TAGVAR(LD, $1) - -# Whether we need hard or soft links. -LN_S=$lt_LN_S - -# A BSD-compatible nm program. -NM=$lt_NM - -# A symbol stripping program -STRIP=$lt_STRIP - -# Used to examine libraries when file_magic_cmd begins "file" -MAGIC_CMD=$MAGIC_CMD - -# Used on cygwin: DLL creation program. -DLLTOOL="$DLLTOOL" - -# Used on cygwin: object dumper. -OBJDUMP="$OBJDUMP" - -# Used on cygwin: assembler. -AS="$AS" - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# How to pass a linker flag through the compiler. -wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) - -# Object file suffix (normally "o"). -objext="$ac_objext" - -# Old archive suffix (normally "a"). -libext="$libext" - -# Shared library suffix (normally ".so"). -shrext_cmds='$shrext_cmds' - -# Executable file suffix (normally ""). -exeext="$exeext" - -# Additional compiler flags for building library objects. -pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) -pic_mode=$pic_mode - -# What is the maximum length of a command? -max_cmd_len=$lt_cv_sys_max_cmd_len - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Do we need the lib prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) - -# Compiler flag to generate thread-safe objects. -thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) - -# Library versioning type. -version_type=$version_type - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME. -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Commands used to build and install an old-style archive. -RANLIB=$lt_RANLIB -old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) - -# Commands used to build and install a shared archive. -archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) -archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) -postinstall_cmds=$lt_postinstall_cmds -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to build a loadable module (assumed same as above if empty) -module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) -module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - -# Dependencies to place before the objects being linked to create a -# shared library. -predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) - -# Dependencies to place after the objects being linked to create a -# shared library. -postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) - -# Dependencies to place before the objects being linked to create a -# shared library. -predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) - -# Dependencies to place after the objects being linked to create a -# shared library. -postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) - -# The directories searched by this compiler when creating a shared -# library -compiler_lib_search_dirs=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_dirs, $1) - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method == file_magic. -file_magic_cmd=$lt_file_magic_cmd - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) - -# Flag that forces no undefined symbols. -no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# Same as above, but a single script fragment to be evaled but not shown. -finish_eval=$lt_finish_eval - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm in a C name address pair -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# This is the shared library runtime path variable. -runpath_var=$runpath_var - -# This is the shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# How to hardcode a shared library path into an executable. -hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) - -# If ld is used when linking, flag to hardcode \$libdir into -# a binary during linking. This must work even if \$libdir does -# not exist. -hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) - -# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the -# resulting binary. -hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) - -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into -# the resulting binary. -hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) - -# Set to yes if building a shared library automatically hardcodes DIR into the library -# and all subsequent libraries and executables linked against it. -hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at relink time. -variables_saved_for_relink="$variables_saved_for_relink" - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) - -# Compile-time system search path for libraries -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Run-time system search path for libraries -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path - -# Set to yes if exported symbols are required. -always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) - -# The commands to list exported symbols. -export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) - -# Symbols that must always be exported. -include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) - -ifelse([$1],[], -[# ### END LIBTOOL CONFIG], -[# ### END LIBTOOL TAG CONFIG: $tagname]) - -__EOF__ - -ifelse([$1],[], [ - case $host_os in - aix3*) - cat <<\EOF >> "$cfgfile" - -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -EOF - ;; - esac - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) - - mv -f "$cfgfile" "$ofile" || \ - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" -]) -else - # If there is no Makefile yet, we rely on a make rule to execute - # `config.status --recheck' to rerun these tests and create the - # libtool script then. - ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` - if test -f "$ltmain_in"; then - test -f Makefile && make "$ltmain" - fi -fi -])# AC_LIBTOOL_CONFIG - - -# AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) -# ------------------------------------------- -AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], -[AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl - -_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= - -if test "$GCC" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' - - AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], - lt_cv_prog_compiler_rtti_exceptions, - [-fno-rtti -fno-exceptions], [], - [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) -fi -])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI - - -# AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE -# --------------------------------- -AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], -[AC_REQUIRE([AC_CANONICAL_HOST]) -AC_REQUIRE([LT_AC_PROG_SED]) -AC_REQUIRE([AC_PROG_NM]) -AC_REQUIRE([AC_OBJEXT]) -# Check for command to grab the raw symbol name followed by C symbol from nm. -AC_MSG_CHECKING([command to parse $NM output from $compiler object]) -AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], -[ -# These are sane defaults that work on at least a few old systems. -# [They come from Ultrix. What could be older than Ultrix?!! ;)] - -# Character class describing NM global symbol codes. -symcode='[[BCDEGRST]]' - -# Regexp to match symbols that can be accessed directly from C. -sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' - -# Transform an extracted symbol line into a proper C declaration -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" - -# Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - -# Define system-specific variables. -case $host_os in -aix*) - symcode='[[BCDT]]' - ;; -cygwin* | mingw* | pw32*) - symcode='[[ABCDGISTW]]' - ;; -hpux*) # Its linker distinguishes data from code symbols - if test "$host_cpu" = ia64; then - symcode='[[ABCDEGRST]]' - fi - lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - ;; -linux* | k*bsd*-gnu) - if test "$host_cpu" = ia64; then - symcode='[[ABCDGIRSTW]]' - lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - fi - ;; -irix* | nonstopux*) - symcode='[[BCDEGRST]]' - ;; -osf*) - symcode='[[BCDEGQRST]]' - ;; -solaris*) - symcode='[[BDRT]]' - ;; -sco3.2v5*) - symcode='[[DT]]' - ;; -sysv4.2uw2*) - symcode='[[DT]]' - ;; -sysv5* | sco5v6* | unixware* | OpenUNIX*) - symcode='[[ABDT]]' - ;; -sysv4) - symcode='[[DFNSTU]]' - ;; -esac - -# Handle CRLF in mingw tool chain -opt_cr= -case $build_os in -mingw*) - opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp - ;; -esac - -# If we're using GNU nm, then use its standard symbol codes. -case `$NM -V 2>&1` in -*GNU* | *'with BFD'*) - symcode='[[ABCDGIRSTW]]' ;; -esac - -# Try without a prefix undercore, then with it. -for ac_symprfx in "" "_"; do - - # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. - symxfrm="\\1 $ac_symprfx\\2 \\2" - - # Write the raw and C identifiers. - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" - - # Check to see that the pipe works correctly. - pipe_works=no - - rm -f conftest* - cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then - mv -f "$nlist"T "$nlist" - else - rm -f "$nlist"T - fi - - # Make sure that we snagged all the symbols we need. - if grep ' nm_test_var$' "$nlist" >/dev/null; then - if grep ' nm_test_func$' "$nlist" >/dev/null; then - cat < conftest.$ac_ext -#ifdef __cplusplus -extern "C" { -#endif - -EOF - # Now generate the symbol file. - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' - - cat <> conftest.$ac_ext -#if defined (__STDC__) && __STDC__ -# define lt_ptr_t void * -#else -# define lt_ptr_t char * -# define const -#endif - -/* The mapping between symbol names and symbols. */ -const struct { - const char *name; - lt_ptr_t address; -} -lt_preloaded_symbols[[]] = -{ -EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext - cat <<\EOF >> conftest.$ac_ext - {0, (lt_ptr_t) 0} -}; - -#ifdef __cplusplus -} -#endif -EOF - # Now try linking the two files. - mv conftest.$ac_objext conftstm.$ac_objext - lt_save_LIBS="$LIBS" - lt_save_CFLAGS="$CFLAGS" - LIBS="conftstm.$ac_objext" - CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then - pipe_works=yes - fi - LIBS="$lt_save_LIBS" - CFLAGS="$lt_save_CFLAGS" - else - echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD - fi - else - echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD - fi - else - echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD - fi - else - echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD - cat conftest.$ac_ext >&5 - fi - rm -rf conftest* conftst* - - # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then - break - else - lt_cv_sys_global_symbol_pipe= - fi -done -]) -if test -z "$lt_cv_sys_global_symbol_pipe"; then - lt_cv_sys_global_symbol_to_cdecl= -fi -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then - AC_MSG_RESULT(failed) -else - AC_MSG_RESULT(ok) -fi -]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE - - -# AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) -# --------------------------------------- -AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], -[_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= -_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= -_LT_AC_TAGVAR(lt_prog_compiler_static, $1)= - -AC_MSG_CHECKING([for $compiler option to produce PIC]) - ifelse([$1],[CXX],[ - # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - amigaos*) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - mingw* | cygwin* | os2* | pw32*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - m4_if([$1], [GCJ], [], - [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - *djgpp*) - # DJGPP does not support shared libraries at all - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - interix[[3-9]]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - sysv4*MP*) - if test -d /usr/nec; then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - hpux*) - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - else - case $host_os in - aix[[4-9]]*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - chorus*) - case $cc_basename in - cxch68*) - # Green Hills C++ Compiler - # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" - ;; - esac - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - esac - ;; - dgux*) - case $cc_basename in - ec++*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - ghcx*) - # Green Hills C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - freebsd* | dragonfly*) - # FreeBSD uses GNU C++ - ;; - hpux9* | hpux10* | hpux11*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - fi - ;; - aCC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - ;; - *) - ;; - esac - ;; - interix*) - # This is c89, which is MS Visual C++ (no shared libs) - # Anyone wants to do a port? - ;; - irix5* | irix6* | nonstopux*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - # CC pic flag -KPIC is the default. - ;; - *) - ;; - esac - ;; - linux* | k*bsd*-gnu) - case $cc_basename in - KCC*) - # KAI C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - icpc* | ecpc*) - # Intel C++ - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler. - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - cxx*) - # Compaq C++ - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - esac - ;; - esac - ;; - lynxos*) - ;; - m88k*) - ;; - mvs*) - case $cc_basename in - cxx*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' - ;; - *) - ;; - esac - ;; - netbsd* | netbsdelf*-gnu) - ;; - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - ;; - RCC*) - # Rational C++ 2.4.1 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - cxx*) - # Digital/Compaq C++ - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - ;; - esac - ;; - psos*) - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - ;; - *) - ;; - esac - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - lcc*) - # Lucid - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - *) - ;; - esac - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - esac - ;; - vxworks*) - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -], -[ - if test "$GCC" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - amigaos*) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - m4_if([$1], [GCJ], [], - [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - - interix[[3-9]]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - enable_shared=no - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - - hpux*) - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - esac - ;; - - mingw* | cygwin* | pw32* | os2*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - m4_if([$1], [GCJ], [], - [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - - hpux9* | hpux10* | hpux11*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC (with -KPIC) is the default. - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - newsos6) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - linux* | k*bsd*-gnu) - case $cc_basename in - icc* | ecc*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgcc* | pgf77* | pgf90* | pgf95*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - ccc*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All Alpha code is PIC. - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C 5.9 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - *Sun\ F*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='' - ;; - esac - ;; - esac - ;; - - osf3* | osf4* | osf5*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All OSF/1 code is PIC. - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - rdos*) - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - solaris*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - case $cc_basename in - f77* | f90* | f95*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; - *) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; - esac - ;; - - sunos4*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - unicos*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - - uts4*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - *) - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -]) -AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then - AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], - _LT_AC_TAGVAR(lt_cv_prog_compiler_pic_works, $1), - [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], - [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in - "" | " "*) ;; - *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; - esac], - [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) -fi -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" - ;; -esac - -# -# Check to make sure the static flag actually works. -# -wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" -AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], - _LT_AC_TAGVAR(lt_cv_prog_compiler_static_works, $1), - $lt_tmp_static_flag, - [], - [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) -]) - - -# AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) -# ------------------------------------ -# See if the linker supports building shared libraries. -AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) -ifelse([$1],[CXX],[ - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - case $host_os in - aix[[4-9]]*) - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - else - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - fi - ;; - pw32*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" - ;; - cygwin* | mingw*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' - ;; - linux* | k*bsd*-gnu) - _LT_AC_TAGVAR(link_all_deplibs, $1)=no - ;; - *) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; - esac - _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] -],[ - runpath_var= - _LT_AC_TAGVAR(allow_undefined_flag, $1)= - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no - _LT_AC_TAGVAR(archive_cmds, $1)= - _LT_AC_TAGVAR(archive_expsym_cmds, $1)= - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_minus_L, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown - _LT_AC_TAGVAR(hardcode_automatic, $1)=no - _LT_AC_TAGVAR(module_cmds, $1)= - _LT_AC_TAGVAR(module_expsym_cmds, $1)= - _LT_AC_TAGVAR(always_export_symbols, $1)=no - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - _LT_AC_TAGVAR(include_expsyms, $1)= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. -dnl Note also adjust exclude_expsyms for C++ above. - extract_expsyms_cmds= - # Just being paranoid about ensuring that cc_basename is set. - _LT_CC_BASENAME([$compiler]) - case $host_os in - cygwin* | mingw* | pw32*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - esac - - _LT_AC_TAGVAR(ld_shlibs, $1)=yes - if test "$with_gnu_ld" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - fi - supports_anon_versioning=no - case `$LD -v 2>/dev/null` in - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[[3-9]]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - _LT_AC_TAGVAR(ld_shlibs, $1)=no - cat <&2 - -*** Warning: the GNU linker, at least up to release 2.9.1, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to modify your PATH -*** so that a non-GNU linker is found, and then restart. - -EOF - fi - ;; - - amigaos*) - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - - # Samuel A. Falvo II reports - # that the semantics of dynamic libraries on AmigaOS, at least up - # to version 4, is to share data among multiple programs linked - # with the same dynamic library. Since this doesn't match the - # behavior of shared libraries on other platforms, we can't use - # them. - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - cygwin* | mingw* | pw32*) - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(always_export_symbols, $1)=no - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' - - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - interix[[3-9]]*) - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | k*bsd*-gnu) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - tmp_addflag= - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - *) - tmp_sharedflag='-shared' ;; - esac - _LT_AC_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test $supports_anon_versioning = yes; then - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - $echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - _LT_AC_TAGVAR(link_all_deplibs, $1)=no - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then - _LT_AC_TAGVAR(ld_shlibs, $1)=no - cat <&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -EOF - elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - sunos4*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - - if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then - runpath_var= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(always_export_symbols, $1)=yes - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported - fi - ;; - - aix[[4-9]]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - else - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - _LT_AC_TAGVAR(archive_cmds, $1)='' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - if test "$GCC" = yes; then - case $host_os in aix4.[[012]]|aix4.[[012]].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - _LT_AC_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an empty executable. - _LT_AC_SYS_LIBPATH_AIX - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' - _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an empty executable. - _LT_AC_SYS_LIBPATH_AIX - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - # see comment about different semantics on the GNU ld section - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - - bsdi[[45]]*) - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic - ;; - - cygwin* | mingw* | pw32*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' - # FIXME: Should let the user specify the lib program. - _LT_AC_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' - _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - - darwin* | rhapsody*) - case $host_os in - rhapsody* | darwin1.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - ;; - 10.*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' - ;; - esac - fi - ;; - esac - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - if test "$GCC" = yes ; then - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - else - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - fi - ;; - - dgux*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - freebsd1*) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - hpux9*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - fi - if test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - newsos6) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - else - case $host_os in - openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - ;; - esac - fi - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - os2*) - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - else - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' - - # Both c and cxx compiler support -rpath directly - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - fi - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - solaris*) - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' - if test "$GCC" = yes; then - wlarc='${wl}' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' - else - wlarc='' - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' - fi - ;; - esac - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4) - case $host_vendor in - sni) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' - _LT_AC_TAGVAR(hardcode_direct, $1)=no - ;; - motorola) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4.3*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - _LT_AC_TAGVAR(ld_shlibs, $1)=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - fi -]) -AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) -test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no - -# -# Do we need to explicitly link libc? -# -case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in -x|xyes) - # Assume -lc should be added - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $_LT_AC_TAGVAR(archive_cmds, $1) in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - AC_MSG_CHECKING([whether -lc should be explicitly linked in]) - $rm conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if AC_TRY_EVAL(ac_compile) 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) - pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) - _LT_AC_TAGVAR(allow_undefined_flag, $1)= - if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) - then - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - else - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - fi - _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $rm conftest* - AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) - ;; - esac - fi - ;; -esac -])# AC_LIBTOOL_PROG_LD_SHLIBS - - -# _LT_AC_FILE_LTDLL_C -# ------------------- -# Be careful that the start marker always follows a newline. -AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ -# /* ltdll.c starts here */ -# #define WIN32_LEAN_AND_MEAN -# #include -# #undef WIN32_LEAN_AND_MEAN -# #include -# -# #ifndef __CYGWIN__ -# # ifdef __CYGWIN32__ -# # define __CYGWIN__ __CYGWIN32__ -# # endif -# #endif -# -# #ifdef __cplusplus -# extern "C" { -# #endif -# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); -# #ifdef __cplusplus -# } -# #endif -# -# #ifdef __CYGWIN__ -# #include -# DECLARE_CYGWIN_DLL( DllMain ); -# #endif -# HINSTANCE __hDllInstance_base; -# -# BOOL APIENTRY -# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) -# { -# __hDllInstance_base = hInst; -# return TRUE; -# } -# /* ltdll.c ends here */ -])# _LT_AC_FILE_LTDLL_C - - -# _LT_AC_TAGVAR(VARNAME, [TAGNAME]) -# --------------------------------- -AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) - - -# old names -AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) -AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) -AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) -AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) -AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) -AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) -AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) - -# This is just to silence aclocal about the macro not being used -ifelse([AC_DISABLE_FAST_INSTALL]) - -AC_DEFUN([LT_AC_PROG_GCJ], -[AC_CHECK_TOOL(GCJ, gcj, no) - test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" - AC_SUBST(GCJFLAGS) -]) - -AC_DEFUN([LT_AC_PROG_RC], -[AC_CHECK_TOOL(RC, windres, no) -]) - - -# Cheap backport of AS_EXECUTABLE_P and required macros -# from Autoconf 2.59; we should not use $as_executable_p directly. - -# _AS_TEST_PREPARE -# ---------------- -m4_ifndef([_AS_TEST_PREPARE], -[m4_defun([_AS_TEST_PREPARE], -[if test -x / >/dev/null 2>&1; then - as_executable_p='test -x' -else - as_executable_p='test -f' -fi -])])# _AS_TEST_PREPARE - -# AS_EXECUTABLE_P -# --------------- -# Check whether a file is executable. -m4_ifndef([AS_EXECUTABLE_P], -[m4_defun([AS_EXECUTABLE_P], -[AS_REQUIRE([_AS_TEST_PREPARE])dnl -$as_executable_p $1[]dnl -])])# AS_EXECUTABLE_P - -# NOTE: This macro has been submitted for inclusion into # -# GNU Autoconf as AC_PROG_SED. When it is available in # -# a released version of Autoconf we should remove this # -# macro and use it instead. # -# LT_AC_PROG_SED -# -------------- -# Check for a fully-functional sed program, that truncates -# as few characters as possible. Prefer GNU sed if found. -AC_DEFUN([LT_AC_PROG_SED], -[AC_MSG_CHECKING([for a sed that does not truncate output]) -AC_CACHE_VAL(lt_cv_path_SED, -[# Loop through the user's path and test for sed and gsed. -# Then use that list of sed's as ones to test for truncation. -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for lt_ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - if AS_EXECUTABLE_P(["$as_dir/$lt_ac_prog$ac_exec_ext"]); then - lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" - fi - done - done -done -IFS=$as_save_IFS -lt_ac_max=0 -lt_ac_count=0 -# Add /usr/xpg4/bin/sed as it is typically found on Solaris -# along with /bin/sed that truncates output. -for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && continue - cat /dev/null > conftest.in - lt_ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >conftest.in - # Check for GNU sed and select it if it is found. - if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then - lt_cv_path_SED=$lt_ac_sed - break - fi - while true; do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo >>conftest.nl - $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break - cmp -s conftest.out conftest.nl || break - # 10000 chars as input seems more than enough - test $lt_ac_count -gt 10 && break - lt_ac_count=`expr $lt_ac_count + 1` - if test $lt_ac_count -gt $lt_ac_max; then - lt_ac_max=$lt_ac_count - lt_cv_path_SED=$lt_ac_sed - fi - done -done -]) -SED=$lt_cv_path_SED -AC_SUBST([SED]) -AC_MSG_RESULT([$SED]) -]) - -# Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_AUTOMAKE_VERSION(VERSION) -# ---------------------------- -# Automake X.Y traces this macro to ensure aclocal.m4 has been -# generated from the m4 files accompanying Automake X.Y. -# (This private macro should not be called outside this file.) -AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.10' -dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to -dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.10.1], [], - [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl -]) - -# _AM_AUTOCONF_VERSION(VERSION) -# ----------------------------- -# aclocal traces this macro to find the Autoconf version. -# This is a private macro too. Using m4_define simplifies -# the logic in aclocal, which can simply ignore this definition. -m4_define([_AM_AUTOCONF_VERSION], []) - -# AM_SET_CURRENT_AUTOMAKE_VERSION -# ------------------------------- -# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. -# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. -AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.10.1])dnl -m4_ifndef([AC_AUTOCONF_VERSION], - [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -_AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)]) - -# AM_AUX_DIR_EXPAND -*- Autoconf -*- - -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets -# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to -# `$srcdir', `$srcdir/..', or `$srcdir/../..'. -# -# Of course, Automake must honor this variable whenever it calls a -# tool from the auxiliary directory. The problem is that $srcdir (and -# therefore $ac_aux_dir as well) can be either absolute or relative, -# depending on how configure is run. This is pretty annoying, since -# it makes $ac_aux_dir quite unusable in subdirectories: in the top -# source directory, any form will work fine, but in subdirectories a -# relative path needs to be adjusted first. -# -# $ac_aux_dir/missing -# fails when called from a subdirectory if $ac_aux_dir is relative -# $top_srcdir/$ac_aux_dir/missing -# fails if $ac_aux_dir is absolute, -# fails when called from a subdirectory in a VPATH build with -# a relative $ac_aux_dir -# -# The reason of the latter failure is that $top_srcdir and $ac_aux_dir -# are both prefixed by $srcdir. In an in-source build this is usually -# harmless because $srcdir is `.', but things will broke when you -# start a VPATH build or use an absolute $srcdir. -# -# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, -# iff we strip the leading $srcdir from $ac_aux_dir. That would be: -# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` -# and then we would define $MISSING as -# MISSING="\${SHELL} $am_aux_dir/missing" -# This will work as long as MISSING is not called from configure, because -# unfortunately $(top_srcdir) has no meaning in configure. -# However there are other variables, like CC, which are often used in -# configure, and could therefore not use this "fixed" $ac_aux_dir. -# -# Another solution, used here, is to always expand $ac_aux_dir to an -# absolute PATH. The drawback is that using absolute paths prevent a -# configured tree to be moved without reconfiguration. - -AC_DEFUN([AM_AUX_DIR_EXPAND], -[dnl Rely on autoconf to set up CDPATH properly. -AC_PREREQ([2.50])dnl -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` -]) - -# AM_CONDITIONAL -*- Autoconf -*- - -# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 8 - -# AM_CONDITIONAL(NAME, SHELL-CONDITION) -# ------------------------------------- -# Define a conditional. -AC_DEFUN([AM_CONDITIONAL], -[AC_PREREQ(2.52)dnl - ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], - [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl -AC_SUBST([$1_TRUE])dnl -AC_SUBST([$1_FALSE])dnl -_AM_SUBST_NOTMAKE([$1_TRUE])dnl -_AM_SUBST_NOTMAKE([$1_FALSE])dnl -if $2; then - $1_TRUE= - $1_FALSE='#' -else - $1_TRUE='#' - $1_FALSE= -fi -AC_CONFIG_COMMANDS_PRE( -[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then - AC_MSG_ERROR([[conditional "$1" was never defined. -Usually this means the macro was only invoked conditionally.]]) -fi])]) - -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 9 - -# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be -# written in clear, in which case automake, when reading aclocal.m4, -# will think it sees a *use*, and therefore will trigger all it's -# C support machinery. Also note that it means that autoscan, seeing -# CC etc. in the Makefile, will ask for an AC_PROG_CC use... - - -# _AM_DEPENDENCIES(NAME) -# ---------------------- -# See how the compiler implements dependency checking. -# NAME is "CC", "CXX", "GCJ", or "OBJC". -# We try a few techniques and use that to set a single cache variable. -# -# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was -# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular -# dependency, and given that the user is not expected to run this macro, -# just rely on AC_PROG_CC. -AC_DEFUN([_AM_DEPENDENCIES], -[AC_REQUIRE([AM_SET_DEPDIR])dnl -AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl -AC_REQUIRE([AM_MAKE_INCLUDE])dnl -AC_REQUIRE([AM_DEP_TRACK])dnl - -ifelse([$1], CC, [depcc="$CC" am_compiler_list=], - [$1], CXX, [depcc="$CXX" am_compiler_list=], - [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], - [$1], UPC, [depcc="$UPC" am_compiler_list=], - [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], - [depcc="$$1" am_compiler_list=]) - -AC_CACHE_CHECK([dependency style of $depcc], - [am_cv_$1_dependencies_compiler_type], -[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_$1_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` - fi - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - case $depmode in - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - none) break ;; - esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. - if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_$1_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_$1_dependencies_compiler_type=none -fi -]) -AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) -AM_CONDITIONAL([am__fastdep$1], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) -]) - - -# AM_SET_DEPDIR -# ------------- -# Choose a directory name for dependency files. -# This macro is AC_REQUIREd in _AM_DEPENDENCIES -AC_DEFUN([AM_SET_DEPDIR], -[AC_REQUIRE([AM_SET_LEADING_DOT])dnl -AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl -]) - - -# AM_DEP_TRACK -# ------------ -AC_DEFUN([AM_DEP_TRACK], -[AC_ARG_ENABLE(dependency-tracking, -[ --disable-dependency-tracking speeds up one-time build - --enable-dependency-tracking do not reject slow dependency extractors]) -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' -fi -AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -AC_SUBST([AMDEPBACKSLASH])dnl -_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl -]) - -# Generate code to set up dependency tracking. -*- Autoconf -*- - -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -#serial 3 - -# _AM_OUTPUT_DEPENDENCY_COMMANDS -# ------------------------------ -AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], -[for mf in $CONFIG_FILES; do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME(["$file"])` - AS_MKDIR_P([$dirpart/$fdir]) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done -done -])# _AM_OUTPUT_DEPENDENCY_COMMANDS - - -# AM_OUTPUT_DEPENDENCY_COMMANDS -# ----------------------------- -# This macro should only be invoked once -- use via AC_REQUIRE. -# -# This code is only required when automatic dependency tracking -# is enabled. FIXME. This creates each `.P' file that we will -# need in order to bootstrap the dependency handling code. -AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], -[AC_CONFIG_COMMANDS([depfiles], - [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], - [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) -]) - -# Do all the work for Automake. -*- Autoconf -*- - -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2008 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 13 - -# This macro actually does too much. Some checks are only needed if -# your package does certain things. But this isn't really a big deal. - -# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) -# AM_INIT_AUTOMAKE([OPTIONS]) -# ----------------------------------------------- -# The call with PACKAGE and VERSION arguments is the old style -# call (pre autoconf-2.50), which is being phased out. PACKAGE -# and VERSION should now be passed to AC_INIT and removed from -# the call to AM_INIT_AUTOMAKE. -# We support both call styles for the transition. After -# the next Automake release, Autoconf can make the AC_INIT -# arguments mandatory, and then we can depend on a new Autoconf -# release and drop the old call support. -AC_DEFUN([AM_INIT_AUTOMAKE], -[AC_PREREQ([2.60])dnl -dnl Autoconf wants to disallow AM_ names. We explicitly allow -dnl the ones we care about. -m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl -AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl -AC_REQUIRE([AC_PROG_INSTALL])dnl -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) - fi -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi -AC_SUBST([CYGPATH_W]) - -# Define the identity of the package. -dnl Distinguish between old-style and new-style calls. -m4_ifval([$2], -[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl - AC_SUBST([PACKAGE], [$1])dnl - AC_SUBST([VERSION], [$2])], -[_AM_SET_OPTIONS([$1])dnl -dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. -m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, - [m4_fatal([AC_INIT should be called with package and version arguments])])dnl - AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl - AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl - -_AM_IF_OPTION([no-define],, -[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) - AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl - -# Some tools Automake needs. -AC_REQUIRE([AM_SANITY_CHECK])dnl -AC_REQUIRE([AC_ARG_PROGRAM])dnl -AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) -AM_MISSING_PROG(AUTOCONF, autoconf) -AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) -AM_MISSING_PROG(AUTOHEADER, autoheader) -AM_MISSING_PROG(MAKEINFO, makeinfo) -AM_PROG_INSTALL_SH -AM_PROG_INSTALL_STRIP -AC_REQUIRE([AM_PROG_MKDIR_P])dnl -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -AC_REQUIRE([AC_PROG_AWK])dnl -AC_REQUIRE([AC_PROG_MAKE_SET])dnl -AC_REQUIRE([AM_SET_LEADING_DOT])dnl -_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], - [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], - [_AM_PROG_TAR([v7])])]) -_AM_IF_OPTION([no-dependencies],, -[AC_PROVIDE_IFELSE([AC_PROG_CC], - [_AM_DEPENDENCIES(CC)], - [define([AC_PROG_CC], - defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_CXX], - [_AM_DEPENDENCIES(CXX)], - [define([AC_PROG_CXX], - defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_OBJC], - [_AM_DEPENDENCIES(OBJC)], - [define([AC_PROG_OBJC], - defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl -]) -]) - - -# When config.status generates a header, we must update the stamp-h file. -# This file resides in the same directory as the config header -# that is generated. The stamp files are numbered to have different names. - -# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the -# loop where config.status creates the headers, so we can generate -# our stamp files there. -AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], -[# Compute $1's index in $config_headers. -_am_arg=$1 -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) - -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_INSTALL_SH -# ------------------ -# Define $install_sh. -AC_DEFUN([AM_PROG_INSTALL_SH], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} -AC_SUBST(install_sh)]) - -# Copyright (C) 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 2 - -# Check whether the underlying file-system supports filenames -# with a leading dot. For instance MS-DOS doesn't. -AC_DEFUN([AM_SET_LEADING_DOT], -[rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null -AC_SUBST([am__leading_dot])]) - -# Check to see how 'make' treats includes. -*- Autoconf -*- - -# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 3 - -# AM_MAKE_INCLUDE() -# ----------------- -# Check to see how make treats includes. -AC_DEFUN([AM_MAKE_INCLUDE], -[am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo done -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -AC_MSG_CHECKING([for style of include used by $am_make]) -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# We grep out `Entering directory' and `Leaving directory' -# messages which can occur if `w' ends up in MAKEFLAGS. -# In particular we don't look at `^make:' because GNU make might -# be invoked under some other name (usually "gmake"), in which -# case it prints its new name instead of `make'. -if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then - am__include=include - am__quote= - _am_result=GNU -fi -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then - am__include=.include - am__quote="\"" - _am_result=BSD - fi -fi -AC_SUBST([am__include]) -AC_SUBST([am__quote]) -AC_MSG_RESULT([$_am_result]) -rm -f confinc confmf -]) - -# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- - -# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 5 - -# AM_MISSING_PROG(NAME, PROGRAM) -# ------------------------------ -AC_DEFUN([AM_MISSING_PROG], -[AC_REQUIRE([AM_MISSING_HAS_RUN]) -$1=${$1-"${am_missing_run}$2"} -AC_SUBST($1)]) - - -# AM_MISSING_HAS_RUN -# ------------------ -# Define MISSING if not defined so far and test if it supports --run. -# If it does, set am_missing_run to use it, otherwise, to nothing. -AC_DEFUN([AM_MISSING_HAS_RUN], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -AC_REQUIRE_AUX_FILE([missing])dnl -test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " -else - am_missing_run= - AC_MSG_WARN([`missing' script is too old or missing]) -fi -]) - -# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_MKDIR_P -# --------------- -# Check for `mkdir -p'. -AC_DEFUN([AM_PROG_MKDIR_P], -[AC_PREREQ([2.60])dnl -AC_REQUIRE([AC_PROG_MKDIR_P])dnl -dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, -dnl while keeping a definition of mkdir_p for backward compatibility. -dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. -dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of -dnl Makefile.ins that do not define MKDIR_P, so we do our own -dnl adjustment using top_builddir (which is defined more often than -dnl MKDIR_P). -AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl -case $mkdir_p in - [[\\/$]]* | ?:[[\\/]]*) ;; - */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; -esac -]) - -# Helper functions for option handling. -*- Autoconf -*- - -# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 3 - -# _AM_MANGLE_OPTION(NAME) -# ----------------------- -AC_DEFUN([_AM_MANGLE_OPTION], -[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) - -# _AM_SET_OPTION(NAME) -# ------------------------------ -# Set option NAME. Presently that only means defining a flag for this option. -AC_DEFUN([_AM_SET_OPTION], -[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) - -# _AM_SET_OPTIONS(OPTIONS) -# ---------------------------------- -# OPTIONS is a space-separated list of Automake options. -AC_DEFUN([_AM_SET_OPTIONS], -[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) - -# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) -# ------------------------------------------- -# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. -AC_DEFUN([_AM_IF_OPTION], -[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) - -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# --------------------------------------------------------------------------- -# Adds support for distributing Python modules and packages. To -# install modules, copy them to $(pythondir), using the python_PYTHON -# automake variable. To install a package with the same name as the -# automake package, install to $(pkgpythondir), or use the -# pkgpython_PYTHON automake variable. -# -# The variables $(pyexecdir) and $(pkgpyexecdir) are provided as -# locations to install python extension modules (shared libraries). -# Another macro is required to find the appropriate flags to compile -# extension modules. -# -# If your package is configured with a different prefix to python, -# users will have to add the install directory to the PYTHONPATH -# environment variable, or create a .pth file (see the python -# documentation for details). -# -# If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will -# cause an error if the version of python installed on the system -# doesn't meet the requirement. MINIMUM-VERSION should consist of -# numbers and dots only. -AC_DEFUN([AM_PATH_PYTHON], - [ - dnl Find a Python interpreter. Python versions prior to 1.5 are not - dnl supported because the default installation locations changed from - dnl $prefix/lib/site-python in 1.4 to $prefix/lib/python1.5/site-packages - dnl in 1.5. - m4_define_default([_AM_PYTHON_INTERPRETER_LIST], - [python python2 python2.5 python2.4 python2.3 python2.2 dnl -python2.1 python2.0 python1.6 python1.5]) - - m4_if([$1],[],[ - dnl No version check is needed. - # Find any Python interpreter. - if test -z "$PYTHON"; then - AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) - fi - am_display_PYTHON=python - ], [ - dnl A version check is needed. - if test -n "$PYTHON"; then - # If the user set $PYTHON, use it and don't search something else. - AC_MSG_CHECKING([whether $PYTHON version >= $1]) - AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], - [AC_MSG_RESULT(yes)], - [AC_MSG_ERROR(too old)]) - am_display_PYTHON=$PYTHON - else - # Otherwise, try each interpreter until we find one that satisfies - # VERSION. - AC_CACHE_CHECK([for a Python interpreter with version >= $1], - [am_cv_pathless_PYTHON],[ - for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do - test "$am_cv_pathless_PYTHON" = none && break - AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) - done]) - # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. - if test "$am_cv_pathless_PYTHON" = none; then - PYTHON=: - else - AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) - fi - am_display_PYTHON=$am_cv_pathless_PYTHON - fi - ]) - - if test "$PYTHON" = :; then - dnl Run any user-specified action, or abort. - m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) - else - - dnl Query Python for its version number. Getting [:3] seems to be - dnl the best way to do this; it's what "site.py" does in the standard - dnl library. - - AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], - [am_cv_python_version=`$PYTHON -c "import sys; print sys.version[[:3]]"`]) - AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) - - dnl Use the values of $prefix and $exec_prefix for the corresponding - dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made - dnl distinct variables so they can be overridden if need be. However, - dnl general consensus is that you shouldn't need this ability. - - AC_SUBST([PYTHON_PREFIX], ['${prefix}']) - AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) - - dnl At times (like when building shared libraries) you may want - dnl to know which OS platform Python thinks this is. - - AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], - [am_cv_python_platform=`$PYTHON -c "import sys; print sys.platform"`]) - AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) - - - dnl Set up 4 directories: - - dnl pythondir -- where to install python scripts. This is the - dnl site-packages directory, not the python standard library - dnl directory like in previous automake betas. This behavior - dnl is more consistent with lispdir.m4 for example. - dnl Query distutils for this directory. distutils does not exist in - dnl Python 1.5, so we fall back to the hardcoded directory if it - dnl doesn't work. - AC_CACHE_CHECK([for $am_display_PYTHON script directory], - [am_cv_python_pythondir], - [am_cv_python_pythondir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(0,0,prefix='$PYTHON_PREFIX')" 2>/dev/null || - echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"`]) - AC_SUBST([pythondir], [$am_cv_python_pythondir]) - - dnl pkgpythondir -- $PACKAGE directory under pythondir. Was - dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is - dnl more consistent with the rest of automake. - - AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) - - dnl pyexecdir -- directory for installing python extension modules - dnl (shared libraries) - dnl Query distutils for this directory. distutils does not exist in - dnl Python 1.5, so we fall back to the hardcoded directory if it - dnl doesn't work. - AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], - [am_cv_python_pyexecdir], - [am_cv_python_pyexecdir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(1,0,prefix='$PYTHON_EXEC_PREFIX')" 2>/dev/null || - echo "${PYTHON_EXEC_PREFIX}/lib/python${PYTHON_VERSION}/site-packages"`]) - AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) - - dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) - - AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) - - dnl Run any user-specified action. - $2 - fi - -]) - - -# AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) -# --------------------------------------------------------------------------- -# Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. -# Run ACTION-IF-FALSE otherwise. -# This test uses sys.hexversion instead of the string equivalent (first -# word of sys.version), in order to cope with versions such as 2.2c1. -# hexversion has been introduced in Python 1.5.2; it's probably not -# worth to support older versions (1.5.1 was released on October 31, 1998). -AC_DEFUN([AM_PYTHON_CHECK_VERSION], - [prog="import sys, string -# split strings by '.' and convert to numeric. Append some zeros -# because we need at least 4 digits for the hex conversion. -minver = map(int, string.split('$2', '.')) + [[0, 0, 0]] -minverhex = 0 -for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[[i]] -sys.exit(sys.hexversion < minverhex)" - AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) - -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_RUN_LOG(COMMAND) -# ------------------- -# Run COMMAND, save the exit status in ac_status, and log it. -# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) -AC_DEFUN([AM_RUN_LOG], -[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD - ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - (exit $ac_status); }]) - -# Check to make sure that the build environment is sane. -*- Autoconf -*- - -# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 4 - -# AM_SANITY_CHECK -# --------------- -AC_DEFUN([AM_SANITY_CHECK], -[AC_MSG_CHECKING([whether build environment is sane]) -# Just in case -sleep 1 -echo timestamp > conftest.file -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` - if test "$[*]" = "X"; then - # -L didn't work. - set X `ls -t $srcdir/configure conftest.file` - fi - rm -f conftest.file - if test "$[*]" != "X $srcdir/configure conftest.file" \ - && test "$[*]" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken -alias in your environment]) - fi - - test "$[2]" = conftest.file - ) -then - # Ok. - : -else - AC_MSG_ERROR([newly created file is older than distributed files! -Check your system clock]) -fi -AC_MSG_RESULT(yes)]) - -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# AM_PROG_INSTALL_STRIP -# --------------------- -# One issue with vendor `install' (even GNU) is that you can't -# specify the program used to strip binaries. This is especially -# annoying in cross-compiling environments, where the build's strip -# is unlikely to handle the host's binaries. -# Fortunately install-sh will honor a STRIPPROG variable, so we -# always use install-sh in `make install-strip', and initialize -# STRIPPROG with the value of the STRIP variable (set by the user). -AC_DEFUN([AM_PROG_INSTALL_STRIP], -[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -dnl Don't test for $cross_compiling = yes, because it might be `maybe'. -if test "$cross_compiling" != no; then - AC_CHECK_TOOL([STRIP], [strip], :) -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" -AC_SUBST([INSTALL_STRIP_PROGRAM])]) - -# Copyright (C) 2006 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# _AM_SUBST_NOTMAKE(VARIABLE) -# --------------------------- -# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. -# This macro is traced by Automake. -AC_DEFUN([_AM_SUBST_NOTMAKE]) - -# Check how to create a tarball. -*- Autoconf -*- - -# Copyright (C) 2004, 2005 Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 2 - -# _AM_PROG_TAR(FORMAT) -# -------------------- -# Check how to create a tarball in format FORMAT. -# FORMAT should be one of `v7', `ustar', or `pax'. -# -# Substitute a variable $(am__tar) that is a command -# writing to stdout a FORMAT-tarball containing the directory -# $tardir. -# tardir=directory && $(am__tar) > result.tar -# -# Substitute a variable $(am__untar) that extract such -# a tarball read from stdin. -# $(am__untar) < result.tar -AC_DEFUN([_AM_PROG_TAR], -[# Always define AMTAR for backward compatibility. -AM_MISSING_PROG([AMTAR], [tar]) -m4_if([$1], [v7], - [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], - [m4_case([$1], [ustar],, [pax],, - [m4_fatal([Unknown tar format])]) -AC_MSG_CHECKING([how to create a $1 tar archive]) -# Loop over all known methods to create a tar archive until one works. -_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' -_am_tools=${am_cv_prog_tar_$1-$_am_tools} -# Do not fold the above two line into one, because Tru64 sh and -# Solaris sh will not grok spaces in the rhs of `-'. -for _am_tool in $_am_tools -do - case $_am_tool in - gnutar) - for _am_tar in tar gnutar gtar; - do - AM_RUN_LOG([$_am_tar --version]) && break - done - am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' - am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' - am__untar="$_am_tar -xf -" - ;; - plaintar) - # Must skip GNU tar: if it does not support --format= it doesn't create - # ustar tarball either. - (tar --version) >/dev/null 2>&1 && continue - am__tar='tar chf - "$$tardir"' - am__tar_='tar chf - "$tardir"' - am__untar='tar xf -' - ;; - pax) - am__tar='pax -L -x $1 -w "$$tardir"' - am__tar_='pax -L -x $1 -w "$tardir"' - am__untar='pax -r' - ;; - cpio) - am__tar='find "$$tardir" -print | cpio -o -H $1 -L' - am__tar_='find "$tardir" -print | cpio -o -H $1 -L' - am__untar='cpio -i -H $1 -d' - ;; - none) - am__tar=false - am__tar_=false - am__untar=false - ;; - esac - - # If the value was cached, stop now. We just wanted to have am__tar - # and am__untar set. - test -n "${am_cv_prog_tar_$1}" && break - - # tar/untar a dummy directory, and stop if the command works - rm -rf conftest.dir - mkdir conftest.dir - echo GrepMe > conftest.dir/file - AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) - rm -rf conftest.dir - if test -s conftest.tar; then - AM_RUN_LOG([$am__untar /dev/null 2>&1 && break - fi -done -rm -rf conftest.dir - -AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) -AC_MSG_RESULT([$am_cv_prog_tar_$1])]) -AC_SUBST([am__tar]) -AC_SUBST([am__untar]) -]) # _AM_PROG_TAR - diff --git a/cpp/thirdparty/gtest-1.5.0/build-aux/.gitignore b/cpp/thirdparty/gtest-1.5.0/build-aux/.gitignore deleted file mode 100644 index b0f0ddac4..000000000 --- a/cpp/thirdparty/gtest-1.5.0/build-aux/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/config.h -/stamp-h1 diff --git a/cpp/thirdparty/gtest-1.5.0/build-aux/config.guess b/cpp/thirdparty/gtest-1.5.0/build-aux/config.guess deleted file mode 100755 index 278f9e9e0..000000000 --- a/cpp/thirdparty/gtest-1.5.0/build-aux/config.guess +++ /dev/null @@ -1,1516 +0,0 @@ -#! /bin/sh -# Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. - -timestamp='2007-07-22' - -# This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - - -# Originally written by Per Bothner . -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. -# -# This script attempts to guess a canonical system name similar to -# config.sub. If it succeeds, it prints the system name on stdout, and -# exits with 0. Otherwise, it exits with 1. -# -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] - -Output the configuration name of the system \`$me' is run on. - -Operation modes: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to ." - -version="\ -GNU config.guess ($timestamp) - -Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; - --version | -v ) - echo "$version" ; exit ;; - --help | --h* | -h ) - echo "$usage"; exit ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" >&2 - exit 1 ;; - * ) - break ;; - esac -done - -if test $# != 0; then - echo "$me: too many arguments$help" >&2 - exit 1 -fi - -trap 'exit 1' 1 2 15 - -# CC_FOR_BUILD -- compiler used by this script. Note that the use of a -# compiler to aid in system detection is discouraged as it requires -# temporary files to be created and, as you can see below, it is a -# headache to deal with in a portable fashion. - -# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still -# use `HOST_CC' if defined, but it is deprecated. - -# Portable tmp directory creation inspired by the Autoconf team. - -set_cc_for_build=' -trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; -trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; -: ${TMPDIR=/tmp} ; - { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || - { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || - { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || - { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; -dummy=$tmp/dummy ; -tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; -case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; - for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then - CC_FOR_BUILD="$c"; break ; - fi ; - done ; - if test x"$CC_FOR_BUILD" = x ; then - CC_FOR_BUILD=no_compiler_found ; - fi - ;; - ,,*) CC_FOR_BUILD=$CC ;; - ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac ; set_cc_for_build= ;' - -# This is needed to find uname on a Pyramid OSx when run in the BSD universe. -# (ghazi@noc.rutgers.edu 1994-08-24) -if (test -f /.attbin/uname) >/dev/null 2>&1 ; then - PATH=$PATH:/.attbin ; export PATH -fi - -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown - -# Note: order is significant - the case branches are not exclusive. - -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in - *:NetBSD:*:*) - # NetBSD (nbsd) targets should (where applicable) match one or - # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, - # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently - # switched to ELF, *-*-netbsd* would select the old - # object file format. This provides both forward - # compatibility and a consistent mechanism for selecting the - # object file format. - # - # Note: NetBSD doesn't particularly care about the vendor - # portion of the name. We always set it to "unknown". - sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || echo unknown)` - case "${UNAME_MACHINE_ARCH}" in - armeb) machine=armeb-unknown ;; - arm*) machine=arm-unknown ;; - sh3el) machine=shl-unknown ;; - sh3eb) machine=sh-unknown ;; - sh5el) machine=sh5le-unknown ;; - *) machine=${UNAME_MACHINE_ARCH}-unknown ;; - esac - # The Operating System including object format, if it has switched - # to ELF recently, or will in the future. - case "${UNAME_MACHINE_ARCH}" in - arm*|i386|m68k|ns32k|sh3*|sparc|vax) - eval $set_cc_for_build - if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep __ELF__ >/dev/null - then - # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). - # Return netbsd for either. FIX? - os=netbsd - else - os=netbsdelf - fi - ;; - *) - os=netbsd - ;; - esac - # The OS release - # Debian GNU/NetBSD machines have a different userland, and - # thus, need a distinct triplet. However, they do not need - # kernel version information, so it can be replaced with a - # suitable tag, in the style of linux-gnu. - case "${UNAME_VERSION}" in - Debian*) - release='-gnu' - ;; - *) - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` - ;; - esac - # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: - # contains redundant information, the shorter form: - # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "${machine}-${os}${release}" - exit ;; - *:OpenBSD:*:*) - UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} - exit ;; - *:ekkoBSD:*:*) - echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} - exit ;; - *:SolidBSD:*:*) - echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} - exit ;; - macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd${UNAME_RELEASE} - exit ;; - *:MirBSD:*:*) - echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} - exit ;; - alpha:OSF1:*:*) - case $UNAME_RELEASE in - *4.0) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` - ;; - *5.*) - UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` - ;; - esac - # According to Compaq, /usr/sbin/psrinfo has been available on - # OSF/1 and Tru64 systems produced since 1995. I hope that - # covers most systems running today. This code pipes the CPU - # types through head -n 1, so we only detect the type of CPU 0. - ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` - case "$ALPHA_CPU_TYPE" in - "EV4 (21064)") - UNAME_MACHINE="alpha" ;; - "EV4.5 (21064)") - UNAME_MACHINE="alpha" ;; - "LCA4 (21066/21068)") - UNAME_MACHINE="alpha" ;; - "EV5 (21164)") - UNAME_MACHINE="alphaev5" ;; - "EV5.6 (21164A)") - UNAME_MACHINE="alphaev56" ;; - "EV5.6 (21164PC)") - UNAME_MACHINE="alphapca56" ;; - "EV5.7 (21164PC)") - UNAME_MACHINE="alphapca57" ;; - "EV6 (21264)") - UNAME_MACHINE="alphaev6" ;; - "EV6.7 (21264A)") - UNAME_MACHINE="alphaev67" ;; - "EV6.8CB (21264C)") - UNAME_MACHINE="alphaev68" ;; - "EV6.8AL (21264B)") - UNAME_MACHINE="alphaev68" ;; - "EV6.8CX (21264D)") - UNAME_MACHINE="alphaev68" ;; - "EV6.9A (21264/EV69A)") - UNAME_MACHINE="alphaev69" ;; - "EV7 (21364)") - UNAME_MACHINE="alphaev7" ;; - "EV7.9 (21364A)") - UNAME_MACHINE="alphaev79" ;; - esac - # A Pn.n version is a patched version. - # A Vn.n version is a released version. - # A Tn.n version is a released field test version. - # A Xn.n version is an unreleased experimental baselevel. - # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - exit ;; - Alpha\ *:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # Should we change UNAME_MACHINE based on the output of uname instead - # of the specific Alpha model? - echo alpha-pc-interix - exit ;; - 21064:Windows_NT:50:3) - echo alpha-dec-winnt3.5 - exit ;; - Amiga*:UNIX_System_V:4.0:*) - echo m68k-unknown-sysv4 - exit ;; - *:[Aa]miga[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-amigaos - exit ;; - *:[Mm]orph[Oo][Ss]:*:*) - echo ${UNAME_MACHINE}-unknown-morphos - exit ;; - *:OS/390:*:*) - echo i370-ibm-openedition - exit ;; - *:z/VM:*:*) - echo s390-ibm-zvmoe - exit ;; - *:OS400:*:*) - echo powerpc-ibm-os400 - exit ;; - arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix${UNAME_RELEASE} - exit ;; - arm:riscos:*:*|arm:RISCOS:*:*) - echo arm-unknown-riscos - exit ;; - SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) - echo hppa1.1-hitachi-hiuxmpp - exit ;; - Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) - # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then - echo pyramid-pyramid-sysv3 - else - echo pyramid-pyramid-bsd - fi - exit ;; - NILE*:*:*:dcosx) - echo pyramid-pyramid-svr4 - exit ;; - DRS?6000:unix:4.0:6*) - echo sparc-icl-nx6 - exit ;; - DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) - case `/usr/bin/uname -p` in - sparc) echo sparc-icl-nx7; exit ;; - esac ;; - sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) - echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:6*:*) - # According to config.sub, this is the proper way to canonicalize - # SunOS6. Hard to guess exactly what SunOS6 will be like, but - # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - sun4*:SunOS:*:*) - case "`/usr/bin/arch -k`" in - Series*|S4*) - UNAME_RELEASE=`uname -v` - ;; - esac - # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` - exit ;; - sun3*:SunOS:*:*) - echo m68k-sun-sunos${UNAME_RELEASE} - exit ;; - sun*:*:4.2BSD:*) - UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` - test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 - case "`/bin/arch`" in - sun3) - echo m68k-sun-sunos${UNAME_RELEASE} - ;; - sun4) - echo sparc-sun-sunos${UNAME_RELEASE} - ;; - esac - exit ;; - aushp:SunOS:*:*) - echo sparc-auspex-sunos${UNAME_RELEASE} - exit ;; - # The situation for MiNT is a little confusing. The machine name - # can be virtually everything (everything which is not - # "atarist" or "atariste" at least should have a processor - # > m68000). The system name ranges from "MiNT" over "FreeMiNT" - # to the lowercase version "mint" (or "freemint"). Finally - # the system name "TOS" denotes a system which is actually not - # MiNT. But MiNT is downward compatible to TOS, so this should - # be no problem. - atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint${UNAME_RELEASE} - exit ;; - milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint${UNAME_RELEASE} - exit ;; - hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint${UNAME_RELEASE} - exit ;; - *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint${UNAME_RELEASE} - exit ;; - m68k:machten:*:*) - echo m68k-apple-machten${UNAME_RELEASE} - exit ;; - powerpc:machten:*:*) - echo powerpc-apple-machten${UNAME_RELEASE} - exit ;; - RISC*:Mach:*:*) - echo mips-dec-mach_bsd4.3 - exit ;; - RISC*:ULTRIX:*:*) - echo mips-dec-ultrix${UNAME_RELEASE} - exit ;; - VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix${UNAME_RELEASE} - exit ;; - 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix${UNAME_RELEASE} - exit ;; - mips:*:*:UMIPS | mips:*:*:RISCos) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c -#ifdef __cplusplus -#include /* for printf() prototype */ - int main (int argc, char *argv[]) { -#else - int main (argc, argv) int argc; char *argv[]; { -#endif - #if defined (host_mips) && defined (MIPSEB) - #if defined (SYSTYPE_SYSV) - printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_SVR4) - printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); - #endif - #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) - printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); - #endif - #endif - exit (-1); - } -EOF - $CC_FOR_BUILD -o $dummy $dummy.c && - dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && - SYSTEM_NAME=`$dummy $dummyarg` && - { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos${UNAME_RELEASE} - exit ;; - Motorola:PowerMAX_OS:*:*) - echo powerpc-motorola-powermax - exit ;; - Motorola:*:4.3:PL8-*) - echo powerpc-harris-powermax - exit ;; - Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) - echo powerpc-harris-powermax - exit ;; - Night_Hawk:Power_UNIX:*:*) - echo powerpc-harris-powerunix - exit ;; - m88k:CX/UX:7*:*) - echo m88k-harris-cxux7 - exit ;; - m88k:*:4*:R4*) - echo m88k-motorola-sysv4 - exit ;; - m88k:*:3*:R3*) - echo m88k-motorola-sysv3 - exit ;; - AViiON:dgux:*:*) - # DG/UX returns AViiON for all architectures - UNAME_PROCESSOR=`/usr/bin/uname -p` - if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] - then - if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ - [ ${TARGET_BINARY_INTERFACE}x = x ] - then - echo m88k-dg-dgux${UNAME_RELEASE} - else - echo m88k-dg-dguxbcs${UNAME_RELEASE} - fi - else - echo i586-dg-dgux${UNAME_RELEASE} - fi - exit ;; - M88*:DolphinOS:*:*) # DolphinOS (SVR3) - echo m88k-dolphin-sysv3 - exit ;; - M88*:*:R3*:*) - # Delta 88k system running SVR3 - echo m88k-motorola-sysv3 - exit ;; - XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) - echo m88k-tektronix-sysv3 - exit ;; - Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) - echo m68k-tektronix-bsd - exit ;; - *:IRIX*:*:*) - echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` - exit ;; - ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. - echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id - exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' - i*86:AIX:*:*) - echo i386-ibm-aix - exit ;; - ia64:AIX:*:*) - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} - fi - echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} - exit ;; - *:AIX:2:3) - if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - - main() - { - if (!__power_pc()) - exit(1); - puts("powerpc-ibm-aix3.2.5"); - exit(0); - } -EOF - if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` - then - echo "$SYSTEM_NAME" - else - echo rs6000-ibm-aix3.2.5 - fi - elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then - echo rs6000-ibm-aix3.2.4 - else - echo rs6000-ibm-aix3.2 - fi - exit ;; - *:AIX:*:[45]) - IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` - if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then - IBM_ARCH=rs6000 - else - IBM_ARCH=powerpc - fi - if [ -x /usr/bin/oslevel ] ; then - IBM_REV=`/usr/bin/oslevel` - else - IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} - fi - echo ${IBM_ARCH}-ibm-aix${IBM_REV} - exit ;; - *:AIX:*:*) - echo rs6000-ibm-aix - exit ;; - ibmrt:4.4BSD:*|romp-ibm:BSD:*) - echo romp-ibm-bsd4.4 - exit ;; - ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to - exit ;; # report: romp-ibm BSD 4.3 - *:BOSX:*:*) - echo rs6000-bull-bosx - exit ;; - DPX/2?00:B.O.S.:*:*) - echo m68k-bull-sysv3 - exit ;; - 9000/[34]??:4.3bsd:1.*:*) - echo m68k-hp-bsd - exit ;; - hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) - echo m68k-hp-bsd4.4 - exit ;; - 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - case "${UNAME_MACHINE}" in - 9000/31? ) HP_ARCH=m68000 ;; - 9000/[34]?? ) HP_ARCH=m68k ;; - 9000/[678][0-9][0-9]) - if [ -x /usr/bin/getconf ]; then - sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` - sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` - case "${sc_cpu_version}" in - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 - 532) # CPU_PA_RISC2_0 - case "${sc_kernel_bits}" in - 32) HP_ARCH="hppa2.0n" ;; - 64) HP_ARCH="hppa2.0w" ;; - '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 - esac ;; - esac - fi - if [ "${HP_ARCH}" = "" ]; then - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - - #define _HPUX_SOURCE - #include - #include - - int main () - { - #if defined(_SC_KERNEL_BITS) - long bits = sysconf(_SC_KERNEL_BITS); - #endif - long cpu = sysconf (_SC_CPU_VERSION); - - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1"); break; - case CPU_PA_RISC2_0: - #if defined(_SC_KERNEL_BITS) - switch (bits) - { - case 64: puts ("hppa2.0w"); break; - case 32: puts ("hppa2.0n"); break; - default: puts ("hppa2.0"); break; - } break; - #else /* !defined(_SC_KERNEL_BITS) */ - puts ("hppa2.0"); break; - #endif - default: puts ("hppa1.0"); break; - } - exit (0); - } -EOF - (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` - test -z "$HP_ARCH" && HP_ARCH=hppa - fi ;; - esac - if [ ${HP_ARCH} = "hppa2.0w" ] - then - eval $set_cc_for_build - - # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating - # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler - # generating 64-bit code. GNU and HP use different nomenclature: - # - # $ CC_FOR_BUILD=cc ./config.guess - # => hppa2.0w-hp-hpux11.23 - # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess - # => hppa64-hp-hpux11.23 - - if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | - grep __LP64__ >/dev/null - then - HP_ARCH="hppa2.0w" - else - HP_ARCH="hppa64" - fi - fi - echo ${HP_ARCH}-hp-hpux${HPUX_REV} - exit ;; - ia64:HP-UX:*:*) - HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux${HPUX_REV} - exit ;; - 3050*:HI-UX:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - int - main () - { - long cpu = sysconf (_SC_CPU_VERSION); - /* The order matters, because CPU_IS_HP_MC68K erroneously returns - true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct - results, however. */ - if (CPU_IS_PA_RISC (cpu)) - { - switch (cpu) - { - case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; - case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; - case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; - default: puts ("hppa-hitachi-hiuxwe2"); break; - } - } - else if (CPU_IS_HP_MC68K (cpu)) - puts ("m68k-hitachi-hiuxwe2"); - else puts ("unknown-hitachi-hiuxwe2"); - exit (0); - } -EOF - $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - echo unknown-hitachi-hiuxwe2 - exit ;; - 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) - echo hppa1.1-hp-bsd - exit ;; - 9000/8??:4.3bsd:*:*) - echo hppa1.0-hp-bsd - exit ;; - *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) - echo hppa1.0-hp-mpeix - exit ;; - hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) - echo hppa1.1-hp-osf - exit ;; - hp8??:OSF1:*:*) - echo hppa1.0-hp-osf - exit ;; - i*86:OSF1:*:*) - if [ -x /usr/sbin/sysversion ] ; then - echo ${UNAME_MACHINE}-unknown-osf1mk - else - echo ${UNAME_MACHINE}-unknown-osf1 - fi - exit ;; - parisc*:Lites*:*:*) - echo hppa1.1-hp-lites - exit ;; - C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) - echo c1-convex-bsd - exit ;; - C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) - echo c34-convex-bsd - exit ;; - C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) - echo c38-convex-bsd - exit ;; - C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) - echo c4-convex-bsd - exit ;; - CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*[A-Z]90:*:*:*) - echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ - | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ - -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ - -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*TS:*:*:*) - echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - CRAY*SV1:*:*:*) - echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit ;; - F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) - FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` - echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; - 5000:UNIX_System_V:4.*:*) - FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` - FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` - echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; - i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} - exit ;; - sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi${UNAME_RELEASE} - exit ;; - *:BSD/OS:*:*) - echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} - exit ;; - *:FreeBSD:*:*) - case ${UNAME_MACHINE} in - pc98) - echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - amd64) - echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - *) - echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; - esac - exit ;; - i*:CYGWIN*:*) - echo ${UNAME_MACHINE}-pc-cygwin - exit ;; - *:MINGW*:*) - echo ${UNAME_MACHINE}-pc-mingw32 - exit ;; - i*:windows32*:*) - # uname -m includes "-pc" on this system. - echo ${UNAME_MACHINE}-mingw32 - exit ;; - i*:PW*:*) - echo ${UNAME_MACHINE}-pc-pw32 - exit ;; - *:Interix*:[3456]*) - case ${UNAME_MACHINE} in - x86) - echo i586-pc-interix${UNAME_RELEASE} - exit ;; - EM64T | authenticamd) - echo x86_64-unknown-interix${UNAME_RELEASE} - exit ;; - esac ;; - [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) - echo i${UNAME_MACHINE}-pc-mks - exit ;; - i*:Windows_NT*:* | Pentium*:Windows_NT*:*) - # How do we know it's Interix rather than the generic POSIX subsystem? - # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we - # UNAME_MACHINE based on the output of uname instead of i386? - echo i586-pc-interix - exit ;; - i*:UWIN*:*) - echo ${UNAME_MACHINE}-pc-uwin - exit ;; - amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) - echo x86_64-unknown-cygwin - exit ;; - p*:CYGWIN*:*) - echo powerpcle-unknown-cygwin - exit ;; - prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit ;; - *:GNU:*:*) - # the GNU system - echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` - exit ;; - *:GNU/*:*:*) - # other systems with GNU libc and userland - echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu - exit ;; - i*86:Minix:*:*) - echo ${UNAME_MACHINE}-pc-minix - exit ;; - arm*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - cris:Linux:*:*) - echo cris-axis-linux-gnu - exit ;; - crisv32:Linux:*:*) - echo crisv32-axis-linux-gnu - exit ;; - frv:Linux:*:*) - echo frv-unknown-linux-gnu - exit ;; - ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - mips:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips - #undef mipsel - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mipsel - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips - #else - CPU= - #endif - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips64 - #undef mips64el - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mips64el - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips64 - #else - CPU= - #endif - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - or32:Linux:*:*) - echo or32-unknown-linux-gnu - exit ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu - exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit ;; - parisc:Linux:*:* | hppa:Linux:*:*) - # Look for CPU level - case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-gnu ;; - PA8*) echo hppa2.0-unknown-linux-gnu ;; - *) echo hppa-unknown-linux-gnu ;; - esac - exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu - exit ;; - s390:Linux:*:* | s390x:Linux:*:*) - echo ${UNAME_MACHINE}-ibm-linux - exit ;; - sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu - exit ;; - vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-gnu - exit ;; - x86_64:Linux:*:*) - echo x86_64-unknown-linux-gnu - exit ;; - xtensa:Linux:*:*) - echo xtensa-unknown-linux-gnu - exit ;; - i*86:Linux:*:*) - # The BFD linker knows what the default object file format is, so - # first see if it will tell us. cd to the root directory to prevent - # problems with other programs or directories called `ld' in the path. - # Set LC_ALL=C to ensure ld outputs messages in English. - ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ - | sed -ne '/supported targets:/!d - s/[ ][ ]*/ /g - s/.*supported targets: *// - s/ .*// - p'` - case "$ld_supported_targets" in - elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" - ;; - a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-gnuaout" - exit ;; - coff-i386) - echo "${UNAME_MACHINE}-pc-linux-gnucoff" - exit ;; - "") - # Either a pre-BFD a.out linker (linux-gnuoldld) or - # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-gnuoldld" - exit ;; - esac - # Determine whether the default compiler is a.out or elf - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #ifdef __ELF__ - # ifdef __GLIBC__ - # if __GLIBC__ >= 2 - LIBC=gnu - # else - LIBC=gnulibc1 - # endif - # else - LIBC=gnulibc1 - # endif - #else - #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) - LIBC=gnu - #else - LIBC=gnuaout - #endif - #endif - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^LIBC/{ - s: ::g - p - }'`" - test x"${LIBC}" != x && { - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" - exit - } - test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } - ;; - i*86:DYNIX/ptx:4*:*) - # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. - # earlier versions are messed up and put the nodename in both - # sysname and nodename. - echo i386-sequent-sysv4 - exit ;; - i*86:UNIX_SV:4.2MP:2.*) - # Unixware is an offshoot of SVR4, but it has its own version - # number series starting with 2... - # I am not positive that other SVR4 systems won't match this, - # I just have to hope. -- rms. - # Use sysv4.2uw... so that sysv4* matches it. - echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} - exit ;; - i*86:OS/2:*:*) - # If we were able to find `uname', then EMX Unix compatibility - # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx - exit ;; - i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop - exit ;; - i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos - exit ;; - i*86:syllable:*:*) - echo ${UNAME_MACHINE}-pc-syllable - exit ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} - exit ;; - i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp - exit ;; - i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) - UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` - if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} - else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} - fi - exit ;; - i*86:*:5:[678]*) - # UnixWare 7.x, OpenUNIX and OpenServer 6. - case `/bin/uname -X | grep "^Machine"` in - *486*) UNAME_MACHINE=i486 ;; - *Pentium) UNAME_MACHINE=i586 ;; - *Pent*|*Celeron) UNAME_MACHINE=i686 ;; - esac - echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} - exit ;; - i*86:*:3.2:*) - if test -f /usr/options/cb.name; then - UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` - (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 - (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ - && UNAME_MACHINE=i586 - (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ - && UNAME_MACHINE=i686 - (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ - && UNAME_MACHINE=i686 - echo ${UNAME_MACHINE}-pc-sco$UNAME_REL - else - echo ${UNAME_MACHINE}-pc-sysv32 - fi - exit ;; - pc:*:*:*) - # Left here for compatibility: - # uname -m prints for DJGPP always 'pc', but it prints nothing about - # the processor, so we play safe by assuming i386. - echo i386-pc-msdosdjgpp - exit ;; - Intel:Mach:3*:*) - echo i386-pc-mach3 - exit ;; - paragon:*:*:*) - echo i860-intel-osf1 - exit ;; - i860:*:4.*:*) # i860-SVR4 - if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 - else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 - fi - exit ;; - mini*:CTIX:SYS*5:*) - # "miniframe" - echo m68010-convergent-sysv - exit ;; - mc68k:UNIX:SYSTEM5:3.51m) - echo m68k-convergent-sysv - exit ;; - M680?0:D-NIX:5.3:*) - echo m68k-diab-dnix - exit ;; - M68*:*:R3V[5678]*:*) - test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; - 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) - OS_REL='' - test -r /etc/.relid \ - && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4.3${OS_REL}; exit; } - /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; - 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) - /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && { echo i486-ncr-sysv4; exit; } ;; - m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos${UNAME_RELEASE} - exit ;; - mc68030:UNIX_System_V:4.*:*) - echo m68k-atari-sysv4 - exit ;; - TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos${UNAME_RELEASE} - exit ;; - rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos${UNAME_RELEASE} - exit ;; - PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) - echo powerpc-unknown-lynxos${UNAME_RELEASE} - exit ;; - SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv${UNAME_RELEASE} - exit ;; - RM*:ReliantUNIX-*:*:*) - echo mips-sni-sysv4 - exit ;; - RM*:SINIX-*:*:*) - echo mips-sni-sysv4 - exit ;; - *:SINIX-*:*:*) - if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo ${UNAME_MACHINE}-sni-sysv4 - else - echo ns32k-sni-sysv - fi - exit ;; - PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort - # says - echo i586-unisys-sysv4 - exit ;; - *:UNIX_System_V:4*:FTX*) - # From Gerald Hewes . - # How about differentiating between stratus architectures? -djm - echo hppa1.1-stratus-sysv4 - exit ;; - *:*:*:FTX*) - # From seanf@swdc.stratus.com. - echo i860-stratus-sysv4 - exit ;; - i*86:VOS:*:*) - # From Paul.Green@stratus.com. - echo ${UNAME_MACHINE}-stratus-vos - exit ;; - *:VOS:*:*) - # From Paul.Green@stratus.com. - echo hppa1.1-stratus-vos - exit ;; - mc68*:A/UX:*:*) - echo m68k-apple-aux${UNAME_RELEASE} - exit ;; - news*:NEWS-OS:6*:*) - echo mips-sony-newsos6 - exit ;; - R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) - if [ -d /usr/nec ]; then - echo mips-nec-sysv${UNAME_RELEASE} - else - echo mips-unknown-sysv${UNAME_RELEASE} - fi - exit ;; - BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. - echo powerpc-be-beos - exit ;; - BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. - echo powerpc-apple-beos - exit ;; - BePC:BeOS:*:*) # BeOS running on Intel PC compatible. - echo i586-pc-beos - exit ;; - SX-4:SUPER-UX:*:*) - echo sx4-nec-superux${UNAME_RELEASE} - exit ;; - SX-5:SUPER-UX:*:*) - echo sx5-nec-superux${UNAME_RELEASE} - exit ;; - SX-6:SUPER-UX:*:*) - echo sx6-nec-superux${UNAME_RELEASE} - exit ;; - SX-7:SUPER-UX:*:*) - echo sx7-nec-superux${UNAME_RELEASE} - exit ;; - SX-8:SUPER-UX:*:*) - echo sx8-nec-superux${UNAME_RELEASE} - exit ;; - SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux${UNAME_RELEASE} - exit ;; - Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody${UNAME_RELEASE} - exit ;; - *:Rhapsody:*:*) - echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} - exit ;; - *:Darwin:*:*) - UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown - case $UNAME_PROCESSOR in - unknown) UNAME_PROCESSOR=powerpc ;; - esac - echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} - exit ;; - *:procnto*:*:* | *:QNX:[0123456789]*:*) - UNAME_PROCESSOR=`uname -p` - if test "$UNAME_PROCESSOR" = "x86"; then - UNAME_PROCESSOR=i386 - UNAME_MACHINE=pc - fi - echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} - exit ;; - *:QNX:*:4*) - echo i386-pc-qnx - exit ;; - NSE-?:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk${UNAME_RELEASE} - exit ;; - NSR-?:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk${UNAME_RELEASE} - exit ;; - *:NonStop-UX:*:*) - echo mips-compaq-nonstopux - exit ;; - BS2000:POSIX*:*:*) - echo bs2000-siemens-sysv - exit ;; - DS/*:UNIX_System_V:*:*) - echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} - exit ;; - *:Plan9:*:*) - # "uname -m" is not consistent, so use $cputype instead. 386 - # is converted to i386 for consistency with other x86 - # operating systems. - if test "$cputype" = "386"; then - UNAME_MACHINE=i386 - else - UNAME_MACHINE="$cputype" - fi - echo ${UNAME_MACHINE}-unknown-plan9 - exit ;; - *:TOPS-10:*:*) - echo pdp10-unknown-tops10 - exit ;; - *:TENEX:*:*) - echo pdp10-unknown-tenex - exit ;; - KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) - echo pdp10-dec-tops20 - exit ;; - XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) - echo pdp10-xkl-tops20 - exit ;; - *:TOPS-20:*:*) - echo pdp10-unknown-tops20 - exit ;; - *:ITS:*:*) - echo pdp10-unknown-its - exit ;; - SEI:*:*:SEIUX) - echo mips-sei-seiux${UNAME_RELEASE} - exit ;; - *:DragonFly:*:*) - echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` - exit ;; - *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` - case "${UNAME_MACHINE}" in - A*) echo alpha-dec-vms ; exit ;; - I*) echo ia64-dec-vms ; exit ;; - V*) echo vax-dec-vms ; exit ;; - esac ;; - *:XENIX:*:SysV) - echo i386-pc-xenix - exit ;; - i*86:skyos:*:*) - echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' - exit ;; - i*86:rdos:*:*) - echo ${UNAME_MACHINE}-pc-rdos - exit ;; -esac - -#echo '(No uname command or uname output not recognized.)' 1>&2 -#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 - -eval $set_cc_for_build -cat >$dummy.c < -# include -#endif -main () -{ -#if defined (sony) -#if defined (MIPSEB) - /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, - I don't know.... */ - printf ("mips-sony-bsd\n"); exit (0); -#else -#include - printf ("m68k-sony-newsos%s\n", -#ifdef NEWSOS4 - "4" -#else - "" -#endif - ); exit (0); -#endif -#endif - -#if defined (__arm) && defined (__acorn) && defined (__unix) - printf ("arm-acorn-riscix\n"); exit (0); -#endif - -#if defined (hp300) && !defined (hpux) - printf ("m68k-hp-bsd\n"); exit (0); -#endif - -#if defined (NeXT) -#if !defined (__ARCHITECTURE__) -#define __ARCHITECTURE__ "m68k" -#endif - int version; - version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; - if (version < 4) - printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); - else - printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); - exit (0); -#endif - -#if defined (MULTIMAX) || defined (n16) -#if defined (UMAXV) - printf ("ns32k-encore-sysv\n"); exit (0); -#else -#if defined (CMU) - printf ("ns32k-encore-mach\n"); exit (0); -#else - printf ("ns32k-encore-bsd\n"); exit (0); -#endif -#endif -#endif - -#if defined (__386BSD__) - printf ("i386-pc-bsd\n"); exit (0); -#endif - -#if defined (sequent) -#if defined (i386) - printf ("i386-sequent-dynix\n"); exit (0); -#endif -#if defined (ns32000) - printf ("ns32k-sequent-dynix\n"); exit (0); -#endif -#endif - -#if defined (_SEQUENT_) - struct utsname un; - - uname(&un); - - if (strncmp(un.version, "V2", 2) == 0) { - printf ("i386-sequent-ptx2\n"); exit (0); - } - if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ - printf ("i386-sequent-ptx1\n"); exit (0); - } - printf ("i386-sequent-ptx\n"); exit (0); - -#endif - -#if defined (vax) -# if !defined (ultrix) -# include -# if defined (BSD) -# if BSD == 43 - printf ("vax-dec-bsd4.3\n"); exit (0); -# else -# if BSD == 199006 - printf ("vax-dec-bsd4.3reno\n"); exit (0); -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# endif -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# else - printf ("vax-dec-ultrix\n"); exit (0); -# endif -#endif - -#if defined (alliant) && defined (i860) - printf ("i860-alliant-bsd\n"); exit (0); -#endif - - exit (1); -} -EOF - -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - -# Apollos put the system type in the environment. - -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } - -# Convex versions that predate uname can use getsysinfo(1) - -if [ -x /usr/convex/getsysinfo ] -then - case `getsysinfo -f cpu_type` in - c1*) - echo c1-convex-bsd - exit ;; - c2*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - c34*) - echo c34-convex-bsd - exit ;; - c38*) - echo c38-convex-bsd - exit ;; - c4*) - echo c4-convex-bsd - exit ;; - esac -fi - -cat >&2 < in order to provide the needed -information to handle your system. - -config.guess timestamp = $timestamp - -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` - -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` - -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} -EOF - -exit 1 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff --git a/cpp/thirdparty/gtest-1.5.0/build-aux/config.h.in b/cpp/thirdparty/gtest-1.5.0/build-aux/config.h.in deleted file mode 100644 index 0c02afde2..000000000 --- a/cpp/thirdparty/gtest-1.5.0/build-aux/config.h.in +++ /dev/null @@ -1,62 +0,0 @@ -/* build-aux/config.h.in. Generated from configure.ac by autoheader. */ - -/* Define to 1 if you have the header file. */ -#undef HAVE_DLFCN_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_INTTYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_MEMORY_H - -/* Define if you have POSIX threads libraries and header files. */ -#undef HAVE_PTHREAD - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDLIB_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRING_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_STAT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Name of package */ -#undef PACKAGE - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - -/* Define to necessary symbol if this constant uses a non-standard name on - your system. */ -#undef PTHREAD_CREATE_JOINABLE - -/* Define to 1 if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Version number of package */ -#undef VERSION diff --git a/cpp/thirdparty/gtest-1.5.0/build-aux/config.sub b/cpp/thirdparty/gtest-1.5.0/build-aux/config.sub deleted file mode 100755 index 1761d8bdf..000000000 --- a/cpp/thirdparty/gtest-1.5.0/build-aux/config.sub +++ /dev/null @@ -1,1626 +0,0 @@ -#! /bin/sh -# Configuration validation subroutine script. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. - -timestamp='2007-06-28' - -# This file is (in principle) common to ALL GNU software. -# The presence of a machine in this file suggests that SOME GNU software -# can handle that machine. It does not imply ALL GNU software can. -# -# This file is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - - -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. -# -# Configuration subroutine to validate and canonicalize a configuration type. -# Supply the specified configuration type as an argument. -# If it is invalid, we print an error message on stderr and exit with code 1. -# Otherwise, we print the canonical config type on stdout and succeed. - -# This file is supposed to be the same for all GNU packages -# and recognize all the CPU types, system types and aliases -# that are meaningful with *any* GNU software. -# Each package is responsible for reporting which valid configurations -# it does not support. The user should be able to distinguish -# a failure to support a valid configuration from a meaningless -# configuration. - -# The goal of this file is to map all the various variations of a given -# machine specification into a single specification in the form: -# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM -# or in some cases, the newer four-part form: -# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM -# It is wrong to echo any other type of specification. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS - $0 [OPTION] ALIAS - -Canonicalize a configuration name. - -Operation modes: - -h, --help print this help, then exit - -t, --time-stamp print date of last modification, then exit - -v, --version print version number, then exit - -Report bugs and patches to ." - -version="\ -GNU config.sub ($timestamp) - -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. - -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do - case $1 in - --time-stamp | --time* | -t ) - echo "$timestamp" ; exit ;; - --version | -v ) - echo "$version" ; exit ;; - --help | --h* | -h ) - echo "$usage"; exit ;; - -- ) # Stop option processing - shift; break ;; - - ) # Use stdin as input. - break ;; - -* ) - echo "$me: invalid option $1$help" - exit 1 ;; - - *local*) - # First pass through any local machine types. - echo $1 - exit ;; - - * ) - break ;; - esac -done - -case $# in - 0) echo "$me: missing argument$help" >&2 - exit 1;; - 1) ;; - *) echo "$me: too many arguments$help" >&2 - exit 1;; -esac - -# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). -# Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` -case $maybe_os in - nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ - uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ - storm-chaos* | os2-emx* | rtmk-nova*) - os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` - ;; - *) - basic_machine=`echo $1 | sed 's/-[^-]*$//'` - if [ $basic_machine != $1 ] - then os=`echo $1 | sed 's/.*-/-/'` - else os=; fi - ;; -esac - -### Let's recognize common machines as not being operating systems so -### that things like config.sub decstation-3100 work. We also -### recognize some manufacturers as not being operating systems, so we -### can provide default operating systems below. -case $os in - -sun*os*) - # Prevent following clause from handling this invalid input. - ;; - -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ - -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ - -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ - -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ - -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ - -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray) - os= - basic_machine=$1 - ;; - -sim | -cisco | -oki | -wec | -winbond) - os= - basic_machine=$1 - ;; - -scout) - ;; - -wrs) - os=-vxworks - basic_machine=$1 - ;; - -chorusos*) - os=-chorusos - basic_machine=$1 - ;; - -chorusrdb) - os=-chorusrdb - basic_machine=$1 - ;; - -hiux*) - os=-hiuxwe2 - ;; - -sco6) - os=-sco5v6 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5) - os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco4) - os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2.[4-9]*) - os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2v[4-9]*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5v6*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco*) - os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -isc) - os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -clix*) - basic_machine=clipper-intergraph - ;; - -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -lynx*) - os=-lynxos - ;; - -ptx*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` - ;; - -windowsnt*) - os=`echo $os | sed -e 's/windowsnt/winnt/'` - ;; - -psos*) - os=-psos - ;; - -mint | -mint[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; -esac - -# Decode aliases for certain CPU-COMPANY combinations. -case $basic_machine in - # Recognize the basic CPU types without company name. - # Some are omitted here because they have special meanings below. - 1750a | 580 \ - | a29k \ - | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ - | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ - | am33_2.0 \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ - | bfin \ - | c4x | clipper \ - | d10v | d30v | dlx | dsp16xx \ - | fido | fr30 | frv \ - | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ - | i370 | i860 | i960 | ia64 \ - | ip2k | iq2000 \ - | m32c | m32r | m32rle | m68000 | m68k | m88k \ - | maxq | mb | microblaze | mcore | mep \ - | mips | mipsbe | mipseb | mipsel | mipsle \ - | mips16 \ - | mips64 | mips64el \ - | mips64vr | mips64vrel \ - | mips64orion | mips64orionel \ - | mips64vr4100 | mips64vr4100el \ - | mips64vr4300 | mips64vr4300el \ - | mips64vr5000 | mips64vr5000el \ - | mips64vr5900 | mips64vr5900el \ - | mipsisa32 | mipsisa32el \ - | mipsisa32r2 | mipsisa32r2el \ - | mipsisa64 | mipsisa64el \ - | mipsisa64r2 | mipsisa64r2el \ - | mipsisa64sb1 | mipsisa64sb1el \ - | mipsisa64sr71k | mipsisa64sr71kel \ - | mipstx39 | mipstx39el \ - | mn10200 | mn10300 \ - | mt \ - | msp430 \ - | nios | nios2 \ - | ns16k | ns32k \ - | or32 \ - | pdp10 | pdp11 | pj | pjl \ - | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ - | pyramid \ - | score \ - | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ - | sh64 | sh64le \ - | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ - | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ - | spu | strongarm \ - | tahoe | thumb | tic4x | tic80 | tron \ - | v850 | v850e \ - | we32k \ - | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ - | z8k) - basic_machine=$basic_machine-unknown - ;; - m6811 | m68hc11 | m6812 | m68hc12) - # Motorola 68HC11/12. - basic_machine=$basic_machine-unknown - os=-none - ;; - m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) - ;; - ms1) - basic_machine=mt-unknown - ;; - - # We use `pc' rather than `unknown' - # because (1) that's what they normally are, and - # (2) the word "unknown" tends to confuse beginning users. - i*86 | x86_64) - basic_machine=$basic_machine-pc - ;; - # Object if more than one company name word. - *-*-*) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; - # Recognize the basic CPU types with company name. - 580-* \ - | a29k-* \ - | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ - | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ - | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* | avr32-* \ - | bfin-* | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ - | clipper-* | craynv-* | cydra-* \ - | d10v-* | d30v-* | dlx-* \ - | elxsi-* \ - | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ - | h8300-* | h8500-* \ - | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ - | i*86-* | i860-* | i960-* | ia64-* \ - | ip2k-* | iq2000-* \ - | m32c-* | m32r-* | m32rle-* \ - | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* \ - | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ - | mips16-* \ - | mips64-* | mips64el-* \ - | mips64vr-* | mips64vrel-* \ - | mips64orion-* | mips64orionel-* \ - | mips64vr4100-* | mips64vr4100el-* \ - | mips64vr4300-* | mips64vr4300el-* \ - | mips64vr5000-* | mips64vr5000el-* \ - | mips64vr5900-* | mips64vr5900el-* \ - | mipsisa32-* | mipsisa32el-* \ - | mipsisa32r2-* | mipsisa32r2el-* \ - | mipsisa64-* | mipsisa64el-* \ - | mipsisa64r2-* | mipsisa64r2el-* \ - | mipsisa64sb1-* | mipsisa64sb1el-* \ - | mipsisa64sr71k-* | mipsisa64sr71kel-* \ - | mipstx39-* | mipstx39el-* \ - | mmix-* \ - | mt-* \ - | msp430-* \ - | nios-* | nios2-* \ - | none-* | np1-* | ns16k-* | ns32k-* \ - | orion-* \ - | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ - | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ - | pyramid-* \ - | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ - | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ - | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ - | tahoe-* | thumb-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ - | tron-* \ - | v850-* | v850e-* | vax-* \ - | we32k-* \ - | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa-* \ - | ymp-* \ - | z8k-*) - ;; - # Recognize the various machine names and aliases which stand - # for a CPU type and a company and sometimes even an OS. - 386bsd) - basic_machine=i386-unknown - os=-bsd - ;; - 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) - basic_machine=m68000-att - ;; - 3b*) - basic_machine=we32k-att - ;; - a29khif) - basic_machine=a29k-amd - os=-udi - ;; - abacus) - basic_machine=abacus-unknown - ;; - adobe68k) - basic_machine=m68010-adobe - os=-scout - ;; - alliant | fx80) - basic_machine=fx80-alliant - ;; - altos | altos3068) - basic_machine=m68k-altos - ;; - am29k) - basic_machine=a29k-none - os=-bsd - ;; - amd64) - basic_machine=x86_64-pc - ;; - amd64-*) - basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - amdahl) - basic_machine=580-amdahl - os=-sysv - ;; - amiga | amiga-*) - basic_machine=m68k-unknown - ;; - amigaos | amigados) - basic_machine=m68k-unknown - os=-amigaos - ;; - amigaunix | amix) - basic_machine=m68k-unknown - os=-sysv4 - ;; - apollo68) - basic_machine=m68k-apollo - os=-sysv - ;; - apollo68bsd) - basic_machine=m68k-apollo - os=-bsd - ;; - aux) - basic_machine=m68k-apple - os=-aux - ;; - balance) - basic_machine=ns32k-sequent - os=-dynix - ;; - c90) - basic_machine=c90-cray - os=-unicos - ;; - convex-c1) - basic_machine=c1-convex - os=-bsd - ;; - convex-c2) - basic_machine=c2-convex - os=-bsd - ;; - convex-c32) - basic_machine=c32-convex - os=-bsd - ;; - convex-c34) - basic_machine=c34-convex - os=-bsd - ;; - convex-c38) - basic_machine=c38-convex - os=-bsd - ;; - cray | j90) - basic_machine=j90-cray - os=-unicos - ;; - craynv) - basic_machine=craynv-cray - os=-unicosmp - ;; - cr16) - basic_machine=cr16-unknown - os=-elf - ;; - crds | unos) - basic_machine=m68k-crds - ;; - crisv32 | crisv32-* | etraxfs*) - basic_machine=crisv32-axis - ;; - cris | cris-* | etrax*) - basic_machine=cris-axis - ;; - crx) - basic_machine=crx-unknown - os=-elf - ;; - da30 | da30-*) - basic_machine=m68k-da30 - ;; - decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) - basic_machine=mips-dec - ;; - decsystem10* | dec10*) - basic_machine=pdp10-dec - os=-tops10 - ;; - decsystem20* | dec20*) - basic_machine=pdp10-dec - os=-tops20 - ;; - delta | 3300 | motorola-3300 | motorola-delta \ - | 3300-motorola | delta-motorola) - basic_machine=m68k-motorola - ;; - delta88) - basic_machine=m88k-motorola - os=-sysv3 - ;; - djgpp) - basic_machine=i586-pc - os=-msdosdjgpp - ;; - dpx20 | dpx20-*) - basic_machine=rs6000-bull - os=-bosx - ;; - dpx2* | dpx2*-bull) - basic_machine=m68k-bull - os=-sysv3 - ;; - ebmon29k) - basic_machine=a29k-amd - os=-ebmon - ;; - elxsi) - basic_machine=elxsi-elxsi - os=-bsd - ;; - encore | umax | mmax) - basic_machine=ns32k-encore - ;; - es1800 | OSE68k | ose68k | ose | OSE) - basic_machine=m68k-ericsson - os=-ose - ;; - fx2800) - basic_machine=i860-alliant - ;; - genix) - basic_machine=ns32k-ns - ;; - gmicro) - basic_machine=tron-gmicro - os=-sysv - ;; - go32) - basic_machine=i386-pc - os=-go32 - ;; - h3050r* | hiux*) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - h8300hms) - basic_machine=h8300-hitachi - os=-hms - ;; - h8300xray) - basic_machine=h8300-hitachi - os=-xray - ;; - h8500hms) - basic_machine=h8500-hitachi - os=-hms - ;; - harris) - basic_machine=m88k-harris - os=-sysv3 - ;; - hp300-*) - basic_machine=m68k-hp - ;; - hp300bsd) - basic_machine=m68k-hp - os=-bsd - ;; - hp300hpux) - basic_machine=m68k-hp - os=-hpux - ;; - hp3k9[0-9][0-9] | hp9[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hp9k2[0-9][0-9] | hp9k31[0-9]) - basic_machine=m68000-hp - ;; - hp9k3[2-9][0-9]) - basic_machine=m68k-hp - ;; - hp9k6[0-9][0-9] | hp6[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hp9k7[0-79][0-9] | hp7[0-79][0-9]) - basic_machine=hppa1.1-hp - ;; - hp9k78[0-9] | hp78[0-9]) - # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp - ;; - hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) - # FIXME: really hppa2.0-hp - basic_machine=hppa1.1-hp - ;; - hp9k8[0-9][13679] | hp8[0-9][13679]) - basic_machine=hppa1.1-hp - ;; - hp9k8[0-9][0-9] | hp8[0-9][0-9]) - basic_machine=hppa1.0-hp - ;; - hppa-next) - os=-nextstep3 - ;; - hppaosf) - basic_machine=hppa1.1-hp - os=-osf - ;; - hppro) - basic_machine=hppa1.1-hp - os=-proelf - ;; - i370-ibm* | ibm*) - basic_machine=i370-ibm - ;; -# I'm not sure what "Sysv32" means. Should this be sysv3.2? - i*86v32) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv32 - ;; - i*86v4*) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv4 - ;; - i*86v) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-sysv - ;; - i*86sol2) - basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` - os=-solaris2 - ;; - i386mach) - basic_machine=i386-mach - os=-mach - ;; - i386-vsta | vsta) - basic_machine=i386-unknown - os=-vsta - ;; - iris | iris4d) - basic_machine=mips-sgi - case $os in - -irix*) - ;; - *) - os=-irix4 - ;; - esac - ;; - isi68 | isi) - basic_machine=m68k-isi - os=-sysv - ;; - m88k-omron*) - basic_machine=m88k-omron - ;; - magnum | m3230) - basic_machine=mips-mips - os=-sysv - ;; - merlin) - basic_machine=ns32k-utek - os=-sysv - ;; - mingw32) - basic_machine=i386-pc - os=-mingw32 - ;; - mingw32ce) - basic_machine=arm-unknown - os=-mingw32ce - ;; - miniframe) - basic_machine=m68000-convergent - ;; - *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) - basic_machine=m68k-atari - os=-mint - ;; - mips3*-*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` - ;; - mips3*) - basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown - ;; - monitor) - basic_machine=m68k-rom68k - os=-coff - ;; - morphos) - basic_machine=powerpc-unknown - os=-morphos - ;; - msdos) - basic_machine=i386-pc - os=-msdos - ;; - ms1-*) - basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` - ;; - mvs) - basic_machine=i370-ibm - os=-mvs - ;; - ncr3000) - basic_machine=i486-ncr - os=-sysv4 - ;; - netbsd386) - basic_machine=i386-unknown - os=-netbsd - ;; - netwinder) - basic_machine=armv4l-rebel - os=-linux - ;; - news | news700 | news800 | news900) - basic_machine=m68k-sony - os=-newsos - ;; - news1000) - basic_machine=m68030-sony - os=-newsos - ;; - news-3600 | risc-news) - basic_machine=mips-sony - os=-newsos - ;; - necv70) - basic_machine=v70-nec - os=-sysv - ;; - next | m*-next ) - basic_machine=m68k-next - case $os in - -nextstep* ) - ;; - -ns2*) - os=-nextstep2 - ;; - *) - os=-nextstep3 - ;; - esac - ;; - nh3000) - basic_machine=m68k-harris - os=-cxux - ;; - nh[45]000) - basic_machine=m88k-harris - os=-cxux - ;; - nindy960) - basic_machine=i960-intel - os=-nindy - ;; - mon960) - basic_machine=i960-intel - os=-mon960 - ;; - nonstopux) - basic_machine=mips-compaq - os=-nonstopux - ;; - np1) - basic_machine=np1-gould - ;; - nsr-tandem) - basic_machine=nsr-tandem - ;; - op50n-* | op60c-*) - basic_machine=hppa1.1-oki - os=-proelf - ;; - openrisc | openrisc-*) - basic_machine=or32-unknown - ;; - os400) - basic_machine=powerpc-ibm - os=-os400 - ;; - OSE68000 | ose68000) - basic_machine=m68000-ericsson - os=-ose - ;; - os68k) - basic_machine=m68k-none - os=-os68k - ;; - pa-hitachi) - basic_machine=hppa1.1-hitachi - os=-hiuxwe2 - ;; - paragon) - basic_machine=i860-intel - os=-osf - ;; - pbd) - basic_machine=sparc-tti - ;; - pbb) - basic_machine=m68k-tti - ;; - pc532 | pc532-*) - basic_machine=ns32k-pc532 - ;; - pc98) - basic_machine=i386-pc - ;; - pc98-*) - basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentium | p5 | k5 | k6 | nexgen | viac3) - basic_machine=i586-pc - ;; - pentiumpro | p6 | 6x86 | athlon | athlon_*) - basic_machine=i686-pc - ;; - pentiumii | pentium2 | pentiumiii | pentium3) - basic_machine=i686-pc - ;; - pentium4) - basic_machine=i786-pc - ;; - pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) - basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentiumpro-* | p6-* | 6x86-* | athlon-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) - basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pentium4-*) - basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - pn) - basic_machine=pn-gould - ;; - power) basic_machine=power-ibm - ;; - ppc) basic_machine=powerpc-unknown - ;; - ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppcle | powerpclittle | ppc-le | powerpc-little) - basic_machine=powerpcle-unknown - ;; - ppcle-* | powerpclittle-*) - basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64) basic_machine=powerpc64-unknown - ;; - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ppc64le | powerpc64little | ppc64-le | powerpc64-little) - basic_machine=powerpc64le-unknown - ;; - ppc64le-* | powerpc64little-*) - basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` - ;; - ps2) - basic_machine=i386-ibm - ;; - pw32) - basic_machine=i586-unknown - os=-pw32 - ;; - rdos) - basic_machine=i386-pc - os=-rdos - ;; - rom68k) - basic_machine=m68k-rom68k - os=-coff - ;; - rm[46]00) - basic_machine=mips-siemens - ;; - rtpc | rtpc-*) - basic_machine=romp-ibm - ;; - s390 | s390-*) - basic_machine=s390-ibm - ;; - s390x | s390x-*) - basic_machine=s390x-ibm - ;; - sa29200) - basic_machine=a29k-amd - os=-udi - ;; - sb1) - basic_machine=mipsisa64sb1-unknown - ;; - sb1el) - basic_machine=mipsisa64sb1el-unknown - ;; - sde) - basic_machine=mipsisa32-sde - os=-elf - ;; - sei) - basic_machine=mips-sei - os=-seiux - ;; - sequent) - basic_machine=i386-sequent - ;; - sh) - basic_machine=sh-hitachi - os=-hms - ;; - sh5el) - basic_machine=sh5le-unknown - ;; - sh64) - basic_machine=sh64-unknown - ;; - sparclite-wrs | simso-wrs) - basic_machine=sparclite-wrs - os=-vxworks - ;; - sps7) - basic_machine=m68k-bull - os=-sysv2 - ;; - spur) - basic_machine=spur-unknown - ;; - st2000) - basic_machine=m68k-tandem - ;; - stratus) - basic_machine=i860-stratus - os=-sysv4 - ;; - sun2) - basic_machine=m68000-sun - ;; - sun2os3) - basic_machine=m68000-sun - os=-sunos3 - ;; - sun2os4) - basic_machine=m68000-sun - os=-sunos4 - ;; - sun3os3) - basic_machine=m68k-sun - os=-sunos3 - ;; - sun3os4) - basic_machine=m68k-sun - os=-sunos4 - ;; - sun4os3) - basic_machine=sparc-sun - os=-sunos3 - ;; - sun4os4) - basic_machine=sparc-sun - os=-sunos4 - ;; - sun4sol2) - basic_machine=sparc-sun - os=-solaris2 - ;; - sun3 | sun3-*) - basic_machine=m68k-sun - ;; - sun4) - basic_machine=sparc-sun - ;; - sun386 | sun386i | roadrunner) - basic_machine=i386-sun - ;; - sv1) - basic_machine=sv1-cray - os=-unicos - ;; - symmetry) - basic_machine=i386-sequent - os=-dynix - ;; - t3e) - basic_machine=alphaev5-cray - os=-unicos - ;; - t90) - basic_machine=t90-cray - os=-unicos - ;; - tic54x | c54x*) - basic_machine=tic54x-unknown - os=-coff - ;; - tic55x | c55x*) - basic_machine=tic55x-unknown - os=-coff - ;; - tic6x | c6x*) - basic_machine=tic6x-unknown - os=-coff - ;; - tx39) - basic_machine=mipstx39-unknown - ;; - tx39el) - basic_machine=mipstx39el-unknown - ;; - toad1) - basic_machine=pdp10-xkl - os=-tops20 - ;; - tower | tower-32) - basic_machine=m68k-ncr - ;; - tpf) - basic_machine=s390x-ibm - os=-tpf - ;; - udi29k) - basic_machine=a29k-amd - os=-udi - ;; - ultra3) - basic_machine=a29k-nyu - os=-sym1 - ;; - v810 | necv810) - basic_machine=v810-nec - os=-none - ;; - vaxv) - basic_machine=vax-dec - os=-sysv - ;; - vms) - basic_machine=vax-dec - os=-vms - ;; - vpp*|vx|vx-*) - basic_machine=f301-fujitsu - ;; - vxworks960) - basic_machine=i960-wrs - os=-vxworks - ;; - vxworks68) - basic_machine=m68k-wrs - os=-vxworks - ;; - vxworks29k) - basic_machine=a29k-wrs - os=-vxworks - ;; - w65*) - basic_machine=w65-wdc - os=-none - ;; - w89k-*) - basic_machine=hppa1.1-winbond - os=-proelf - ;; - xbox) - basic_machine=i686-pc - os=-mingw32 - ;; - xps | xps100) - basic_machine=xps100-honeywell - ;; - ymp) - basic_machine=ymp-cray - os=-unicos - ;; - z8k-*-coff) - basic_machine=z8k-unknown - os=-sim - ;; - none) - basic_machine=none-none - os=-none - ;; - -# Here we handle the default manufacturer of certain CPU types. It is in -# some cases the only manufacturer, in others, it is the most popular. - w89k) - basic_machine=hppa1.1-winbond - ;; - op50n) - basic_machine=hppa1.1-oki - ;; - op60c) - basic_machine=hppa1.1-oki - ;; - romp) - basic_machine=romp-ibm - ;; - mmix) - basic_machine=mmix-knuth - ;; - rs6000) - basic_machine=rs6000-ibm - ;; - vax) - basic_machine=vax-dec - ;; - pdp10) - # there are many clones, so DEC is not a safe bet - basic_machine=pdp10-unknown - ;; - pdp11) - basic_machine=pdp11-dec - ;; - we32k) - basic_machine=we32k-att - ;; - sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) - basic_machine=sh-unknown - ;; - sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) - basic_machine=sparc-sun - ;; - cydra) - basic_machine=cydra-cydrome - ;; - orion) - basic_machine=orion-highlevel - ;; - orion105) - basic_machine=clipper-highlevel - ;; - mac | mpw | mac-mpw) - basic_machine=m68k-apple - ;; - pmac | pmac-mpw) - basic_machine=powerpc-apple - ;; - *-unknown) - # Make sure to match an already-canonicalized machine name. - ;; - *) - echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 - exit 1 - ;; -esac - -# Here we canonicalize certain aliases for manufacturers. -case $basic_machine in - *-digital*) - basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` - ;; - *-commodore*) - basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` - ;; - *) - ;; -esac - -# Decode manufacturer-specific aliases for certain operating systems. - -if [ x"$os" != x"" ] -then -case $os in - # First match some system type aliases - # that might get confused with valid system types. - # -solaris* is a basic system type, with this one exception. - -solaris1 | -solaris1.*) - os=`echo $os | sed -e 's|solaris1|sunos4|'` - ;; - -solaris) - os=-solaris2 - ;; - -svr4*) - os=-sysv4 - ;; - -unixware*) - os=-sysv4.2uw - ;; - -gnu/linux*) - os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` - ;; - # First accept the basic system types. - # The portable systems comes first. - # Each alternative MUST END IN A *, to match a version number. - # -sysv* is not here because it comes later, after sysvr4. - -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ - | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* \ - | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ - | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ - | -openbsd* | -solidbsd* \ - | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ - | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ - | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ - | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* \ - | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ - | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ - | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ - | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ - | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ - | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) - # Remember, each alternative MUST END IN *, to match a version number. - ;; - -qnx*) - case $basic_machine in - x86-* | i*86-*) - ;; - *) - os=-nto$os - ;; - esac - ;; - -nto-qnx*) - ;; - -nto*) - os=`echo $os | sed -e 's|nto|nto-qnx|'` - ;; - -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ - | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) - ;; - -mac*) - os=`echo $os | sed -e 's|mac|macos|'` - ;; - -linux-dietlibc) - os=-linux-dietlibc - ;; - -linux*) - os=`echo $os | sed -e 's|linux|linux-gnu|'` - ;; - -sunos5*) - os=`echo $os | sed -e 's|sunos5|solaris2|'` - ;; - -sunos6*) - os=`echo $os | sed -e 's|sunos6|solaris3|'` - ;; - -opened*) - os=-openedition - ;; - -os400*) - os=-os400 - ;; - -wince*) - os=-wince - ;; - -osfrose*) - os=-osfrose - ;; - -osf*) - os=-osf - ;; - -utek*) - os=-bsd - ;; - -dynix*) - os=-bsd - ;; - -acis*) - os=-aos - ;; - -atheos*) - os=-atheos - ;; - -syllable*) - os=-syllable - ;; - -386bsd) - os=-bsd - ;; - -ctix* | -uts*) - os=-sysv - ;; - -nova*) - os=-rtmk-nova - ;; - -ns2 ) - os=-nextstep2 - ;; - -nsk*) - os=-nsk - ;; - # Preserve the version number of sinix5. - -sinix5.*) - os=`echo $os | sed -e 's|sinix|sysv|'` - ;; - -sinix*) - os=-sysv4 - ;; - -tpf*) - os=-tpf - ;; - -triton*) - os=-sysv3 - ;; - -oss*) - os=-sysv3 - ;; - -svr4) - os=-sysv4 - ;; - -svr3) - os=-sysv3 - ;; - -sysvr4) - os=-sysv4 - ;; - # This must come after -sysvr4. - -sysv*) - ;; - -ose*) - os=-ose - ;; - -es1800*) - os=-ose - ;; - -xenix) - os=-xenix - ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - os=-mint - ;; - -aros*) - os=-aros - ;; - -kaos*) - os=-kaos - ;; - -zvmoe) - os=-zvmoe - ;; - -none) - ;; - *) - # Get rid of the `-' at the beginning of $os. - os=`echo $os | sed 's/[^-]*-//'` - echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 - exit 1 - ;; -esac -else - -# Here we handle the default operating systems that come with various machines. -# The value should be what the vendor currently ships out the door with their -# machine or put another way, the most popular os provided with the machine. - -# Note that if you're going to try to match "-MANUFACTURER" here (say, -# "-sun"), then you have to tell the case statement up towards the top -# that MANUFACTURER isn't an operating system. Otherwise, code above -# will signal an error saying that MANUFACTURER isn't an operating -# system, and we'll never get to this point. - -case $basic_machine in - score-*) - os=-elf - ;; - spu-*) - os=-elf - ;; - *-acorn) - os=-riscix1.2 - ;; - arm*-rebel) - os=-linux - ;; - arm*-semi) - os=-aout - ;; - c4x-* | tic4x-*) - os=-coff - ;; - # This must come before the *-dec entry. - pdp10-*) - os=-tops20 - ;; - pdp11-*) - os=-none - ;; - *-dec | vax-*) - os=-ultrix4.2 - ;; - m68*-apollo) - os=-domain - ;; - i386-sun) - os=-sunos4.0.2 - ;; - m68000-sun) - os=-sunos3 - # This also exists in the configure program, but was not the - # default. - # os=-sunos4 - ;; - m68*-cisco) - os=-aout - ;; - mep-*) - os=-elf - ;; - mips*-cisco) - os=-elf - ;; - mips*-*) - os=-elf - ;; - or32-*) - os=-coff - ;; - *-tti) # must be before sparc entry or we get the wrong os. - os=-sysv3 - ;; - sparc-* | *-sun) - os=-sunos4.1.1 - ;; - *-be) - os=-beos - ;; - *-haiku) - os=-haiku - ;; - *-ibm) - os=-aix - ;; - *-knuth) - os=-mmixware - ;; - *-wec) - os=-proelf - ;; - *-winbond) - os=-proelf - ;; - *-oki) - os=-proelf - ;; - *-hp) - os=-hpux - ;; - *-hitachi) - os=-hiux - ;; - i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) - os=-sysv - ;; - *-cbm) - os=-amigaos - ;; - *-dg) - os=-dgux - ;; - *-dolphin) - os=-sysv3 - ;; - m68k-ccur) - os=-rtu - ;; - m88k-omron*) - os=-luna - ;; - *-next ) - os=-nextstep - ;; - *-sequent) - os=-ptx - ;; - *-crds) - os=-unos - ;; - *-ns) - os=-genix - ;; - i370-*) - os=-mvs - ;; - *-next) - os=-nextstep3 - ;; - *-gould) - os=-sysv - ;; - *-highlevel) - os=-bsd - ;; - *-encore) - os=-bsd - ;; - *-sgi) - os=-irix - ;; - *-siemens) - os=-sysv4 - ;; - *-masscomp) - os=-rtu - ;; - f30[01]-fujitsu | f700-fujitsu) - os=-uxpv - ;; - *-rom68k) - os=-coff - ;; - *-*bug) - os=-coff - ;; - *-apple) - os=-macos - ;; - *-atari*) - os=-mint - ;; - *) - os=-none - ;; -esac -fi - -# Here we handle the case where we know the os, and the CPU type, but not the -# manufacturer. We pick the logical manufacturer. -vendor=unknown -case $basic_machine in - *-unknown) - case $os in - -riscix*) - vendor=acorn - ;; - -sunos*) - vendor=sun - ;; - -aix*) - vendor=ibm - ;; - -beos*) - vendor=be - ;; - -hpux*) - vendor=hp - ;; - -mpeix*) - vendor=hp - ;; - -hiux*) - vendor=hitachi - ;; - -unos*) - vendor=crds - ;; - -dgux*) - vendor=dg - ;; - -luna*) - vendor=omron - ;; - -genix*) - vendor=ns - ;; - -mvs* | -opened*) - vendor=ibm - ;; - -os400*) - vendor=ibm - ;; - -ptx*) - vendor=sequent - ;; - -tpf*) - vendor=ibm - ;; - -vxsim* | -vxworks* | -windiss*) - vendor=wrs - ;; - -aux*) - vendor=apple - ;; - -hms*) - vendor=hitachi - ;; - -mpw* | -macos*) - vendor=apple - ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - vendor=atari - ;; - -vos*) - vendor=stratus - ;; - esac - basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` - ;; -esac - -echo $basic_machine$os -exit - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff --git a/cpp/thirdparty/gtest-1.5.0/build-aux/depcomp b/cpp/thirdparty/gtest-1.5.0/build-aux/depcomp deleted file mode 100755 index e5f9736c7..000000000 --- a/cpp/thirdparty/gtest-1.5.0/build-aux/depcomp +++ /dev/null @@ -1,589 +0,0 @@ -#! /bin/sh -# depcomp - compile a program generating dependencies as side-effects - -scriptversion=2007-03-29.01 - -# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007 Free Software -# Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# Originally written by Alexandre Oliva . - -case $1 in - '') - echo "$0: No command. Try \`$0 --help' for more information." 1>&2 - exit 1; - ;; - -h | --h*) - cat <<\EOF -Usage: depcomp [--help] [--version] PROGRAM [ARGS] - -Run PROGRAMS ARGS to compile a file, generating dependencies -as side-effects. - -Environment variables: - depmode Dependency tracking mode. - source Source file read by `PROGRAMS ARGS'. - object Object file output by `PROGRAMS ARGS'. - DEPDIR directory where to store dependencies. - depfile Dependency file to output. - tmpdepfile Temporary file to use when outputing dependencies. - libtool Whether libtool is used (yes/no). - -Report bugs to . -EOF - exit $? - ;; - -v | --v*) - echo "depcomp $scriptversion" - exit $? - ;; -esac - -if test -z "$depmode" || test -z "$source" || test -z "$object"; then - echo "depcomp: Variables source, object and depmode must be set" 1>&2 - exit 1 -fi - -# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. -depfile=${depfile-`echo "$object" | - sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} -tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} - -rm -f "$tmpdepfile" - -# Some modes work just like other modes, but use different flags. We -# parameterize here, but still list the modes in the big case below, -# to make depend.m4 easier to write. Note that we *cannot* use a case -# here, because this file can only contain one case statement. -if test "$depmode" = hp; then - # HP compiler uses -M and no extra arg. - gccflag=-M - depmode=gcc -fi - -if test "$depmode" = dashXmstdout; then - # This is just like dashmstdout with a different argument. - dashmflag=-xM - depmode=dashmstdout -fi - -case "$depmode" in -gcc3) -## gcc 3 implements dependency tracking that does exactly what -## we want. Yay! Note: for some reason libtool 1.4 doesn't like -## it if -MD -MP comes after the -MF stuff. Hmm. -## Unfortunately, FreeBSD c89 acceptance of flags depends upon -## the command line argument order; so add the flags where they -## appear in depend2.am. Note that the slowdown incurred here -## affects only configure: in makefiles, %FASTDEP% shortcuts this. - for arg - do - case $arg in - -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; - *) set fnord "$@" "$arg" ;; - esac - shift # fnord - shift # $arg - done - "$@" - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - mv "$tmpdepfile" "$depfile" - ;; - -gcc) -## There are various ways to get dependency output from gcc. Here's -## why we pick this rather obscure method: -## - Don't want to use -MD because we'd like the dependencies to end -## up in a subdir. Having to rename by hand is ugly. -## (We might end up doing this anyway to support other compilers.) -## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like -## -MM, not -M (despite what the docs say). -## - Using -M directly means running the compiler twice (even worse -## than renaming). - if test -z "$gccflag"; then - gccflag=-MD, - fi - "$@" -Wp,"$gccflag$tmpdepfile" - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - echo "$object : \\" > "$depfile" - alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz -## The second -e expression handles DOS-style file names with drive letters. - sed -e 's/^[^:]*: / /' \ - -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" -## This next piece of magic avoids the `deleted header file' problem. -## The problem is that when a header file which appears in a .P file -## is deleted, the dependency causes make to die (because there is -## typically no way to rebuild the header). We avoid this by adding -## dummy dependencies for each header file. Too bad gcc doesn't do -## this for us directly. - tr ' ' ' -' < "$tmpdepfile" | -## Some versions of gcc put a space before the `:'. On the theory -## that the space means something, we add a space to the output as -## well. -## Some versions of the HPUX 10.20 sed can't process this invocation -## correctly. Breaking it into two sed invocations is a workaround. - sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -hp) - # This case exists only to let depend.m4 do its work. It works by - # looking at the text of this script. This case will never be run, - # since it is checked for above. - exit 1 - ;; - -sgi) - if test "$libtool" = yes; then - "$@" "-Wp,-MDupdate,$tmpdepfile" - else - "$@" -MDupdate "$tmpdepfile" - fi - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - - if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files - echo "$object : \\" > "$depfile" - - # Clip off the initial element (the dependent). Don't try to be - # clever and replace this with sed code, as IRIX sed won't handle - # lines with more than a fixed number of characters (4096 in - # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; - # the IRIX cc adds comments like `#:fec' to the end of the - # dependency line. - tr ' ' ' -' < "$tmpdepfile" \ - | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ - tr ' -' ' ' >> $depfile - echo >> $depfile - - # The second pass generates a dummy entry for each header file. - tr ' ' ' -' < "$tmpdepfile" \ - | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ - >> $depfile - else - # The sourcefile does not contain any dependencies, so just - # store a dummy comment line, to avoid errors with the Makefile - # "include basename.Plo" scheme. - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" - ;; - -aix) - # The C for AIX Compiler uses -M and outputs the dependencies - # in a .u file. In older versions, this file always lives in the - # current directory. Also, the AIX compiler puts `$object:' at the - # start of each line; $object doesn't have directory information. - # Version 6 uses the directory in both cases. - dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` - test "x$dir" = "x$object" && dir= - base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` - if test "$libtool" = yes; then - tmpdepfile1=$dir$base.u - tmpdepfile2=$base.u - tmpdepfile3=$dir.libs/$base.u - "$@" -Wc,-M - else - tmpdepfile1=$dir$base.u - tmpdepfile2=$dir$base.u - tmpdepfile3=$dir$base.u - "$@" -M - fi - stat=$? - - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" - exit $stat - fi - - for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" - do - test -f "$tmpdepfile" && break - done - if test -f "$tmpdepfile"; then - # Each line is of the form `foo.o: dependent.h'. - # Do two passes, one to just change these to - # `$object: dependent.h' and one to simply `dependent.h:'. - sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" - # That's a tab and a space in the []. - sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" - else - # The sourcefile does not contain any dependencies, so just - # store a dummy comment line, to avoid errors with the Makefile - # "include basename.Plo" scheme. - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" - ;; - -icc) - # Intel's C compiler understands `-MD -MF file'. However on - # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c - # ICC 7.0 will fill foo.d with something like - # foo.o: sub/foo.c - # foo.o: sub/foo.h - # which is wrong. We want: - # sub/foo.o: sub/foo.c - # sub/foo.o: sub/foo.h - # sub/foo.c: - # sub/foo.h: - # ICC 7.1 will output - # foo.o: sub/foo.c sub/foo.h - # and will wrap long lines using \ : - # foo.o: sub/foo.c ... \ - # sub/foo.h ... \ - # ... - - "$@" -MD -MF "$tmpdepfile" - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - # Each line is of the form `foo.o: dependent.h', - # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. - # Do two passes, one to just change these to - # `$object: dependent.h' and one to simply `dependent.h:'. - sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" - # Some versions of the HPUX 10.20 sed can't process this invocation - # correctly. Breaking it into two sed invocations is a workaround. - sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | - sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -hp2) - # The "hp" stanza above does not work with aCC (C++) and HP's ia64 - # compilers, which have integrated preprocessors. The correct option - # to use with these is +Maked; it writes dependencies to a file named - # 'foo.d', which lands next to the object file, wherever that - # happens to be. - # Much of this is similar to the tru64 case; see comments there. - dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` - test "x$dir" = "x$object" && dir= - base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` - if test "$libtool" = yes; then - tmpdepfile1=$dir$base.d - tmpdepfile2=$dir.libs/$base.d - "$@" -Wc,+Maked - else - tmpdepfile1=$dir$base.d - tmpdepfile2=$dir$base.d - "$@" +Maked - fi - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile1" "$tmpdepfile2" - exit $stat - fi - - for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" - do - test -f "$tmpdepfile" && break - done - if test -f "$tmpdepfile"; then - sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" - # Add `dependent.h:' lines. - sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" - else - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" "$tmpdepfile2" - ;; - -tru64) - # The Tru64 compiler uses -MD to generate dependencies as a side - # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. - # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put - # dependencies in `foo.d' instead, so we check for that too. - # Subdirectories are respected. - dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` - test "x$dir" = "x$object" && dir= - base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` - - if test "$libtool" = yes; then - # With Tru64 cc, shared objects can also be used to make a - # static library. This mechanism is used in libtool 1.4 series to - # handle both shared and static libraries in a single compilation. - # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. - # - # With libtool 1.5 this exception was removed, and libtool now - # generates 2 separate objects for the 2 libraries. These two - # compilations output dependencies in $dir.libs/$base.o.d and - # in $dir$base.o.d. We have to check for both files, because - # one of the two compilations can be disabled. We should prefer - # $dir$base.o.d over $dir.libs/$base.o.d because the latter is - # automatically cleaned when .libs/ is deleted, while ignoring - # the former would cause a distcleancheck panic. - tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 - tmpdepfile2=$dir$base.o.d # libtool 1.5 - tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 - tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 - "$@" -Wc,-MD - else - tmpdepfile1=$dir$base.o.d - tmpdepfile2=$dir$base.d - tmpdepfile3=$dir$base.d - tmpdepfile4=$dir$base.d - "$@" -MD - fi - - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" - exit $stat - fi - - for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" - do - test -f "$tmpdepfile" && break - done - if test -f "$tmpdepfile"; then - sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" - # That's a tab and a space in the []. - sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" - else - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" - ;; - -#nosideeffect) - # This comment above is used by automake to tell side-effect - # dependency tracking mechanisms from slower ones. - -dashmstdout) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout, regardless of -o. - "$@" || exit $? - - # Remove the call to Libtool. - if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do - shift - done - shift - fi - - # Remove `-o $object'. - IFS=" " - for arg - do - case $arg in - -o) - shift - ;; - $object) - shift - ;; - *) - set fnord "$@" "$arg" - shift # fnord - shift # $arg - ;; - esac - done - - test -z "$dashmflag" && dashmflag=-M - # Require at least two characters before searching for `:' - # in the target name. This is to cope with DOS-style filenames: - # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. - "$@" $dashmflag | - sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" - rm -f "$depfile" - cat < "$tmpdepfile" > "$depfile" - tr ' ' ' -' < "$tmpdepfile" | \ -## Some versions of the HPUX 10.20 sed can't process this invocation -## correctly. Breaking it into two sed invocations is a workaround. - sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -dashXmstdout) - # This case only exists to satisfy depend.m4. It is never actually - # run, as this mode is specially recognized in the preamble. - exit 1 - ;; - -makedepend) - "$@" || exit $? - # Remove any Libtool call - if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do - shift - done - shift - fi - # X makedepend - shift - cleared=no - for arg in "$@"; do - case $cleared in - no) - set ""; shift - cleared=yes ;; - esac - case "$arg" in - -D*|-I*) - set fnord "$@" "$arg"; shift ;; - # Strip any option that makedepend may not understand. Remove - # the object too, otherwise makedepend will parse it as a source file. - -*|$object) - ;; - *) - set fnord "$@" "$arg"; shift ;; - esac - done - obj_suffix="`echo $object | sed 's/^.*\././'`" - touch "$tmpdepfile" - ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" - rm -f "$depfile" - cat < "$tmpdepfile" > "$depfile" - sed '1,2d' "$tmpdepfile" | tr ' ' ' -' | \ -## Some versions of the HPUX 10.20 sed can't process this invocation -## correctly. Breaking it into two sed invocations is a workaround. - sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" "$tmpdepfile".bak - ;; - -cpp) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout. - "$@" || exit $? - - # Remove the call to Libtool. - if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do - shift - done - shift - fi - - # Remove `-o $object'. - IFS=" " - for arg - do - case $arg in - -o) - shift - ;; - $object) - shift - ;; - *) - set fnord "$@" "$arg" - shift # fnord - shift # $arg - ;; - esac - done - - "$@" -E | - sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ - -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | - sed '$ s: \\$::' > "$tmpdepfile" - rm -f "$depfile" - echo "$object : \\" > "$depfile" - cat < "$tmpdepfile" >> "$depfile" - sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -msvisualcpp) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout, regardless of -o, - # because we must use -o when running libtool. - "$@" || exit $? - IFS=" " - for arg - do - case "$arg" in - "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") - set fnord "$@" - shift - shift - ;; - *) - set fnord "$@" "$arg" - shift - shift - ;; - esac - done - "$@" -E | - sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" - rm -f "$depfile" - echo "$object : \\" > "$depfile" - . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" - echo " " >> "$depfile" - . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -none) - exec "$@" - ;; - -*) - echo "Unknown depmode $depmode" 1>&2 - exit 1 - ;; -esac - -exit 0 - -# Local Variables: -# mode: shell-script -# sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" -# End: diff --git a/cpp/thirdparty/gtest-1.5.0/build-aux/install-sh b/cpp/thirdparty/gtest-1.5.0/build-aux/install-sh deleted file mode 100755 index a5897de6e..000000000 --- a/cpp/thirdparty/gtest-1.5.0/build-aux/install-sh +++ /dev/null @@ -1,519 +0,0 @@ -#!/bin/sh -# install - install a program, script, or datafile - -scriptversion=2006-12-25.00 - -# This originates from X11R5 (mit/util/scripts/install.sh), which was -# later released in X11R6 (xc/config/util/install.sh) with the -# following copyright and license. -# -# Copyright (C) 1994 X Consortium -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to -# deal in the Software without restriction, including without limitation the -# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -# sell copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- -# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -# -# Except as contained in this notice, the name of the X Consortium shall not -# be used in advertising or otherwise to promote the sale, use or other deal- -# ings in this Software without prior written authorization from the X Consor- -# tium. -# -# -# FSF changes to this file are in the public domain. -# -# Calling this script install-sh is preferred over install.sh, to prevent -# `make' implicit rules from creating a file called install from it -# when there is no Makefile. -# -# This script is compatible with the BSD install script, but was written -# from scratch. - -nl=' -' -IFS=" "" $nl" - -# set DOITPROG to echo to test this script - -# Don't use :- since 4.3BSD and earlier shells don't like it. -doit=${DOITPROG-} -if test -z "$doit"; then - doit_exec=exec -else - doit_exec=$doit -fi - -# Put in absolute file names if you don't have them in your path; -# or use environment vars. - -chgrpprog=${CHGRPPROG-chgrp} -chmodprog=${CHMODPROG-chmod} -chownprog=${CHOWNPROG-chown} -cmpprog=${CMPPROG-cmp} -cpprog=${CPPROG-cp} -mkdirprog=${MKDIRPROG-mkdir} -mvprog=${MVPROG-mv} -rmprog=${RMPROG-rm} -stripprog=${STRIPPROG-strip} - -posix_glob='?' -initialize_posix_glob=' - test "$posix_glob" != "?" || { - if (set -f) 2>/dev/null; then - posix_glob= - else - posix_glob=: - fi - } -' - -posix_mkdir= - -# Desired mode of installed file. -mode=0755 - -chgrpcmd= -chmodcmd=$chmodprog -chowncmd= -mvcmd=$mvprog -rmcmd="$rmprog -f" -stripcmd= - -src= -dst= -dir_arg= -dst_arg= - -copy_on_change=false -no_target_directory= - -usage="\ -Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE - or: $0 [OPTION]... SRCFILES... DIRECTORY - or: $0 [OPTION]... -t DIRECTORY SRCFILES... - or: $0 [OPTION]... -d DIRECTORIES... - -In the 1st form, copy SRCFILE to DSTFILE. -In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. -In the 4th, create DIRECTORIES. - -Options: - --help display this help and exit. - --version display version info and exit. - - -c (ignored) - -C install only if different (preserve the last data modification time) - -d create directories instead of installing files. - -g GROUP $chgrpprog installed files to GROUP. - -m MODE $chmodprog installed files to MODE. - -o USER $chownprog installed files to USER. - -s $stripprog installed files. - -t DIRECTORY install into DIRECTORY. - -T report an error if DSTFILE is a directory. - -Environment variables override the default commands: - CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG - RMPROG STRIPPROG -" - -while test $# -ne 0; do - case $1 in - -c) ;; - - -C) copy_on_change=true;; - - -d) dir_arg=true;; - - -g) chgrpcmd="$chgrpprog $2" - shift;; - - --help) echo "$usage"; exit $?;; - - -m) mode=$2 - case $mode in - *' '* | *' '* | *' -'* | *'*'* | *'?'* | *'['*) - echo "$0: invalid mode: $mode" >&2 - exit 1;; - esac - shift;; - - -o) chowncmd="$chownprog $2" - shift;; - - -s) stripcmd=$stripprog;; - - -t) dst_arg=$2 - shift;; - - -T) no_target_directory=true;; - - --version) echo "$0 $scriptversion"; exit $?;; - - --) shift - break;; - - -*) echo "$0: invalid option: $1" >&2 - exit 1;; - - *) break;; - esac - shift -done - -if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then - # When -d is used, all remaining arguments are directories to create. - # When -t is used, the destination is already specified. - # Otherwise, the last argument is the destination. Remove it from $@. - for arg - do - if test -n "$dst_arg"; then - # $@ is not empty: it contains at least $arg. - set fnord "$@" "$dst_arg" - shift # fnord - fi - shift # arg - dst_arg=$arg - done -fi - -if test $# -eq 0; then - if test -z "$dir_arg"; then - echo "$0: no input file specified." >&2 - exit 1 - fi - # It's OK to call `install-sh -d' without argument. - # This can happen when creating conditional directories. - exit 0 -fi - -if test -z "$dir_arg"; then - trap '(exit $?); exit' 1 2 13 15 - - # Set umask so as not to create temps with too-generous modes. - # However, 'strip' requires both read and write access to temps. - case $mode in - # Optimize common cases. - *644) cp_umask=133;; - *755) cp_umask=22;; - - *[0-7]) - if test -z "$stripcmd"; then - u_plus_rw= - else - u_plus_rw='% 200' - fi - cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; - *) - if test -z "$stripcmd"; then - u_plus_rw= - else - u_plus_rw=,u+rw - fi - cp_umask=$mode$u_plus_rw;; - esac -fi - -for src -do - # Protect names starting with `-'. - case $src in - -*) src=./$src;; - esac - - if test -n "$dir_arg"; then - dst=$src - dstdir=$dst - test -d "$dstdir" - dstdir_status=$? - else - - # Waiting for this to be detected by the "$cpprog $src $dsttmp" command - # might cause directories to be created, which would be especially bad - # if $src (and thus $dsttmp) contains '*'. - if test ! -f "$src" && test ! -d "$src"; then - echo "$0: $src does not exist." >&2 - exit 1 - fi - - if test -z "$dst_arg"; then - echo "$0: no destination specified." >&2 - exit 1 - fi - - dst=$dst_arg - # Protect names starting with `-'. - case $dst in - -*) dst=./$dst;; - esac - - # If destination is a directory, append the input filename; won't work - # if double slashes aren't ignored. - if test -d "$dst"; then - if test -n "$no_target_directory"; then - echo "$0: $dst_arg: Is a directory" >&2 - exit 1 - fi - dstdir=$dst - dst=$dstdir/`basename "$src"` - dstdir_status=0 - else - # Prefer dirname, but fall back on a substitute if dirname fails. - dstdir=` - (dirname "$dst") 2>/dev/null || - expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$dst" : 'X\(//\)[^/]' \| \ - X"$dst" : 'X\(//\)$' \| \ - X"$dst" : 'X\(/\)' \| . 2>/dev/null || - echo X"$dst" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q' - ` - - test -d "$dstdir" - dstdir_status=$? - fi - fi - - obsolete_mkdir_used=false - - if test $dstdir_status != 0; then - case $posix_mkdir in - '') - # Create intermediate dirs using mode 755 as modified by the umask. - # This is like FreeBSD 'install' as of 1997-10-28. - umask=`umask` - case $stripcmd.$umask in - # Optimize common cases. - *[2367][2367]) mkdir_umask=$umask;; - .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; - - *[0-7]) - mkdir_umask=`expr $umask + 22 \ - - $umask % 100 % 40 + $umask % 20 \ - - $umask % 10 % 4 + $umask % 2 - `;; - *) mkdir_umask=$umask,go-w;; - esac - - # With -d, create the new directory with the user-specified mode. - # Otherwise, rely on $mkdir_umask. - if test -n "$dir_arg"; then - mkdir_mode=-m$mode - else - mkdir_mode= - fi - - posix_mkdir=false - case $umask in - *[123567][0-7][0-7]) - # POSIX mkdir -p sets u+wx bits regardless of umask, which - # is incompatible with FreeBSD 'install' when (umask & 300) != 0. - ;; - *) - tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 - - if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 - then - if test -z "$dir_arg" || { - # Check for POSIX incompatibilities with -m. - # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or - # other-writeable bit of parent directory when it shouldn't. - # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` - case $ls_ld_tmpdir in - d????-?r-*) different_mode=700;; - d????-?--*) different_mode=755;; - *) false;; - esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` - test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" - } - } - then posix_mkdir=: - fi - rmdir "$tmpdir/d" "$tmpdir" - else - # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null - fi - trap '' 0;; - esac;; - esac - - if - $posix_mkdir && ( - umask $mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" - ) - then : - else - - # The umask is ridiculous, or mkdir does not conform to POSIX, - # or it failed possibly due to a race condition. Create the - # directory the slow way, step by step, checking for races as we go. - - case $dstdir in - /*) prefix='/';; - -*) prefix='./';; - *) prefix='';; - esac - - eval "$initialize_posix_glob" - - oIFS=$IFS - IFS=/ - $posix_glob set -f - set fnord $dstdir - shift - $posix_glob set +f - IFS=$oIFS - - prefixes= - - for d - do - test -z "$d" && continue - - prefix=$prefix$d - if test -d "$prefix"; then - prefixes= - else - if $posix_mkdir; then - (umask=$mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break - # Don't fail if two instances are running concurrently. - test -d "$prefix" || exit 1 - else - case $prefix in - *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; - *) qprefix=$prefix;; - esac - prefixes="$prefixes '$qprefix'" - fi - fi - prefix=$prefix/ - done - - if test -n "$prefixes"; then - # Don't fail if two instances are running concurrently. - (umask $mkdir_umask && - eval "\$doit_exec \$mkdirprog $prefixes") || - test -d "$dstdir" || exit 1 - obsolete_mkdir_used=true - fi - fi - fi - - if test -n "$dir_arg"; then - { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && - { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && - { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || - test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 - else - - # Make a couple of temp file names in the proper directory. - dsttmp=$dstdir/_inst.$$_ - rmtmp=$dstdir/_rm.$$_ - - # Trap to clean up those temp files at exit. - trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 - - # Copy the file name to the temp name. - (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && - - # and set any options; do chmod last to preserve setuid bits. - # - # If any of these fail, we abort the whole thing. If we want to - # ignore errors from any of these, just make sure not to ignore - # errors from the above "$doit $cpprog $src $dsttmp" command. - # - { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && - { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && - { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && - { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && - - # If -C, don't bother to copy if it wouldn't change the file. - if $copy_on_change && - old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && - new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && - - eval "$initialize_posix_glob" && - $posix_glob set -f && - set X $old && old=:$2:$4:$5:$6 && - set X $new && new=:$2:$4:$5:$6 && - $posix_glob set +f && - - test "$old" = "$new" && - $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 - then - rm -f "$dsttmp" - else - # Rename the file to the real destination. - $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || - - # The rename failed, perhaps because mv can't rename something else - # to itself, or perhaps because mv is so ancient that it does not - # support -f. - { - # Now remove or move aside any old file at destination location. - # We try this two ways since rm can't unlink itself on some - # systems and the destination file might be busy for other - # reasons. In this case, the final cleanup might fail but the new - # file should still install successfully. - { - test ! -f "$dst" || - $doit $rmcmd -f "$dst" 2>/dev/null || - { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && - { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } - } || - { echo "$0: cannot unlink or rename $dst" >&2 - (exit 1); exit 1 - } - } && - - # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dst" - } - fi || exit 1 - - trap '' 0 - fi -done - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" -# End: diff --git a/cpp/thirdparty/gtest-1.5.0/build-aux/ltmain.sh b/cpp/thirdparty/gtest-1.5.0/build-aux/ltmain.sh deleted file mode 100644 index e420facf5..000000000 --- a/cpp/thirdparty/gtest-1.5.0/build-aux/ltmain.sh +++ /dev/null @@ -1,6964 +0,0 @@ -# ltmain.sh - Provide generalized library-building support services. -# NOTE: Changing this file will not affect anything until you rerun configure. -# -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, -# 2007, 2008 Free Software Foundation, Inc. -# Originally by Gordon Matzigkeit , 1996 -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -basename="s,^.*/,,g" - -# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh -# is ksh but when the shell is invoked as "sh" and the current value of -# the _XPG environment variable is not equal to 1 (one), the special -# positional parameter $0, within a function call, is the name of the -# function. -progpath="$0" - -# The name of this program: -progname=`echo "$progpath" | $SED $basename` -modename="$progname" - -# Global variables: -EXIT_SUCCESS=0 -EXIT_FAILURE=1 - -PROGRAM=ltmain.sh -PACKAGE=libtool -VERSION="1.5.26 Debian 1.5.26-1ubuntu1" -TIMESTAMP=" (1.1220.2.493 2008/02/01 16:58:18)" - -# Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# Check that we have a working $echo. -if test "X$1" = X--no-reexec; then - # Discard the --no-reexec flag, and continue. - shift -elif test "X$1" = X--fallback-echo; then - # Avoid inline document here, it may be left over - : -elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then - # Yippee, $echo works! - : -else - # Restart under the correct shell, and then maybe $echo will work. - exec $SHELL "$progpath" --no-reexec ${1+"$@"} -fi - -if test "X$1" = X--fallback-echo; then - # used as fallback echo - shift - cat <&2 - $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 - exit $EXIT_FAILURE -fi - -# Global variables. -mode=$default_mode -nonopt= -prev= -prevopt= -run= -show="$echo" -show_help= -execute_dlfiles= -duplicate_deps=no -preserve_args= -lo2o="s/\\.lo\$/.${objext}/" -o2lo="s/\\.${objext}\$/.lo/" -extracted_archives= -extracted_serial=0 - -##################################### -# Shell function definitions: -# This seems to be the best place for them - -# func_mktempdir [string] -# Make a temporary directory that won't clash with other running -# libtool processes, and avoids race conditions if possible. If -# given, STRING is the basename for that directory. -func_mktempdir () -{ - my_template="${TMPDIR-/tmp}/${1-$progname}" - - if test "$run" = ":"; then - # Return a directory name, but don't create it in dry-run mode - my_tmpdir="${my_template}-$$" - else - - # If mktemp works, use that first and foremost - my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` - - if test ! -d "$my_tmpdir"; then - # Failing that, at least try and use $RANDOM to avoid a race - my_tmpdir="${my_template}-${RANDOM-0}$$" - - save_mktempdir_umask=`umask` - umask 0077 - $mkdir "$my_tmpdir" - umask $save_mktempdir_umask - fi - - # If we're not in dry-run mode, bomb out on failure - test -d "$my_tmpdir" || { - $echo "cannot create temporary directory \`$my_tmpdir'" 1>&2 - exit $EXIT_FAILURE - } - fi - - $echo "X$my_tmpdir" | $Xsed -} - - -# func_win32_libid arg -# return the library type of file 'arg' -# -# Need a lot of goo to handle *both* DLLs and import libs -# Has to be a shell function in order to 'eat' the argument -# that is supplied when $file_magic_command is called. -func_win32_libid () -{ - win32_libid_type="unknown" - win32_fileres=`file -L $1 2>/dev/null` - case $win32_fileres in - *ar\ archive\ import\ library*) # definitely import - win32_libid_type="x86 archive import" - ;; - *ar\ archive*) # could be an import, or static - if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \ - $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then - win32_nmres=`eval $NM -f posix -A $1 | \ - $SED -n -e '1,100{ - / I /{ - s,.*,import, - p - q - } - }'` - case $win32_nmres in - import*) win32_libid_type="x86 archive import";; - *) win32_libid_type="x86 archive static";; - esac - fi - ;; - *DLL*) - win32_libid_type="x86 DLL" - ;; - *executable*) # but shell scripts are "executable" too... - case $win32_fileres in - *MS\ Windows\ PE\ Intel*) - win32_libid_type="x86 DLL" - ;; - esac - ;; - esac - $echo $win32_libid_type -} - - -# func_infer_tag arg -# Infer tagged configuration to use if any are available and -# if one wasn't chosen via the "--tag" command line option. -# Only attempt this if the compiler in the base compile -# command doesn't match the default compiler. -# arg is usually of the form 'gcc ...' -func_infer_tag () -{ - if test -n "$available_tags" && test -z "$tagname"; then - CC_quoted= - for arg in $CC; do - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - CC_quoted="$CC_quoted $arg" - done - case $@ in - # Blanks in the command may have been stripped by the calling shell, - # but not from the CC environment variable when configure was run. - " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;; - # Blanks at the start of $base_compile will cause this to fail - # if we don't check for them as well. - *) - for z in $available_tags; do - if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then - # Evaluate the configuration. - eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" - CC_quoted= - for arg in $CC; do - # Double-quote args containing other shell metacharacters. - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - CC_quoted="$CC_quoted $arg" - done - case "$@ " in - " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) - # The compiler in the base compile command matches - # the one in the tagged configuration. - # Assume this is the tagged configuration we want. - tagname=$z - break - ;; - esac - fi - done - # If $tagname still isn't set, then no tagged configuration - # was found and let the user know that the "--tag" command - # line option must be used. - if test -z "$tagname"; then - $echo "$modename: unable to infer tagged configuration" - $echo "$modename: specify a tag with \`--tag'" 1>&2 - exit $EXIT_FAILURE -# else -# $echo "$modename: using $tagname tagged configuration" - fi - ;; - esac - fi -} - - -# func_extract_an_archive dir oldlib -func_extract_an_archive () -{ - f_ex_an_ar_dir="$1"; shift - f_ex_an_ar_oldlib="$1" - - $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)" - $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $? - if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then - : - else - $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2 - exit $EXIT_FAILURE - fi -} - -# func_extract_archives gentop oldlib ... -func_extract_archives () -{ - my_gentop="$1"; shift - my_oldlibs=${1+"$@"} - my_oldobjs="" - my_xlib="" - my_xabs="" - my_xdir="" - my_status="" - - $show "${rm}r $my_gentop" - $run ${rm}r "$my_gentop" - $show "$mkdir $my_gentop" - $run $mkdir "$my_gentop" - my_status=$? - if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then - exit $my_status - fi - - for my_xlib in $my_oldlibs; do - # Extract the objects. - case $my_xlib in - [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; - *) my_xabs=`pwd`"/$my_xlib" ;; - esac - my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'` - my_xlib_u=$my_xlib - while :; do - case " $extracted_archives " in - *" $my_xlib_u "*) - extracted_serial=`expr $extracted_serial + 1` - my_xlib_u=lt$extracted_serial-$my_xlib ;; - *) break ;; - esac - done - extracted_archives="$extracted_archives $my_xlib_u" - my_xdir="$my_gentop/$my_xlib_u" - - $show "${rm}r $my_xdir" - $run ${rm}r "$my_xdir" - $show "$mkdir $my_xdir" - $run $mkdir "$my_xdir" - exit_status=$? - if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then - exit $exit_status - fi - case $host in - *-darwin*) - $show "Extracting $my_xabs" - # Do not bother doing anything if just a dry run - if test -z "$run"; then - darwin_orig_dir=`pwd` - cd $my_xdir || exit $? - darwin_archive=$my_xabs - darwin_curdir=`pwd` - darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'` - darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null` - if test -n "$darwin_arches"; then - darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'` - darwin_arch= - $show "$darwin_base_archive has multiple architectures $darwin_arches" - for darwin_arch in $darwin_arches ; do - mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}" - lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" - cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" - func_extract_an_archive "`pwd`" "${darwin_base_archive}" - cd "$darwin_curdir" - $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" - done # $darwin_arches - ## Okay now we have a bunch of thin objects, gotta fatten them up :) - darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP` - darwin_file= - darwin_files= - for darwin_file in $darwin_filelist; do - darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` - lipo -create -output "$darwin_file" $darwin_files - done # $darwin_filelist - ${rm}r unfat-$$ - cd "$darwin_orig_dir" - else - cd "$darwin_orig_dir" - func_extract_an_archive "$my_xdir" "$my_xabs" - fi # $darwin_arches - fi # $run - ;; - *) - func_extract_an_archive "$my_xdir" "$my_xabs" - ;; - esac - my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` - done - func_extract_archives_result="$my_oldobjs" -} -# End of Shell function definitions -##################################### - -# Darwin sucks -eval std_shrext=\"$shrext_cmds\" - -disable_libs=no - -# Parse our command line options once, thoroughly. -while test "$#" -gt 0 -do - arg="$1" - shift - - case $arg in - -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;; - *) optarg= ;; - esac - - # If the previous option needs an argument, assign it. - if test -n "$prev"; then - case $prev in - execute_dlfiles) - execute_dlfiles="$execute_dlfiles $arg" - ;; - tag) - tagname="$arg" - preserve_args="${preserve_args}=$arg" - - # Check whether tagname contains only valid characters - case $tagname in - *[!-_A-Za-z0-9,/]*) - $echo "$progname: invalid tag name: $tagname" 1>&2 - exit $EXIT_FAILURE - ;; - esac - - case $tagname in - CC) - # Don't test for the "default" C tag, as we know, it's there, but - # not specially marked. - ;; - *) - if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then - taglist="$taglist $tagname" - # Evaluate the configuration. - eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`" - else - $echo "$progname: ignoring unknown tag $tagname" 1>&2 - fi - ;; - esac - ;; - *) - eval "$prev=\$arg" - ;; - esac - - prev= - prevopt= - continue - fi - - # Have we seen a non-optional argument yet? - case $arg in - --help) - show_help=yes - ;; - - --version) - echo "\ -$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP - -Copyright (C) 2008 Free Software Foundation, Inc. -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - exit $? - ;; - - --config) - ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath - # Now print the configurations for the tags. - for tagname in $taglist; do - ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath" - done - exit $? - ;; - - --debug) - $echo "$progname: enabling shell trace mode" - set -x - preserve_args="$preserve_args $arg" - ;; - - --dry-run | -n) - run=: - ;; - - --features) - $echo "host: $host" - if test "$build_libtool_libs" = yes; then - $echo "enable shared libraries" - else - $echo "disable shared libraries" - fi - if test "$build_old_libs" = yes; then - $echo "enable static libraries" - else - $echo "disable static libraries" - fi - exit $? - ;; - - --finish) mode="finish" ;; - - --mode) prevopt="--mode" prev=mode ;; - --mode=*) mode="$optarg" ;; - - --preserve-dup-deps) duplicate_deps="yes" ;; - - --quiet | --silent) - show=: - preserve_args="$preserve_args $arg" - ;; - - --tag) - prevopt="--tag" - prev=tag - preserve_args="$preserve_args --tag" - ;; - --tag=*) - set tag "$optarg" ${1+"$@"} - shift - prev=tag - preserve_args="$preserve_args --tag" - ;; - - -dlopen) - prevopt="-dlopen" - prev=execute_dlfiles - ;; - - -*) - $echo "$modename: unrecognized option \`$arg'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - ;; - - *) - nonopt="$arg" - break - ;; - esac -done - -if test -n "$prevopt"; then - $echo "$modename: option \`$prevopt' requires an argument" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE -fi - -case $disable_libs in -no) - ;; -shared) - build_libtool_libs=no - build_old_libs=yes - ;; -static) - build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` - ;; -esac - -# If this variable is set in any of the actions, the command in it -# will be execed at the end. This prevents here-documents from being -# left over by shells. -exec_cmd= - -if test -z "$show_help"; then - - # Infer the operation mode. - if test -z "$mode"; then - $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2 - $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2 - case $nonopt in - *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*) - mode=link - for arg - do - case $arg in - -c) - mode=compile - break - ;; - esac - done - ;; - *db | *dbx | *strace | *truss) - mode=execute - ;; - *install*|cp|mv) - mode=install - ;; - *rm) - mode=uninstall - ;; - *) - # If we have no mode, but dlfiles were specified, then do execute mode. - test -n "$execute_dlfiles" && mode=execute - - # Just use the default operation mode. - if test -z "$mode"; then - if test -n "$nonopt"; then - $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2 - else - $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2 - fi - fi - ;; - esac - fi - - # Only execute mode is allowed to have -dlopen flags. - if test -n "$execute_dlfiles" && test "$mode" != execute; then - $echo "$modename: unrecognized option \`-dlopen'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Change the help message to a mode-specific one. - generic_help="$help" - help="Try \`$modename --help --mode=$mode' for more information." - - # These modes are in order of execution frequency so that they run quickly. - case $mode in - # libtool compile mode - compile) - modename="$modename: compile" - # Get the compilation command and the source file. - base_compile= - srcfile="$nonopt" # always keep a non-empty value in "srcfile" - suppress_opt=yes - suppress_output= - arg_mode=normal - libobj= - later= - - for arg - do - case $arg_mode in - arg ) - # do not "continue". Instead, add this to base_compile - lastarg="$arg" - arg_mode=normal - ;; - - target ) - libobj="$arg" - arg_mode=normal - continue - ;; - - normal ) - # Accept any command-line options. - case $arg in - -o) - if test -n "$libobj" ; then - $echo "$modename: you cannot specify \`-o' more than once" 1>&2 - exit $EXIT_FAILURE - fi - arg_mode=target - continue - ;; - - -static | -prefer-pic | -prefer-non-pic) - later="$later $arg" - continue - ;; - - -no-suppress) - suppress_opt=no - continue - ;; - - -Xcompiler) - arg_mode=arg # the next one goes into the "base_compile" arg list - continue # The current "srcfile" will either be retained or - ;; # replaced later. I would guess that would be a bug. - - -Wc,*) - args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"` - lastarg= - save_ifs="$IFS"; IFS=',' - for arg in $args; do - IFS="$save_ifs" - - # Double-quote args containing other shell metacharacters. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - lastarg="$lastarg $arg" - done - IFS="$save_ifs" - lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"` - - # Add the arguments to base_compile. - base_compile="$base_compile $lastarg" - continue - ;; - - * ) - # Accept the current argument as the source file. - # The previous "srcfile" becomes the current argument. - # - lastarg="$srcfile" - srcfile="$arg" - ;; - esac # case $arg - ;; - esac # case $arg_mode - - # Aesthetically quote the previous argument. - lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"` - - case $lastarg in - # Double-quote args containing other shell metacharacters. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, and some SunOS ksh mistreat backslash-escaping - # in scan sets (worked around with variable expansion), - # and furthermore cannot handle '|' '&' '(' ')' in scan sets - # at all, so we specify them separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - lastarg="\"$lastarg\"" - ;; - esac - - base_compile="$base_compile $lastarg" - done # for arg - - case $arg_mode in - arg) - $echo "$modename: you must specify an argument for -Xcompile" - exit $EXIT_FAILURE - ;; - target) - $echo "$modename: you must specify a target with \`-o'" 1>&2 - exit $EXIT_FAILURE - ;; - *) - # Get the name of the library object. - [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'` - ;; - esac - - # Recognize several different file suffixes. - # If the user specifies -o file.o, it is replaced with file.lo - xform='[cCFSifmso]' - case $libobj in - *.ada) xform=ada ;; - *.adb) xform=adb ;; - *.ads) xform=ads ;; - *.asm) xform=asm ;; - *.c++) xform=c++ ;; - *.cc) xform=cc ;; - *.ii) xform=ii ;; - *.class) xform=class ;; - *.cpp) xform=cpp ;; - *.cxx) xform=cxx ;; - *.[fF][09]?) xform=[fF][09]. ;; - *.for) xform=for ;; - *.java) xform=java ;; - *.obj) xform=obj ;; - *.sx) xform=sx ;; - esac - - libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"` - - case $libobj in - *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;; - *) - $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2 - exit $EXIT_FAILURE - ;; - esac - - func_infer_tag $base_compile - - for arg in $later; do - case $arg in - -static) - build_old_libs=yes - continue - ;; - - -prefer-pic) - pic_mode=yes - continue - ;; - - -prefer-non-pic) - pic_mode=no - continue - ;; - esac - done - - qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"` - case $qlibobj in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - qlibobj="\"$qlibobj\"" ;; - esac - test "X$libobj" != "X$qlibobj" \ - && $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"' &()|`$[]' \ - && $echo "$modename: libobj name \`$libobj' may not contain shell special characters." - objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` - xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'` - if test "X$xdir" = "X$obj"; then - xdir= - else - xdir=$xdir/ - fi - lobj=${xdir}$objdir/$objname - - if test -z "$base_compile"; then - $echo "$modename: you must specify a compilation command" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Delete any leftover library objects. - if test "$build_old_libs" = yes; then - removelist="$obj $lobj $libobj ${libobj}T" - else - removelist="$lobj $libobj ${libobj}T" - fi - - $run $rm $removelist - trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 - - # On Cygwin there's no "real" PIC flag so we must build both object types - case $host_os in - cygwin* | mingw* | pw32* | os2*) - pic_mode=default - ;; - esac - if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then - # non-PIC code in shared libraries is not supported - pic_mode=default - fi - - # Calculate the filename of the output object if compiler does - # not support -o with -c - if test "$compiler_c_o" = no; then - output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} - lockfile="$output_obj.lock" - removelist="$removelist $output_obj $lockfile" - trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 - else - output_obj= - need_locks=no - lockfile= - fi - - # Lock this critical section if it is needed - # We use this script file to make the link, it avoids creating a new file - if test "$need_locks" = yes; then - until $run ln "$progpath" "$lockfile" 2>/dev/null; do - $show "Waiting for $lockfile to be removed" - sleep 2 - done - elif test "$need_locks" = warn; then - if test -f "$lockfile"; then - $echo "\ -*** ERROR, $lockfile exists and contains: -`cat $lockfile 2>/dev/null` - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $run $rm $removelist - exit $EXIT_FAILURE - fi - $echo "$srcfile" > "$lockfile" - fi - - if test -n "$fix_srcfile_path"; then - eval srcfile=\"$fix_srcfile_path\" - fi - qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"` - case $qsrcfile in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - qsrcfile="\"$qsrcfile\"" ;; - esac - - $run $rm "$libobj" "${libobj}T" - - # Create a libtool object file (analogous to a ".la" file), - # but don't create it if we're doing a dry run. - test -z "$run" && cat > ${libobj}T </dev/null`" != "X$srcfile"; then - $echo "\ -*** ERROR, $lockfile contains: -`cat $lockfile 2>/dev/null` - -but it should contain: -$srcfile - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $run $rm $removelist - exit $EXIT_FAILURE - fi - - # Just move the object if needed, then go on to compile the next one - if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then - $show "$mv $output_obj $lobj" - if $run $mv $output_obj $lobj; then : - else - error=$? - $run $rm $removelist - exit $error - fi - fi - - # Append the name of the PIC object to the libtool object file. - test -z "$run" && cat >> ${libobj}T <> ${libobj}T </dev/null`" != "X$srcfile"; then - $echo "\ -*** ERROR, $lockfile contains: -`cat $lockfile 2>/dev/null` - -but it should contain: -$srcfile - -This indicates that another process is trying to use the same -temporary object file, and libtool could not work around it because -your compiler does not support \`-c' and \`-o' together. If you -repeat this compilation, it may succeed, by chance, but you had better -avoid parallel builds (make -j) in this platform, or get a better -compiler." - - $run $rm $removelist - exit $EXIT_FAILURE - fi - - # Just move the object if needed - if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then - $show "$mv $output_obj $obj" - if $run $mv $output_obj $obj; then : - else - error=$? - $run $rm $removelist - exit $error - fi - fi - - # Append the name of the non-PIC object the libtool object file. - # Only append if the libtool object file exists. - test -z "$run" && cat >> ${libobj}T <> ${libobj}T <&2 - fi - if test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=yes - ;; - -static) - if test -z "$pic_flag" && test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=built - ;; - -static-libtool-libs) - if test -z "$pic_flag" && test -n "$link_static_flag"; then - dlopen_self=$dlopen_self_static - fi - prefer_static_libs=yes - ;; - esac - build_libtool_libs=no - build_old_libs=yes - break - ;; - esac - done - - # See if our shared archives depend on static archives. - test -n "$old_archive_from_new_cmds" && build_old_libs=yes - - # Go through the arguments, transforming them on the way. - while test "$#" -gt 0; do - arg="$1" - shift - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test - ;; - *) qarg=$arg ;; - esac - libtool_args="$libtool_args $qarg" - - # If the previous option needs an argument, assign it. - if test -n "$prev"; then - case $prev in - output) - compile_command="$compile_command @OUTPUT@" - finalize_command="$finalize_command @OUTPUT@" - ;; - esac - - case $prev in - dlfiles|dlprefiles) - if test "$preload" = no; then - # Add the symbol object into the linking commands. - compile_command="$compile_command @SYMFILE@" - finalize_command="$finalize_command @SYMFILE@" - preload=yes - fi - case $arg in - *.la | *.lo) ;; # We handle these cases below. - force) - if test "$dlself" = no; then - dlself=needless - export_dynamic=yes - fi - prev= - continue - ;; - self) - if test "$prev" = dlprefiles; then - dlself=yes - elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then - dlself=yes - else - dlself=needless - export_dynamic=yes - fi - prev= - continue - ;; - *) - if test "$prev" = dlfiles; then - dlfiles="$dlfiles $arg" - else - dlprefiles="$dlprefiles $arg" - fi - prev= - continue - ;; - esac - ;; - expsyms) - export_symbols="$arg" - if test ! -f "$arg"; then - $echo "$modename: symbol file \`$arg' does not exist" - exit $EXIT_FAILURE - fi - prev= - continue - ;; - expsyms_regex) - export_symbols_regex="$arg" - prev= - continue - ;; - inst_prefix) - inst_prefix_dir="$arg" - prev= - continue - ;; - precious_regex) - precious_files_regex="$arg" - prev= - continue - ;; - release) - release="-$arg" - prev= - continue - ;; - objectlist) - if test -f "$arg"; then - save_arg=$arg - moreargs= - for fil in `cat $save_arg` - do -# moreargs="$moreargs $fil" - arg=$fil - # A libtool-controlled object. - - # Check to see that this really is a libtool object. - if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - pic_object= - non_pic_object= - - # Read the .lo file - # If there is no directory component, then add one. - case $arg in - */* | *\\*) . $arg ;; - *) . ./$arg ;; - esac - - if test -z "$pic_object" || \ - test -z "$non_pic_object" || - test "$pic_object" = none && \ - test "$non_pic_object" = none; then - $echo "$modename: cannot find name of object for \`$arg'" 1>&2 - exit $EXIT_FAILURE - fi - - # Extract subdirectory from the argument. - xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` - if test "X$xdir" = "X$arg"; then - xdir= - else - xdir="$xdir/" - fi - - if test "$pic_object" != none; then - # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" - - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then - dlfiles="$dlfiles $pic_object" - prev= - continue - else - # If libtool objects are unsupported, then we need to preload. - prev=dlprefiles - fi - fi - - # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then - # Preload the old-style object. - dlprefiles="$dlprefiles $pic_object" - prev= - fi - - # A PIC object. - libobjs="$libobjs $pic_object" - arg="$pic_object" - fi - - # Non-PIC object. - if test "$non_pic_object" != none; then - # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" - - # A standard non-PIC object - non_pic_objects="$non_pic_objects $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" - fi - else - # If the PIC object exists, use it instead. - # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" - non_pic_objects="$non_pic_objects $non_pic_object" - fi - else - # Only an error if not doing a dry-run. - if test -z "$run"; then - $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 - exit $EXIT_FAILURE - else - # Dry-run case. - - # Extract subdirectory from the argument. - xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` - if test "X$xdir" = "X$arg"; then - xdir= - else - xdir="$xdir/" - fi - - pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` - non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` - libobjs="$libobjs $pic_object" - non_pic_objects="$non_pic_objects $non_pic_object" - fi - fi - done - else - $echo "$modename: link input file \`$save_arg' does not exist" - exit $EXIT_FAILURE - fi - arg=$save_arg - prev= - continue - ;; - rpath | xrpath) - # We need an absolute path. - case $arg in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - $echo "$modename: only absolute run-paths are allowed" 1>&2 - exit $EXIT_FAILURE - ;; - esac - if test "$prev" = rpath; then - case "$rpath " in - *" $arg "*) ;; - *) rpath="$rpath $arg" ;; - esac - else - case "$xrpath " in - *" $arg "*) ;; - *) xrpath="$xrpath $arg" ;; - esac - fi - prev= - continue - ;; - xcompiler) - compiler_flags="$compiler_flags $qarg" - prev= - compile_command="$compile_command $qarg" - finalize_command="$finalize_command $qarg" - continue - ;; - xlinker) - linker_flags="$linker_flags $qarg" - compiler_flags="$compiler_flags $wl$qarg" - prev= - compile_command="$compile_command $wl$qarg" - finalize_command="$finalize_command $wl$qarg" - continue - ;; - xcclinker) - linker_flags="$linker_flags $qarg" - compiler_flags="$compiler_flags $qarg" - prev= - compile_command="$compile_command $qarg" - finalize_command="$finalize_command $qarg" - continue - ;; - shrext) - shrext_cmds="$arg" - prev= - continue - ;; - darwin_framework|darwin_framework_skip) - test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags $arg" - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" - prev= - continue - ;; - *) - eval "$prev=\"\$arg\"" - prev= - continue - ;; - esac - fi # test -n "$prev" - - prevarg="$arg" - - case $arg in - -all-static) - if test -n "$link_static_flag"; then - compile_command="$compile_command $link_static_flag" - finalize_command="$finalize_command $link_static_flag" - fi - continue - ;; - - -allow-undefined) - # FIXME: remove this flag sometime in the future. - $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2 - continue - ;; - - -avoid-version) - avoid_version=yes - continue - ;; - - -dlopen) - prev=dlfiles - continue - ;; - - -dlpreopen) - prev=dlprefiles - continue - ;; - - -export-dynamic) - export_dynamic=yes - continue - ;; - - -export-symbols | -export-symbols-regex) - if test -n "$export_symbols" || test -n "$export_symbols_regex"; then - $echo "$modename: more than one -exported-symbols argument is not allowed" - exit $EXIT_FAILURE - fi - if test "X$arg" = "X-export-symbols"; then - prev=expsyms - else - prev=expsyms_regex - fi - continue - ;; - - -framework|-arch|-isysroot) - case " $CC " in - *" ${arg} ${1} "* | *" ${arg} ${1} "*) - prev=darwin_framework_skip ;; - *) compiler_flags="$compiler_flags $arg" - prev=darwin_framework ;; - esac - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" - continue - ;; - - -inst-prefix-dir) - prev=inst_prefix - continue - ;; - - # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* - # so, if we see these flags be careful not to treat them like -L - -L[A-Z][A-Z]*:*) - case $with_gcc/$host in - no/*-*-irix* | /*-*-irix*) - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" - ;; - esac - continue - ;; - - -L*) - dir=`$echo "X$arg" | $Xsed -e 's/^-L//'` - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - absdir=`cd "$dir" && pwd` - if test -z "$absdir"; then - $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2 - absdir="$dir" - notinst_path="$notinst_path $dir" - fi - dir="$absdir" - ;; - esac - case "$deplibs " in - *" -L$dir "*) ;; - *) - deplibs="$deplibs -L$dir" - lib_search_path="$lib_search_path $dir" - ;; - esac - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) - testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'` - case :$dllsearchpath: in - *":$dir:"*) ;; - *) dllsearchpath="$dllsearchpath:$dir";; - esac - case :$dllsearchpath: in - *":$testbindir:"*) ;; - *) dllsearchpath="$dllsearchpath:$testbindir";; - esac - ;; - esac - continue - ;; - - -l*) - if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*) - # These systems don't actually have a C or math library (as such) - continue - ;; - *-*-os2*) - # These systems don't actually have a C library (as such) - test "X$arg" = "X-lc" && continue - ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) - # Do not include libc due to us having libc/libc_r. - test "X$arg" = "X-lc" && continue - ;; - *-*-rhapsody* | *-*-darwin1.[012]) - # Rhapsody C and math libraries are in the System framework - deplibs="$deplibs -framework System" - continue - ;; - *-*-sco3.2v5* | *-*-sco5v6*) - # Causes problems with __ctype - test "X$arg" = "X-lc" && continue - ;; - *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) - # Compiler inserts libc in the correct place for threads to work - test "X$arg" = "X-lc" && continue - ;; - esac - elif test "X$arg" = "X-lc_r"; then - case $host in - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) - # Do not include libc_r directly, use -pthread flag. - continue - ;; - esac - fi - deplibs="$deplibs $arg" - continue - ;; - - # Tru64 UNIX uses -model [arg] to determine the layout of C++ - # classes, name mangling, and exception handling. - -model) - compile_command="$compile_command $arg" - compiler_flags="$compiler_flags $arg" - finalize_command="$finalize_command $arg" - prev=xcompiler - continue - ;; - - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) - compiler_flags="$compiler_flags $arg" - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" - continue - ;; - - -multi_module) - single_module="${wl}-multi_module" - continue - ;; - - -module) - module=yes - continue - ;; - - # -64, -mips[0-9] enable 64-bit mode on the SGI compiler - # -r[0-9][0-9]* specifies the processor on the SGI compiler - # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler - # +DA*, +DD* enable 64-bit mode on the HP compiler - # -q* pass through compiler args for the IBM compiler - # -m* pass through architecture-specific compiler args for GCC - # -m*, -t[45]*, -txscale* pass through architecture-specific - # compiler args for GCC - # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC - # -F/path gives path to uninstalled frameworks, gcc on darwin - # @file GCC response files - -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ - -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*) - - # Unknown arguments in both finalize_command and compile_command need - # to be aesthetically quoted because they are evaled later. - arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" - compiler_flags="$compiler_flags $arg" - continue - ;; - - -shrext) - prev=shrext - continue - ;; - - -no-fast-install) - fast_install=no - continue - ;; - - -no-install) - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin*) - # The PATH hackery in wrapper scripts is required on Windows - # and Darwin in order for the loader to find any dlls it needs. - $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2 - $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2 - fast_install=no - ;; - *) no_install=yes ;; - esac - continue - ;; - - -no-undefined) - allow_undefined=no - continue - ;; - - -objectlist) - prev=objectlist - continue - ;; - - -o) prev=output ;; - - -precious-files-regex) - prev=precious_regex - continue - ;; - - -release) - prev=release - continue - ;; - - -rpath) - prev=rpath - continue - ;; - - -R) - prev=xrpath - continue - ;; - - -R*) - dir=`$echo "X$arg" | $Xsed -e 's/^-R//'` - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - $echo "$modename: only absolute run-paths are allowed" 1>&2 - exit $EXIT_FAILURE - ;; - esac - case "$xrpath " in - *" $dir "*) ;; - *) xrpath="$xrpath $dir" ;; - esac - continue - ;; - - -static | -static-libtool-libs) - # The effects of -static are defined in a previous loop. - # We used to do the same as -all-static on platforms that - # didn't have a PIC flag, but the assumption that the effects - # would be equivalent was wrong. It would break on at least - # Digital Unix and AIX. - continue - ;; - - -thread-safe) - thread_safe=yes - continue - ;; - - -version-info) - prev=vinfo - continue - ;; - -version-number) - prev=vinfo - vinfo_number=yes - continue - ;; - - -Wc,*) - args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'` - arg= - save_ifs="$IFS"; IFS=',' - for flag in $args; do - IFS="$save_ifs" - case $flag in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - flag="\"$flag\"" - ;; - esac - arg="$arg $wl$flag" - compiler_flags="$compiler_flags $flag" - done - IFS="$save_ifs" - arg=`$echo "X$arg" | $Xsed -e "s/^ //"` - ;; - - -Wl,*) - args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'` - arg= - save_ifs="$IFS"; IFS=',' - for flag in $args; do - IFS="$save_ifs" - case $flag in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - flag="\"$flag\"" - ;; - esac - arg="$arg $wl$flag" - compiler_flags="$compiler_flags $wl$flag" - linker_flags="$linker_flags $flag" - done - IFS="$save_ifs" - arg=`$echo "X$arg" | $Xsed -e "s/^ //"` - ;; - - -Xcompiler) - prev=xcompiler - continue - ;; - - -Xlinker) - prev=xlinker - continue - ;; - - -XCClinker) - prev=xcclinker - continue - ;; - - # Some other compiler flag. - -* | +*) - # Unknown arguments in both finalize_command and compile_command need - # to be aesthetically quoted because they are evaled later. - arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - ;; - - *.$objext) - # A standard object. - objs="$objs $arg" - ;; - - *.lo) - # A libtool-controlled object. - - # Check to see that this really is a libtool object. - if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - pic_object= - non_pic_object= - - # Read the .lo file - # If there is no directory component, then add one. - case $arg in - */* | *\\*) . $arg ;; - *) . ./$arg ;; - esac - - if test -z "$pic_object" || \ - test -z "$non_pic_object" || - test "$pic_object" = none && \ - test "$non_pic_object" = none; then - $echo "$modename: cannot find name of object for \`$arg'" 1>&2 - exit $EXIT_FAILURE - fi - - # Extract subdirectory from the argument. - xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` - if test "X$xdir" = "X$arg"; then - xdir= - else - xdir="$xdir/" - fi - - if test "$pic_object" != none; then - # Prepend the subdirectory the object is found in. - pic_object="$xdir$pic_object" - - if test "$prev" = dlfiles; then - if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then - dlfiles="$dlfiles $pic_object" - prev= - continue - else - # If libtool objects are unsupported, then we need to preload. - prev=dlprefiles - fi - fi - - # CHECK ME: I think I busted this. -Ossama - if test "$prev" = dlprefiles; then - # Preload the old-style object. - dlprefiles="$dlprefiles $pic_object" - prev= - fi - - # A PIC object. - libobjs="$libobjs $pic_object" - arg="$pic_object" - fi - - # Non-PIC object. - if test "$non_pic_object" != none; then - # Prepend the subdirectory the object is found in. - non_pic_object="$xdir$non_pic_object" - - # A standard non-PIC object - non_pic_objects="$non_pic_objects $non_pic_object" - if test -z "$pic_object" || test "$pic_object" = none ; then - arg="$non_pic_object" - fi - else - # If the PIC object exists, use it instead. - # $xdir was prepended to $pic_object above. - non_pic_object="$pic_object" - non_pic_objects="$non_pic_objects $non_pic_object" - fi - else - # Only an error if not doing a dry-run. - if test -z "$run"; then - $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 - exit $EXIT_FAILURE - else - # Dry-run case. - - # Extract subdirectory from the argument. - xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` - if test "X$xdir" = "X$arg"; then - xdir= - else - xdir="$xdir/" - fi - - pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` - non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` - libobjs="$libobjs $pic_object" - non_pic_objects="$non_pic_objects $non_pic_object" - fi - fi - ;; - - *.$libext) - # An archive. - deplibs="$deplibs $arg" - old_deplibs="$old_deplibs $arg" - continue - ;; - - *.la) - # A libtool-controlled library. - - if test "$prev" = dlfiles; then - # This library was specified with -dlopen. - dlfiles="$dlfiles $arg" - prev= - elif test "$prev" = dlprefiles; then - # The library was specified with -dlpreopen. - dlprefiles="$dlprefiles $arg" - prev= - else - deplibs="$deplibs $arg" - fi - continue - ;; - - # Some other compiler argument. - *) - # Unknown arguments in both finalize_command and compile_command need - # to be aesthetically quoted because they are evaled later. - arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - ;; - esac # arg - - # Now actually substitute the argument into the commands. - if test -n "$arg"; then - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" - fi - done # argument parsing loop - - if test -n "$prev"; then - $echo "$modename: the \`$prevarg' option requires an argument" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then - eval arg=\"$export_dynamic_flag_spec\" - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" - fi - - oldlibs= - # calculate the name of the file, without its directory - outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'` - libobjs_save="$libobjs" - - if test -n "$shlibpath_var"; then - # get the directories listed in $shlibpath_var - eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` - else - shlib_search_path= - fi - eval sys_lib_search_path=\"$sys_lib_search_path_spec\" - eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" - - output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` - if test "X$output_objdir" = "X$output"; then - output_objdir="$objdir" - else - output_objdir="$output_objdir/$objdir" - fi - # Create the object directory. - if test ! -d "$output_objdir"; then - $show "$mkdir $output_objdir" - $run $mkdir $output_objdir - exit_status=$? - if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then - exit $exit_status - fi - fi - - # Determine the type of output - case $output in - "") - $echo "$modename: you must specify an output file" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - ;; - *.$libext) linkmode=oldlib ;; - *.lo | *.$objext) linkmode=obj ;; - *.la) linkmode=lib ;; - *) linkmode=prog ;; # Anything else should be a program. - esac - - case $host in - *cygwin* | *mingw* | *pw32*) - # don't eliminate duplications in $postdeps and $predeps - duplicate_compiler_generated_deps=yes - ;; - *) - duplicate_compiler_generated_deps=$duplicate_deps - ;; - esac - specialdeplibs= - - libs= - # Find all interdependent deplibs by searching for libraries - # that are linked more than once (e.g. -la -lb -la) - for deplib in $deplibs; do - if test "X$duplicate_deps" = "Xyes" ; then - case "$libs " in - *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; - esac - fi - libs="$libs $deplib" - done - - if test "$linkmode" = lib; then - libs="$predeps $libs $compiler_lib_search_path $postdeps" - - # Compute libraries that are listed more than once in $predeps - # $postdeps and mark them as special (i.e., whose duplicates are - # not to be eliminated). - pre_post_deps= - if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then - for pre_post_dep in $predeps $postdeps; do - case "$pre_post_deps " in - *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;; - esac - pre_post_deps="$pre_post_deps $pre_post_dep" - done - fi - pre_post_deps= - fi - - deplibs= - newdependency_libs= - newlib_search_path= - need_relink=no # whether we're linking any uninstalled libtool libraries - notinst_deplibs= # not-installed libtool libraries - case $linkmode in - lib) - passes="conv link" - for file in $dlfiles $dlprefiles; do - case $file in - *.la) ;; - *) - $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2 - exit $EXIT_FAILURE - ;; - esac - done - ;; - prog) - compile_deplibs= - finalize_deplibs= - alldeplibs=no - newdlfiles= - newdlprefiles= - passes="conv scan dlopen dlpreopen link" - ;; - *) passes="conv" - ;; - esac - for pass in $passes; do - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan"; then - libs="$deplibs" - deplibs= - fi - if test "$linkmode" = prog; then - case $pass in - dlopen) libs="$dlfiles" ;; - dlpreopen) libs="$dlprefiles" ;; - link) - libs="$deplibs %DEPLIBS%" - test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" - ;; - esac - fi - if test "$pass" = dlopen; then - # Collect dlpreopened libraries - save_deplibs="$deplibs" - deplibs= - fi - for deplib in $libs; do - lib= - found=no - case $deplib in - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - compiler_flags="$compiler_flags $deplib" - fi - continue - ;; - -l*) - if test "$linkmode" != lib && test "$linkmode" != prog; then - $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2 - continue - fi - name=`$echo "X$deplib" | $Xsed -e 's/^-l//'` - if test "$linkmode" = lib; then - searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" - else - searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" - fi - for searchdir in $searchdirs; do - for search_ext in .la $std_shrext .so .a; do - # Search the libtool library - lib="$searchdir/lib${name}${search_ext}" - if test -f "$lib"; then - if test "$search_ext" = ".la"; then - found=yes - else - found=no - fi - break 2 - fi - done - done - if test "$found" != yes; then - # deplib doesn't seem to be a libtool library - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" - fi - continue - else # deplib is a libtool library - # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, - # We need to do some special things here, and not later. - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then - case " $predeps $postdeps " in - *" $deplib "*) - if (${SED} -e '2q' $lib | - grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - library_names= - old_library= - case $lib in - */* | *\\*) . $lib ;; - *) . ./$lib ;; - esac - for l in $old_library $library_names; do - ll="$l" - done - if test "X$ll" = "X$old_library" ; then # only static version available - found=no - ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` - test "X$ladir" = "X$lib" && ladir="." - lib=$ladir/$old_library - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - deplibs="$deplib $deplibs" - test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" - fi - continue - fi - fi - ;; - *) ;; - esac - fi - fi - ;; # -l - -L*) - case $linkmode in - lib) - deplibs="$deplib $deplibs" - test "$pass" = conv && continue - newdependency_libs="$deplib $newdependency_libs" - newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` - ;; - prog) - if test "$pass" = conv; then - deplibs="$deplib $deplibs" - continue - fi - if test "$pass" = scan; then - deplibs="$deplib $deplibs" - else - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - fi - newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` - ;; - *) - $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2 - ;; - esac # linkmode - continue - ;; # -L - -R*) - if test "$pass" = link; then - dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'` - # Make sure the xrpath contains only unique directories. - case "$xrpath " in - *" $dir "*) ;; - *) xrpath="$xrpath $dir" ;; - esac - fi - deplibs="$deplib $deplibs" - continue - ;; - *.la) lib="$deplib" ;; - *.$libext) - if test "$pass" = conv; then - deplibs="$deplib $deplibs" - continue - fi - case $linkmode in - lib) - valid_a_lib=no - case $deplibs_check_method in - match_pattern*) - set dummy $deplibs_check_method - match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` - if eval $echo \"$deplib\" 2>/dev/null \ - | $SED 10q \ - | $EGREP "$match_pattern_regex" > /dev/null; then - valid_a_lib=yes - fi - ;; - pass_all) - valid_a_lib=yes - ;; - esac - if test "$valid_a_lib" != yes; then - $echo - $echo "*** Warning: Trying to link with static lib archive $deplib." - $echo "*** I have the capability to make that library automatically link in when" - $echo "*** you link to this library. But I can only do this if you have a" - $echo "*** shared version of the library, which you do not appear to have" - $echo "*** because the file extensions .$libext of this argument makes me believe" - $echo "*** that it is just a static archive that I should not used here." - else - $echo - $echo "*** Warning: Linking the shared library $output against the" - $echo "*** static library $deplib is not portable!" - deplibs="$deplib $deplibs" - fi - continue - ;; - prog) - if test "$pass" != link; then - deplibs="$deplib $deplibs" - else - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - fi - continue - ;; - esac # linkmode - ;; # *.$libext - *.lo | *.$objext) - if test "$pass" = conv; then - deplibs="$deplib $deplibs" - elif test "$linkmode" = prog; then - if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then - # If there is no dlopen support or we're linking statically, - # we need to preload. - newdlprefiles="$newdlprefiles $deplib" - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" - else - newdlfiles="$newdlfiles $deplib" - fi - fi - continue - ;; - %DEPLIBS%) - alldeplibs=yes - continue - ;; - esac # case $deplib - if test "$found" = yes || test -f "$lib"; then : - else - $echo "$modename: cannot find the library \`$lib' or unhandled argument \`$deplib'" 1>&2 - exit $EXIT_FAILURE - fi - - # Check to see that this really is a libtool archive. - if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : - else - $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 - exit $EXIT_FAILURE - fi - - ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` - test "X$ladir" = "X$lib" && ladir="." - - dlname= - dlopen= - dlpreopen= - libdir= - library_names= - old_library= - # If the library was installed with an old release of libtool, - # it will not redefine variables installed, or shouldnotlink - installed=yes - shouldnotlink=no - avoidtemprpath= - - - # Read the .la file - case $lib in - */* | *\\*) . $lib ;; - *) . ./$lib ;; - esac - - if test "$linkmode,$pass" = "lib,link" || - test "$linkmode,$pass" = "prog,scan" || - { test "$linkmode" != prog && test "$linkmode" != lib; }; then - test -n "$dlopen" && dlfiles="$dlfiles $dlopen" - test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen" - fi - - if test "$pass" = conv; then - # Only check for convenience libraries - deplibs="$lib $deplibs" - if test -z "$libdir"; then - if test -z "$old_library"; then - $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 - exit $EXIT_FAILURE - fi - # It is a libtool convenience library, so add in its objects. - convenience="$convenience $ladir/$objdir/$old_library" - old_convenience="$old_convenience $ladir/$objdir/$old_library" - tmp_libs= - for deplib in $dependency_libs; do - deplibs="$deplib $deplibs" - if test "X$duplicate_deps" = "Xyes" ; then - case "$tmp_libs " in - *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; - esac - fi - tmp_libs="$tmp_libs $deplib" - done - elif test "$linkmode" != prog && test "$linkmode" != lib; then - $echo "$modename: \`$lib' is not a convenience library" 1>&2 - exit $EXIT_FAILURE - fi - continue - fi # $pass = conv - - - # Get the name of the library we link against. - linklib= - for l in $old_library $library_names; do - linklib="$l" - done - if test -z "$linklib"; then - $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 - exit $EXIT_FAILURE - fi - - # This library was specified with -dlopen. - if test "$pass" = dlopen; then - if test -z "$libdir"; then - $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2 - exit $EXIT_FAILURE - fi - if test -z "$dlname" || - test "$dlopen_support" != yes || - test "$build_libtool_libs" = no; then - # If there is no dlname, no dlopen support or we're linking - # statically, we need to preload. We also need to preload any - # dependent libraries so libltdl's deplib preloader doesn't - # bomb out in the load deplibs phase. - dlprefiles="$dlprefiles $lib $dependency_libs" - else - newdlfiles="$newdlfiles $lib" - fi - continue - fi # $pass = dlopen - - # We need an absolute path. - case $ladir in - [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; - *) - abs_ladir=`cd "$ladir" && pwd` - if test -z "$abs_ladir"; then - $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2 - $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 - abs_ladir="$ladir" - fi - ;; - esac - laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` - - # Find the relevant object directory and library name. - if test "X$installed" = Xyes; then - if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then - $echo "$modename: warning: library \`$lib' was moved." 1>&2 - dir="$ladir" - absdir="$abs_ladir" - libdir="$abs_ladir" - else - dir="$libdir" - absdir="$libdir" - fi - test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes - else - if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then - dir="$ladir" - absdir="$abs_ladir" - # Remove this search path later - notinst_path="$notinst_path $abs_ladir" - else - dir="$ladir/$objdir" - absdir="$abs_ladir/$objdir" - # Remove this search path later - notinst_path="$notinst_path $abs_ladir" - fi - fi # $installed = yes - name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` - - # This library was specified with -dlpreopen. - if test "$pass" = dlpreopen; then - if test -z "$libdir"; then - $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2 - exit $EXIT_FAILURE - fi - # Prefer using a static library (so that no silly _DYNAMIC symbols - # are required to link). - if test -n "$old_library"; then - newdlprefiles="$newdlprefiles $dir/$old_library" - # Otherwise, use the dlname, so that lt_dlopen finds it. - elif test -n "$dlname"; then - newdlprefiles="$newdlprefiles $dir/$dlname" - else - newdlprefiles="$newdlprefiles $dir/$linklib" - fi - fi # $pass = dlpreopen - - if test -z "$libdir"; then - # Link the convenience library - if test "$linkmode" = lib; then - deplibs="$dir/$old_library $deplibs" - elif test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$dir/$old_library $compile_deplibs" - finalize_deplibs="$dir/$old_library $finalize_deplibs" - else - deplibs="$lib $deplibs" # used for prog,scan pass - fi - continue - fi - - - if test "$linkmode" = prog && test "$pass" != link; then - newlib_search_path="$newlib_search_path $ladir" - deplibs="$lib $deplibs" - - linkalldeplibs=no - if test "$link_all_deplibs" != no || test -z "$library_names" || - test "$build_libtool_libs" = no; then - linkalldeplibs=yes - fi - - tmp_libs= - for deplib in $dependency_libs; do - case $deplib in - -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test - esac - # Need to link against all dependency_libs? - if test "$linkalldeplibs" = yes; then - deplibs="$deplib $deplibs" - else - # Need to hardcode shared library paths - # or/and link against static libraries - newdependency_libs="$deplib $newdependency_libs" - fi - if test "X$duplicate_deps" = "Xyes" ; then - case "$tmp_libs " in - *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; - esac - fi - tmp_libs="$tmp_libs $deplib" - done # for deplib - continue - fi # $linkmode = prog... - - if test "$linkmode,$pass" = "prog,link"; then - if test -n "$library_names" && - { { test "$prefer_static_libs" = no || - test "$prefer_static_libs,$installed" = "built,yes"; } || - test -z "$old_library"; }; then - # We need to hardcode the library path - if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then - # Make sure the rpath contains only unique directories. - case "$temp_rpath " in - *" $dir "*) ;; - *" $absdir "*) ;; - *) temp_rpath="$temp_rpath $absdir" ;; - esac - fi - - # Hardcode the library path. - # Skip directories that are in the system default run-time - # search path. - case " $sys_lib_dlsearch_path " in - *" $absdir "*) ;; - *) - case "$compile_rpath " in - *" $absdir "*) ;; - *) compile_rpath="$compile_rpath $absdir" - esac - ;; - esac - case " $sys_lib_dlsearch_path " in - *" $libdir "*) ;; - *) - case "$finalize_rpath " in - *" $libdir "*) ;; - *) finalize_rpath="$finalize_rpath $libdir" - esac - ;; - esac - fi # $linkmode,$pass = prog,link... - - if test "$alldeplibs" = yes && - { test "$deplibs_check_method" = pass_all || - { test "$build_libtool_libs" = yes && - test -n "$library_names"; }; }; then - # We only need to search for static libraries - continue - fi - fi - - link_static=no # Whether the deplib will be linked statically - use_static_libs=$prefer_static_libs - if test "$use_static_libs" = built && test "$installed" = yes ; then - use_static_libs=no - fi - if test -n "$library_names" && - { test "$use_static_libs" = no || test -z "$old_library"; }; then - if test "$installed" = no; then - notinst_deplibs="$notinst_deplibs $lib" - need_relink=yes - fi - # This is a shared library - - # Warn about portability, can't link against -module's on - # some systems (darwin) - if test "$shouldnotlink" = yes && test "$pass" = link ; then - $echo - if test "$linkmode" = prog; then - $echo "*** Warning: Linking the executable $output against the loadable module" - else - $echo "*** Warning: Linking the shared library $output against the loadable module" - fi - $echo "*** $linklib is not portable!" - fi - if test "$linkmode" = lib && - test "$hardcode_into_libs" = yes; then - # Hardcode the library path. - # Skip directories that are in the system default run-time - # search path. - case " $sys_lib_dlsearch_path " in - *" $absdir "*) ;; - *) - case "$compile_rpath " in - *" $absdir "*) ;; - *) compile_rpath="$compile_rpath $absdir" - esac - ;; - esac - case " $sys_lib_dlsearch_path " in - *" $libdir "*) ;; - *) - case "$finalize_rpath " in - *" $libdir "*) ;; - *) finalize_rpath="$finalize_rpath $libdir" - esac - ;; - esac - fi - - if test -n "$old_archive_from_expsyms_cmds"; then - # figure out the soname - set dummy $library_names - realname="$2" - shift; shift - libname=`eval \\$echo \"$libname_spec\"` - # use dlname if we got it. it's perfectly good, no? - if test -n "$dlname"; then - soname="$dlname" - elif test -n "$soname_spec"; then - # bleh windows - case $host in - *cygwin* | mingw*) - major=`expr $current - $age` - versuffix="-$major" - ;; - esac - eval soname=\"$soname_spec\" - else - soname="$realname" - fi - - # Make a new name for the extract_expsyms_cmds to use - soroot="$soname" - soname=`$echo $soroot | ${SED} -e 's/^.*\///'` - newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a" - - # If the library has no export list, then create one now - if test -f "$output_objdir/$soname-def"; then : - else - $show "extracting exported symbol list from \`$soname'" - save_ifs="$IFS"; IFS='~' - cmds=$extract_expsyms_cmds - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" - fi - - # Create $newlib - if test -f "$output_objdir/$newlib"; then :; else - $show "generating import library for \`$soname'" - save_ifs="$IFS"; IFS='~' - cmds=$old_archive_from_expsyms_cmds - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" - fi - # make sure the library variables are pointing to the new library - dir=$output_objdir - linklib=$newlib - fi # test -n "$old_archive_from_expsyms_cmds" - - if test "$linkmode" = prog || test "$mode" != relink; then - add_shlibpath= - add_dir= - add= - lib_linked=yes - case $hardcode_action in - immediate | unsupported) - if test "$hardcode_direct" = no; then - add="$dir/$linklib" - case $host in - *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; - *-*-sysv4*uw2*) add_dir="-L$dir" ;; - *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ - *-*-unixware7*) add_dir="-L$dir" ;; - *-*-darwin* ) - # if the lib is a module then we can not link against - # it, someone is ignoring the new warnings I added - if /usr/bin/file -L $add 2> /dev/null | - $EGREP ": [^:]* bundle" >/dev/null ; then - $echo "** Warning, lib $linklib is a module, not a shared library" - if test -z "$old_library" ; then - $echo - $echo "** And there doesn't seem to be a static archive available" - $echo "** The link will probably fail, sorry" - else - add="$dir/$old_library" - fi - fi - esac - elif test "$hardcode_minus_L" = no; then - case $host in - *-*-sunos*) add_shlibpath="$dir" ;; - esac - add_dir="-L$dir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = no; then - add_shlibpath="$dir" - add="-l$name" - else - lib_linked=no - fi - ;; - relink) - if test "$hardcode_direct" = yes; then - add="$dir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$dir" - # Try looking first in the location we're being installed to. - if test -n "$inst_prefix_dir"; then - case $libdir in - [\\/]*) - add_dir="$add_dir -L$inst_prefix_dir$libdir" - ;; - esac - fi - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then - add_shlibpath="$dir" - add="-l$name" - else - lib_linked=no - fi - ;; - *) lib_linked=no ;; - esac - - if test "$lib_linked" != yes; then - $echo "$modename: configuration error: unsupported hardcode properties" - exit $EXIT_FAILURE - fi - - if test -n "$add_shlibpath"; then - case :$compile_shlibpath: in - *":$add_shlibpath:"*) ;; - *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;; - esac - fi - if test "$linkmode" = prog; then - test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" - test -n "$add" && compile_deplibs="$add $compile_deplibs" - else - test -n "$add_dir" && deplibs="$add_dir $deplibs" - test -n "$add" && deplibs="$add $deplibs" - if test "$hardcode_direct" != yes && \ - test "$hardcode_minus_L" != yes && \ - test "$hardcode_shlibpath_var" = yes; then - case :$finalize_shlibpath: in - *":$libdir:"*) ;; - *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; - esac - fi - fi - fi - - if test "$linkmode" = prog || test "$mode" = relink; then - add_shlibpath= - add_dir= - add= - # Finalize command for both is simple: just hardcode it. - if test "$hardcode_direct" = yes; then - add="$libdir/$linklib" - elif test "$hardcode_minus_L" = yes; then - add_dir="-L$libdir" - add="-l$name" - elif test "$hardcode_shlibpath_var" = yes; then - case :$finalize_shlibpath: in - *":$libdir:"*) ;; - *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; - esac - add="-l$name" - elif test "$hardcode_automatic" = yes; then - if test -n "$inst_prefix_dir" && - test -f "$inst_prefix_dir$libdir/$linklib" ; then - add="$inst_prefix_dir$libdir/$linklib" - else - add="$libdir/$linklib" - fi - else - # We cannot seem to hardcode it, guess we'll fake it. - add_dir="-L$libdir" - # Try looking first in the location we're being installed to. - if test -n "$inst_prefix_dir"; then - case $libdir in - [\\/]*) - add_dir="$add_dir -L$inst_prefix_dir$libdir" - ;; - esac - fi - add="-l$name" - fi - - if test "$linkmode" = prog; then - test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" - test -n "$add" && finalize_deplibs="$add $finalize_deplibs" - else - test -n "$add_dir" && deplibs="$add_dir $deplibs" - test -n "$add" && deplibs="$add $deplibs" - fi - fi - elif test "$linkmode" = prog; then - # Here we assume that one of hardcode_direct or hardcode_minus_L - # is not unsupported. This is valid on all known static and - # shared platforms. - if test "$hardcode_direct" != unsupported; then - test -n "$old_library" && linklib="$old_library" - compile_deplibs="$dir/$linklib $compile_deplibs" - finalize_deplibs="$dir/$linklib $finalize_deplibs" - else - compile_deplibs="-l$name -L$dir $compile_deplibs" - finalize_deplibs="-l$name -L$dir $finalize_deplibs" - fi - elif test "$build_libtool_libs" = yes; then - # Not a shared library - if test "$deplibs_check_method" != pass_all; then - # We're trying link a shared library against a static one - # but the system doesn't support it. - - # Just print a warning and add the library to dependency_libs so - # that the program can be linked against the static library. - $echo - $echo "*** Warning: This system can not link to static lib archive $lib." - $echo "*** I have the capability to make that library automatically link in when" - $echo "*** you link to this library. But I can only do this if you have a" - $echo "*** shared version of the library, which you do not appear to have." - if test "$module" = yes; then - $echo "*** But as you try to build a module library, libtool will still create " - $echo "*** a static module, that should work as long as the dlopening application" - $echo "*** is linked with the -dlopen flag to resolve symbols at runtime." - if test -z "$global_symbol_pipe"; then - $echo - $echo "*** However, this would only work if libtool was able to extract symbol" - $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" - $echo "*** not find such a program. So, this module is probably useless." - $echo "*** \`nm' from GNU binutils and a full rebuild may help." - fi - if test "$build_old_libs" = no; then - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - fi - else - deplibs="$dir/$old_library $deplibs" - link_static=yes - fi - fi # link shared/static library? - - if test "$linkmode" = lib; then - if test -n "$dependency_libs" && - { test "$hardcode_into_libs" != yes || - test "$build_old_libs" = yes || - test "$link_static" = yes; }; then - # Extract -R from dependency_libs - temp_deplibs= - for libdir in $dependency_libs; do - case $libdir in - -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'` - case " $xrpath " in - *" $temp_xrpath "*) ;; - *) xrpath="$xrpath $temp_xrpath";; - esac;; - *) temp_deplibs="$temp_deplibs $libdir";; - esac - done - dependency_libs="$temp_deplibs" - fi - - newlib_search_path="$newlib_search_path $absdir" - # Link against this library - test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" - # ... and its dependency_libs - tmp_libs= - for deplib in $dependency_libs; do - newdependency_libs="$deplib $newdependency_libs" - if test "X$duplicate_deps" = "Xyes" ; then - case "$tmp_libs " in - *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; - esac - fi - tmp_libs="$tmp_libs $deplib" - done - - if test "$link_all_deplibs" != no; then - # Add the search paths of all dependency libraries - for deplib in $dependency_libs; do - case $deplib in - -L*) path="$deplib" ;; - *.la) - dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'` - test "X$dir" = "X$deplib" && dir="." - # We need an absolute path. - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; - *) - absdir=`cd "$dir" && pwd` - if test -z "$absdir"; then - $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2 - absdir="$dir" - fi - ;; - esac - if grep "^installed=no" $deplib > /dev/null; then - path="$absdir/$objdir" - else - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` - if test -z "$libdir"; then - $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 - exit $EXIT_FAILURE - fi - if test "$absdir" != "$libdir"; then - $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2 - fi - path="$absdir" - fi - depdepl= - case $host in - *-*-darwin*) - # we do not want to link against static libs, - # but need to link against shared - eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` - eval deplibdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` - if test -n "$deplibrary_names" ; then - for tmp in $deplibrary_names ; do - depdepl=$tmp - done - if test -f "$deplibdir/$depdepl" ; then - depdepl="$deplibdir/$depdepl" - elif test -f "$path/$depdepl" ; then - depdepl="$path/$depdepl" - else - # Can't find it, oh well... - depdepl= - fi - # do not add paths which are already there - case " $newlib_search_path " in - *" $path "*) ;; - *) newlib_search_path="$newlib_search_path $path";; - esac - fi - path="" - ;; - *) - path="-L$path" - ;; - esac - ;; - -l*) - case $host in - *-*-darwin*) - # Again, we only want to link against shared libraries - eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"` - for tmp in $newlib_search_path ; do - if test -f "$tmp/lib$tmp_libs.dylib" ; then - eval depdepl="$tmp/lib$tmp_libs.dylib" - break - fi - done - path="" - ;; - *) continue ;; - esac - ;; - *) continue ;; - esac - case " $deplibs " in - *" $path "*) ;; - *) deplibs="$path $deplibs" ;; - esac - case " $deplibs " in - *" $depdepl "*) ;; - *) deplibs="$depdepl $deplibs" ;; - esac - done - fi # link_all_deplibs != no - fi # linkmode = lib - done # for deplib in $libs - dependency_libs="$newdependency_libs" - if test "$pass" = dlpreopen; then - # Link the dlpreopened libraries before other libraries - for deplib in $save_deplibs; do - deplibs="$deplib $deplibs" - done - fi - if test "$pass" != dlopen; then - if test "$pass" != conv; then - # Make sure lib_search_path contains only unique directories. - lib_search_path= - for dir in $newlib_search_path; do - case "$lib_search_path " in - *" $dir "*) ;; - *) lib_search_path="$lib_search_path $dir" ;; - esac - done - newlib_search_path= - fi - - if test "$linkmode,$pass" != "prog,link"; then - vars="deplibs" - else - vars="compile_deplibs finalize_deplibs" - fi - for var in $vars dependency_libs; do - # Add libraries to $var in reverse order - eval tmp_libs=\"\$$var\" - new_libs= - for deplib in $tmp_libs; do - # FIXME: Pedantically, this is the right thing to do, so - # that some nasty dependency loop isn't accidentally - # broken: - #new_libs="$deplib $new_libs" - # Pragmatically, this seems to cause very few problems in - # practice: - case $deplib in - -L*) new_libs="$deplib $new_libs" ;; - -R*) ;; - *) - # And here is the reason: when a library appears more - # than once as an explicit dependence of a library, or - # is implicitly linked in more than once by the - # compiler, it is considered special, and multiple - # occurrences thereof are not removed. Compare this - # with having the same library being listed as a - # dependency of multiple other libraries: in this case, - # we know (pedantically, we assume) the library does not - # need to be listed more than once, so we keep only the - # last copy. This is not always right, but it is rare - # enough that we require users that really mean to play - # such unportable linking tricks to link the library - # using -Wl,-lname, so that libtool does not consider it - # for duplicate removal. - case " $specialdeplibs " in - *" $deplib "*) new_libs="$deplib $new_libs" ;; - *) - case " $new_libs " in - *" $deplib "*) ;; - *) new_libs="$deplib $new_libs" ;; - esac - ;; - esac - ;; - esac - done - tmp_libs= - for deplib in $new_libs; do - case $deplib in - -L*) - case " $tmp_libs " in - *" $deplib "*) ;; - *) tmp_libs="$tmp_libs $deplib" ;; - esac - ;; - *) tmp_libs="$tmp_libs $deplib" ;; - esac - done - eval $var=\"$tmp_libs\" - done # for var - fi - # Last step: remove runtime libs from dependency_libs - # (they stay in deplibs) - tmp_libs= - for i in $dependency_libs ; do - case " $predeps $postdeps $compiler_lib_search_path " in - *" $i "*) - i="" - ;; - esac - if test -n "$i" ; then - tmp_libs="$tmp_libs $i" - fi - done - dependency_libs=$tmp_libs - done # for pass - if test "$linkmode" = prog; then - dlfiles="$newdlfiles" - dlprefiles="$newdlprefiles" - fi - - case $linkmode in - oldlib) - case " $deplibs" in - *\ -l* | *\ -L*) - $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 ;; - esac - - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2 - fi - - if test -n "$rpath"; then - $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2 - fi - - if test -n "$xrpath"; then - $echo "$modename: warning: \`-R' is ignored for archives" 1>&2 - fi - - if test -n "$vinfo"; then - $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2 - fi - - if test -n "$release"; then - $echo "$modename: warning: \`-release' is ignored for archives" 1>&2 - fi - - if test -n "$export_symbols" || test -n "$export_symbols_regex"; then - $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2 - fi - - # Now set the variables for building old libraries. - build_libtool_libs=no - oldlibs="$output" - objs="$objs$old_deplibs" - ;; - - lib) - # Make sure we only generate libraries of the form `libNAME.la'. - case $outputname in - lib*) - name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` - eval shared_ext=\"$shrext_cmds\" - eval libname=\"$libname_spec\" - ;; - *) - if test "$module" = no; then - $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - if test "$need_lib_prefix" != no; then - # Add the "lib" prefix for modules if required - name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` - eval shared_ext=\"$shrext_cmds\" - eval libname=\"$libname_spec\" - else - libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` - fi - ;; - esac - - if test -n "$objs"; then - if test "$deplibs_check_method" != pass_all; then - $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1 - exit $EXIT_FAILURE - else - $echo - $echo "*** Warning: Linking the shared library $output against the non-libtool" - $echo "*** objects $objs is not portable!" - libobjs="$libobjs $objs" - fi - fi - - if test "$dlself" != no; then - $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2 - fi - - set dummy $rpath - if test "$#" -gt 2; then - $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2 - fi - install_libdir="$2" - - oldlibs= - if test -z "$rpath"; then - if test "$build_libtool_libs" = yes; then - # Building a libtool convenience library. - # Some compilers have problems with a `.al' extension so - # convenience libraries should have the same extension an - # archive normally would. - oldlibs="$output_objdir/$libname.$libext $oldlibs" - build_libtool_libs=convenience - build_old_libs=yes - fi - - if test -n "$vinfo"; then - $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2 - fi - - if test -n "$release"; then - $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2 - fi - else - - # Parse the version information argument. - save_ifs="$IFS"; IFS=':' - set dummy $vinfo 0 0 0 - IFS="$save_ifs" - - if test -n "$8"; then - $echo "$modename: too many parameters to \`-version-info'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # convert absolute version numbers to libtool ages - # this retains compatibility with .la files and attempts - # to make the code below a bit more comprehensible - - case $vinfo_number in - yes) - number_major="$2" - number_minor="$3" - number_revision="$4" - # - # There are really only two kinds -- those that - # use the current revision as the major version - # and those that subtract age and use age as - # a minor version. But, then there is irix - # which has an extra 1 added just for fun - # - case $version_type in - darwin|linux|osf|windows|none) - current=`expr $number_major + $number_minor` - age="$number_minor" - revision="$number_revision" - ;; - freebsd-aout|freebsd-elf|sunos) - current="$number_major" - revision="$number_minor" - age="0" - ;; - irix|nonstopux) - current=`expr $number_major + $number_minor` - age="$number_minor" - revision="$number_minor" - lt_irix_increment=no - ;; - *) - $echo "$modename: unknown library version type \`$version_type'" 1>&2 - $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 - exit $EXIT_FAILURE - ;; - esac - ;; - no) - current="$2" - revision="$3" - age="$4" - ;; - esac - - # Check that each of the things are valid numbers. - case $current in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2 - $echo "$modename: \`$vinfo' is not valid version information" 1>&2 - exit $EXIT_FAILURE - ;; - esac - - case $revision in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2 - $echo "$modename: \`$vinfo' is not valid version information" 1>&2 - exit $EXIT_FAILURE - ;; - esac - - case $age in - 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; - *) - $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2 - $echo "$modename: \`$vinfo' is not valid version information" 1>&2 - exit $EXIT_FAILURE - ;; - esac - - if test "$age" -gt "$current"; then - $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2 - $echo "$modename: \`$vinfo' is not valid version information" 1>&2 - exit $EXIT_FAILURE - fi - - # Calculate the version variables. - major= - versuffix= - verstring= - case $version_type in - none) ;; - - darwin) - # Like Linux, but with the current version available in - # verstring for coding it into the library header - major=.`expr $current - $age` - versuffix="$major.$age.$revision" - # Darwin ld doesn't like 0 for these options... - minor_current=`expr $current + 1` - xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" - verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" - ;; - - freebsd-aout) - major=".$current" - versuffix=".$current.$revision"; - ;; - - freebsd-elf) - major=".$current" - versuffix=".$current"; - ;; - - irix | nonstopux) - if test "X$lt_irix_increment" = "Xno"; then - major=`expr $current - $age` - else - major=`expr $current - $age + 1` - fi - case $version_type in - nonstopux) verstring_prefix=nonstopux ;; - *) verstring_prefix=sgi ;; - esac - verstring="$verstring_prefix$major.$revision" - - # Add in all the interfaces that we are compatible with. - loop=$revision - while test "$loop" -ne 0; do - iface=`expr $revision - $loop` - loop=`expr $loop - 1` - verstring="$verstring_prefix$major.$iface:$verstring" - done - - # Before this point, $major must not contain `.'. - major=.$major - versuffix="$major.$revision" - ;; - - linux) - major=.`expr $current - $age` - versuffix="$major.$age.$revision" - ;; - - osf) - major=.`expr $current - $age` - versuffix=".$current.$age.$revision" - verstring="$current.$age.$revision" - - # Add in all the interfaces that we are compatible with. - loop=$age - while test "$loop" -ne 0; do - iface=`expr $current - $loop` - loop=`expr $loop - 1` - verstring="$verstring:${iface}.0" - done - - # Make executables depend on our current version. - verstring="$verstring:${current}.0" - ;; - - sunos) - major=".$current" - versuffix=".$current.$revision" - ;; - - windows) - # Use '-' rather than '.', since we only want one - # extension on DOS 8.3 filesystems. - major=`expr $current - $age` - versuffix="-$major" - ;; - - *) - $echo "$modename: unknown library version type \`$version_type'" 1>&2 - $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 - exit $EXIT_FAILURE - ;; - esac - - # Clear the version info if we defaulted, and they specified a release. - if test -z "$vinfo" && test -n "$release"; then - major= - case $version_type in - darwin) - # we can't check for "0.0" in archive_cmds due to quoting - # problems, so we reset it completely - verstring= - ;; - *) - verstring="0.0" - ;; - esac - if test "$need_version" = no; then - versuffix= - else - versuffix=".0.0" - fi - fi - - # Remove version info from name if versioning should be avoided - if test "$avoid_version" = yes && test "$need_version" = no; then - major= - versuffix= - verstring="" - fi - - # Check to see if the archive will have undefined symbols. - if test "$allow_undefined" = yes; then - if test "$allow_undefined_flag" = unsupported; then - $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2 - build_libtool_libs=no - build_old_libs=yes - fi - else - # Don't allow undefined symbols. - allow_undefined_flag="$no_undefined_flag" - fi - fi - - if test "$mode" != relink; then - # Remove our outputs, but don't remove object files since they - # may have been created when compiling PIC objects. - removelist= - tempremovelist=`$echo "$output_objdir/*"` - for p in $tempremovelist; do - case $p in - *.$objext) - ;; - $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) - if test "X$precious_files_regex" != "X"; then - if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 - then - continue - fi - fi - removelist="$removelist $p" - ;; - *) ;; - esac - done - if test -n "$removelist"; then - $show "${rm}r $removelist" - $run ${rm}r $removelist - fi - fi - - # Now set the variables for building old libraries. - if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then - oldlibs="$oldlibs $output_objdir/$libname.$libext" - - # Transform .lo files to .o files. - oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` - fi - - # Eliminate all temporary directories. - #for path in $notinst_path; do - # lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"` - # deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"` - # dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % %g"` - #done - - if test -n "$xrpath"; then - # If the user specified any rpath flags, then add them. - temp_xrpath= - for libdir in $xrpath; do - temp_xrpath="$temp_xrpath -R$libdir" - case "$finalize_rpath " in - *" $libdir "*) ;; - *) finalize_rpath="$finalize_rpath $libdir" ;; - esac - done - if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then - dependency_libs="$temp_xrpath $dependency_libs" - fi - fi - - # Make sure dlfiles contains only unique files that won't be dlpreopened - old_dlfiles="$dlfiles" - dlfiles= - for lib in $old_dlfiles; do - case " $dlprefiles $dlfiles " in - *" $lib "*) ;; - *) dlfiles="$dlfiles $lib" ;; - esac - done - - # Make sure dlprefiles contains only unique files - old_dlprefiles="$dlprefiles" - dlprefiles= - for lib in $old_dlprefiles; do - case "$dlprefiles " in - *" $lib "*) ;; - *) dlprefiles="$dlprefiles $lib" ;; - esac - done - - if test "$build_libtool_libs" = yes; then - if test -n "$rpath"; then - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*) - # these systems don't actually have a c library (as such)! - ;; - *-*-rhapsody* | *-*-darwin1.[012]) - # Rhapsody C library is in the System framework - deplibs="$deplibs -framework System" - ;; - *-*-netbsd*) - # Don't link with libc until the a.out ld.so is fixed. - ;; - *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) - # Do not include libc due to us having libc/libc_r. - ;; - *-*-sco3.2v5* | *-*-sco5v6*) - # Causes problems with __ctype - ;; - *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) - # Compiler inserts libc in the correct place for threads to work - ;; - *) - # Add libc to deplibs on all other systems if necessary. - if test "$build_libtool_need_lc" = "yes"; then - deplibs="$deplibs -lc" - fi - ;; - esac - fi - - # Transform deplibs into only deplibs that can be linked in shared. - name_save=$name - libname_save=$libname - release_save=$release - versuffix_save=$versuffix - major_save=$major - # I'm not sure if I'm treating the release correctly. I think - # release should show up in the -l (ie -lgmp5) so we don't want to - # add it in twice. Is that correct? - release="" - versuffix="" - major="" - newdeplibs= - droppeddeps=no - case $deplibs_check_method in - pass_all) - # Don't check for shared/static. Everything works. - # This might be a little naive. We might want to check - # whether the library exists or not. But this is on - # osf3 & osf4 and I'm not really sure... Just - # implementing what was already the behavior. - newdeplibs=$deplibs - ;; - test_compile) - # This code stresses the "libraries are programs" paradigm to its - # limits. Maybe even breaks it. We compile a program, linking it - # against the deplibs as a proxy for the library. Then we can check - # whether they linked in statically or dynamically with ldd. - $rm conftest.c - cat > conftest.c </dev/null` - for potent_lib in $potential_libs; do - # Follow soft links. - if ls -lLd "$potent_lib" 2>/dev/null \ - | grep " -> " >/dev/null; then - continue - fi - # The statement above tries to avoid entering an - # endless loop below, in case of cyclic links. - # We might still enter an endless loop, since a link - # loop can be closed while we follow links, - # but so what? - potlib="$potent_lib" - while test -h "$potlib" 2>/dev/null; do - potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` - case $potliblink in - [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; - *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; - esac - done - if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \ - | ${SED} 10q \ - | $EGREP "$file_magic_regex" > /dev/null; then - newdeplibs="$newdeplibs $a_deplib" - a_deplib="" - break 2 - fi - done - done - fi - if test -n "$a_deplib" ; then - droppeddeps=yes - $echo - $echo "*** Warning: linker path does not have real file for library $a_deplib." - $echo "*** I have the capability to make that library automatically link in when" - $echo "*** you link to this library. But I can only do this if you have a" - $echo "*** shared version of the library, which you do not appear to have" - $echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then - $echo "*** with $libname but no candidates were found. (...for file magic test)" - else - $echo "*** with $libname and none of the candidates passed a file format test" - $echo "*** using a file magic. Last file checked: $potlib" - fi - fi - else - # Add a -L argument. - newdeplibs="$newdeplibs $a_deplib" - fi - done # Gone through all deplibs. - ;; - match_pattern*) - set dummy $deplibs_check_method - match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` - for a_deplib in $deplibs; do - name=`expr $a_deplib : '-l\(.*\)'` - # If $name is empty we are operating on a -L argument. - if test -n "$name" && test "$name" != "0"; then - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then - case " $predeps $postdeps " in - *" $a_deplib "*) - newdeplibs="$newdeplibs $a_deplib" - a_deplib="" - ;; - esac - fi - if test -n "$a_deplib" ; then - libname=`eval \\$echo \"$libname_spec\"` - for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do - potential_libs=`ls $i/$libname[.-]* 2>/dev/null` - for potent_lib in $potential_libs; do - potlib="$potent_lib" # see symlink-check above in file_magic test - if eval $echo \"$potent_lib\" 2>/dev/null \ - | ${SED} 10q \ - | $EGREP "$match_pattern_regex" > /dev/null; then - newdeplibs="$newdeplibs $a_deplib" - a_deplib="" - break 2 - fi - done - done - fi - if test -n "$a_deplib" ; then - droppeddeps=yes - $echo - $echo "*** Warning: linker path does not have real file for library $a_deplib." - $echo "*** I have the capability to make that library automatically link in when" - $echo "*** you link to this library. But I can only do this if you have a" - $echo "*** shared version of the library, which you do not appear to have" - $echo "*** because I did check the linker path looking for a file starting" - if test -z "$potlib" ; then - $echo "*** with $libname but no candidates were found. (...for regex pattern test)" - else - $echo "*** with $libname and none of the candidates passed a file format test" - $echo "*** using a regex pattern. Last file checked: $potlib" - fi - fi - else - # Add a -L argument. - newdeplibs="$newdeplibs $a_deplib" - fi - done # Gone through all deplibs. - ;; - none | unknown | *) - newdeplibs="" - tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \ - -e 's/ -[LR][^ ]*//g'` - if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then - for i in $predeps $postdeps ; do - # can't use Xsed below, because $i might contain '/' - tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"` - done - fi - if $echo "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' \ - | grep . >/dev/null; then - $echo - if test "X$deplibs_check_method" = "Xnone"; then - $echo "*** Warning: inter-library dependencies are not supported in this platform." - else - $echo "*** Warning: inter-library dependencies are not known to be supported." - fi - $echo "*** All declared inter-library dependencies are being dropped." - droppeddeps=yes - fi - ;; - esac - versuffix=$versuffix_save - major=$major_save - release=$release_save - libname=$libname_save - name=$name_save - - case $host in - *-*-rhapsody* | *-*-darwin1.[012]) - # On Rhapsody replace the C library is the System framework - newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'` - ;; - esac - - if test "$droppeddeps" = yes; then - if test "$module" = yes; then - $echo - $echo "*** Warning: libtool could not satisfy all declared inter-library" - $echo "*** dependencies of module $libname. Therefore, libtool will create" - $echo "*** a static module, that should work as long as the dlopening" - $echo "*** application is linked with the -dlopen flag." - if test -z "$global_symbol_pipe"; then - $echo - $echo "*** However, this would only work if libtool was able to extract symbol" - $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" - $echo "*** not find such a program. So, this module is probably useless." - $echo "*** \`nm' from GNU binutils and a full rebuild may help." - fi - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - else - $echo "*** The inter-library dependencies that have been dropped here will be" - $echo "*** automatically added whenever a program is linked with this library" - $echo "*** or is declared to -dlopen it." - - if test "$allow_undefined" = no; then - $echo - $echo "*** Since this library must not contain undefined symbols," - $echo "*** because either the platform does not support them or" - $echo "*** it was explicitly requested with -no-undefined," - $echo "*** libtool will only create a static version of it." - if test "$build_old_libs" = no; then - oldlibs="$output_objdir/$libname.$libext" - build_libtool_libs=module - build_old_libs=yes - else - build_libtool_libs=no - fi - fi - fi - fi - # Done checking deplibs! - deplibs=$newdeplibs - fi - - - # move library search paths that coincide with paths to not yet - # installed libraries to the beginning of the library search list - new_libs= - for path in $notinst_path; do - case " $new_libs " in - *" -L$path/$objdir "*) ;; - *) - case " $deplibs " in - *" -L$path/$objdir "*) - new_libs="$new_libs -L$path/$objdir" ;; - esac - ;; - esac - done - for deplib in $deplibs; do - case $deplib in - -L*) - case " $new_libs " in - *" $deplib "*) ;; - *) new_libs="$new_libs $deplib" ;; - esac - ;; - *) new_libs="$new_libs $deplib" ;; - esac - done - deplibs="$new_libs" - - - # All the library-specific variables (install_libdir is set above). - library_names= - old_library= - dlname= - - # Test again, we may have decided not to build it any more - if test "$build_libtool_libs" = yes; then - if test "$hardcode_into_libs" = yes; then - # Hardcode the library paths - hardcode_libdirs= - dep_rpath= - rpath="$finalize_rpath" - test "$mode" != relink && rpath="$compile_rpath$rpath" - for libdir in $rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - dep_rpath="$dep_rpath $flag" - fi - elif test -n "$runpath_var"; then - case "$perm_rpath " in - *" $libdir "*) ;; - *) perm_rpath="$perm_rpath $libdir" ;; - esac - fi - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" - if test -n "$hardcode_libdir_flag_spec_ld"; then - case $archive_cmds in - *\$LD*) eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\" ;; - *) eval dep_rpath=\"$hardcode_libdir_flag_spec\" ;; - esac - else - eval dep_rpath=\"$hardcode_libdir_flag_spec\" - fi - fi - if test -n "$runpath_var" && test -n "$perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $perm_rpath; do - rpath="$rpath$dir:" - done - eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" - fi - test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" - fi - - shlibpath="$finalize_shlibpath" - test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath" - if test -n "$shlibpath"; then - eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" - fi - - # Get the real and link names of the library. - eval shared_ext=\"$shrext_cmds\" - eval library_names=\"$library_names_spec\" - set dummy $library_names - realname="$2" - shift; shift - - if test -n "$soname_spec"; then - eval soname=\"$soname_spec\" - else - soname="$realname" - fi - if test -z "$dlname"; then - dlname=$soname - fi - - lib="$output_objdir/$realname" - linknames= - for link - do - linknames="$linknames $link" - done - - # Use standard objects if they are pic - test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` - - # Prepare the list of exported symbols - if test -z "$export_symbols"; then - if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then - $show "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" - $run $rm $export_symbols - cmds=$export_symbols_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - if len=`expr "X$cmd" : ".*"` && - test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then - $show "$cmd" - $run eval "$cmd" || exit $? - skipped_export=false - else - # The command line is too long to execute in one step. - $show "using reloadable object file for export list..." - skipped_export=: - # Break out early, otherwise skipped_export may be - # set to false by a later but shorter cmd. - break - fi - done - IFS="$save_ifs" - if test -n "$export_symbols_regex"; then - $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"" - $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' - $show "$mv \"${export_symbols}T\" \"$export_symbols\"" - $run eval '$mv "${export_symbols}T" "$export_symbols"' - fi - fi - fi - - if test -n "$export_symbols" && test -n "$include_expsyms"; then - $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"' - fi - - tmp_deplibs= - for test_deplib in $deplibs; do - case " $convenience " in - *" $test_deplib "*) ;; - *) - tmp_deplibs="$tmp_deplibs $test_deplib" - ;; - esac - done - deplibs="$tmp_deplibs" - - if test -n "$convenience"; then - if test -n "$whole_archive_flag_spec"; then - save_libobjs=$libobjs - eval libobjs=\"\$libobjs $whole_archive_flag_spec\" - else - gentop="$output_objdir/${outputname}x" - generated="$generated $gentop" - - func_extract_archives $gentop $convenience - libobjs="$libobjs $func_extract_archives_result" - fi - fi - - if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then - eval flag=\"$thread_safe_flag_spec\" - linker_flags="$linker_flags $flag" - fi - - # Make a backup of the uninstalled library when relinking - if test "$mode" = relink; then - $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $? - fi - - # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then - if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then - eval test_cmds=\"$module_expsym_cmds\" - cmds=$module_expsym_cmds - else - eval test_cmds=\"$module_cmds\" - cmds=$module_cmds - fi - else - if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then - eval test_cmds=\"$archive_expsym_cmds\" - cmds=$archive_expsym_cmds - else - eval test_cmds=\"$archive_cmds\" - cmds=$archive_cmds - fi - fi - - if test "X$skipped_export" != "X:" && - len=`expr "X$test_cmds" : ".*" 2>/dev/null` && - test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then - : - else - # The command line is too long to link in one step, link piecewise. - $echo "creating reloadable object files..." - - # Save the value of $output and $libobjs because we want to - # use them later. If we have whole_archive_flag_spec, we - # want to use save_libobjs as it was before - # whole_archive_flag_spec was expanded, because we can't - # assume the linker understands whole_archive_flag_spec. - # This may have to be revisited, in case too many - # convenience libraries get linked in and end up exceeding - # the spec. - if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then - save_libobjs=$libobjs - fi - save_output=$output - output_la=`$echo "X$output" | $Xsed -e "$basename"` - - # Clear the reloadable object creation command queue and - # initialize k to one. - test_cmds= - concat_cmds= - objlist= - delfiles= - last_robj= - k=1 - output=$output_objdir/$output_la-${k}.$objext - # Loop over the list of objects to be linked. - for obj in $save_libobjs - do - eval test_cmds=\"$reload_cmds $objlist $last_robj\" - if test "X$objlist" = X || - { len=`expr "X$test_cmds" : ".*" 2>/dev/null` && - test "$len" -le "$max_cmd_len"; }; then - objlist="$objlist $obj" - else - # The command $test_cmds is almost too long, add a - # command to the queue. - if test "$k" -eq 1 ; then - # The first file doesn't have a previous command to add. - eval concat_cmds=\"$reload_cmds $objlist $last_robj\" - else - # All subsequent reloadable object files will link in - # the last one created. - eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\" - fi - last_robj=$output_objdir/$output_la-${k}.$objext - k=`expr $k + 1` - output=$output_objdir/$output_la-${k}.$objext - objlist=$obj - len=1 - fi - done - # Handle the remaining objects by creating one last - # reloadable object file. All subsequent reloadable object - # files will link in the last one created. - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\" - - if ${skipped_export-false}; then - $show "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" - $run $rm $export_symbols - libobjs=$output - # Append the command to create the export file. - eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\" - fi - - # Set up a command to remove the reloadable object files - # after they are used. - i=0 - while test "$i" -lt "$k" - do - i=`expr $i + 1` - delfiles="$delfiles $output_objdir/$output_la-${i}.$objext" - done - - $echo "creating a temporary reloadable object file: $output" - - # Loop through the commands generated above and execute them. - save_ifs="$IFS"; IFS='~' - for cmd in $concat_cmds; do - IFS="$save_ifs" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" - - libobjs=$output - # Restore the value of output. - output=$save_output - - if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then - eval libobjs=\"\$libobjs $whole_archive_flag_spec\" - fi - # Expand the library linking commands again to reset the - # value of $libobjs for piecewise linking. - - # Do each of the archive commands. - if test "$module" = yes && test -n "$module_cmds" ; then - if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then - cmds=$module_expsym_cmds - else - cmds=$module_cmds - fi - else - if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then - cmds=$archive_expsym_cmds - else - cmds=$archive_cmds - fi - fi - - # Append the command to remove the reloadable object files - # to the just-reset $cmds. - eval cmds=\"\$cmds~\$rm $delfiles\" - fi - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || { - lt_exit=$? - - # Restore the uninstalled library and exit - if test "$mode" = relink; then - $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' - fi - - exit $lt_exit - } - done - IFS="$save_ifs" - - # Restore the uninstalled library and exit - if test "$mode" = relink; then - $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $? - - if test -n "$convenience"; then - if test -z "$whole_archive_flag_spec"; then - $show "${rm}r $gentop" - $run ${rm}r "$gentop" - fi - fi - - exit $EXIT_SUCCESS - fi - - # Create links to the real library. - for linkname in $linknames; do - if test "$realname" != "$linkname"; then - $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)" - $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $? - fi - done - - # If -module or -export-dynamic was specified, set the dlname. - if test "$module" = yes || test "$export_dynamic" = yes; then - # On all known operating systems, these are identical. - dlname="$soname" - fi - fi - ;; - - obj) - case " $deplibs" in - *\ -l* | *\ -L*) - $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 ;; - esac - - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2 - fi - - if test -n "$rpath"; then - $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2 - fi - - if test -n "$xrpath"; then - $echo "$modename: warning: \`-R' is ignored for objects" 1>&2 - fi - - if test -n "$vinfo"; then - $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2 - fi - - if test -n "$release"; then - $echo "$modename: warning: \`-release' is ignored for objects" 1>&2 - fi - - case $output in - *.lo) - if test -n "$objs$old_deplibs"; then - $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2 - exit $EXIT_FAILURE - fi - libobj="$output" - obj=`$echo "X$output" | $Xsed -e "$lo2o"` - ;; - *) - libobj= - obj="$output" - ;; - esac - - # Delete the old objects. - $run $rm $obj $libobj - - # Objects from convenience libraries. This assumes - # single-version convenience libraries. Whenever we create - # different ones for PIC/non-PIC, this we'll have to duplicate - # the extraction. - reload_conv_objs= - gentop= - # reload_cmds runs $LD directly, so let us get rid of - # -Wl from whole_archive_flag_spec and hope we can get by with - # turning comma into space.. - wl= - - if test -n "$convenience"; then - if test -n "$whole_archive_flag_spec"; then - eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" - reload_conv_objs=$reload_objs\ `$echo "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'` - else - gentop="$output_objdir/${obj}x" - generated="$generated $gentop" - - func_extract_archives $gentop $convenience - reload_conv_objs="$reload_objs $func_extract_archives_result" - fi - fi - - # Create the old-style object. - reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test - - output="$obj" - cmds=$reload_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" - - # Exit if we aren't doing a library object file. - if test -z "$libobj"; then - if test -n "$gentop"; then - $show "${rm}r $gentop" - $run ${rm}r $gentop - fi - - exit $EXIT_SUCCESS - fi - - if test "$build_libtool_libs" != yes; then - if test -n "$gentop"; then - $show "${rm}r $gentop" - $run ${rm}r $gentop - fi - - # Create an invalid libtool object if no PIC, so that we don't - # accidentally link it into a program. - # $show "echo timestamp > $libobj" - # $run eval "echo timestamp > $libobj" || exit $? - exit $EXIT_SUCCESS - fi - - if test -n "$pic_flag" || test "$pic_mode" != default; then - # Only do commands if we really have different PIC objects. - reload_objs="$libobjs $reload_conv_objs" - output="$libobj" - cmds=$reload_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" - fi - - if test -n "$gentop"; then - $show "${rm}r $gentop" - $run ${rm}r $gentop - fi - - exit $EXIT_SUCCESS - ;; - - prog) - case $host in - *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;; - esac - if test -n "$vinfo"; then - $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2 - fi - - if test -n "$release"; then - $echo "$modename: warning: \`-release' is ignored for programs" 1>&2 - fi - - if test "$preload" = yes; then - if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown && - test "$dlopen_self_static" = unknown; then - $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support." - fi - fi - - case $host in - *-*-rhapsody* | *-*-darwin1.[012]) - # On Rhapsody replace the C library is the System framework - compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'` - finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'` - ;; - esac - - case $host in - *darwin*) - # Don't allow lazy linking, it breaks C++ global constructors - if test "$tagname" = CXX ; then - compile_command="$compile_command ${wl}-bind_at_load" - finalize_command="$finalize_command ${wl}-bind_at_load" - fi - ;; - esac - - - # move library search paths that coincide with paths to not yet - # installed libraries to the beginning of the library search list - new_libs= - for path in $notinst_path; do - case " $new_libs " in - *" -L$path/$objdir "*) ;; - *) - case " $compile_deplibs " in - *" -L$path/$objdir "*) - new_libs="$new_libs -L$path/$objdir" ;; - esac - ;; - esac - done - for deplib in $compile_deplibs; do - case $deplib in - -L*) - case " $new_libs " in - *" $deplib "*) ;; - *) new_libs="$new_libs $deplib" ;; - esac - ;; - *) new_libs="$new_libs $deplib" ;; - esac - done - compile_deplibs="$new_libs" - - - compile_command="$compile_command $compile_deplibs" - finalize_command="$finalize_command $finalize_deplibs" - - if test -n "$rpath$xrpath"; then - # If the user specified any rpath flags, then add them. - for libdir in $rpath $xrpath; do - # This is the magic to use -rpath. - case "$finalize_rpath " in - *" $libdir "*) ;; - *) finalize_rpath="$finalize_rpath $libdir" ;; - esac - done - fi - - # Now hardcode the library paths - rpath= - hardcode_libdirs= - for libdir in $compile_rpath $finalize_rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - rpath="$rpath $flag" - fi - elif test -n "$runpath_var"; then - case "$perm_rpath " in - *" $libdir "*) ;; - *) perm_rpath="$perm_rpath $libdir" ;; - esac - fi - case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) - testbindir=`$echo "X$libdir" | $Xsed -e 's*/lib$*/bin*'` - case :$dllsearchpath: in - *":$libdir:"*) ;; - *) dllsearchpath="$dllsearchpath:$libdir";; - esac - case :$dllsearchpath: in - *":$testbindir:"*) ;; - *) dllsearchpath="$dllsearchpath:$testbindir";; - esac - ;; - esac - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" - eval rpath=\" $hardcode_libdir_flag_spec\" - fi - compile_rpath="$rpath" - - rpath= - hardcode_libdirs= - for libdir in $finalize_rpath; do - if test -n "$hardcode_libdir_flag_spec"; then - if test -n "$hardcode_libdir_separator"; then - if test -z "$hardcode_libdirs"; then - hardcode_libdirs="$libdir" - else - # Just accumulate the unique libdirs. - case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in - *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) - ;; - *) - hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" - ;; - esac - fi - else - eval flag=\"$hardcode_libdir_flag_spec\" - rpath="$rpath $flag" - fi - elif test -n "$runpath_var"; then - case "$finalize_perm_rpath " in - *" $libdir "*) ;; - *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;; - esac - fi - done - # Substitute the hardcoded libdirs into the rpath. - if test -n "$hardcode_libdir_separator" && - test -n "$hardcode_libdirs"; then - libdir="$hardcode_libdirs" - eval rpath=\" $hardcode_libdir_flag_spec\" - fi - finalize_rpath="$rpath" - - if test -n "$libobjs" && test "$build_old_libs" = yes; then - # Transform all the library objects into standard objects. - compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` - finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` - fi - - dlsyms= - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - if test -n "$NM" && test -n "$global_symbol_pipe"; then - dlsyms="${outputname}S.c" - else - $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2 - fi - fi - - if test -n "$dlsyms"; then - case $dlsyms in - "") ;; - *.c) - # Discover the nlist of each of the dlfiles. - nlist="$output_objdir/${outputname}.nm" - - $show "$rm $nlist ${nlist}S ${nlist}T" - $run $rm "$nlist" "${nlist}S" "${nlist}T" - - # Parse the name list into a source file. - $show "creating $output_objdir/$dlsyms" - - test -z "$run" && $echo > "$output_objdir/$dlsyms" "\ -/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */ -/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */ - -#ifdef __cplusplus -extern \"C\" { -#endif - -/* Prevent the only kind of declaration conflicts we can make. */ -#define lt_preloaded_symbols some_other_symbol - -/* External symbol declarations for the compiler. */\ -" - - if test "$dlself" = yes; then - $show "generating symbol list for \`$output'" - - test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist" - - # Add our own program objects to the symbol list. - progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` - for arg in $progfiles; do - $show "extracting global C symbols from \`$arg'" - $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" - done - - if test -n "$exclude_expsyms"; then - $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' - $run eval '$mv "$nlist"T "$nlist"' - fi - - if test -n "$export_symbols_regex"; then - $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' - $run eval '$mv "$nlist"T "$nlist"' - fi - - # Prepare the list of exported symbols - if test -z "$export_symbols"; then - export_symbols="$output_objdir/$outputname.exp" - $run $rm $export_symbols - $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' - case $host in - *cygwin* | *mingw* ) - $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' - $run eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' - ;; - esac - else - $run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' - $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' - $run eval 'mv "$nlist"T "$nlist"' - case $host in - *cygwin* | *mingw* ) - $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' - $run eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' - ;; - esac - fi - fi - - for arg in $dlprefiles; do - $show "extracting global C symbols from \`$arg'" - name=`$echo "$arg" | ${SED} -e 's%^.*/%%'` - $run eval '$echo ": $name " >> "$nlist"' - $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" - done - - if test -z "$run"; then - # Make sure we have at least an empty file. - test -f "$nlist" || : > "$nlist" - - if test -n "$exclude_expsyms"; then - $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T - $mv "$nlist"T "$nlist" - fi - - # Try sorting and uniquifying the output. - if grep -v "^: " < "$nlist" | - if sort -k 3 /dev/null 2>&1; then - sort -k 3 - else - sort +2 - fi | - uniq > "$nlist"S; then - : - else - grep -v "^: " < "$nlist" > "$nlist"S - fi - - if test -f "$nlist"S; then - eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"' - else - $echo '/* NONE */' >> "$output_objdir/$dlsyms" - fi - - $echo >> "$output_objdir/$dlsyms" "\ - -#undef lt_preloaded_symbols - -#if defined (__STDC__) && __STDC__ -# define lt_ptr void * -#else -# define lt_ptr char * -# define const -#endif - -/* The mapping between symbol names and symbols. */ -" - - case $host in - *cygwin* | *mingw* ) - $echo >> "$output_objdir/$dlsyms" "\ -/* DATA imports from DLLs on WIN32 can't be const, because - runtime relocations are performed -- see ld's documentation - on pseudo-relocs */ -struct { -" - ;; - * ) - $echo >> "$output_objdir/$dlsyms" "\ -const struct { -" - ;; - esac - - - $echo >> "$output_objdir/$dlsyms" "\ - const char *name; - lt_ptr address; -} -lt_preloaded_symbols[] = -{\ -" - - eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms" - - $echo >> "$output_objdir/$dlsyms" "\ - {0, (lt_ptr) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif\ -" - fi - - pic_flag_for_symtable= - case $host in - # compiling the symbol table file with pic_flag works around - # a FreeBSD bug that causes programs to crash when -lm is - # linked before any other PIC object. But we must not use - # pic_flag when linking with -static. The problem exists in - # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. - *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) - case "$compile_command " in - *" -static "*) ;; - *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";; - esac;; - *-*-hpux*) - case "$compile_command " in - *" -static "*) ;; - *) pic_flag_for_symtable=" $pic_flag";; - esac - esac - - # Now compile the dynamic symbol file. - $show "(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")" - $run eval '(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $? - - # Clean up the generated files. - $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T" - $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T" - - # Transform the symbol file into the correct name. - case $host in - *cygwin* | *mingw* ) - if test -f "$output_objdir/${outputname}.def" ; then - compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` - finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` - else - compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` - finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` - fi - ;; - * ) - compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` - finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` - ;; - esac - ;; - *) - $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2 - exit $EXIT_FAILURE - ;; - esac - else - # We keep going just in case the user didn't refer to - # lt_preloaded_symbols. The linker will fail if global_symbol_pipe - # really was required. - - # Nullify the symbol file. - compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` - finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` - fi - - if test "$need_relink" = no || test "$build_libtool_libs" != yes; then - # Replace the output file specification. - compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$output"'%g' | $NL2SP` - link_command="$compile_command$compile_rpath" - - # We have no uninstalled library dependencies, so finalize right now. - $show "$link_command" - $run eval "$link_command" - exit_status=$? - - # Delete the generated files. - if test -n "$dlsyms"; then - $show "$rm $output_objdir/${outputname}S.${objext}" - $run $rm "$output_objdir/${outputname}S.${objext}" - fi - - exit $exit_status - fi - - if test -n "$shlibpath_var"; then - # We should set the shlibpath_var - rpath= - for dir in $temp_rpath; do - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) - # Absolute path. - rpath="$rpath$dir:" - ;; - *) - # Relative path: add a thisdir entry. - rpath="$rpath\$thisdir/$dir:" - ;; - esac - done - temp_rpath="$rpath" - fi - - if test -n "$compile_shlibpath$finalize_shlibpath"; then - compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" - fi - if test -n "$finalize_shlibpath"; then - finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" - fi - - compile_var= - finalize_var= - if test -n "$runpath_var"; then - if test -n "$perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $perm_rpath; do - rpath="$rpath$dir:" - done - compile_var="$runpath_var=\"$rpath\$$runpath_var\" " - fi - if test -n "$finalize_perm_rpath"; then - # We should set the runpath_var. - rpath= - for dir in $finalize_perm_rpath; do - rpath="$rpath$dir:" - done - finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " - fi - fi - - if test "$no_install" = yes; then - # We don't need to create a wrapper script. - link_command="$compile_var$compile_command$compile_rpath" - # Replace the output file specification. - link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` - # Delete the old output file. - $run $rm $output - # Link the executable and exit - $show "$link_command" - $run eval "$link_command" || exit $? - exit $EXIT_SUCCESS - fi - - if test "$hardcode_action" = relink; then - # Fast installation is not supported - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" - - $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2 - $echo "$modename: \`$output' will be relinked during installation" 1>&2 - else - if test "$fast_install" != no; then - link_command="$finalize_var$compile_command$finalize_rpath" - if test "$fast_install" = yes; then - relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $SP2NL | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g' | $NL2SP` - else - # fast_install is set to needless - relink_command= - fi - else - link_command="$compile_var$compile_command$compile_rpath" - relink_command="$finalize_var$finalize_command$finalize_rpath" - fi - fi - - # Replace the output file specification. - link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` - - # Delete the old output files. - $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname - - $show "$link_command" - $run eval "$link_command" || exit $? - - # Now create the wrapper script. - $show "creating $output" - - # Quote the relink command for shipping. - if test -n "$relink_command"; then - # Preserve any variables that may affect compiler behavior - for var in $variables_saved_for_relink; do - if eval test -z \"\${$var+set}\"; then - relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" - elif eval var_value=\$$var; test -z "$var_value"; then - relink_command="$var=; export $var; $relink_command" - else - var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` - relink_command="$var=\"$var_value\"; export $var; $relink_command" - fi - done - relink_command="(cd `pwd`; $relink_command)" - relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` - fi - - # Quote $echo for shipping. - if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then - case $progpath in - [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";; - *) qecho="$SHELL `pwd`/$progpath --fallback-echo";; - esac - qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"` - else - qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"` - fi - - # Only actually do things if our run command is non-null. - if test -z "$run"; then - # win32 will think the script is a binary if it has - # a .exe suffix, so we strip it off here. - case $output in - *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;; - esac - # test for cygwin because mv fails w/o .exe extensions - case $host in - *cygwin*) - exeext=.exe - outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;; - *) exeext= ;; - esac - case $host in - *cygwin* | *mingw* ) - output_name=`basename $output` - output_path=`dirname $output` - cwrappersource="$output_path/$objdir/lt-$output_name.c" - cwrapper="$output_path/$output_name.exe" - $rm $cwrappersource $cwrapper - trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 - - cat > $cwrappersource <> $cwrappersource<<"EOF" -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#if defined(PATH_MAX) -# define LT_PATHMAX PATH_MAX -#elif defined(MAXPATHLEN) -# define LT_PATHMAX MAXPATHLEN -#else -# define LT_PATHMAX 1024 -#endif - -#ifndef DIR_SEPARATOR -# define DIR_SEPARATOR '/' -# define PATH_SEPARATOR ':' -#endif - -#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ - defined (__OS2__) -# define HAVE_DOS_BASED_FILE_SYSTEM -# ifndef DIR_SEPARATOR_2 -# define DIR_SEPARATOR_2 '\\' -# endif -# ifndef PATH_SEPARATOR_2 -# define PATH_SEPARATOR_2 ';' -# endif -#endif - -#ifndef DIR_SEPARATOR_2 -# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) -#else /* DIR_SEPARATOR_2 */ -# define IS_DIR_SEPARATOR(ch) \ - (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) -#endif /* DIR_SEPARATOR_2 */ - -#ifndef PATH_SEPARATOR_2 -# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) -#else /* PATH_SEPARATOR_2 */ -# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) -#endif /* PATH_SEPARATOR_2 */ - -#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) -#define XFREE(stale) do { \ - if (stale) { free ((void *) stale); stale = 0; } \ -} while (0) - -/* -DDEBUG is fairly common in CFLAGS. */ -#undef DEBUG -#if defined DEBUGWRAPPER -# define DEBUG(format, ...) fprintf(stderr, format, __VA_ARGS__) -#else -# define DEBUG(format, ...) -#endif - -const char *program_name = NULL; - -void * xmalloc (size_t num); -char * xstrdup (const char *string); -const char * base_name (const char *name); -char * find_executable(const char *wrapper); -int check_executable(const char *path); -char * strendzap(char *str, const char *pat); -void lt_fatal (const char *message, ...); - -int -main (int argc, char *argv[]) -{ - char **newargz; - int i; - - program_name = (char *) xstrdup (base_name (argv[0])); - DEBUG("(main) argv[0] : %s\n",argv[0]); - DEBUG("(main) program_name : %s\n",program_name); - newargz = XMALLOC(char *, argc+2); -EOF - - cat >> $cwrappersource <> $cwrappersource <<"EOF" - newargz[1] = find_executable(argv[0]); - if (newargz[1] == NULL) - lt_fatal("Couldn't find %s", argv[0]); - DEBUG("(main) found exe at : %s\n",newargz[1]); - /* we know the script has the same name, without the .exe */ - /* so make sure newargz[1] doesn't end in .exe */ - strendzap(newargz[1],".exe"); - for (i = 1; i < argc; i++) - newargz[i+1] = xstrdup(argv[i]); - newargz[argc+1] = NULL; - - for (i=0; i> $cwrappersource <> $cwrappersource <> $cwrappersource <<"EOF" - return 127; -} - -void * -xmalloc (size_t num) -{ - void * p = (void *) malloc (num); - if (!p) - lt_fatal ("Memory exhausted"); - - return p; -} - -char * -xstrdup (const char *string) -{ - return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL -; -} - -const char * -base_name (const char *name) -{ - const char *base; - -#if defined (HAVE_DOS_BASED_FILE_SYSTEM) - /* Skip over the disk name in MSDOS pathnames. */ - if (isalpha ((unsigned char)name[0]) && name[1] == ':') - name += 2; -#endif - - for (base = name; *name; name++) - if (IS_DIR_SEPARATOR (*name)) - base = name + 1; - return base; -} - -int -check_executable(const char * path) -{ - struct stat st; - - DEBUG("(check_executable) : %s\n", path ? (*path ? path : "EMPTY!") : "NULL!"); - if ((!path) || (!*path)) - return 0; - - if ((stat (path, &st) >= 0) && - ( - /* MinGW & native WIN32 do not support S_IXOTH or S_IXGRP */ -#if defined (S_IXOTH) - ((st.st_mode & S_IXOTH) == S_IXOTH) || -#endif -#if defined (S_IXGRP) - ((st.st_mode & S_IXGRP) == S_IXGRP) || -#endif - ((st.st_mode & S_IXUSR) == S_IXUSR)) - ) - return 1; - else - return 0; -} - -/* Searches for the full path of the wrapper. Returns - newly allocated full path name if found, NULL otherwise */ -char * -find_executable (const char* wrapper) -{ - int has_slash = 0; - const char* p; - const char* p_next; - /* static buffer for getcwd */ - char tmp[LT_PATHMAX + 1]; - int tmp_len; - char* concat_name; - - DEBUG("(find_executable) : %s\n", wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!"); - - if ((wrapper == NULL) || (*wrapper == '\0')) - return NULL; - - /* Absolute path? */ -#if defined (HAVE_DOS_BASED_FILE_SYSTEM) - if (isalpha ((unsigned char)wrapper[0]) && wrapper[1] == ':') - { - concat_name = xstrdup (wrapper); - if (check_executable(concat_name)) - return concat_name; - XFREE(concat_name); - } - else - { -#endif - if (IS_DIR_SEPARATOR (wrapper[0])) - { - concat_name = xstrdup (wrapper); - if (check_executable(concat_name)) - return concat_name; - XFREE(concat_name); - } -#if defined (HAVE_DOS_BASED_FILE_SYSTEM) - } -#endif - - for (p = wrapper; *p; p++) - if (*p == '/') - { - has_slash = 1; - break; - } - if (!has_slash) - { - /* no slashes; search PATH */ - const char* path = getenv ("PATH"); - if (path != NULL) - { - for (p = path; *p; p = p_next) - { - const char* q; - size_t p_len; - for (q = p; *q; q++) - if (IS_PATH_SEPARATOR(*q)) - break; - p_len = q - p; - p_next = (*q == '\0' ? q : q + 1); - if (p_len == 0) - { - /* empty path: current directory */ - if (getcwd (tmp, LT_PATHMAX) == NULL) - lt_fatal ("getcwd failed"); - tmp_len = strlen(tmp); - concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); - memcpy (concat_name, tmp, tmp_len); - concat_name[tmp_len] = '/'; - strcpy (concat_name + tmp_len + 1, wrapper); - } - else - { - concat_name = XMALLOC(char, p_len + 1 + strlen(wrapper) + 1); - memcpy (concat_name, p, p_len); - concat_name[p_len] = '/'; - strcpy (concat_name + p_len + 1, wrapper); - } - if (check_executable(concat_name)) - return concat_name; - XFREE(concat_name); - } - } - /* not found in PATH; assume curdir */ - } - /* Relative path | not found in path: prepend cwd */ - if (getcwd (tmp, LT_PATHMAX) == NULL) - lt_fatal ("getcwd failed"); - tmp_len = strlen(tmp); - concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); - memcpy (concat_name, tmp, tmp_len); - concat_name[tmp_len] = '/'; - strcpy (concat_name + tmp_len + 1, wrapper); - - if (check_executable(concat_name)) - return concat_name; - XFREE(concat_name); - return NULL; -} - -char * -strendzap(char *str, const char *pat) -{ - size_t len, patlen; - - assert(str != NULL); - assert(pat != NULL); - - len = strlen(str); - patlen = strlen(pat); - - if (patlen <= len) - { - str += len - patlen; - if (strcmp(str, pat) == 0) - *str = '\0'; - } - return str; -} - -static void -lt_error_core (int exit_status, const char * mode, - const char * message, va_list ap) -{ - fprintf (stderr, "%s: %s: ", program_name, mode); - vfprintf (stderr, message, ap); - fprintf (stderr, ".\n"); - - if (exit_status >= 0) - exit (exit_status); -} - -void -lt_fatal (const char *message, ...) -{ - va_list ap; - va_start (ap, message); - lt_error_core (EXIT_FAILURE, "FATAL", message, ap); - va_end (ap); -} -EOF - # we should really use a build-platform specific compiler - # here, but OTOH, the wrappers (shell script and this C one) - # are only useful if you want to execute the "real" binary. - # Since the "real" binary is built for $host, then this - # wrapper might as well be built for $host, too. - $run $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource - ;; - esac - $rm $output - trap "$rm $output; exit $EXIT_FAILURE" 1 2 15 - - $echo > $output "\ -#! $SHELL - -# $output - temporary wrapper script for $objdir/$outputname -# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP -# -# The $output program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed='${SED} -e 1s/^X//' -sed_quote_subst='$sed_quote_subst' - -# Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). -if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac -fi -BIN_SH=xpg4; export BIN_SH # for Tru64 -DUALCASE=1; export DUALCASE # for MKS sh - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command=\"$relink_command\" - -# This environment variable determines our operation mode. -if test \"\$libtool_install_magic\" = \"$magic\"; then - # install mode needs the following variable: - notinst_deplibs='$notinst_deplibs' -else - # When we are sourced in execute mode, \$file and \$echo are already set. - if test \"\$libtool_execute_magic\" != \"$magic\"; then - echo=\"$qecho\" - file=\"\$0\" - # Make sure echo works. - if test \"X\$1\" = X--no-reexec; then - # Discard the --no-reexec flag, and continue. - shift - elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then - # Yippee, \$echo works! - : - else - # Restart under the correct shell, and then maybe \$echo will work. - exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} - fi - fi\ -" - $echo >> $output "\ - - # Find the directory that this script lives in. - thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` - test \"x\$thisdir\" = \"x\$file\" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` - while test -n \"\$file\"; do - destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` - - # If there was a directory component, then change thisdir. - if test \"x\$destdir\" != \"x\$file\"; then - case \"\$destdir\" in - [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; - *) thisdir=\"\$thisdir/\$destdir\" ;; - esac - fi - - file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\` - file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` - done - - # Try to get the absolute directory name. - absdir=\`cd \"\$thisdir\" && pwd\` - test -n \"\$absdir\" && thisdir=\"\$absdir\" -" - - if test "$fast_install" = yes; then - $echo >> $output "\ - program=lt-'$outputname'$exeext - progdir=\"\$thisdir/$objdir\" - - if test ! -f \"\$progdir/\$program\" || \\ - { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ - test \"X\$file\" != \"X\$progdir/\$program\"; }; then - - file=\"\$\$-\$program\" - - if test ! -d \"\$progdir\"; then - $mkdir \"\$progdir\" - else - $rm \"\$progdir/\$file\" - fi" - - $echo >> $output "\ - - # relink executable if necessary - if test -n \"\$relink_command\"; then - if relink_command_output=\`eval \$relink_command 2>&1\`; then : - else - $echo \"\$relink_command_output\" >&2 - $rm \"\$progdir/\$file\" - exit $EXIT_FAILURE - fi - fi - - $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || - { $rm \"\$progdir/\$program\"; - $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; } - $rm \"\$progdir/\$file\" - fi" - else - $echo >> $output "\ - program='$outputname' - progdir=\"\$thisdir/$objdir\" -" - fi - - $echo >> $output "\ - - if test -f \"\$progdir/\$program\"; then" - - # Export our shlibpath_var if we have one. - if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then - $echo >> $output "\ - # Add our own library path to $shlibpath_var - $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" - - # Some systems cannot cope with colon-terminated $shlibpath_var - # The second colon is a workaround for a bug in BeOS R4 sed - $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` - - export $shlibpath_var -" - fi - - # fixup the dll searchpath if we need to. - if test -n "$dllsearchpath"; then - $echo >> $output "\ - # Add the dll search path components to the executable PATH - PATH=$dllsearchpath:\$PATH -" - fi - - $echo >> $output "\ - if test \"\$libtool_execute_magic\" != \"$magic\"; then - # Run the actual program with our arguments. -" - case $host in - # Backslashes separate directories on plain windows - *-*-mingw | *-*-os2*) - $echo >> $output "\ - exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} -" - ;; - - *) - $echo >> $output "\ - exec \"\$progdir/\$program\" \${1+\"\$@\"} -" - ;; - esac - $echo >> $output "\ - \$echo \"\$0: cannot exec \$program \$*\" - exit $EXIT_FAILURE - fi - else - # The program doesn't exist. - \$echo \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 - \$echo \"This script is just a wrapper for \$program.\" 1>&2 - $echo \"See the $PACKAGE documentation for more information.\" 1>&2 - exit $EXIT_FAILURE - fi -fi\ -" - chmod +x $output - fi - exit $EXIT_SUCCESS - ;; - esac - - # See if we need to build an old-fashioned archive. - for oldlib in $oldlibs; do - - if test "$build_libtool_libs" = convenience; then - oldobjs="$libobjs_save" - addlibs="$convenience" - build_libtool_libs=no - else - if test "$build_libtool_libs" = module; then - oldobjs="$libobjs_save" - build_libtool_libs=no - else - oldobjs="$old_deplibs $non_pic_objects" - fi - addlibs="$old_convenience" - fi - - if test -n "$addlibs"; then - gentop="$output_objdir/${outputname}x" - generated="$generated $gentop" - - func_extract_archives $gentop $addlibs - oldobjs="$oldobjs $func_extract_archives_result" - fi - - # Do each command in the archive commands. - if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then - cmds=$old_archive_from_new_cmds - else - # POSIX demands no paths to be encoded in archives. We have - # to avoid creating archives with duplicate basenames if we - # might have to extract them afterwards, e.g., when creating a - # static archive out of a convenience library, or when linking - # the entirety of a libtool archive into another (currently - # not supported by libtool). - if (for obj in $oldobjs - do - $echo "X$obj" | $Xsed -e 's%^.*/%%' - done | sort | sort -uc >/dev/null 2>&1); then - : - else - $echo "copying selected object files to avoid basename conflicts..." - - if test -z "$gentop"; then - gentop="$output_objdir/${outputname}x" - generated="$generated $gentop" - - $show "${rm}r $gentop" - $run ${rm}r "$gentop" - $show "$mkdir $gentop" - $run $mkdir "$gentop" - exit_status=$? - if test "$exit_status" -ne 0 && test ! -d "$gentop"; then - exit $exit_status - fi - fi - - save_oldobjs=$oldobjs - oldobjs= - counter=1 - for obj in $save_oldobjs - do - objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` - case " $oldobjs " in - " ") oldobjs=$obj ;; - *[\ /]"$objbase "*) - while :; do - # Make sure we don't pick an alternate name that also - # overlaps. - newobj=lt$counter-$objbase - counter=`expr $counter + 1` - case " $oldobjs " in - *[\ /]"$newobj "*) ;; - *) if test ! -f "$gentop/$newobj"; then break; fi ;; - esac - done - $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" - $run ln "$obj" "$gentop/$newobj" || - $run cp "$obj" "$gentop/$newobj" - oldobjs="$oldobjs $gentop/$newobj" - ;; - *) oldobjs="$oldobjs $obj" ;; - esac - done - fi - - eval cmds=\"$old_archive_cmds\" - - if len=`expr "X$cmds" : ".*"` && - test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then - cmds=$old_archive_cmds - else - # the command line is too long to link in one step, link in parts - $echo "using piecewise archive linking..." - save_RANLIB=$RANLIB - RANLIB=: - objlist= - concat_cmds= - save_oldobjs=$oldobjs - - # Is there a better way of finding the last object in the list? - for obj in $save_oldobjs - do - last_oldobj=$obj - done - for obj in $save_oldobjs - do - oldobjs="$objlist $obj" - objlist="$objlist $obj" - eval test_cmds=\"$old_archive_cmds\" - if len=`expr "X$test_cmds" : ".*" 2>/dev/null` && - test "$len" -le "$max_cmd_len"; then - : - else - # the above command should be used before it gets too long - oldobjs=$objlist - if test "$obj" = "$last_oldobj" ; then - RANLIB=$save_RANLIB - fi - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" - objlist= - fi - done - RANLIB=$save_RANLIB - oldobjs=$objlist - if test "X$oldobjs" = "X" ; then - eval cmds=\"\$concat_cmds\" - else - eval cmds=\"\$concat_cmds~\$old_archive_cmds\" - fi - fi - fi - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - eval cmd=\"$cmd\" - IFS="$save_ifs" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" - done - - if test -n "$generated"; then - $show "${rm}r$generated" - $run ${rm}r$generated - fi - - # Now create the libtool archive. - case $output in - *.la) - old_library= - test "$build_old_libs" = yes && old_library="$libname.$libext" - $show "creating $output" - - # Preserve any variables that may affect compiler behavior - for var in $variables_saved_for_relink; do - if eval test -z \"\${$var+set}\"; then - relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" - elif eval var_value=\$$var; test -z "$var_value"; then - relink_command="$var=; export $var; $relink_command" - else - var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` - relink_command="$var=\"$var_value\"; export $var; $relink_command" - fi - done - # Quote the link command for shipping. - relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" - relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` - if test "$hardcode_automatic" = yes ; then - relink_command= - fi - - - # Only create the output if not a dry run. - if test -z "$run"; then - for installed in no yes; do - if test "$installed" = yes; then - if test -z "$install_libdir"; then - break - fi - output="$output_objdir/$outputname"i - # Replace all uninstalled libtool libraries with the installed ones - newdependency_libs= - for deplib in $dependency_libs; do - case $deplib in - *.la) - name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'` - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` - if test -z "$libdir"; then - $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 - exit $EXIT_FAILURE - fi - newdependency_libs="$newdependency_libs $libdir/$name" - ;; - *) newdependency_libs="$newdependency_libs $deplib" ;; - esac - done - dependency_libs="$newdependency_libs" - newdlfiles= - for lib in $dlfiles; do - name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` - if test -z "$libdir"; then - $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 - exit $EXIT_FAILURE - fi - newdlfiles="$newdlfiles $libdir/$name" - done - dlfiles="$newdlfiles" - newdlprefiles= - for lib in $dlprefiles; do - name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` - if test -z "$libdir"; then - $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 - exit $EXIT_FAILURE - fi - newdlprefiles="$newdlprefiles $libdir/$name" - done - dlprefiles="$newdlprefiles" - else - newdlfiles= - for lib in $dlfiles; do - case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; - *) abs=`pwd`"/$lib" ;; - esac - newdlfiles="$newdlfiles $abs" - done - dlfiles="$newdlfiles" - newdlprefiles= - for lib in $dlprefiles; do - case $lib in - [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; - *) abs=`pwd`"/$lib" ;; - esac - newdlprefiles="$newdlprefiles $abs" - done - dlprefiles="$newdlprefiles" - fi - $rm $output - # place dlname in correct position for cygwin - tdlname=$dlname - case $host,$output,$installed,$module,$dlname in - *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; - esac - $echo > $output "\ -# $outputname - a libtool library file -# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# The name that we can dlopen(3). -dlname='$tdlname' - -# Names of this library. -library_names='$library_names' - -# The name of the static archive. -old_library='$old_library' - -# Libraries that this one depends upon. -dependency_libs='$dependency_libs' - -# Version information for $libname. -current=$current -age=$age -revision=$revision - -# Is this an already installed library? -installed=$installed - -# Should we warn about portability when linking against -modules? -shouldnotlink=$module - -# Files to dlopen/dlpreopen -dlopen='$dlfiles' -dlpreopen='$dlprefiles' - -# Directory that this library needs to be installed in: -libdir='$install_libdir'" - if test "$installed" = no && test "$need_relink" = yes; then - $echo >> $output "\ -relink_command=\"$relink_command\"" - fi - done - fi - - # Do a symbolic link so that the libtool archive can be found in - # LD_LIBRARY_PATH before the program is installed. - $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)" - $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $? - ;; - esac - exit $EXIT_SUCCESS - ;; - - # libtool install mode - install) - modename="$modename: install" - - # There may be an optional sh(1) argument at the beginning of - # install_prog (especially on Windows NT). - if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || - # Allow the use of GNU shtool's install command. - $echo "X$nonopt" | grep shtool > /dev/null; then - # Aesthetically quote it. - arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - install_prog="$arg " - arg="$1" - shift - else - install_prog= - arg=$nonopt - fi - - # The real first argument should be the name of the installation program. - # Aesthetically quote it. - arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - install_prog="$install_prog$arg" - - # We need to accept at least all the BSD install flags. - dest= - files= - opts= - prev= - install_type= - isdir=no - stripme= - for arg - do - if test -n "$dest"; then - files="$files $dest" - dest=$arg - continue - fi - - case $arg in - -d) isdir=yes ;; - -f) - case " $install_prog " in - *[\\\ /]cp\ *) ;; - *) prev=$arg ;; - esac - ;; - -g | -m | -o) prev=$arg ;; - -s) - stripme=" -s" - continue - ;; - -*) - ;; - *) - # If the previous option needed an argument, then skip it. - if test -n "$prev"; then - prev= - else - dest=$arg - continue - fi - ;; - esac - - # Aesthetically quote the argument. - arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - install_prog="$install_prog $arg" - done - - if test -z "$install_prog"; then - $echo "$modename: you must specify an install program" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - if test -n "$prev"; then - $echo "$modename: the \`$prev' option requires an argument" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - if test -z "$files"; then - if test -z "$dest"; then - $echo "$modename: no file or destination specified" 1>&2 - else - $echo "$modename: you must specify a destination" 1>&2 - fi - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Strip any trailing slash from the destination. - dest=`$echo "X$dest" | $Xsed -e 's%/$%%'` - - # Check to see that the destination is a directory. - test -d "$dest" && isdir=yes - if test "$isdir" = yes; then - destdir="$dest" - destname= - else - destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'` - test "X$destdir" = "X$dest" && destdir=. - destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'` - - # Not a directory, so check to see that there is only one file specified. - set dummy $files - if test "$#" -gt 2; then - $echo "$modename: \`$dest' is not a directory" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - fi - case $destdir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - for file in $files; do - case $file in - *.lo) ;; - *) - $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - ;; - esac - done - ;; - esac - - # This variable tells wrapper scripts just to set variables rather - # than running their programs. - libtool_install_magic="$magic" - - staticlibs= - future_libdirs= - current_libdirs= - for file in $files; do - - # Do each installation. - case $file in - *.$libext) - # Do the static libraries later. - staticlibs="$staticlibs $file" - ;; - - *.la) - # Check to see that this really is a libtool archive. - if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : - else - $echo "$modename: \`$file' is not a valid libtool archive" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - library_names= - old_library= - relink_command= - # If there is no directory component, then add one. - case $file in - */* | *\\*) . $file ;; - *) . ./$file ;; - esac - - # Add the libdir to current_libdirs if it is the destination. - if test "X$destdir" = "X$libdir"; then - case "$current_libdirs " in - *" $libdir "*) ;; - *) current_libdirs="$current_libdirs $libdir" ;; - esac - else - # Note the libdir as a future libdir. - case "$future_libdirs " in - *" $libdir "*) ;; - *) future_libdirs="$future_libdirs $libdir" ;; - esac - fi - - dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/ - test "X$dir" = "X$file/" && dir= - dir="$dir$objdir" - - if test -n "$relink_command"; then - # Determine the prefix the user has applied to our future dir. - inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"` - - # Don't allow the user to place us outside of our expected - # location b/c this prevents finding dependent libraries that - # are installed to the same prefix. - # At present, this check doesn't affect windows .dll's that - # are installed into $libdir/../bin (currently, that works fine) - # but it's something to keep an eye on. - if test "$inst_prefix_dir" = "$destdir"; then - $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2 - exit $EXIT_FAILURE - fi - - if test -n "$inst_prefix_dir"; then - # Stick the inst_prefix_dir data into the link command. - relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%" | $NL2SP` - else - relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%%" | $NL2SP` - fi - - $echo "$modename: warning: relinking \`$file'" 1>&2 - $show "$relink_command" - if $run eval "$relink_command"; then : - else - $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 - exit $EXIT_FAILURE - fi - fi - - # See the names of the shared library. - set dummy $library_names - if test -n "$2"; then - realname="$2" - shift - shift - - srcname="$realname" - test -n "$relink_command" && srcname="$realname"T - - # Install the shared library and build the symlinks. - $show "$install_prog $dir/$srcname $destdir/$realname" - $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $? - if test -n "$stripme" && test -n "$striplib"; then - $show "$striplib $destdir/$realname" - $run eval "$striplib $destdir/$realname" || exit $? - fi - - if test "$#" -gt 0; then - # Delete the old symlinks, and create new ones. - # Try `ln -sf' first, because the `ln' binary might depend on - # the symlink we replace! Solaris /bin/ln does not understand -f, - # so we also need to try rm && ln -s. - for linkname - do - if test "$linkname" != "$realname"; then - $show "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" - $run eval "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" - fi - done - fi - - # Do each command in the postinstall commands. - lib="$destdir/$realname" - cmds=$postinstall_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || { - lt_exit=$? - - # Restore the uninstalled library and exit - if test "$mode" = relink; then - $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' - fi - - exit $lt_exit - } - done - IFS="$save_ifs" - fi - - # Install the pseudo-library for information purposes. - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" - ;; - - *.lo) - # Install (i.e. copy) a libtool object. - - # Figure out destination file name, if it wasn't already specified. - if test -n "$destname"; then - destfile="$destdir/$destname" - else - destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - destfile="$destdir/$destfile" - fi - - # Deduce the name of the destination old-style object file. - case $destfile in - *.lo) - staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"` - ;; - *.$objext) - staticdest="$destfile" - destfile= - ;; - *) - $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - ;; - esac - - # Install the libtool object if requested. - if test -n "$destfile"; then - $show "$install_prog $file $destfile" - $run eval "$install_prog $file $destfile" || exit $? - fi - - # Install the old object if enabled. - if test "$build_old_libs" = yes; then - # Deduce the name of the old-style object file. - staticobj=`$echo "X$file" | $Xsed -e "$lo2o"` - - $show "$install_prog $staticobj $staticdest" - $run eval "$install_prog \$staticobj \$staticdest" || exit $? - fi - exit $EXIT_SUCCESS - ;; - - *) - # Figure out destination file name, if it wasn't already specified. - if test -n "$destname"; then - destfile="$destdir/$destname" - else - destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - destfile="$destdir/$destfile" - fi - - # If the file is missing, and there is a .exe on the end, strip it - # because it is most likely a libtool script we actually want to - # install - stripped_ext="" - case $file in - *.exe) - if test ! -f "$file"; then - file=`$echo $file|${SED} 's,.exe$,,'` - stripped_ext=".exe" - fi - ;; - esac - - # Do a test to see if this is really a libtool program. - case $host in - *cygwin*|*mingw*) - wrapper=`$echo $file | ${SED} -e 's,.exe$,,'` - ;; - *) - wrapper=$file - ;; - esac - if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then - notinst_deplibs= - relink_command= - - # Note that it is not necessary on cygwin/mingw to append a dot to - # foo even if both foo and FILE.exe exist: automatic-append-.exe - # behavior happens only for exec(3), not for open(2)! Also, sourcing - # `FILE.' does not work on cygwin managed mounts. - # - # If there is no directory component, then add one. - case $wrapper in - */* | *\\*) . ${wrapper} ;; - *) . ./${wrapper} ;; - esac - - # Check the variables that should have been set. - if test -z "$notinst_deplibs"; then - $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2 - exit $EXIT_FAILURE - fi - - finalize=yes - for lib in $notinst_deplibs; do - # Check to see that each library is installed. - libdir= - if test -f "$lib"; then - # If there is no directory component, then add one. - case $lib in - */* | *\\*) . $lib ;; - *) . ./$lib ;; - esac - fi - libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test - if test -n "$libdir" && test ! -f "$libfile"; then - $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 - finalize=no - fi - done - - relink_command= - # Note that it is not necessary on cygwin/mingw to append a dot to - # foo even if both foo and FILE.exe exist: automatic-append-.exe - # behavior happens only for exec(3), not for open(2)! Also, sourcing - # `FILE.' does not work on cygwin managed mounts. - # - # If there is no directory component, then add one. - case $wrapper in - */* | *\\*) . ${wrapper} ;; - *) . ./${wrapper} ;; - esac - - outputname= - if test "$fast_install" = no && test -n "$relink_command"; then - if test "$finalize" = yes && test -z "$run"; then - tmpdir=`func_mktempdir` - file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'` - outputname="$tmpdir/$file" - # Replace the output file specification. - relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g' | $NL2SP` - - $show "$relink_command" - if $run eval "$relink_command"; then : - else - $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 - ${rm}r "$tmpdir" - continue - fi - file="$outputname" - else - $echo "$modename: warning: cannot relink \`$file'" 1>&2 - fi - else - # Install the binary that we compiled earlier. - file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` - fi - fi - - # remove .exe since cygwin /usr/bin/install will append another - # one anyway - case $install_prog,$host in - */usr/bin/install*,*cygwin*) - case $file:$destfile in - *.exe:*.exe) - # this is ok - ;; - *.exe:*) - destfile=$destfile.exe - ;; - *:*.exe) - destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'` - ;; - esac - ;; - esac - $show "$install_prog$stripme $file $destfile" - $run eval "$install_prog\$stripme \$file \$destfile" || exit $? - test -n "$outputname" && ${rm}r "$tmpdir" - ;; - esac - done - - for file in $staticlibs; do - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - - # Set up the ranlib parameters. - oldlib="$destdir/$name" - - $show "$install_prog $file $oldlib" - $run eval "$install_prog \$file \$oldlib" || exit $? - - if test -n "$stripme" && test -n "$old_striplib"; then - $show "$old_striplib $oldlib" - $run eval "$old_striplib $oldlib" || exit $? - fi - - # Do each command in the postinstall commands. - cmds=$old_postinstall_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" - done - - if test -n "$future_libdirs"; then - $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2 - fi - - if test -n "$current_libdirs"; then - # Maybe just do a dry run. - test -n "$run" && current_libdirs=" -n$current_libdirs" - exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' - else - exit $EXIT_SUCCESS - fi - ;; - - # libtool finish mode - finish) - modename="$modename: finish" - libdirs="$nonopt" - admincmds= - - if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then - for dir - do - libdirs="$libdirs $dir" - done - - for libdir in $libdirs; do - if test -n "$finish_cmds"; then - # Do each command in the finish commands. - cmds=$finish_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || admincmds="$admincmds - $cmd" - done - IFS="$save_ifs" - fi - if test -n "$finish_eval"; then - # Do the single finish_eval. - eval cmds=\"$finish_eval\" - $run eval "$cmds" || admincmds="$admincmds - $cmds" - fi - done - fi - - # Exit here if they wanted silent mode. - test "$show" = : && exit $EXIT_SUCCESS - - $echo "X----------------------------------------------------------------------" | $Xsed - $echo "Libraries have been installed in:" - for libdir in $libdirs; do - $echo " $libdir" - done - $echo - $echo "If you ever happen to want to link against installed libraries" - $echo "in a given directory, LIBDIR, you must either use libtool, and" - $echo "specify the full pathname of the library, or use the \`-LLIBDIR'" - $echo "flag during linking and do at least one of the following:" - if test -n "$shlibpath_var"; then - $echo " - add LIBDIR to the \`$shlibpath_var' environment variable" - $echo " during execution" - fi - if test -n "$runpath_var"; then - $echo " - add LIBDIR to the \`$runpath_var' environment variable" - $echo " during linking" - fi - if test -n "$hardcode_libdir_flag_spec"; then - libdir=LIBDIR - eval flag=\"$hardcode_libdir_flag_spec\" - - $echo " - use the \`$flag' linker flag" - fi - if test -n "$admincmds"; then - $echo " - have your system administrator run these commands:$admincmds" - fi - if test -f /etc/ld.so.conf; then - $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" - fi - $echo - $echo "See any operating system documentation about shared libraries for" - $echo "more information, such as the ld(1) and ld.so(8) manual pages." - $echo "X----------------------------------------------------------------------" | $Xsed - exit $EXIT_SUCCESS - ;; - - # libtool execute mode - execute) - modename="$modename: execute" - - # The first argument is the command name. - cmd="$nonopt" - if test -z "$cmd"; then - $echo "$modename: you must specify a COMMAND" 1>&2 - $echo "$help" - exit $EXIT_FAILURE - fi - - # Handle -dlopen flags immediately. - for file in $execute_dlfiles; do - if test ! -f "$file"; then - $echo "$modename: \`$file' is not a file" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - dir= - case $file in - *.la) - # Check to see that this really is a libtool archive. - if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : - else - $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Read the libtool library. - dlname= - library_names= - - # If there is no directory component, then add one. - case $file in - */* | *\\*) . $file ;; - *) . ./$file ;; - esac - - # Skip this library if it cannot be dlopened. - if test -z "$dlname"; then - # Warn if it was a shared library. - test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'" - continue - fi - - dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` - test "X$dir" = "X$file" && dir=. - - if test -f "$dir/$objdir/$dlname"; then - dir="$dir/$objdir" - else - if test ! -f "$dir/$dlname"; then - $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2 - exit $EXIT_FAILURE - fi - fi - ;; - - *.lo) - # Just add the directory containing the .lo file. - dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` - test "X$dir" = "X$file" && dir=. - ;; - - *) - $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2 - continue - ;; - esac - - # Get the absolute pathname. - absdir=`cd "$dir" && pwd` - test -n "$absdir" && dir="$absdir" - - # Now add the directory to shlibpath_var. - if eval "test -z \"\$$shlibpath_var\""; then - eval "$shlibpath_var=\"\$dir\"" - else - eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" - fi - done - - # This variable tells wrapper scripts just to set shlibpath_var - # rather than running their programs. - libtool_execute_magic="$magic" - - # Check if any of the arguments is a wrapper script. - args= - for file - do - case $file in - -*) ;; - *) - # Do a test to see if this is really a libtool program. - if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - # If there is no directory component, then add one. - case $file in - */* | *\\*) . $file ;; - *) . ./$file ;; - esac - - # Transform arg to wrapped name. - file="$progdir/$program" - fi - ;; - esac - # Quote arguments (to preserve shell metacharacters). - file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"` - args="$args \"$file\"" - done - - if test -z "$run"; then - if test -n "$shlibpath_var"; then - # Export the shlibpath_var. - eval "export $shlibpath_var" - fi - - # Restore saved environment variables - for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES - do - eval "if test \"\${save_$lt_var+set}\" = set; then - $lt_var=\$save_$lt_var; export $lt_var - fi" - done - - # Now prepare to actually exec the command. - exec_cmd="\$cmd$args" - else - # Display what would be done. - if test -n "$shlibpath_var"; then - eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\"" - $echo "export $shlibpath_var" - fi - $echo "$cmd$args" - exit $EXIT_SUCCESS - fi - ;; - - # libtool clean and uninstall mode - clean | uninstall) - modename="$modename: $mode" - rm="$nonopt" - files= - rmforce= - exit_status=0 - - # This variable tells wrapper scripts just to set variables rather - # than running their programs. - libtool_install_magic="$magic" - - for arg - do - case $arg in - -f) rm="$rm $arg"; rmforce=yes ;; - -*) rm="$rm $arg" ;; - *) files="$files $arg" ;; - esac - done - - if test -z "$rm"; then - $echo "$modename: you must specify an RM program" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - rmdirs= - - origobjdir="$objdir" - for file in $files; do - dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` - if test "X$dir" = "X$file"; then - dir=. - objdir="$origobjdir" - else - objdir="$dir/$origobjdir" - fi - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - test "$mode" = uninstall && objdir="$dir" - - # Remember objdir for removal later, being careful to avoid duplicates - if test "$mode" = clean; then - case " $rmdirs " in - *" $objdir "*) ;; - *) rmdirs="$rmdirs $objdir" ;; - esac - fi - - # Don't error if the file doesn't exist and rm -f was used. - if (test -L "$file") >/dev/null 2>&1 \ - || (test -h "$file") >/dev/null 2>&1 \ - || test -f "$file"; then - : - elif test -d "$file"; then - exit_status=1 - continue - elif test "$rmforce" = yes; then - continue - fi - - rmfiles="$file" - - case $name in - *.la) - # Possibly a libtool archive, so verify it. - if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - . $dir/$name - - # Delete the libtool libraries and symlinks. - for n in $library_names; do - rmfiles="$rmfiles $objdir/$n" - done - test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library" - - case "$mode" in - clean) - case " $library_names " in - # " " in the beginning catches empty $dlname - *" $dlname "*) ;; - *) rmfiles="$rmfiles $objdir/$dlname" ;; - esac - test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" - ;; - uninstall) - if test -n "$library_names"; then - # Do each command in the postuninstall commands. - cmds=$postuninstall_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" - if test "$?" -ne 0 && test "$rmforce" != yes; then - exit_status=1 - fi - done - IFS="$save_ifs" - fi - - if test -n "$old_library"; then - # Do each command in the old_postuninstall commands. - cmds=$old_postuninstall_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" - if test "$?" -ne 0 && test "$rmforce" != yes; then - exit_status=1 - fi - done - IFS="$save_ifs" - fi - # FIXME: should reinstall the best remaining shared library. - ;; - esac - fi - ;; - - *.lo) - # Possibly a libtool object, so verify it. - if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - - # Read the .lo file - . $dir/$name - - # Add PIC object to the list of files to remove. - if test -n "$pic_object" \ - && test "$pic_object" != none; then - rmfiles="$rmfiles $dir/$pic_object" - fi - - # Add non-PIC object to the list of files to remove. - if test -n "$non_pic_object" \ - && test "$non_pic_object" != none; then - rmfiles="$rmfiles $dir/$non_pic_object" - fi - fi - ;; - - *) - if test "$mode" = clean ; then - noexename=$name - case $file in - *.exe) - file=`$echo $file|${SED} 's,.exe$,,'` - noexename=`$echo $name|${SED} 's,.exe$,,'` - # $file with .exe has already been added to rmfiles, - # add $file without .exe - rmfiles="$rmfiles $file" - ;; - esac - # Do a test to see if this is a libtool program. - if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - relink_command= - . $dir/$noexename - - # note $name still contains .exe if it was in $file originally - # as does the version of $file that was added into $rmfiles - rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}" - if test "$fast_install" = yes && test -n "$relink_command"; then - rmfiles="$rmfiles $objdir/lt-$name" - fi - if test "X$noexename" != "X$name" ; then - rmfiles="$rmfiles $objdir/lt-${noexename}.c" - fi - fi - fi - ;; - esac - $show "$rm $rmfiles" - $run $rm $rmfiles || exit_status=1 - done - objdir="$origobjdir" - - # Try to remove the ${objdir}s in the directories where we deleted files - for dir in $rmdirs; do - if test -d "$dir"; then - $show "rmdir $dir" - $run rmdir $dir >/dev/null 2>&1 - fi - done - - exit $exit_status - ;; - - "") - $echo "$modename: you must specify a MODE" 1>&2 - $echo "$generic_help" 1>&2 - exit $EXIT_FAILURE - ;; - esac - - if test -z "$exec_cmd"; then - $echo "$modename: invalid operation mode \`$mode'" 1>&2 - $echo "$generic_help" 1>&2 - exit $EXIT_FAILURE - fi -fi # test -z "$show_help" - -if test -n "$exec_cmd"; then - eval exec $exec_cmd - exit $EXIT_FAILURE -fi - -# We need to display help for each of the modes. -case $mode in -"") $echo \ -"Usage: $modename [OPTION]... [MODE-ARG]... - -Provide generalized library-building support services. - - --config show all configuration variables - --debug enable verbose shell tracing --n, --dry-run display commands without modifying any files - --features display basic configuration information and exit - --finish same as \`--mode=finish' - --help display this help message and exit - --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS] - --quiet same as \`--silent' - --silent don't print informational messages - --tag=TAG use configuration variables from tag TAG - --version print version information - -MODE must be one of the following: - - clean remove files from the build directory - compile compile a source file into a libtool object - execute automatically set library path, then run a program - finish complete the installation of libtool libraries - install install libraries or executables - link create a library or an executable - uninstall remove libraries from an installed directory - -MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for -a more detailed description of MODE. - -Report bugs to ." - exit $EXIT_SUCCESS - ;; - -clean) - $echo \ -"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE... - -Remove files from the build directory. - -RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed -to RM. - -If FILE is a libtool library, object or program, all the files associated -with it are deleted. Otherwise, only FILE itself is deleted using RM." - ;; - -compile) - $echo \ -"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE - -Compile a source file into a libtool library object. - -This mode accepts the following additional options: - - -o OUTPUT-FILE set the output file name to OUTPUT-FILE - -prefer-pic try to building PIC objects only - -prefer-non-pic try to building non-PIC objects only - -static always build a \`.o' file suitable for static linking - -COMPILE-COMMAND is a command to be used in creating a \`standard' object file -from the given SOURCEFILE. - -The output file name is determined by removing the directory component from -SOURCEFILE, then substituting the C source code suffix \`.c' with the -library object suffix, \`.lo'." - ;; - -execute) - $echo \ -"Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]... - -Automatically set library path, then run a program. - -This mode accepts the following additional options: - - -dlopen FILE add the directory containing FILE to the library path - -This mode sets the library path environment variable according to \`-dlopen' -flags. - -If any of the ARGS are libtool executable wrappers, then they are translated -into their corresponding uninstalled binary, and any of their required library -directories are added to the library path. - -Then, COMMAND is executed, with ARGS as arguments." - ;; - -finish) - $echo \ -"Usage: $modename [OPTION]... --mode=finish [LIBDIR]... - -Complete the installation of libtool libraries. - -Each LIBDIR is a directory that contains libtool libraries. - -The commands that this mode executes may require superuser privileges. Use -the \`--dry-run' option if you just want to see what would be executed." - ;; - -install) - $echo \ -"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND... - -Install executables or libraries. - -INSTALL-COMMAND is the installation command. The first component should be -either the \`install' or \`cp' program. - -The rest of the components are interpreted as arguments to that command (only -BSD-compatible install options are recognized)." - ;; - -link) - $echo \ -"Usage: $modename [OPTION]... --mode=link LINK-COMMAND... - -Link object files or libraries together to form another library, or to -create an executable program. - -LINK-COMMAND is a command using the C compiler that you would use to create -a program from several object files. - -The following components of LINK-COMMAND are treated specially: - - -all-static do not do any dynamic linking at all - -avoid-version do not add a version suffix if possible - -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime - -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols - -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) - -export-symbols SYMFILE - try to export only the symbols listed in SYMFILE - -export-symbols-regex REGEX - try to export only the symbols matching REGEX - -LLIBDIR search LIBDIR for required installed libraries - -lNAME OUTPUT-FILE requires the installed library libNAME - -module build a library that can dlopened - -no-fast-install disable the fast-install mode - -no-install link a not-installable executable - -no-undefined declare that a library does not refer to external symbols - -o OUTPUT-FILE create OUTPUT-FILE from the specified objects - -objectlist FILE Use a list of object files found in FILE to specify objects - -precious-files-regex REGEX - don't remove output files matching REGEX - -release RELEASE specify package release information - -rpath LIBDIR the created library will eventually be installed in LIBDIR - -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries - -static do not do any dynamic linking of uninstalled libtool libraries - -static-libtool-libs - do not do any dynamic linking of libtool libraries - -version-info CURRENT[:REVISION[:AGE]] - specify library version info [each variable defaults to 0] - -All other options (arguments beginning with \`-') are ignored. - -Every other argument is treated as a filename. Files ending in \`.la' are -treated as uninstalled libtool libraries, other files are standard or library -object files. - -If the OUTPUT-FILE ends in \`.la', then a libtool library is created, -only library objects (\`.lo' files) may be specified, and \`-rpath' is -required, except when creating a convenience library. - -If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created -using \`ar' and \`ranlib', or on Windows using \`lib'. - -If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file -is created, otherwise an executable program is created." - ;; - -uninstall) - $echo \ -"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... - -Remove libraries from an installation directory. - -RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed -to RM. - -If FILE is a libtool library, all the files associated with it are deleted. -Otherwise, only FILE itself is deleted using RM." - ;; - -*) - $echo "$modename: invalid operation mode \`$mode'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - ;; -esac - -$echo -$echo "Try \`$modename --help' for more information about other modes." - -exit $? - -# The TAGs below are defined such that we never get into a situation -# in which we disable both kinds of libraries. Given conflicting -# choices, we go for a static library, that is the most portable, -# since we can't tell whether shared libraries were disabled because -# the user asked for that or because the platform doesn't support -# them. This is particularly important on AIX, because we don't -# support having both static and shared libraries enabled at the same -# time on that platform, so we default to a shared-only configuration. -# If a disable-shared tag is given, we'll fallback to a static-only -# configuration. But we'll never go from static-only to shared-only. - -# ### BEGIN LIBTOOL TAG CONFIG: disable-shared -disable_libs=shared -# ### END LIBTOOL TAG CONFIG: disable-shared - -# ### BEGIN LIBTOOL TAG CONFIG: disable-static -disable_libs=static -# ### END LIBTOOL TAG CONFIG: disable-static - -# Local Variables: -# mode:shell-script -# sh-indentation:2 -# End: diff --git a/cpp/thirdparty/gtest-1.5.0/build-aux/missing b/cpp/thirdparty/gtest-1.5.0/build-aux/missing deleted file mode 100755 index 1c8ff7049..000000000 --- a/cpp/thirdparty/gtest-1.5.0/build-aux/missing +++ /dev/null @@ -1,367 +0,0 @@ -#! /bin/sh -# Common stub for a few missing GNU programs while installing. - -scriptversion=2006-05-10.23 - -# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 -# Free Software Foundation, Inc. -# Originally by Fran,cois Pinard , 1996. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -if test $# -eq 0; then - echo 1>&2 "Try \`$0 --help' for more information" - exit 1 -fi - -run=: -sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' -sed_minuso='s/.* -o \([^ ]*\).*/\1/p' - -# In the cases where this matters, `missing' is being run in the -# srcdir already. -if test -f configure.ac; then - configure_ac=configure.ac -else - configure_ac=configure.in -fi - -msg="missing on your system" - -case $1 in ---run) - # Try to run requested program, and just exit if it succeeds. - run= - shift - "$@" && exit 0 - # Exit code 63 means version mismatch. This often happens - # when the user try to use an ancient version of a tool on - # a file that requires a minimum version. In this case we - # we should proceed has if the program had been absent, or - # if --run hadn't been passed. - if test $? = 63; then - run=: - msg="probably too old" - fi - ;; - - -h|--h|--he|--hel|--help) - echo "\ -$0 [OPTION]... PROGRAM [ARGUMENT]... - -Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an -error status if there is no known handling for PROGRAM. - -Options: - -h, --help display this help and exit - -v, --version output version information and exit - --run try to run the given command, and emulate it if it fails - -Supported PROGRAM values: - aclocal touch file \`aclocal.m4' - autoconf touch file \`configure' - autoheader touch file \`config.h.in' - autom4te touch the output file, or create a stub one - automake touch all \`Makefile.in' files - bison create \`y.tab.[ch]', if possible, from existing .[ch] - flex create \`lex.yy.c', if possible, from existing .c - help2man touch the output file - lex create \`lex.yy.c', if possible, from existing .c - makeinfo touch the output file - tar try tar, gnutar, gtar, then tar without non-portable flags - yacc create \`y.tab.[ch]', if possible, from existing .[ch] - -Send bug reports to ." - exit $? - ;; - - -v|--v|--ve|--ver|--vers|--versi|--versio|--version) - echo "missing $scriptversion (GNU Automake)" - exit $? - ;; - - -*) - echo 1>&2 "$0: Unknown \`$1' option" - echo 1>&2 "Try \`$0 --help' for more information" - exit 1 - ;; - -esac - -# Now exit if we have it, but it failed. Also exit now if we -# don't have it and --version was passed (most likely to detect -# the program). -case $1 in - lex|yacc) - # Not GNU programs, they don't have --version. - ;; - - tar) - if test -n "$run"; then - echo 1>&2 "ERROR: \`tar' requires --run" - exit 1 - elif test "x$2" = "x--version" || test "x$2" = "x--help"; then - exit 1 - fi - ;; - - *) - if test -z "$run" && ($1 --version) > /dev/null 2>&1; then - # We have it, but it failed. - exit 1 - elif test "x$2" = "x--version" || test "x$2" = "x--help"; then - # Could not run --version or --help. This is probably someone - # running `$TOOL --version' or `$TOOL --help' to check whether - # $TOOL exists and not knowing $TOOL uses missing. - exit 1 - fi - ;; -esac - -# If it does not exist, or fails to run (possibly an outdated version), -# try to emulate it. -case $1 in - aclocal*) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`acinclude.m4' or \`${configure_ac}'. You might want - to install the \`Automake' and \`Perl' packages. Grab them from - any GNU archive site." - touch aclocal.m4 - ;; - - autoconf) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`${configure_ac}'. You might want to install the - \`Autoconf' and \`GNU m4' packages. Grab them from any GNU - archive site." - touch configure - ;; - - autoheader) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`acconfig.h' or \`${configure_ac}'. You might want - to install the \`Autoconf' and \`GNU m4' packages. Grab them - from any GNU archive site." - files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` - test -z "$files" && files="config.h" - touch_files= - for f in $files; do - case $f in - *:*) touch_files="$touch_files "`echo "$f" | - sed -e 's/^[^:]*://' -e 's/:.*//'`;; - *) touch_files="$touch_files $f.in";; - esac - done - touch $touch_files - ;; - - automake*) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. - You might want to install the \`Automake' and \`Perl' packages. - Grab them from any GNU archive site." - find . -type f -name Makefile.am -print | - sed 's/\.am$/.in/' | - while read f; do touch "$f"; done - ;; - - autom4te) - echo 1>&2 "\ -WARNING: \`$1' is needed, but is $msg. - You might have modified some files without having the - proper tools for further handling them. - You can get \`$1' as part of \`Autoconf' from any GNU - archive site." - - file=`echo "$*" | sed -n "$sed_output"` - test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` - if test -f "$file"; then - touch $file - else - test -z "$file" || exec >$file - echo "#! /bin/sh" - echo "# Created by GNU Automake missing as a replacement of" - echo "# $ $@" - echo "exit 0" - chmod +x $file - exit 1 - fi - ;; - - bison|yacc) - echo 1>&2 "\ -WARNING: \`$1' $msg. You should only need it if - you modified a \`.y' file. You may need the \`Bison' package - in order for those modifications to take effect. You can get - \`Bison' from any GNU archive site." - rm -f y.tab.c y.tab.h - if test $# -ne 1; then - eval LASTARG="\${$#}" - case $LASTARG in - *.y) - SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` - if test -f "$SRCFILE"; then - cp "$SRCFILE" y.tab.c - fi - SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` - if test -f "$SRCFILE"; then - cp "$SRCFILE" y.tab.h - fi - ;; - esac - fi - if test ! -f y.tab.h; then - echo >y.tab.h - fi - if test ! -f y.tab.c; then - echo 'main() { return 0; }' >y.tab.c - fi - ;; - - lex|flex) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified a \`.l' file. You may need the \`Flex' package - in order for those modifications to take effect. You can get - \`Flex' from any GNU archive site." - rm -f lex.yy.c - if test $# -ne 1; then - eval LASTARG="\${$#}" - case $LASTARG in - *.l) - SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` - if test -f "$SRCFILE"; then - cp "$SRCFILE" lex.yy.c - fi - ;; - esac - fi - if test ! -f lex.yy.c; then - echo 'main() { return 0; }' >lex.yy.c - fi - ;; - - help2man) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified a dependency of a manual page. You may need the - \`Help2man' package in order for those modifications to take - effect. You can get \`Help2man' from any GNU archive site." - - file=`echo "$*" | sed -n "$sed_output"` - test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` - if test -f "$file"; then - touch $file - else - test -z "$file" || exec >$file - echo ".ab help2man is required to generate this page" - exit 1 - fi - ;; - - makeinfo) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified a \`.texi' or \`.texinfo' file, or any other file - indirectly affecting the aspect of the manual. The spurious - call might also be the consequence of using a buggy \`make' (AIX, - DU, IRIX). You might want to install the \`Texinfo' package or - the \`GNU make' package. Grab either from any GNU archive site." - # The file to touch is that specified with -o ... - file=`echo "$*" | sed -n "$sed_output"` - test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` - if test -z "$file"; then - # ... or it is the one specified with @setfilename ... - infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` - file=`sed -n ' - /^@setfilename/{ - s/.* \([^ ]*\) *$/\1/ - p - q - }' $infile` - # ... or it is derived from the source name (dir/f.texi becomes f.info) - test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info - fi - # If the file does not exist, the user really needs makeinfo; - # let's fail without touching anything. - test -f $file || exit 1 - touch $file - ;; - - tar) - shift - - # We have already tried tar in the generic part. - # Look for gnutar/gtar before invocation to avoid ugly error - # messages. - if (gnutar --version > /dev/null 2>&1); then - gnutar "$@" && exit 0 - fi - if (gtar --version > /dev/null 2>&1); then - gtar "$@" && exit 0 - fi - firstarg="$1" - if shift; then - case $firstarg in - *o*) - firstarg=`echo "$firstarg" | sed s/o//` - tar "$firstarg" "$@" && exit 0 - ;; - esac - case $firstarg in - *h*) - firstarg=`echo "$firstarg" | sed s/h//` - tar "$firstarg" "$@" && exit 0 - ;; - esac - fi - - echo 1>&2 "\ -WARNING: I can't seem to be able to run \`tar' with the given arguments. - You may want to install GNU tar or Free paxutils, or check the - command line arguments." - exit 1 - ;; - - *) - echo 1>&2 "\ -WARNING: \`$1' is needed, and is $msg. - You might have modified some files without having the - proper tools for further handling them. Check the \`README' file, - it often tells you about the needed prerequisites for installing - this package. You may also peek at any GNU archive site, in case - some other package would contain this missing \`$1' program." - exit 1 - ;; -esac - -exit 0 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" -# End: diff --git a/cpp/thirdparty/gtest-1.5.0/codegear/gtest.cbproj b/cpp/thirdparty/gtest-1.5.0/codegear/gtest.cbproj deleted file mode 100644 index 95c3054b8..000000000 --- a/cpp/thirdparty/gtest-1.5.0/codegear/gtest.cbproj +++ /dev/null @@ -1,138 +0,0 @@ - - - - {bca37a72-5b07-46cf-b44e-89f8e06451a2} - Release - - - true - - - true - true - Base - - - true - true - Base - - - true - lib - JPHNE - NO_STRICT - true - true - CppStaticLibrary - true - rtl.bpi;vcl.bpi;bcbie.bpi;vclx.bpi;vclactnband.bpi;xmlrtl.bpi;bcbsmp.bpi;dbrtl.bpi;vcldb.bpi;bdertl.bpi;vcldbx.bpi;dsnap.bpi;dsnapcon.bpi;vclib.bpi;ibxpress.bpi;adortl.bpi;dbxcds.bpi;dbexpress.bpi;DbxCommonDriver.bpi;websnap.bpi;vclie.bpi;webdsnap.bpi;inet.bpi;inetdbbde.bpi;inetdbxpress.bpi;soaprtl.bpi;Rave75VCL.bpi;teeUI.bpi;tee.bpi;teedb.bpi;IndyCore.bpi;IndySystem.bpi;IndyProtocols.bpi;IntrawebDB_90_100.bpi;Intraweb_90_100.bpi;dclZipForged11.bpi;vclZipForged11.bpi;GR32_BDS2006.bpi;GR32_DSGN_BDS2006.bpi;Jcl.bpi;JclVcl.bpi;JvCoreD11R.bpi;JvSystemD11R.bpi;JvStdCtrlsD11R.bpi;JvAppFrmD11R.bpi;JvBandsD11R.bpi;JvDBD11R.bpi;JvDlgsD11R.bpi;JvBDED11R.bpi;JvCmpD11R.bpi;JvCryptD11R.bpi;JvCtrlsD11R.bpi;JvCustomD11R.bpi;JvDockingD11R.bpi;JvDotNetCtrlsD11R.bpi;JvEDID11R.bpi;JvGlobusD11R.bpi;JvHMID11R.bpi;JvInterpreterD11R.bpi;JvJansD11R.bpi;JvManagedThreadsD11R.bpi;JvMMD11R.bpi;JvNetD11R.bpi;JvPageCompsD11R.bpi;JvPluginD11R.bpi;JvPrintPreviewD11R.bpi;JvRuntimeDesignD11R.bpi;JvTimeFrameworkD11R.bpi;JvValidatorsD11R.bpi;JvWizardD11R.bpi;JvXPCtrlsD11R.bpi;VclSmp.bpi;CExceptionExpert11.bpi - false - $(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;.. - rtl.lib;vcl.lib - 32 - $(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk - - - false - false - true - _DEBUG;$(Defines) - true - false - true - None - DEBUG - true - Debug - true - true - true - $(BDS)\lib\debug;$(ILINK_LibraryPath) - Full - true - - - NDEBUG;$(Defines) - Release - $(BDS)\lib\release;$(ILINK_LibraryPath) - None - - - CPlusPlusBuilder.Personality - CppStaticLibrary - -FalseFalse1000FalseFalseFalseFalseFalse103312521.0.0.01.0.0.0FalseFalseFalseTrueFalse - - - CodeGear C++Builder Office 2000 Servers Package - CodeGear C++Builder Office XP Servers Package - FalseTrueTrue3$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\src;..\include1$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk1NO_STRICT13216 - - - - - 3 - - - 4 - - - 5 - - - 6 - - - 7 - - - 8 - - - 0 - - - 1 - - - 2 - - - 9 - - - 10 - - - 11 - - - 12 - - - 14 - - - 13 - - - 15 - - - 16 - - - 17 - - - 18 - - - Cfg_1 - - - Cfg_2 - - - \ No newline at end of file diff --git a/cpp/thirdparty/gtest-1.5.0/codegear/gtest.groupproj b/cpp/thirdparty/gtest-1.5.0/codegear/gtest.groupproj deleted file mode 100644 index faf31cab6..000000000 --- a/cpp/thirdparty/gtest-1.5.0/codegear/gtest.groupproj +++ /dev/null @@ -1,54 +0,0 @@ - - - {c1d923e0-6cba-4332-9b6f-3420acbf5091} - - - - - - - - - Default.Personality - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/cpp/thirdparty/gtest-1.5.0/codegear/gtest_all.cc b/cpp/thirdparty/gtest-1.5.0/codegear/gtest_all.cc deleted file mode 100644 index 121b2d80e..000000000 --- a/cpp/thirdparty/gtest-1.5.0/codegear/gtest_all.cc +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright 2009, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: Josh Kelley (joshkel@gmail.com) -// -// Google C++ Testing Framework (Google Test) -// -// C++Builder's IDE cannot build a static library from files with hyphens -// in their name. See http://qc.codegear.com/wc/qcmain.aspx?d=70977 . -// This file serves as a workaround. - -#include "src/gtest-all.cc" diff --git a/cpp/thirdparty/gtest-1.5.0/codegear/gtest_link.cc b/cpp/thirdparty/gtest-1.5.0/codegear/gtest_link.cc deleted file mode 100644 index 918eccd19..000000000 --- a/cpp/thirdparty/gtest-1.5.0/codegear/gtest_link.cc +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright 2009, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: Josh Kelley (joshkel@gmail.com) -// -// Google C++ Testing Framework (Google Test) -// -// Links gtest.lib and gtest_main.lib into the current project in C++Builder. -// This means that these libraries can't be renamed, but it's the only way to -// ensure that Debug versus Release test builds are linked against the -// appropriate Debug or Release build of the libraries. - -#pragma link "gtest.lib" -#pragma link "gtest_main.lib" diff --git a/cpp/thirdparty/gtest-1.5.0/codegear/gtest_main.cbproj b/cpp/thirdparty/gtest-1.5.0/codegear/gtest_main.cbproj deleted file mode 100644 index d76ce1398..000000000 --- a/cpp/thirdparty/gtest-1.5.0/codegear/gtest_main.cbproj +++ /dev/null @@ -1,82 +0,0 @@ - - - - {bca37a72-5b07-46cf-b44e-89f8e06451a2} - Release - - - true - - - true - true - Base - - - true - true - Base - - - true - lib - JPHNE - NO_STRICT - true - true - CppStaticLibrary - true - rtl.bpi;vcl.bpi;bcbie.bpi;vclx.bpi;vclactnband.bpi;xmlrtl.bpi;bcbsmp.bpi;dbrtl.bpi;vcldb.bpi;bdertl.bpi;vcldbx.bpi;dsnap.bpi;dsnapcon.bpi;vclib.bpi;ibxpress.bpi;adortl.bpi;dbxcds.bpi;dbexpress.bpi;DbxCommonDriver.bpi;websnap.bpi;vclie.bpi;webdsnap.bpi;inet.bpi;inetdbbde.bpi;inetdbxpress.bpi;soaprtl.bpi;Rave75VCL.bpi;teeUI.bpi;tee.bpi;teedb.bpi;IndyCore.bpi;IndySystem.bpi;IndyProtocols.bpi;IntrawebDB_90_100.bpi;Intraweb_90_100.bpi;dclZipForged11.bpi;vclZipForged11.bpi;GR32_BDS2006.bpi;GR32_DSGN_BDS2006.bpi;Jcl.bpi;JclVcl.bpi;JvCoreD11R.bpi;JvSystemD11R.bpi;JvStdCtrlsD11R.bpi;JvAppFrmD11R.bpi;JvBandsD11R.bpi;JvDBD11R.bpi;JvDlgsD11R.bpi;JvBDED11R.bpi;JvCmpD11R.bpi;JvCryptD11R.bpi;JvCtrlsD11R.bpi;JvCustomD11R.bpi;JvDockingD11R.bpi;JvDotNetCtrlsD11R.bpi;JvEDID11R.bpi;JvGlobusD11R.bpi;JvHMID11R.bpi;JvInterpreterD11R.bpi;JvJansD11R.bpi;JvManagedThreadsD11R.bpi;JvMMD11R.bpi;JvNetD11R.bpi;JvPageCompsD11R.bpi;JvPluginD11R.bpi;JvPrintPreviewD11R.bpi;JvRuntimeDesignD11R.bpi;JvTimeFrameworkD11R.bpi;JvValidatorsD11R.bpi;JvWizardD11R.bpi;JvXPCtrlsD11R.bpi;VclSmp.bpi;CExceptionExpert11.bpi - false - $(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;.. - rtl.lib;vcl.lib - 32 - $(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk - - - false - false - true - _DEBUG;$(Defines) - true - false - true - None - DEBUG - true - Debug - true - true - true - $(BDS)\lib\debug;$(ILINK_LibraryPath) - Full - true - - - NDEBUG;$(Defines) - Release - $(BDS)\lib\release;$(ILINK_LibraryPath) - None - - - CPlusPlusBuilder.Personality - CppStaticLibrary - -FalseFalse1000FalseFalseFalseFalseFalse103312521.0.0.01.0.0.0FalseFalseFalseTrueFalse - CodeGear C++Builder Office 2000 Servers Package - CodeGear C++Builder Office XP Servers Package - FalseTrueTrue3$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\src;..\include1$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk1NO_STRICT13216 - - - - - 0 - - - Cfg_1 - - - Cfg_2 - - - diff --git a/cpp/thirdparty/gtest-1.5.0/codegear/gtest_unittest.cbproj b/cpp/thirdparty/gtest-1.5.0/codegear/gtest_unittest.cbproj deleted file mode 100644 index dc5db8e4d..000000000 --- a/cpp/thirdparty/gtest-1.5.0/codegear/gtest_unittest.cbproj +++ /dev/null @@ -1,88 +0,0 @@ - - - - {eea63393-5ac5-4b9c-8909-d75fef2daa41} - Release - - - true - - - true - true - Base - - - true - true - Base - - - exe - true - NO_STRICT - JPHNE - true - ..\test - true - CppConsoleApplication - true - true - rtl.bpi;vcl.bpi;bcbie.bpi;vclx.bpi;vclactnband.bpi;xmlrtl.bpi;bcbsmp.bpi;dbrtl.bpi;vcldb.bpi;bdertl.bpi;vcldbx.bpi;dsnap.bpi;dsnapcon.bpi;vclib.bpi;ibxpress.bpi;adortl.bpi;dbxcds.bpi;dbexpress.bpi;DbxCommonDriver.bpi;websnap.bpi;vclie.bpi;webdsnap.bpi;inet.bpi;inetdbbde.bpi;inetdbxpress.bpi;soaprtl.bpi;Rave75VCL.bpi;teeUI.bpi;tee.bpi;teedb.bpi;IndyCore.bpi;IndySystem.bpi;IndyProtocols.bpi;IntrawebDB_90_100.bpi;Intraweb_90_100.bpi;Jcl.bpi;JclVcl.bpi;JvCoreD11R.bpi;JvSystemD11R.bpi;JvStdCtrlsD11R.bpi;JvAppFrmD11R.bpi;JvBandsD11R.bpi;JvDBD11R.bpi;JvDlgsD11R.bpi;JvBDED11R.bpi;JvCmpD11R.bpi;JvCryptD11R.bpi;JvCtrlsD11R.bpi;JvCustomD11R.bpi;JvDockingD11R.bpi;JvDotNetCtrlsD11R.bpi;JvEDID11R.bpi;JvGlobusD11R.bpi;JvHMID11R.bpi;JvInterpreterD11R.bpi;JvJansD11R.bpi;JvManagedThreadsD11R.bpi;JvMMD11R.bpi;JvNetD11R.bpi;JvPageCompsD11R.bpi;JvPluginD11R.bpi;JvPrintPreviewD11R.bpi;JvRuntimeDesignD11R.bpi;JvTimeFrameworkD11R.bpi;JvValidatorsD11R.bpi;JvWizardD11R.bpi;JvXPCtrlsD11R.bpi;VclSmp.bpi - false - $(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test;.. - $(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test - true - - - false - false - true - _DEBUG;$(Defines) - true - false - true - None - DEBUG - true - Debug - true - true - true - $(BDS)\lib\debug;$(ILINK_LibraryPath) - Full - true - - - NDEBUG;$(Defines) - Release - $(BDS)\lib\release;$(ILINK_LibraryPath) - None - - - CPlusPlusBuilder.Personality - CppConsoleApplication - -FalseFalse1000FalseFalseFalseFalseFalse103312521.0.0.01.0.0.0FalseFalseFalseTrueFalse - - - CodeGear C++Builder Office 2000 Servers Package - CodeGear C++Builder Office XP Servers Package - FalseTrueTrue3$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test;..$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include1$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;$(OUTPUTDIR);..\test2NO_STRICTSTRICT - - - - - 0 - - - 1 - - - Cfg_1 - - - Cfg_2 - - - \ No newline at end of file diff --git a/cpp/thirdparty/gtest-1.5.0/configure b/cpp/thirdparty/gtest-1.5.0/configure deleted file mode 100755 index 2c479a8ef..000000000 --- a/cpp/thirdparty/gtest-1.5.0/configure +++ /dev/null @@ -1,21137 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for Google C++ Testing Framework 1.5.0. -# -# Report bugs to . -# -# -# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. -# -# -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -# Use a proper internal environment variable to ensure we don't fall - # into an infinite loop, continuously re-executing ourselves. - if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then - _as_can_reexec=no; export _as_can_reexec; - # We cannot yet assume a decent shell, so we have to provide a -# neutralization value for shells without unset; and this also -# works around shells that cannot unset nonexistent variables. -# Preserve -v and -x to the replacement shell. -BASH_ENV=/dev/null -ENV=/dev/null -(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -case $- in # (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; -esac -exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -# Admittedly, this is quite paranoid, since all the known shells bail -# out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -as_fn_exit 255 - fi - # We don't want this to propagate to other subprocesses. - { _as_can_reexec=; unset _as_can_reexec;} -if test "x$CONFIG_SHELL" = x; then - as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which - # is contrary to our usage. Disable this feature. - alias -g '\${1+\"\$@\"}'='\"\$@\"' - setopt NO_GLOB_SUBST -else - case \`(set -o) 2>/dev/null\` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi -" - as_required="as_fn_return () { (exit \$1); } -as_fn_success () { as_fn_return 0; } -as_fn_failure () { as_fn_return 1; } -as_fn_ret_success () { return 0; } -as_fn_ret_failure () { return 1; } - -exitcode=0 -as_fn_success || { exitcode=1; echo as_fn_success failed.; } -as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } -as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } -as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : - -else - exitcode=1; echo positional parameters were not saved. -fi -test x\$exitcode = x0 || exit 1 -test -x / || exit 1" - as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO - as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO - eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && - test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 -test \$(( 1 + 1 )) = 2 || exit 1" - if (eval "$as_required") 2>/dev/null; then : - as_have_required=yes -else - as_have_required=no -fi - if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : - -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -as_found=false -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - as_found=: - case $as_dir in #( - /*) - for as_base in sh bash ksh sh5; do - # Try only shells that exist, to save several forks. - as_shell=$as_dir/$as_base - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : - CONFIG_SHELL=$as_shell as_have_required=yes - if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : - break 2 -fi -fi - done;; - esac - as_found=false -done -$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : - CONFIG_SHELL=$SHELL as_have_required=yes -fi; } -IFS=$as_save_IFS - - - if test "x$CONFIG_SHELL" != x; then : - export CONFIG_SHELL - # We cannot yet assume a decent shell, so we have to provide a -# neutralization value for shells without unset; and this also -# works around shells that cannot unset nonexistent variables. -# Preserve -v and -x to the replacement shell. -BASH_ENV=/dev/null -ENV=/dev/null -(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV -case $- in # (((( - *v*x* | *x*v* ) as_opts=-vx ;; - *v* ) as_opts=-v ;; - *x* ) as_opts=-x ;; - * ) as_opts= ;; -esac -exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} -# Admittedly, this is quite paranoid, since all the known shells bail -# out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -exit 255 -fi - - if test x$as_have_required = xno; then : - $as_echo "$0: This script requires a shell more modern than all" - $as_echo "$0: the shells that I found on your system." - if test x${ZSH_VERSION+set} = xset ; then - $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" - $as_echo "$0: be upgraded to zsh 4.3.4 or later." - else - $as_echo "$0: Please tell bug-autoconf@gnu.org and -$0: googletestframework@googlegroups.com about your system, -$0: including any error possibly output before this -$0: message. Then install a modern shell, or manually run -$0: the script under such a shell if you do have one." - fi - exit 1 -fi -fi -fi -SHELL=${CONFIG_SHELL-/bin/sh} -export SHELL -# Unset more variables known to interfere with behavior of common tools. -CLICOLOR_FORCE= GREP_OPTIONS= -unset CLICOLOR_FORCE GREP_OPTIONS - -## --------------------- ## -## M4sh Shell Functions. ## -## --------------------- ## -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} # as_fn_mkdir_p - -# as_fn_executable_p FILE -# ----------------------- -# Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} # as_fn_executable_p -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} # as_fn_error - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - - - as_lineno_1=$LINENO as_lineno_1a=$LINENO - as_lineno_2=$LINENO as_lineno_2a=$LINENO - eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && - test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { - # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } - - # If we had to re-execute with $CONFIG_SHELL, we're ensured to have - # already done that, so ensure we don't try to do so again and fall - # in an infinite loop. This has already happened in practice. - _as_can_reexec=no; export _as_can_reexec - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - - -# Check that we are running under the correct shell. -SHELL=${CONFIG_SHELL-/bin/sh} - -case X$ECHO in -X*--fallback-echo) - # Remove one level of quotation (which was required for Make). - ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','` - ;; -esac - -echo=${ECHO-echo} -if test "X$1" = X--no-reexec; then - # Discard the --no-reexec flag, and continue. - shift -elif test "X$1" = X--fallback-echo; then - # Avoid inline document here, it may be left over - : -elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then - # Yippee, $echo works! - : -else - # Restart under the correct shell. - exec $SHELL "$0" --no-reexec ${1+"$@"} -fi - -if test "X$1" = X--fallback-echo; then - # used as fallback echo - shift - cat </dev/null 2>&1 && unset CDPATH - -if test -z "$ECHO"; then -if test "X${echo_test_string+set}" != Xset; then -# find a string as large as possible, as long as the shell can cope with it - for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do - # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... - if (echo_test_string=`eval $cmd`) 2>/dev/null && - echo_test_string=`eval $cmd` && - (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null - then - break - fi - done -fi - -if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - : -else - # The Solaris, AIX, and Digital Unix default echo programs unquote - # backslashes. This makes it impossible to quote backslashes using - # echo "$something" | sed 's/\\/\\\\/g' - # - # So, first we look for a working echo in the user's PATH. - - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for dir in $PATH /usr/ucb; do - IFS="$lt_save_ifs" - if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && - test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - echo="$dir/echo" - break - fi - done - IFS="$lt_save_ifs" - - if test "X$echo" = Xecho; then - # We didn't find a better echo, so look for alternatives. - if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # This shell has a builtin print -r that does the trick. - echo='print -r' - elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && - test "X$CONFIG_SHELL" != X/bin/ksh; then - # If we have ksh, try running configure again with it. - ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} - export ORIGINAL_CONFIG_SHELL - CONFIG_SHELL=/bin/ksh - export CONFIG_SHELL - exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} - else - # Try using printf. - echo='printf %s\n' - if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # Cool, printf works - : - elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL - export CONFIG_SHELL - SHELL="$CONFIG_SHELL" - export SHELL - echo="$CONFIG_SHELL $0 --fallback-echo" - elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - echo="$CONFIG_SHELL $0 --fallback-echo" - else - # maybe with a smaller string... - prev=: - - for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do - if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null - then - break - fi - prev="$cmd" - done - - if test "$prev" != 'sed 50q "$0"'; then - echo_test_string=`eval $prev` - export echo_test_string - exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} - else - # Oops. We lost completely, so just stick with echo. - echo=echo - fi - fi - fi - fi -fi -fi - -# Copy echo and quote the copy suitably for passing to libtool from -# the Makefile, instead of quoting the original, which is used later. -ECHO=$echo -if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then - ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" -fi - - - - -tagnames=${tagnames+${tagnames},}CXX - -tagnames=${tagnames+${tagnames},}F77 - -test -n "$DJDIR" || exec 7<&0 &1 - -# Name of the host. -# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_clean_files= -ac_config_libobj_dir=. -LIBOBJS= -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= - -# Identity of this package. -PACKAGE_NAME='Google C++ Testing Framework' -PACKAGE_TARNAME='gtest' -PACKAGE_VERSION='1.5.0' -PACKAGE_STRING='Google C++ Testing Framework 1.5.0' -PACKAGE_BUGREPORT='googletestframework@googlegroups.com' -PACKAGE_URL='' - -ac_unique_file="./COPYING" -# Factoring default headers for most tests. -ac_includes_default="\ -#include -#ifdef HAVE_SYS_TYPES_H -# include -#endif -#ifdef HAVE_SYS_STAT_H -# include -#endif -#ifdef STDC_HEADERS -# include -# include -#else -# ifdef HAVE_STDLIB_H -# include -# endif -#endif -#ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include -# endif -# include -#endif -#ifdef HAVE_STRINGS_H -# include -#endif -#ifdef HAVE_INTTYPES_H -# include -#endif -#ifdef HAVE_STDINT_H -# include -#endif -#ifdef HAVE_UNISTD_H -# include -#endif" - -ac_subst_vars='LTLIBOBJS -LIBOBJS -HAVE_PTHREADS_FALSE -HAVE_PTHREADS_TRUE -PTHREAD_CFLAGS -PTHREAD_LIBS -PTHREAD_CC -acx_pthread_config -HAVE_PYTHON_FALSE -HAVE_PYTHON_TRUE -PYTHON -LIBTOOL -ac_ct_F77 -FFLAGS -F77 -CXXCPP -CPP -NMEDIT -DSYMUTIL -RANLIB -AR -ECHO -LN_S -EGREP -GREP -SED -host_os -host_vendor -host_cpu -host -build_os -build_vendor -build_cpu -build -am__fastdepCXX_FALSE -am__fastdepCXX_TRUE -CXXDEPMODE -ac_ct_CXX -CXXFLAGS -CXX -am__fastdepCC_FALSE -am__fastdepCC_TRUE -CCDEPMODE -AMDEPBACKSLASH -AMDEP_FALSE -AMDEP_TRUE -am__quote -am__include -DEPDIR -OBJEXT -EXEEXT -ac_ct_CC -CPPFLAGS -LDFLAGS -CFLAGS -CC -am__untar -am__tar -AMTAR -am__leading_dot -SET_MAKE -AWK -mkdir_p -MKDIR_P -INSTALL_STRIP_PROGRAM -STRIP -install_sh -MAKEINFO -AUTOHEADER -AUTOMAKE -AUTOCONF -ACLOCAL -VERSION -PACKAGE -CYGPATH_W -am__isrc -INSTALL_DATA -INSTALL_SCRIPT -INSTALL_PROGRAM -target_alias -host_alias -build_alias -LIBS -ECHO_T -ECHO_N -ECHO_C -DEFS -mandir -localedir -libdir -psdir -pdfdir -dvidir -htmldir -infodir -docdir -oldincludedir -includedir -localstatedir -sharedstatedir -sysconfdir -datadir -datarootdir -libexecdir -sbindir -bindir -program_transform_name -prefix -exec_prefix -PACKAGE_URL -PACKAGE_BUGREPORT -PACKAGE_STRING -PACKAGE_VERSION -PACKAGE_TARNAME -PACKAGE_NAME -PATH_SEPARATOR -SHELL' -ac_subst_files='' -ac_user_opts=' -enable_option_checking -enable_dependency_tracking -enable_shared -enable_static -enable_fast_install -with_gnu_ld -enable_libtool_lock -with_pic -with_tags -with_pthreads -' - ac_precious_vars='build_alias -host_alias -target_alias -CC -CFLAGS -LDFLAGS -LIBS -CPPFLAGS -CXX -CXXFLAGS -CCC -CPP -CXXCPP -F77 -FFLAGS' - - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -ac_unrecognized_opts= -ac_unrecognized_sep= -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -# (The list follows the same order as the GNU Coding Standards.) -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datarootdir='${prefix}/share' -datadir='${datarootdir}' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -includedir='${prefix}/include' -oldincludedir='/usr/include' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -infodir='${datarootdir}/info' -htmldir='${docdir}' -dvidir='${docdir}' -pdfdir='${docdir}' -psdir='${docdir}' -libdir='${exec_prefix}/lib' -localedir='${datarootdir}/locale' -mandir='${datarootdir}/man' - -ac_prev= -ac_dashdash= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval $ac_prev=\$ac_option - ac_prev= - continue - fi - - case $ac_option in - *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; - *=) ac_optarg= ;; - *) ac_optarg=yes ;; - esac - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_dashdash$ac_option in - --) - ac_dashdash=yes ;; - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=*) - datadir=$ac_optarg ;; - - -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ - | --dataroo | --dataro | --datar) - ac_prev=datarootdir ;; - -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ - | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) - datarootdir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=no ;; - - -docdir | --docdir | --docdi | --doc | --do) - ac_prev=docdir ;; - -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) - docdir=$ac_optarg ;; - - -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) - ac_prev=dvidir ;; - -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) - dvidir=$ac_optarg ;; - - -enable-* | --enable-*) - ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"enable_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval enable_$ac_useropt=\$ac_optarg ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) - ac_prev=htmldir ;; - -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ - | --ht=*) - htmldir=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localedir | --localedir | --localedi | --localed | --locale) - ac_prev=localedir ;; - -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) - localedir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst | --locals) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) - ac_prev=pdfdir ;; - -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) - pdfdir=$ac_optarg ;; - - -psdir | --psdir | --psdi | --psd | --ps) - ac_prev=psdir ;; - -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) - psdir=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=\$ac_optarg ;; - - -without-* | --without-*) - ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" - ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` - case $ac_user_opts in - *" -"with_$ac_useropt" -"*) ;; - *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" - ac_unrecognized_sep=', ';; - esac - eval with_$ac_useropt=no ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) as_fn_error $? "unrecognized option: \`$ac_option' -Try \`$0 --help' for more information" - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - case $ac_envvar in #( - '' | [0-9]* | *[!_$as_cr_alnum]* ) - as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; - esac - eval $ac_envvar=\$ac_optarg - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - as_fn_error $? "missing argument to $ac_option" -fi - -if test -n "$ac_unrecognized_opts"; then - case $enable_option_checking in - no) ;; - fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; - *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; - esac -fi - -# Check all directory arguments for consistency. -for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ - datadir sysconfdir sharedstatedir localstatedir includedir \ - oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir -do - eval ac_val=\$$ac_var - # Remove trailing slashes. - case $ac_val in - */ ) - ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` - eval $ac_var=\$ac_val;; - esac - # Be sure to have absolute directory names. - case $ac_val in - [\\/$]* | ?:[\\/]* ) continue;; - NONE | '' ) case $ac_var in *prefix ) continue;; esac;; - esac - as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -ac_pwd=`pwd` && test -n "$ac_pwd" && -ac_ls_di=`ls -di .` && -ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - as_fn_error $? "working directory cannot be determined" -test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - as_fn_error $? "pwd does not report name of working directory" - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$as_myself" || -$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_myself" : 'X\(//\)[^/]' \| \ - X"$as_myself" : 'X\(//\)$' \| \ - X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_myself" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r "$srcdir/$ac_unique_file"; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r "$srcdir/$ac_unique_file"; then - test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" -fi -ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" -ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" - pwd)` -# When building in place, set srcdir=. -if test "$ac_abs_confdir" = "$ac_pwd"; then - srcdir=. -fi -# Remove unnecessary trailing slashes from srcdir. -# Double slashes in file names in object file debugging info -# mess up M-x gdb in Emacs. -case $srcdir in -*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; -esac -for ac_var in $ac_precious_vars; do - eval ac_env_${ac_var}_set=\${${ac_var}+set} - eval ac_env_${ac_var}_value=\$${ac_var} - eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} - eval ac_cv_env_${ac_var}_value=\$${ac_var} -done - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures Google C++ Testing Framework 1.5.0 to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking ...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root [DATAROOTDIR/doc/gtest] - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] -_ACEOF - - cat <<\_ACEOF - -Program names: - --program-prefix=PREFIX prepend PREFIX to installed program names - --program-suffix=SUFFIX append SUFFIX to installed program names - --program-transform-name=PROGRAM run sed PROGRAM on installed program names - -System types: - --build=BUILD configure for building on BUILD [guessed] - --host=HOST cross-compile to build programs to run on HOST [BUILD] -_ACEOF -fi - -if test -n "$ac_init_help"; then - case $ac_init_help in - short | recursive ) echo "Configuration of Google C++ Testing Framework 1.5.0:";; - esac - cat <<\_ACEOF - -Optional Features: - --disable-option-checking ignore unrecognized --enable/--with options - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --disable-dependency-tracking speeds up one-time build - --enable-dependency-tracking do not reject slow dependency extractors - --enable-shared[=PKGS] build shared libraries [default=yes] - --enable-static[=PKGS] build static libraries [default=yes] - --enable-fast-install[=PKGS] - optimize for fast installation [default=yes] - --disable-libtool-lock avoid locking (might break parallel builds) - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-gnu-ld assume the C compiler uses GNU ld [default=no] - --with-pic try to use only PIC/non-PIC objects [default=use - both] - --with-tags[=TAGS] include additional configurations [automatic] - --with-pthreads use pthreads (default is yes) - -Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if - you have headers in a nonstandard directory - CXX C++ compiler command - CXXFLAGS C++ compiler flags - CPP C preprocessor - CXXCPP C++ preprocessor - F77 Fortran 77 compiler command - FFLAGS Fortran 77 compiler flags - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -Report bugs to . -_ACEOF -ac_status=$? -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || - { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || - continue - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. - if test -f "$ac_srcdir/configure.gnu"; then - echo && - $SHELL "$ac_srcdir/configure.gnu" --help=recursive - elif test -f "$ac_srcdir/configure"; then - echo && - $SHELL "$ac_srcdir/configure" --help=recursive - else - $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi || ac_status=$? - cd "$ac_pwd" || { ac_status=$?; break; } - done -fi - -test -n "$ac_init_help" && exit $ac_status -if $ac_init_version; then - cat <<\_ACEOF -Google C++ Testing Framework configure 1.5.0 -generated by GNU Autoconf 2.69 - -Copyright (C) 2012 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit -fi - -## ------------------------ ## -## Autoconf initialization. ## -## ------------------------ ## - -# ac_fn_c_try_compile LINENO -# -------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_compile - -# ac_fn_cxx_try_compile LINENO -# ---------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_cxx_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_cxx_try_compile - -# ac_fn_cxx_try_link LINENO -# ------------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_cxx_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_cxx_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - test -x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_cxx_try_link - -# ac_fn_c_try_link LINENO -# ----------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - test -x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_link - -# ac_fn_c_try_cpp LINENO -# ---------------------- -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_cpp - -# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists, giving a warning if it cannot be compiled using -# the include files in INCLUDES and setting the cache variable VAR -# accordingly. -ac_fn_c_check_header_mongrel () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if eval \${$3+:} false; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_header_compiler=yes -else - ac_header_compiler=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <$2> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - ac_header_preproc=yes -else - ac_header_preproc=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( - yes:no: ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; - no:yes:* ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 -$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( $as_echo "## --------------------------------------------------- ## -## Report this to googletestframework@googlegroups.com ## -## --------------------------------------------------- ##" - ) | sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=\$ac_header_compiler" -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_header_mongrel - -# ac_fn_c_try_run LINENO -# ---------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes -# that executables *can* be run. -ac_fn_c_try_run () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then : - ac_retval=0 -else - $as_echo "$as_me: program exited with status $ac_status" >&5 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=$ac_status -fi - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_run - -# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists and can be compiled using the include files in -# INCLUDES, setting the cache variable VAR accordingly. -ac_fn_c_check_header_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_header_compile - -# ac_fn_c_check_func LINENO FUNC VAR -# ---------------------------------- -# Tests whether FUNC exists, setting the cache variable VAR accordingly -ac_fn_c_check_func () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval \${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -/* Define $2 to an innocuous variant, in case declares $2. - For example, HP-UX 11i declares gettimeofday. */ -#define $2 innocuous_$2 - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $2 (); below. - Prefer to if __STDC__ is defined, since - exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include -#else -# include -#endif - -#undef $2 - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $2 (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$2 || defined __stub___$2 -choke me -#endif - -int -main () -{ -return $2 (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_func - -# ac_fn_cxx_try_cpp LINENO -# ------------------------ -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_cxx_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_cxx_try_cpp - -# ac_fn_f77_try_compile LINENO -# ---------------------------- -# Try to compile conftest.$ac_ext, and return whether this succeeded. -ac_fn_f77_try_compile () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext - if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_f77_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_f77_try_compile - -# ac_fn_f77_try_link LINENO -# ------------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. -ac_fn_f77_try_link () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext - if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && { - test -z "$ac_f77_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && { - test "$cross_compiling" = yes || - test -x conftest$ac_exeext - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information - # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would - # interfere with the next link command; also delete a directory that is - # left behind by Apple's compiler. We do this before executing the actions. - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_f77_try_link -cat >config.log <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by Google C++ Testing Framework $as_me 1.5.0, which was -generated by GNU Autoconf 2.69. Invocation command line was - - $ $0 $@ - -_ACEOF -exec 5>>config.log -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - $as_echo "PATH: $as_dir" - done -IFS=$as_save_IFS - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *\'*) - ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; - 2) - as_fn_append ac_configure_args1 " '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - as_fn_append ac_configure_args " '$ac_arg'" - ;; - esac - done -done -{ ac_configure_args0=; unset ac_configure_args0;} -{ ac_configure_args1=; unset ac_configure_args1;} - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Use '\'' to represent an apostrophe within the trap. -# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - $as_echo "## ---------------- ## -## Cache variables. ## -## ---------------- ##" - echo - # The following way of writing the cache mishandles newlines in values, -( - for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - (set) 2>&1 | - case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - sed -n \ - "s/'\''/'\''\\\\'\'''\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" - ;; #( - *) - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) - echo - - $as_echo "## ----------------- ## -## Output variables. ## -## ----------------- ##" - echo - for ac_var in $ac_subst_vars - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - - if test -n "$ac_subst_files"; then - $as_echo "## ------------------- ## -## File substitutions. ## -## ------------------- ##" - echo - for ac_var in $ac_subst_files - do - eval ac_val=\$$ac_var - case $ac_val in - *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; - esac - $as_echo "$ac_var='\''$ac_val'\''" - done | sort - echo - fi - - if test -s confdefs.h; then - $as_echo "## ----------- ## -## confdefs.h. ## -## ----------- ##" - echo - cat confdefs.h - echo - fi - test "$ac_signal" != 0 && - $as_echo "$as_me: caught signal $ac_signal" - $as_echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core core.conftest.* && - rm -f -r conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status -' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -f -r conftest* confdefs.h - -$as_echo "/* confdefs.h */" > confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_URL "$PACKAGE_URL" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer an explicitly selected file to automatically selected ones. -ac_site_file1=NONE -ac_site_file2=NONE -if test -n "$CONFIG_SITE"; then - # We do not want a PATH search for config.site. - case $CONFIG_SITE in #(( - -*) ac_site_file1=./$CONFIG_SITE;; - */*) ac_site_file1=$CONFIG_SITE;; - *) ac_site_file1=./$CONFIG_SITE;; - esac -elif test "x$prefix" != xNONE; then - ac_site_file1=$prefix/share/config.site - ac_site_file2=$prefix/etc/config.site -else - ac_site_file1=$ac_default_prefix/share/config.site - ac_site_file2=$ac_default_prefix/etc/config.site -fi -for ac_site_file in "$ac_site_file1" "$ac_site_file2" -do - test "x$ac_site_file" = xNONE && continue - if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -$as_echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" \ - || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "failed to load site script $ac_site_file -See \`config.log' for more details" "$LINENO" 5; } - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special files - # actually), so we avoid doing that. DJGPP emulates it as a regular file. - if test /dev/null != "$cache_file" && test -f "$cache_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -$as_echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . "$cache_file";; - *) . "./$cache_file";; - esac - fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -$as_echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val=\$ac_cv_env_${ac_var}_value - eval ac_new_val=\$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 -$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - # differences in whitespace do not lead to failure. - ac_old_val_w=`echo x $ac_old_val` - ac_new_val_w=`echo x $ac_new_val` - if test "$ac_old_val_w" != "$ac_new_val_w"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 -$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - ac_cache_corrupted=: - else - { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 -$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} - eval $ac_var=\$ac_old_val - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 -$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 -$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) as_fn_append ac_configure_args " '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 -fi -## -------------------- ## -## Main body of script. ## -## -------------------- ## - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - -# Provide various options to initialize the Autoconf and configure processes. - - -ac_aux_dir= -for ac_dir in build-aux "$srcdir"/build-aux; do - if test -f "$ac_dir/install-sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f "$ac_dir/install.sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f "$ac_dir/shtool"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - as_fn_error $? "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5 -fi - -# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. - - -ac_config_headers="$ac_config_headers build-aux/config.h" - -ac_config_files="$ac_config_files Makefile" - -ac_config_files="$ac_config_files scripts/gtest-config" - - -# Initialize Automake with various options. We require at least v1.9, prevent -# pedantic complaints about package files, and enable various distribution -# targets. -am__api_version='1.10' - -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -# Reject install programs that cannot install multiple files. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 -$as_echo_n "checking for a BSD-compatible install... " >&6; } -if test -z "$INSTALL"; then -if ${ac_cv_path_install+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in #(( - ./ | .// | /[cC]/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - rm -rf conftest.one conftest.two conftest.dir - echo one > conftest.one - echo two > conftest.two - mkdir conftest.dir - if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && - test -s conftest.one && test -s conftest.two && - test -s conftest.dir/conftest.one && - test -s conftest.dir/conftest.two - then - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - fi - done - done - ;; -esac - - done -IFS=$as_save_IFS - -rm -rf conftest.one conftest.two conftest.dir - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. Don't cache a - # value for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - INSTALL=$ac_install_sh - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 -$as_echo "$INSTALL" >&6; } - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 -$as_echo_n "checking whether build environment is sane... " >&6; } -# Just in case -sleep 1 -echo timestamp > conftest.file -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` - if test "$*" = "X"; then - # -L didn't work. - set X `ls -t $srcdir/configure conftest.file` - fi - rm -f conftest.file - if test "$*" != "X $srcdir/configure conftest.file" \ - && test "$*" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - as_fn_error $? "ls -t appears to fail. Make sure there is not a broken -alias in your environment" "$LINENO" 5 - fi - - test "$2" = conftest.file - ) -then - # Ok. - : -else - as_fn_error $? "newly created file is older than distributed files! -Check your system clock" "$LINENO" 5 -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -test "$program_prefix" != NONE && - program_transform_name="s&^&$program_prefix&;$program_transform_name" -# Use a double $ so make ignores it. -test "$program_suffix" != NONE && - program_transform_name="s&\$&$program_suffix&;$program_transform_name" -# Double any \ or $. -# By default was `s,x,x', remove it if useless. -ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' -program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` - -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` - -test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " -else - am_missing_run= - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 -$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 -$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } -if test -z "$MKDIR_P"; then - if ${ac_cv_path_mkdir+:} false; then : - $as_echo_n "(cached) " >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do - for ac_exec_ext in '' $ac_executable_extensions; do - as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue - case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( - 'mkdir (GNU coreutils) '* | \ - 'mkdir (coreutils) '* | \ - 'mkdir (fileutils) '4.1*) - ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext - break 3;; - esac - done - done - done -IFS=$as_save_IFS - -fi - - test -d ./--version && rmdir ./--version - if test "${ac_cv_path_mkdir+set}" = set; then - MKDIR_P="$ac_cv_path_mkdir -p" - else - # As a last resort, use the slow shell script. Don't cache a - # value for MKDIR_P within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - MKDIR_P="$ac_install_sh -d" - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 -$as_echo "$MKDIR_P" >&6; } - -mkdir_p="$MKDIR_P" -case $mkdir_p in - [\\/$]* | ?:[\\/]*) ;; - */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; -esac - -for ac_prog in gawk mawk nawk awk -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AWK+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AWK"; then - ac_cv_prog_AWK="$AWK" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AWK="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AWK=$ac_cv_prog_AWK -if test -n "$AWK"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 -$as_echo "$AWK" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$AWK" && break -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } -set x ${MAKE-make} -ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat >conftest.make <<\_ACEOF -SHELL = /bin/sh -all: - @echo '@@@%%%=$(MAKE)=@@@%%%' -_ACEOF -# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. -case `${MAKE-make} -f conftest.make 2>/dev/null` in - *@@@%%%=?*=@@@%%%*) - eval ac_cv_prog_make_${ac_make}_set=yes;; - *) - eval ac_cv_prog_make_${ac_make}_set=no;; -esac -rm -f conftest.make -fi -if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - SET_MAKE= -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - SET_MAKE="MAKE=${MAKE-make}" -fi - -rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null - -if test "`cd $srcdir && pwd`" != "`pwd`"; then - # Use -I$(srcdir) only when $(srcdir) != ., so that make's output - # is not polluted with repeated "-I." - am__isrc=' -I$(srcdir)' - # test to see if srcdir already configured - if test -f $srcdir/config.status; then - as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 - fi -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi - - -# Define the identity of the package. - PACKAGE='gtest' - VERSION='1.5.0' - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE "$PACKAGE" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define VERSION "$VERSION" -_ACEOF - -# Some tools Automake needs. - -ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} - - -AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} - - -AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} - - -AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} - - -MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} - -install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} - -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -if test "$cross_compiling" != no; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" - -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -# Always define AMTAR for backward compatibility. - -AMTAR=${AMTAR-"${am_missing_run}tar"} - -am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' - - - - - - -# Check for programs used in building Google Test. -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CC" && break -done - - if test "x$ac_ct_CC" = x; then - CC="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -fi - -fi - - -test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "no acceptable C compiler found in \$PATH -See \`config.log' for more details" "$LINENO" 5; } - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` - -# The possible output files: -ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" - -ac_rmfiles= -for ac_file in $ac_files -do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - * ) ac_rmfiles="$ac_rmfiles $ac_file";; - esac -done -rm -f $ac_rmfiles - -if { { ac_try="$ac_link_default" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link_default") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. -# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' -# in a Makefile. We should not override ac_cv_exeext if it was cached, -# so that the user can short-circuit this test for compilers unknown to -# Autoconf. -for ac_file in $ac_files '' -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; - then :; else - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - fi - # We set ac_cv_exeext here because the later test for it is not - # safe: cross compilers may not add the suffix if given an `-o' - # argument, so we may need to know it at that point already. - # Even if this section looks crufty: it has the advantage of - # actually working. - break;; - * ) - break;; - esac -done -test "$ac_cv_exeext" = no && ac_cv_exeext= - -else - ac_file='' -fi -if test -z "$ac_file"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -$as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error 77 "C compiler cannot create executables -See \`config.log' for more details" "$LINENO" 5; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } -ac_exeext=$ac_cv_exeext - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -$as_echo_n "checking for suffix of executables... " >&6; } -if { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - break;; - * ) break;; - esac -done -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest conftest$ac_cv_exeext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -$as_echo "$ac_cv_exeext" >&6; } - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -FILE *f = fopen ("conftest.out", "w"); - return ferror (f) || fclose (f) != 0; - - ; - return 0; -} -_ACEOF -ac_clean_files="$ac_clean_files conftest.out" -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -if test "$cross_compiling" != yes; then - { { ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - if { ac_try='./conftest$ac_cv_exeext' - { { case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details" "$LINENO" 5; } - fi - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - -rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out -ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -$as_echo_n "checking for suffix of object files... " >&6; } -if ${ac_cv_objext+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { { ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compile") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then : - for ac_file in conftest.o conftest.obj conftest.*; do - test -f "$ac_file" || continue; - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "cannot compute suffix of object files: cannot compile -See \`config.log' for more details" "$LINENO" 5; } -fi -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -$as_echo "$ac_cv_objext" >&6; } -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if ${ac_cv_c_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GCC=yes -else - GCC= -fi -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if ${ac_cv_prog_cc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_c_werror_flag=$ac_c_werror_flag - ac_c_werror_flag=yes - ac_cv_prog_cc_g=no - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -else - CFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - -else - ac_c_werror_flag=$ac_save_c_werror_flag - CFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_c_werror_flag=$ac_save_c_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if ${ac_cv_prog_cc_c89+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no -ac_save_CC=$CC -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -struct stat; -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_prog_cc_c89=$ac_arg -fi -rm -f core conftest.err conftest.$ac_objext - test "x$ac_cv_prog_cc_c89" != "xno" && break -done -rm -f conftest.$ac_ext -CC=$ac_save_CC - -fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then : - -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -DEPDIR="${am__leading_dot}deps" - -ac_config_commands="$ac_config_commands depfiles" - - -am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo done -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 -$as_echo_n "checking for style of include used by $am_make... " >&6; } -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# We grep out `Entering directory' and `Leaving directory' -# messages which can occur if `w' ends up in MAKEFLAGS. -# In particular we don't look at `^make:' because GNU make might -# be invoked under some other name (usually "gmake"), in which -# case it prints its new name instead of `make'. -if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then - am__include=include - am__quote= - _am_result=GNU -fi -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then - am__include=.include - am__quote="\"" - _am_result=BSD - fi -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 -$as_echo "$_am_result" >&6; } -rm -f confinc confmf - -# Check whether --enable-dependency-tracking was given. -if test "${enable_dependency_tracking+set}" = set; then : - enableval=$enable_dependency_tracking; -fi - -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' -fi - if test "x$enable_dependency_tracking" != xno; then - AMDEP_TRUE= - AMDEP_FALSE='#' -else - AMDEP_TRUE='#' - AMDEP_FALSE= -fi - - - -depcc="$CC" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_CC_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CC_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - case $depmode in - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - none) break ;; - esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. - if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CC_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CC_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } -CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then - am__fastdepCC_TRUE= - am__fastdepCC_FALSE='#' -else - am__fastdepCC_TRUE='#' - am__fastdepCC_FALSE= -fi - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -if test -z "$CXX"; then - if test -n "$CCC"; then - CXX=$CCC - else - if test -n "$ac_tool_prefix"; then - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$CXX"; then - ac_cv_prog_CXX="$CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -CXX=$ac_cv_prog_CXX -if test -n "$CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 -$as_echo "$CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$CXX" && break - done -fi -if test -z "$CXX"; then - ac_ct_CXX=$CXX - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_CXX"; then - ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CXX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_CXX=$ac_cv_prog_ac_ct_CXX -if test -n "$ac_ct_CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 -$as_echo "$ac_ct_CXX" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_CXX" && break -done - - if test "x$ac_ct_CXX" = x; then - CXX="g++" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - CXX=$ac_ct_CXX - fi -fi - - fi -fi -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -if ${ac_cv_cxx_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_cxx_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } -if test $ac_compiler_gnu = yes; then - GXX=yes -else - GXX= -fi -ac_test_CXXFLAGS=${CXXFLAGS+set} -ac_save_CXXFLAGS=$CXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -$as_echo_n "checking whether $CXX accepts -g... " >&6; } -if ${ac_cv_prog_cxx_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_save_cxx_werror_flag=$ac_cxx_werror_flag - ac_cxx_werror_flag=yes - ac_cv_prog_cxx_g=no - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -else - CXXFLAGS="" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - -else - ac_cxx_werror_flag=$ac_save_cxx_werror_flag - CXXFLAGS="-g" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : - ac_cv_prog_cxx_g=yes -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - ac_cxx_werror_flag=$ac_save_cxx_werror_flag -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -$as_echo "$ac_cv_prog_cxx_g" >&6; } -if test "$ac_test_CXXFLAGS" = set; then - CXXFLAGS=$ac_save_CXXFLAGS -elif test $ac_cv_prog_cxx_g = yes; then - if test "$GXX" = yes; then - CXXFLAGS="-g -O2" - else - CXXFLAGS="-g" - fi -else - if test "$GXX" = yes; then - CXXFLAGS="-O2" - else - CXXFLAGS= - fi -fi -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -depcc="$CXX" am_compiler_list= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 -$as_echo_n "checking dependency style of $depcc... " >&6; } -if ${am_cv_CXX_dependencies_compiler_type+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CXX_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - case $depmode in - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - none) break ;; - esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. - if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CXX_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CXX_dependencies_compiler_type=none -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 -$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } -CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type - - if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then - am__fastdepCXX_TRUE= - am__fastdepCXX_FALSE='#' -else - am__fastdepCXX_TRUE='#' - am__fastdepCXX_FALSE= -fi - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -# Check whether --enable-shared was given. -if test "${enable_shared+set}" = set; then : - enableval=$enable_shared; p=${PACKAGE-default} - case $enableval in - yes) enable_shared=yes ;; - no) enable_shared=no ;; - *) - enable_shared=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_shared=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac -else - enable_shared=yes -fi - - -# Check whether --enable-static was given. -if test "${enable_static+set}" = set; then : - enableval=$enable_static; p=${PACKAGE-default} - case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; - *) - enable_static=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_static=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac -else - enable_static=yes -fi - - -# Check whether --enable-fast-install was given. -if test "${enable_fast_install+set}" = set; then : - enableval=$enable_fast_install; p=${PACKAGE-default} - case $enableval in - yes) enable_fast_install=yes ;; - no) enable_fast_install=no ;; - *) - enable_fast_install=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_fast_install=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac -else - enable_fast_install=yes -fi - - -# Make sure we can run config.sub. -$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -$as_echo_n "checking build system type... " >&6; } -if ${ac_cv_build+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_build_alias=$build_alias -test "x$ac_build_alias" = x && - ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` -test "x$ac_build_alias" = x && - as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 -ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -$as_echo "$ac_cv_build" >&6; } -case $ac_cv_build in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; -esac -build=$ac_cv_build -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_build -shift -build_cpu=$1 -build_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -build_os=$* -IFS=$ac_save_IFS -case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -$as_echo_n "checking host system type... " >&6; } -if ${ac_cv_host+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "x$host_alias" = x; then - ac_cv_host=$ac_cv_build -else - ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -$as_echo "$ac_cv_host" >&6; } -case $ac_cv_host in -*-*-*) ;; -*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; -esac -host=$ac_cv_host -ac_save_IFS=$IFS; IFS='-' -set x $ac_cv_host -shift -host_cpu=$1 -host_vendor=$2 -shift; shift -# Remember, the first character of IFS is used to create $*, -# except with old shells: -host_os=$* -IFS=$ac_save_IFS -case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 -$as_echo_n "checking for a sed that does not truncate output... " >&6; } -if ${lt_cv_path_SED+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Loop through the user's path and test for sed and gsed. -# Then use that list of sed's as ones to test for truncation. -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for lt_ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then - lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" - fi - done - done -done -IFS=$as_save_IFS -lt_ac_max=0 -lt_ac_count=0 -# Add /usr/xpg4/bin/sed as it is typically found on Solaris -# along with /bin/sed that truncates output. -for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && continue - cat /dev/null > conftest.in - lt_ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >conftest.in - # Check for GNU sed and select it if it is found. - if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then - lt_cv_path_SED=$lt_ac_sed - break - fi - while true; do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo >>conftest.nl - $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break - cmp -s conftest.out conftest.nl || break - # 10000 chars as input seems more than enough - test $lt_ac_count -gt 10 && break - lt_ac_count=`expr $lt_ac_count + 1` - if test $lt_ac_count -gt $lt_ac_max; then - lt_ac_max=$lt_ac_count - lt_cv_path_SED=$lt_ac_sed - fi - done -done - -fi - -SED=$lt_cv_path_SED - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $SED" >&5 -$as_echo "$SED" >&6; } - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if ${ac_cv_path_GREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$GREP"; then - ac_path_GREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_GREP" || continue -# Check for GNU ac_path_GREP and select it if it is found. - # Check for GNU $ac_path_GREP -case `"$ac_path_GREP" --version 2>&1` in -*GNU*) - ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'GREP' >> "conftest.nl" - "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_GREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_GREP="$ac_path_GREP" - ac_path_GREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_GREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_GREP"; then - as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_GREP=$GREP -fi - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } - GREP="$ac_cv_path_GREP" - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if ${ac_cv_path_EGREP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 - then ac_cv_path_EGREP="$GREP -E" - else - if test -z "$EGREP"; then - ac_path_EGREP_found=false - # Loop through the user's path and test for each of PROGNAME-LIST - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - as_fn_executable_p "$ac_path_EGREP" || continue -# Check for GNU ac_path_EGREP and select it if it is found. - # Check for GNU $ac_path_EGREP -case `"$ac_path_EGREP" --version 2>&1` in -*GNU*) - ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; -*) - ac_count=0 - $as_echo_n 0123456789 >"conftest.in" - while : - do - cat "conftest.in" "conftest.in" >"conftest.tmp" - mv "conftest.tmp" "conftest.in" - cp "conftest.in" "conftest.nl" - $as_echo 'EGREP' >> "conftest.nl" - "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break - diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - as_fn_arith $ac_count + 1 && ac_count=$as_val - if test $ac_count -gt ${ac_path_EGREP_max-0}; then - # Best one so far, save it but keep looking for a better one - ac_cv_path_EGREP="$ac_path_EGREP" - ac_path_EGREP_max=$ac_count - fi - # 10*(2^10) chars as input seems more than enough - test $ac_count -gt 10 && break - done - rm -f conftest.in conftest.tmp conftest.nl conftest.out;; -esac - - $ac_path_EGREP_found && break 3 - done - done - done -IFS=$as_save_IFS - if test -z "$ac_cv_path_EGREP"; then - as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 - fi -else - ac_cv_path_EGREP=$EGREP -fi - - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } - EGREP="$ac_cv_path_EGREP" - - - -# Check whether --with-gnu-ld was given. -if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -else - with_gnu_ld=no -fi - -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -$as_echo_n "checking for ld used by $CC... " >&6; } - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [\\/]* | ?:[\\/]*) - re_direlt='/[^/][^/]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` - while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do - ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -$as_echo_n "checking for GNU ld... " >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -$as_echo_n "checking for non-GNU ld... " >&6; } -fi -if ${lt_cv_path_LD+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &5 -$as_echo "$LD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if ${lt_cv_prog_gnu_ld+:} false; then : - $as_echo_n "(cached) " >&6 -else - # I'd rather use --version here, but apparently some GNU lds only accept -v. -case `$LD -v 2>&1 &5 -$as_echo "$lt_cv_prog_gnu_ld" >&6; } -with_gnu_ld=$lt_cv_prog_gnu_ld - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 -$as_echo_n "checking for $LD option to reload object files... " >&6; } -if ${lt_cv_ld_reload_flag+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ld_reload_flag='-r' -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 -$as_echo "$lt_cv_ld_reload_flag" >&6; } -reload_flag=$lt_cv_ld_reload_flag -case $reload_flag in -"" | " "*) ;; -*) reload_flag=" $reload_flag" ;; -esac -reload_cmds='$LD$reload_flag -o $output$reload_objs' -case $host_os in - darwin*) - if test "$GCC" = yes; then - reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' - else - reload_cmds='$LD$reload_flag -o $output$reload_objs' - fi - ;; -esac - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD-compatible nm" >&5 -$as_echo_n "checking for BSD-compatible nm... " >&6; } -if ${lt_cv_path_NM+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$NM"; then - # Let the user override the test. - lt_cv_path_NM="$NM" -else - lt_nm_to_check="${ac_tool_prefix}nm" - if test -n "$ac_tool_prefix" && test "$build" = "$host"; then - lt_nm_to_check="$lt_nm_to_check nm" - fi - for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then - # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: - # nm: unknown option "B" ignored - # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) - lt_cv_path_NM="$tmp_nm -B" - break - ;; - *) - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in - */dev/null*) - lt_cv_path_NM="$tmp_nm -p" - break - ;; - *) - lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but - continue # so that we can try to find one that supports BSD flags - ;; - esac - ;; - esac - fi - done - IFS="$lt_save_ifs" - done - test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 -$as_echo "$lt_cv_path_NM" >&6; } -NM="$lt_cv_path_NM" - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 -$as_echo_n "checking whether ln -s works... " >&6; } -LN_S=$as_ln_s -if test "$LN_S" = "ln -s"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 -$as_echo "no, using $LN_S" >&6; } -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 -$as_echo_n "checking how to recognize dependent libraries... " >&6; } -if ${lt_cv_deplibs_check_method+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_file_magic_cmd='$MAGIC_CMD' -lt_cv_file_magic_test_file= -lt_cv_deplibs_check_method='unknown' -# Need to set the preceding variable on all platforms that support -# interlibrary dependencies. -# 'none' -- dependencies not supported. -# `unknown' -- same as none, but documents that we really don't know. -# 'pass_all' -- all dependencies passed with no checks. -# 'test_compile' -- check by making test program. -# 'file_magic [[regex]]' -- check by looking for files in library path -# which responds to the $file_magic_cmd with a given extended regex. -# If you have `file' or equivalent on your system and you're not sure -# whether `pass_all' will *always* work, you probably want this one. - -case $host_os in -aix[4-9]*) - lt_cv_deplibs_check_method=pass_all - ;; - -beos*) - lt_cv_deplibs_check_method=pass_all - ;; - -bsdi[45]*) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' - lt_cv_file_magic_cmd='/usr/bin/file -L' - lt_cv_file_magic_test_file=/shlib/libc.so - ;; - -cygwin*) - # func_win32_libid is a shell function defined in ltmain.sh - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - ;; - -mingw* | pw32*) - # Base MSYS/MinGW do not provide the 'file' command needed by - # func_win32_libid shell function, so use a weaker test based on 'objdump', - # unless we find 'file', for example because we are cross-compiling. - if ( file / ) >/dev/null 2>&1; then - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - else - lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - fi - ;; - -darwin* | rhapsody*) - lt_cv_deplibs_check_method=pass_all - ;; - -freebsd* | dragonfly*) - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then - case $host_cpu in - i*86 ) - # Not sure whether the presence of OpenBSD here was a mistake. - # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` - ;; - esac - else - lt_cv_deplibs_check_method=pass_all - fi - ;; - -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - -hpux10.20* | hpux11*) - lt_cv_file_magic_cmd=/usr/bin/file - case $host_cpu in - ia64*) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' - lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so - ;; - hppa*64*) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' - lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl - ;; - *) - lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' - lt_cv_file_magic_test_file=/usr/lib/libc.sl - ;; - esac - ;; - -interix[3-9]*) - # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' - ;; - -irix5* | irix6* | nonstopux*) - case $LD in - *-32|*"-32 ") libmagic=32-bit;; - *-n32|*"-n32 ") libmagic=N32;; - *-64|*"-64 ") libmagic=64-bit;; - *) libmagic=never-match;; - esac - lt_cv_deplibs_check_method=pass_all - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu) - lt_cv_deplibs_check_method=pass_all - ;; - -netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' - fi - ;; - -newos6*) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=/usr/lib/libnls.so - ;; - -nto-qnx*) - lt_cv_deplibs_check_method=unknown - ;; - -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' - fi - ;; - -osf3* | osf4* | osf5*) - lt_cv_deplibs_check_method=pass_all - ;; - -rdos*) - lt_cv_deplibs_check_method=pass_all - ;; - -solaris*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv4 | sysv4.3*) - case $host_vendor in - motorola) - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` - ;; - ncr) - lt_cv_deplibs_check_method=pass_all - ;; - sequent) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' - ;; - sni) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" - lt_cv_file_magic_test_file=/lib/libc.so - ;; - siemens) - lt_cv_deplibs_check_method=pass_all - ;; - pc) - lt_cv_deplibs_check_method=pass_all - ;; - esac - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - lt_cv_deplibs_check_method=pass_all - ;; -esac - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 -$as_echo "$lt_cv_deplibs_check_method" >&6; } -file_magic_cmd=$lt_cv_file_magic_cmd -deplibs_check_method=$lt_cv_deplibs_check_method -test -z "$deplibs_check_method" && deplibs_check_method=unknown - - - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - - -# Check whether --enable-libtool-lock was given. -if test "${enable_libtool_lock+set}" = set; then : - enableval=$enable_libtool_lock; -fi - -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - -# Some flags need to be propagated to the compiler or linker for good -# libtool support. -case $host in -ia64-*-hpux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.$ac_objext` in - *ELF-32*) - HPUX_IA64_MODE="32" - ;; - *ELF-64*) - HPUX_IA64_MODE="64" - ;; - esac - fi - rm -rf conftest* - ;; -*-*-irix6*) - # Find out which ABI we are using. - echo '#line 5151 "configure"' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - if test "$lt_cv_prog_gnu_ld" = yes; then - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -melf32bsmip" - ;; - *N32*) - LD="${LD-ld} -melf32bmipn32" - ;; - *64-bit*) - LD="${LD-ld} -melf64bmip" - ;; - esac - else - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -32" - ;; - *N32*) - LD="${LD-ld} -n32" - ;; - *64-bit*) - LD="${LD-ld} -64" - ;; - esac - fi - fi - rm -rf conftest* - ;; - -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ -s390*-*linux*|sparc*-*linux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.o` in - *32-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_i386_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_i386" - ;; - ppc64-*linux*|powerpc64-*linux*) - LD="${LD-ld} -m elf32ppclinux" - ;; - s390x-*linux*) - LD="${LD-ld} -m elf_s390" - ;; - sparc64-*linux*) - LD="${LD-ld} -m elf32_sparc" - ;; - esac - ;; - *64-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_x86_64" - ;; - ppc*-*linux*|powerpc*-*linux*) - LD="${LD-ld} -m elf64ppc" - ;; - s390*-*linux*) - LD="${LD-ld} -m elf64_s390" - ;; - sparc*-*linux*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -*-*-sco3.2v5*) - # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -belf" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 -$as_echo_n "checking whether the C compiler needs -belf... " >&6; } -if ${lt_cv_cc_needs_belf+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - lt_cv_cc_needs_belf=yes -else - lt_cv_cc_needs_belf=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 -$as_echo "$lt_cv_cc_needs_belf" >&6; } - if test x"$lt_cv_cc_needs_belf" != x"yes"; then - # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" - fi - ;; -sparc*-*solaris*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - case `/usr/bin/file conftest.o` in - *64-bit*) - case $lt_cv_prog_gnu_ld in - yes*) LD="${LD-ld} -m elf64_sparc" ;; - *) - if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then - LD="${LD-ld} -64" - fi - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - - -esac - -need_locks="$enable_libtool_lock" - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -$as_echo_n "checking how to run the C preprocessor... " >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if ${ac_cv_prog_CPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -$as_echo "$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : - -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : - -else - ac_cv_header_stdc=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - -fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then - -$as_echo "#define STDC_HEADERS 1" >>confdefs.h - -fi - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -for ac_header in dlfcn.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default" -if test "x$ac_cv_header_dlfcn_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_DLFCN_H 1 -_ACEOF - -fi - -done - - - -if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 -$as_echo_n "checking how to run the C++ preprocessor... " >&6; } -if test -z "$CXXCPP"; then - if ${ac_cv_prog_CXXCPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CXXCPP needs to be expanded - for CXXCPP in "$CXX -E" "/lib/cpp" - do - ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_CXXCPP=$CXXCPP - -fi - CXXCPP=$ac_cv_prog_CXXCPP -else - ac_cv_prog_CXXCPP=$CXXCPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 -$as_echo "$CXXCPP" >&6; } -ac_preproc_ok=false -for ac_cxx_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -_ACEOF -if ac_fn_cxx_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check -See \`config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -fi - -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu -if test -n "$ac_tool_prefix"; then - for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgfortran pgf95 lf95 ftn nagfor - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_F77+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$F77"; then - ac_cv_prog_F77="$F77" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_F77="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -F77=$ac_cv_prog_F77 -if test -n "$F77"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $F77" >&5 -$as_echo "$F77" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$F77" && break - done -fi -if test -z "$F77"; then - ac_ct_F77=$F77 - for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgfortran pgf95 lf95 ftn nagfor -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_F77+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_F77"; then - ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_F77="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_F77=$ac_cv_prog_ac_ct_F77 -if test -n "$ac_ct_F77"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_F77" >&5 -$as_echo "$ac_ct_F77" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$ac_ct_F77" && break -done - - if test "x$ac_ct_F77" = x; then - F77="" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - F77=$ac_ct_F77 - fi -fi - - -# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 compiler version" >&5 -set X $ac_compile -ac_compiler=$2 -for ac_option in --version -v -V -qversion; do - { { ac_try="$ac_compiler $ac_option >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_compiler $ac_option >&5") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - sed '10a\ -... rest of stderr output deleted ... - 10q' conftest.err >conftest.er1 - cat conftest.er1 >&5 - fi - rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } -done -rm -f a.out - -# If we don't use `.F' as extension, the preprocessor is not run on the -# input file. (Note that this only needs to work for GNU compilers.) -ac_save_ext=$ac_ext -ac_ext=F -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran 77 compiler" >&5 -$as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; } -if ${ac_cv_f77_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat > conftest.$ac_ext <<_ACEOF - program main -#ifndef __GNUC__ - choke me -#endif - - end -_ACEOF -if ac_fn_f77_try_compile "$LINENO"; then : - ac_compiler_gnu=yes -else - ac_compiler_gnu=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_f77_compiler_gnu=$ac_compiler_gnu - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_f77_compiler_gnu" >&5 -$as_echo "$ac_cv_f77_compiler_gnu" >&6; } -ac_ext=$ac_save_ext -ac_test_FFLAGS=${FFLAGS+set} -ac_save_FFLAGS=$FFLAGS -FFLAGS= -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $F77 accepts -g" >&5 -$as_echo_n "checking whether $F77 accepts -g... " >&6; } -if ${ac_cv_prog_f77_g+:} false; then : - $as_echo_n "(cached) " >&6 -else - FFLAGS=-g -cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_f77_try_compile "$LINENO"; then : - ac_cv_prog_f77_g=yes -else - ac_cv_prog_f77_g=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_f77_g" >&5 -$as_echo "$ac_cv_prog_f77_g" >&6; } -if test "$ac_test_FFLAGS" = set; then - FFLAGS=$ac_save_FFLAGS -elif test $ac_cv_prog_f77_g = yes; then - if test "x$ac_cv_f77_compiler_gnu" = xyes; then - FFLAGS="-g -O2" - else - FFLAGS="-g" - fi -else - if test "x$ac_cv_f77_compiler_gnu" = xyes; then - FFLAGS="-O2" - else - FFLAGS= - fi -fi - -if test $ac_compiler_gnu = yes; then - G77=yes -else - G77= -fi -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - - -# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! -# find the maximum length of command line arguments -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 -$as_echo_n "checking the maximum length of command line arguments... " >&6; } -if ${lt_cv_sys_max_cmd_len+:} false; then : - $as_echo_n "(cached) " >&6 -else - i=0 - teststring="ABCD" - - case $build_os in - msdosdjgpp*) - # On DJGPP, this test can blow up pretty badly due to problems in libc - # (any single argument exceeding 2000 bytes causes a buffer overrun - # during glob expansion). Even if it were fixed, the result of this - # check would be larger than it should be. - lt_cv_sys_max_cmd_len=12288; # 12K is about right - ;; - - gnu*) - # Under GNU Hurd, this test is not required because there is - # no limit to the length of command line arguments. - # Libtool will interpret -1 as no limit whatsoever - lt_cv_sys_max_cmd_len=-1; - ;; - - cygwin* | mingw*) - # On Win9x/ME, this test blows up -- it succeeds, but takes - # about 5 minutes as the teststring grows exponentially. - # Worse, since 9x/ME are not pre-emptively multitasking, - # you end up with a "frozen" computer, even though with patience - # the test eventually succeeds (with a max line length of 256k). - # Instead, let's just punt: use the minimum linelength reported by - # all of the supported platforms: 8192 (on NT/2K/XP). - lt_cv_sys_max_cmd_len=8192; - ;; - - amigaos*) - # On AmigaOS with pdksh, this test takes hours, literally. - # So we just punt and use a minimum line length of 8192. - lt_cv_sys_max_cmd_len=8192; - ;; - - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) - # This has been around since 386BSD, at least. Likely further. - if test -x /sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` - elif test -x /usr/sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` - else - lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs - fi - # And add a safety zone - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - ;; - - interix*) - # We know the value 262144 and hardcode it with a safety zone (like BSD) - lt_cv_sys_max_cmd_len=196608 - ;; - - osf*) - # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure - # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not - # nice to cause kernel panics so lets avoid the loop below. - # First set a reasonable default. - lt_cv_sys_max_cmd_len=16384 - # - if test -x /sbin/sysconfig; then - case `/sbin/sysconfig -q proc exec_disable_arg_limit` in - *1*) lt_cv_sys_max_cmd_len=-1 ;; - esac - fi - ;; - sco3.2v5*) - lt_cv_sys_max_cmd_len=102400 - ;; - sysv5* | sco5v6* | sysv4.2uw2*) - kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` - if test -n "$kargmax"; then - lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` - else - lt_cv_sys_max_cmd_len=32768 - fi - ;; - *) - lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - else - SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} - while (test "X"`$SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \ - = "XX$teststring") >/dev/null 2>&1 && - new_result=`expr "X$teststring" : ".*" 2>&1` && - lt_cv_sys_max_cmd_len=$new_result && - test $i != 17 # 1/2 MB should be enough - do - i=`expr $i + 1` - teststring=$teststring$teststring - done - teststring= - # Add a significant safety factor because C++ compilers can tack on massive - # amounts of additional arguments before passing them to the linker. - # It appears as though 1/2 is a usable value. - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` - fi - ;; - esac - -fi - -if test -n $lt_cv_sys_max_cmd_len ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 -$as_echo "$lt_cv_sys_max_cmd_len" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 -$as_echo "none" >&6; } -fi - - - - - -# Check for command to grab the raw symbol name followed by C symbol from nm. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 -$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } -if ${lt_cv_sys_global_symbol_pipe+:} false; then : - $as_echo_n "(cached) " >&6 -else - -# These are sane defaults that work on at least a few old systems. -# [They come from Ultrix. What could be older than Ultrix?!! ;)] - -# Character class describing NM global symbol codes. -symcode='[BCDEGRST]' - -# Regexp to match symbols that can be accessed directly from C. -sympat='\([_A-Za-z][_A-Za-z0-9]*\)' - -# Transform an extracted symbol line into a proper C declaration -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" - -# Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - -# Define system-specific variables. -case $host_os in -aix*) - symcode='[BCDT]' - ;; -cygwin* | mingw* | pw32*) - symcode='[ABCDGISTW]' - ;; -hpux*) # Its linker distinguishes data from code symbols - if test "$host_cpu" = ia64; then - symcode='[ABCDEGRST]' - fi - lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - ;; -linux* | k*bsd*-gnu) - if test "$host_cpu" = ia64; then - symcode='[ABCDGIRSTW]' - lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - fi - ;; -irix* | nonstopux*) - symcode='[BCDEGRST]' - ;; -osf*) - symcode='[BCDEGQRST]' - ;; -solaris*) - symcode='[BDRT]' - ;; -sco3.2v5*) - symcode='[DT]' - ;; -sysv4.2uw2*) - symcode='[DT]' - ;; -sysv5* | sco5v6* | unixware* | OpenUNIX*) - symcode='[ABDT]' - ;; -sysv4) - symcode='[DFNSTU]' - ;; -esac - -# Handle CRLF in mingw tool chain -opt_cr= -case $build_os in -mingw*) - opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp - ;; -esac - -# If we're using GNU nm, then use its standard symbol codes. -case `$NM -V 2>&1` in -*GNU* | *'with BFD'*) - symcode='[ABCDGIRSTW]' ;; -esac - -# Try without a prefix undercore, then with it. -for ac_symprfx in "" "_"; do - - # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. - symxfrm="\\1 $ac_symprfx\\2 \\2" - - # Write the raw and C identifiers. - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" - - # Check to see that the pipe works correctly. - pipe_works=no - - rm -f conftest* - cat > conftest.$ac_ext <&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - # Now try to grab the symbols. - nlist=conftest.nm - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\""; } >&5 - (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s "$nlist"; then - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then - mv -f "$nlist"T "$nlist" - else - rm -f "$nlist"T - fi - - # Make sure that we snagged all the symbols we need. - if grep ' nm_test_var$' "$nlist" >/dev/null; then - if grep ' nm_test_func$' "$nlist" >/dev/null; then - cat < conftest.$ac_ext -#ifdef __cplusplus -extern "C" { -#endif - -EOF - # Now generate the symbol file. - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' - - cat <> conftest.$ac_ext -#if defined (__STDC__) && __STDC__ -# define lt_ptr_t void * -#else -# define lt_ptr_t char * -# define const -#endif - -/* The mapping between symbol names and symbols. */ -const struct { - const char *name; - lt_ptr_t address; -} -lt_preloaded_symbols[] = -{ -EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext - cat <<\EOF >> conftest.$ac_ext - {0, (lt_ptr_t) 0} -}; - -#ifdef __cplusplus -} -#endif -EOF - # Now try linking the two files. - mv conftest.$ac_objext conftstm.$ac_objext - lt_save_LIBS="$LIBS" - lt_save_CFLAGS="$CFLAGS" - LIBS="conftstm.$ac_objext" - CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext}; then - pipe_works=yes - fi - LIBS="$lt_save_LIBS" - CFLAGS="$lt_save_CFLAGS" - else - echo "cannot find nm_test_func in $nlist" >&5 - fi - else - echo "cannot find nm_test_var in $nlist" >&5 - fi - else - echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 - fi - else - echo "$progname: failed program was:" >&5 - cat conftest.$ac_ext >&5 - fi - rm -rf conftest* conftst* - - # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then - break - else - lt_cv_sys_global_symbol_pipe= - fi -done - -fi - -if test -z "$lt_cv_sys_global_symbol_pipe"; then - lt_cv_sys_global_symbol_to_cdecl= -fi -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 -$as_echo "failed" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 -$as_echo "ok" >&6; } -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 -$as_echo_n "checking for objdir... " >&6; } -if ${lt_cv_objdir+:} false; then : - $as_echo_n "(cached) " >&6 -else - rm -f .libs 2>/dev/null -mkdir .libs 2>/dev/null -if test -d .libs; then - lt_cv_objdir=.libs -else - # MS-DOS does not allow filenames that begin with a dot. - lt_cv_objdir=_libs -fi -rmdir .libs 2>/dev/null -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 -$as_echo "$lt_cv_objdir" >&6; } -objdir=$lt_cv_objdir - - - - - -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed='sed -e 1s/^X//' -sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g' - -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' - -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' - -# Constants: -rm="rm -f" - -# Global variables: -default_ofile=libtool -can_build_shared=yes - -# All known linkers require a `.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a -ltmain="$ac_aux_dir/ltmain.sh" -ofile="$default_ofile" -with_gnu_ld="$lt_cv_prog_gnu_ld" - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. -set dummy ${ac_tool_prefix}ar; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$AR"; then - ac_cv_prog_AR="$AR" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AR="${ac_tool_prefix}ar" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -AR=$ac_cv_prog_AR -if test -n "$AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -$as_echo "$AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_AR"; then - ac_ct_AR=$AR - # Extract the first word of "ar", so it can be a program name with args. -set dummy ar; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_AR"; then - ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_AR="ar" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_AR=$ac_cv_prog_ac_ct_AR -if test -n "$ac_ct_AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 -$as_echo "$ac_ct_AR" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_AR" = x; then - AR="false" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - AR=$ac_ct_AR - fi -else - AR="$ac_cv_prog_AR" -fi - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$RANLIB"; then - ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -RANLIB=$ac_cv_prog_RANLIB -if test -n "$RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -$as_echo "$RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_RANLIB"; then - ac_ct_RANLIB=$RANLIB - # Extract the first word of "ranlib", so it can be a program name with args. -set dummy ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_RANLIB"; then - ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_RANLIB="ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -if test -n "$ac_ct_RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 -$as_echo "$ac_ct_RANLIB" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_RANLIB" = x; then - RANLIB=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - RANLIB=$ac_ct_RANLIB - fi -else - RANLIB="$ac_cv_prog_RANLIB" -fi - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - - -old_CC="$CC" -old_CFLAGS="$CFLAGS" - -# Set sane defaults for various variables -test -z "$AR" && AR=ar -test -z "$AR_FLAGS" && AR_FLAGS=cru -test -z "$AS" && AS=as -test -z "$CC" && CC=cc -test -z "$LTCC" && LTCC=$CC -test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -test -z "$DLLTOOL" && DLLTOOL=dlltool -test -z "$LD" && LD=ld -test -z "$LN_S" && LN_S="ln -s" -test -z "$MAGIC_CMD" && MAGIC_CMD=file -test -z "$NM" && NM=nm -test -z "$SED" && SED=sed -test -z "$OBJDUMP" && OBJDUMP=objdump -test -z "$RANLIB" && RANLIB=: -test -z "$STRIP" && STRIP=: -test -z "$ac_objext" && ac_objext=o - -# Determine commands to create old-style static archives. -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' -old_postinstall_cmds='chmod 644 $oldlib' -old_postuninstall_cmds= - -if test -n "$RANLIB"; then - case $host_os in - openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" - ;; - *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" - ;; - esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" -fi - -for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - -# Only perform the check for file, if the check method requires it -case $deplibs_check_method in -file_magic*) - if test "$file_magic_cmd" = '$MAGIC_CMD'; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 -$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } -if ${lt_cv_path_MAGIC_CMD+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MAGIC_CMD in -[\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" - for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/${ac_tool_prefix}file; then - lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -EOF - fi ;; - esac - fi - break - fi - done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" - ;; -esac -fi - -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -if test -n "$MAGIC_CMD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -$as_echo "$MAGIC_CMD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - -if test -z "$lt_cv_path_MAGIC_CMD"; then - if test -n "$ac_tool_prefix"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 -$as_echo_n "checking for file... " >&6; } -if ${lt_cv_path_MAGIC_CMD+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $MAGIC_CMD in -[\\/*] | ?:[\\/]*) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" - for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/file; then - lt_cv_path_MAGIC_CMD="$ac_dir/file" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -EOF - fi ;; - esac - fi - break - fi - done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" - ;; -esac -fi - -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -if test -n "$MAGIC_CMD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 -$as_echo "$MAGIC_CMD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - else - MAGIC_CMD=: - fi -fi - - fi - ;; -esac - - - case $host_os in - rhapsody* | darwin*) - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. -set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DSYMUTIL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$DSYMUTIL"; then - ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -DSYMUTIL=$ac_cv_prog_DSYMUTIL -if test -n "$DSYMUTIL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 -$as_echo "$DSYMUTIL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_DSYMUTIL"; then - ac_ct_DSYMUTIL=$DSYMUTIL - # Extract the first word of "dsymutil", so it can be a program name with args. -set dummy dsymutil; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_DSYMUTIL"; then - ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL -if test -n "$ac_ct_DSYMUTIL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 -$as_echo "$ac_ct_DSYMUTIL" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_DSYMUTIL" = x; then - DSYMUTIL=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - DSYMUTIL=$ac_ct_DSYMUTIL - fi -else - DSYMUTIL="$ac_cv_prog_DSYMUTIL" -fi - - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. -set dummy ${ac_tool_prefix}nmedit; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_NMEDIT+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$NMEDIT"; then - ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -NMEDIT=$ac_cv_prog_NMEDIT -if test -n "$NMEDIT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 -$as_echo "$NMEDIT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_NMEDIT"; then - ac_ct_NMEDIT=$NMEDIT - # Extract the first word of "nmedit", so it can be a program name with args. -set dummy nmedit; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$ac_ct_NMEDIT"; then - ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_NMEDIT="nmedit" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT -if test -n "$ac_ct_NMEDIT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 -$as_echo "$ac_ct_NMEDIT" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_NMEDIT" = x; then - NMEDIT=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} -ac_tool_warned=yes ;; -esac - NMEDIT=$ac_ct_NMEDIT - fi -else - NMEDIT="$ac_cv_prog_NMEDIT" -fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 -$as_echo_n "checking for -single_module linker flag... " >&6; } -if ${lt_cv_apple_cc_single_mod+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then - # By default we will add the -single_module flag. You can override - # by either setting the environment variable LT_MULTI_MODULE - # non-empty at configure time, or by adding -multi_module to the - # link flags. - echo "int foo(void){return 1;}" > conftest.c - $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ - -dynamiclib ${wl}-single_module conftest.c - if test -f libconftest.dylib; then - lt_cv_apple_cc_single_mod=yes - rm -rf libconftest.dylib* - fi - rm conftest.c - fi -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 -$as_echo "$lt_cv_apple_cc_single_mod" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 -$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } -if ${lt_cv_ld_exported_symbols_list+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_ld_exported_symbols_list=no - save_LDFLAGS=$LDFLAGS - echo "_main" > conftest.sym - LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - lt_cv_ld_exported_symbols_list=yes -else - lt_cv_ld_exported_symbols_list=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 -$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } - case $host_os in - rhapsody* | darwin1.[0123]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; - darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - darwin*) - # if running on 10.5 or later, the deployment target defaults - # to the OS version, if on x86, and 10.4, the deployment - # target defaults to 10.4. Don't you love it? - case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in - 10.0,*86*-darwin8*|10.0,*-darwin[91]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[012]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - esac - ;; - esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then - _lt_dar_single_mod='$single_module' - fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' - else - _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}" - fi - if test "$DSYMUTIL" != ":"; then - _lt_dsymutil="~$DSYMUTIL \$lib || :" - else - _lt_dsymutil= - fi - ;; - esac - - -enable_dlopen=no -enable_win32_dll=no - -# Check whether --enable-libtool-lock was given. -if test "${enable_libtool_lock+set}" = set; then : - enableval=$enable_libtool_lock; -fi - -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - - -# Check whether --with-pic was given. -if test "${with_pic+set}" = set; then : - withval=$with_pic; pic_mode="$withval" -else - pic_mode=default -fi - -test -z "$pic_mode" && pic_mode=default - -# Use C for the default configuration in the libtool script -tagname= -lt_save_CC="$CC" -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -# Source file extension for C test sources. -ac_ext=c - -# Object file extension for compiled C test sources. -objext=o -objext=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(){return(0);}' - - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - -# save warnings/boilerplate of simple test code -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$rm conftest* - -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$rm -r conftest* - - - -lt_prog_compiler_no_builtin_flag= - -if test "$GCC" = yes; then - lt_prog_compiler_no_builtin_flag=' -fno-builtin' - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 -$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } -if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_rtti_exceptions=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="-fno-rtti -fno-exceptions" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7183: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:7187: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_rtti_exceptions=yes - fi - fi - $rm conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 -$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } - -if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then - lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" -else - : -fi - -fi - -lt_prog_compiler_wl= -lt_prog_compiler_pic= -lt_prog_compiler_static= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } - - if test "$GCC" = yes; then - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_static='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static='-Bstatic' - fi - ;; - - amigaos*) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - lt_prog_compiler_pic='-DDLL_EXPORT' - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic='-fno-common' - ;; - - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - lt_prog_compiler_can_build_shared=no - enable_shared=no - ;; - - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic=-Kconform_pic - fi - ;; - - hpux*) - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic='-fPIC' - ;; - esac - ;; - - *) - lt_prog_compiler_pic='-fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - lt_prog_compiler_wl='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static='-Bstatic' - else - lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' - fi - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - lt_prog_compiler_pic='-qnocommon' - lt_prog_compiler_wl='-Wl,' - ;; - esac - ;; - - mingw* | cygwin* | pw32* | os2*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - lt_prog_compiler_pic='-DDLL_EXPORT' - ;; - - hpux9* | hpux10* | hpux11*) - lt_prog_compiler_wl='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - lt_prog_compiler_wl='-Wl,' - # PIC (with -KPIC) is the default. - lt_prog_compiler_static='-non_shared' - ;; - - newsos6) - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - linux* | k*bsd*-gnu) - case $cc_basename in - icc* | ecc*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-static' - ;; - pgcc* | pgf77* | pgf90* | pgf95*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-fpic' - lt_prog_compiler_static='-Bstatic' - ;; - ccc*) - lt_prog_compiler_wl='-Wl,' - # All Alpha code is PIC. - lt_prog_compiler_static='-non_shared' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C 5.9 - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - lt_prog_compiler_wl='-Wl,' - ;; - *Sun\ F*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - lt_prog_compiler_wl='' - ;; - esac - ;; - esac - ;; - - osf3* | osf4* | osf5*) - lt_prog_compiler_wl='-Wl,' - # All OSF/1 code is PIC. - lt_prog_compiler_static='-non_shared' - ;; - - rdos*) - lt_prog_compiler_static='-non_shared' - ;; - - solaris*) - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - case $cc_basename in - f77* | f90* | f95*) - lt_prog_compiler_wl='-Qoption ld ';; - *) - lt_prog_compiler_wl='-Wl,';; - esac - ;; - - sunos4*) - lt_prog_compiler_wl='-Qoption ld ' - lt_prog_compiler_pic='-PIC' - lt_prog_compiler_static='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - lt_prog_compiler_pic='-Kconform_pic' - lt_prog_compiler_static='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_pic='-KPIC' - lt_prog_compiler_static='-Bstatic' - ;; - - unicos*) - lt_prog_compiler_wl='-Wl,' - lt_prog_compiler_can_build_shared=no - ;; - - uts4*) - lt_prog_compiler_pic='-pic' - lt_prog_compiler_static='-Bstatic' - ;; - - *) - lt_prog_compiler_can_build_shared=no - ;; - esac - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic" >&5 -$as_echo "$lt_prog_compiler_pic" >&6; } - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic"; then - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } -if ${lt_cv_prog_compiler_pic_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic -DPIC" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7473: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:7477: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works=yes - fi - fi - $rm conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } - -if test x"$lt_cv_prog_compiler_pic_works" = xyes; then - case $lt_prog_compiler_pic in - "" | " "*) ;; - *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; - esac -else - lt_prog_compiler_pic= - lt_prog_compiler_can_build_shared=no -fi - -fi -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic= - ;; - *) - lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" - ;; -esac - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if ${lt_cv_prog_compiler_static_works+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works=yes - fi - else - lt_cv_prog_compiler_static_works=yes - fi - fi - $rm -r conftest* - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 -$as_echo "$lt_cv_prog_compiler_static_works" >&6; } - -if test x"$lt_cv_prog_compiler_static_works" = xyes; then - : -else - lt_prog_compiler_static= -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o=no - $rm -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7577: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:7581: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o=yes - fi - fi - chmod u+w . 2>&5 - $rm conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files - $rm out/* && rmdir out - cd .. - rmdir conftest - $rm conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 -$as_echo "$lt_cv_prog_compiler_c_o" >&6; } - - -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $rm conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - runpath_var= - allow_undefined_flag= - enable_shared_with_static_runtimes=no - archive_cmds= - archive_expsym_cmds= - old_archive_From_new_cmds= - old_archive_from_expsyms_cmds= - export_dynamic_flag_spec= - whole_archive_flag_spec= - thread_safe_flag_spec= - hardcode_libdir_flag_spec= - hardcode_libdir_flag_spec_ld= - hardcode_libdir_separator= - hardcode_direct=no - hardcode_minus_L=no - hardcode_shlibpath_var=unsupported - link_all_deplibs=unknown - hardcode_automatic=no - module_cmds= - module_expsym_cmds= - always_export_symbols=no - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - include_expsyms= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. - extract_expsyms_cmds= - # Just being paranoid about ensuring that cc_basename is set. - for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - case $host_os in - cygwin* | mingw* | pw32*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - esac - - ld_shlibs=yes - if test "$with_gnu_ld" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec= - fi - supports_anon_versioning=no - case `$LD -v 2>/dev/null` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[3-9]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - ld_shlibs=no - cat <&2 - -*** Warning: the GNU linker, at least up to release 2.9.1, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to modify your PATH -*** so that a non-GNU linker is found, and then restart. - -EOF - fi - ;; - - amigaos*) - archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - - # Samuel A. Falvo II reports - # that the semantics of dynamic libraries on AmigaOS, at least up - # to version 4, is to share data among multiple programs linked - # with the same dynamic library. Since this doesn't match the - # behavior of shared libraries on other platforms, we can't use - # them. - ld_shlibs=no - ;; - - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - ld_shlibs=no - fi - ;; - - cygwin* | mingw* | pw32*) - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec='-L$libdir' - allow_undefined_flag=unsupported - always_export_symbols=no - enable_shared_with_static_runtimes=yes - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' - - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs=no - fi - ;; - - interix[3-9]*) - hardcode_direct=no - hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | k*bsd*-gnu) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - tmp_addflag= - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers - whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - *) - tmp_sharedflag='-shared' ;; - esac - archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test $supports_anon_versioning = yes; then - archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - $echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - link_all_deplibs=no - else - ld_shlibs=no - fi - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then - ld_shlibs=no - cat <&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -EOF - elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - esac - ;; - - sunos4*) - archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs=no - fi - ;; - esac - - if test "$ld_shlibs" = no; then - runpath_var= - hardcode_libdir_flag_spec= - export_dynamic_flag_spec= - whole_archive_flag_spec= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - allow_undefined_flag=unsupported - always_export_symbols=yes - archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct=unsupported - fi - ;; - - aix[4-9]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds='' - hardcode_direct=yes - hardcode_libdir_separator=':' - link_all_deplibs=yes - - if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L=yes - hardcode_libdir_flag_spec='-L$libdir' - hardcode_libdir_separator= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - always_export_symbols=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - allow_undefined_flag='-berok' - # Determine the default libpath from the value encoded in an empty executable. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' - allow_undefined_flag="-z nodefs" - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an empty executable. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag=' ${wl}-bernotok' - allow_undefined_flag=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec='$convenience' - archive_cmds_need_lc=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - # see comment about different semantics on the GNU ld section - ld_shlibs=no - ;; - - bsdi[45]*) - export_dynamic_flag_spec=-rdynamic - ;; - - cygwin* | mingw* | pw32*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec=' ' - allow_undefined_flag=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - old_archive_From_new_cmds='true' - # FIXME: Should let the user specify the lib program. - old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' - fix_srcfile_path='`cygpath -w "$srcfile"`' - enable_shared_with_static_runtimes=yes - ;; - - darwin* | rhapsody*) - case $host_os in - rhapsody* | darwin1.[012]) - allow_undefined_flag='${wl}-undefined ${wl}suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[012]) - allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - ;; - 10.*) - allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup' - ;; - esac - fi - ;; - esac - archive_cmds_need_lc=no - hardcode_direct=no - hardcode_automatic=yes - hardcode_shlibpath_var=unsupported - whole_archive_flag_spec='' - link_all_deplibs=yes - if test "$GCC" = yes ; then - output_verbose_link_cmd='echo' - archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - else - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' - module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - ld_shlibs=no - ;; - esac - fi - ;; - - dgux*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_shlibpath_var=no - ;; - - freebsd1*) - ld_shlibs=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes - hardcode_minus_L=yes - hardcode_shlibpath_var=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - hpux9*) - if test "$GCC" = yes; then - archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - export_dynamic_flag_spec='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - - hardcode_direct=yes - export_dynamic_flag_spec='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - - case $host_cpu in - hppa*64*|ia64*) - hardcode_libdir_flag_spec_ld='+b $libdir' - hardcode_direct=no - hardcode_shlibpath_var=no - ;; - *) - hardcode_direct=yes - export_dynamic_flag_spec='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_ld='-rpath $libdir' - fi - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - link_all_deplibs=yes - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - hardcode_shlibpath_var=no - ;; - - newsos6) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_shlibpath_var=no - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct=yes - hardcode_shlibpath_var=no - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - export_dynamic_flag_spec='${wl}-E' - else - case $host_os in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-R$libdir' - ;; - *) - archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - esac - fi - else - ld_shlibs=no - fi - ;; - - os2*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - allow_undefined_flag=unsupported - archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - old_archive_From_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - fi - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - else - allow_undefined_flag=' -expect_unresolved \*' - archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' - - # Both c and cxx compiler support -rpath directly - hardcode_libdir_flag_spec='-rpath $libdir' - fi - hardcode_libdir_separator=: - ;; - - solaris*) - no_undefined_flag=' -z text' - if test "$GCC" = yes; then - wlarc='${wl}' - archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' - else - wlarc='' - archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' - fi - hardcode_libdir_flag_spec='-R$libdir' - hardcode_shlibpath_var=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - whole_archive_flag_spec='-z allextract$convenience -z defaultextract' - fi - ;; - esac - link_all_deplibs=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - hardcode_libdir_flag_spec='-L$libdir' - hardcode_direct=yes - hardcode_minus_L=yes - hardcode_shlibpath_var=no - ;; - - sysv4) - case $host_vendor in - sni) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' - reload_cmds='$CC -r -o $output$reload_objs' - hardcode_direct=no - ;; - motorola) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - hardcode_shlibpath_var=no - ;; - - sysv4.3*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var=no - export_dynamic_flag_spec='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - ld_shlibs=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag='${wl}-z,text' - archive_cmds_need_lc=no - hardcode_shlibpath_var=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - no_undefined_flag='${wl}-z,text' - allow_undefined_flag='${wl}-z,nodefs' - archive_cmds_need_lc=no - hardcode_shlibpath_var=no - hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - hardcode_libdir_separator=':' - link_all_deplibs=yes - export_dynamic_flag_spec='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec='-L$libdir' - hardcode_shlibpath_var=no - ;; - - *) - ld_shlibs=no - ;; - esac - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 -$as_echo "$ld_shlibs" >&6; } -test "$ld_shlibs" = no && can_build_shared=no - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $archive_cmds in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } - $rm conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl - pic_flag=$lt_prog_compiler_pic - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag - allow_undefined_flag= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - archive_cmds_need_lc=no - else - archive_cmds_need_lc=yes - fi - allow_undefined_flag=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $rm conftest* - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc" >&5 -$as_echo "$archive_cmds_need_lc" >&6; } - ;; - esac - fi - ;; -esac - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" - -if test "$GCC" = yes; then - case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; - esac - lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then - # if the path contains ";" then we assume it to be the separator - # otherwise default to the standard path separator (i.e. ":") - it is - # assumed that no part of a normal pathname contains ";" but that should - # okay in the real world where ";" in dirpaths is itself problematic. - lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e 's/;/ /g'` - else - lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. - lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` - for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else - test -d "$lt_sys_path" && \ - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" - fi - done - lt_search_path_spec=`echo $lt_tmp_lt_search_path_spec | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; - for (lt_i = NF; lt_i > 0; lt_i--) { - if ($lt_i != "" && $lt_i != ".") { - if ($lt_i == "..") { - lt_count++; - } else { - if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; - } else { - lt_count--; - } - } - } - } - if (lt_foo != "") { lt_freq[lt_foo]++; } - if (lt_freq[lt_foo] == 1) { print lt_foo; } -}'` - sys_lib_search_path_spec=`echo $lt_search_path_spec` -else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -fi -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[4-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $rm \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[123]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix[3-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -nto-qnx*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - export_dynamic_flag_spec='${wl}-Blargedynsym' - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - shlibpath_overrides_runpath=no - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - shlibpath_overrides_runpath=yes - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no - -if ${lt_cv_sys_lib_search_path_spec+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" -fi - -sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -if ${lt_cv_sys_lib_dlsearch_path_spec+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" -fi - -sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action= -if test -n "$hardcode_libdir_flag_spec" || \ - test -n "$runpath_var" || \ - test "X$hardcode_automatic" = "Xyes" ; then - - # We can hardcode non-existant directories. - if test "$hardcode_direct" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, )" != no && - test "$hardcode_minus_L" != no; then - # Linking always hardcodes the temporary library directory. - hardcode_action=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 -$as_echo "$hardcode_action" >&6; } - -if test "$hardcode_action" = relink; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi - -striplib= -old_striplib= -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 -$as_echo_n "checking whether stripping libraries is possible... " >&6; } -if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP" ; then - striplib="$STRIP -x" - old_striplib="$STRIP -S" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - ;; - *) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - ;; - esac -fi - -if test "x$enable_dlopen" != xyes; then - enable_dlopen=unknown - enable_dlopen_self=unknown - enable_dlopen_self_static=unknown -else - lt_cv_dlopen=no - lt_cv_dlopen_libs= - - case $host_os in - beos*) - lt_cv_dlopen="load_add_on" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ;; - - mingw* | pw32*) - lt_cv_dlopen="LoadLibrary" - lt_cv_dlopen_libs= - ;; - - cygwin*) - lt_cv_dlopen="dlopen" - lt_cv_dlopen_libs= - ;; - - darwin*) - # if libdl is installed we need to link against it - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -$as_echo_n "checking for dlopen in -ldl... " >&6; } -if ${ac_cv_lib_dl_dlopen+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dl_dlopen=yes -else - ac_cv_lib_dl_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" -else - - lt_cv_dlopen="dyld" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - -fi - - ;; - - *) - ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" -if test "x$ac_cv_func_shl_load" = xyes; then : - lt_cv_dlopen="shl_load" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 -$as_echo_n "checking for shl_load in -ldld... " >&6; } -if ${ac_cv_lib_dld_shl_load+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char shl_load (); -int -main () -{ -return shl_load (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dld_shl_load=yes -else - ac_cv_lib_dld_shl_load=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 -$as_echo "$ac_cv_lib_dld_shl_load" >&6; } -if test "x$ac_cv_lib_dld_shl_load" = xyes; then : - lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" -else - ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" -if test "x$ac_cv_func_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 -$as_echo_n "checking for dlopen in -ldl... " >&6; } -if ${ac_cv_lib_dl_dlopen+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldl $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dl_dlopen=yes -else - ac_cv_lib_dl_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 -$as_echo "$ac_cv_lib_dl_dlopen" >&6; } -if test "x$ac_cv_lib_dl_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 -$as_echo_n "checking for dlopen in -lsvld... " >&6; } -if ${ac_cv_lib_svld_dlopen+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lsvld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dlopen (); -int -main () -{ -return dlopen (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_svld_dlopen=yes -else - ac_cv_lib_svld_dlopen=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 -$as_echo "$ac_cv_lib_svld_dlopen" >&6; } -if test "x$ac_cv_lib_svld_dlopen" = xyes; then : - lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 -$as_echo_n "checking for dld_link in -ldld... " >&6; } -if ${ac_cv_lib_dld_dld_link+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-ldld $LIBS" -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char dld_link (); -int -main () -{ -return dld_link (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_dld_dld_link=yes -else - ac_cv_lib_dld_dld_link=no -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 -$as_echo "$ac_cv_lib_dld_dld_link" >&6; } -if test "x$ac_cv_lib_dld_dld_link" = xyes; then : - lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" -fi - - -fi - - -fi - - -fi - - -fi - - -fi - - ;; - esac - - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else - enable_dlopen=no - fi - - case $lt_cv_dlopen in - dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - - save_LDFLAGS="$LDFLAGS" - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - - save_LIBS="$LIBS" - LIBS="$lt_cv_dlopen_libs $LIBS" - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 -$as_echo_n "checking whether a program can dlopen itself... " >&6; } -if ${lt_cv_dlopen_self+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - lt_cv_dlopen_self=cross -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext < -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -#ifdef __cplusplus -extern "C" void exit (int); -#endif - -void fnord() { int i=42;} -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - /* dlclose (self); */ - } - else - puts (dlerror ()); - - exit (status); -} -EOF - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) >&5 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; - x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; - x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; - esac - else : - # compilation failed - lt_cv_dlopen_self=no - fi -fi -rm -fr conftest* - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 -$as_echo "$lt_cv_dlopen_self" >&6; } - - if test "x$lt_cv_dlopen_self" = xyes; then - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 -$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } -if ${lt_cv_dlopen_self_static+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test "$cross_compiling" = yes; then : - lt_cv_dlopen_self_static=cross -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext < -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -#ifdef __cplusplus -extern "C" void exit (int); -#endif - -void fnord() { int i=42;} -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - /* dlclose (self); */ - } - else - puts (dlerror ()); - - exit (status); -} -EOF - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 - (eval $ac_link) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) >&5 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; - x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; - x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; - esac - else : - # compilation failed - lt_cv_dlopen_self_static=no - fi -fi -rm -fr conftest* - - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 -$as_echo "$lt_cv_dlopen_self_static" >&6; } - fi - - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" - ;; - esac - - case $lt_cv_dlopen_self in - yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; - *) enable_dlopen_self=unknown ;; - esac - - case $lt_cv_dlopen_self_static in - yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; - *) enable_dlopen_self_static=unknown ;; - esac -fi - - -# Report which library types will actually be built -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 -$as_echo_n "checking if libtool supports shared libraries... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 -$as_echo "$can_build_shared" >&6; } - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 -$as_echo_n "checking whether to build shared libraries... " >&6; } -test "$can_build_shared" = "no" && enable_shared=no - -# On AIX, shared libraries and static libraries use the same namespace, and -# are all built from PIC. -case $host_os in -aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - -aix[4-9]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 -$as_echo "$enable_shared" >&6; } - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 -$as_echo_n "checking whether to build static libraries... " >&6; } -# Make sure either enable_shared or enable_static is yes. -test "$enable_shared" = yes || enable_static=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 -$as_echo "$enable_static" >&6; } - -# The else clause should only fire when bootstrapping the -# libtool distribution, otherwise you forgot to ship ltmain.sh -# with your package, and you will get complaints that there are -# no rules to generate ltmain.sh. -if test -f "$ltmain"; then - # See if we are running on zsh, and set the options which allow our commands through - # without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST - fi - # Now quote all the things that may contain metacharacters while being - # careful not to overquote the AC_SUBSTed values. We take copies of the - # variables and quote the copies for generation of the libtool script. - for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ - SED SHELL STRIP \ - libname_spec library_names_spec soname_spec extract_expsyms_cmds \ - old_striplib striplib file_magic_cmd finish_cmds finish_eval \ - deplibs_check_method reload_flag reload_cmds need_locks \ - lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ - lt_cv_sys_global_symbol_to_c_name_address \ - sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ - old_postinstall_cmds old_postuninstall_cmds \ - compiler \ - CC \ - LD \ - lt_prog_compiler_wl \ - lt_prog_compiler_pic \ - lt_prog_compiler_static \ - lt_prog_compiler_no_builtin_flag \ - export_dynamic_flag_spec \ - thread_safe_flag_spec \ - whole_archive_flag_spec \ - enable_shared_with_static_runtimes \ - old_archive_cmds \ - old_archive_from_new_cmds \ - predep_objects \ - postdep_objects \ - predeps \ - postdeps \ - compiler_lib_search_path \ - compiler_lib_search_dirs \ - archive_cmds \ - archive_expsym_cmds \ - postinstall_cmds \ - postuninstall_cmds \ - old_archive_from_expsyms_cmds \ - allow_undefined_flag \ - no_undefined_flag \ - export_symbols_cmds \ - hardcode_libdir_flag_spec \ - hardcode_libdir_flag_spec_ld \ - hardcode_libdir_separator \ - hardcode_automatic \ - module_cmds \ - module_expsym_cmds \ - lt_cv_prog_compiler_c_o \ - fix_srcfile_path \ - exclude_expsyms \ - include_expsyms; do - - case $var in - old_archive_cmds | \ - old_archive_from_new_cmds | \ - archive_cmds | \ - archive_expsym_cmds | \ - module_cmds | \ - module_expsym_cmds | \ - old_archive_from_expsyms_cmds | \ - export_symbols_cmds | \ - extract_expsyms_cmds | reload_cmds | finish_cmds | \ - postinstall_cmds | postuninstall_cmds | \ - old_postinstall_cmds | old_postuninstall_cmds | \ - sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) - # Double-quote double-evaled strings. - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" - ;; - *) - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" - ;; - esac - done - - case $lt_echo in - *'\$0 --fallback-echo"') - lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` - ;; - esac - -cfgfile="${ofile}T" - trap "$rm \"$cfgfile\"; exit 1" 1 2 15 - $rm -f "$cfgfile" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ofile" >&5 -$as_echo "$as_me: creating $ofile" >&6;} - - cat <<__EOF__ >> "$cfgfile" -#! $SHELL - -# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) -# NOTE: Changes made to this file will be lost: look at ltmain.sh. -# -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 -# Free Software Foundation, Inc. -# -# This file is part of GNU Libtool: -# Originally by Gordon Matzigkeit , 1996 -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# A sed program that does not truncate output. -SED=$lt_SED - -# Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="$SED -e 1s/^X//" - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -# The names of the tagged configurations supported by this script. -available_tags= - -# ### BEGIN LIBTOOL CONFIG - -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc - -# Whether or not to disallow shared libs when runtime libs are static -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# An echo program that does not interpret backslashes. -echo=$lt_echo - -# The archiver. -AR=$lt_AR -AR_FLAGS=$lt_AR_FLAGS - -# A C compiler. -LTCC=$lt_LTCC - -# LTCC compiler flags. -LTCFLAGS=$lt_LTCFLAGS - -# A language-specific compiler. -CC=$lt_compiler - -# Is the compiler the GNU C compiler? -with_gcc=$GCC - -# An ERE matcher. -EGREP=$lt_EGREP - -# The linker used to build libraries. -LD=$lt_LD - -# Whether we need hard or soft links. -LN_S=$lt_LN_S - -# A BSD-compatible nm program. -NM=$lt_NM - -# A symbol stripping program -STRIP=$lt_STRIP - -# Used to examine libraries when file_magic_cmd begins "file" -MAGIC_CMD=$MAGIC_CMD - -# Used on cygwin: DLL creation program. -DLLTOOL="$DLLTOOL" - -# Used on cygwin: object dumper. -OBJDUMP="$OBJDUMP" - -# Used on cygwin: assembler. -AS="$AS" - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl - -# Object file suffix (normally "o"). -objext="$ac_objext" - -# Old archive suffix (normally "a"). -libext="$libext" - -# Shared library suffix (normally ".so"). -shrext_cmds='$shrext_cmds' - -# Executable file suffix (normally ""). -exeext="$exeext" - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic -pic_mode=$pic_mode - -# What is the maximum length of a command? -max_cmd_len=$lt_cv_sys_max_cmd_len - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Do we need the lib prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec - -# Compiler flag to generate thread-safe objects. -thread_safe_flag_spec=$lt_thread_safe_flag_spec - -# Library versioning type. -version_type=$version_type - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME. -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Commands used to build and install an old-style archive. -RANLIB=$lt_RANLIB -old_archive_cmds=$lt_old_archive_cmds -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds - -# Commands used to build and install a shared archive. -archive_cmds=$lt_archive_cmds -archive_expsym_cmds=$lt_archive_expsym_cmds -postinstall_cmds=$lt_postinstall_cmds -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to build a loadable module (assumed same as above if empty) -module_cmds=$lt_module_cmds -module_expsym_cmds=$lt_module_expsym_cmds - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - -# Dependencies to place before the objects being linked to create a -# shared library. -predep_objects=$lt_predep_objects - -# Dependencies to place after the objects being linked to create a -# shared library. -postdep_objects=$lt_postdep_objects - -# Dependencies to place before the objects being linked to create a -# shared library. -predeps=$lt_predeps - -# Dependencies to place after the objects being linked to create a -# shared library. -postdeps=$lt_postdeps - -# The directories searched by this compiler when creating a shared -# library -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method == file_magic. -file_magic_cmd=$lt_file_magic_cmd - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag - -# Flag that forces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# Same as above, but a single script fragment to be evaled but not shown. -finish_eval=$lt_finish_eval - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm in a C name address pair -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# This is the shared library runtime path variable. -runpath_var=$runpath_var - -# This is the shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec - -# If ld is used when linking, flag to hardcode \$libdir into -# a binary during linking. This must work even if \$libdir does -# not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator - -# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the -# resulting binary. -hardcode_direct=$hardcode_direct - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L=$hardcode_minus_L - -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into -# the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var - -# Set to yes if building a shared library automatically hardcodes DIR into the library -# and all subsequent libraries and executables linked against it. -hardcode_automatic=$hardcode_automatic - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at relink time. -variables_saved_for_relink="$variables_saved_for_relink" - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs - -# Compile-time system search path for libraries -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Run-time system search path for libraries -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path - -# Set to yes if exported symbols are required. -always_export_symbols=$always_export_symbols - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms - -# ### END LIBTOOL CONFIG - -__EOF__ - - - case $host_os in - aix3*) - cat <<\EOF >> "$cfgfile" - -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -EOF - ;; - esac - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) - - mv -f "$cfgfile" "$ofile" || \ - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" - -else - # If there is no Makefile yet, we rely on a make rule to execute - # `config.status --recheck' to rerun these tests and create the - # libtool script then. - ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` - if test -f "$ltmain_in"; then - test -f Makefile && make "$ltmain" - fi -fi - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -CC="$lt_save_CC" - - -# Check whether --with-tags was given. -if test "${with_tags+set}" = set; then : - withval=$with_tags; tagnames="$withval" -fi - - -if test -f "$ltmain" && test -n "$tagnames"; then - if test ! -f "${ofile}"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: output file \`$ofile' does not exist" >&5 -$as_echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} - fi - - if test -z "$LTCC"; then - eval "`$SHELL ${ofile} --config | grep '^LTCC='`" - if test -z "$LTCC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: output file \`$ofile' does not look like a libtool script" >&5 -$as_echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} - else - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 -$as_echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} - fi - fi - if test -z "$LTCFLAGS"; then - eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" - fi - - # Extract list of available tagged configurations in $ofile. - # Note that this assumes the entire list is on one line. - available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` - - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for tagname in $tagnames; do - IFS="$lt_save_ifs" - # Check whether tagname contains only valid characters - case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in - "") ;; - *) as_fn_error $? "invalid tag name: $tagname" "$LINENO" 5 - ;; - esac - - if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null - then - as_fn_error $? "tag name \"$tagname\" already exists" "$LINENO" 5 - fi - - # Update the list of available tags. - if test -n "$tagname"; then - echo appending configuration tag \"$tagname\" to $ofile - - case $tagname in - CXX) - if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then - ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - - - -archive_cmds_need_lc_CXX=no -allow_undefined_flag_CXX= -always_export_symbols_CXX=no -archive_expsym_cmds_CXX= -export_dynamic_flag_spec_CXX= -hardcode_direct_CXX=no -hardcode_libdir_flag_spec_CXX= -hardcode_libdir_flag_spec_ld_CXX= -hardcode_libdir_separator_CXX= -hardcode_minus_L_CXX=no -hardcode_shlibpath_var_CXX=unsupported -hardcode_automatic_CXX=no -module_cmds_CXX= -module_expsym_cmds_CXX= -link_all_deplibs_CXX=unknown -old_archive_cmds_CXX=$old_archive_cmds -no_undefined_flag_CXX= -whole_archive_flag_spec_CXX= -enable_shared_with_static_runtimes_CXX=no - -# Dependencies to place before and after the object being linked: -predep_objects_CXX= -postdep_objects_CXX= -predeps_CXX= -postdeps_CXX= -compiler_lib_search_path_CXX= -compiler_lib_search_dirs_CXX= - -# Source file extension for C++ test sources. -ac_ext=cpp - -# Object file extension for compiled C++ test sources. -objext=o -objext_CXX=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(int, char *[]) { return(0); }' - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - -# save warnings/boilerplate of simple test code -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$rm conftest* - -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$rm -r conftest* - - -# Allow CC to be a program name with arguments. -lt_save_CC=$CC -lt_save_LD=$LD -lt_save_GCC=$GCC -GCC=$GXX -lt_save_with_gnu_ld=$with_gnu_ld -lt_save_path_LD=$lt_cv_path_LD -if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then - lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx -else - $as_unset lt_cv_prog_gnu_ld -fi -if test -n "${lt_cv_path_LDCXX+set}"; then - lt_cv_path_LD=$lt_cv_path_LDCXX -else - $as_unset lt_cv_path_LD -fi -test -z "${LDCXX+set}" || LD=$LDCXX -CC=${CXX-"c++"} -compiler=$CC -compiler_CXX=$CC -for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - -# We don't want -fno-exception wen compiling C++ code, so set the -# no_builtin_flag separately -if test "$GXX" = yes; then - lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' -else - lt_prog_compiler_no_builtin_flag_CXX= -fi - -if test "$GXX" = yes; then - # Set up default GNU C++ configuration - - -# Check whether --with-gnu-ld was given. -if test "${with_gnu_ld+set}" = set; then : - withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes -else - with_gnu_ld=no -fi - -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 -$as_echo_n "checking for ld used by $CC... " >&6; } - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [\\/]* | ?:[\\/]*) - re_direlt='/[^/][^/]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` - while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do - ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 -$as_echo_n "checking for GNU ld... " >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 -$as_echo_n "checking for non-GNU ld... " >&6; } -fi -if ${lt_cv_path_LD+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &5 -$as_echo "$LD" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi -test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 -$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } -if ${lt_cv_prog_gnu_ld+:} false; then : - $as_echo_n "(cached) " >&6 -else - # I'd rather use --version here, but apparently some GNU lds only accept -v. -case `$LD -v 2>&1 &5 -$as_echo "$lt_cv_prog_gnu_ld" >&6; } -with_gnu_ld=$lt_cv_prog_gnu_ld - - - - # Check if GNU C++ uses GNU ld as the underlying linker, since the - # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - - hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - - # If archive_cmds runs LD, not CC, wlarc should be empty - # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to - # investigate it a little bit more. (MM) - wlarc='${wl}' - - # ancient GNU ld didn't support --whole-archive et. al. - if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ - grep 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec_CXX= - fi - else - with_gnu_ld=no - wlarc= - - # A generic and very simple default shared library creation - # command for GNU C++ for the case where it uses the native - # linker, instead of GNU ld. If possible, this setting should - # overridden to take advantage of the native linker features on - # the platform it is being used on. - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - fi - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' - -else - GXX=no - with_gnu_ld=no - wlarc= -fi - -# PORTME: fill in a description of your system's C++ link characteristics -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } -ld_shlibs_CXX=yes -case $host_os in - aix3*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - aix[4-9]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - case $ld_flag in - *-brtl*) - aix_use_runtimelinking=yes - break - ;; - esac - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds_CXX='' - hardcode_direct_CXX=yes - hardcode_libdir_separator_CXX=':' - link_all_deplibs_CXX=yes - - if test "$GXX" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct_CXX=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L_CXX=yes - hardcode_libdir_flag_spec_CXX='-L$libdir' - hardcode_libdir_separator_CXX= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - always_export_symbols_CXX=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - allow_undefined_flag_CXX='-berok' - # Determine the default libpath from the value encoded in an empty executable. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" - - archive_expsym_cmds_CXX="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' - allow_undefined_flag_CXX="-z nodefs" - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an empty executable. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag_CXX=' ${wl}-bernotok' - allow_undefined_flag_CXX=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec_CXX='$convenience' - archive_cmds_need_lc_CXX=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag_CXX=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - ld_shlibs_CXX=no - fi - ;; - - chorus*) - case $cc_basename in - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - - cygwin* | mingw* | pw32*) - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec_CXX='-L$libdir' - allow_undefined_flag_CXX=unsupported - always_export_symbols_CXX=no - enable_shared_with_static_runtimes_CXX=yes - - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs_CXX=no - fi - ;; - darwin* | rhapsody*) - archive_cmds_need_lc_CXX=no - hardcode_direct_CXX=no - hardcode_automatic_CXX=yes - hardcode_shlibpath_var_CXX=unsupported - whole_archive_flag_spec_CXX='' - link_all_deplibs_CXX=yes - allow_undefined_flag_CXX="$_lt_dar_allow_undefined" - if test "$GXX" = yes ; then - output_verbose_link_cmd='echo' - archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - if test "$lt_cv_apple_cc_single_mod" != "yes"; then - archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" - archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" - fi - else - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' - module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - ld_shlibs_CXX=no - ;; - esac - fi - ;; - - dgux*) - case $cc_basename in - ec++*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - ghcx*) - # Green Hills C++ Compiler - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - freebsd[12]*) - # C++ shared libraries reported to be fairly broken before switch to ELF - ld_shlibs_CXX=no - ;; - freebsd-elf*) - archive_cmds_need_lc_CXX=no - ;; - freebsd* | dragonfly*) - # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF - # conventions - ld_shlibs_CXX=yes - ;; - gnu*) - ;; - hpux9*) - hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_CXX=: - export_dynamic_flag_spec_CXX='${wl}-E' - hardcode_direct_CXX=yes - hardcode_minus_L_CXX=yes # Not in the search PATH, - # but as the default - # location of the library. - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - aCC*) - archive_cmds_CXX='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes; then - archive_cmds_CXX='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - fi - ;; - esac - ;; - hpux10*|hpux11*) - if test $with_gnu_ld = no; then - hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_CXX=: - - case $host_cpu in - hppa*64*|ia64*) ;; - *) - export_dynamic_flag_spec_CXX='${wl}-E' - ;; - esac - fi - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct_CXX=no - hardcode_shlibpath_var_CXX=no - ;; - *) - hardcode_direct_CXX=yes - hardcode_minus_L_CXX=yes # Not in the search PATH, - # but as the default - # location of the library. - ;; - esac - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - aCC*) - case $host_cpu in - hppa*64*) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then - case $host_cpu in - hppa*64*) - archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - fi - else - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - fi - ;; - esac - ;; - interix[3-9]*) - hardcode_direct_CXX=no - hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - irix5* | irix6*) - case $cc_basename in - CC*) - # SGI C++ - archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - - # Archives containing C++ object files must be created using - # "CC -ar", where "CC" is the IRIX C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' - ;; - *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' - fi - fi - link_all_deplibs_CXX=yes - ;; - esac - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_CXX=: - ;; - linux* | k*bsd*-gnu) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - - hardcode_libdir_flag_spec_CXX='${wl}--rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' - ;; - icpc*) - # Intel C++ - with_gnu_ld=yes - # version 8.0 and above of icpc choke on multiply defined symbols - # if we add $predep_objects and $postdep_objects, however 7.1 and - # earlier do not add the objects themselves. - case `$CC -V 2>&1` in - *"Version 7."*) - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - *) # Version 8.0 or newer - tmp_idyn= - case $host_cpu in - ia64*) tmp_idyn=' -i_dynamic';; - esac - archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - esac - archive_cmds_need_lc_CXX=no - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' - - hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec_CXX='${wl}--export-dynamic' - whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - ;; - cxx*) - # Compaq C++ - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' - - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec_CXX='-rpath $libdir' - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' - hardcode_libdir_flag_spec_CXX='-R$libdir' - whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - - # Not sure whether something based on - # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 - # would be better. - output_verbose_link_cmd='echo' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' - ;; - esac - ;; - esac - ;; - lynxos*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - m88k*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - mvs*) - case $cc_basename in - cxx*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= - hardcode_libdir_flag_spec_CXX='-R$libdir' - hardcode_direct_CXX=yes - hardcode_shlibpath_var_CXX=no - fi - # Workaround some broken pre-1.5 toolchains - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' - ;; - openbsd2*) - # C++ shared libraries are fairly broken - ld_shlibs_CXX=no - ;; - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct_CXX=yes - hardcode_shlibpath_var_CXX=no - archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - export_dynamic_flag_spec_CXX='${wl}-E' - whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - fi - output_verbose_link_cmd='echo' - else - ld_shlibs_CXX=no - fi - ;; - osf3*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - hardcode_libdir_separator_CXX=: - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' - - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - cxx*) - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' - - else - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - fi - ;; - esac - ;; - osf4* | osf5*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' - hardcode_libdir_separator_CXX=: - - # Archives containing C++ object files must be created using - # the KAI C++ compiler. - old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - cxx*) - allow_undefined_flag_CXX=' -expect_unresolved \*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ - $rm $lib.exp' - - hardcode_libdir_flag_spec_CXX='-rpath $libdir' - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - - hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_CXX=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' - - else - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - fi - ;; - esac - ;; - psos*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - lcc*) - # Lucid - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - archive_cmds_need_lc_CXX=yes - no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' - - hardcode_libdir_flag_spec_CXX='-R$libdir' - hardcode_shlibpath_var_CXX=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. - # Supported since Solaris 2.6 (maybe 2.5.1?) - whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' - ;; - esac - link_all_deplibs_CXX=yes - - output_verbose_link_cmd='echo' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' - ;; - gcx*) - # Green Hills C++ Compiler - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - - # The C++ compiler must be used to create the archive. - old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' - ;; - *) - # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - no_undefined_flag_CXX=' ${wl}-z ${wl}defs' - if $CC --version | grep -v '^2\.7' > /dev/null; then - archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" - else - # g++ 2.7 appears to require `-G' NOT `-shared' on this - # platform. - archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" - fi - - hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - ;; - esac - fi - ;; - esac - ;; - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag_CXX='${wl}-z,text' - archive_cmds_need_lc_CXX=no - hardcode_shlibpath_var_CXX=no - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - # So that behaviour is only enabled if SCOABSPATH is set to a - # non-empty value in the environment. Most likely only useful for - # creating official distributions of packages. - # This is a hack until libtool officially supports absolute path - # names for shared libraries. - no_undefined_flag_CXX='${wl}-z,text' - allow_undefined_flag_CXX='${wl}-z,nodefs' - archive_cmds_need_lc_CXX=no - hardcode_shlibpath_var_CXX=no - hardcode_libdir_flag_spec_CXX='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - hardcode_libdir_separator_CXX=':' - link_all_deplibs_CXX=yes - export_dynamic_flag_spec_CXX='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - archive_cmds_CXX='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_CXX='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - esac - ;; - vxworks*) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; - *) - # FIXME: insert proper C++ library support - ld_shlibs_CXX=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 -$as_echo "$ld_shlibs_CXX" >&6; } -test "$ld_shlibs_CXX" = no && can_build_shared=no - -GCC_CXX="$GXX" -LD_CXX="$LD" - -cat > conftest.$ac_ext <&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; }; then - # Parse the compiler output and extract the necessary - # objects, libraries and library flags. - - # Sentinel used to keep track of whether or not we are before - # the conftest object file. - pre_test_object_deps_done=no - - # The `*' in the case matches for architectures that use `case' in - # $output_verbose_cmd can trigger glob expansion during the loop - # eval without this substitution. - output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"` - - for p in `eval $output_verbose_link_cmd`; do - case $p in - - -L* | -R* | -l*) - # Some compilers place space between "-{L,R}" and the path. - # Remove the space. - if test $p = "-L" \ - || test $p = "-R"; then - prev=$p - continue - else - prev= - fi - - if test "$pre_test_object_deps_done" = no; then - case $p in - -L* | -R*) - # Internal compiler library paths should come after those - # provided the user. The postdeps already come after the - # user supplied libs so there is no need to process them. - if test -z "$compiler_lib_search_path_CXX"; then - compiler_lib_search_path_CXX="${prev}${p}" - else - compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" - fi - ;; - # The "-l" case would never come before the object being - # linked, so don't bother handling this case. - esac - else - if test -z "$postdeps_CXX"; then - postdeps_CXX="${prev}${p}" - else - postdeps_CXX="${postdeps_CXX} ${prev}${p}" - fi - fi - ;; - - *.$objext) - # This assumes that the test object file only shows up - # once in the compiler output. - if test "$p" = "conftest.$objext"; then - pre_test_object_deps_done=yes - continue - fi - - if test "$pre_test_object_deps_done" = no; then - if test -z "$predep_objects_CXX"; then - predep_objects_CXX="$p" - else - predep_objects_CXX="$predep_objects_CXX $p" - fi - else - if test -z "$postdep_objects_CXX"; then - postdep_objects_CXX="$p" - else - postdep_objects_CXX="$postdep_objects_CXX $p" - fi - fi - ;; - - *) ;; # Ignore the rest. - - esac - done - - # Clean up. - rm -f a.out a.exe -else - echo "libtool.m4: error: problem compiling CXX test program" -fi - -$rm -f confest.$objext - -compiler_lib_search_dirs_CXX= -if test -n "$compiler_lib_search_path_CXX"; then - compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` -fi - -# PORTME: override above test on systems where it is broken -case $host_os in -interix[3-9]*) - # Interix 3.5 installs completely hosed .la files for C++, so rather than - # hack all around it, let's just trust "g++" to DTRT. - predep_objects_CXX= - postdep_objects_CXX= - postdeps_CXX= - ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - # - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - if test "$solaris_use_stlport4" != yes; then - postdeps_CXX='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - postdeps_CXX='-library=Cstd -library=Crun' - fi - ;; - esac - ;; -esac - -case " $postdeps_CXX " in -*" -lc "*) archive_cmds_need_lc_CXX=no ;; -esac - -lt_prog_compiler_wl_CXX= -lt_prog_compiler_pic_CXX= -lt_prog_compiler_static_CXX= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } - - # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_CXX='-Bstatic' - fi - ;; - amigaos*) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' - ;; - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - mingw* | cygwin* | os2* | pw32*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - lt_prog_compiler_pic_CXX='-DDLL_EXPORT' - ;; - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic_CXX='-fno-common' - ;; - *djgpp*) - # DJGPP does not support shared libraries at all - lt_prog_compiler_pic_CXX= - ;; - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic_CXX=-Kconform_pic - fi - ;; - hpux*) - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - ;; - *) - lt_prog_compiler_pic_CXX='-fPIC' - ;; - esac - ;; - *) - lt_prog_compiler_pic_CXX='-fPIC' - ;; - esac - else - case $host_os in - aix[4-9]*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_CXX='-Bstatic' - else - lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' - fi - ;; - chorus*) - case $cc_basename in - cxch68*) - # Green Hills C++ Compiler - # _LT_AC_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" - ;; - esac - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - lt_prog_compiler_pic_CXX='-qnocommon' - lt_prog_compiler_wl_CXX='-Wl,' - ;; - esac - ;; - dgux*) - case $cc_basename in - ec++*) - lt_prog_compiler_pic_CXX='-KPIC' - ;; - ghcx*) - # Green Hills C++ Compiler - lt_prog_compiler_pic_CXX='-pic' - ;; - *) - ;; - esac - ;; - freebsd* | dragonfly*) - # FreeBSD uses GNU C++ - ;; - hpux9* | hpux10* | hpux11*) - case $cc_basename in - CC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then - lt_prog_compiler_pic_CXX='+Z' - fi - ;; - aCC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_CXX='+Z' - ;; - esac - ;; - *) - ;; - esac - ;; - interix*) - # This is c89, which is MS Visual C++ (no shared libs) - # Anyone wants to do a port? - ;; - irix5* | irix6* | nonstopux*) - case $cc_basename in - CC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_static_CXX='-non_shared' - # CC pic flag -KPIC is the default. - ;; - *) - ;; - esac - ;; - linux* | k*bsd*-gnu) - case $cc_basename in - KCC*) - # KAI C++ Compiler - lt_prog_compiler_wl_CXX='--backend -Wl,' - lt_prog_compiler_pic_CXX='-fPIC' - ;; - icpc* | ecpc*) - # Intel C++ - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-static' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler. - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-fpic' - lt_prog_compiler_static_CXX='-Bstatic' - ;; - cxx*) - # Compaq C++ - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - lt_prog_compiler_pic_CXX= - lt_prog_compiler_static_CXX='-non_shared' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-Bstatic' - lt_prog_compiler_wl_CXX='-Qoption ld ' - ;; - esac - ;; - esac - ;; - lynxos*) - ;; - m88k*) - ;; - mvs*) - case $cc_basename in - cxx*) - lt_prog_compiler_pic_CXX='-W c,exportall' - ;; - *) - ;; - esac - ;; - netbsd* | netbsdelf*-gnu) - ;; - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - lt_prog_compiler_wl_CXX='--backend -Wl,' - ;; - RCC*) - # Rational C++ 2.4.1 - lt_prog_compiler_pic_CXX='-pic' - ;; - cxx*) - # Digital/Compaq C++ - lt_prog_compiler_wl_CXX='-Wl,' - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - lt_prog_compiler_pic_CXX= - lt_prog_compiler_static_CXX='-non_shared' - ;; - *) - ;; - esac - ;; - psos*) - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-Bstatic' - lt_prog_compiler_wl_CXX='-Qoption ld ' - ;; - gcx*) - # Green Hills C++ Compiler - lt_prog_compiler_pic_CXX='-PIC' - ;; - *) - ;; - esac - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - lt_prog_compiler_pic_CXX='-pic' - lt_prog_compiler_static_CXX='-Bstatic' - ;; - lcc*) - # Lucid - lt_prog_compiler_pic_CXX='-pic' - ;; - *) - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - lt_prog_compiler_pic_CXX='-KPIC' - ;; - *) - ;; - esac - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - case $cc_basename in - CC*) - lt_prog_compiler_wl_CXX='-Wl,' - lt_prog_compiler_pic_CXX='-KPIC' - lt_prog_compiler_static_CXX='-Bstatic' - ;; - esac - ;; - vxworks*) - ;; - *) - lt_prog_compiler_can_build_shared_CXX=no - ;; - esac - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_CXX" >&5 -$as_echo "$lt_prog_compiler_pic_CXX" >&6; } - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic_CXX"; then - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } -if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works_CXX=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:12056: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:12060: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works_CXX=yes - fi - fi - $rm conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } - -if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then - case $lt_prog_compiler_pic_CXX in - "" | " "*) ;; - *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; - esac -else - lt_prog_compiler_pic_CXX= - lt_prog_compiler_can_build_shared_CXX=no -fi - -fi -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic_CXX= - ;; - *) - lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" - ;; -esac - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works_CXX=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works_CXX=yes - fi - else - lt_cv_prog_compiler_static_works_CXX=yes - fi - fi - $rm -r conftest* - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } - -if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then - : -else - lt_prog_compiler_static_CXX= -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_CXX=no - $rm -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:12160: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:12164: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_CXX=yes - fi - fi - chmod u+w . 2>&5 - $rm conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files - $rm out/* && rmdir out - cd .. - rmdir conftest - $rm conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } - - -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $rm conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - case $host_os in - aix[4-9]*) - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' - fi - ;; - pw32*) - export_symbols_cmds_CXX="$ltdll_cmds" - ;; - cygwin* | mingw*) - export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' - ;; - linux* | k*bsd*-gnu) - link_all_deplibs_CXX=no - ;; - *) - export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; - esac - exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 -$as_echo "$ld_shlibs_CXX" >&6; } -test "$ld_shlibs_CXX" = no && can_build_shared=no - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc_CXX" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc_CXX=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $archive_cmds_CXX in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } - $rm conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl_CXX - pic_flag=$lt_prog_compiler_pic_CXX - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag_CXX - allow_undefined_flag_CXX= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - archive_cmds_need_lc_CXX=no - else - archive_cmds_need_lc_CXX=yes - fi - allow_undefined_flag_CXX=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $rm conftest* - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_CXX" >&5 -$as_echo "$archive_cmds_need_lc_CXX" >&6; } - ;; - esac - fi - ;; -esac - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" - -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[4-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $rm \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[123]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix[3-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -nto-qnx*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - export_dynamic_flag_spec='${wl}-Blargedynsym' - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - shlibpath_overrides_runpath=no - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - shlibpath_overrides_runpath=yes - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no - -if ${lt_cv_sys_lib_search_path_spec+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" -fi - -sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -if ${lt_cv_sys_lib_dlsearch_path_spec+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" -fi - -sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action_CXX= -if test -n "$hardcode_libdir_flag_spec_CXX" || \ - test -n "$runpath_var_CXX" || \ - test "X$hardcode_automatic_CXX" = "Xyes" ; then - - # We can hardcode non-existant directories. - if test "$hardcode_direct_CXX" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, CXX)" != no && - test "$hardcode_minus_L_CXX" != no; then - # Linking always hardcodes the temporary library directory. - hardcode_action_CXX=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action_CXX=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action_CXX=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 -$as_echo "$hardcode_action_CXX" >&6; } - -if test "$hardcode_action_CXX" = relink; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi - - -# The else clause should only fire when bootstrapping the -# libtool distribution, otherwise you forgot to ship ltmain.sh -# with your package, and you will get complaints that there are -# no rules to generate ltmain.sh. -if test -f "$ltmain"; then - # See if we are running on zsh, and set the options which allow our commands through - # without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST - fi - # Now quote all the things that may contain metacharacters while being - # careful not to overquote the AC_SUBSTed values. We take copies of the - # variables and quote the copies for generation of the libtool script. - for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ - SED SHELL STRIP \ - libname_spec library_names_spec soname_spec extract_expsyms_cmds \ - old_striplib striplib file_magic_cmd finish_cmds finish_eval \ - deplibs_check_method reload_flag reload_cmds need_locks \ - lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ - lt_cv_sys_global_symbol_to_c_name_address \ - sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ - old_postinstall_cmds old_postuninstall_cmds \ - compiler_CXX \ - CC_CXX \ - LD_CXX \ - lt_prog_compiler_wl_CXX \ - lt_prog_compiler_pic_CXX \ - lt_prog_compiler_static_CXX \ - lt_prog_compiler_no_builtin_flag_CXX \ - export_dynamic_flag_spec_CXX \ - thread_safe_flag_spec_CXX \ - whole_archive_flag_spec_CXX \ - enable_shared_with_static_runtimes_CXX \ - old_archive_cmds_CXX \ - old_archive_from_new_cmds_CXX \ - predep_objects_CXX \ - postdep_objects_CXX \ - predeps_CXX \ - postdeps_CXX \ - compiler_lib_search_path_CXX \ - compiler_lib_search_dirs_CXX \ - archive_cmds_CXX \ - archive_expsym_cmds_CXX \ - postinstall_cmds_CXX \ - postuninstall_cmds_CXX \ - old_archive_from_expsyms_cmds_CXX \ - allow_undefined_flag_CXX \ - no_undefined_flag_CXX \ - export_symbols_cmds_CXX \ - hardcode_libdir_flag_spec_CXX \ - hardcode_libdir_flag_spec_ld_CXX \ - hardcode_libdir_separator_CXX \ - hardcode_automatic_CXX \ - module_cmds_CXX \ - module_expsym_cmds_CXX \ - lt_cv_prog_compiler_c_o_CXX \ - fix_srcfile_path_CXX \ - exclude_expsyms_CXX \ - include_expsyms_CXX; do - - case $var in - old_archive_cmds_CXX | \ - old_archive_from_new_cmds_CXX | \ - archive_cmds_CXX | \ - archive_expsym_cmds_CXX | \ - module_cmds_CXX | \ - module_expsym_cmds_CXX | \ - old_archive_from_expsyms_cmds_CXX | \ - export_symbols_cmds_CXX | \ - extract_expsyms_cmds | reload_cmds | finish_cmds | \ - postinstall_cmds | postuninstall_cmds | \ - old_postinstall_cmds | old_postuninstall_cmds | \ - sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) - # Double-quote double-evaled strings. - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" - ;; - *) - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" - ;; - esac - done - - case $lt_echo in - *'\$0 --fallback-echo"') - lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` - ;; - esac - -cfgfile="$ofile" - - cat <<__EOF__ >> "$cfgfile" -# ### BEGIN LIBTOOL TAG CONFIG: $tagname - -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_CXX - -# Whether or not to disallow shared libs when runtime libs are static -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# An echo program that does not interpret backslashes. -echo=$lt_echo - -# The archiver. -AR=$lt_AR -AR_FLAGS=$lt_AR_FLAGS - -# A C compiler. -LTCC=$lt_LTCC - -# LTCC compiler flags. -LTCFLAGS=$lt_LTCFLAGS - -# A language-specific compiler. -CC=$lt_compiler_CXX - -# Is the compiler the GNU C compiler? -with_gcc=$GCC_CXX - -# An ERE matcher. -EGREP=$lt_EGREP - -# The linker used to build libraries. -LD=$lt_LD_CXX - -# Whether we need hard or soft links. -LN_S=$lt_LN_S - -# A BSD-compatible nm program. -NM=$lt_NM - -# A symbol stripping program -STRIP=$lt_STRIP - -# Used to examine libraries when file_magic_cmd begins "file" -MAGIC_CMD=$MAGIC_CMD - -# Used on cygwin: DLL creation program. -DLLTOOL="$DLLTOOL" - -# Used on cygwin: object dumper. -OBJDUMP="$OBJDUMP" - -# Used on cygwin: assembler. -AS="$AS" - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_CXX - -# Object file suffix (normally "o"). -objext="$ac_objext" - -# Old archive suffix (normally "a"). -libext="$libext" - -# Shared library suffix (normally ".so"). -shrext_cmds='$shrext_cmds' - -# Executable file suffix (normally ""). -exeext="$exeext" - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_CXX -pic_mode=$pic_mode - -# What is the maximum length of a command? -max_cmd_len=$lt_cv_sys_max_cmd_len - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Do we need the lib prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_CXX - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX - -# Compiler flag to generate thread-safe objects. -thread_safe_flag_spec=$lt_thread_safe_flag_spec_CXX - -# Library versioning type. -version_type=$version_type - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME. -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Commands used to build and install an old-style archive. -RANLIB=$lt_RANLIB -old_archive_cmds=$lt_old_archive_cmds_CXX -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX - -# Commands used to build and install a shared archive. -archive_cmds=$lt_archive_cmds_CXX -archive_expsym_cmds=$lt_archive_expsym_cmds_CXX -postinstall_cmds=$lt_postinstall_cmds -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to build a loadable module (assumed same as above if empty) -module_cmds=$lt_module_cmds_CXX -module_expsym_cmds=$lt_module_expsym_cmds_CXX - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - -# Dependencies to place before the objects being linked to create a -# shared library. -predep_objects=$lt_predep_objects_CXX - -# Dependencies to place after the objects being linked to create a -# shared library. -postdep_objects=$lt_postdep_objects_CXX - -# Dependencies to place before the objects being linked to create a -# shared library. -predeps=$lt_predeps_CXX - -# Dependencies to place after the objects being linked to create a -# shared library. -postdeps=$lt_postdeps_CXX - -# The directories searched by this compiler when creating a shared -# library -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_CXX - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method == file_magic. -file_magic_cmd=$lt_file_magic_cmd - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_CXX - -# Flag that forces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_CXX - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# Same as above, but a single script fragment to be evaled but not shown. -finish_eval=$lt_finish_eval - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm in a C name address pair -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# This is the shared library runtime path variable. -runpath_var=$runpath_var - -# This is the shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_CXX - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX - -# If ld is used when linking, flag to hardcode \$libdir into -# a binary during linking. This must work even if \$libdir does -# not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX - -# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the -# resulting binary. -hardcode_direct=$hardcode_direct_CXX - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L=$hardcode_minus_L_CXX - -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into -# the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX - -# Set to yes if building a shared library automatically hardcodes DIR into the library -# and all subsequent libraries and executables linked against it. -hardcode_automatic=$hardcode_automatic_CXX - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at relink time. -variables_saved_for_relink="$variables_saved_for_relink" - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_CXX - -# Compile-time system search path for libraries -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Run-time system search path for libraries -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path - -# Set to yes if exported symbols are required. -always_export_symbols=$always_export_symbols_CXX - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_CXX - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_CXX - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_CXX - -# ### END LIBTOOL TAG CONFIG: $tagname - -__EOF__ - - -else - # If there is no Makefile yet, we rely on a make rule to execute - # `config.status --recheck' to rerun these tests and create the - # libtool script then. - ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` - if test -f "$ltmain_in"; then - test -f Makefile && make "$ltmain" - fi -fi - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -CC=$lt_save_CC -LDCXX=$LD -LD=$lt_save_LD -GCC=$lt_save_GCC -with_gnu_ldcxx=$with_gnu_ld -with_gnu_ld=$lt_save_with_gnu_ld -lt_cv_path_LDCXX=$lt_cv_path_LD -lt_cv_path_LD=$lt_save_path_LD -lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld -lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld - - else - tagname="" - fi - ;; - - F77) - if test -n "$F77" && test "X$F77" != "Xno"; then - -ac_ext=f -ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' -ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_f77_compiler_gnu - - -archive_cmds_need_lc_F77=no -allow_undefined_flag_F77= -always_export_symbols_F77=no -archive_expsym_cmds_F77= -export_dynamic_flag_spec_F77= -hardcode_direct_F77=no -hardcode_libdir_flag_spec_F77= -hardcode_libdir_flag_spec_ld_F77= -hardcode_libdir_separator_F77= -hardcode_minus_L_F77=no -hardcode_automatic_F77=no -module_cmds_F77= -module_expsym_cmds_F77= -link_all_deplibs_F77=unknown -old_archive_cmds_F77=$old_archive_cmds -no_undefined_flag_F77= -whole_archive_flag_spec_F77= -enable_shared_with_static_runtimes_F77=no - -# Source file extension for f77 test sources. -ac_ext=f - -# Object file extension for compiled f77 test sources. -objext=o -objext_F77=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="\ - subroutine t - return - end -" - -# Code to be used in simple link tests -lt_simple_link_test_code="\ - program t - end -" - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - -# save warnings/boilerplate of simple test code -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$rm conftest* - -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$rm -r conftest* - - -# Allow CC to be a program name with arguments. -lt_save_CC="$CC" -CC=${F77-"f77"} -compiler=$CC -compiler_F77=$CC -for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 -$as_echo_n "checking if libtool supports shared libraries... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 -$as_echo "$can_build_shared" >&6; } - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 -$as_echo_n "checking whether to build shared libraries... " >&6; } -test "$can_build_shared" = "no" && enable_shared=no - -# On AIX, shared libraries and static libraries use the same namespace, and -# are all built from PIC. -case $host_os in -aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; -aix[4-9]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 -$as_echo "$enable_shared" >&6; } - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 -$as_echo_n "checking whether to build static libraries... " >&6; } -# Make sure either enable_shared or enable_static is yes. -test "$enable_shared" = yes || enable_static=yes -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 -$as_echo "$enable_static" >&6; } - -GCC_F77="$G77" -LD_F77="$LD" - -lt_prog_compiler_wl_F77= -lt_prog_compiler_pic_F77= -lt_prog_compiler_static_F77= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } - - if test "$GCC" = yes; then - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_static_F77='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_F77='-Bstatic' - fi - ;; - - amigaos*) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4' - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - lt_prog_compiler_pic_F77='-DDLL_EXPORT' - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic_F77='-fno-common' - ;; - - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - lt_prog_compiler_can_build_shared_F77=no - enable_shared=no - ;; - - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic_F77=-Kconform_pic - fi - ;; - - hpux*) - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_F77='-fPIC' - ;; - esac - ;; - - *) - lt_prog_compiler_pic_F77='-fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - lt_prog_compiler_wl_F77='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_F77='-Bstatic' - else - lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' - fi - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - lt_prog_compiler_pic_F77='-qnocommon' - lt_prog_compiler_wl_F77='-Wl,' - ;; - esac - ;; - - mingw* | cygwin* | pw32* | os2*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - lt_prog_compiler_pic_F77='-DDLL_EXPORT' - ;; - - hpux9* | hpux10* | hpux11*) - lt_prog_compiler_wl_F77='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_F77='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static_F77='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - lt_prog_compiler_wl_F77='-Wl,' - # PIC (with -KPIC) is the default. - lt_prog_compiler_static_F77='-non_shared' - ;; - - newsos6) - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - ;; - - linux* | k*bsd*-gnu) - case $cc_basename in - icc* | ecc*) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-static' - ;; - pgcc* | pgf77* | pgf90* | pgf95*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='-fpic' - lt_prog_compiler_static_F77='-Bstatic' - ;; - ccc*) - lt_prog_compiler_wl_F77='-Wl,' - # All Alpha code is PIC. - lt_prog_compiler_static_F77='-non_shared' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C 5.9 - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - lt_prog_compiler_wl_F77='-Wl,' - ;; - *Sun\ F*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - lt_prog_compiler_wl_F77='' - ;; - esac - ;; - esac - ;; - - osf3* | osf4* | osf5*) - lt_prog_compiler_wl_F77='-Wl,' - # All OSF/1 code is PIC. - lt_prog_compiler_static_F77='-non_shared' - ;; - - rdos*) - lt_prog_compiler_static_F77='-non_shared' - ;; - - solaris*) - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - case $cc_basename in - f77* | f90* | f95*) - lt_prog_compiler_wl_F77='-Qoption ld ';; - *) - lt_prog_compiler_wl_F77='-Wl,';; - esac - ;; - - sunos4*) - lt_prog_compiler_wl_F77='-Qoption ld ' - lt_prog_compiler_pic_F77='-PIC' - lt_prog_compiler_static_F77='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - lt_prog_compiler_pic_F77='-Kconform_pic' - lt_prog_compiler_static_F77='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_pic_F77='-KPIC' - lt_prog_compiler_static_F77='-Bstatic' - ;; - - unicos*) - lt_prog_compiler_wl_F77='-Wl,' - lt_prog_compiler_can_build_shared_F77=no - ;; - - uts4*) - lt_prog_compiler_pic_F77='-pic' - lt_prog_compiler_static_F77='-Bstatic' - ;; - - *) - lt_prog_compiler_can_build_shared_F77=no - ;; - esac - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_F77" >&5 -$as_echo "$lt_prog_compiler_pic_F77" >&6; } - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic_F77"; then - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... " >&6; } -if ${lt_cv_prog_compiler_pic_works_F77+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works_F77=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic_F77" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:13758: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:13762: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works_F77=yes - fi - fi - $rm conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_F77" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works_F77" >&6; } - -if test x"$lt_cv_prog_compiler_pic_works_F77" = xyes; then - case $lt_prog_compiler_pic_F77 in - "" | " "*) ;; - *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; - esac -else - lt_prog_compiler_pic_F77= - lt_prog_compiler_can_build_shared_F77=no -fi - -fi -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic_F77= - ;; - *) - lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77" - ;; -esac - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if ${lt_cv_prog_compiler_static_works_F77+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works_F77=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works_F77=yes - fi - else - lt_cv_prog_compiler_static_works_F77=yes - fi - fi - $rm -r conftest* - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_F77" >&5 -$as_echo "$lt_cv_prog_compiler_static_works_F77" >&6; } - -if test x"$lt_cv_prog_compiler_static_works_F77" = xyes; then - : -else - lt_prog_compiler_static_F77= -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o_F77+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_F77=no - $rm -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:13862: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:13866: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_F77=yes - fi - fi - chmod u+w . 2>&5 - $rm conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files - $rm out/* && rmdir out - cd .. - rmdir conftest - $rm conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_F77" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_F77" >&6; } - - -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $rm conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - runpath_var= - allow_undefined_flag_F77= - enable_shared_with_static_runtimes_F77=no - archive_cmds_F77= - archive_expsym_cmds_F77= - old_archive_From_new_cmds_F77= - old_archive_from_expsyms_cmds_F77= - export_dynamic_flag_spec_F77= - whole_archive_flag_spec_F77= - thread_safe_flag_spec_F77= - hardcode_libdir_flag_spec_F77= - hardcode_libdir_flag_spec_ld_F77= - hardcode_libdir_separator_F77= - hardcode_direct_F77=no - hardcode_minus_L_F77=no - hardcode_shlibpath_var_F77=unsupported - link_all_deplibs_F77=unknown - hardcode_automatic_F77=no - module_cmds_F77= - module_expsym_cmds_F77= - always_export_symbols_F77=no - export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - include_expsyms_F77= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - exclude_expsyms_F77='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. - extract_expsyms_cmds= - # Just being paranoid about ensuring that cc_basename is set. - for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - case $host_os in - cygwin* | mingw* | pw32*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - esac - - ld_shlibs_F77=yes - if test "$with_gnu_ld" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec_F77='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec_F77='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec_F77= - fi - supports_anon_versioning=no - case `$LD -v 2>/dev/null` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[3-9]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - ld_shlibs_F77=no - cat <&2 - -*** Warning: the GNU linker, at least up to release 2.9.1, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to modify your PATH -*** so that a non-GNU linker is found, and then restart. - -EOF - fi - ;; - - amigaos*) - archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_minus_L_F77=yes - - # Samuel A. Falvo II reports - # that the semantics of dynamic libraries on AmigaOS, at least up - # to version 4, is to share data among multiple programs linked - # with the same dynamic library. Since this doesn't match the - # behavior of shared libraries on other platforms, we can't use - # them. - ld_shlibs_F77=no - ;; - - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag_F77=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds_F77='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - ld_shlibs_F77=no - fi - ;; - - cygwin* | mingw* | pw32*) - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec_F77='-L$libdir' - allow_undefined_flag_F77=unsupported - always_export_symbols_F77=no - enable_shared_with_static_runtimes_F77=yes - export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' - - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs_F77=no - fi - ;; - - interix[3-9]*) - hardcode_direct_F77=no - hardcode_shlibpath_var_F77=no - hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' - export_dynamic_flag_spec_F77='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | k*bsd*-gnu) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - tmp_addflag= - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers - whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec_F77='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - *) - tmp_sharedflag='-shared' ;; - esac - archive_cmds_F77='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test $supports_anon_versioning = yes; then - archive_expsym_cmds_F77='$echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - $echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - link_all_deplibs_F77=no - else - ld_shlibs_F77=no - fi - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then - ld_shlibs_F77=no - cat <&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -EOF - elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs_F77=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs_F77=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' - archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' - else - ld_shlibs_F77=no - fi - ;; - esac - ;; - - sunos4*) - archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - hardcode_direct_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs_F77=no - fi - ;; - esac - - if test "$ld_shlibs_F77" = no; then - runpath_var= - hardcode_libdir_flag_spec_F77= - export_dynamic_flag_spec_F77= - whole_archive_flag_spec_F77= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - allow_undefined_flag_F77=unsupported - always_export_symbols_F77=yes - archive_expsym_cmds_F77='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L_F77=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct_F77=unsupported - fi - ;; - - aix[4-9]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - export_symbols_cmds_F77='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds_F77='' - hardcode_direct_F77=yes - hardcode_libdir_separator_F77=':' - link_all_deplibs_F77=yes - - if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct_F77=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L_F77=yes - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_libdir_separator_F77= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - always_export_symbols_F77=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - allow_undefined_flag_F77='-berok' - # Determine the default libpath from the value encoded in an empty executable. - cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_f77_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds_F77="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec_F77='${wl}-R $libdir:/usr/lib:/lib' - allow_undefined_flag_F77="-z nodefs" - archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an empty executable. - cat > conftest.$ac_ext <<_ACEOF - program main - - end -_ACEOF -if ac_fn_f77_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag_F77=' ${wl}-bernotok' - allow_undefined_flag_F77=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec_F77='$convenience' - archive_cmds_need_lc_F77=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_minus_L_F77=yes - # see comment about different semantics on the GNU ld section - ld_shlibs_F77=no - ;; - - bsdi[45]*) - export_dynamic_flag_spec_F77=-rdynamic - ;; - - cygwin* | mingw* | pw32*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec_F77=' ' - allow_undefined_flag_F77=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - old_archive_From_new_cmds_F77='true' - # FIXME: Should let the user specify the lib program. - old_archive_cmds_F77='lib -OUT:$oldlib$oldobjs$old_deplibs' - fix_srcfile_path_F77='`cygpath -w "$srcfile"`' - enable_shared_with_static_runtimes_F77=yes - ;; - - darwin* | rhapsody*) - case $host_os in - rhapsody* | darwin1.[012]) - allow_undefined_flag_F77='${wl}-undefined ${wl}suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[012]) - allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - ;; - 10.*) - allow_undefined_flag_F77='${wl}-undefined ${wl}dynamic_lookup' - ;; - esac - fi - ;; - esac - archive_cmds_need_lc_F77=no - hardcode_direct_F77=no - hardcode_automatic_F77=yes - hardcode_shlibpath_var_F77=unsupported - whole_archive_flag_spec_F77='' - link_all_deplibs_F77=yes - if test "$GCC" = yes ; then - output_verbose_link_cmd='echo' - archive_cmds_F77="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds_F77="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds_F77="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds_F77="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - else - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - archive_cmds_F77='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' - module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - ld_shlibs_F77=no - ;; - esac - fi - ;; - - dgux*) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_shlibpath_var_F77=no - ;; - - freebsd1*) - ld_shlibs_F77=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - hardcode_libdir_flag_spec_F77='-R$libdir' - hardcode_direct_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_F77=yes - hardcode_minus_L_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec_F77='-R$libdir' - hardcode_direct_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - hpux9*) - if test "$GCC" = yes; then - archive_cmds_F77='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - archive_cmds_F77='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_F77=: - hardcode_direct_F77=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_F77=yes - export_dynamic_flag_spec_F77='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_F77='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_F77=: - - hardcode_direct_F77=yes - export_dynamic_flag_spec_F77='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_F77=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_F77=: - - case $host_cpu in - hppa*64*|ia64*) - hardcode_libdir_flag_spec_ld_F77='+b $libdir' - hardcode_direct_F77=no - hardcode_shlibpath_var_F77=no - ;; - *) - hardcode_direct_F77=yes - export_dynamic_flag_spec_F77='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_F77=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_ld_F77='-rpath $libdir' - fi - hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_F77=: - link_all_deplibs_F77=yes - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - archive_cmds_F77='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - hardcode_libdir_flag_spec_F77='-R$libdir' - hardcode_direct_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - newsos6) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_F77=yes - hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_F77=: - hardcode_shlibpath_var_F77=no - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct_F77=yes - hardcode_shlibpath_var_F77=no - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' - export_dynamic_flag_spec_F77='${wl}-E' - else - case $host_os in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_F77='-R$libdir' - ;; - *) - archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' - ;; - esac - fi - else - ld_shlibs_F77=no - fi - ;; - - os2*) - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_minus_L_F77=yes - allow_undefined_flag_F77=unsupported - archive_cmds_F77='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - old_archive_From_new_cmds_F77='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - allow_undefined_flag_F77=' -expect_unresolved \*' - archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - fi - hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_F77=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' - else - allow_undefined_flag_F77=' -expect_unresolved \*' - archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' - - # Both c and cxx compiler support -rpath directly - hardcode_libdir_flag_spec_F77='-rpath $libdir' - fi - hardcode_libdir_separator_F77=: - ;; - - solaris*) - no_undefined_flag_F77=' -z text' - if test "$GCC" = yes; then - wlarc='${wl}' - archive_cmds_F77='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' - else - wlarc='' - archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' - fi - hardcode_libdir_flag_spec_F77='-R$libdir' - hardcode_shlibpath_var_F77=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - whole_archive_flag_spec_F77='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' - fi - ;; - esac - link_all_deplibs_F77=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_direct_F77=yes - hardcode_minus_L_F77=yes - hardcode_shlibpath_var_F77=no - ;; - - sysv4) - case $host_vendor in - sni) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_F77=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' - reload_cmds_F77='$CC -r -o $output$reload_objs' - hardcode_direct_F77=no - ;; - motorola) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - hardcode_shlibpath_var_F77=no - ;; - - sysv4.3*) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var_F77=no - export_dynamic_flag_spec_F77='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var_F77=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - ld_shlibs_F77=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag_F77='${wl}-z,text' - archive_cmds_need_lc_F77=no - hardcode_shlibpath_var_F77=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - no_undefined_flag_F77='${wl}-z,text' - allow_undefined_flag_F77='${wl}-z,nodefs' - archive_cmds_need_lc_F77=no - hardcode_shlibpath_var_F77=no - hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - hardcode_libdir_separator_F77=':' - link_all_deplibs_F77=yes - export_dynamic_flag_spec_F77='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds_F77='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_F77='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_F77='-L$libdir' - hardcode_shlibpath_var_F77=no - ;; - - *) - ld_shlibs_F77=no - ;; - esac - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_F77" >&5 -$as_echo "$ld_shlibs_F77" >&6; } -test "$ld_shlibs_F77" = no && can_build_shared=no - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc_F77" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc_F77=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $archive_cmds_F77 in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } - $rm conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl_F77 - pic_flag=$lt_prog_compiler_pic_F77 - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag_F77 - allow_undefined_flag_F77= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - archive_cmds_need_lc_F77=no - else - archive_cmds_need_lc_F77=yes - fi - allow_undefined_flag_F77=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $rm conftest* - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_F77" >&5 -$as_echo "$archive_cmds_need_lc_F77" >&6; } - ;; - esac - fi - ;; -esac - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" - -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[4-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $rm \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[123]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix[3-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -nto-qnx*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - export_dynamic_flag_spec='${wl}-Blargedynsym' - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - shlibpath_overrides_runpath=no - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - shlibpath_overrides_runpath=yes - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no - -if ${lt_cv_sys_lib_search_path_spec+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" -fi - -sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -if ${lt_cv_sys_lib_dlsearch_path_spec+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" -fi - -sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action_F77= -if test -n "$hardcode_libdir_flag_spec_F77" || \ - test -n "$runpath_var_F77" || \ - test "X$hardcode_automatic_F77" = "Xyes" ; then - - # We can hardcode non-existant directories. - if test "$hardcode_direct_F77" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, F77)" != no && - test "$hardcode_minus_L_F77" != no; then - # Linking always hardcodes the temporary library directory. - hardcode_action_F77=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action_F77=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action_F77=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_F77" >&5 -$as_echo "$hardcode_action_F77" >&6; } - -if test "$hardcode_action_F77" = relink; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi - - -# The else clause should only fire when bootstrapping the -# libtool distribution, otherwise you forgot to ship ltmain.sh -# with your package, and you will get complaints that there are -# no rules to generate ltmain.sh. -if test -f "$ltmain"; then - # See if we are running on zsh, and set the options which allow our commands through - # without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST - fi - # Now quote all the things that may contain metacharacters while being - # careful not to overquote the AC_SUBSTed values. We take copies of the - # variables and quote the copies for generation of the libtool script. - for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ - SED SHELL STRIP \ - libname_spec library_names_spec soname_spec extract_expsyms_cmds \ - old_striplib striplib file_magic_cmd finish_cmds finish_eval \ - deplibs_check_method reload_flag reload_cmds need_locks \ - lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ - lt_cv_sys_global_symbol_to_c_name_address \ - sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ - old_postinstall_cmds old_postuninstall_cmds \ - compiler_F77 \ - CC_F77 \ - LD_F77 \ - lt_prog_compiler_wl_F77 \ - lt_prog_compiler_pic_F77 \ - lt_prog_compiler_static_F77 \ - lt_prog_compiler_no_builtin_flag_F77 \ - export_dynamic_flag_spec_F77 \ - thread_safe_flag_spec_F77 \ - whole_archive_flag_spec_F77 \ - enable_shared_with_static_runtimes_F77 \ - old_archive_cmds_F77 \ - old_archive_from_new_cmds_F77 \ - predep_objects_F77 \ - postdep_objects_F77 \ - predeps_F77 \ - postdeps_F77 \ - compiler_lib_search_path_F77 \ - compiler_lib_search_dirs_F77 \ - archive_cmds_F77 \ - archive_expsym_cmds_F77 \ - postinstall_cmds_F77 \ - postuninstall_cmds_F77 \ - old_archive_from_expsyms_cmds_F77 \ - allow_undefined_flag_F77 \ - no_undefined_flag_F77 \ - export_symbols_cmds_F77 \ - hardcode_libdir_flag_spec_F77 \ - hardcode_libdir_flag_spec_ld_F77 \ - hardcode_libdir_separator_F77 \ - hardcode_automatic_F77 \ - module_cmds_F77 \ - module_expsym_cmds_F77 \ - lt_cv_prog_compiler_c_o_F77 \ - fix_srcfile_path_F77 \ - exclude_expsyms_F77 \ - include_expsyms_F77; do - - case $var in - old_archive_cmds_F77 | \ - old_archive_from_new_cmds_F77 | \ - archive_cmds_F77 | \ - archive_expsym_cmds_F77 | \ - module_cmds_F77 | \ - module_expsym_cmds_F77 | \ - old_archive_from_expsyms_cmds_F77 | \ - export_symbols_cmds_F77 | \ - extract_expsyms_cmds | reload_cmds | finish_cmds | \ - postinstall_cmds | postuninstall_cmds | \ - old_postinstall_cmds | old_postuninstall_cmds | \ - sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) - # Double-quote double-evaled strings. - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" - ;; - *) - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" - ;; - esac - done - - case $lt_echo in - *'\$0 --fallback-echo"') - lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` - ;; - esac - -cfgfile="$ofile" - - cat <<__EOF__ >> "$cfgfile" -# ### BEGIN LIBTOOL TAG CONFIG: $tagname - -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_F77 - -# Whether or not to disallow shared libs when runtime libs are static -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77 - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# An echo program that does not interpret backslashes. -echo=$lt_echo - -# The archiver. -AR=$lt_AR -AR_FLAGS=$lt_AR_FLAGS - -# A C compiler. -LTCC=$lt_LTCC - -# LTCC compiler flags. -LTCFLAGS=$lt_LTCFLAGS - -# A language-specific compiler. -CC=$lt_compiler_F77 - -# Is the compiler the GNU C compiler? -with_gcc=$GCC_F77 - -# An ERE matcher. -EGREP=$lt_EGREP - -# The linker used to build libraries. -LD=$lt_LD_F77 - -# Whether we need hard or soft links. -LN_S=$lt_LN_S - -# A BSD-compatible nm program. -NM=$lt_NM - -# A symbol stripping program -STRIP=$lt_STRIP - -# Used to examine libraries when file_magic_cmd begins "file" -MAGIC_CMD=$MAGIC_CMD - -# Used on cygwin: DLL creation program. -DLLTOOL="$DLLTOOL" - -# Used on cygwin: object dumper. -OBJDUMP="$OBJDUMP" - -# Used on cygwin: assembler. -AS="$AS" - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_F77 - -# Object file suffix (normally "o"). -objext="$ac_objext" - -# Old archive suffix (normally "a"). -libext="$libext" - -# Shared library suffix (normally ".so"). -shrext_cmds='$shrext_cmds' - -# Executable file suffix (normally ""). -exeext="$exeext" - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_F77 -pic_mode=$pic_mode - -# What is the maximum length of a command? -max_cmd_len=$lt_cv_sys_max_cmd_len - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Do we need the lib prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_F77 - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77 - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77 - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77 - -# Compiler flag to generate thread-safe objects. -thread_safe_flag_spec=$lt_thread_safe_flag_spec_F77 - -# Library versioning type. -version_type=$version_type - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME. -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Commands used to build and install an old-style archive. -RANLIB=$lt_RANLIB -old_archive_cmds=$lt_old_archive_cmds_F77 -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77 - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77 - -# Commands used to build and install a shared archive. -archive_cmds=$lt_archive_cmds_F77 -archive_expsym_cmds=$lt_archive_expsym_cmds_F77 -postinstall_cmds=$lt_postinstall_cmds -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to build a loadable module (assumed same as above if empty) -module_cmds=$lt_module_cmds_F77 -module_expsym_cmds=$lt_module_expsym_cmds_F77 - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - -# Dependencies to place before the objects being linked to create a -# shared library. -predep_objects=$lt_predep_objects_F77 - -# Dependencies to place after the objects being linked to create a -# shared library. -postdep_objects=$lt_postdep_objects_F77 - -# Dependencies to place before the objects being linked to create a -# shared library. -predeps=$lt_predeps_F77 - -# Dependencies to place after the objects being linked to create a -# shared library. -postdeps=$lt_postdeps_F77 - -# The directories searched by this compiler when creating a shared -# library -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_F77 - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_F77 - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method == file_magic. -file_magic_cmd=$lt_file_magic_cmd - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_F77 - -# Flag that forces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_F77 - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# Same as above, but a single script fragment to be evaled but not shown. -finish_eval=$lt_finish_eval - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm in a C name address pair -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# This is the shared library runtime path variable. -runpath_var=$runpath_var - -# This is the shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_F77 - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77 - -# If ld is used when linking, flag to hardcode \$libdir into -# a binary during linking. This must work even if \$libdir does -# not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_F77 - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77 - -# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the -# resulting binary. -hardcode_direct=$hardcode_direct_F77 - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L=$hardcode_minus_L_F77 - -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into -# the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_F77 - -# Set to yes if building a shared library automatically hardcodes DIR into the library -# and all subsequent libraries and executables linked against it. -hardcode_automatic=$hardcode_automatic_F77 - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at relink time. -variables_saved_for_relink="$variables_saved_for_relink" - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_F77 - -# Compile-time system search path for libraries -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Run-time system search path for libraries -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path - -# Set to yes if exported symbols are required. -always_export_symbols=$always_export_symbols_F77 - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_F77 - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_F77 - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_F77 - -# ### END LIBTOOL TAG CONFIG: $tagname - -__EOF__ - - -else - # If there is no Makefile yet, we rely on a make rule to execute - # `config.status --recheck' to rerun these tests and create the - # libtool script then. - ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` - if test -f "$ltmain_in"; then - test -f Makefile && make "$ltmain" - fi -fi - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -CC="$lt_save_CC" - - else - tagname="" - fi - ;; - - GCJ) - if test -n "$GCJ" && test "X$GCJ" != "Xno"; then - - -# Source file extension for Java test sources. -ac_ext=java - -# Object file extension for compiled Java test sources. -objext=o -objext_GCJ=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="class foo {}" - -# Code to be used in simple link tests -lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }' - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - -# save warnings/boilerplate of simple test code -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$rm conftest* - -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$rm -r conftest* - - -# Allow CC to be a program name with arguments. -lt_save_CC="$CC" -CC=${GCJ-"gcj"} -compiler=$CC -compiler_GCJ=$CC -for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - -# GCJ did not exist at the time GCC didn't implicitly link libc in. -archive_cmds_need_lc_GCJ=no - -old_archive_cmds_GCJ=$old_archive_cmds - - -lt_prog_compiler_no_builtin_flag_GCJ= - -if test "$GCC" = yes; then - lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin' - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 -$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } -if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_rtti_exceptions=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="-fno-rtti -fno-exceptions" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16036: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:16040: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_rtti_exceptions=yes - fi - fi - $rm conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 -$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } - -if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then - lt_prog_compiler_no_builtin_flag_GCJ="$lt_prog_compiler_no_builtin_flag_GCJ -fno-rtti -fno-exceptions" -else - : -fi - -fi - -lt_prog_compiler_wl_GCJ= -lt_prog_compiler_pic_GCJ= -lt_prog_compiler_static_GCJ= - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 -$as_echo_n "checking for $compiler option to produce PIC... " >&6; } - - if test "$GCC" = yes; then - lt_prog_compiler_wl_GCJ='-Wl,' - lt_prog_compiler_static_GCJ='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_GCJ='-Bstatic' - fi - ;; - - amigaos*) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - lt_prog_compiler_pic_GCJ='-m68020 -resident32 -malways-restore-a4' - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - lt_prog_compiler_pic_GCJ='-fno-common' - ;; - - interix[3-9]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - lt_prog_compiler_can_build_shared_GCJ=no - enable_shared=no - ;; - - sysv4*MP*) - if test -d /usr/nec; then - lt_prog_compiler_pic_GCJ=-Kconform_pic - fi - ;; - - hpux*) - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_GCJ='-fPIC' - ;; - esac - ;; - - *) - lt_prog_compiler_pic_GCJ='-fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - lt_prog_compiler_wl_GCJ='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - lt_prog_compiler_static_GCJ='-Bstatic' - else - lt_prog_compiler_static_GCJ='-bnso -bI:/lib/syscalls.exp' - fi - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - lt_prog_compiler_pic_GCJ='-qnocommon' - lt_prog_compiler_wl_GCJ='-Wl,' - ;; - esac - ;; - - mingw* | cygwin* | pw32* | os2*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - - ;; - - hpux9* | hpux10* | hpux11*) - lt_prog_compiler_wl_GCJ='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - lt_prog_compiler_pic_GCJ='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - lt_prog_compiler_static_GCJ='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - lt_prog_compiler_wl_GCJ='-Wl,' - # PIC (with -KPIC) is the default. - lt_prog_compiler_static_GCJ='-non_shared' - ;; - - newsos6) - lt_prog_compiler_pic_GCJ='-KPIC' - lt_prog_compiler_static_GCJ='-Bstatic' - ;; - - linux* | k*bsd*-gnu) - case $cc_basename in - icc* | ecc*) - lt_prog_compiler_wl_GCJ='-Wl,' - lt_prog_compiler_pic_GCJ='-KPIC' - lt_prog_compiler_static_GCJ='-static' - ;; - pgcc* | pgf77* | pgf90* | pgf95*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - lt_prog_compiler_wl_GCJ='-Wl,' - lt_prog_compiler_pic_GCJ='-fpic' - lt_prog_compiler_static_GCJ='-Bstatic' - ;; - ccc*) - lt_prog_compiler_wl_GCJ='-Wl,' - # All Alpha code is PIC. - lt_prog_compiler_static_GCJ='-non_shared' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C 5.9 - lt_prog_compiler_pic_GCJ='-KPIC' - lt_prog_compiler_static_GCJ='-Bstatic' - lt_prog_compiler_wl_GCJ='-Wl,' - ;; - *Sun\ F*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - lt_prog_compiler_pic_GCJ='-KPIC' - lt_prog_compiler_static_GCJ='-Bstatic' - lt_prog_compiler_wl_GCJ='' - ;; - esac - ;; - esac - ;; - - osf3* | osf4* | osf5*) - lt_prog_compiler_wl_GCJ='-Wl,' - # All OSF/1 code is PIC. - lt_prog_compiler_static_GCJ='-non_shared' - ;; - - rdos*) - lt_prog_compiler_static_GCJ='-non_shared' - ;; - - solaris*) - lt_prog_compiler_pic_GCJ='-KPIC' - lt_prog_compiler_static_GCJ='-Bstatic' - case $cc_basename in - f77* | f90* | f95*) - lt_prog_compiler_wl_GCJ='-Qoption ld ';; - *) - lt_prog_compiler_wl_GCJ='-Wl,';; - esac - ;; - - sunos4*) - lt_prog_compiler_wl_GCJ='-Qoption ld ' - lt_prog_compiler_pic_GCJ='-PIC' - lt_prog_compiler_static_GCJ='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - lt_prog_compiler_wl_GCJ='-Wl,' - lt_prog_compiler_pic_GCJ='-KPIC' - lt_prog_compiler_static_GCJ='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - lt_prog_compiler_pic_GCJ='-Kconform_pic' - lt_prog_compiler_static_GCJ='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - lt_prog_compiler_wl_GCJ='-Wl,' - lt_prog_compiler_pic_GCJ='-KPIC' - lt_prog_compiler_static_GCJ='-Bstatic' - ;; - - unicos*) - lt_prog_compiler_wl_GCJ='-Wl,' - lt_prog_compiler_can_build_shared_GCJ=no - ;; - - uts4*) - lt_prog_compiler_pic_GCJ='-pic' - lt_prog_compiler_static_GCJ='-Bstatic' - ;; - - *) - lt_prog_compiler_can_build_shared_GCJ=no - ;; - esac - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_GCJ" >&5 -$as_echo "$lt_prog_compiler_pic_GCJ" >&6; } - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$lt_prog_compiler_pic_GCJ"; then - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 -$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... " >&6; } -if ${lt_cv_prog_compiler_pic_works_GCJ+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_pic_works_GCJ=no - ac_outfile=conftest.$ac_objext - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$lt_prog_compiler_pic_GCJ" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16326: $lt_compile\"" >&5) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&5 - echo "$as_me:16330: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_pic_works_GCJ=yes - fi - fi - $rm conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_GCJ" >&5 -$as_echo "$lt_cv_prog_compiler_pic_works_GCJ" >&6; } - -if test x"$lt_cv_prog_compiler_pic_works_GCJ" = xyes; then - case $lt_prog_compiler_pic_GCJ in - "" | " "*) ;; - *) lt_prog_compiler_pic_GCJ=" $lt_prog_compiler_pic_GCJ" ;; - esac -else - lt_prog_compiler_pic_GCJ= - lt_prog_compiler_can_build_shared_GCJ=no -fi - -fi -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - lt_prog_compiler_pic_GCJ= - ;; - *) - lt_prog_compiler_pic_GCJ="$lt_prog_compiler_pic_GCJ" - ;; -esac - -# -# Check to make sure the static flag actually works. -# -wl=$lt_prog_compiler_wl_GCJ eval lt_tmp_static_flag=\"$lt_prog_compiler_static_GCJ\" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 -$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } -if ${lt_cv_prog_compiler_static_works_GCJ+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_static_works_GCJ=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $lt_tmp_static_flag" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&5 - $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - lt_cv_prog_compiler_static_works_GCJ=yes - fi - else - lt_cv_prog_compiler_static_works_GCJ=yes - fi - fi - $rm -r conftest* - LDFLAGS="$save_LDFLAGS" - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_GCJ" >&5 -$as_echo "$lt_cv_prog_compiler_static_works_GCJ" >&6; } - -if test x"$lt_cv_prog_compiler_static_works_GCJ" = xyes; then - : -else - lt_prog_compiler_static_GCJ= -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 -$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } -if ${lt_cv_prog_compiler_c_o_GCJ+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_prog_compiler_c_o_GCJ=no - $rm -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16430: $lt_compile\"" >&5) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&5 - echo "$as_me:16434: \$? = $ac_status" >&5 - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - lt_cv_prog_compiler_c_o_GCJ=yes - fi - fi - chmod u+w . 2>&5 - $rm conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files - $rm out/* && rmdir out - cd .. - rmdir conftest - $rm conftest* - -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 -$as_echo "$lt_cv_prog_compiler_c_o_GCJ" >&6; } - - -hard_links="nottested" -if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 -$as_echo_n "checking if we can lock with hard links... " >&6; } - hard_links=yes - $rm conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 -$as_echo "$hard_links" >&6; } - if test "$hard_links" = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 -$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} - need_locks=warn - fi -else - need_locks=no -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 -$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } - - runpath_var= - allow_undefined_flag_GCJ= - enable_shared_with_static_runtimes_GCJ=no - archive_cmds_GCJ= - archive_expsym_cmds_GCJ= - old_archive_From_new_cmds_GCJ= - old_archive_from_expsyms_cmds_GCJ= - export_dynamic_flag_spec_GCJ= - whole_archive_flag_spec_GCJ= - thread_safe_flag_spec_GCJ= - hardcode_libdir_flag_spec_GCJ= - hardcode_libdir_flag_spec_ld_GCJ= - hardcode_libdir_separator_GCJ= - hardcode_direct_GCJ=no - hardcode_minus_L_GCJ=no - hardcode_shlibpath_var_GCJ=unsupported - link_all_deplibs_GCJ=unknown - hardcode_automatic_GCJ=no - module_cmds_GCJ= - module_expsym_cmds_GCJ= - always_export_symbols_GCJ=no - export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - include_expsyms_GCJ= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - exclude_expsyms_GCJ='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. - extract_expsyms_cmds= - # Just being paranoid about ensuring that cc_basename is set. - for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - - case $host_os in - cygwin* | mingw* | pw32*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - esac - - ld_shlibs_GCJ=yes - if test "$with_gnu_ld" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec_GCJ='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec_GCJ='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_GCJ="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec_GCJ= - fi - supports_anon_versioning=no - case `$LD -v 2>/dev/null` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[3-9]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - ld_shlibs_GCJ=no - cat <&2 - -*** Warning: the GNU linker, at least up to release 2.9.1, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to modify your PATH -*** so that a non-GNU linker is found, and then restart. - -EOF - fi - ;; - - amigaos*) - archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec_GCJ='-L$libdir' - hardcode_minus_L_GCJ=yes - - # Samuel A. Falvo II reports - # that the semantics of dynamic libraries on AmigaOS, at least up - # to version 4, is to share data among multiple programs linked - # with the same dynamic library. Since this doesn't match the - # behavior of shared libraries on other platforms, we can't use - # them. - ld_shlibs_GCJ=no - ;; - - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - allow_undefined_flag_GCJ=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - archive_cmds_GCJ='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - ld_shlibs_GCJ=no - fi - ;; - - cygwin* | mingw* | pw32*) - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, GCJ) is actually meaningless, - # as there is no search path for DLLs. - hardcode_libdir_flag_spec_GCJ='-L$libdir' - allow_undefined_flag_GCJ=unsupported - always_export_symbols_GCJ=no - enable_shared_with_static_runtimes_GCJ=yes - export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' - - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - archive_expsym_cmds_GCJ='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - ld_shlibs_GCJ=no - fi - ;; - - interix[3-9]*) - hardcode_direct_GCJ=no - hardcode_shlibpath_var_GCJ=no - hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' - export_dynamic_flag_spec_GCJ='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - archive_cmds_GCJ='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - archive_expsym_cmds_GCJ='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | k*bsd*-gnu) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - tmp_addflag= - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers - whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - whole_archive_flag_spec_GCJ='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - *) - tmp_sharedflag='-shared' ;; - esac - archive_cmds_GCJ='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test $supports_anon_versioning = yes; then - archive_expsym_cmds_GCJ='$echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - $echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - link_all_deplibs_GCJ=no - else - ld_shlibs_GCJ=no - fi - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - archive_cmds_GCJ='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then - ld_shlibs_GCJ=no - cat <&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -EOF - elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs_GCJ=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs_GCJ=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' - archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' - archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' - else - ld_shlibs_GCJ=no - fi - ;; - esac - ;; - - sunos4*) - archive_cmds_GCJ='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - hardcode_direct_GCJ=yes - hardcode_shlibpath_var_GCJ=no - ;; - - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - ld_shlibs_GCJ=no - fi - ;; - esac - - if test "$ld_shlibs_GCJ" = no; then - runpath_var= - hardcode_libdir_flag_spec_GCJ= - export_dynamic_flag_spec_GCJ= - whole_archive_flag_spec_GCJ= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - allow_undefined_flag_GCJ=unsupported - always_export_symbols_GCJ=yes - archive_expsym_cmds_GCJ='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L_GCJ=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct_GCJ=unsupported - fi - ;; - - aix[4-9]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - export_symbols_cmds_GCJ='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' - else - export_symbols_cmds_GCJ='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - archive_cmds_GCJ='' - hardcode_direct_GCJ=yes - hardcode_libdir_separator_GCJ=':' - link_all_deplibs_GCJ=yes - - if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - hardcode_direct_GCJ=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - hardcode_minus_L_GCJ=yes - hardcode_libdir_flag_spec_GCJ='-L$libdir' - hardcode_libdir_separator_GCJ= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - always_export_symbols_GCJ=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - allow_undefined_flag_GCJ='-berok' - # Determine the default libpath from the value encoded in an empty executable. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" - archive_expsym_cmds_GCJ="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec_GCJ='${wl}-R $libdir:/usr/lib:/lib' - allow_undefined_flag_GCJ="-z nodefs" - archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an empty executable. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_cxx_try_link "$LINENO"; then : - -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi - - hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - no_undefined_flag_GCJ=' ${wl}-bernotok' - allow_undefined_flag_GCJ=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - whole_archive_flag_spec_GCJ='$convenience' - archive_cmds_need_lc_GCJ=yes - # This is similar to how AIX traditionally builds its shared libraries. - archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - hardcode_libdir_flag_spec_GCJ='-L$libdir' - hardcode_minus_L_GCJ=yes - # see comment about different semantics on the GNU ld section - ld_shlibs_GCJ=no - ;; - - bsdi[45]*) - export_dynamic_flag_spec_GCJ=-rdynamic - ;; - - cygwin* | mingw* | pw32*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec_GCJ=' ' - allow_undefined_flag_GCJ=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - old_archive_From_new_cmds_GCJ='true' - # FIXME: Should let the user specify the lib program. - old_archive_cmds_GCJ='lib -OUT:$oldlib$oldobjs$old_deplibs' - fix_srcfile_path_GCJ='`cygpath -w "$srcfile"`' - enable_shared_with_static_runtimes_GCJ=yes - ;; - - darwin* | rhapsody*) - case $host_os in - rhapsody* | darwin1.[012]) - allow_undefined_flag_GCJ='${wl}-undefined ${wl}suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[012]) - allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - ;; - 10.*) - allow_undefined_flag_GCJ='${wl}-undefined ${wl}dynamic_lookup' - ;; - esac - fi - ;; - esac - archive_cmds_need_lc_GCJ=no - hardcode_direct_GCJ=no - hardcode_automatic_GCJ=yes - hardcode_shlibpath_var_GCJ=unsupported - whole_archive_flag_spec_GCJ='' - link_all_deplibs_GCJ=yes - if test "$GCC" = yes ; then - output_verbose_link_cmd='echo' - archive_cmds_GCJ="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - module_cmds_GCJ="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - archive_expsym_cmds_GCJ="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - module_expsym_cmds_GCJ="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - else - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - archive_cmds_GCJ='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' - module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - ld_shlibs_GCJ=no - ;; - esac - fi - ;; - - dgux*) - archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_GCJ='-L$libdir' - hardcode_shlibpath_var_GCJ=no - ;; - - freebsd1*) - ld_shlibs_GCJ=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - hardcode_libdir_flag_spec_GCJ='-R$libdir' - hardcode_direct_GCJ=yes - hardcode_shlibpath_var_GCJ=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_GCJ=yes - hardcode_minus_L_GCJ=yes - hardcode_shlibpath_var_GCJ=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - archive_cmds_GCJ='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec_GCJ='-R$libdir' - hardcode_direct_GCJ=yes - hardcode_shlibpath_var_GCJ=no - ;; - - hpux9*) - if test "$GCC" = yes; then - archive_cmds_GCJ='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - archive_cmds_GCJ='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_GCJ=: - hardcode_direct_GCJ=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_GCJ=yes - export_dynamic_flag_spec_GCJ='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_GCJ='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_GCJ=: - - hardcode_direct_GCJ=yes - export_dynamic_flag_spec_GCJ='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_GCJ=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - fi - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' - hardcode_libdir_separator_GCJ=: - - case $host_cpu in - hppa*64*|ia64*) - hardcode_libdir_flag_spec_ld_GCJ='+b $libdir' - hardcode_direct_GCJ=no - hardcode_shlibpath_var_GCJ=no - ;; - *) - hardcode_direct_GCJ=yes - export_dynamic_flag_spec_GCJ='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L_GCJ=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - archive_cmds_GCJ='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_ld_GCJ='-rpath $libdir' - fi - hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_GCJ=: - link_all_deplibs_GCJ=yes - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - archive_cmds_GCJ='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - hardcode_libdir_flag_spec_GCJ='-R$libdir' - hardcode_direct_GCJ=yes - hardcode_shlibpath_var_GCJ=no - ;; - - newsos6) - archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_GCJ=yes - hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_GCJ=: - hardcode_shlibpath_var_GCJ=no - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - hardcode_direct_GCJ=yes - hardcode_shlibpath_var_GCJ=no - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' - export_dynamic_flag_spec_GCJ='${wl}-E' - else - case $host_os in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_GCJ='-R$libdir' - ;; - *) - archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' - ;; - esac - fi - else - ld_shlibs_GCJ=no - fi - ;; - - os2*) - hardcode_libdir_flag_spec_GCJ='-L$libdir' - hardcode_minus_L_GCJ=yes - allow_undefined_flag_GCJ=unsupported - archive_cmds_GCJ='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - old_archive_From_new_cmds_GCJ='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - allow_undefined_flag_GCJ=' -expect_unresolved \*' - archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - fi - hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator_GCJ=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' - else - allow_undefined_flag_GCJ=' -expect_unresolved \*' - archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' - - # Both c and cxx compiler support -rpath directly - hardcode_libdir_flag_spec_GCJ='-rpath $libdir' - fi - hardcode_libdir_separator_GCJ=: - ;; - - solaris*) - no_undefined_flag_GCJ=' -z text' - if test "$GCC" = yes; then - wlarc='${wl}' - archive_cmds_GCJ='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' - else - wlarc='' - archive_cmds_GCJ='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' - fi - hardcode_libdir_flag_spec_GCJ='-R$libdir' - hardcode_shlibpath_var_GCJ=no - case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - whole_archive_flag_spec_GCJ='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - whole_archive_flag_spec_GCJ='-z allextract$convenience -z defaultextract' - fi - ;; - esac - link_all_deplibs_GCJ=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - archive_cmds_GCJ='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_GCJ='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - hardcode_libdir_flag_spec_GCJ='-L$libdir' - hardcode_direct_GCJ=yes - hardcode_minus_L_GCJ=yes - hardcode_shlibpath_var_GCJ=no - ;; - - sysv4) - case $host_vendor in - sni) - archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_GCJ=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - archive_cmds_GCJ='$LD -G -o $lib $libobjs $deplibs $linker_flags' - reload_cmds_GCJ='$CC -r -o $output$reload_objs' - hardcode_direct_GCJ=no - ;; - motorola) - archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_direct_GCJ=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - hardcode_shlibpath_var_GCJ=no - ;; - - sysv4.3*) - archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var_GCJ=no - export_dynamic_flag_spec_GCJ='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_shlibpath_var_GCJ=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - ld_shlibs_GCJ=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) - no_undefined_flag_GCJ='${wl}-z,text' - archive_cmds_need_lc_GCJ=no - hardcode_shlibpath_var_GCJ=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds_GCJ='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_GCJ='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - no_undefined_flag_GCJ='${wl}-z,text' - allow_undefined_flag_GCJ='${wl}-z,nodefs' - archive_cmds_need_lc_GCJ=no - hardcode_shlibpath_var_GCJ=no - hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - hardcode_libdir_separator_GCJ=':' - link_all_deplibs_GCJ=yes - export_dynamic_flag_spec_GCJ='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - archive_cmds_GCJ='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - else - archive_cmds_GCJ='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - hardcode_libdir_flag_spec_GCJ='-L$libdir' - hardcode_shlibpath_var_GCJ=no - ;; - - *) - ld_shlibs_GCJ=no - ;; - esac - fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_GCJ" >&5 -$as_echo "$ld_shlibs_GCJ" >&6; } -test "$ld_shlibs_GCJ" = no && can_build_shared=no - -# -# Do we need to explicitly link libc? -# -case "x$archive_cmds_need_lc_GCJ" in -x|xyes) - # Assume -lc should be added - archive_cmds_need_lc_GCJ=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $archive_cmds_GCJ in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 -$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } - $rm conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$lt_prog_compiler_wl_GCJ - pic_flag=$lt_prog_compiler_pic_GCJ - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$allow_undefined_flag_GCJ - allow_undefined_flag_GCJ= - if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\""; } >&5 - (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 - test $ac_status = 0; } - then - archive_cmds_need_lc_GCJ=no - else - archive_cmds_need_lc_GCJ=yes - fi - allow_undefined_flag_GCJ=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $rm conftest* - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_GCJ" >&5 -$as_echo "$archive_cmds_need_lc_GCJ" >&6; } - ;; - esac - fi - ;; -esac - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 -$as_echo_n "checking dynamic linker characteristics... " >&6; } -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" - -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[4-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[01] | aix4.[01].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[45]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $rm \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[123]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[01]* | freebsdelf3.[01]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ - freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix[3-9]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -nto-qnx*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[89] | openbsd2.[89].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - export_dynamic_flag_spec='${wl}-Blargedynsym' - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - shlibpath_overrides_runpath=no - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - shlibpath_overrides_runpath=yes - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 -$as_echo "$dynamic_linker" >&6; } -test "$dynamic_linker" = no && can_build_shared=no - -if ${lt_cv_sys_lib_search_path_spec+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" -fi - -sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -if ${lt_cv_sys_lib_dlsearch_path_spec+:} false; then : - $as_echo_n "(cached) " >&6 -else - lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" -fi - -sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 -$as_echo_n "checking how to hardcode library paths into programs... " >&6; } -hardcode_action_GCJ= -if test -n "$hardcode_libdir_flag_spec_GCJ" || \ - test -n "$runpath_var_GCJ" || \ - test "X$hardcode_automatic_GCJ" = "Xyes" ; then - - # We can hardcode non-existant directories. - if test "$hardcode_direct_GCJ" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, GCJ)" != no && - test "$hardcode_minus_L_GCJ" != no; then - # Linking always hardcodes the temporary library directory. - hardcode_action_GCJ=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action_GCJ=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - hardcode_action_GCJ=unsupported -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_GCJ" >&5 -$as_echo "$hardcode_action_GCJ" >&6; } - -if test "$hardcode_action_GCJ" = relink; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi - - -# The else clause should only fire when bootstrapping the -# libtool distribution, otherwise you forgot to ship ltmain.sh -# with your package, and you will get complaints that there are -# no rules to generate ltmain.sh. -if test -f "$ltmain"; then - # See if we are running on zsh, and set the options which allow our commands through - # without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST - fi - # Now quote all the things that may contain metacharacters while being - # careful not to overquote the AC_SUBSTed values. We take copies of the - # variables and quote the copies for generation of the libtool script. - for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ - SED SHELL STRIP \ - libname_spec library_names_spec soname_spec extract_expsyms_cmds \ - old_striplib striplib file_magic_cmd finish_cmds finish_eval \ - deplibs_check_method reload_flag reload_cmds need_locks \ - lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ - lt_cv_sys_global_symbol_to_c_name_address \ - sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ - old_postinstall_cmds old_postuninstall_cmds \ - compiler_GCJ \ - CC_GCJ \ - LD_GCJ \ - lt_prog_compiler_wl_GCJ \ - lt_prog_compiler_pic_GCJ \ - lt_prog_compiler_static_GCJ \ - lt_prog_compiler_no_builtin_flag_GCJ \ - export_dynamic_flag_spec_GCJ \ - thread_safe_flag_spec_GCJ \ - whole_archive_flag_spec_GCJ \ - enable_shared_with_static_runtimes_GCJ \ - old_archive_cmds_GCJ \ - old_archive_from_new_cmds_GCJ \ - predep_objects_GCJ \ - postdep_objects_GCJ \ - predeps_GCJ \ - postdeps_GCJ \ - compiler_lib_search_path_GCJ \ - compiler_lib_search_dirs_GCJ \ - archive_cmds_GCJ \ - archive_expsym_cmds_GCJ \ - postinstall_cmds_GCJ \ - postuninstall_cmds_GCJ \ - old_archive_from_expsyms_cmds_GCJ \ - allow_undefined_flag_GCJ \ - no_undefined_flag_GCJ \ - export_symbols_cmds_GCJ \ - hardcode_libdir_flag_spec_GCJ \ - hardcode_libdir_flag_spec_ld_GCJ \ - hardcode_libdir_separator_GCJ \ - hardcode_automatic_GCJ \ - module_cmds_GCJ \ - module_expsym_cmds_GCJ \ - lt_cv_prog_compiler_c_o_GCJ \ - fix_srcfile_path_GCJ \ - exclude_expsyms_GCJ \ - include_expsyms_GCJ; do - - case $var in - old_archive_cmds_GCJ | \ - old_archive_from_new_cmds_GCJ | \ - archive_cmds_GCJ | \ - archive_expsym_cmds_GCJ | \ - module_cmds_GCJ | \ - module_expsym_cmds_GCJ | \ - old_archive_from_expsyms_cmds_GCJ | \ - export_symbols_cmds_GCJ | \ - extract_expsyms_cmds | reload_cmds | finish_cmds | \ - postinstall_cmds | postuninstall_cmds | \ - old_postinstall_cmds | old_postuninstall_cmds | \ - sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) - # Double-quote double-evaled strings. - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" - ;; - *) - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" - ;; - esac - done - - case $lt_echo in - *'\$0 --fallback-echo"') - lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` - ;; - esac - -cfgfile="$ofile" - - cat <<__EOF__ >> "$cfgfile" -# ### BEGIN LIBTOOL TAG CONFIG: $tagname - -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_GCJ - -# Whether or not to disallow shared libs when runtime libs are static -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_GCJ - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# An echo program that does not interpret backslashes. -echo=$lt_echo - -# The archiver. -AR=$lt_AR -AR_FLAGS=$lt_AR_FLAGS - -# A C compiler. -LTCC=$lt_LTCC - -# LTCC compiler flags. -LTCFLAGS=$lt_LTCFLAGS - -# A language-specific compiler. -CC=$lt_compiler_GCJ - -# Is the compiler the GNU C compiler? -with_gcc=$GCC_GCJ - -# An ERE matcher. -EGREP=$lt_EGREP - -# The linker used to build libraries. -LD=$lt_LD_GCJ - -# Whether we need hard or soft links. -LN_S=$lt_LN_S - -# A BSD-compatible nm program. -NM=$lt_NM - -# A symbol stripping program -STRIP=$lt_STRIP - -# Used to examine libraries when file_magic_cmd begins "file" -MAGIC_CMD=$MAGIC_CMD - -# Used on cygwin: DLL creation program. -DLLTOOL="$DLLTOOL" - -# Used on cygwin: object dumper. -OBJDUMP="$OBJDUMP" - -# Used on cygwin: assembler. -AS="$AS" - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_GCJ - -# Object file suffix (normally "o"). -objext="$ac_objext" - -# Old archive suffix (normally "a"). -libext="$libext" - -# Shared library suffix (normally ".so"). -shrext_cmds='$shrext_cmds' - -# Executable file suffix (normally ""). -exeext="$exeext" - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_GCJ -pic_mode=$pic_mode - -# What is the maximum length of a command? -max_cmd_len=$lt_cv_sys_max_cmd_len - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_GCJ - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Do we need the lib prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_GCJ - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_GCJ - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_GCJ - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_GCJ - -# Compiler flag to generate thread-safe objects. -thread_safe_flag_spec=$lt_thread_safe_flag_spec_GCJ - -# Library versioning type. -version_type=$version_type - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME. -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Commands used to build and install an old-style archive. -RANLIB=$lt_RANLIB -old_archive_cmds=$lt_old_archive_cmds_GCJ -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_GCJ - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_GCJ - -# Commands used to build and install a shared archive. -archive_cmds=$lt_archive_cmds_GCJ -archive_expsym_cmds=$lt_archive_expsym_cmds_GCJ -postinstall_cmds=$lt_postinstall_cmds -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to build a loadable module (assumed same as above if empty) -module_cmds=$lt_module_cmds_GCJ -module_expsym_cmds=$lt_module_expsym_cmds_GCJ - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - -# Dependencies to place before the objects being linked to create a -# shared library. -predep_objects=$lt_predep_objects_GCJ - -# Dependencies to place after the objects being linked to create a -# shared library. -postdep_objects=$lt_postdep_objects_GCJ - -# Dependencies to place before the objects being linked to create a -# shared library. -predeps=$lt_predeps_GCJ - -# Dependencies to place after the objects being linked to create a -# shared library. -postdeps=$lt_postdeps_GCJ - -# The directories searched by this compiler when creating a shared -# library -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_GCJ - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_GCJ - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method == file_magic. -file_magic_cmd=$lt_file_magic_cmd - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_GCJ - -# Flag that forces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_GCJ - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# Same as above, but a single script fragment to be evaled but not shown. -finish_eval=$lt_finish_eval - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm in a C name address pair -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# This is the shared library runtime path variable. -runpath_var=$runpath_var - -# This is the shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_GCJ - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_GCJ - -# If ld is used when linking, flag to hardcode \$libdir into -# a binary during linking. This must work even if \$libdir does -# not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_GCJ - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_GCJ - -# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the -# resulting binary. -hardcode_direct=$hardcode_direct_GCJ - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L=$hardcode_minus_L_GCJ - -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into -# the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_GCJ - -# Set to yes if building a shared library automatically hardcodes DIR into the library -# and all subsequent libraries and executables linked against it. -hardcode_automatic=$hardcode_automatic_GCJ - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at relink time. -variables_saved_for_relink="$variables_saved_for_relink" - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_GCJ - -# Compile-time system search path for libraries -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Run-time system search path for libraries -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path - -# Set to yes if exported symbols are required. -always_export_symbols=$always_export_symbols_GCJ - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_GCJ - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_GCJ - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_GCJ - -# ### END LIBTOOL TAG CONFIG: $tagname - -__EOF__ - - -else - # If there is no Makefile yet, we rely on a make rule to execute - # `config.status --recheck' to rerun these tests and create the - # libtool script then. - ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` - if test -f "$ltmain_in"; then - test -f Makefile && make "$ltmain" - fi -fi - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -CC="$lt_save_CC" - - else - tagname="" - fi - ;; - - RC) - - -# Source file extension for RC test sources. -ac_ext=rc - -# Object file extension for compiled RC test sources. -objext=o -objext_RC=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' - -# Code to be used in simple link tests -lt_simple_link_test_code="$lt_simple_compile_test_code" - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC - - -# save warnings/boilerplate of simple test code -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$rm conftest* - -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$rm -r conftest* - - -# Allow CC to be a program name with arguments. -lt_save_CC="$CC" -CC=${RC-"windres"} -compiler=$CC -compiler_RC=$CC -for cc_temp in $compiler""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` - -lt_cv_prog_compiler_c_o_RC=yes - -# The else clause should only fire when bootstrapping the -# libtool distribution, otherwise you forgot to ship ltmain.sh -# with your package, and you will get complaints that there are -# no rules to generate ltmain.sh. -if test -f "$ltmain"; then - # See if we are running on zsh, and set the options which allow our commands through - # without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST - fi - # Now quote all the things that may contain metacharacters while being - # careful not to overquote the AC_SUBSTed values. We take copies of the - # variables and quote the copies for generation of the libtool script. - for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ - SED SHELL STRIP \ - libname_spec library_names_spec soname_spec extract_expsyms_cmds \ - old_striplib striplib file_magic_cmd finish_cmds finish_eval \ - deplibs_check_method reload_flag reload_cmds need_locks \ - lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ - lt_cv_sys_global_symbol_to_c_name_address \ - sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ - old_postinstall_cmds old_postuninstall_cmds \ - compiler_RC \ - CC_RC \ - LD_RC \ - lt_prog_compiler_wl_RC \ - lt_prog_compiler_pic_RC \ - lt_prog_compiler_static_RC \ - lt_prog_compiler_no_builtin_flag_RC \ - export_dynamic_flag_spec_RC \ - thread_safe_flag_spec_RC \ - whole_archive_flag_spec_RC \ - enable_shared_with_static_runtimes_RC \ - old_archive_cmds_RC \ - old_archive_from_new_cmds_RC \ - predep_objects_RC \ - postdep_objects_RC \ - predeps_RC \ - postdeps_RC \ - compiler_lib_search_path_RC \ - compiler_lib_search_dirs_RC \ - archive_cmds_RC \ - archive_expsym_cmds_RC \ - postinstall_cmds_RC \ - postuninstall_cmds_RC \ - old_archive_from_expsyms_cmds_RC \ - allow_undefined_flag_RC \ - no_undefined_flag_RC \ - export_symbols_cmds_RC \ - hardcode_libdir_flag_spec_RC \ - hardcode_libdir_flag_spec_ld_RC \ - hardcode_libdir_separator_RC \ - hardcode_automatic_RC \ - module_cmds_RC \ - module_expsym_cmds_RC \ - lt_cv_prog_compiler_c_o_RC \ - fix_srcfile_path_RC \ - exclude_expsyms_RC \ - include_expsyms_RC; do - - case $var in - old_archive_cmds_RC | \ - old_archive_from_new_cmds_RC | \ - archive_cmds_RC | \ - archive_expsym_cmds_RC | \ - module_cmds_RC | \ - module_expsym_cmds_RC | \ - old_archive_from_expsyms_cmds_RC | \ - export_symbols_cmds_RC | \ - extract_expsyms_cmds | reload_cmds | finish_cmds | \ - postinstall_cmds | postuninstall_cmds | \ - old_postinstall_cmds | old_postuninstall_cmds | \ - sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) - # Double-quote double-evaled strings. - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" - ;; - *) - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" - ;; - esac - done - - case $lt_echo in - *'\$0 --fallback-echo"') - lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` - ;; - esac - -cfgfile="$ofile" - - cat <<__EOF__ >> "$cfgfile" -# ### BEGIN LIBTOOL TAG CONFIG: $tagname - -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$archive_cmds_need_lc_RC - -# Whether or not to disallow shared libs when runtime libs are static -allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# An echo program that does not interpret backslashes. -echo=$lt_echo - -# The archiver. -AR=$lt_AR -AR_FLAGS=$lt_AR_FLAGS - -# A C compiler. -LTCC=$lt_LTCC - -# LTCC compiler flags. -LTCFLAGS=$lt_LTCFLAGS - -# A language-specific compiler. -CC=$lt_compiler_RC - -# Is the compiler the GNU C compiler? -with_gcc=$GCC_RC - -# An ERE matcher. -EGREP=$lt_EGREP - -# The linker used to build libraries. -LD=$lt_LD_RC - -# Whether we need hard or soft links. -LN_S=$lt_LN_S - -# A BSD-compatible nm program. -NM=$lt_NM - -# A symbol stripping program -STRIP=$lt_STRIP - -# Used to examine libraries when file_magic_cmd begins "file" -MAGIC_CMD=$MAGIC_CMD - -# Used on cygwin: DLL creation program. -DLLTOOL="$DLLTOOL" - -# Used on cygwin: object dumper. -OBJDUMP="$OBJDUMP" - -# Used on cygwin: assembler. -AS="$AS" - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# How to pass a linker flag through the compiler. -wl=$lt_lt_prog_compiler_wl_RC - -# Object file suffix (normally "o"). -objext="$ac_objext" - -# Old archive suffix (normally "a"). -libext="$libext" - -# Shared library suffix (normally ".so"). -shrext_cmds='$shrext_cmds' - -# Executable file suffix (normally ""). -exeext="$exeext" - -# Additional compiler flags for building library objects. -pic_flag=$lt_lt_prog_compiler_pic_RC -pic_mode=$pic_mode - -# What is the maximum length of a command? -max_cmd_len=$lt_cv_sys_max_cmd_len - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Do we need the lib prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_lt_prog_compiler_static_RC - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_whole_archive_flag_spec_RC - -# Compiler flag to generate thread-safe objects. -thread_safe_flag_spec=$lt_thread_safe_flag_spec_RC - -# Library versioning type. -version_type=$version_type - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME. -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Commands used to build and install an old-style archive. -RANLIB=$lt_RANLIB -old_archive_cmds=$lt_old_archive_cmds_RC -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC - -# Commands used to build and install a shared archive. -archive_cmds=$lt_archive_cmds_RC -archive_expsym_cmds=$lt_archive_expsym_cmds_RC -postinstall_cmds=$lt_postinstall_cmds -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to build a loadable module (assumed same as above if empty) -module_cmds=$lt_module_cmds_RC -module_expsym_cmds=$lt_module_expsym_cmds_RC - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - -# Dependencies to place before the objects being linked to create a -# shared library. -predep_objects=$lt_predep_objects_RC - -# Dependencies to place after the objects being linked to create a -# shared library. -postdep_objects=$lt_postdep_objects_RC - -# Dependencies to place before the objects being linked to create a -# shared library. -predeps=$lt_predeps_RC - -# Dependencies to place after the objects being linked to create a -# shared library. -postdeps=$lt_postdeps_RC - -# The directories searched by this compiler when creating a shared -# library -compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_RC - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_compiler_lib_search_path_RC - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method == file_magic. -file_magic_cmd=$lt_file_magic_cmd - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_allow_undefined_flag_RC - -# Flag that forces no undefined symbols. -no_undefined_flag=$lt_no_undefined_flag_RC - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# Same as above, but a single script fragment to be evaled but not shown. -finish_eval=$lt_finish_eval - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm in a C name address pair -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# This is the shared library runtime path variable. -runpath_var=$runpath_var - -# This is the shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# How to hardcode a shared library path into an executable. -hardcode_action=$hardcode_action_RC - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC - -# If ld is used when linking, flag to hardcode \$libdir into -# a binary during linking. This must work even if \$libdir does -# not exist. -hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_RC - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator=$lt_hardcode_libdir_separator_RC - -# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the -# resulting binary. -hardcode_direct=$hardcode_direct_RC - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L=$hardcode_minus_L_RC - -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into -# the resulting binary. -hardcode_shlibpath_var=$hardcode_shlibpath_var_RC - -# Set to yes if building a shared library automatically hardcodes DIR into the library -# and all subsequent libraries and executables linked against it. -hardcode_automatic=$hardcode_automatic_RC - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at relink time. -variables_saved_for_relink="$variables_saved_for_relink" - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$link_all_deplibs_RC - -# Compile-time system search path for libraries -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Run-time system search path for libraries -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path - -# Set to yes if exported symbols are required. -always_export_symbols=$always_export_symbols_RC - -# The commands to list exported symbols. -export_symbols_cmds=$lt_export_symbols_cmds_RC - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_exclude_expsyms_RC - -# Symbols that must always be exported. -include_expsyms=$lt_include_expsyms_RC - -# ### END LIBTOOL TAG CONFIG: $tagname - -__EOF__ - - -else - # If there is no Makefile yet, we rely on a make rule to execute - # `config.status --recheck' to rerun these tests and create the - # libtool script then. - ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` - if test -f "$ltmain_in"; then - test -f Makefile && make "$ltmain" - fi -fi - - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - -CC="$lt_save_CC" - - ;; - - *) - as_fn_error $? "Unsupported tag name: $tagname" "$LINENO" 5 - ;; - esac - - # Append the new tag name to the list of available tags. - if test -n "$tagname" ; then - available_tags="$available_tags $tagname" - fi - fi - done - IFS="$lt_save_ifs" - - # Now substitute the updated list of available tags. - if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then - mv "${ofile}T" "$ofile" - chmod +x "$ofile" - else - rm -f "${ofile}T" - as_fn_error $? "unable to update list of available tagged configurations." "$LINENO" 5 - fi -fi - - - -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" - -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' - -# Prevent multiple expansion - - - - - - - - - - - - - - - - - - - - - -# TODO(chandlerc@google.com): Currently we aren't running the Python tests -# against the interpreter detected by AM_PATH_PYTHON, and so we condition -# HAVE_PYTHON by requiring "python" to be in the PATH, and that interpreter's -# version to be >= 2.3. This will allow the scripts to use a "/usr/bin/env" -# hashbang. -PYTHON= # We *do not* allow the user to specify a python interpreter -# Extract the first word of "python", so it can be a program name with args. -set dummy python; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PYTHON+:} false; then : - $as_echo_n "(cached) " >&6 -else - case $PYTHON in - [\\/]* | ?:[\\/]*) - ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_path_PYTHON" && ac_cv_path_PYTHON=":" - ;; -esac -fi -PYTHON=$ac_cv_path_PYTHON -if test -n "$PYTHON"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 -$as_echo "$PYTHON" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -if test "$PYTHON" != ":"; then : - prog="import sys, string -# split strings by '.' and convert to numeric. Append some zeros -# because we need at least 4 digits for the hex conversion. -minver = map(int, string.split('2.3', '.')) + [0, 0, 0] -minverhex = 0 -for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[i] -sys.exit(sys.hexversion < minverhex)" - if { echo "$as_me:$LINENO: $PYTHON -c "$prog"" >&5 - ($PYTHON -c "$prog") >&5 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then : - : -else - PYTHON=":" -fi -fi - if test "$PYTHON" != ":"; then - HAVE_PYTHON_TRUE= - HAVE_PYTHON_FALSE='#' -else - HAVE_PYTHON_TRUE='#' - HAVE_PYTHON_FALSE= -fi - - -# Configure pthreads. - -# Check whether --with-pthreads was given. -if test "${with_pthreads+set}" = set; then : - withval=$with_pthreads; with_pthreads=$withval -else - with_pthreads=check -fi - - -have_pthreads=no -if test "x$with_pthreads" != "xno"; then : - - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -acx_pthread_ok=no - -# We used to check for pthread.h first, but this fails if pthread.h -# requires special compiler flags (e.g. on True64 or Sequent). -# It gets checked for in the link test anyway. - -# First of all, check if the user has set any of the PTHREAD_LIBS, -# etcetera environment variables, and if threads linking works using -# them: -if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - save_LIBS="$LIBS" - LIBS="$PTHREAD_LIBS $LIBS" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS" >&5 -$as_echo_n "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... " >&6; } - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char pthread_join (); -int -main () -{ -return pthread_join (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - acx_pthread_ok=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_ok" >&5 -$as_echo "$acx_pthread_ok" >&6; } - if test x"$acx_pthread_ok" = xno; then - PTHREAD_LIBS="" - PTHREAD_CFLAGS="" - fi - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" -fi - -# We must check for the threads library under a number of different -# names; the ordering is very important because some systems -# (e.g. DEC) have both -lpthread and -lpthreads, where one of the -# libraries is broken (non-POSIX). - -# Create a list of thread flags to try. Items starting with a "-" are -# C compiler flags, and other items are library names, except for "none" -# which indicates that we try without any flags at all, and "pthread-config" -# which is a program returning the flags for the Pth emulation library. - -acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" - -# The ordering *is* (sometimes) important. Some notes on the -# individual items follow: - -# pthreads: AIX (must check this before -lpthread) -# none: in case threads are in libc; should be tried before -Kthread and -# other compiler flags to prevent continual compiler warnings -# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) -# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) -# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) -# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) -# -pthreads: Solaris/gcc -# -mthreads: Mingw32/gcc, Lynx/gcc -# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it -# doesn't hurt to check since this sometimes defines pthreads too; -# also defines -D_REENTRANT) -# ... -mt is also the pthreads flag for HP/aCC -# pthread: Linux, etcetera -# --thread-safe: KAI C++ -# pthread-config: use pthread-config program (for GNU Pth library) - -case "${host_cpu}-${host_os}" in - *solaris*) - - # On Solaris (at least, for some versions), libc contains stubbed - # (non-functional) versions of the pthreads routines, so link-based - # tests will erroneously succeed. (We need to link with -pthreads/-mt/ - # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather - # a function called by this macro, so we could check for that, but - # who knows whether they'll stub that too in a future libc.) So, - # we'll just look for -pthreads and -lpthread first: - - acx_pthread_flags="-pthreads pthread -mt -pthread $acx_pthread_flags" - ;; -esac - -if test x"$acx_pthread_ok" = xno; then -for flag in $acx_pthread_flags; do - - case $flag in - none) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5 -$as_echo_n "checking whether pthreads work without any flags... " >&6; } - ;; - - -*) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $flag" >&5 -$as_echo_n "checking whether pthreads work with $flag... " >&6; } - PTHREAD_CFLAGS="$flag" - ;; - - pthread-config) - # Extract the first word of "pthread-config", so it can be a program name with args. -set dummy pthread-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_acx_pthread_config+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$acx_pthread_config"; then - ac_cv_prog_acx_pthread_config="$acx_pthread_config" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_acx_pthread_config="yes" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - - test -z "$ac_cv_prog_acx_pthread_config" && ac_cv_prog_acx_pthread_config="no" -fi -fi -acx_pthread_config=$ac_cv_prog_acx_pthread_config -if test -n "$acx_pthread_config"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_config" >&5 -$as_echo "$acx_pthread_config" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - if test x"$acx_pthread_config" = xno; then continue; fi - PTHREAD_CFLAGS="`pthread-config --cflags`" - PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" - ;; - - *) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$flag" >&5 -$as_echo_n "checking for the pthreads library -l$flag... " >&6; } - PTHREAD_LIBS="-l$flag" - ;; - esac - - save_LIBS="$LIBS" - save_CFLAGS="$CFLAGS" - LIBS="$PTHREAD_LIBS $LIBS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - - # Check for various functions. We must include pthread.h, - # since some functions may be macros. (On the Sequent, we - # need a special flag -Kthread to make this header compile.) - # We check for pthread_join because it is in -lpthread on IRIX - # while pthread_create is in libc. We check for pthread_attr_init - # due to DEC craziness with -lpthreads. We check for - # pthread_cleanup_push because it is one of the few pthread - # functions on Solaris that doesn't have a non-functional libc stub. - # We try pthread_create on general principles. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -pthread_t th; pthread_join(th, 0); - pthread_attr_init(0); pthread_cleanup_push(0, 0); - pthread_create(0,0,0,0); pthread_cleanup_pop(0); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - acx_pthread_ok=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_ok" >&5 -$as_echo "$acx_pthread_ok" >&6; } - if test "x$acx_pthread_ok" = xyes; then - break; - fi - - PTHREAD_LIBS="" - PTHREAD_CFLAGS="" -done -fi - -# Various other checks: -if test "x$acx_pthread_ok" = xyes; then - save_LIBS="$LIBS" - LIBS="$PTHREAD_LIBS $LIBS" - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - - # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5 -$as_echo_n "checking for joinable pthread attribute... " >&6; } - attr_name=unknown - for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -int attr=$attr; return attr; - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - attr_name=$attr; break -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - done - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $attr_name" >&5 -$as_echo "$attr_name" >&6; } - if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then - -cat >>confdefs.h <<_ACEOF -#define PTHREAD_CREATE_JOINABLE $attr_name -_ACEOF - - fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if more special flags are required for pthreads" >&5 -$as_echo_n "checking if more special flags are required for pthreads... " >&6; } - flag=no - case "${host_cpu}-${host_os}" in - *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; - *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; - esac - { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${flag}" >&5 -$as_echo "${flag}" >&6; } - if test "x$flag" != xno; then - PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" - fi - - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" - # More AIX lossage: must compile with xlc_r or cc_r - if test x"$GCC" != xyes; then - for ac_prog in xlc_r cc_r -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PTHREAD_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$PTHREAD_CC"; then - ac_cv_prog_PTHREAD_CC="$PTHREAD_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_PTHREAD_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done - done -IFS=$as_save_IFS - -fi -fi -PTHREAD_CC=$ac_cv_prog_PTHREAD_CC -if test -n "$PTHREAD_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5 -$as_echo "$PTHREAD_CC" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - - test -n "$PTHREAD_CC" && break -done -test -n "$PTHREAD_CC" || PTHREAD_CC="${CC}" - - else - PTHREAD_CC=$CC - fi - - # The next part tries to detect GCC inconsistency with -shared on some - # architectures and systems. The problem is that in certain - # configurations, when -shared is specified, GCC "forgets" to - # internally use various flags which are still necessary. - - # - # Prepare the flags - # - save_CFLAGS="$CFLAGS" - save_LIBS="$LIBS" - save_CC="$CC" - - # Try with the flags determined by the earlier checks. - # - # -Wl,-z,defs forces link-time symbol resolution, so that the - # linking checks with -shared actually have any value - # - # FIXME: -fPIC is required for -shared on many architectures, - # so we specify it here, but the right way would probably be to - # properly detect whether it is actually required. - CFLAGS="-shared -fPIC -Wl,-z,defs $CFLAGS $PTHREAD_CFLAGS" - LIBS="$PTHREAD_LIBS $LIBS" - CC="$PTHREAD_CC" - - # In order not to create several levels of indentation, we test - # the value of "$done" until we find the cure or run out of ideas. - done="no" - - # First, make sure the CFLAGS we added are actually accepted by our - # compiler. If not (and OS X's ld, for instance, does not accept -z), - # then we can't do this test. - if test x"$done" = xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to check for GCC pthread/shared inconsistencies" >&5 -$as_echo_n "checking whether to check for GCC pthread/shared inconsistencies... " >&6; } - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - -else - done=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - - if test "x$done" = xyes ; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - fi - fi - - if test x"$done" = xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -pthread is sufficient with -shared" >&5 -$as_echo_n "checking whether -pthread is sufficient with -shared... " >&6; } - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -pthread_t th; pthread_join(th, 0); - pthread_attr_init(0); pthread_cleanup_push(0, 0); - pthread_create(0,0,0,0); pthread_cleanup_pop(0); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - done=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - - if test "x$done" = xyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi - fi - - # - # Linux gcc on some architectures such as mips/mipsel forgets - # about -lpthread - # - if test x"$done" = xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lpthread fixes that" >&5 -$as_echo_n "checking whether -lpthread fixes that... " >&6; } - LIBS="-lpthread $PTHREAD_LIBS $save_LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -pthread_t th; pthread_join(th, 0); - pthread_attr_init(0); pthread_cleanup_push(0, 0); - pthread_create(0,0,0,0); pthread_cleanup_pop(0); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - done=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - - if test "x$done" = xyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - PTHREAD_LIBS="-lpthread $PTHREAD_LIBS" - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi - fi - # - # FreeBSD 4.10 gcc forgets to use -lc_r instead of -lc - # - if test x"$done" = xno; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc_r fixes that" >&5 -$as_echo_n "checking whether -lc_r fixes that... " >&6; } - LIBS="-lc_r $PTHREAD_LIBS $save_LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include -int -main () -{ -pthread_t th; pthread_join(th, 0); - pthread_attr_init(0); pthread_cleanup_push(0, 0); - pthread_create(0,0,0,0); pthread_cleanup_pop(0); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - done=yes -fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - - if test "x$done" = xyes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - PTHREAD_LIBS="-lc_r $PTHREAD_LIBS" - else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } - fi - fi - if test x"$done" = xno; then - # OK, we have run out of ideas - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Impossible to determine how to use pthreads with shared libraries" >&5 -$as_echo "$as_me: WARNING: Impossible to determine how to use pthreads with shared libraries" >&2;} - - # so it's not safe to assume that we may use pthreads - acx_pthread_ok=no - fi - - CFLAGS="$save_CFLAGS" - LIBS="$save_LIBS" - CC="$save_CC" -else - PTHREAD_CC="$CC" -fi - - - - - -# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: -if test x"$acx_pthread_ok" = xyes; then - -$as_echo "#define HAVE_PTHREAD 1" >>confdefs.h - - : -else - acx_pthread_ok=no - if test "x$with_pthreads" != "xcheck"; then : - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 -$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} -as_fn_error $? "--with-pthreads was specified, but unable to be used -See \`config.log' for more details" "$LINENO" 5; } -fi -fi -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - - have_pthreads="$acx_pthread_ok" -fi - if test "x$have_pthreads" == "xyes"; then - HAVE_PTHREADS_TRUE= - HAVE_PTHREADS_FALSE='#' -else - HAVE_PTHREADS_TRUE='#' - HAVE_PTHREADS_FALSE= -fi - - - - -# TODO(chandlerc@google.com) Check for the necessary system headers. - -# TODO(chandlerc@google.com) Check the types, structures, and other compiler -# and architecture characteristics. - -# Output the generated files. No further autoconf macros may be used. -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, we kill variables containing newlines. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -( - for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do - eval ac_val=\$$ac_var - case $ac_val in #( - *${as_nl}*) - case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; - esac - case $ac_var in #( - _ | IFS | as_nl) ;; #( - BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( - *) { eval $ac_var=; unset $ac_var;} ;; - esac ;; - esac - done - - (set) 2>&1 | - case $as_nl`(ac_space=' '; set) 2>&1` in #( - *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes: double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \. - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; #( - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" - ;; - esac | - sort -) | - sed ' - /^ac_cv_env_/b end - t clear - :clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - :end' >>confcache -if diff "$cache_file" confcache >/dev/null 2>&1; then :; else - if test -w "$cache_file"; then - if test "x$cache_file" != "x/dev/null"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -$as_echo "$as_me: updating cache $cache_file" >&6;} - if test ! -f "$cache_file" || test -h "$cache_file"; then - cat confcache >"$cache_file" - else - case $cache_file in #( - */* | ?:*) - mv -f confcache "$cache_file"$$ && - mv -f "$cache_file"$$ "$cache_file" ;; #( - *) - mv -f confcache "$cache_file" ;; - esac - fi - fi - else - { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -U= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`$as_echo "$ac_i" | sed "$ac_script"` - # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR - # will be set to the directory where LIBOBJS objects are built. - as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" - as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - -if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - as_fn_error $? "conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then - as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${HAVE_PYTHON_TRUE}" && test -z "${HAVE_PYTHON_FALSE}"; then - as_fn_error $? "conditional \"HAVE_PYTHON\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${HAVE_PTHREADS_TRUE}" && test -z "${HAVE_PTHREADS_FALSE}"; then - as_fn_error $? "conditional \"HAVE_PTHREADS\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi - -: "${CONFIG_STATUS=./config.status}" -ac_write_fail=0 -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} -as_write_fail=0 -cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false - -SHELL=\${CONFIG_SHELL-$SHELL} -export SHELL -_ASEOF -cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 -## -------------------- ## -## M4sh Initialization. ## -## -------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : - emulate sh - NULLCMD=: - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in #( - *posix*) : - set -o posix ;; #( - *) : - ;; -esac -fi - - -as_nl=' -' -export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\\(.*\\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; - esac; - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - PATH_SEPARATOR=: - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || - PATH_SEPARATOR=';' - } -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -as_myself= -case $0 in #(( - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break - done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - exit 1 -fi - -# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x\${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - - -# as_fn_error STATUS ERROR [LINENO LOG_FD] -# ---------------------------------------- -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the -# script with STATUS, using 1 if that was 0. -as_fn_error () -{ - as_status=$1; test $as_status -eq 0 && as_status=1 - if test "$4"; then - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 - fi - $as_echo "$as_me: error: $2" >&2 - as_fn_exit $as_status -} # as_fn_error - - -# as_fn_set_status STATUS -# ----------------------- -# Set $? to STATUS, without forking. -as_fn_set_status () -{ - return $1 -} # as_fn_set_status - -# as_fn_exit STATUS -# ----------------- -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. -as_fn_exit () -{ - set +e - as_fn_set_status $1 - exit $1 -} # as_fn_exit - -# as_fn_unset VAR -# --------------- -# Portably unset VAR. -as_fn_unset () -{ - { eval $1=; unset $1;} -} -as_unset=as_fn_unset -# as_fn_append VAR VALUE -# ---------------------- -# Append the text in VALUE to the end of the definition contained in VAR. Take -# advantage of any shell optimizations that allow amortized linear growth over -# repeated appends, instead of the typical quadratic growth present in naive -# implementations. -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : - eval 'as_fn_append () - { - eval $1+=\$2 - }' -else - as_fn_append () - { - eval $1=\$$1\$2 - } -fi # as_fn_append - -# as_fn_arith ARG... -# ------------------ -# Perform arithmetic evaluation on the ARGs, and store the result in the -# global $as_val. Take advantage of shells that can avoid forks. The arguments -# must be portable across $(()) and expr. -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : - eval 'as_fn_arith () - { - as_val=$(( $* )) - }' -else - as_fn_arith () - { - as_val=`expr "$@" || test $? -eq 1` - } -fi # as_fn_arith - - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in #((((( --n*) - case `echo 'xy\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - xy) ECHO_C='\c';; - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null - ECHO_T=' ';; - esac;; -*) - ECHO_N='-n';; -esac - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir 2>/dev/null -fi -if (echo >conf$$.file) 2>/dev/null; then - if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -pR'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -pR' - elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln - else - as_ln_s='cp -pR' - fi -else - as_ln_s='cp -pR' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - - -# as_fn_mkdir_p -# ------------- -# Create "$as_dir" as a directory, including parents if necessary. -as_fn_mkdir_p () -{ - - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || eval $as_mkdir_p || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" - - -} # as_fn_mkdir_p -if mkdir -p . 2>/dev/null; then - as_mkdir_p='mkdir -p "$as_dir"' -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - - -# as_fn_executable_p FILE -# ----------------------- -# Test if FILE is an executable regular file. -as_fn_executable_p () -{ - test -f "$1" && test -x "$1" -} # as_fn_executable_p -as_test_x='test -x' -as_executable_p=as_fn_executable_p - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 -## ----------------------------------- ## -## Main body of $CONFIG_STATUS script. ## -## ----------------------------------- ## -_ASEOF -test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# Save the log message, to keep $0 and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by Google C++ Testing Framework $as_me 1.5.0, which was -generated by GNU Autoconf 2.69. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -_ACEOF - -case $ac_config_files in *" -"*) set x $ac_config_files; shift; ac_config_files=$*;; -esac - -case $ac_config_headers in *" -"*) set x $ac_config_headers; shift; ac_config_headers=$*;; -esac - - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# Files that config.status was made for. -config_files="$ac_config_files" -config_headers="$ac_config_headers" -config_commands="$ac_config_commands" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -ac_cs_usage="\ -\`$as_me' instantiates files and other configuration actions -from templates according to the current configuration. Unless the files -and actions are specified as TAGs, all are instantiated by default. - -Usage: $0 [OPTION]... [TAG]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - --config print configuration, then exit - -q, --quiet, --silent - do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to ." - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" -ac_cs_version="\\ -Google C++ Testing Framework config.status 1.5.0 -configured by $0, generated by GNU Autoconf 2.69, - with options \\"\$ac_cs_config\\" - -Copyright (C) 2012 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='$ac_pwd' -srcdir='$srcdir' -INSTALL='$INSTALL' -MKDIR_P='$MKDIR_P' -AWK='$AWK' -test -n "\$AWK" || AWK=awk -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# The default lists apply if the user does not specify any file. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=?*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - --*=) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg= - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - $as_echo "$ac_cs_version"; exit ;; - --config | --confi | --conf | --con | --co | --c ) - $as_echo "$ac_cs_config"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - '') as_fn_error $? "missing file argument" ;; - esac - as_fn_append CONFIG_FILES " '$ac_optarg'" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - case $ac_optarg in - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append CONFIG_HEADERS " '$ac_optarg'" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - as_fn_error $? "ambiguous option: \`$1' -Try \`$0 --help' for more information.";; - --help | --hel | -h ) - $as_echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) as_fn_error $? "unrecognized option: \`$1' -Try \`$0 --help' for more information." ;; - - *) as_fn_append ac_config_targets " $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -if \$ac_cs_recheck; then - set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion - shift - \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 - CONFIG_SHELL='$SHELL' - export CONFIG_SHELL - exec "\$@" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX - $as_echo "$ac_log" -} >&5 - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -# -# INIT-COMMANDS -# -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" - -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "build-aux/config.h") CONFIG_HEADERS="$CONFIG_HEADERS build-aux/config.h" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "scripts/gtest-config") CONFIG_FILES="$CONFIG_FILES scripts/gtest-config" ;; - "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; - - *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= ac_tmp= - trap 'exit_status=$? - : "${ac_tmp:=$tmp}" - { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status -' 0 - trap 'as_fn_exit 1' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 -ac_tmp=$tmp - -# Set up the scripts for CONFIG_FILES section. -# No need to generate them if there are no CONFIG_FILES. -# This happens for instance with `./config.status config.h'. -if test -n "$CONFIG_FILES"; then - - -ac_cr=`echo X | tr X '\015'` -# On cygwin, bash can eat \r inside `` if the user requested igncr. -# But we know of no other shell where ac_cr would be empty at this -# point, so we can use a bashism as a fallback. -if test "x$ac_cr" = x; then - eval ac_cr=\$\'\\r\' -fi -ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` -if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then - ac_cs_awk_cr='\\r' -else - ac_cs_awk_cr=$ac_cr -fi - -echo 'BEGIN {' >"$ac_tmp/subs1.awk" && -_ACEOF - - -{ - echo "cat >conf$$subs.awk <<_ACEOF" && - echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && - echo "_ACEOF" -} >conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 -ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` -ac_delim='%!_!# ' -for ac_last_try in false false false false false :; do - . ./conf$$subs.sh || - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - - ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` - if test $ac_delim_n = $ac_delim_num; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done -rm -f conf$$subs.sh - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && -_ACEOF -sed -n ' -h -s/^/S["/; s/!.*/"]=/ -p -g -s/^[^!]*!// -:repl -t repl -s/'"$ac_delim"'$// -t delim -:nl -h -s/\(.\{148\}\)..*/\1/ -t more1 -s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ -p -n -b repl -:more1 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t nl -:delim -h -s/\(.\{148\}\)..*/\1/ -t more2 -s/["\\]/\\&/g; s/^/"/; s/$/"/ -p -b -:more2 -s/["\\]/\\&/g; s/^/"/; s/$/"\\/ -p -g -s/.\{148\}// -t delim -' >$CONFIG_STATUS || ac_write_fail=1 -rm -f conf$$subs.awk -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -_ACAWK -cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && - for (key in S) S_is_set[key] = 1 - FS = "" - -} -{ - line = $ 0 - nfields = split(line, field, "@") - substed = 0 - len = length(field[1]) - for (i = 2; i < nfields; i++) { - key = field[i] - keylen = length(key) - if (S_is_set[key]) { - value = S[key] - line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) - len += length(value) + length(field[++i]) - substed = 1 - } else - len += 1 + keylen - } - - print line -} - -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then - sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" -else - cat -fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ - || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 -_ACEOF - -# VPATH may cause trouble with some makes, so we remove sole $(srcdir), -# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ -h -s/// -s/^/:/ -s/[ ]*$/:/ -s/:\$(srcdir):/:/g -s/:\${srcdir}:/:/g -s/:@srcdir@:/:/g -s/^:*// -s/:*$// -x -s/\(=[ ]*\).*/\1/ -G -s/\n// -s/^[^=]*=[ ]*$// -}' -fi - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -fi # test -n "$CONFIG_FILES" - -# Set up the scripts for CONFIG_HEADERS section. -# No need to generate them if there are no CONFIG_HEADERS. -# This happens for instance with `./config.status Makefile'. -if test -n "$CONFIG_HEADERS"; then -cat >"$ac_tmp/defines.awk" <<\_ACAWK || -BEGIN { -_ACEOF - -# Transform confdefs.h into an awk script `defines.awk', embedded as -# here-document in config.status, that substitutes the proper values into -# config.h.in to produce config.h. - -# Create a delimiter string that does not exist in confdefs.h, to ease -# handling of long lines. -ac_delim='%!_!# ' -for ac_last_try in false false :; do - ac_tt=`sed -n "/$ac_delim/p" confdefs.h` - if test -z "$ac_tt"; then - break - elif $ac_last_try; then - as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 - else - ac_delim="$ac_delim!$ac_delim _$ac_delim!! " - fi -done - -# For the awk script, D is an array of macro values keyed by name, -# likewise P contains macro parameters if any. Preserve backslash -# newline sequences. - -ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -sed -n ' -s/.\{148\}/&'"$ac_delim"'/g -t rset -:rset -s/^[ ]*#[ ]*define[ ][ ]*/ / -t def -d -:def -s/\\$// -t bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3"/p -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p -d -:bsnl -s/["\\]/\\&/g -s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ -D["\1"]=" \3\\\\\\n"\\/p -t cont -s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p -t cont -d -:cont -n -s/.\{148\}/&'"$ac_delim"'/g -t clear -:clear -s/\\$// -t bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/"/p -d -:bsnlc -s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p -b cont -' >$CONFIG_STATUS || ac_write_fail=1 - -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - for (key in D) D_is_set[key] = 1 - FS = "" -} -/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { - line = \$ 0 - split(line, arg, " ") - if (arg[1] == "#") { - defundef = arg[2] - mac1 = arg[3] - } else { - defundef = substr(arg[1], 2) - mac1 = arg[2] - } - split(mac1, mac2, "(") #) - macro = mac2[1] - prefix = substr(line, 1, index(line, defundef) - 1) - if (D_is_set[macro]) { - # Preserve the white space surrounding the "#". - print prefix "define", macro P[macro] D[macro] - next - } else { - # Replace #undef with comments. This is necessary, for example, - # in the case of _POSIX_SOURCE, which is predefined and required - # on some systems where configure will not decide to define it. - if (defundef == "undef") { - print "/*", prefix defundef, macro, "*/" - next - } - } -} -{ print } -_ACAWK -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 - as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 -fi # test -n "$CONFIG_HEADERS" - - -eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" -shift -for ac_tag -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$ac_tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; - esac - case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac - as_fn_append ac_file_inputs " '$ac_f'" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input='Generated from '` - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' - `' by configure.' - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -$as_echo "$as_me: creating $ac_file" >&6;} - fi - # Neutralize special characters interpreted by sed in replacement strings. - case $configure_input in #( - *\&* | *\|* | *\\* ) - ac_sed_conf_input=`$as_echo "$configure_input" | - sed 's/[\\\\&|]/\\\\&/g'`;; #( - *) ac_sed_conf_input=$configure_input;; - esac - - case $ac_tag in - *:-:* | *:-) cat >"$ac_tmp/stdin" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir="$ac_dir"; as_fn_mkdir_p - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac - ac_MKDIR_P=$MKDIR_P - case $MKDIR_P in - [\\/$]* | ?:[\\/]* ) ;; - */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; - esac -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= -ac_sed_dataroot=' -/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p' -case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 - ac_datarootdir_hack=' - s&@datadir@&$datadir&g - s&@docdir@&$docdir&g - s&@infodir@&$infodir&g - s&@localedir@&$localedir&g - s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; -esac -_ACEOF - -# Neutralize VPATH when `$srcdir' = `.'. -# Shell code in configure.ac might set extrasub. -# FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_sed_extra="$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s|@configure_input@|$ac_sed_conf_input|;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@top_build_prefix@&$ac_top_build_prefix&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@INSTALL@&$ac_INSTALL&;t t -s&@MKDIR_P@&$ac_MKDIR_P&;t t -$ac_datarootdir_hack -" -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ - >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ - "$ac_tmp/out"`; test -z "$ac_out"; } && - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined" >&2;} - - rm -f "$ac_tmp/stdin" - case $ac_file in - -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; - *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; - esac \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - ;; - :H) - # - # CONFIG_HEADER - # - if test x"$ac_file" != x-; then - { - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" - } >"$ac_tmp/config.h" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -$as_echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f "$ac_file" - mv "$ac_tmp/config.h" "$ac_file" \ - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 - fi - else - $as_echo "/* $configure_input */" \ - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ - || as_fn_error $? "could not create -" "$LINENO" 5 - fi -# Compute "$ac_file"'s index in $config_headers. -_am_arg="$ac_file" -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $_am_arg | $_am_arg:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || -$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$_am_arg" : 'X\(//\)[^/]' \| \ - X"$_am_arg" : 'X\(//\)$' \| \ - X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$_am_arg" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'`/stamp-h$_am_stamp_count - ;; - - :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -$as_echo "$as_me: executing $ac_file commands" >&6;} - ;; - esac - - - case $ac_file$ac_mode in - "scripts/gtest-config":F) chmod +x scripts/gtest-config ;; - "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$mf" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -$as_echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done -done - ;; - - esac -done # for ac_tag - - -as_fn_exit 0 -_ACEOF -ac_clean_files=$ac_clean_files_save - -test $ac_write_fail = 0 || - as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || as_fn_exit 1 -fi -if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} -fi - diff --git a/cpp/thirdparty/gtest-1.5.0/configure.ac b/cpp/thirdparty/gtest-1.5.0/configure.ac deleted file mode 100644 index 1b9123746..000000000 --- a/cpp/thirdparty/gtest-1.5.0/configure.ac +++ /dev/null @@ -1,67 +0,0 @@ -m4_include(m4/acx_pthread.m4) - -# At this point, the Xcode project assumes the version string will be three -# integers separated by periods and surrounded by square brackets (e.g. -# "[1.0.1]"). It also asumes that there won't be any closing parenthesis -# between "AC_INIT(" and the closing ")" including comments and strings. -AC_INIT([Google C++ Testing Framework], - [1.5.0], - [googletestframework@googlegroups.com], - [gtest]) - -# Provide various options to initialize the Autoconf and configure processes. -AC_PREREQ([2.59]) -AC_CONFIG_SRCDIR([./COPYING]) -AC_CONFIG_AUX_DIR([build-aux]) -AC_CONFIG_HEADERS([build-aux/config.h]) -AC_CONFIG_FILES([Makefile]) -AC_CONFIG_FILES([scripts/gtest-config], [chmod +x scripts/gtest-config]) - -# Initialize Automake with various options. We require at least v1.9, prevent -# pedantic complaints about package files, and enable various distribution -# targets. -AM_INIT_AUTOMAKE([1.9 dist-bzip2 dist-zip foreign subdir-objects]) - -# Check for programs used in building Google Test. -AC_PROG_CC -AC_PROG_CXX -AC_LANG([C++]) -AC_PROG_LIBTOOL - -# TODO(chandlerc@google.com): Currently we aren't running the Python tests -# against the interpreter detected by AM_PATH_PYTHON, and so we condition -# HAVE_PYTHON by requiring "python" to be in the PATH, and that interpreter's -# version to be >= 2.3. This will allow the scripts to use a "/usr/bin/env" -# hashbang. -PYTHON= # We *do not* allow the user to specify a python interpreter -AC_PATH_PROG([PYTHON],[python],[:]) -AS_IF([test "$PYTHON" != ":"], - [AM_PYTHON_CHECK_VERSION([$PYTHON],[2.3],[:],[PYTHON=":"])]) -AM_CONDITIONAL([HAVE_PYTHON],[test "$PYTHON" != ":"]) - -# Configure pthreads. -AC_ARG_WITH([pthreads], - [AS_HELP_STRING([--with-pthreads], - [use pthreads (default is yes)])], - [with_pthreads=$withval], - [with_pthreads=check]) - -have_pthreads=no -AS_IF([test "x$with_pthreads" != "xno"], - [ACX_PTHREAD( - [], - [AS_IF([test "x$with_pthreads" != "xcheck"], - [AC_MSG_FAILURE( - [--with-pthreads was specified, but unable to be used])])]) - have_pthreads="$acx_pthread_ok"]) -AM_CONDITIONAL([HAVE_PTHREADS],[test "x$have_pthreads" == "xyes"]) -AC_SUBST(PTHREAD_CFLAGS) -AC_SUBST(PTHREAD_LIBS) - -# TODO(chandlerc@google.com) Check for the necessary system headers. - -# TODO(chandlerc@google.com) Check the types, structures, and other compiler -# and architecture characteristics. - -# Output the generated files. No further autoconf macros may be used. -AC_OUTPUT diff --git a/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/.gitignore b/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/.gitignore deleted file mode 100644 index e49a737d5..000000000 --- a/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/.deps diff --git a/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest-all.cc b/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest-all.cc deleted file mode 100644 index 644479a63..000000000 --- a/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest-all.cc +++ /dev/null @@ -1,8510 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: mheule@google.com (Markus Heule) -// -// Google C++ Testing Framework (Google Test) -// -// Sometimes it's desirable to build Google Test by compiling a single file. -// This file serves this purpose. - -// This line ensures that gtest.h can be compiled on its own, even -// when it's fused. -#include - -// The following lines pull in the real gtest *.cc files. -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// The Google C++ Testing Framework (Google Test) - -// Copyright 2007, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// Utilities for testing Google Test itself and code that uses Google Test -// (e.g. frameworks built on top of Google Test). - -#ifndef GTEST_INCLUDE_GTEST_GTEST_SPI_H_ -#define GTEST_INCLUDE_GTEST_GTEST_SPI_H_ - - -namespace testing { - -// This helper class can be used to mock out Google Test failure reporting -// so that we can test Google Test or code that builds on Google Test. -// -// An object of this class appends a TestPartResult object to the -// TestPartResultArray object given in the constructor whenever a Google Test -// failure is reported. It can either intercept only failures that are -// generated in the same thread that created this object or it can intercept -// all generated failures. The scope of this mock object can be controlled with -// the second argument to the two arguments constructor. -class GTEST_API_ ScopedFakeTestPartResultReporter - : public TestPartResultReporterInterface { - public: - // The two possible mocking modes of this object. - enum InterceptMode { - INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. - INTERCEPT_ALL_THREADS // Intercepts all failures. - }; - - // The c'tor sets this object as the test part result reporter used - // by Google Test. The 'result' parameter specifies where to report the - // results. This reporter will only catch failures generated in the current - // thread. DEPRECATED - explicit ScopedFakeTestPartResultReporter(TestPartResultArray* result); - - // Same as above, but you can choose the interception scope of this object. - ScopedFakeTestPartResultReporter(InterceptMode intercept_mode, - TestPartResultArray* result); - - // The d'tor restores the previous test part result reporter. - virtual ~ScopedFakeTestPartResultReporter(); - - // Appends the TestPartResult object to the TestPartResultArray - // received in the constructor. - // - // This method is from the TestPartResultReporterInterface - // interface. - virtual void ReportTestPartResult(const TestPartResult& result); - private: - void Init(); - - const InterceptMode intercept_mode_; - TestPartResultReporterInterface* old_reporter_; - TestPartResultArray* const result_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter); -}; - -namespace internal { - -// A helper class for implementing EXPECT_FATAL_FAILURE() and -// EXPECT_NONFATAL_FAILURE(). Its destructor verifies that the given -// TestPartResultArray contains exactly one failure that has the given -// type and contains the given substring. If that's not the case, a -// non-fatal failure will be generated. -class GTEST_API_ SingleFailureChecker { - public: - // The constructor remembers the arguments. - SingleFailureChecker(const TestPartResultArray* results, - TestPartResult::Type type, - const char* substr); - ~SingleFailureChecker(); - private: - const TestPartResultArray* const results_; - const TestPartResult::Type type_; - const String substr_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(SingleFailureChecker); -}; - -} // namespace internal - -} // namespace testing - -// A set of macros for testing Google Test assertions or code that's expected -// to generate Google Test fatal failures. It verifies that the given -// statement will cause exactly one fatal Google Test failure with 'substr' -// being part of the failure message. -// -// There are two different versions of this macro. EXPECT_FATAL_FAILURE only -// affects and considers failures generated in the current thread and -// EXPECT_FATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. -// -// The verification of the assertion is done correctly even when the statement -// throws an exception or aborts the current function. -// -// Known restrictions: -// - 'statement' cannot reference local non-static variables or -// non-static members of the current object. -// - 'statement' cannot return a value. -// - You cannot stream a failure message to this macro. -// -// Note that even though the implementations of the following two -// macros are much alike, we cannot refactor them to use a common -// helper macro, due to some peculiarity in how the preprocessor -// works. The AcceptsMacroThatExpandsToUnprotectedComma test in -// gtest_unittest.cc will fail to compile if we do that. -#define EXPECT_FATAL_FAILURE(statement, substr) \ - do { \ - class GTestExpectFatalFailureHelper {\ - public:\ - static void Execute() { statement; }\ - };\ - ::testing::TestPartResultArray gtest_failures;\ - ::testing::internal::SingleFailureChecker gtest_checker(\ - >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ - {\ - ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ - ::testing::ScopedFakeTestPartResultReporter:: \ - INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ - GTestExpectFatalFailureHelper::Execute();\ - }\ - } while (::testing::internal::AlwaysFalse()) - -#define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ - do { \ - class GTestExpectFatalFailureHelper {\ - public:\ - static void Execute() { statement; }\ - };\ - ::testing::TestPartResultArray gtest_failures;\ - ::testing::internal::SingleFailureChecker gtest_checker(\ - >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ - {\ - ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ - ::testing::ScopedFakeTestPartResultReporter:: \ - INTERCEPT_ALL_THREADS, >est_failures);\ - GTestExpectFatalFailureHelper::Execute();\ - }\ - } while (::testing::internal::AlwaysFalse()) - -// A macro for testing Google Test assertions or code that's expected to -// generate Google Test non-fatal failures. It asserts that the given -// statement will cause exactly one non-fatal Google Test failure with 'substr' -// being part of the failure message. -// -// There are two different versions of this macro. EXPECT_NONFATAL_FAILURE only -// affects and considers failures generated in the current thread and -// EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. -// -// 'statement' is allowed to reference local variables and members of -// the current object. -// -// The verification of the assertion is done correctly even when the statement -// throws an exception or aborts the current function. -// -// Known restrictions: -// - You cannot stream a failure message to this macro. -// -// Note that even though the implementations of the following two -// macros are much alike, we cannot refactor them to use a common -// helper macro, due to some peculiarity in how the preprocessor -// works. If we do that, the code won't compile when the user gives -// EXPECT_NONFATAL_FAILURE() a statement that contains a macro that -// expands to code containing an unprotected comma. The -// AcceptsMacroThatExpandsToUnprotectedComma test in gtest_unittest.cc -// catches that. -// -// For the same reason, we have to write -// if (::testing::internal::AlwaysTrue()) { statement; } -// instead of -// GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) -// to avoid an MSVC warning on unreachable code. -#define EXPECT_NONFATAL_FAILURE(statement, substr) \ - do {\ - ::testing::TestPartResultArray gtest_failures;\ - ::testing::internal::SingleFailureChecker gtest_checker(\ - >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ - (substr));\ - {\ - ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ - ::testing::ScopedFakeTestPartResultReporter:: \ - INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ - if (::testing::internal::AlwaysTrue()) { statement; }\ - }\ - } while (::testing::internal::AlwaysFalse()) - -#define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ - do {\ - ::testing::TestPartResultArray gtest_failures;\ - ::testing::internal::SingleFailureChecker gtest_checker(\ - >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ - (substr));\ - {\ - ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ - ::testing::ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS,\ - >est_failures);\ - if (::testing::internal::AlwaysTrue()) { statement; }\ - }\ - } while (::testing::internal::AlwaysFalse()) - -#endif // GTEST_INCLUDE_GTEST_GTEST_SPI_H_ - -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include - -#if GTEST_OS_LINUX - -// TODO(kenton@google.com): Use autoconf to detect availability of -// gettimeofday(). -#define GTEST_HAS_GETTIMEOFDAY_ 1 - -#include -#include -#include -// Declares vsnprintf(). This header is not available on Windows. -#include -#include -#include -#include -#include -#include - -#elif GTEST_OS_SYMBIAN -#define GTEST_HAS_GETTIMEOFDAY_ 1 -#include // NOLINT - -#elif GTEST_OS_ZOS -#define GTEST_HAS_GETTIMEOFDAY_ 1 -#include // NOLINT - -// On z/OS we additionally need strings.h for strcasecmp. -#include // NOLINT - -#elif GTEST_OS_WINDOWS_MOBILE // We are on Windows CE. - -#include // NOLINT - -#elif GTEST_OS_WINDOWS // We are on Windows proper. - -#include // NOLINT -#include // NOLINT -#include // NOLINT -#include // NOLINT - -#if GTEST_OS_WINDOWS_MINGW -// MinGW has gettimeofday() but not _ftime64(). -// TODO(kenton@google.com): Use autoconf to detect availability of -// gettimeofday(). -// TODO(kenton@google.com): There are other ways to get the time on -// Windows, like GetTickCount() or GetSystemTimeAsFileTime(). MinGW -// supports these. consider using them instead. -#define GTEST_HAS_GETTIMEOFDAY_ 1 -#include // NOLINT -#endif // GTEST_OS_WINDOWS_MINGW - -// cpplint thinks that the header is already included, so we want to -// silence it. -#include // NOLINT - -#else - -// Assume other platforms have gettimeofday(). -// TODO(kenton@google.com): Use autoconf to detect availability of -// gettimeofday(). -#define GTEST_HAS_GETTIMEOFDAY_ 1 - -// cpplint thinks that the header is already included, so we want to -// silence it. -#include // NOLINT -#include // NOLINT - -#endif // GTEST_OS_LINUX - -#if GTEST_HAS_EXCEPTIONS -#include -#endif - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// Utility functions and classes used by the Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) -// -// This file contains purely Google Test's internal implementation. Please -// DO NOT #INCLUDE IT IN A USER PROGRAM. - -#ifndef GTEST_SRC_GTEST_INTERNAL_INL_H_ -#define GTEST_SRC_GTEST_INTERNAL_INL_H_ - -// GTEST_IMPLEMENTATION_ is defined to 1 iff the current translation unit is -// part of Google Test's implementation; otherwise it's undefined. -#if !GTEST_IMPLEMENTATION_ -// A user is trying to include this from his code - just say no. -#error "gtest-internal-inl.h is part of Google Test's internal implementation." -#error "It must not be included except by Google Test itself." -#endif // GTEST_IMPLEMENTATION_ - -#ifndef _WIN32_WCE -#include -#endif // !_WIN32_WCE -#include -#include // For strtoll/_strtoul64/malloc/free. -#include // For memmove. - -#include -#include -#include - - -#if GTEST_OS_WINDOWS -#include // For DWORD. -#endif // GTEST_OS_WINDOWS - - -namespace testing { - -// Declares the flags. -// -// We don't want the users to modify this flag in the code, but want -// Google Test's own unit tests to be able to access it. Therefore we -// declare it here as opposed to in gtest.h. -GTEST_DECLARE_bool_(death_test_use_fork); - -namespace internal { - -// The value of GetTestTypeId() as seen from within the Google Test -// library. This is solely for testing GetTestTypeId(). -GTEST_API_ extern const TypeId kTestTypeIdInGoogleTest; - -// Names of the flags (needed for parsing Google Test flags). -const char kAlsoRunDisabledTestsFlag[] = "also_run_disabled_tests"; -const char kBreakOnFailureFlag[] = "break_on_failure"; -const char kCatchExceptionsFlag[] = "catch_exceptions"; -const char kColorFlag[] = "color"; -const char kFilterFlag[] = "filter"; -const char kListTestsFlag[] = "list_tests"; -const char kOutputFlag[] = "output"; -const char kPrintTimeFlag[] = "print_time"; -const char kRandomSeedFlag[] = "random_seed"; -const char kRepeatFlag[] = "repeat"; -const char kShuffleFlag[] = "shuffle"; -const char kStackTraceDepthFlag[] = "stack_trace_depth"; -const char kThrowOnFailureFlag[] = "throw_on_failure"; - -// A valid random seed must be in [1, kMaxRandomSeed]. -const int kMaxRandomSeed = 99999; - -// g_help_flag is true iff the --help flag or an equivalent form is -// specified on the command line. -GTEST_API_ extern bool g_help_flag; - -// Returns the current time in milliseconds. -GTEST_API_ TimeInMillis GetTimeInMillis(); - -// Returns true iff Google Test should use colors in the output. -GTEST_API_ bool ShouldUseColor(bool stdout_is_tty); - -// Formats the given time in milliseconds as seconds. -GTEST_API_ std::string FormatTimeInMillisAsSeconds(TimeInMillis ms); - -// Parses a string for an Int32 flag, in the form of "--flag=value". -// -// On success, stores the value of the flag in *value, and returns -// true. On failure, returns false without changing *value. -GTEST_API_ bool ParseInt32Flag( - const char* str, const char* flag, Int32* value); - -// Returns a random seed in range [1, kMaxRandomSeed] based on the -// given --gtest_random_seed flag value. -inline int GetRandomSeedFromFlag(Int32 random_seed_flag) { - const unsigned int raw_seed = (random_seed_flag == 0) ? - static_cast(GetTimeInMillis()) : - static_cast(random_seed_flag); - - // Normalizes the actual seed to range [1, kMaxRandomSeed] such that - // it's easy to type. - const int normalized_seed = - static_cast((raw_seed - 1U) % - static_cast(kMaxRandomSeed)) + 1; - return normalized_seed; -} - -// Returns the first valid random seed after 'seed'. The behavior is -// undefined if 'seed' is invalid. The seed after kMaxRandomSeed is -// considered to be 1. -inline int GetNextRandomSeed(int seed) { - GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed) - << "Invalid random seed " << seed << " - must be in [1, " - << kMaxRandomSeed << "]."; - const int next_seed = seed + 1; - return (next_seed > kMaxRandomSeed) ? 1 : next_seed; -} - -// This class saves the values of all Google Test flags in its c'tor, and -// restores them in its d'tor. -class GTestFlagSaver { - public: - // The c'tor. - GTestFlagSaver() { - also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests); - break_on_failure_ = GTEST_FLAG(break_on_failure); - catch_exceptions_ = GTEST_FLAG(catch_exceptions); - color_ = GTEST_FLAG(color); - death_test_style_ = GTEST_FLAG(death_test_style); - death_test_use_fork_ = GTEST_FLAG(death_test_use_fork); - filter_ = GTEST_FLAG(filter); - internal_run_death_test_ = GTEST_FLAG(internal_run_death_test); - list_tests_ = GTEST_FLAG(list_tests); - output_ = GTEST_FLAG(output); - print_time_ = GTEST_FLAG(print_time); - random_seed_ = GTEST_FLAG(random_seed); - repeat_ = GTEST_FLAG(repeat); - shuffle_ = GTEST_FLAG(shuffle); - stack_trace_depth_ = GTEST_FLAG(stack_trace_depth); - throw_on_failure_ = GTEST_FLAG(throw_on_failure); - } - - // The d'tor is not virtual. DO NOT INHERIT FROM THIS CLASS. - ~GTestFlagSaver() { - GTEST_FLAG(also_run_disabled_tests) = also_run_disabled_tests_; - GTEST_FLAG(break_on_failure) = break_on_failure_; - GTEST_FLAG(catch_exceptions) = catch_exceptions_; - GTEST_FLAG(color) = color_; - GTEST_FLAG(death_test_style) = death_test_style_; - GTEST_FLAG(death_test_use_fork) = death_test_use_fork_; - GTEST_FLAG(filter) = filter_; - GTEST_FLAG(internal_run_death_test) = internal_run_death_test_; - GTEST_FLAG(list_tests) = list_tests_; - GTEST_FLAG(output) = output_; - GTEST_FLAG(print_time) = print_time_; - GTEST_FLAG(random_seed) = random_seed_; - GTEST_FLAG(repeat) = repeat_; - GTEST_FLAG(shuffle) = shuffle_; - GTEST_FLAG(stack_trace_depth) = stack_trace_depth_; - GTEST_FLAG(throw_on_failure) = throw_on_failure_; - } - private: - // Fields for saving the original values of flags. - bool also_run_disabled_tests_; - bool break_on_failure_; - bool catch_exceptions_; - String color_; - String death_test_style_; - bool death_test_use_fork_; - String filter_; - String internal_run_death_test_; - bool list_tests_; - String output_; - bool print_time_; - bool pretty_; - internal::Int32 random_seed_; - internal::Int32 repeat_; - bool shuffle_; - internal::Int32 stack_trace_depth_; - bool throw_on_failure_; -} GTEST_ATTRIBUTE_UNUSED_; - -// Converts a Unicode code point to a narrow string in UTF-8 encoding. -// code_point parameter is of type UInt32 because wchar_t may not be -// wide enough to contain a code point. -// The output buffer str must containt at least 32 characters. -// The function returns the address of the output buffer. -// If the code_point is not a valid Unicode code point -// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be output -// as '(Invalid Unicode 0xXXXXXXXX)'. -GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str); - -// Converts a wide string to a narrow string in UTF-8 encoding. -// The wide string is assumed to have the following encoding: -// UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) -// UTF-32 if sizeof(wchar_t) == 4 (on Linux) -// Parameter str points to a null-terminated wide string. -// Parameter num_chars may additionally limit the number -// of wchar_t characters processed. -1 is used when the entire string -// should be processed. -// If the string contains code points that are not valid Unicode code points -// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output -// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding -// and contains invalid UTF-16 surrogate pairs, values in those pairs -// will be encoded as individual Unicode characters from Basic Normal Plane. -GTEST_API_ String WideStringToUtf8(const wchar_t* str, int num_chars); - -// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file -// if the variable is present. If a file already exists at this location, this -// function will write over it. If the variable is present, but the file cannot -// be created, prints an error and exits. -void WriteToShardStatusFileIfNeeded(); - -// Checks whether sharding is enabled by examining the relevant -// environment variable values. If the variables are present, -// but inconsistent (e.g., shard_index >= total_shards), prints -// an error and exits. If in_subprocess_for_death_test, sharding is -// disabled because it must only be applied to the original test -// process. Otherwise, we could filter out death tests we intended to execute. -GTEST_API_ bool ShouldShard(const char* total_shards_str, - const char* shard_index_str, - bool in_subprocess_for_death_test); - -// Parses the environment variable var as an Int32. If it is unset, -// returns default_val. If it is not an Int32, prints an error and -// and aborts. -GTEST_API_ Int32 Int32FromEnvOrDie(const char* env_var, Int32 default_val); - -// Given the total number of shards, the shard index, and the test id, -// returns true iff the test should be run on this shard. The test id is -// some arbitrary but unique non-negative integer assigned to each test -// method. Assumes that 0 <= shard_index < total_shards. -GTEST_API_ bool ShouldRunTestOnShard( - int total_shards, int shard_index, int test_id); - -// STL container utilities. - -// Returns the number of elements in the given container that satisfy -// the given predicate. -template -inline int CountIf(const Container& c, Predicate predicate) { - return static_cast(std::count_if(c.begin(), c.end(), predicate)); -} - -// Applies a function/functor to each element in the container. -template -void ForEach(const Container& c, Functor functor) { - std::for_each(c.begin(), c.end(), functor); -} - -// Returns the i-th element of the vector, or default_value if i is not -// in range [0, v.size()). -template -inline E GetElementOr(const std::vector& v, int i, E default_value) { - return (i < 0 || i >= static_cast(v.size())) ? default_value : v[i]; -} - -// Performs an in-place shuffle of a range of the vector's elements. -// 'begin' and 'end' are element indices as an STL-style range; -// i.e. [begin, end) are shuffled, where 'end' == size() means to -// shuffle to the end of the vector. -template -void ShuffleRange(internal::Random* random, int begin, int end, - std::vector* v) { - const int size = static_cast(v->size()); - GTEST_CHECK_(0 <= begin && begin <= size) - << "Invalid shuffle range start " << begin << ": must be in range [0, " - << size << "]."; - GTEST_CHECK_(begin <= end && end <= size) - << "Invalid shuffle range finish " << end << ": must be in range [" - << begin << ", " << size << "]."; - - // Fisher-Yates shuffle, from - // http://en.wikipedia.org/wiki/Fisher-Yates_shuffle - for (int range_width = end - begin; range_width >= 2; range_width--) { - const int last_in_range = begin + range_width - 1; - const int selected = begin + random->Generate(range_width); - std::swap((*v)[selected], (*v)[last_in_range]); - } -} - -// Performs an in-place shuffle of the vector's elements. -template -inline void Shuffle(internal::Random* random, std::vector* v) { - ShuffleRange(random, 0, static_cast(v->size()), v); -} - -// A function for deleting an object. Handy for being used as a -// functor. -template -static void Delete(T* x) { - delete x; -} - -// A predicate that checks the key of a TestProperty against a known key. -// -// TestPropertyKeyIs is copyable. -class TestPropertyKeyIs { - public: - // Constructor. - // - // TestPropertyKeyIs has NO default constructor. - explicit TestPropertyKeyIs(const char* key) - : key_(key) {} - - // Returns true iff the test name of test property matches on key_. - bool operator()(const TestProperty& test_property) const { - return String(test_property.key()).Compare(key_) == 0; - } - - private: - String key_; -}; - -class TestInfoImpl { - public: - TestInfoImpl(TestInfo* parent, const char* test_case_name, - const char* name, const char* test_case_comment, - const char* comment, TypeId fixture_class_id, - internal::TestFactoryBase* factory); - ~TestInfoImpl(); - - // Returns true if this test should run. - bool should_run() const { return should_run_; } - - // Sets the should_run member. - void set_should_run(bool should) { should_run_ = should; } - - // Returns true if this test is disabled. Disabled tests are not run. - bool is_disabled() const { return is_disabled_; } - - // Sets the is_disabled member. - void set_is_disabled(bool is) { is_disabled_ = is; } - - // Returns true if this test matches the filter specified by the user. - bool matches_filter() const { return matches_filter_; } - - // Sets the matches_filter member. - void set_matches_filter(bool matches) { matches_filter_ = matches; } - - // Returns the test case name. - const char* test_case_name() const { return test_case_name_.c_str(); } - - // Returns the test name. - const char* name() const { return name_.c_str(); } - - // Returns the test case comment. - const char* test_case_comment() const { return test_case_comment_.c_str(); } - - // Returns the test comment. - const char* comment() const { return comment_.c_str(); } - - // Returns the ID of the test fixture class. - TypeId fixture_class_id() const { return fixture_class_id_; } - - // Returns the test result. - TestResult* result() { return &result_; } - const TestResult* result() const { return &result_; } - - // Creates the test object, runs it, records its result, and then - // deletes it. - void Run(); - - // Clears the test result. - void ClearResult() { result_.Clear(); } - - // Clears the test result in the given TestInfo object. - static void ClearTestResult(TestInfo * test_info) { - test_info->impl()->ClearResult(); - } - - private: - // These fields are immutable properties of the test. - TestInfo* const parent_; // The owner of this object - const String test_case_name_; // Test case name - const String name_; // Test name - const String test_case_comment_; // Test case comment - const String comment_; // Test comment - const TypeId fixture_class_id_; // ID of the test fixture class - bool should_run_; // True iff this test should run - bool is_disabled_; // True iff this test is disabled - bool matches_filter_; // True if this test matches the - // user-specified filter. - internal::TestFactoryBase* const factory_; // The factory that creates - // the test object - - // This field is mutable and needs to be reset before running the - // test for the second time. - TestResult result_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfoImpl); -}; - -// Class UnitTestOptions. -// -// This class contains functions for processing options the user -// specifies when running the tests. It has only static members. -// -// In most cases, the user can specify an option using either an -// environment variable or a command line flag. E.g. you can set the -// test filter using either GTEST_FILTER or --gtest_filter. If both -// the variable and the flag are present, the latter overrides the -// former. -class GTEST_API_ UnitTestOptions { - public: - // Functions for processing the gtest_output flag. - - // Returns the output format, or "" for normal printed output. - static String GetOutputFormat(); - - // Returns the absolute path of the requested output file, or the - // default (test_detail.xml in the original working directory) if - // none was explicitly specified. - static String GetAbsolutePathToOutputFile(); - - // Functions for processing the gtest_filter flag. - - // Returns true iff the wildcard pattern matches the string. The - // first ':' or '\0' character in pattern marks the end of it. - // - // This recursive algorithm isn't very efficient, but is clear and - // works well enough for matching test names, which are short. - static bool PatternMatchesString(const char *pattern, const char *str); - - // Returns true iff the user-specified filter matches the test case - // name and the test name. - static bool FilterMatchesTest(const String &test_case_name, - const String &test_name); - -#if GTEST_OS_WINDOWS - // Function for supporting the gtest_catch_exception flag. - - // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the - // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. - // This function is useful as an __except condition. - static int GTestShouldProcessSEH(DWORD exception_code); -#endif // GTEST_OS_WINDOWS - - // Returns true if "name" matches the ':' separated list of glob-style - // filters in "filter". - static bool MatchesFilter(const String& name, const char* filter); -}; - -// Returns the current application's name, removing directory path if that -// is present. Used by UnitTestOptions::GetOutputFile. -GTEST_API_ FilePath GetCurrentExecutableName(); - -// The role interface for getting the OS stack trace as a string. -class OsStackTraceGetterInterface { - public: - OsStackTraceGetterInterface() {} - virtual ~OsStackTraceGetterInterface() {} - - // Returns the current OS stack trace as a String. Parameters: - // - // max_depth - the maximum number of stack frames to be included - // in the trace. - // skip_count - the number of top frames to be skipped; doesn't count - // against max_depth. - virtual String CurrentStackTrace(int max_depth, int skip_count) = 0; - - // UponLeavingGTest() should be called immediately before Google Test calls - // user code. It saves some information about the current stack that - // CurrentStackTrace() will use to find and hide Google Test stack frames. - virtual void UponLeavingGTest() = 0; - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetterInterface); -}; - -// A working implementation of the OsStackTraceGetterInterface interface. -class OsStackTraceGetter : public OsStackTraceGetterInterface { - public: - OsStackTraceGetter() : caller_frame_(NULL) {} - virtual String CurrentStackTrace(int max_depth, int skip_count); - virtual void UponLeavingGTest(); - - // This string is inserted in place of stack frames that are part of - // Google Test's implementation. - static const char* const kElidedFramesMarker; - - private: - Mutex mutex_; // protects all internal state - - // We save the stack frame below the frame that calls user code. - // We do this because the address of the frame immediately below - // the user code changes between the call to UponLeavingGTest() - // and any calls to CurrentStackTrace() from within the user code. - void* caller_frame_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetter); -}; - -// Information about a Google Test trace point. -struct TraceInfo { - const char* file; - int line; - String message; -}; - -// This is the default global test part result reporter used in UnitTestImpl. -// This class should only be used by UnitTestImpl. -class DefaultGlobalTestPartResultReporter - : public TestPartResultReporterInterface { - public: - explicit DefaultGlobalTestPartResultReporter(UnitTestImpl* unit_test); - // Implements the TestPartResultReporterInterface. Reports the test part - // result in the current test. - virtual void ReportTestPartResult(const TestPartResult& result); - - private: - UnitTestImpl* const unit_test_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultGlobalTestPartResultReporter); -}; - -// This is the default per thread test part result reporter used in -// UnitTestImpl. This class should only be used by UnitTestImpl. -class DefaultPerThreadTestPartResultReporter - : public TestPartResultReporterInterface { - public: - explicit DefaultPerThreadTestPartResultReporter(UnitTestImpl* unit_test); - // Implements the TestPartResultReporterInterface. The implementation just - // delegates to the current global test part result reporter of *unit_test_. - virtual void ReportTestPartResult(const TestPartResult& result); - - private: - UnitTestImpl* const unit_test_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultPerThreadTestPartResultReporter); -}; - -// The private implementation of the UnitTest class. We don't protect -// the methods under a mutex, as this class is not accessible by a -// user and the UnitTest class that delegates work to this class does -// proper locking. -class GTEST_API_ UnitTestImpl { - public: - explicit UnitTestImpl(UnitTest* parent); - virtual ~UnitTestImpl(); - - // There are two different ways to register your own TestPartResultReporter. - // You can register your own repoter to listen either only for test results - // from the current thread or for results from all threads. - // By default, each per-thread test result repoter just passes a new - // TestPartResult to the global test result reporter, which registers the - // test part result for the currently running test. - - // Returns the global test part result reporter. - TestPartResultReporterInterface* GetGlobalTestPartResultReporter(); - - // Sets the global test part result reporter. - void SetGlobalTestPartResultReporter( - TestPartResultReporterInterface* reporter); - - // Returns the test part result reporter for the current thread. - TestPartResultReporterInterface* GetTestPartResultReporterForCurrentThread(); - - // Sets the test part result reporter for the current thread. - void SetTestPartResultReporterForCurrentThread( - TestPartResultReporterInterface* reporter); - - // Gets the number of successful test cases. - int successful_test_case_count() const; - - // Gets the number of failed test cases. - int failed_test_case_count() const; - - // Gets the number of all test cases. - int total_test_case_count() const; - - // Gets the number of all test cases that contain at least one test - // that should run. - int test_case_to_run_count() const; - - // Gets the number of successful tests. - int successful_test_count() const; - - // Gets the number of failed tests. - int failed_test_count() const; - - // Gets the number of disabled tests. - int disabled_test_count() const; - - // Gets the number of all tests. - int total_test_count() const; - - // Gets the number of tests that should run. - int test_to_run_count() const; - - // Gets the elapsed time, in milliseconds. - TimeInMillis elapsed_time() const { return elapsed_time_; } - - // Returns true iff the unit test passed (i.e. all test cases passed). - bool Passed() const { return !Failed(); } - - // Returns true iff the unit test failed (i.e. some test case failed - // or something outside of all tests failed). - bool Failed() const { - return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed(); - } - - // Gets the i-th test case among all the test cases. i can range from 0 to - // total_test_case_count() - 1. If i is not in that range, returns NULL. - const TestCase* GetTestCase(int i) const { - const int index = GetElementOr(test_case_indices_, i, -1); - return index < 0 ? NULL : test_cases_[i]; - } - - // Gets the i-th test case among all the test cases. i can range from 0 to - // total_test_case_count() - 1. If i is not in that range, returns NULL. - TestCase* GetMutableTestCase(int i) { - const int index = GetElementOr(test_case_indices_, i, -1); - return index < 0 ? NULL : test_cases_[index]; - } - - // Provides access to the event listener list. - TestEventListeners* listeners() { return &listeners_; } - - // Returns the TestResult for the test that's currently running, or - // the TestResult for the ad hoc test if no test is running. - TestResult* current_test_result(); - - // Returns the TestResult for the ad hoc test. - const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } - - // Sets the OS stack trace getter. - // - // Does nothing if the input and the current OS stack trace getter - // are the same; otherwise, deletes the old getter and makes the - // input the current getter. - void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter); - - // Returns the current OS stack trace getter if it is not NULL; - // otherwise, creates an OsStackTraceGetter, makes it the current - // getter, and returns it. - OsStackTraceGetterInterface* os_stack_trace_getter(); - - // Returns the current OS stack trace as a String. - // - // The maximum number of stack frames to be included is specified by - // the gtest_stack_trace_depth flag. The skip_count parameter - // specifies the number of top frames to be skipped, which doesn't - // count against the number of frames to be included. - // - // For example, if Foo() calls Bar(), which in turn calls - // CurrentOsStackTraceExceptTop(1), Foo() will be included in the - // trace but Bar() and CurrentOsStackTraceExceptTop() won't. - String CurrentOsStackTraceExceptTop(int skip_count); - - // Finds and returns a TestCase with the given name. If one doesn't - // exist, creates one and returns it. - // - // Arguments: - // - // test_case_name: name of the test case - // set_up_tc: pointer to the function that sets up the test case - // tear_down_tc: pointer to the function that tears down the test case - TestCase* GetTestCase(const char* test_case_name, - const char* comment, - Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc); - - // Adds a TestInfo to the unit test. - // - // Arguments: - // - // set_up_tc: pointer to the function that sets up the test case - // tear_down_tc: pointer to the function that tears down the test case - // test_info: the TestInfo object - void AddTestInfo(Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc, - TestInfo * test_info) { - // In order to support thread-safe death tests, we need to - // remember the original working directory when the test program - // was first invoked. We cannot do this in RUN_ALL_TESTS(), as - // the user may have changed the current directory before calling - // RUN_ALL_TESTS(). Therefore we capture the current directory in - // AddTestInfo(), which is called to register a TEST or TEST_F - // before main() is reached. - if (original_working_dir_.IsEmpty()) { - original_working_dir_.Set(FilePath::GetCurrentDir()); - GTEST_CHECK_(!original_working_dir_.IsEmpty()) - << "Failed to get the current working directory."; - } - - GetTestCase(test_info->test_case_name(), - test_info->test_case_comment(), - set_up_tc, - tear_down_tc)->AddTestInfo(test_info); - } - -#if GTEST_HAS_PARAM_TEST - // Returns ParameterizedTestCaseRegistry object used to keep track of - // value-parameterized tests and instantiate and register them. - internal::ParameterizedTestCaseRegistry& parameterized_test_registry() { - return parameterized_test_registry_; - } -#endif // GTEST_HAS_PARAM_TEST - - // Sets the TestCase object for the test that's currently running. - void set_current_test_case(TestCase* a_current_test_case) { - current_test_case_ = a_current_test_case; - } - - // Sets the TestInfo object for the test that's currently running. If - // current_test_info is NULL, the assertion results will be stored in - // ad_hoc_test_result_. - void set_current_test_info(TestInfo* a_current_test_info) { - current_test_info_ = a_current_test_info; - } - - // Registers all parameterized tests defined using TEST_P and - // INSTANTIATE_TEST_P, creating regular tests for each test/parameter - // combination. This method can be called more then once; it has - // guards protecting from registering the tests more then once. - // If value-parameterized tests are disabled, RegisterParameterizedTests - // is present but does nothing. - void RegisterParameterizedTests(); - - // Runs all tests in this UnitTest object, prints the result, and - // returns 0 if all tests are successful, or 1 otherwise. If any - // exception is thrown during a test on Windows, this test is - // considered to be failed, but the rest of the tests will still be - // run. (We disable exceptions on Linux and Mac OS X, so the issue - // doesn't apply there.) - int RunAllTests(); - - // Clears the results of all tests, including the ad hoc test. - void ClearResult() { - ForEach(test_cases_, TestCase::ClearTestCaseResult); - ad_hoc_test_result_.Clear(); - } - - enum ReactionToSharding { - HONOR_SHARDING_PROTOCOL, - IGNORE_SHARDING_PROTOCOL - }; - - // Matches the full name of each test against the user-specified - // filter to decide whether the test should run, then records the - // result in each TestCase and TestInfo object. - // If shard_tests == HONOR_SHARDING_PROTOCOL, further filters tests - // based on sharding variables in the environment. - // Returns the number of tests that should run. - int FilterTests(ReactionToSharding shard_tests); - - // Prints the names of the tests matching the user-specified filter flag. - void ListTestsMatchingFilter(); - - const TestCase* current_test_case() const { return current_test_case_; } - TestInfo* current_test_info() { return current_test_info_; } - const TestInfo* current_test_info() const { return current_test_info_; } - - // Returns the vector of environments that need to be set-up/torn-down - // before/after the tests are run. - std::vector& environments() { return environments_; } - - // Getters for the per-thread Google Test trace stack. - std::vector& gtest_trace_stack() { - return *(gtest_trace_stack_.pointer()); - } - const std::vector& gtest_trace_stack() const { - return gtest_trace_stack_.get(); - } - -#if GTEST_HAS_DEATH_TEST - void InitDeathTestSubprocessControlInfo() { - internal_run_death_test_flag_.reset(ParseInternalRunDeathTestFlag()); - } - // Returns a pointer to the parsed --gtest_internal_run_death_test - // flag, or NULL if that flag was not specified. - // This information is useful only in a death test child process. - // Must not be called before a call to InitGoogleTest. - const InternalRunDeathTestFlag* internal_run_death_test_flag() const { - return internal_run_death_test_flag_.get(); - } - - // Returns a pointer to the current death test factory. - internal::DeathTestFactory* death_test_factory() { - return death_test_factory_.get(); - } - - void SuppressTestEventsIfInSubprocess(); - - friend class ReplaceDeathTestFactory; -#endif // GTEST_HAS_DEATH_TEST - - // Initializes the event listener performing XML output as specified by - // UnitTestOptions. Must not be called before InitGoogleTest. - void ConfigureXmlOutput(); - - // Performs initialization dependent upon flag values obtained in - // ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to - // ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest - // this function is also called from RunAllTests. Since this function can be - // called more than once, it has to be idempotent. - void PostFlagParsingInit(); - - // Gets the random seed used at the start of the current test iteration. - int random_seed() const { return random_seed_; } - - // Gets the random number generator. - internal::Random* random() { return &random_; } - - // Shuffles all test cases, and the tests within each test case, - // making sure that death tests are still run first. - void ShuffleTests(); - - // Restores the test cases and tests to their order before the first shuffle. - void UnshuffleTests(); - - private: - friend class ::testing::UnitTest; - - // The UnitTest object that owns this implementation object. - UnitTest* const parent_; - - // The working directory when the first TEST() or TEST_F() was - // executed. - internal::FilePath original_working_dir_; - - // The default test part result reporters. - DefaultGlobalTestPartResultReporter default_global_test_part_result_reporter_; - DefaultPerThreadTestPartResultReporter - default_per_thread_test_part_result_reporter_; - - // Points to (but doesn't own) the global test part result reporter. - TestPartResultReporterInterface* global_test_part_result_repoter_; - - // Protects read and write access to global_test_part_result_reporter_. - internal::Mutex global_test_part_result_reporter_mutex_; - - // Points to (but doesn't own) the per-thread test part result reporter. - internal::ThreadLocal - per_thread_test_part_result_reporter_; - - // The vector of environments that need to be set-up/torn-down - // before/after the tests are run. - std::vector environments_; - - // The vector of TestCases in their original order. It owns the - // elements in the vector. - std::vector test_cases_; - - // Provides a level of indirection for the test case list to allow - // easy shuffling and restoring the test case order. The i-th - // element of this vector is the index of the i-th test case in the - // shuffled order. - std::vector test_case_indices_; - -#if GTEST_HAS_PARAM_TEST - // ParameterizedTestRegistry object used to register value-parameterized - // tests. - internal::ParameterizedTestCaseRegistry parameterized_test_registry_; - - // Indicates whether RegisterParameterizedTests() has been called already. - bool parameterized_tests_registered_; -#endif // GTEST_HAS_PARAM_TEST - - // Index of the last death test case registered. Initially -1. - int last_death_test_case_; - - // This points to the TestCase for the currently running test. It - // changes as Google Test goes through one test case after another. - // When no test is running, this is set to NULL and Google Test - // stores assertion results in ad_hoc_test_result_. Initially NULL. - TestCase* current_test_case_; - - // This points to the TestInfo for the currently running test. It - // changes as Google Test goes through one test after another. When - // no test is running, this is set to NULL and Google Test stores - // assertion results in ad_hoc_test_result_. Initially NULL. - TestInfo* current_test_info_; - - // Normally, a user only writes assertions inside a TEST or TEST_F, - // or inside a function called by a TEST or TEST_F. Since Google - // Test keeps track of which test is current running, it can - // associate such an assertion with the test it belongs to. - // - // If an assertion is encountered when no TEST or TEST_F is running, - // Google Test attributes the assertion result to an imaginary "ad hoc" - // test, and records the result in ad_hoc_test_result_. - TestResult ad_hoc_test_result_; - - // The list of event listeners that can be used to track events inside - // Google Test. - TestEventListeners listeners_; - - // The OS stack trace getter. Will be deleted when the UnitTest - // object is destructed. By default, an OsStackTraceGetter is used, - // but the user can set this field to use a custom getter if that is - // desired. - OsStackTraceGetterInterface* os_stack_trace_getter_; - - // True iff PostFlagParsingInit() has been called. - bool post_flag_parse_init_performed_; - - // The random number seed used at the beginning of the test run. - int random_seed_; - - // Our random number generator. - internal::Random random_; - - // How long the test took to run, in milliseconds. - TimeInMillis elapsed_time_; - -#if GTEST_HAS_DEATH_TEST - // The decomposed components of the gtest_internal_run_death_test flag, - // parsed when RUN_ALL_TESTS is called. - internal::scoped_ptr internal_run_death_test_flag_; - internal::scoped_ptr death_test_factory_; -#endif // GTEST_HAS_DEATH_TEST - - // A per-thread stack of traces created by the SCOPED_TRACE() macro. - internal::ThreadLocal > gtest_trace_stack_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTestImpl); -}; // class UnitTestImpl - -// Convenience function for accessing the global UnitTest -// implementation object. -inline UnitTestImpl* GetUnitTestImpl() { - return UnitTest::GetInstance()->impl(); -} - -// Internal helper functions for implementing the simple regular -// expression matcher. -GTEST_API_ bool IsInSet(char ch, const char* str); -GTEST_API_ bool IsDigit(char ch); -GTEST_API_ bool IsPunct(char ch); -GTEST_API_ bool IsRepeat(char ch); -GTEST_API_ bool IsWhiteSpace(char ch); -GTEST_API_ bool IsWordChar(char ch); -GTEST_API_ bool IsValidEscape(char ch); -GTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch); -GTEST_API_ bool ValidateRegex(const char* regex); -GTEST_API_ bool MatchRegexAtHead(const char* regex, const char* str); -GTEST_API_ bool MatchRepetitionAndRegexAtHead( - bool escaped, char ch, char repeat, const char* regex, const char* str); -GTEST_API_ bool MatchRegexAnywhere(const char* regex, const char* str); - -// Parses the command line for Google Test flags, without initializing -// other parts of Google Test. -GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, char** argv); -GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv); - -#if GTEST_HAS_DEATH_TEST - -// Returns the message describing the last system error, regardless of the -// platform. -String GetLastErrnoDescription(); - -#if GTEST_OS_WINDOWS -// Provides leak-safe Windows kernel handle ownership. -class AutoHandle { - public: - AutoHandle() : handle_(INVALID_HANDLE_VALUE) {} - explicit AutoHandle(HANDLE handle) : handle_(handle) {} - - ~AutoHandle() { Reset(); } - - HANDLE Get() const { return handle_; } - void Reset() { Reset(INVALID_HANDLE_VALUE); } - void Reset(HANDLE handle) { - if (handle != handle_) { - if (handle_ != INVALID_HANDLE_VALUE) - ::CloseHandle(handle_); - handle_ = handle; - } - } - - private: - HANDLE handle_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle); -}; -#endif // GTEST_OS_WINDOWS - -// Attempts to parse a string into a positive integer pointed to by the -// number parameter. Returns true if that is possible. -// GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we can use -// it here. -template -bool ParseNaturalNumber(const ::std::string& str, Integer* number) { - // Fail fast if the given string does not begin with a digit; - // this bypasses strtoXXX's "optional leading whitespace and plus - // or minus sign" semantics, which are undesirable here. - if (str.empty() || !isdigit(str[0])) { - return false; - } - errno = 0; - - char* end; - // BiggestConvertible is the largest integer type that system-provided - // string-to-number conversion routines can return. -#if GTEST_OS_WINDOWS && !defined(__GNUC__) - // MSVC and C++ Builder define __int64 instead of the standard long long. - typedef unsigned __int64 BiggestConvertible; - const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10); -#else - typedef unsigned long long BiggestConvertible; // NOLINT - const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10); -#endif // GTEST_OS_WINDOWS && !defined(__GNUC__) - const bool parse_success = *end == '\0' && errno == 0; - - // TODO(vladl@google.com): Convert this to compile time assertion when it is - // available. - GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed)); - - const Integer result = static_cast(parsed); - if (parse_success && static_cast(result) == parsed) { - *number = result; - return true; - } - return false; -} -#endif // GTEST_HAS_DEATH_TEST - -// TestResult contains some private methods that should be hidden from -// Google Test user but are required for testing. This class allow our tests -// to access them. -// -// This class is supplied only for the purpose of testing Google Test's own -// constructs. Do not use it in user tests, either directly or indirectly. -class TestResultAccessor { - public: - static void RecordProperty(TestResult* test_result, - const TestProperty& property) { - test_result->RecordProperty(property); - } - - static void ClearTestPartResults(TestResult* test_result) { - test_result->ClearTestPartResults(); - } - - static const std::vector& test_part_results( - const TestResult& test_result) { - return test_result.test_part_results(); - } -}; - -} // namespace internal -} // namespace testing - -#endif // GTEST_SRC_GTEST_INTERNAL_INL_H_ -#undef GTEST_IMPLEMENTATION_ - -#if GTEST_OS_WINDOWS -#define vsnprintf _vsnprintf -#endif // GTEST_OS_WINDOWS - -namespace testing { - -using internal::CountIf; -using internal::ForEach; -using internal::GetElementOr; -using internal::Shuffle; - -// Constants. - -// A test whose test case name or test name matches this filter is -// disabled and not run. -static const char kDisableTestFilter[] = "DISABLED_*:*/DISABLED_*"; - -// A test case whose name matches this filter is considered a death -// test case and will be run before test cases whose name doesn't -// match this filter. -static const char kDeathTestCaseFilter[] = "*DeathTest:*DeathTest/*"; - -// A test filter that matches everything. -static const char kUniversalFilter[] = "*"; - -// The default output file for XML output. -static const char kDefaultOutputFile[] = "test_detail.xml"; - -// The environment variable name for the test shard index. -static const char kTestShardIndex[] = "GTEST_SHARD_INDEX"; -// The environment variable name for the total number of test shards. -static const char kTestTotalShards[] = "GTEST_TOTAL_SHARDS"; -// The environment variable name for the test shard status file. -static const char kTestShardStatusFile[] = "GTEST_SHARD_STATUS_FILE"; - -namespace internal { - -// The text used in failure messages to indicate the start of the -// stack trace. -const char kStackTraceMarker[] = "\nStack trace:\n"; - -// g_help_flag is true iff the --help flag or an equivalent form is -// specified on the command line. -bool g_help_flag = false; - -} // namespace internal - -GTEST_DEFINE_bool_( - also_run_disabled_tests, - internal::BoolFromGTestEnv("also_run_disabled_tests", false), - "Run disabled tests too, in addition to the tests normally being run."); - -GTEST_DEFINE_bool_( - break_on_failure, - internal::BoolFromGTestEnv("break_on_failure", false), - "True iff a failed assertion should be a debugger break-point."); - -GTEST_DEFINE_bool_( - catch_exceptions, - internal::BoolFromGTestEnv("catch_exceptions", false), - "True iff " GTEST_NAME_ - " should catch exceptions and treat them as test failures."); - -GTEST_DEFINE_string_( - color, - internal::StringFromGTestEnv("color", "auto"), - "Whether to use colors in the output. Valid values: yes, no, " - "and auto. 'auto' means to use colors if the output is " - "being sent to a terminal and the TERM environment variable " - "is set to xterm, xterm-color, xterm-256color, linux or cygwin."); - -GTEST_DEFINE_string_( - filter, - internal::StringFromGTestEnv("filter", kUniversalFilter), - "A colon-separated list of glob (not regex) patterns " - "for filtering the tests to run, optionally followed by a " - "'-' and a : separated list of negative patterns (tests to " - "exclude). A test is run if it matches one of the positive " - "patterns and does not match any of the negative patterns."); - -GTEST_DEFINE_bool_(list_tests, false, - "List all tests without running them."); - -GTEST_DEFINE_string_( - output, - internal::StringFromGTestEnv("output", ""), - "A format (currently must be \"xml\"), optionally followed " - "by a colon and an output file name or directory. A directory " - "is indicated by a trailing pathname separator. " - "Examples: \"xml:filename.xml\", \"xml::directoryname/\". " - "If a directory is specified, output files will be created " - "within that directory, with file-names based on the test " - "executable's name and, if necessary, made unique by adding " - "digits."); - -GTEST_DEFINE_bool_( - print_time, - internal::BoolFromGTestEnv("print_time", true), - "True iff " GTEST_NAME_ - " should display elapsed time in text output."); - -GTEST_DEFINE_int32_( - random_seed, - internal::Int32FromGTestEnv("random_seed", 0), - "Random number seed to use when shuffling test orders. Must be in range " - "[1, 99999], or 0 to use a seed based on the current time."); - -GTEST_DEFINE_int32_( - repeat, - internal::Int32FromGTestEnv("repeat", 1), - "How many times to repeat each test. Specify a negative number " - "for repeating forever. Useful for shaking out flaky tests."); - -GTEST_DEFINE_bool_( - show_internal_stack_frames, false, - "True iff " GTEST_NAME_ " should include internal stack frames when " - "printing test failure stack traces."); - -GTEST_DEFINE_bool_( - shuffle, - internal::BoolFromGTestEnv("shuffle", false), - "True iff " GTEST_NAME_ - " should randomize tests' order on every run."); - -GTEST_DEFINE_int32_( - stack_trace_depth, - internal::Int32FromGTestEnv("stack_trace_depth", kMaxStackTraceDepth), - "The maximum number of stack frames to print when an " - "assertion fails. The valid range is 0 through 100, inclusive."); - -GTEST_DEFINE_bool_( - throw_on_failure, - internal::BoolFromGTestEnv("throw_on_failure", false), - "When this flag is specified, a failed assertion will throw an exception " - "if exceptions are enabled or exit the program with a non-zero code " - "otherwise."); - -namespace internal { - -// Generates a random number from [0, range), using a Linear -// Congruential Generator (LCG). Crashes if 'range' is 0 or greater -// than kMaxRange. -UInt32 Random::Generate(UInt32 range) { - // These constants are the same as are used in glibc's rand(3). - state_ = (1103515245U*state_ + 12345U) % kMaxRange; - - GTEST_CHECK_(range > 0) - << "Cannot generate a number in the range [0, 0)."; - GTEST_CHECK_(range <= kMaxRange) - << "Generation of a number in [0, " << range << ") was requested, " - << "but this can only generate numbers in [0, " << kMaxRange << ")."; - - // Converting via modulus introduces a bit of downward bias, but - // it's simple, and a linear congruential generator isn't too good - // to begin with. - return state_ % range; -} - -// GTestIsInitialized() returns true iff the user has initialized -// Google Test. Useful for catching the user mistake of not initializing -// Google Test before calling RUN_ALL_TESTS(). -// -// A user must call testing::InitGoogleTest() to initialize Google -// Test. g_init_gtest_count is set to the number of times -// InitGoogleTest() has been called. We don't protect this variable -// under a mutex as it is only accessed in the main thread. -int g_init_gtest_count = 0; -static bool GTestIsInitialized() { return g_init_gtest_count != 0; } - -// Iterates over a vector of TestCases, keeping a running sum of the -// results of calling a given int-returning method on each. -// Returns the sum. -static int SumOverTestCaseList(const std::vector& case_list, - int (TestCase::*method)() const) { - int sum = 0; - for (size_t i = 0; i < case_list.size(); i++) { - sum += (case_list[i]->*method)(); - } - return sum; -} - -// Returns true iff the test case passed. -static bool TestCasePassed(const TestCase* test_case) { - return test_case->should_run() && test_case->Passed(); -} - -// Returns true iff the test case failed. -static bool TestCaseFailed(const TestCase* test_case) { - return test_case->should_run() && test_case->Failed(); -} - -// Returns true iff test_case contains at least one test that should -// run. -static bool ShouldRunTestCase(const TestCase* test_case) { - return test_case->should_run(); -} - -// AssertHelper constructor. -AssertHelper::AssertHelper(TestPartResult::Type type, - const char* file, - int line, - const char* message) - : data_(new AssertHelperData(type, file, line, message)) { -} - -AssertHelper::~AssertHelper() { - delete data_; -} - -// Message assignment, for assertion streaming support. -void AssertHelper::operator=(const Message& message) const { - UnitTest::GetInstance()-> - AddTestPartResult(data_->type, data_->file, data_->line, - AppendUserMessage(data_->message, message), - UnitTest::GetInstance()->impl() - ->CurrentOsStackTraceExceptTop(1) - // Skips the stack frame for this function itself. - ); // NOLINT -} - -// Mutex for linked pointers. -GTEST_DEFINE_STATIC_MUTEX_(g_linked_ptr_mutex); - -// Application pathname gotten in InitGoogleTest. -String g_executable_path; - -// Returns the current application's name, removing directory path if that -// is present. -FilePath GetCurrentExecutableName() { - FilePath result; - -#if GTEST_OS_WINDOWS - result.Set(FilePath(g_executable_path).RemoveExtension("exe")); -#else - result.Set(FilePath(g_executable_path)); -#endif // GTEST_OS_WINDOWS - - return result.RemoveDirectoryName(); -} - -// Functions for processing the gtest_output flag. - -// Returns the output format, or "" for normal printed output. -String UnitTestOptions::GetOutputFormat() { - const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); - if (gtest_output_flag == NULL) return String(""); - - const char* const colon = strchr(gtest_output_flag, ':'); - return (colon == NULL) ? - String(gtest_output_flag) : - String(gtest_output_flag, colon - gtest_output_flag); -} - -// Returns the name of the requested output file, or the default if none -// was explicitly specified. -String UnitTestOptions::GetAbsolutePathToOutputFile() { - const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); - if (gtest_output_flag == NULL) - return String(""); - - const char* const colon = strchr(gtest_output_flag, ':'); - if (colon == NULL) - return String(internal::FilePath::ConcatPaths( - internal::FilePath( - UnitTest::GetInstance()->original_working_dir()), - internal::FilePath(kDefaultOutputFile)).ToString() ); - - internal::FilePath output_name(colon + 1); - if (!output_name.IsAbsolutePath()) - // TODO(wan@google.com): on Windows \some\path is not an absolute - // path (as its meaning depends on the current drive), yet the - // following logic for turning it into an absolute path is wrong. - // Fix it. - output_name = internal::FilePath::ConcatPaths( - internal::FilePath(UnitTest::GetInstance()->original_working_dir()), - internal::FilePath(colon + 1)); - - if (!output_name.IsDirectory()) - return output_name.ToString(); - - internal::FilePath result(internal::FilePath::GenerateUniqueFileName( - output_name, internal::GetCurrentExecutableName(), - GetOutputFormat().c_str())); - return result.ToString(); -} - -// Returns true iff the wildcard pattern matches the string. The -// first ':' or '\0' character in pattern marks the end of it. -// -// This recursive algorithm isn't very efficient, but is clear and -// works well enough for matching test names, which are short. -bool UnitTestOptions::PatternMatchesString(const char *pattern, - const char *str) { - switch (*pattern) { - case '\0': - case ':': // Either ':' or '\0' marks the end of the pattern. - return *str == '\0'; - case '?': // Matches any single character. - return *str != '\0' && PatternMatchesString(pattern + 1, str + 1); - case '*': // Matches any string (possibly empty) of characters. - return (*str != '\0' && PatternMatchesString(pattern, str + 1)) || - PatternMatchesString(pattern + 1, str); - default: // Non-special character. Matches itself. - return *pattern == *str && - PatternMatchesString(pattern + 1, str + 1); - } -} - -bool UnitTestOptions::MatchesFilter(const String& name, const char* filter) { - const char *cur_pattern = filter; - for (;;) { - if (PatternMatchesString(cur_pattern, name.c_str())) { - return true; - } - - // Finds the next pattern in the filter. - cur_pattern = strchr(cur_pattern, ':'); - - // Returns if no more pattern can be found. - if (cur_pattern == NULL) { - return false; - } - - // Skips the pattern separater (the ':' character). - cur_pattern++; - } -} - -// TODO(keithray): move String function implementations to gtest-string.cc. - -// Returns true iff the user-specified filter matches the test case -// name and the test name. -bool UnitTestOptions::FilterMatchesTest(const String &test_case_name, - const String &test_name) { - const String& full_name = String::Format("%s.%s", - test_case_name.c_str(), - test_name.c_str()); - - // Split --gtest_filter at '-', if there is one, to separate into - // positive filter and negative filter portions - const char* const p = GTEST_FLAG(filter).c_str(); - const char* const dash = strchr(p, '-'); - String positive; - String negative; - if (dash == NULL) { - positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter - negative = String(""); - } else { - positive = String(p, dash - p); // Everything up to the dash - negative = String(dash+1); // Everything after the dash - if (positive.empty()) { - // Treat '-test1' as the same as '*-test1' - positive = kUniversalFilter; - } - } - - // A filter is a colon-separated list of patterns. It matches a - // test if any pattern in it matches the test. - return (MatchesFilter(full_name, positive.c_str()) && - !MatchesFilter(full_name, negative.c_str())); -} - -#if GTEST_OS_WINDOWS -// Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the -// given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. -// This function is useful as an __except condition. -int UnitTestOptions::GTestShouldProcessSEH(DWORD exception_code) { - // Google Test should handle an exception if: - // 1. the user wants it to, AND - // 2. this is not a breakpoint exception. - return (GTEST_FLAG(catch_exceptions) && - exception_code != EXCEPTION_BREAKPOINT) ? - EXCEPTION_EXECUTE_HANDLER : - EXCEPTION_CONTINUE_SEARCH; -} -#endif // GTEST_OS_WINDOWS - -} // namespace internal - -// The c'tor sets this object as the test part result reporter used by -// Google Test. The 'result' parameter specifies where to report the -// results. Intercepts only failures from the current thread. -ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( - TestPartResultArray* result) - : intercept_mode_(INTERCEPT_ONLY_CURRENT_THREAD), - result_(result) { - Init(); -} - -// The c'tor sets this object as the test part result reporter used by -// Google Test. The 'result' parameter specifies where to report the -// results. -ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( - InterceptMode intercept_mode, TestPartResultArray* result) - : intercept_mode_(intercept_mode), - result_(result) { - Init(); -} - -void ScopedFakeTestPartResultReporter::Init() { - internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); - if (intercept_mode_ == INTERCEPT_ALL_THREADS) { - old_reporter_ = impl->GetGlobalTestPartResultReporter(); - impl->SetGlobalTestPartResultReporter(this); - } else { - old_reporter_ = impl->GetTestPartResultReporterForCurrentThread(); - impl->SetTestPartResultReporterForCurrentThread(this); - } -} - -// The d'tor restores the test part result reporter used by Google Test -// before. -ScopedFakeTestPartResultReporter::~ScopedFakeTestPartResultReporter() { - internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); - if (intercept_mode_ == INTERCEPT_ALL_THREADS) { - impl->SetGlobalTestPartResultReporter(old_reporter_); - } else { - impl->SetTestPartResultReporterForCurrentThread(old_reporter_); - } -} - -// Increments the test part result count and remembers the result. -// This method is from the TestPartResultReporterInterface interface. -void ScopedFakeTestPartResultReporter::ReportTestPartResult( - const TestPartResult& result) { - result_->Append(result); -} - -namespace internal { - -// Returns the type ID of ::testing::Test. We should always call this -// instead of GetTypeId< ::testing::Test>() to get the type ID of -// testing::Test. This is to work around a suspected linker bug when -// using Google Test as a framework on Mac OS X. The bug causes -// GetTypeId< ::testing::Test>() to return different values depending -// on whether the call is from the Google Test framework itself or -// from user test code. GetTestTypeId() is guaranteed to always -// return the same value, as it always calls GetTypeId<>() from the -// gtest.cc, which is within the Google Test framework. -TypeId GetTestTypeId() { - return GetTypeId(); -} - -// The value of GetTestTypeId() as seen from within the Google Test -// library. This is solely for testing GetTestTypeId(). -extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId(); - -// This predicate-formatter checks that 'results' contains a test part -// failure of the given type and that the failure message contains the -// given substring. -AssertionResult HasOneFailure(const char* /* results_expr */, - const char* /* type_expr */, - const char* /* substr_expr */, - const TestPartResultArray& results, - TestPartResult::Type type, - const char* substr) { - const String expected(type == TestPartResult::kFatalFailure ? - "1 fatal failure" : - "1 non-fatal failure"); - Message msg; - if (results.size() != 1) { - msg << "Expected: " << expected << "\n" - << " Actual: " << results.size() << " failures"; - for (int i = 0; i < results.size(); i++) { - msg << "\n" << results.GetTestPartResult(i); - } - return AssertionFailure(msg); - } - - const TestPartResult& r = results.GetTestPartResult(0); - if (r.type() != type) { - msg << "Expected: " << expected << "\n" - << " Actual:\n" - << r; - return AssertionFailure(msg); - } - - if (strstr(r.message(), substr) == NULL) { - msg << "Expected: " << expected << " containing \"" - << substr << "\"\n" - << " Actual:\n" - << r; - return AssertionFailure(msg); - } - - return AssertionSuccess(); -} - -// The constructor of SingleFailureChecker remembers where to look up -// test part results, what type of failure we expect, and what -// substring the failure message should contain. -SingleFailureChecker:: SingleFailureChecker( - const TestPartResultArray* results, - TestPartResult::Type type, - const char* substr) - : results_(results), - type_(type), - substr_(substr) {} - -// The destructor of SingleFailureChecker verifies that the given -// TestPartResultArray contains exactly one failure that has the given -// type and contains the given substring. If that's not the case, a -// non-fatal failure will be generated. -SingleFailureChecker::~SingleFailureChecker() { - EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_.c_str()); -} - -DefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter( - UnitTestImpl* unit_test) : unit_test_(unit_test) {} - -void DefaultGlobalTestPartResultReporter::ReportTestPartResult( - const TestPartResult& result) { - unit_test_->current_test_result()->AddTestPartResult(result); - unit_test_->listeners()->repeater()->OnTestPartResult(result); -} - -DefaultPerThreadTestPartResultReporter::DefaultPerThreadTestPartResultReporter( - UnitTestImpl* unit_test) : unit_test_(unit_test) {} - -void DefaultPerThreadTestPartResultReporter::ReportTestPartResult( - const TestPartResult& result) { - unit_test_->GetGlobalTestPartResultReporter()->ReportTestPartResult(result); -} - -// Returns the global test part result reporter. -TestPartResultReporterInterface* -UnitTestImpl::GetGlobalTestPartResultReporter() { - internal::MutexLock lock(&global_test_part_result_reporter_mutex_); - return global_test_part_result_repoter_; -} - -// Sets the global test part result reporter. -void UnitTestImpl::SetGlobalTestPartResultReporter( - TestPartResultReporterInterface* reporter) { - internal::MutexLock lock(&global_test_part_result_reporter_mutex_); - global_test_part_result_repoter_ = reporter; -} - -// Returns the test part result reporter for the current thread. -TestPartResultReporterInterface* -UnitTestImpl::GetTestPartResultReporterForCurrentThread() { - return per_thread_test_part_result_reporter_.get(); -} - -// Sets the test part result reporter for the current thread. -void UnitTestImpl::SetTestPartResultReporterForCurrentThread( - TestPartResultReporterInterface* reporter) { - per_thread_test_part_result_reporter_.set(reporter); -} - -// Gets the number of successful test cases. -int UnitTestImpl::successful_test_case_count() const { - return CountIf(test_cases_, TestCasePassed); -} - -// Gets the number of failed test cases. -int UnitTestImpl::failed_test_case_count() const { - return CountIf(test_cases_, TestCaseFailed); -} - -// Gets the number of all test cases. -int UnitTestImpl::total_test_case_count() const { - return static_cast(test_cases_.size()); -} - -// Gets the number of all test cases that contain at least one test -// that should run. -int UnitTestImpl::test_case_to_run_count() const { - return CountIf(test_cases_, ShouldRunTestCase); -} - -// Gets the number of successful tests. -int UnitTestImpl::successful_test_count() const { - return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count); -} - -// Gets the number of failed tests. -int UnitTestImpl::failed_test_count() const { - return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count); -} - -// Gets the number of disabled tests. -int UnitTestImpl::disabled_test_count() const { - return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count); -} - -// Gets the number of all tests. -int UnitTestImpl::total_test_count() const { - return SumOverTestCaseList(test_cases_, &TestCase::total_test_count); -} - -// Gets the number of tests that should run. -int UnitTestImpl::test_to_run_count() const { - return SumOverTestCaseList(test_cases_, &TestCase::test_to_run_count); -} - -// Returns the current OS stack trace as a String. -// -// The maximum number of stack frames to be included is specified by -// the gtest_stack_trace_depth flag. The skip_count parameter -// specifies the number of top frames to be skipped, which doesn't -// count against the number of frames to be included. -// -// For example, if Foo() calls Bar(), which in turn calls -// CurrentOsStackTraceExceptTop(1), Foo() will be included in the -// trace but Bar() and CurrentOsStackTraceExceptTop() won't. -String UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { - (void)skip_count; - return String(""); -} - -// Returns the current time in milliseconds. -TimeInMillis GetTimeInMillis() { -#if GTEST_OS_WINDOWS_MOBILE || defined(__BORLANDC__) - // Difference between 1970-01-01 and 1601-01-01 in milliseconds. - // http://analogous.blogspot.com/2005/04/epoch.html - const TimeInMillis kJavaEpochToWinFileTimeDelta = - static_cast(116444736UL) * 100000UL; - const DWORD kTenthMicrosInMilliSecond = 10000; - - SYSTEMTIME now_systime; - FILETIME now_filetime; - ULARGE_INTEGER now_int64; - // TODO(kenton@google.com): Shouldn't this just use - // GetSystemTimeAsFileTime()? - GetSystemTime(&now_systime); - if (SystemTimeToFileTime(&now_systime, &now_filetime)) { - now_int64.LowPart = now_filetime.dwLowDateTime; - now_int64.HighPart = now_filetime.dwHighDateTime; - now_int64.QuadPart = (now_int64.QuadPart / kTenthMicrosInMilliSecond) - - kJavaEpochToWinFileTimeDelta; - return now_int64.QuadPart; - } - return 0; -#elif GTEST_OS_WINDOWS && !GTEST_HAS_GETTIMEOFDAY_ - __timeb64 now; -#ifdef _MSC_VER - // MSVC 8 deprecates _ftime64(), so we want to suppress warning 4996 - // (deprecated function) there. - // TODO(kenton@google.com): Use GetTickCount()? Or use - // SystemTimeToFileTime() -#pragma warning(push) // Saves the current warning state. -#pragma warning(disable:4996) // Temporarily disables warning 4996. - _ftime64(&now); -#pragma warning(pop) // Restores the warning state. -#else - _ftime64(&now); -#endif // _MSC_VER - return static_cast(now.time) * 1000 + now.millitm; -#elif GTEST_HAS_GETTIMEOFDAY_ - struct timeval now; - gettimeofday(&now, NULL); - return static_cast(now.tv_sec) * 1000 + now.tv_usec / 1000; -#else -#error "Don't know how to get the current time on your system." -#endif -} - -// Utilities - -// class String - -// Returns the input enclosed in double quotes if it's not NULL; -// otherwise returns "(null)". For example, "\"Hello\"" is returned -// for input "Hello". -// -// This is useful for printing a C string in the syntax of a literal. -// -// Known issue: escape sequences are not handled yet. -String String::ShowCStringQuoted(const char* c_str) { - return c_str ? String::Format("\"%s\"", c_str) : String("(null)"); -} - -// Copies at most length characters from str into a newly-allocated -// piece of memory of size length+1. The memory is allocated with new[]. -// A terminating null byte is written to the memory, and a pointer to it -// is returned. If str is NULL, NULL is returned. -static char* CloneString(const char* str, size_t length) { - if (str == NULL) { - return NULL; - } else { - char* const clone = new char[length + 1]; - posix::StrNCpy(clone, str, length); - clone[length] = '\0'; - return clone; - } -} - -// Clones a 0-terminated C string, allocating memory using new. The -// caller is responsible for deleting[] the return value. Returns the -// cloned string, or NULL if the input is NULL. -const char * String::CloneCString(const char* c_str) { - return (c_str == NULL) ? - NULL : CloneString(c_str, strlen(c_str)); -} - -#if GTEST_OS_WINDOWS_MOBILE -// Creates a UTF-16 wide string from the given ANSI string, allocating -// memory using new. The caller is responsible for deleting the return -// value using delete[]. Returns the wide string, or NULL if the -// input is NULL. -LPCWSTR String::AnsiToUtf16(const char* ansi) { - if (!ansi) return NULL; - const int length = strlen(ansi); - const int unicode_length = - MultiByteToWideChar(CP_ACP, 0, ansi, length, - NULL, 0); - WCHAR* unicode = new WCHAR[unicode_length + 1]; - MultiByteToWideChar(CP_ACP, 0, ansi, length, - unicode, unicode_length); - unicode[unicode_length] = 0; - return unicode; -} - -// Creates an ANSI string from the given wide string, allocating -// memory using new. The caller is responsible for deleting the return -// value using delete[]. Returns the ANSI string, or NULL if the -// input is NULL. -const char* String::Utf16ToAnsi(LPCWSTR utf16_str) { - if (!utf16_str) return NULL; - const int ansi_length = - WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, - NULL, 0, NULL, NULL); - char* ansi = new char[ansi_length + 1]; - WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, - ansi, ansi_length, NULL, NULL); - ansi[ansi_length] = 0; - return ansi; -} - -#endif // GTEST_OS_WINDOWS_MOBILE - -// Compares two C strings. Returns true iff they have the same content. -// -// Unlike strcmp(), this function can handle NULL argument(s). A NULL -// C string is considered different to any non-NULL C string, -// including the empty string. -bool String::CStringEquals(const char * lhs, const char * rhs) { - if ( lhs == NULL ) return rhs == NULL; - - if ( rhs == NULL ) return false; - - return strcmp(lhs, rhs) == 0; -} - -#if GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING - -// Converts an array of wide chars to a narrow string using the UTF-8 -// encoding, and streams the result to the given Message object. -static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, - Message* msg) { - // TODO(wan): consider allowing a testing::String object to - // contain '\0'. This will make it behave more like std::string, - // and will allow ToUtf8String() to return the correct encoding - // for '\0' s.t. we can get rid of the conditional here (and in - // several other places). - for (size_t i = 0; i != length; ) { // NOLINT - if (wstr[i] != L'\0') { - *msg << WideStringToUtf8(wstr + i, static_cast(length - i)); - while (i != length && wstr[i] != L'\0') - i++; - } else { - *msg << '\0'; - i++; - } - } -} - -#endif // GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING - -} // namespace internal - -#if GTEST_HAS_STD_WSTRING -// Converts the given wide string to a narrow string using the UTF-8 -// encoding, and streams the result to this Message object. -Message& Message::operator <<(const ::std::wstring& wstr) { - internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); - return *this; -} -#endif // GTEST_HAS_STD_WSTRING - -#if GTEST_HAS_GLOBAL_WSTRING -// Converts the given wide string to a narrow string using the UTF-8 -// encoding, and streams the result to this Message object. -Message& Message::operator <<(const ::wstring& wstr) { - internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); - return *this; -} -#endif // GTEST_HAS_GLOBAL_WSTRING - -namespace internal { - -// Formats a value to be used in a failure message. - -// For a char value, we print it as a C++ char literal and as an -// unsigned integer (both in decimal and in hexadecimal). -String FormatForFailureMessage(char ch) { - const unsigned int ch_as_uint = ch; - // A String object cannot contain '\0', so we print "\\0" when ch is - // '\0'. - return String::Format("'%s' (%u, 0x%X)", - ch ? String::Format("%c", ch).c_str() : "\\0", - ch_as_uint, ch_as_uint); -} - -// For a wchar_t value, we print it as a C++ wchar_t literal and as an -// unsigned integer (both in decimal and in hexidecimal). -String FormatForFailureMessage(wchar_t wchar) { - // The C++ standard doesn't specify the exact size of the wchar_t - // type. It just says that it shall have the same size as another - // integral type, called its underlying type. - // - // Therefore, in order to print a wchar_t value in the numeric form, - // we first convert it to the largest integral type (UInt64) and - // then print the converted value. - // - // We use streaming to print the value as "%llu" doesn't work - // correctly with MSVC 7.1. - const UInt64 wchar_as_uint64 = wchar; - Message msg; - // A String object cannot contain '\0', so we print "\\0" when wchar is - // L'\0'. - char buffer[32]; // CodePointToUtf8 requires a buffer that big. - msg << "L'" - << (wchar ? CodePointToUtf8(static_cast(wchar), buffer) : "\\0") - << "' (" << wchar_as_uint64 << ", 0x" << ::std::setbase(16) - << wchar_as_uint64 << ")"; - return msg.GetString(); -} - -} // namespace internal - -// AssertionResult constructors. -// Used in EXPECT_TRUE/FALSE(assertion_result). -AssertionResult::AssertionResult(const AssertionResult& other) - : success_(other.success_), - message_(other.message_.get() != NULL ? - new internal::String(*other.message_) : - static_cast(NULL)) { -} - -// Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. -AssertionResult AssertionResult::operator!() const { - AssertionResult negation(!success_); - if (message_.get() != NULL) - negation << *message_; - return negation; -} - -// Makes a successful assertion result. -AssertionResult AssertionSuccess() { - return AssertionResult(true); -} - -// Makes a failed assertion result. -AssertionResult AssertionFailure() { - return AssertionResult(false); -} - -// Makes a failed assertion result with the given failure message. -// Deprecated; use AssertionFailure() << message. -AssertionResult AssertionFailure(const Message& message) { - return AssertionFailure() << message; -} - -namespace internal { - -// Constructs and returns the message for an equality assertion -// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. -// -// The first four parameters are the expressions used in the assertion -// and their values, as strings. For example, for ASSERT_EQ(foo, bar) -// where foo is 5 and bar is 6, we have: -// -// expected_expression: "foo" -// actual_expression: "bar" -// expected_value: "5" -// actual_value: "6" -// -// The ignoring_case parameter is true iff the assertion is a -// *_STRCASEEQ*. When it's true, the string " (ignoring case)" will -// be inserted into the message. -AssertionResult EqFailure(const char* expected_expression, - const char* actual_expression, - const String& expected_value, - const String& actual_value, - bool ignoring_case) { - Message msg; - msg << "Value of: " << actual_expression; - if (actual_value != actual_expression) { - msg << "\n Actual: " << actual_value; - } - - msg << "\nExpected: " << expected_expression; - if (ignoring_case) { - msg << " (ignoring case)"; - } - if (expected_value != expected_expression) { - msg << "\nWhich is: " << expected_value; - } - - return AssertionFailure(msg); -} - -// Constructs a failure message for Boolean assertions such as EXPECT_TRUE. -String GetBoolAssertionFailureMessage(const AssertionResult& assertion_result, - const char* expression_text, - const char* actual_predicate_value, - const char* expected_predicate_value) { - const char* actual_message = assertion_result.message(); - Message msg; - msg << "Value of: " << expression_text - << "\n Actual: " << actual_predicate_value; - if (actual_message[0] != '\0') - msg << " (" << actual_message << ")"; - msg << "\nExpected: " << expected_predicate_value; - return msg.GetString(); -} - -// Helper function for implementing ASSERT_NEAR. -AssertionResult DoubleNearPredFormat(const char* expr1, - const char* expr2, - const char* abs_error_expr, - double val1, - double val2, - double abs_error) { - const double diff = fabs(val1 - val2); - if (diff <= abs_error) return AssertionSuccess(); - - // TODO(wan): do not print the value of an expression if it's - // already a literal. - Message msg; - msg << "The difference between " << expr1 << " and " << expr2 - << " is " << diff << ", which exceeds " << abs_error_expr << ", where\n" - << expr1 << " evaluates to " << val1 << ",\n" - << expr2 << " evaluates to " << val2 << ", and\n" - << abs_error_expr << " evaluates to " << abs_error << "."; - return AssertionFailure(msg); -} - - -// Helper template for implementing FloatLE() and DoubleLE(). -template -AssertionResult FloatingPointLE(const char* expr1, - const char* expr2, - RawType val1, - RawType val2) { - // Returns success if val1 is less than val2, - if (val1 < val2) { - return AssertionSuccess(); - } - - // or if val1 is almost equal to val2. - const FloatingPoint lhs(val1), rhs(val2); - if (lhs.AlmostEquals(rhs)) { - return AssertionSuccess(); - } - - // Note that the above two checks will both fail if either val1 or - // val2 is NaN, as the IEEE floating-point standard requires that - // any predicate involving a NaN must return false. - - StrStream val1_ss; - val1_ss << std::setprecision(std::numeric_limits::digits10 + 2) - << val1; - - StrStream val2_ss; - val2_ss << std::setprecision(std::numeric_limits::digits10 + 2) - << val2; - - Message msg; - msg << "Expected: (" << expr1 << ") <= (" << expr2 << ")\n" - << " Actual: " << StrStreamToString(&val1_ss) << " vs " - << StrStreamToString(&val2_ss); - - return AssertionFailure(msg); -} - -} // namespace internal - -// Asserts that val1 is less than, or almost equal to, val2. Fails -// otherwise. In particular, it fails if either val1 or val2 is NaN. -AssertionResult FloatLE(const char* expr1, const char* expr2, - float val1, float val2) { - return internal::FloatingPointLE(expr1, expr2, val1, val2); -} - -// Asserts that val1 is less than, or almost equal to, val2. Fails -// otherwise. In particular, it fails if either val1 or val2 is NaN. -AssertionResult DoubleLE(const char* expr1, const char* expr2, - double val1, double val2) { - return internal::FloatingPointLE(expr1, expr2, val1, val2); -} - -namespace internal { - -// The helper function for {ASSERT|EXPECT}_EQ with int or enum -// arguments. -AssertionResult CmpHelperEQ(const char* expected_expression, - const char* actual_expression, - BiggestInt expected, - BiggestInt actual) { - if (expected == actual) { - return AssertionSuccess(); - } - - return EqFailure(expected_expression, - actual_expression, - FormatForComparisonFailureMessage(expected, actual), - FormatForComparisonFailureMessage(actual, expected), - false); -} - -// A macro for implementing the helper functions needed to implement -// ASSERT_?? and EXPECT_?? with integer or enum arguments. It is here -// just to avoid copy-and-paste of similar code. -#define GTEST_IMPL_CMP_HELPER_(op_name, op)\ -AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ - BiggestInt val1, BiggestInt val2) {\ - if (val1 op val2) {\ - return AssertionSuccess();\ - } else {\ - Message msg;\ - msg << "Expected: (" << expr1 << ") " #op " (" << expr2\ - << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\ - << " vs " << FormatForComparisonFailureMessage(val2, val1);\ - return AssertionFailure(msg);\ - }\ -} - -// Implements the helper function for {ASSERT|EXPECT}_NE with int or -// enum arguments. -GTEST_IMPL_CMP_HELPER_(NE, !=) -// Implements the helper function for {ASSERT|EXPECT}_LE with int or -// enum arguments. -GTEST_IMPL_CMP_HELPER_(LE, <=) -// Implements the helper function for {ASSERT|EXPECT}_LT with int or -// enum arguments. -GTEST_IMPL_CMP_HELPER_(LT, < ) -// Implements the helper function for {ASSERT|EXPECT}_GE with int or -// enum arguments. -GTEST_IMPL_CMP_HELPER_(GE, >=) -// Implements the helper function for {ASSERT|EXPECT}_GT with int or -// enum arguments. -GTEST_IMPL_CMP_HELPER_(GT, > ) - -#undef GTEST_IMPL_CMP_HELPER_ - -// The helper function for {ASSERT|EXPECT}_STREQ. -AssertionResult CmpHelperSTREQ(const char* expected_expression, - const char* actual_expression, - const char* expected, - const char* actual) { - if (String::CStringEquals(expected, actual)) { - return AssertionSuccess(); - } - - return EqFailure(expected_expression, - actual_expression, - String::ShowCStringQuoted(expected), - String::ShowCStringQuoted(actual), - false); -} - -// The helper function for {ASSERT|EXPECT}_STRCASEEQ. -AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression, - const char* actual_expression, - const char* expected, - const char* actual) { - if (String::CaseInsensitiveCStringEquals(expected, actual)) { - return AssertionSuccess(); - } - - return EqFailure(expected_expression, - actual_expression, - String::ShowCStringQuoted(expected), - String::ShowCStringQuoted(actual), - true); -} - -// The helper function for {ASSERT|EXPECT}_STRNE. -AssertionResult CmpHelperSTRNE(const char* s1_expression, - const char* s2_expression, - const char* s1, - const char* s2) { - if (!String::CStringEquals(s1, s2)) { - return AssertionSuccess(); - } else { - Message msg; - msg << "Expected: (" << s1_expression << ") != (" - << s2_expression << "), actual: \"" - << s1 << "\" vs \"" << s2 << "\""; - return AssertionFailure(msg); - } -} - -// The helper function for {ASSERT|EXPECT}_STRCASENE. -AssertionResult CmpHelperSTRCASENE(const char* s1_expression, - const char* s2_expression, - const char* s1, - const char* s2) { - if (!String::CaseInsensitiveCStringEquals(s1, s2)) { - return AssertionSuccess(); - } else { - Message msg; - msg << "Expected: (" << s1_expression << ") != (" - << s2_expression << ") (ignoring case), actual: \"" - << s1 << "\" vs \"" << s2 << "\""; - return AssertionFailure(msg); - } -} - -} // namespace internal - -namespace { - -// Helper functions for implementing IsSubString() and IsNotSubstring(). - -// This group of overloaded functions return true iff needle is a -// substring of haystack. NULL is considered a substring of itself -// only. - -bool IsSubstringPred(const char* needle, const char* haystack) { - if (needle == NULL || haystack == NULL) - return needle == haystack; - - return strstr(haystack, needle) != NULL; -} - -bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) { - if (needle == NULL || haystack == NULL) - return needle == haystack; - - return wcsstr(haystack, needle) != NULL; -} - -// StringType here can be either ::std::string or ::std::wstring. -template -bool IsSubstringPred(const StringType& needle, - const StringType& haystack) { - return haystack.find(needle) != StringType::npos; -} - -// This function implements either IsSubstring() or IsNotSubstring(), -// depending on the value of the expected_to_be_substring parameter. -// StringType here can be const char*, const wchar_t*, ::std::string, -// or ::std::wstring. -template -AssertionResult IsSubstringImpl( - bool expected_to_be_substring, - const char* needle_expr, const char* haystack_expr, - const StringType& needle, const StringType& haystack) { - if (IsSubstringPred(needle, haystack) == expected_to_be_substring) - return AssertionSuccess(); - - const bool is_wide_string = sizeof(needle[0]) > 1; - const char* const begin_string_quote = is_wide_string ? "L\"" : "\""; - return AssertionFailure( - Message() - << "Value of: " << needle_expr << "\n" - << " Actual: " << begin_string_quote << needle << "\"\n" - << "Expected: " << (expected_to_be_substring ? "" : "not ") - << "a substring of " << haystack_expr << "\n" - << "Which is: " << begin_string_quote << haystack << "\""); -} - -} // namespace - -// IsSubstring() and IsNotSubstring() check whether needle is a -// substring of haystack (NULL is considered a substring of itself -// only), and return an appropriate error message when they fail. - -AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const char* needle, const char* haystack) { - return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const wchar_t* needle, const wchar_t* haystack) { - return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const char* needle, const char* haystack) { - return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const wchar_t* needle, const wchar_t* haystack) { - return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::string& needle, const ::std::string& haystack) { - return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::string& needle, const ::std::string& haystack) { - return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); -} - -#if GTEST_HAS_STD_WSTRING -AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::wstring& needle, const ::std::wstring& haystack) { - return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::wstring& needle, const ::std::wstring& haystack) { - return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); -} -#endif // GTEST_HAS_STD_WSTRING - -namespace internal { - -#if GTEST_OS_WINDOWS - -namespace { - -// Helper function for IsHRESULT{SuccessFailure} predicates -AssertionResult HRESULTFailureHelper(const char* expr, - const char* expected, - long hr) { // NOLINT -#if GTEST_OS_WINDOWS_MOBILE - // Windows CE doesn't support FormatMessage. - const char error_text[] = ""; -#else - // Looks up the human-readable system message for the HRESULT code - // and since we're not passing any params to FormatMessage, we don't - // want inserts expanded. - const DWORD kFlags = FORMAT_MESSAGE_FROM_SYSTEM | - FORMAT_MESSAGE_IGNORE_INSERTS; - const DWORD kBufSize = 4096; // String::Format can't exceed this length. - // Gets the system's human readable message string for this HRESULT. - char error_text[kBufSize] = { '\0' }; - DWORD message_length = ::FormatMessageA(kFlags, - 0, // no source, we're asking system - hr, // the error - 0, // no line width restrictions - error_text, // output buffer - kBufSize, // buf size - NULL); // no arguments for inserts - // Trims tailing white space (FormatMessage leaves a trailing cr-lf) - for (; message_length && isspace(error_text[message_length - 1]); - --message_length) { - error_text[message_length - 1] = '\0'; - } -#endif // GTEST_OS_WINDOWS_MOBILE - - const String error_hex(String::Format("0x%08X ", hr)); - Message msg; - msg << "Expected: " << expr << " " << expected << ".\n" - << " Actual: " << error_hex << error_text << "\n"; - - return ::testing::AssertionFailure(msg); -} - -} // namespace - -AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT - if (SUCCEEDED(hr)) { - return AssertionSuccess(); - } - return HRESULTFailureHelper(expr, "succeeds", hr); -} - -AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT - if (FAILED(hr)) { - return AssertionSuccess(); - } - return HRESULTFailureHelper(expr, "fails", hr); -} - -#endif // GTEST_OS_WINDOWS - -// Utility functions for encoding Unicode text (wide strings) in -// UTF-8. - -// A Unicode code-point can have upto 21 bits, and is encoded in UTF-8 -// like this: -// -// Code-point length Encoding -// 0 - 7 bits 0xxxxxxx -// 8 - 11 bits 110xxxxx 10xxxxxx -// 12 - 16 bits 1110xxxx 10xxxxxx 10xxxxxx -// 17 - 21 bits 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx - -// The maximum code-point a one-byte UTF-8 sequence can represent. -const UInt32 kMaxCodePoint1 = (static_cast(1) << 7) - 1; - -// The maximum code-point a two-byte UTF-8 sequence can represent. -const UInt32 kMaxCodePoint2 = (static_cast(1) << (5 + 6)) - 1; - -// The maximum code-point a three-byte UTF-8 sequence can represent. -const UInt32 kMaxCodePoint3 = (static_cast(1) << (4 + 2*6)) - 1; - -// The maximum code-point a four-byte UTF-8 sequence can represent. -const UInt32 kMaxCodePoint4 = (static_cast(1) << (3 + 3*6)) - 1; - -// Chops off the n lowest bits from a bit pattern. Returns the n -// lowest bits. As a side effect, the original bit pattern will be -// shifted to the right by n bits. -inline UInt32 ChopLowBits(UInt32* bits, int n) { - const UInt32 low_bits = *bits & ((static_cast(1) << n) - 1); - *bits >>= n; - return low_bits; -} - -// Converts a Unicode code point to a narrow string in UTF-8 encoding. -// code_point parameter is of type UInt32 because wchar_t may not be -// wide enough to contain a code point. -// The output buffer str must containt at least 32 characters. -// The function returns the address of the output buffer. -// If the code_point is not a valid Unicode code point -// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be output -// as '(Invalid Unicode 0xXXXXXXXX)'. -char* CodePointToUtf8(UInt32 code_point, char* str) { - if (code_point <= kMaxCodePoint1) { - str[1] = '\0'; - str[0] = static_cast(code_point); // 0xxxxxxx - } else if (code_point <= kMaxCodePoint2) { - str[2] = '\0'; - str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[0] = static_cast(0xC0 | code_point); // 110xxxxx - } else if (code_point <= kMaxCodePoint3) { - str[3] = '\0'; - str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[0] = static_cast(0xE0 | code_point); // 1110xxxx - } else if (code_point <= kMaxCodePoint4) { - str[4] = '\0'; - str[3] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[0] = static_cast(0xF0 | code_point); // 11110xxx - } else { - // The longest string String::Format can produce when invoked - // with these parameters is 28 character long (not including - // the terminating nul character). We are asking for 32 character - // buffer just in case. This is also enough for strncpy to - // null-terminate the destination string. - posix::StrNCpy( - str, String::Format("(Invalid Unicode 0x%X)", code_point).c_str(), 32); - str[31] = '\0'; // Makes sure no change in the format to strncpy leaves - // the result unterminated. - } - return str; -} - -// The following two functions only make sense if the the system -// uses UTF-16 for wide string encoding. All supported systems -// with 16 bit wchar_t (Windows, Cygwin, Symbian OS) do use UTF-16. - -// Determines if the arguments constitute UTF-16 surrogate pair -// and thus should be combined into a single Unicode code point -// using CreateCodePointFromUtf16SurrogatePair. -inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { - return sizeof(wchar_t) == 2 && - (first & 0xFC00) == 0xD800 && (second & 0xFC00) == 0xDC00; -} - -// Creates a Unicode code point from UTF16 surrogate pair. -inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, - wchar_t second) { - const UInt32 mask = (1 << 10) - 1; - return (sizeof(wchar_t) == 2) ? - (((first & mask) << 10) | (second & mask)) + 0x10000 : - // This function should not be called when the condition is - // false, but we provide a sensible default in case it is. - static_cast(first); -} - -// Converts a wide string to a narrow string in UTF-8 encoding. -// The wide string is assumed to have the following encoding: -// UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) -// UTF-32 if sizeof(wchar_t) == 4 (on Linux) -// Parameter str points to a null-terminated wide string. -// Parameter num_chars may additionally limit the number -// of wchar_t characters processed. -1 is used when the entire string -// should be processed. -// If the string contains code points that are not valid Unicode code points -// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output -// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding -// and contains invalid UTF-16 surrogate pairs, values in those pairs -// will be encoded as individual Unicode characters from Basic Normal Plane. -String WideStringToUtf8(const wchar_t* str, int num_chars) { - if (num_chars == -1) - num_chars = static_cast(wcslen(str)); - - StrStream stream; - for (int i = 0; i < num_chars; ++i) { - UInt32 unicode_code_point; - - if (str[i] == L'\0') { - break; - } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) { - unicode_code_point = CreateCodePointFromUtf16SurrogatePair(str[i], - str[i + 1]); - i++; - } else { - unicode_code_point = static_cast(str[i]); - } - - char buffer[32]; // CodePointToUtf8 requires a buffer this big. - stream << CodePointToUtf8(unicode_code_point, buffer); - } - return StrStreamToString(&stream); -} - -// Converts a wide C string to a String using the UTF-8 encoding. -// NULL will be converted to "(null)". -String String::ShowWideCString(const wchar_t * wide_c_str) { - if (wide_c_str == NULL) return String("(null)"); - - return String(internal::WideStringToUtf8(wide_c_str, -1).c_str()); -} - -// Similar to ShowWideCString(), except that this function encloses -// the converted string in double quotes. -String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { - if (wide_c_str == NULL) return String("(null)"); - - return String::Format("L\"%s\"", - String::ShowWideCString(wide_c_str).c_str()); -} - -// Compares two wide C strings. Returns true iff they have the same -// content. -// -// Unlike wcscmp(), this function can handle NULL argument(s). A NULL -// C string is considered different to any non-NULL C string, -// including the empty string. -bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) { - if (lhs == NULL) return rhs == NULL; - - if (rhs == NULL) return false; - - return wcscmp(lhs, rhs) == 0; -} - -// Helper function for *_STREQ on wide strings. -AssertionResult CmpHelperSTREQ(const char* expected_expression, - const char* actual_expression, - const wchar_t* expected, - const wchar_t* actual) { - if (String::WideCStringEquals(expected, actual)) { - return AssertionSuccess(); - } - - return EqFailure(expected_expression, - actual_expression, - String::ShowWideCStringQuoted(expected), - String::ShowWideCStringQuoted(actual), - false); -} - -// Helper function for *_STRNE on wide strings. -AssertionResult CmpHelperSTRNE(const char* s1_expression, - const char* s2_expression, - const wchar_t* s1, - const wchar_t* s2) { - if (!String::WideCStringEquals(s1, s2)) { - return AssertionSuccess(); - } - - Message msg; - msg << "Expected: (" << s1_expression << ") != (" - << s2_expression << "), actual: " - << String::ShowWideCStringQuoted(s1) - << " vs " << String::ShowWideCStringQuoted(s2); - return AssertionFailure(msg); -} - -// Compares two C strings, ignoring case. Returns true iff they have -// the same content. -// -// Unlike strcasecmp(), this function can handle NULL argument(s). A -// NULL C string is considered different to any non-NULL C string, -// including the empty string. -bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) { - if (lhs == NULL) - return rhs == NULL; - if (rhs == NULL) - return false; - return posix::StrCaseCmp(lhs, rhs) == 0; -} - - // Compares two wide C strings, ignoring case. Returns true iff they - // have the same content. - // - // Unlike wcscasecmp(), this function can handle NULL argument(s). - // A NULL C string is considered different to any non-NULL wide C string, - // including the empty string. - // NB: The implementations on different platforms slightly differ. - // On windows, this method uses _wcsicmp which compares according to LC_CTYPE - // environment variable. On GNU platform this method uses wcscasecmp - // which compares according to LC_CTYPE category of the current locale. - // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the - // current locale. -bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs, - const wchar_t* rhs) { - if ( lhs == NULL ) return rhs == NULL; - - if ( rhs == NULL ) return false; - -#if GTEST_OS_WINDOWS - return _wcsicmp(lhs, rhs) == 0; -#elif GTEST_OS_LINUX - return wcscasecmp(lhs, rhs) == 0; -#else - // Mac OS X and Cygwin don't define wcscasecmp. Other unknown OSes - // may not define it either. - wint_t left, right; - do { - left = towlower(*lhs++); - right = towlower(*rhs++); - } while (left && left == right); - return left == right; -#endif // OS selector -} - -// Compares this with another String. -// Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0 -// if this is greater than rhs. -int String::Compare(const String & rhs) const { - const char* const lhs_c_str = c_str(); - const char* const rhs_c_str = rhs.c_str(); - - if (lhs_c_str == NULL) { - return rhs_c_str == NULL ? 0 : -1; // NULL < anything except NULL - } else if (rhs_c_str == NULL) { - return 1; - } - - const size_t shorter_str_len = - length() <= rhs.length() ? length() : rhs.length(); - for (size_t i = 0; i != shorter_str_len; i++) { - if (lhs_c_str[i] < rhs_c_str[i]) { - return -1; - } else if (lhs_c_str[i] > rhs_c_str[i]) { - return 1; - } - } - return (length() < rhs.length()) ? -1 : - (length() > rhs.length()) ? 1 : 0; -} - -// Returns true iff this String ends with the given suffix. *Any* -// String is considered to end with a NULL or empty suffix. -bool String::EndsWith(const char* suffix) const { - if (suffix == NULL || CStringEquals(suffix, "")) return true; - - if (c_str() == NULL) return false; - - const size_t this_len = strlen(c_str()); - const size_t suffix_len = strlen(suffix); - return (this_len >= suffix_len) && - CStringEquals(c_str() + this_len - suffix_len, suffix); -} - -// Returns true iff this String ends with the given suffix, ignoring case. -// Any String is considered to end with a NULL or empty suffix. -bool String::EndsWithCaseInsensitive(const char* suffix) const { - if (suffix == NULL || CStringEquals(suffix, "")) return true; - - if (c_str() == NULL) return false; - - const size_t this_len = strlen(c_str()); - const size_t suffix_len = strlen(suffix); - return (this_len >= suffix_len) && - CaseInsensitiveCStringEquals(c_str() + this_len - suffix_len, suffix); -} - -// Formats a list of arguments to a String, using the same format -// spec string as for printf. -// -// We do not use the StringPrintf class as it is not universally -// available. -// -// The result is limited to 4096 characters (including the tailing 0). -// If 4096 characters are not enough to format the input, or if -// there's an error, "" is -// returned. -String String::Format(const char * format, ...) { - va_list args; - va_start(args, format); - - char buffer[4096]; - const int kBufferSize = sizeof(buffer)/sizeof(buffer[0]); - - // MSVC 8 deprecates vsnprintf(), so we want to suppress warning - // 4996 (deprecated function) there. -#ifdef _MSC_VER // We are using MSVC. -#pragma warning(push) // Saves the current warning state. -#pragma warning(disable:4996) // Temporarily disables warning 4996. - const int size = vsnprintf(buffer, kBufferSize, format, args); -#pragma warning(pop) // Restores the warning state. -#else // We are not using MSVC. - const int size = vsnprintf(buffer, kBufferSize, format, args); -#endif // _MSC_VER - va_end(args); - - // vsnprintf()'s behavior is not portable. When the buffer is not - // big enough, it returns a negative value in MSVC, and returns the - // needed buffer size on Linux. When there is an output error, it - // always returns a negative value. For simplicity, we lump the two - // error cases together. - if (size < 0 || size >= kBufferSize) { - return String(""); - } else { - return String(buffer, size); - } -} - -// Converts the buffer in a StrStream to a String, converting NUL -// bytes to "\\0" along the way. -String StrStreamToString(StrStream* ss) { - const ::std::string& str = ss->str(); - const char* const start = str.c_str(); - const char* const end = start + str.length(); - - // We need to use a helper StrStream to do this transformation - // because String doesn't support push_back(). - StrStream helper; - for (const char* ch = start; ch != end; ++ch) { - if (*ch == '\0') { - helper << "\\0"; // Replaces NUL with "\\0"; - } else { - helper.put(*ch); - } - } - - return String(helper.str().c_str()); -} - -// Appends the user-supplied message to the Google-Test-generated message. -String AppendUserMessage(const String& gtest_msg, - const Message& user_msg) { - // Appends the user message if it's non-empty. - const String user_msg_string = user_msg.GetString(); - if (user_msg_string.empty()) { - return gtest_msg; - } - - Message msg; - msg << gtest_msg << "\n" << user_msg_string; - - return msg.GetString(); -} - -} // namespace internal - -// class TestResult - -// Creates an empty TestResult. -TestResult::TestResult() - : death_test_count_(0), - elapsed_time_(0) { -} - -// D'tor. -TestResult::~TestResult() { -} - -// Returns the i-th test part result among all the results. i can -// range from 0 to total_part_count() - 1. If i is not in that range, -// aborts the program. -const TestPartResult& TestResult::GetTestPartResult(int i) const { - if (i < 0 || i >= total_part_count()) - internal::posix::Abort(); - return test_part_results_.at(i); -} - -// Returns the i-th test property. i can range from 0 to -// test_property_count() - 1. If i is not in that range, aborts the -// program. -const TestProperty& TestResult::GetTestProperty(int i) const { - if (i < 0 || i >= test_property_count()) - internal::posix::Abort(); - return test_properties_.at(i); -} - -// Clears the test part results. -void TestResult::ClearTestPartResults() { - test_part_results_.clear(); -} - -// Adds a test part result to the list. -void TestResult::AddTestPartResult(const TestPartResult& test_part_result) { - test_part_results_.push_back(test_part_result); -} - -// Adds a test property to the list. If a property with the same key as the -// supplied property is already represented, the value of this test_property -// replaces the old value for that key. -void TestResult::RecordProperty(const TestProperty& test_property) { - if (!ValidateTestProperty(test_property)) { - return; - } - internal::MutexLock lock(&test_properites_mutex_); - const std::vector::iterator property_with_matching_key = - std::find_if(test_properties_.begin(), test_properties_.end(), - internal::TestPropertyKeyIs(test_property.key())); - if (property_with_matching_key == test_properties_.end()) { - test_properties_.push_back(test_property); - return; - } - property_with_matching_key->SetValue(test_property.value()); -} - -// Adds a failure if the key is a reserved attribute of Google Test -// testcase tags. Returns true if the property is valid. -bool TestResult::ValidateTestProperty(const TestProperty& test_property) { - internal::String key(test_property.key()); - if (key == "name" || key == "status" || key == "time" || key == "classname") { - ADD_FAILURE() - << "Reserved key used in RecordProperty(): " - << key - << " ('name', 'status', 'time', and 'classname' are reserved by " - << GTEST_NAME_ << ")"; - return false; - } - return true; -} - -// Clears the object. -void TestResult::Clear() { - test_part_results_.clear(); - test_properties_.clear(); - death_test_count_ = 0; - elapsed_time_ = 0; -} - -// Returns true iff the test failed. -bool TestResult::Failed() const { - for (int i = 0; i < total_part_count(); ++i) { - if (GetTestPartResult(i).failed()) - return true; - } - return false; -} - -// Returns true iff the test part fatally failed. -static bool TestPartFatallyFailed(const TestPartResult& result) { - return result.fatally_failed(); -} - -// Returns true iff the test fatally failed. -bool TestResult::HasFatalFailure() const { - return CountIf(test_part_results_, TestPartFatallyFailed) > 0; -} - -// Returns true iff the test part non-fatally failed. -static bool TestPartNonfatallyFailed(const TestPartResult& result) { - return result.nonfatally_failed(); -} - -// Returns true iff the test has a non-fatal failure. -bool TestResult::HasNonfatalFailure() const { - return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0; -} - -// Gets the number of all test parts. This is the sum of the number -// of successful test parts and the number of failed test parts. -int TestResult::total_part_count() const { - return static_cast(test_part_results_.size()); -} - -// Returns the number of the test properties. -int TestResult::test_property_count() const { - return static_cast(test_properties_.size()); -} - -// class Test - -// Creates a Test object. - -// The c'tor saves the values of all Google Test flags. -Test::Test() - : gtest_flag_saver_(new internal::GTestFlagSaver) { -} - -// The d'tor restores the values of all Google Test flags. -Test::~Test() { - delete gtest_flag_saver_; -} - -// Sets up the test fixture. -// -// A sub-class may override this. -void Test::SetUp() { -} - -// Tears down the test fixture. -// -// A sub-class may override this. -void Test::TearDown() { -} - -// Allows user supplied key value pairs to be recorded for later output. -void Test::RecordProperty(const char* key, const char* value) { - UnitTest::GetInstance()->RecordPropertyForCurrentTest(key, value); -} - -// Allows user supplied key value pairs to be recorded for later output. -void Test::RecordProperty(const char* key, int value) { - Message value_message; - value_message << value; - RecordProperty(key, value_message.GetString().c_str()); -} - -namespace internal { - -void ReportFailureInUnknownLocation(TestPartResult::Type result_type, - const String& message) { - // This function is a friend of UnitTest and as such has access to - // AddTestPartResult. - UnitTest::GetInstance()->AddTestPartResult( - result_type, - NULL, // No info about the source file where the exception occurred. - -1, // We have no info on which line caused the exception. - message, - String()); // No stack trace, either. -} - -} // namespace internal - -#if GTEST_OS_WINDOWS -// We are on Windows. - -// Adds an "exception thrown" fatal failure to the current test. -static void AddExceptionThrownFailure(DWORD exception_code, - const char* location) { - Message message; - message << "Exception thrown with code 0x" << std::setbase(16) << - exception_code << std::setbase(10) << " in " << location << "."; - - internal::ReportFailureInUnknownLocation(TestPartResult::kFatalFailure, - message.GetString()); -} - -#endif // GTEST_OS_WINDOWS - -// Google Test requires all tests in the same test case to use the same test -// fixture class. This function checks if the current test has the -// same fixture class as the first test in the current test case. If -// yes, it returns true; otherwise it generates a Google Test failure and -// returns false. -bool Test::HasSameFixtureClass() { - internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); - const TestCase* const test_case = impl->current_test_case(); - - // Info about the first test in the current test case. - const internal::TestInfoImpl* const first_test_info = - test_case->test_info_list()[0]->impl(); - const internal::TypeId first_fixture_id = first_test_info->fixture_class_id(); - const char* const first_test_name = first_test_info->name(); - - // Info about the current test. - const internal::TestInfoImpl* const this_test_info = - impl->current_test_info()->impl(); - const internal::TypeId this_fixture_id = this_test_info->fixture_class_id(); - const char* const this_test_name = this_test_info->name(); - - if (this_fixture_id != first_fixture_id) { - // Is the first test defined using TEST? - const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId(); - // Is this test defined using TEST? - const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId(); - - if (first_is_TEST || this_is_TEST) { - // The user mixed TEST and TEST_F in this test case - we'll tell - // him/her how to fix it. - - // Gets the name of the TEST and the name of the TEST_F. Note - // that first_is_TEST and this_is_TEST cannot both be true, as - // the fixture IDs are different for the two tests. - const char* const TEST_name = - first_is_TEST ? first_test_name : this_test_name; - const char* const TEST_F_name = - first_is_TEST ? this_test_name : first_test_name; - - ADD_FAILURE() - << "All tests in the same test case must use the same test fixture\n" - << "class, so mixing TEST_F and TEST in the same test case is\n" - << "illegal. In test case " << this_test_info->test_case_name() - << ",\n" - << "test " << TEST_F_name << " is defined using TEST_F but\n" - << "test " << TEST_name << " is defined using TEST. You probably\n" - << "want to change the TEST to TEST_F or move it to another test\n" - << "case."; - } else { - // The user defined two fixture classes with the same name in - // two namespaces - we'll tell him/her how to fix it. - ADD_FAILURE() - << "All tests in the same test case must use the same test fixture\n" - << "class. However, in test case " - << this_test_info->test_case_name() << ",\n" - << "you defined test " << first_test_name - << " and test " << this_test_name << "\n" - << "using two different test fixture classes. This can happen if\n" - << "the two classes are from different namespaces or translation\n" - << "units and have the same name. You should probably rename one\n" - << "of the classes to put the tests into different test cases."; - } - return false; - } - - return true; -} - -// Runs the test and updates the test result. -void Test::Run() { - if (!HasSameFixtureClass()) return; - - internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); -#if GTEST_HAS_SEH - // Catch SEH-style exceptions. - impl->os_stack_trace_getter()->UponLeavingGTest(); - __try { - SetUp(); - } __except(internal::UnitTestOptions::GTestShouldProcessSEH( - GetExceptionCode())) { - AddExceptionThrownFailure(GetExceptionCode(), "SetUp()"); - } - - // We will run the test only if SetUp() had no fatal failure. - if (!HasFatalFailure()) { - impl->os_stack_trace_getter()->UponLeavingGTest(); - __try { - TestBody(); - } __except(internal::UnitTestOptions::GTestShouldProcessSEH( - GetExceptionCode())) { - AddExceptionThrownFailure(GetExceptionCode(), "the test body"); - } - } - - // However, we want to clean up as much as possible. Hence we will - // always call TearDown(), even if SetUp() or the test body has - // failed. - impl->os_stack_trace_getter()->UponLeavingGTest(); - __try { - TearDown(); - } __except(internal::UnitTestOptions::GTestShouldProcessSEH( - GetExceptionCode())) { - AddExceptionThrownFailure(GetExceptionCode(), "TearDown()"); - } - -#else // We are on a compiler or platform that doesn't support SEH. - impl->os_stack_trace_getter()->UponLeavingGTest(); - SetUp(); - - // We will run the test only if SetUp() was successful. - if (!HasFatalFailure()) { - impl->os_stack_trace_getter()->UponLeavingGTest(); - TestBody(); - } - - // However, we want to clean up as much as possible. Hence we will - // always call TearDown(), even if SetUp() or the test body has - // failed. - impl->os_stack_trace_getter()->UponLeavingGTest(); - TearDown(); -#endif // GTEST_HAS_SEH -} - - -// Returns true iff the current test has a fatal failure. -bool Test::HasFatalFailure() { - return internal::GetUnitTestImpl()->current_test_result()->HasFatalFailure(); -} - -// Returns true iff the current test has a non-fatal failure. -bool Test::HasNonfatalFailure() { - return internal::GetUnitTestImpl()->current_test_result()-> - HasNonfatalFailure(); -} - -// class TestInfo - -// Constructs a TestInfo object. It assumes ownership of the test factory -// object via impl_. -TestInfo::TestInfo(const char* a_test_case_name, - const char* a_name, - const char* a_test_case_comment, - const char* a_comment, - internal::TypeId fixture_class_id, - internal::TestFactoryBase* factory) { - impl_ = new internal::TestInfoImpl(this, a_test_case_name, a_name, - a_test_case_comment, a_comment, - fixture_class_id, factory); -} - -// Destructs a TestInfo object. -TestInfo::~TestInfo() { - delete impl_; -} - -namespace internal { - -// Creates a new TestInfo object and registers it with Google Test; -// returns the created object. -// -// Arguments: -// -// test_case_name: name of the test case -// name: name of the test -// test_case_comment: a comment on the test case that will be included in -// the test output -// comment: a comment on the test that will be included in the -// test output -// fixture_class_id: ID of the test fixture class -// set_up_tc: pointer to the function that sets up the test case -// tear_down_tc: pointer to the function that tears down the test case -// factory: pointer to the factory that creates a test object. -// The newly created TestInfo instance will assume -// ownership of the factory object. -TestInfo* MakeAndRegisterTestInfo( - const char* test_case_name, const char* name, - const char* test_case_comment, const char* comment, - TypeId fixture_class_id, - SetUpTestCaseFunc set_up_tc, - TearDownTestCaseFunc tear_down_tc, - TestFactoryBase* factory) { - TestInfo* const test_info = - new TestInfo(test_case_name, name, test_case_comment, comment, - fixture_class_id, factory); - GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info); - return test_info; -} - -#if GTEST_HAS_PARAM_TEST -void ReportInvalidTestCaseType(const char* test_case_name, - const char* file, int line) { - Message errors; - errors - << "Attempted redefinition of test case " << test_case_name << ".\n" - << "All tests in the same test case must use the same test fixture\n" - << "class. However, in test case " << test_case_name << ", you tried\n" - << "to define a test using a fixture class different from the one\n" - << "used earlier. This can happen if the two fixture classes are\n" - << "from different namespaces and have the same name. You should\n" - << "probably rename one of the classes to put the tests into different\n" - << "test cases."; - - fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), - errors.GetString().c_str()); -} -#endif // GTEST_HAS_PARAM_TEST - -} // namespace internal - -// Returns the test case name. -const char* TestInfo::test_case_name() const { - return impl_->test_case_name(); -} - -// Returns the test name. -const char* TestInfo::name() const { - return impl_->name(); -} - -// Returns the test case comment. -const char* TestInfo::test_case_comment() const { - return impl_->test_case_comment(); -} - -// Returns the test comment. -const char* TestInfo::comment() const { - return impl_->comment(); -} - -// Returns true if this test should run. -bool TestInfo::should_run() const { return impl_->should_run(); } - -// Returns true if this test matches the user-specified filter. -bool TestInfo::matches_filter() const { return impl_->matches_filter(); } - -// Returns the result of the test. -const TestResult* TestInfo::result() const { return impl_->result(); } - -// Increments the number of death tests encountered in this test so -// far. -int TestInfo::increment_death_test_count() { - return impl_->result()->increment_death_test_count(); -} - -namespace { - -// A predicate that checks the test name of a TestInfo against a known -// value. -// -// This is used for implementation of the TestCase class only. We put -// it in the anonymous namespace to prevent polluting the outer -// namespace. -// -// TestNameIs is copyable. -class TestNameIs { - public: - // Constructor. - // - // TestNameIs has NO default constructor. - explicit TestNameIs(const char* name) - : name_(name) {} - - // Returns true iff the test name of test_info matches name_. - bool operator()(const TestInfo * test_info) const { - return test_info && internal::String(test_info->name()).Compare(name_) == 0; - } - - private: - internal::String name_; -}; - -} // namespace - -namespace internal { - -// This method expands all parameterized tests registered with macros TEST_P -// and INSTANTIATE_TEST_CASE_P into regular tests and registers those. -// This will be done just once during the program runtime. -void UnitTestImpl::RegisterParameterizedTests() { -#if GTEST_HAS_PARAM_TEST - if (!parameterized_tests_registered_) { - parameterized_test_registry_.RegisterTests(); - parameterized_tests_registered_ = true; - } -#endif -} - -// Creates the test object, runs it, records its result, and then -// deletes it. -void TestInfoImpl::Run() { - if (!should_run_) return; - - // Tells UnitTest where to store test result. - UnitTestImpl* const impl = internal::GetUnitTestImpl(); - impl->set_current_test_info(parent_); - - TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); - - // Notifies the unit test event listeners that a test is about to start. - repeater->OnTestStart(*parent_); - - const TimeInMillis start = GetTimeInMillis(); - - impl->os_stack_trace_getter()->UponLeavingGTest(); -#if GTEST_HAS_SEH - // Catch SEH-style exceptions. - Test* test = NULL; - - __try { - // Creates the test object. - test = factory_->CreateTest(); - } __except(internal::UnitTestOptions::GTestShouldProcessSEH( - GetExceptionCode())) { - AddExceptionThrownFailure(GetExceptionCode(), - "the test fixture's constructor"); - return; - } -#else // We are on a compiler or platform that doesn't support SEH. - - // TODO(wan): If test->Run() throws, test won't be deleted. This is - // not a problem now as we don't use exceptions. If we were to - // enable exceptions, we should revise the following to be - // exception-safe. - - // Creates the test object. - Test* test = factory_->CreateTest(); -#endif // GTEST_HAS_SEH - - // Runs the test only if the constructor of the test fixture didn't - // generate a fatal failure. - if (!Test::HasFatalFailure()) { - test->Run(); - } - - // Deletes the test object. - impl->os_stack_trace_getter()->UponLeavingGTest(); - delete test; - test = NULL; - - result_.set_elapsed_time(GetTimeInMillis() - start); - - // Notifies the unit test event listener that a test has just finished. - repeater->OnTestEnd(*parent_); - - // Tells UnitTest to stop associating assertion results to this - // test. - impl->set_current_test_info(NULL); -} - -} // namespace internal - -// class TestCase - -// Gets the number of successful tests in this test case. -int TestCase::successful_test_count() const { - return CountIf(test_info_list_, TestPassed); -} - -// Gets the number of failed tests in this test case. -int TestCase::failed_test_count() const { - return CountIf(test_info_list_, TestFailed); -} - -int TestCase::disabled_test_count() const { - return CountIf(test_info_list_, TestDisabled); -} - -// Get the number of tests in this test case that should run. -int TestCase::test_to_run_count() const { - return CountIf(test_info_list_, ShouldRunTest); -} - -// Gets the number of all tests. -int TestCase::total_test_count() const { - return static_cast(test_info_list_.size()); -} - -// Creates a TestCase with the given name. -// -// Arguments: -// -// name: name of the test case -// set_up_tc: pointer to the function that sets up the test case -// tear_down_tc: pointer to the function that tears down the test case -TestCase::TestCase(const char* a_name, const char* a_comment, - Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc) - : name_(a_name), - comment_(a_comment), - set_up_tc_(set_up_tc), - tear_down_tc_(tear_down_tc), - should_run_(false), - elapsed_time_(0) { -} - -// Destructor of TestCase. -TestCase::~TestCase() { - // Deletes every Test in the collection. - ForEach(test_info_list_, internal::Delete); -} - -// Returns the i-th test among all the tests. i can range from 0 to -// total_test_count() - 1. If i is not in that range, returns NULL. -const TestInfo* TestCase::GetTestInfo(int i) const { - const int index = GetElementOr(test_indices_, i, -1); - return index < 0 ? NULL : test_info_list_[index]; -} - -// Returns the i-th test among all the tests. i can range from 0 to -// total_test_count() - 1. If i is not in that range, returns NULL. -TestInfo* TestCase::GetMutableTestInfo(int i) { - const int index = GetElementOr(test_indices_, i, -1); - return index < 0 ? NULL : test_info_list_[index]; -} - -// Adds a test to this test case. Will delete the test upon -// destruction of the TestCase object. -void TestCase::AddTestInfo(TestInfo * test_info) { - test_info_list_.push_back(test_info); - test_indices_.push_back(static_cast(test_indices_.size())); -} - -// Runs every test in this TestCase. -void TestCase::Run() { - if (!should_run_) return; - - internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); - impl->set_current_test_case(this); - - TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); - - repeater->OnTestCaseStart(*this); - impl->os_stack_trace_getter()->UponLeavingGTest(); - set_up_tc_(); - - const internal::TimeInMillis start = internal::GetTimeInMillis(); - for (int i = 0; i < total_test_count(); i++) { - GetMutableTestInfo(i)->impl()->Run(); - } - elapsed_time_ = internal::GetTimeInMillis() - start; - - impl->os_stack_trace_getter()->UponLeavingGTest(); - tear_down_tc_(); - repeater->OnTestCaseEnd(*this); - impl->set_current_test_case(NULL); -} - -// Clears the results of all tests in this test case. -void TestCase::ClearResult() { - ForEach(test_info_list_, internal::TestInfoImpl::ClearTestResult); -} - -// Returns true iff test passed. -bool TestCase::TestPassed(const TestInfo * test_info) { - const internal::TestInfoImpl* const impl = test_info->impl(); - return impl->should_run() && impl->result()->Passed(); -} - -// Returns true iff test failed. -bool TestCase::TestFailed(const TestInfo * test_info) { - const internal::TestInfoImpl* const impl = test_info->impl(); - return impl->should_run() && impl->result()->Failed(); -} - -// Returns true iff test is disabled. -bool TestCase::TestDisabled(const TestInfo * test_info) { - return test_info->impl()->is_disabled(); -} - -// Returns true if the given test should run. -bool TestCase::ShouldRunTest(const TestInfo *test_info) { - return test_info->impl()->should_run(); -} - -// Shuffles the tests in this test case. -void TestCase::ShuffleTests(internal::Random* random) { - Shuffle(random, &test_indices_); -} - -// Restores the test order to before the first shuffle. -void TestCase::UnshuffleTests() { - for (size_t i = 0; i < test_indices_.size(); i++) { - test_indices_[i] = static_cast(i); - } -} - -// Formats a countable noun. Depending on its quantity, either the -// singular form or the plural form is used. e.g. -// -// FormatCountableNoun(1, "formula", "formuli") returns "1 formula". -// FormatCountableNoun(5, "book", "books") returns "5 books". -static internal::String FormatCountableNoun(int count, - const char * singular_form, - const char * plural_form) { - return internal::String::Format("%d %s", count, - count == 1 ? singular_form : plural_form); -} - -// Formats the count of tests. -static internal::String FormatTestCount(int test_count) { - return FormatCountableNoun(test_count, "test", "tests"); -} - -// Formats the count of test cases. -static internal::String FormatTestCaseCount(int test_case_count) { - return FormatCountableNoun(test_case_count, "test case", "test cases"); -} - -// Converts a TestPartResult::Type enum to human-friendly string -// representation. Both kNonFatalFailure and kFatalFailure are translated -// to "Failure", as the user usually doesn't care about the difference -// between the two when viewing the test result. -static const char * TestPartResultTypeToString(TestPartResult::Type type) { - switch (type) { - case TestPartResult::kSuccess: - return "Success"; - - case TestPartResult::kNonFatalFailure: - case TestPartResult::kFatalFailure: -#ifdef _MSC_VER - return "error: "; -#else - return "Failure\n"; -#endif - } - - return "Unknown result type"; -} - -// Prints a TestPartResult to a String. -static internal::String PrintTestPartResultToString( - const TestPartResult& test_part_result) { - return (Message() - << internal::FormatFileLocation(test_part_result.file_name(), - test_part_result.line_number()) - << " " << TestPartResultTypeToString(test_part_result.type()) - << test_part_result.message()).GetString(); -} - -// Prints a TestPartResult. -static void PrintTestPartResult(const TestPartResult& test_part_result) { - const internal::String& result = - PrintTestPartResultToString(test_part_result); - printf("%s\n", result.c_str()); - fflush(stdout); - // If the test program runs in Visual Studio or a debugger, the - // following statements add the test part result message to the Output - // window such that the user can double-click on it to jump to the - // corresponding source code location; otherwise they do nothing. -#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE - // We don't call OutputDebugString*() on Windows Mobile, as printing - // to stdout is done by OutputDebugString() there already - we don't - // want the same message printed twice. - ::OutputDebugStringA(result.c_str()); - ::OutputDebugStringA("\n"); -#endif -} - -// class PrettyUnitTestResultPrinter - -namespace internal { - -enum GTestColor { - COLOR_DEFAULT, - COLOR_RED, - COLOR_GREEN, - COLOR_YELLOW -}; - -#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE - -// Returns the character attribute for the given color. -WORD GetColorAttribute(GTestColor color) { - switch (color) { - case COLOR_RED: return FOREGROUND_RED; - case COLOR_GREEN: return FOREGROUND_GREEN; - case COLOR_YELLOW: return FOREGROUND_RED | FOREGROUND_GREEN; - default: return 0; - } -} - -#else - -// Returns the ANSI color code for the given color. COLOR_DEFAULT is -// an invalid input. -const char* GetAnsiColorCode(GTestColor color) { - switch (color) { - case COLOR_RED: return "1"; - case COLOR_GREEN: return "2"; - case COLOR_YELLOW: return "3"; - default: return NULL; - }; -} - -#endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE - -// Returns true iff Google Test should use colors in the output. -bool ShouldUseColor(bool stdout_is_tty) { - const char* const gtest_color = GTEST_FLAG(color).c_str(); - - if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { -#if GTEST_OS_WINDOWS - // On Windows the TERM variable is usually not set, but the - // console there does support colors. - return stdout_is_tty; -#else - // On non-Windows platforms, we rely on the TERM variable. - const char* const term = posix::GetEnv("TERM"); - const bool term_supports_color = - String::CStringEquals(term, "xterm") || - String::CStringEquals(term, "xterm-color") || - String::CStringEquals(term, "xterm-256color") || - String::CStringEquals(term, "linux") || - String::CStringEquals(term, "cygwin"); - return stdout_is_tty && term_supports_color; -#endif // GTEST_OS_WINDOWS - } - - return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || - String::CaseInsensitiveCStringEquals(gtest_color, "true") || - String::CaseInsensitiveCStringEquals(gtest_color, "t") || - String::CStringEquals(gtest_color, "1"); - // We take "yes", "true", "t", and "1" as meaning "yes". If the - // value is neither one of these nor "auto", we treat it as "no" to - // be conservative. -} - -// Helpers for printing colored strings to stdout. Note that on Windows, we -// cannot simply emit special characters and have the terminal change colors. -// This routine must actually emit the characters rather than return a string -// that would be colored when printed, as can be done on Linux. -void ColoredPrintf(GTestColor color, const char* fmt, ...) { - va_list args; - va_start(args, fmt); - -#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS - const bool use_color = false; -#else - static const bool in_color_mode = - ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); - const bool use_color = in_color_mode && (color != COLOR_DEFAULT); -#endif // GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS - // The '!= 0' comparison is necessary to satisfy MSVC 7.1. - - if (!use_color) { - vprintf(fmt, args); - va_end(args); - return; - } - -#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE - const HANDLE stdout_handle = GetStdHandle(STD_OUTPUT_HANDLE); - - // Gets the current text color. - CONSOLE_SCREEN_BUFFER_INFO buffer_info; - GetConsoleScreenBufferInfo(stdout_handle, &buffer_info); - const WORD old_color_attrs = buffer_info.wAttributes; - - // We need to flush the stream buffers into the console before each - // SetConsoleTextAttribute call lest it affect the text that is already - // printed but has not yet reached the console. - fflush(stdout); - SetConsoleTextAttribute(stdout_handle, - GetColorAttribute(color) | FOREGROUND_INTENSITY); - vprintf(fmt, args); - - fflush(stdout); - // Restores the text color. - SetConsoleTextAttribute(stdout_handle, old_color_attrs); -#else - printf("\033[0;3%sm", GetAnsiColorCode(color)); - vprintf(fmt, args); - printf("\033[m"); // Resets the terminal to default. -#endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE - va_end(args); -} - -// This class implements the TestEventListener interface. -// -// Class PrettyUnitTestResultPrinter is copyable. -class PrettyUnitTestResultPrinter : public TestEventListener { - public: - PrettyUnitTestResultPrinter() {} - static void PrintTestName(const char * test_case, const char * test) { - printf("%s.%s", test_case, test); - } - - // The following methods override what's in the TestEventListener class. - virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} - virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); - virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); - virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} - virtual void OnTestCaseStart(const TestCase& test_case); - virtual void OnTestStart(const TestInfo& test_info); - virtual void OnTestPartResult(const TestPartResult& result); - virtual void OnTestEnd(const TestInfo& test_info); - virtual void OnTestCaseEnd(const TestCase& test_case); - virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); - virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} - virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); - virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} - - private: - static void PrintFailedTests(const UnitTest& unit_test); - - internal::String test_case_name_; -}; - - // Fired before each iteration of tests starts. -void PrettyUnitTestResultPrinter::OnTestIterationStart( - const UnitTest& unit_test, int iteration) { - if (GTEST_FLAG(repeat) != 1) - printf("\nRepeating all tests (iteration %d) . . .\n\n", iteration + 1); - - const char* const filter = GTEST_FLAG(filter).c_str(); - - // Prints the filter if it's not *. This reminds the user that some - // tests may be skipped. - if (!internal::String::CStringEquals(filter, kUniversalFilter)) { - ColoredPrintf(COLOR_YELLOW, - "Note: %s filter = %s\n", GTEST_NAME_, filter); - } - - if (internal::ShouldShard(kTestTotalShards, kTestShardIndex, false)) { - ColoredPrintf(COLOR_YELLOW, - "Note: This is test shard %s of %s.\n", - internal::posix::GetEnv(kTestShardIndex), - internal::posix::GetEnv(kTestTotalShards)); - } - - if (GTEST_FLAG(shuffle)) { - ColoredPrintf(COLOR_YELLOW, - "Note: Randomizing tests' orders with a seed of %d .\n", - unit_test.random_seed()); - } - - ColoredPrintf(COLOR_GREEN, "[==========] "); - printf("Running %s from %s.\n", - FormatTestCount(unit_test.test_to_run_count()).c_str(), - FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart( - const UnitTest& /*unit_test*/) { - ColoredPrintf(COLOR_GREEN, "[----------] "); - printf("Global test environment set-up.\n"); - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) { - test_case_name_ = test_case.name(); - const internal::String counts = - FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); - ColoredPrintf(COLOR_GREEN, "[----------] "); - printf("%s from %s", counts.c_str(), test_case_name_.c_str()); - if (test_case.comment()[0] == '\0') { - printf("\n"); - } else { - printf(", where %s\n", test_case.comment()); - } - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) { - ColoredPrintf(COLOR_GREEN, "[ RUN ] "); - PrintTestName(test_case_name_.c_str(), test_info.name()); - if (test_info.comment()[0] == '\0') { - printf("\n"); - } else { - printf(", where %s\n", test_info.comment()); - } - fflush(stdout); -} - -// Called after an assertion failure. -void PrettyUnitTestResultPrinter::OnTestPartResult( - const TestPartResult& result) { - // If the test part succeeded, we don't need to do anything. - if (result.type() == TestPartResult::kSuccess) - return; - - // Print failure message from the assertion (e.g. expected this and got that). - PrintTestPartResult(result); - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) { - if (test_info.result()->Passed()) { - ColoredPrintf(COLOR_GREEN, "[ OK ] "); - } else { - ColoredPrintf(COLOR_RED, "[ FAILED ] "); - } - PrintTestName(test_case_name_.c_str(), test_info.name()); - if (GTEST_FLAG(print_time)) { - printf(" (%s ms)\n", internal::StreamableToString( - test_info.result()->elapsed_time()).c_str()); - } else { - printf("\n"); - } - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) { - if (!GTEST_FLAG(print_time)) return; - - test_case_name_ = test_case.name(); - const internal::String counts = - FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); - ColoredPrintf(COLOR_GREEN, "[----------] "); - printf("%s from %s (%s ms total)\n\n", - counts.c_str(), test_case_name_.c_str(), - internal::StreamableToString(test_case.elapsed_time()).c_str()); - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart( - const UnitTest& /*unit_test*/) { - ColoredPrintf(COLOR_GREEN, "[----------] "); - printf("Global test environment tear-down\n"); - fflush(stdout); -} - -// Internal helper for printing the list of failed tests. -void PrettyUnitTestResultPrinter::PrintFailedTests(const UnitTest& unit_test) { - const int failed_test_count = unit_test.failed_test_count(); - if (failed_test_count == 0) { - return; - } - - for (int i = 0; i < unit_test.total_test_case_count(); ++i) { - const TestCase& test_case = *unit_test.GetTestCase(i); - if (!test_case.should_run() || (test_case.failed_test_count() == 0)) { - continue; - } - for (int j = 0; j < test_case.total_test_count(); ++j) { - const TestInfo& test_info = *test_case.GetTestInfo(j); - if (!test_info.should_run() || test_info.result()->Passed()) { - continue; - } - ColoredPrintf(COLOR_RED, "[ FAILED ] "); - printf("%s.%s", test_case.name(), test_info.name()); - if (test_case.comment()[0] != '\0' || - test_info.comment()[0] != '\0') { - printf(", where %s", test_case.comment()); - if (test_case.comment()[0] != '\0' && - test_info.comment()[0] != '\0') { - printf(" and "); - } - } - printf("%s\n", test_info.comment()); - } - } -} - - void PrettyUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, - int /*iteration*/) { - ColoredPrintf(COLOR_GREEN, "[==========] "); - printf("%s from %s ran.", - FormatTestCount(unit_test.test_to_run_count()).c_str(), - FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); - if (GTEST_FLAG(print_time)) { - printf(" (%s ms total)", - internal::StreamableToString(unit_test.elapsed_time()).c_str()); - } - printf("\n"); - ColoredPrintf(COLOR_GREEN, "[ PASSED ] "); - printf("%s.\n", FormatTestCount(unit_test.successful_test_count()).c_str()); - - int num_failures = unit_test.failed_test_count(); - if (!unit_test.Passed()) { - const int failed_test_count = unit_test.failed_test_count(); - ColoredPrintf(COLOR_RED, "[ FAILED ] "); - printf("%s, listed below:\n", FormatTestCount(failed_test_count).c_str()); - PrintFailedTests(unit_test); - printf("\n%2d FAILED %s\n", num_failures, - num_failures == 1 ? "TEST" : "TESTS"); - } - - int num_disabled = unit_test.disabled_test_count(); - if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) { - if (!num_failures) { - printf("\n"); // Add a spacer if no FAILURE banner is displayed. - } - ColoredPrintf(COLOR_YELLOW, - " YOU HAVE %d DISABLED %s\n\n", - num_disabled, - num_disabled == 1 ? "TEST" : "TESTS"); - } - // Ensure that Google Test output is printed before, e.g., heapchecker output. - fflush(stdout); -} - -// End PrettyUnitTestResultPrinter - -// class TestEventRepeater -// -// This class forwards events to other event listeners. -class TestEventRepeater : public TestEventListener { - public: - TestEventRepeater() : forwarding_enabled_(true) {} - virtual ~TestEventRepeater(); - void Append(TestEventListener *listener); - TestEventListener* Release(TestEventListener* listener); - - // Controls whether events will be forwarded to listeners_. Set to false - // in death test child processes. - bool forwarding_enabled() const { return forwarding_enabled_; } - void set_forwarding_enabled(bool enable) { forwarding_enabled_ = enable; } - - virtual void OnTestProgramStart(const UnitTest& unit_test); - virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); - virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); - virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test); - virtual void OnTestCaseStart(const TestCase& test_case); - virtual void OnTestStart(const TestInfo& test_info); - virtual void OnTestPartResult(const TestPartResult& result); - virtual void OnTestEnd(const TestInfo& test_info); - virtual void OnTestCaseEnd(const TestCase& test_case); - virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); - virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test); - virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); - virtual void OnTestProgramEnd(const UnitTest& unit_test); - - private: - // Controls whether events will be forwarded to listeners_. Set to false - // in death test child processes. - bool forwarding_enabled_; - // The list of listeners that receive events. - std::vector listeners_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventRepeater); -}; - -TestEventRepeater::~TestEventRepeater() { - ForEach(listeners_, Delete); -} - -void TestEventRepeater::Append(TestEventListener *listener) { - listeners_.push_back(listener); -} - -// TODO(vladl@google.com): Factor the search functionality into Vector::Find. -TestEventListener* TestEventRepeater::Release(TestEventListener *listener) { - for (size_t i = 0; i < listeners_.size(); ++i) { - if (listeners_[i] == listener) { - listeners_.erase(listeners_.begin() + i); - return listener; - } - } - - return NULL; -} - -// Since most methods are very similar, use macros to reduce boilerplate. -// This defines a member that forwards the call to all listeners. -#define GTEST_REPEATER_METHOD_(Name, Type) \ -void TestEventRepeater::Name(const Type& parameter) { \ - if (forwarding_enabled_) { \ - for (size_t i = 0; i < listeners_.size(); i++) { \ - listeners_[i]->Name(parameter); \ - } \ - } \ -} -// This defines a member that forwards the call to all listeners in reverse -// order. -#define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \ -void TestEventRepeater::Name(const Type& parameter) { \ - if (forwarding_enabled_) { \ - for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { \ - listeners_[i]->Name(parameter); \ - } \ - } \ -} - -GTEST_REPEATER_METHOD_(OnTestProgramStart, UnitTest) -GTEST_REPEATER_METHOD_(OnEnvironmentsSetUpStart, UnitTest) -GTEST_REPEATER_METHOD_(OnTestCaseStart, TestCase) -GTEST_REPEATER_METHOD_(OnTestStart, TestInfo) -GTEST_REPEATER_METHOD_(OnTestPartResult, TestPartResult) -GTEST_REPEATER_METHOD_(OnEnvironmentsTearDownStart, UnitTest) -GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsSetUpEnd, UnitTest) -GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsTearDownEnd, UnitTest) -GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo) -GTEST_REVERSE_REPEATER_METHOD_(OnTestCaseEnd, TestCase) -GTEST_REVERSE_REPEATER_METHOD_(OnTestProgramEnd, UnitTest) - -#undef GTEST_REPEATER_METHOD_ -#undef GTEST_REVERSE_REPEATER_METHOD_ - -void TestEventRepeater::OnTestIterationStart(const UnitTest& unit_test, - int iteration) { - if (forwarding_enabled_) { - for (size_t i = 0; i < listeners_.size(); i++) { - listeners_[i]->OnTestIterationStart(unit_test, iteration); - } - } -} - -void TestEventRepeater::OnTestIterationEnd(const UnitTest& unit_test, - int iteration) { - if (forwarding_enabled_) { - for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { - listeners_[i]->OnTestIterationEnd(unit_test, iteration); - } - } -} - -// End TestEventRepeater - -// This class generates an XML output file. -class XmlUnitTestResultPrinter : public EmptyTestEventListener { - public: - explicit XmlUnitTestResultPrinter(const char* output_file); - - virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); - - private: - // Is c a whitespace character that is normalized to a space character - // when it appears in an XML attribute value? - static bool IsNormalizableWhitespace(char c) { - return c == 0x9 || c == 0xA || c == 0xD; - } - - // May c appear in a well-formed XML document? - static bool IsValidXmlCharacter(char c) { - return IsNormalizableWhitespace(c) || c >= 0x20; - } - - // Returns an XML-escaped copy of the input string str. If - // is_attribute is true, the text is meant to appear as an attribute - // value, and normalizable whitespace is preserved by replacing it - // with character references. - static String EscapeXml(const char* str, bool is_attribute); - - // Returns the given string with all characters invalid in XML removed. - static String RemoveInvalidXmlCharacters(const char* str); - - // Convenience wrapper around EscapeXml when str is an attribute value. - static String EscapeXmlAttribute(const char* str) { - return EscapeXml(str, true); - } - - // Convenience wrapper around EscapeXml when str is not an attribute value. - static String EscapeXmlText(const char* str) { return EscapeXml(str, false); } - - // Streams an XML CDATA section, escaping invalid CDATA sequences as needed. - static void OutputXmlCDataSection(::std::ostream* stream, const char* data); - - // Streams an XML representation of a TestInfo object. - static void OutputXmlTestInfo(::std::ostream* stream, - const char* test_case_name, - const TestInfo& test_info); - - // Prints an XML representation of a TestCase object - static void PrintXmlTestCase(FILE* out, const TestCase& test_case); - - // Prints an XML summary of unit_test to output stream out. - static void PrintXmlUnitTest(FILE* out, const UnitTest& unit_test); - - // Produces a string representing the test properties in a result as space - // delimited XML attributes based on the property key="value" pairs. - // When the String is not empty, it includes a space at the beginning, - // to delimit this attribute from prior attributes. - static String TestPropertiesAsXmlAttributes(const TestResult& result); - - // The output file. - const String output_file_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(XmlUnitTestResultPrinter); -}; - -// Creates a new XmlUnitTestResultPrinter. -XmlUnitTestResultPrinter::XmlUnitTestResultPrinter(const char* output_file) - : output_file_(output_file) { - if (output_file_.c_str() == NULL || output_file_.empty()) { - fprintf(stderr, "XML output file may not be null\n"); - fflush(stderr); - exit(EXIT_FAILURE); - } -} - -// Called after the unit test ends. -void XmlUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, - int /*iteration*/) { - FILE* xmlout = NULL; - FilePath output_file(output_file_); - FilePath output_dir(output_file.RemoveFileName()); - - if (output_dir.CreateDirectoriesRecursively()) { - xmlout = posix::FOpen(output_file_.c_str(), "w"); - } - if (xmlout == NULL) { - // TODO(wan): report the reason of the failure. - // - // We don't do it for now as: - // - // 1. There is no urgent need for it. - // 2. It's a bit involved to make the errno variable thread-safe on - // all three operating systems (Linux, Windows, and Mac OS). - // 3. To interpret the meaning of errno in a thread-safe way, - // we need the strerror_r() function, which is not available on - // Windows. - fprintf(stderr, - "Unable to open file \"%s\"\n", - output_file_.c_str()); - fflush(stderr); - exit(EXIT_FAILURE); - } - PrintXmlUnitTest(xmlout, unit_test); - fclose(xmlout); -} - -// Returns an XML-escaped copy of the input string str. If is_attribute -// is true, the text is meant to appear as an attribute value, and -// normalizable whitespace is preserved by replacing it with character -// references. -// -// Invalid XML characters in str, if any, are stripped from the output. -// It is expected that most, if not all, of the text processed by this -// module will consist of ordinary English text. -// If this module is ever modified to produce version 1.1 XML output, -// most invalid characters can be retained using character references. -// TODO(wan): It might be nice to have a minimally invasive, human-readable -// escaping scheme for invalid characters, rather than dropping them. -String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_attribute) { - Message m; - - if (str != NULL) { - for (const char* src = str; *src; ++src) { - switch (*src) { - case '<': - m << "<"; - break; - case '>': - m << ">"; - break; - case '&': - m << "&"; - break; - case '\'': - if (is_attribute) - m << "'"; - else - m << '\''; - break; - case '"': - if (is_attribute) - m << """; - else - m << '"'; - break; - default: - if (IsValidXmlCharacter(*src)) { - if (is_attribute && IsNormalizableWhitespace(*src)) - m << String::Format("&#x%02X;", unsigned(*src)); - else - m << *src; - } - break; - } - } - } - - return m.GetString(); -} - -// Returns the given string with all characters invalid in XML removed. -// Currently invalid characters are dropped from the string. An -// alternative is to replace them with certain characters such as . or ?. -String XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(const char* str) { - char* const output = new char[strlen(str) + 1]; - char* appender = output; - for (char ch = *str; ch != '\0'; ch = *++str) - if (IsValidXmlCharacter(ch)) - *appender++ = ch; - *appender = '\0'; - - String ret_value(output); - delete[] output; - return ret_value; -} - -// The following routines generate an XML representation of a UnitTest -// object. -// -// This is how Google Test concepts map to the DTD: -// -// <-- corresponds to a UnitTest object -// <-- corresponds to a TestCase object -// <-- corresponds to a TestInfo object -// ... -// ... -// ... -// <-- individual assertion failures -// -// -// - -// Formats the given time in milliseconds as seconds. -std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { - ::std::stringstream ss; - ss << ms/1000.0; - return ss.str(); -} - -// Streams an XML CDATA section, escaping invalid CDATA sequences as needed. -void XmlUnitTestResultPrinter::OutputXmlCDataSection(::std::ostream* stream, - const char* data) { - const char* segment = data; - *stream << ""); - if (next_segment != NULL) { - stream->write( - segment, static_cast(next_segment - segment)); - *stream << "]]>]]>"); - } else { - *stream << segment; - break; - } - } - *stream << "]]>"; -} - -// Prints an XML representation of a TestInfo object. -// TODO(wan): There is also value in printing properties with the plain printer. -void XmlUnitTestResultPrinter::OutputXmlTestInfo(::std::ostream* stream, - const char* test_case_name, - const TestInfo& test_info) { - const TestResult& result = *test_info.result(); - *stream << " \n"; - *stream << " "; - const String message = RemoveInvalidXmlCharacters(String::Format( - "%s:%d\n%s", - part.file_name(), part.line_number(), - part.message()).c_str()); - OutputXmlCDataSection(stream, message.c_str()); - *stream << "\n"; - } - } - - if (failures == 0) - *stream << " />\n"; - else - *stream << " \n"; -} - -// Prints an XML representation of a TestCase object -void XmlUnitTestResultPrinter::PrintXmlTestCase(FILE* out, - const TestCase& test_case) { - fprintf(out, - " \n", - FormatTimeInMillisAsSeconds(test_case.elapsed_time()).c_str()); - for (int i = 0; i < test_case.total_test_count(); ++i) { - StrStream stream; - OutputXmlTestInfo(&stream, test_case.name(), *test_case.GetTestInfo(i)); - fprintf(out, "%s", StrStreamToString(&stream).c_str()); - } - fprintf(out, " \n"); -} - -// Prints an XML summary of unit_test to output stream out. -void XmlUnitTestResultPrinter::PrintXmlUnitTest(FILE* out, - const UnitTest& unit_test) { - fprintf(out, "\n"); - fprintf(out, - "\n"); - for (int i = 0; i < unit_test.total_test_case_count(); ++i) - PrintXmlTestCase(out, *unit_test.GetTestCase(i)); - fprintf(out, "\n"); -} - -// Produces a string representing the test properties in a result as space -// delimited XML attributes based on the property key="value" pairs. -String XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( - const TestResult& result) { - Message attributes; - for (int i = 0; i < result.test_property_count(); ++i) { - const TestProperty& property = result.GetTestProperty(i); - attributes << " " << property.key() << "=" - << "\"" << EscapeXmlAttribute(property.value()) << "\""; - } - return attributes.GetString(); -} - -// End XmlUnitTestResultPrinter - -// Class ScopedTrace - -// Pushes the given source file location and message onto a per-thread -// trace stack maintained by Google Test. -// L < UnitTest::mutex_ -ScopedTrace::ScopedTrace(const char* file, int line, const Message& message) { - TraceInfo trace; - trace.file = file; - trace.line = line; - trace.message = message.GetString(); - - UnitTest::GetInstance()->PushGTestTrace(trace); -} - -// Pops the info pushed by the c'tor. -// L < UnitTest::mutex_ -ScopedTrace::~ScopedTrace() { - UnitTest::GetInstance()->PopGTestTrace(); -} - - -// class OsStackTraceGetter - -// Returns the current OS stack trace as a String. Parameters: -// -// max_depth - the maximum number of stack frames to be included -// in the trace. -// skip_count - the number of top frames to be skipped; doesn't count -// against max_depth. -// -// L < mutex_ -// We use "L < mutex_" to denote that the function may acquire mutex_. -String OsStackTraceGetter::CurrentStackTrace(int, int) { - return String(""); -} - -// L < mutex_ -void OsStackTraceGetter::UponLeavingGTest() { -} - -const char* const -OsStackTraceGetter::kElidedFramesMarker = - "... " GTEST_NAME_ " internal frames ..."; - -} // namespace internal - -// class TestEventListeners - -TestEventListeners::TestEventListeners() - : repeater_(new internal::TestEventRepeater()), - default_result_printer_(NULL), - default_xml_generator_(NULL) { -} - -TestEventListeners::~TestEventListeners() { delete repeater_; } - -// Returns the standard listener responsible for the default console -// output. Can be removed from the listeners list to shut down default -// console output. Note that removing this object from the listener list -// with Release transfers its ownership to the user. -void TestEventListeners::Append(TestEventListener* listener) { - repeater_->Append(listener); -} - -// Removes the given event listener from the list and returns it. It then -// becomes the caller's responsibility to delete the listener. Returns -// NULL if the listener is not found in the list. -TestEventListener* TestEventListeners::Release(TestEventListener* listener) { - if (listener == default_result_printer_) - default_result_printer_ = NULL; - else if (listener == default_xml_generator_) - default_xml_generator_ = NULL; - return repeater_->Release(listener); -} - -// Returns repeater that broadcasts the TestEventListener events to all -// subscribers. -TestEventListener* TestEventListeners::repeater() { return repeater_; } - -// Sets the default_result_printer attribute to the provided listener. -// The listener is also added to the listener list and previous -// default_result_printer is removed from it and deleted. The listener can -// also be NULL in which case it will not be added to the list. Does -// nothing if the previous and the current listener objects are the same. -void TestEventListeners::SetDefaultResultPrinter(TestEventListener* listener) { - if (default_result_printer_ != listener) { - // It is an error to pass this method a listener that is already in the - // list. - delete Release(default_result_printer_); - default_result_printer_ = listener; - if (listener != NULL) - Append(listener); - } -} - -// Sets the default_xml_generator attribute to the provided listener. The -// listener is also added to the listener list and previous -// default_xml_generator is removed from it and deleted. The listener can -// also be NULL in which case it will not be added to the list. Does -// nothing if the previous and the current listener objects are the same. -void TestEventListeners::SetDefaultXmlGenerator(TestEventListener* listener) { - if (default_xml_generator_ != listener) { - // It is an error to pass this method a listener that is already in the - // list. - delete Release(default_xml_generator_); - default_xml_generator_ = listener; - if (listener != NULL) - Append(listener); - } -} - -// Controls whether events will be forwarded by the repeater to the -// listeners in the list. -bool TestEventListeners::EventForwardingEnabled() const { - return repeater_->forwarding_enabled(); -} - -void TestEventListeners::SuppressEventForwarding() { - repeater_->set_forwarding_enabled(false); -} - -// class UnitTest - -// Gets the singleton UnitTest object. The first time this method is -// called, a UnitTest object is constructed and returned. Consecutive -// calls will return the same object. -// -// We don't protect this under mutex_ as a user is not supposed to -// call this before main() starts, from which point on the return -// value will never change. -UnitTest * UnitTest::GetInstance() { - // When compiled with MSVC 7.1 in optimized mode, destroying the - // UnitTest object upon exiting the program messes up the exit code, - // causing successful tests to appear failed. We have to use a - // different implementation in this case to bypass the compiler bug. - // This implementation makes the compiler happy, at the cost of - // leaking the UnitTest object. - - // CodeGear C++Builder insists on a public destructor for the - // default implementation. Use this implementation to keep good OO - // design with private destructor. - -#if (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) - static UnitTest* const instance = new UnitTest; - return instance; -#else - static UnitTest instance; - return &instance; -#endif // (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) -} - -// Gets the number of successful test cases. -int UnitTest::successful_test_case_count() const { - return impl()->successful_test_case_count(); -} - -// Gets the number of failed test cases. -int UnitTest::failed_test_case_count() const { - return impl()->failed_test_case_count(); -} - -// Gets the number of all test cases. -int UnitTest::total_test_case_count() const { - return impl()->total_test_case_count(); -} - -// Gets the number of all test cases that contain at least one test -// that should run. -int UnitTest::test_case_to_run_count() const { - return impl()->test_case_to_run_count(); -} - -// Gets the number of successful tests. -int UnitTest::successful_test_count() const { - return impl()->successful_test_count(); -} - -// Gets the number of failed tests. -int UnitTest::failed_test_count() const { return impl()->failed_test_count(); } - -// Gets the number of disabled tests. -int UnitTest::disabled_test_count() const { - return impl()->disabled_test_count(); -} - -// Gets the number of all tests. -int UnitTest::total_test_count() const { return impl()->total_test_count(); } - -// Gets the number of tests that should run. -int UnitTest::test_to_run_count() const { return impl()->test_to_run_count(); } - -// Gets the elapsed time, in milliseconds. -internal::TimeInMillis UnitTest::elapsed_time() const { - return impl()->elapsed_time(); -} - -// Returns true iff the unit test passed (i.e. all test cases passed). -bool UnitTest::Passed() const { return impl()->Passed(); } - -// Returns true iff the unit test failed (i.e. some test case failed -// or something outside of all tests failed). -bool UnitTest::Failed() const { return impl()->Failed(); } - -// Gets the i-th test case among all the test cases. i can range from 0 to -// total_test_case_count() - 1. If i is not in that range, returns NULL. -const TestCase* UnitTest::GetTestCase(int i) const { - return impl()->GetTestCase(i); -} - -// Gets the i-th test case among all the test cases. i can range from 0 to -// total_test_case_count() - 1. If i is not in that range, returns NULL. -TestCase* UnitTest::GetMutableTestCase(int i) { - return impl()->GetMutableTestCase(i); -} - -// Returns the list of event listeners that can be used to track events -// inside Google Test. -TestEventListeners& UnitTest::listeners() { - return *impl()->listeners(); -} - -// Registers and returns a global test environment. When a test -// program is run, all global test environments will be set-up in the -// order they were registered. After all tests in the program have -// finished, all global test environments will be torn-down in the -// *reverse* order they were registered. -// -// The UnitTest object takes ownership of the given environment. -// -// We don't protect this under mutex_, as we only support calling it -// from the main thread. -Environment* UnitTest::AddEnvironment(Environment* env) { - if (env == NULL) { - return NULL; - } - - impl_->environments().push_back(env); - return env; -} - -#if GTEST_HAS_EXCEPTIONS -// A failed Google Test assertion will throw an exception of this type -// when exceptions are enabled. We derive it from std::runtime_error, -// which is for errors presumably detectable only at run time. Since -// std::runtime_error inherits from std::exception, many testing -// frameworks know how to extract and print the message inside it. -class GoogleTestFailureException : public ::std::runtime_error { - public: - explicit GoogleTestFailureException(const TestPartResult& failure) - : ::std::runtime_error(PrintTestPartResultToString(failure).c_str()) {} -}; -#endif - -// Adds a TestPartResult to the current TestResult object. All Google Test -// assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) eventually call -// this to report their results. The user code should use the -// assertion macros instead of calling this directly. -// L < mutex_ -void UnitTest::AddTestPartResult(TestPartResult::Type result_type, - const char* file_name, - int line_number, - const internal::String& message, - const internal::String& os_stack_trace) { - Message msg; - msg << message; - - internal::MutexLock lock(&mutex_); - if (impl_->gtest_trace_stack().size() > 0) { - msg << "\n" << GTEST_NAME_ << " trace:"; - - for (int i = static_cast(impl_->gtest_trace_stack().size()); - i > 0; --i) { - const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1]; - msg << "\n" << internal::FormatFileLocation(trace.file, trace.line) - << " " << trace.message; - } - } - - if (os_stack_trace.c_str() != NULL && !os_stack_trace.empty()) { - msg << internal::kStackTraceMarker << os_stack_trace; - } - - const TestPartResult result = - TestPartResult(result_type, file_name, line_number, - msg.GetString().c_str()); - impl_->GetTestPartResultReporterForCurrentThread()-> - ReportTestPartResult(result); - - if (result_type != TestPartResult::kSuccess) { - // gtest_break_on_failure takes precedence over - // gtest_throw_on_failure. This allows a user to set the latter - // in the code (perhaps in order to use Google Test assertions - // with another testing framework) and specify the former on the - // command line for debugging. - if (GTEST_FLAG(break_on_failure)) { -#if GTEST_OS_WINDOWS - // Using DebugBreak on Windows allows gtest to still break into a debugger - // when a failure happens and both the --gtest_break_on_failure and - // the --gtest_catch_exceptions flags are specified. - DebugBreak(); -#else - *static_cast(NULL) = 1; -#endif // GTEST_OS_WINDOWS - } else if (GTEST_FLAG(throw_on_failure)) { -#if GTEST_HAS_EXCEPTIONS - throw GoogleTestFailureException(result); -#else - // We cannot call abort() as it generates a pop-up in debug mode - // that cannot be suppressed in VC 7.1 or below. - exit(1); -#endif - } - } -} - -// Creates and adds a property to the current TestResult. If a property matching -// the supplied value already exists, updates its value instead. -void UnitTest::RecordPropertyForCurrentTest(const char* key, - const char* value) { - const TestProperty test_property(key, value); - impl_->current_test_result()->RecordProperty(test_property); -} - -// Runs all tests in this UnitTest object and prints the result. -// Returns 0 if successful, or 1 otherwise. -// -// We don't protect this under mutex_, as we only support calling it -// from the main thread. -int UnitTest::Run() { -#if GTEST_HAS_SEH - // Catch SEH-style exceptions. - - const bool in_death_test_child_process = - internal::GTEST_FLAG(internal_run_death_test).length() > 0; - - // Either the user wants Google Test to catch exceptions thrown by the - // tests or this is executing in the context of death test child - // process. In either case the user does not want to see pop-up dialogs - // about crashes - they are expected.. - if (GTEST_FLAG(catch_exceptions) || in_death_test_child_process) { -#if !GTEST_OS_WINDOWS_MOBILE - // SetErrorMode doesn't exist on CE. - SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOALIGNMENTFAULTEXCEPT | - SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX); -#endif // !GTEST_OS_WINDOWS_MOBILE - -#if (defined(_MSC_VER) || GTEST_OS_WINDOWS_MINGW) && !GTEST_OS_WINDOWS_MOBILE - // Death test children can be terminated with _abort(). On Windows, - // _abort() can show a dialog with a warning message. This forces the - // abort message to go to stderr instead. - _set_error_mode(_OUT_TO_STDERR); -#endif - -#if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE - // In the debug version, Visual Studio pops up a separate dialog - // offering a choice to debug the aborted program. We need to suppress - // this dialog or it will pop up for every EXPECT/ASSERT_DEATH statement - // executed. Google Test will notify the user of any unexpected - // failure via stderr. - // - // VC++ doesn't define _set_abort_behavior() prior to the version 8.0. - // Users of prior VC versions shall suffer the agony and pain of - // clicking through the countless debug dialogs. - // TODO(vladl@google.com): find a way to suppress the abort dialog() in the - // debug mode when compiled with VC 7.1 or lower. - if (!GTEST_FLAG(break_on_failure)) - _set_abort_behavior( - 0x0, // Clear the following flags: - _WRITE_ABORT_MSG | _CALL_REPORTFAULT); // pop-up window, core dump. -#endif - } - - __try { - return impl_->RunAllTests(); - } __except(internal::UnitTestOptions::GTestShouldProcessSEH( - GetExceptionCode())) { - printf("Exception thrown with code 0x%x.\nFAIL\n", GetExceptionCode()); - fflush(stdout); - return 1; - } - -#else // We are on a compiler or platform that doesn't support SEH. - - return impl_->RunAllTests(); -#endif // GTEST_HAS_SEH -} - -// Returns the working directory when the first TEST() or TEST_F() was -// executed. -const char* UnitTest::original_working_dir() const { - return impl_->original_working_dir_.c_str(); -} - -// Returns the TestCase object for the test that's currently running, -// or NULL if no test is running. -// L < mutex_ -const TestCase* UnitTest::current_test_case() const { - internal::MutexLock lock(&mutex_); - return impl_->current_test_case(); -} - -// Returns the TestInfo object for the test that's currently running, -// or NULL if no test is running. -// L < mutex_ -const TestInfo* UnitTest::current_test_info() const { - internal::MutexLock lock(&mutex_); - return impl_->current_test_info(); -} - -// Returns the random seed used at the start of the current test run. -int UnitTest::random_seed() const { return impl_->random_seed(); } - -#if GTEST_HAS_PARAM_TEST -// Returns ParameterizedTestCaseRegistry object used to keep track of -// value-parameterized tests and instantiate and register them. -// L < mutex_ -internal::ParameterizedTestCaseRegistry& - UnitTest::parameterized_test_registry() { - return impl_->parameterized_test_registry(); -} -#endif // GTEST_HAS_PARAM_TEST - -// Creates an empty UnitTest. -UnitTest::UnitTest() { - impl_ = new internal::UnitTestImpl(this); -} - -// Destructor of UnitTest. -UnitTest::~UnitTest() { - delete impl_; -} - -// Pushes a trace defined by SCOPED_TRACE() on to the per-thread -// Google Test trace stack. -// L < mutex_ -void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) { - internal::MutexLock lock(&mutex_); - impl_->gtest_trace_stack().push_back(trace); -} - -// Pops a trace from the per-thread Google Test trace stack. -// L < mutex_ -void UnitTest::PopGTestTrace() { - internal::MutexLock lock(&mutex_); - impl_->gtest_trace_stack().pop_back(); -} - -namespace internal { - -UnitTestImpl::UnitTestImpl(UnitTest* parent) - : parent_(parent), -#ifdef _MSC_VER -#pragma warning(push) // Saves the current warning state. -#pragma warning(disable:4355) // Temporarily disables warning 4355 - // (using this in initializer). - default_global_test_part_result_reporter_(this), - default_per_thread_test_part_result_reporter_(this), -#pragma warning(pop) // Restores the warning state again. -#else - default_global_test_part_result_reporter_(this), - default_per_thread_test_part_result_reporter_(this), -#endif // _MSC_VER - global_test_part_result_repoter_( - &default_global_test_part_result_reporter_), - per_thread_test_part_result_reporter_( - &default_per_thread_test_part_result_reporter_), -#if GTEST_HAS_PARAM_TEST - parameterized_test_registry_(), - parameterized_tests_registered_(false), -#endif // GTEST_HAS_PARAM_TEST - last_death_test_case_(-1), - current_test_case_(NULL), - current_test_info_(NULL), - ad_hoc_test_result_(), - os_stack_trace_getter_(NULL), - post_flag_parse_init_performed_(false), - random_seed_(0), // Will be overridden by the flag before first use. - random_(0), // Will be reseeded before first use. -#if GTEST_HAS_DEATH_TEST - elapsed_time_(0), - internal_run_death_test_flag_(NULL), - death_test_factory_(new DefaultDeathTestFactory) { -#else - elapsed_time_(0) { -#endif // GTEST_HAS_DEATH_TEST - listeners()->SetDefaultResultPrinter(new PrettyUnitTestResultPrinter); -} - -UnitTestImpl::~UnitTestImpl() { - // Deletes every TestCase. - ForEach(test_cases_, internal::Delete); - - // Deletes every Environment. - ForEach(environments_, internal::Delete); - - delete os_stack_trace_getter_; -} - -#if GTEST_HAS_DEATH_TEST -// Disables event forwarding if the control is currently in a death test -// subprocess. Must not be called before InitGoogleTest. -void UnitTestImpl::SuppressTestEventsIfInSubprocess() { - if (internal_run_death_test_flag_.get() != NULL) - listeners()->SuppressEventForwarding(); -} -#endif // GTEST_HAS_DEATH_TEST - -// Initializes event listeners performing XML output as specified by -// UnitTestOptions. Must not be called before InitGoogleTest. -void UnitTestImpl::ConfigureXmlOutput() { - const String& output_format = UnitTestOptions::GetOutputFormat(); - if (output_format == "xml") { - listeners()->SetDefaultXmlGenerator(new XmlUnitTestResultPrinter( - UnitTestOptions::GetAbsolutePathToOutputFile().c_str())); - } else if (output_format != "") { - printf("WARNING: unrecognized output format \"%s\" ignored.\n", - output_format.c_str()); - fflush(stdout); - } -} - -// Performs initialization dependent upon flag values obtained in -// ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to -// ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest -// this function is also called from RunAllTests. Since this function can be -// called more than once, it has to be idempotent. -void UnitTestImpl::PostFlagParsingInit() { - // Ensures that this function does not execute more than once. - if (!post_flag_parse_init_performed_) { - post_flag_parse_init_performed_ = true; - -#if GTEST_HAS_DEATH_TEST - InitDeathTestSubprocessControlInfo(); - SuppressTestEventsIfInSubprocess(); -#endif // GTEST_HAS_DEATH_TEST - - // Registers parameterized tests. This makes parameterized tests - // available to the UnitTest reflection API without running - // RUN_ALL_TESTS. - RegisterParameterizedTests(); - - // Configures listeners for XML output. This makes it possible for users - // to shut down the default XML output before invoking RUN_ALL_TESTS. - ConfigureXmlOutput(); - } -} - -// A predicate that checks the name of a TestCase against a known -// value. -// -// This is used for implementation of the UnitTest class only. We put -// it in the anonymous namespace to prevent polluting the outer -// namespace. -// -// TestCaseNameIs is copyable. -class TestCaseNameIs { - public: - // Constructor. - explicit TestCaseNameIs(const String& name) - : name_(name) {} - - // Returns true iff the name of test_case matches name_. - bool operator()(const TestCase* test_case) const { - return test_case != NULL && strcmp(test_case->name(), name_.c_str()) == 0; - } - - private: - String name_; -}; - -// Finds and returns a TestCase with the given name. If one doesn't -// exist, creates one and returns it. It's the CALLER'S -// RESPONSIBILITY to ensure that this function is only called WHEN THE -// TESTS ARE NOT SHUFFLED. -// -// Arguments: -// -// test_case_name: name of the test case -// set_up_tc: pointer to the function that sets up the test case -// tear_down_tc: pointer to the function that tears down the test case -TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, - const char* comment, - Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc) { - // Can we find a TestCase with the given name? - const std::vector::const_iterator test_case = - std::find_if(test_cases_.begin(), test_cases_.end(), - TestCaseNameIs(test_case_name)); - - if (test_case != test_cases_.end()) - return *test_case; - - // No. Let's create one. - TestCase* const new_test_case = - new TestCase(test_case_name, comment, set_up_tc, tear_down_tc); - - // Is this a death test case? - if (internal::UnitTestOptions::MatchesFilter(String(test_case_name), - kDeathTestCaseFilter)) { - // Yes. Inserts the test case after the last death test case - // defined so far. This only works when the test cases haven't - // been shuffled. Otherwise we may end up running a death test - // after a non-death test. - ++last_death_test_case_; - test_cases_.insert(test_cases_.begin() + last_death_test_case_, - new_test_case); - } else { - // No. Appends to the end of the list. - test_cases_.push_back(new_test_case); - } - - test_case_indices_.push_back(static_cast(test_case_indices_.size())); - return new_test_case; -} - -// Helpers for setting up / tearing down the given environment. They -// are for use in the ForEach() function. -static void SetUpEnvironment(Environment* env) { env->SetUp(); } -static void TearDownEnvironment(Environment* env) { env->TearDown(); } - -// Runs all tests in this UnitTest object, prints the result, and -// returns 0 if all tests are successful, or 1 otherwise. If any -// exception is thrown during a test on Windows, this test is -// considered to be failed, but the rest of the tests will still be -// run. (We disable exceptions on Linux and Mac OS X, so the issue -// doesn't apply there.) -// When parameterized tests are enabled, it expands and registers -// parameterized tests first in RegisterParameterizedTests(). -// All other functions called from RunAllTests() may safely assume that -// parameterized tests are ready to be counted and run. -int UnitTestImpl::RunAllTests() { - // Makes sure InitGoogleTest() was called. - if (!GTestIsInitialized()) { - printf("%s", - "\nThis test program did NOT call ::testing::InitGoogleTest " - "before calling RUN_ALL_TESTS(). Please fix it.\n"); - return 1; - } - - // Do not run any test if the --help flag was specified. - if (g_help_flag) - return 0; - - // Repeats the call to the post-flag parsing initialization in case the - // user didn't call InitGoogleTest. - PostFlagParsingInit(); - - // Even if sharding is not on, test runners may want to use the - // GTEST_SHARD_STATUS_FILE to query whether the test supports the sharding - // protocol. - internal::WriteToShardStatusFileIfNeeded(); - - // True iff we are in a subprocess for running a thread-safe-style - // death test. - bool in_subprocess_for_death_test = false; - -#if GTEST_HAS_DEATH_TEST - in_subprocess_for_death_test = (internal_run_death_test_flag_.get() != NULL); -#endif // GTEST_HAS_DEATH_TEST - - const bool should_shard = ShouldShard(kTestTotalShards, kTestShardIndex, - in_subprocess_for_death_test); - - // Compares the full test names with the filter to decide which - // tests to run. - const bool has_tests_to_run = FilterTests(should_shard - ? HONOR_SHARDING_PROTOCOL - : IGNORE_SHARDING_PROTOCOL) > 0; - - // Lists the tests and exits if the --gtest_list_tests flag was specified. - if (GTEST_FLAG(list_tests)) { - // This must be called *after* FilterTests() has been called. - ListTestsMatchingFilter(); - return 0; - } - - random_seed_ = GTEST_FLAG(shuffle) ? - GetRandomSeedFromFlag(GTEST_FLAG(random_seed)) : 0; - - // True iff at least one test has failed. - bool failed = false; - - TestEventListener* repeater = listeners()->repeater(); - - repeater->OnTestProgramStart(*parent_); - - // How many times to repeat the tests? We don't want to repeat them - // when we are inside the subprocess of a death test. - const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); - // Repeats forever if the repeat count is negative. - const bool forever = repeat < 0; - for (int i = 0; forever || i != repeat; i++) { - ClearResult(); - - const TimeInMillis start = GetTimeInMillis(); - - // Shuffles test cases and tests if requested. - if (has_tests_to_run && GTEST_FLAG(shuffle)) { - random()->Reseed(random_seed_); - // This should be done before calling OnTestIterationStart(), - // such that a test event listener can see the actual test order - // in the event. - ShuffleTests(); - } - - // Tells the unit test event listeners that the tests are about to start. - repeater->OnTestIterationStart(*parent_, i); - - // Runs each test case if there is at least one test to run. - if (has_tests_to_run) { - // Sets up all environments beforehand. - repeater->OnEnvironmentsSetUpStart(*parent_); - ForEach(environments_, SetUpEnvironment); - repeater->OnEnvironmentsSetUpEnd(*parent_); - - // Runs the tests only if there was no fatal failure during global - // set-up. - if (!Test::HasFatalFailure()) { - for (int test_index = 0; test_index < total_test_case_count(); - test_index++) { - GetMutableTestCase(test_index)->Run(); - } - } - - // Tears down all environments in reverse order afterwards. - repeater->OnEnvironmentsTearDownStart(*parent_); - std::for_each(environments_.rbegin(), environments_.rend(), - TearDownEnvironment); - repeater->OnEnvironmentsTearDownEnd(*parent_); - } - - elapsed_time_ = GetTimeInMillis() - start; - - // Tells the unit test event listener that the tests have just finished. - repeater->OnTestIterationEnd(*parent_, i); - - // Gets the result and clears it. - if (!Passed()) { - failed = true; - } - - // Restores the original test order after the iteration. This - // allows the user to quickly repro a failure that happens in the - // N-th iteration without repeating the first (N - 1) iterations. - // This is not enclosed in "if (GTEST_FLAG(shuffle)) { ... }", in - // case the user somehow changes the value of the flag somewhere - // (it's always safe to unshuffle the tests). - UnshuffleTests(); - - if (GTEST_FLAG(shuffle)) { - // Picks a new random seed for each iteration. - random_seed_ = GetNextRandomSeed(random_seed_); - } - } - - repeater->OnTestProgramEnd(*parent_); - - // Returns 0 if all tests passed, or 1 other wise. - return failed ? 1 : 0; -} - -// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file -// if the variable is present. If a file already exists at this location, this -// function will write over it. If the variable is present, but the file cannot -// be created, prints an error and exits. -void WriteToShardStatusFileIfNeeded() { - const char* const test_shard_file = posix::GetEnv(kTestShardStatusFile); - if (test_shard_file != NULL) { - FILE* const file = posix::FOpen(test_shard_file, "w"); - if (file == NULL) { - ColoredPrintf(COLOR_RED, - "Could not write to the test shard status file \"%s\" " - "specified by the %s environment variable.\n", - test_shard_file, kTestShardStatusFile); - fflush(stdout); - exit(EXIT_FAILURE); - } - fclose(file); - } -} - -// Checks whether sharding is enabled by examining the relevant -// environment variable values. If the variables are present, -// but inconsistent (i.e., shard_index >= total_shards), prints -// an error and exits. If in_subprocess_for_death_test, sharding is -// disabled because it must only be applied to the original test -// process. Otherwise, we could filter out death tests we intended to execute. -bool ShouldShard(const char* total_shards_env, - const char* shard_index_env, - bool in_subprocess_for_death_test) { - if (in_subprocess_for_death_test) { - return false; - } - - const Int32 total_shards = Int32FromEnvOrDie(total_shards_env, -1); - const Int32 shard_index = Int32FromEnvOrDie(shard_index_env, -1); - - if (total_shards == -1 && shard_index == -1) { - return false; - } else if (total_shards == -1 && shard_index != -1) { - const Message msg = Message() - << "Invalid environment variables: you have " - << kTestShardIndex << " = " << shard_index - << ", but have left " << kTestTotalShards << " unset.\n"; - ColoredPrintf(COLOR_RED, msg.GetString().c_str()); - fflush(stdout); - exit(EXIT_FAILURE); - } else if (total_shards != -1 && shard_index == -1) { - const Message msg = Message() - << "Invalid environment variables: you have " - << kTestTotalShards << " = " << total_shards - << ", but have left " << kTestShardIndex << " unset.\n"; - ColoredPrintf(COLOR_RED, msg.GetString().c_str()); - fflush(stdout); - exit(EXIT_FAILURE); - } else if (shard_index < 0 || shard_index >= total_shards) { - const Message msg = Message() - << "Invalid environment variables: we require 0 <= " - << kTestShardIndex << " < " << kTestTotalShards - << ", but you have " << kTestShardIndex << "=" << shard_index - << ", " << kTestTotalShards << "=" << total_shards << ".\n"; - ColoredPrintf(COLOR_RED, msg.GetString().c_str()); - fflush(stdout); - exit(EXIT_FAILURE); - } - - return total_shards > 1; -} - -// Parses the environment variable var as an Int32. If it is unset, -// returns default_val. If it is not an Int32, prints an error -// and aborts. -Int32 Int32FromEnvOrDie(const char* const var, Int32 default_val) { - const char* str_val = posix::GetEnv(var); - if (str_val == NULL) { - return default_val; - } - - Int32 result; - if (!ParseInt32(Message() << "The value of environment variable " << var, - str_val, &result)) { - exit(EXIT_FAILURE); - } - return result; -} - -// Given the total number of shards, the shard index, and the test id, -// returns true iff the test should be run on this shard. The test id is -// some arbitrary but unique non-negative integer assigned to each test -// method. Assumes that 0 <= shard_index < total_shards. -bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_id) { - return (test_id % total_shards) == shard_index; -} - -// Compares the name of each test with the user-specified filter to -// decide whether the test should be run, then records the result in -// each TestCase and TestInfo object. -// If shard_tests == true, further filters tests based on sharding -// variables in the environment - see -// http://code.google.com/p/googletest/wiki/GoogleTestAdvancedGuide. -// Returns the number of tests that should run. -int UnitTestImpl::FilterTests(ReactionToSharding shard_tests) { - const Int32 total_shards = shard_tests == HONOR_SHARDING_PROTOCOL ? - Int32FromEnvOrDie(kTestTotalShards, -1) : -1; - const Int32 shard_index = shard_tests == HONOR_SHARDING_PROTOCOL ? - Int32FromEnvOrDie(kTestShardIndex, -1) : -1; - - // num_runnable_tests are the number of tests that will - // run across all shards (i.e., match filter and are not disabled). - // num_selected_tests are the number of tests to be run on - // this shard. - int num_runnable_tests = 0; - int num_selected_tests = 0; - for (size_t i = 0; i < test_cases_.size(); i++) { - TestCase* const test_case = test_cases_[i]; - const String &test_case_name = test_case->name(); - test_case->set_should_run(false); - - for (size_t j = 0; j < test_case->test_info_list().size(); j++) { - TestInfo* const test_info = test_case->test_info_list()[j]; - const String test_name(test_info->name()); - // A test is disabled if test case name or test name matches - // kDisableTestFilter. - const bool is_disabled = - internal::UnitTestOptions::MatchesFilter(test_case_name, - kDisableTestFilter) || - internal::UnitTestOptions::MatchesFilter(test_name, - kDisableTestFilter); - test_info->impl()->set_is_disabled(is_disabled); - - const bool matches_filter = - internal::UnitTestOptions::FilterMatchesTest(test_case_name, - test_name); - test_info->impl()->set_matches_filter(matches_filter); - - const bool is_runnable = - (GTEST_FLAG(also_run_disabled_tests) || !is_disabled) && - matches_filter; - - const bool is_selected = is_runnable && - (shard_tests == IGNORE_SHARDING_PROTOCOL || - ShouldRunTestOnShard(total_shards, shard_index, - num_runnable_tests)); - - num_runnable_tests += is_runnable; - num_selected_tests += is_selected; - - test_info->impl()->set_should_run(is_selected); - test_case->set_should_run(test_case->should_run() || is_selected); - } - } - return num_selected_tests; -} - -// Prints the names of the tests matching the user-specified filter flag. -void UnitTestImpl::ListTestsMatchingFilter() { - for (size_t i = 0; i < test_cases_.size(); i++) { - const TestCase* const test_case = test_cases_[i]; - bool printed_test_case_name = false; - - for (size_t j = 0; j < test_case->test_info_list().size(); j++) { - const TestInfo* const test_info = - test_case->test_info_list()[j]; - if (test_info->matches_filter()) { - if (!printed_test_case_name) { - printed_test_case_name = true; - printf("%s.\n", test_case->name()); - } - printf(" %s\n", test_info->name()); - } - } - } - fflush(stdout); -} - -// Sets the OS stack trace getter. -// -// Does nothing if the input and the current OS stack trace getter are -// the same; otherwise, deletes the old getter and makes the input the -// current getter. -void UnitTestImpl::set_os_stack_trace_getter( - OsStackTraceGetterInterface* getter) { - if (os_stack_trace_getter_ != getter) { - delete os_stack_trace_getter_; - os_stack_trace_getter_ = getter; - } -} - -// Returns the current OS stack trace getter if it is not NULL; -// otherwise, creates an OsStackTraceGetter, makes it the current -// getter, and returns it. -OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { - if (os_stack_trace_getter_ == NULL) { - os_stack_trace_getter_ = new OsStackTraceGetter; - } - - return os_stack_trace_getter_; -} - -// Returns the TestResult for the test that's currently running, or -// the TestResult for the ad hoc test if no test is running. -TestResult* UnitTestImpl::current_test_result() { - return current_test_info_ ? - current_test_info_->impl()->result() : &ad_hoc_test_result_; -} - -// Shuffles all test cases, and the tests within each test case, -// making sure that death tests are still run first. -void UnitTestImpl::ShuffleTests() { - // Shuffles the death test cases. - ShuffleRange(random(), 0, last_death_test_case_ + 1, &test_case_indices_); - - // Shuffles the non-death test cases. - ShuffleRange(random(), last_death_test_case_ + 1, - static_cast(test_cases_.size()), &test_case_indices_); - - // Shuffles the tests inside each test case. - for (size_t i = 0; i < test_cases_.size(); i++) { - test_cases_[i]->ShuffleTests(random()); - } -} - -// Restores the test cases and tests to their order before the first shuffle. -void UnitTestImpl::UnshuffleTests() { - for (size_t i = 0; i < test_cases_.size(); i++) { - // Unshuffles the tests in each test case. - test_cases_[i]->UnshuffleTests(); - // Resets the index of each test case. - test_case_indices_[i] = static_cast(i); - } -} - -// TestInfoImpl constructor. The new instance assumes ownership of the test -// factory object. -TestInfoImpl::TestInfoImpl(TestInfo* parent, - const char* a_test_case_name, - const char* a_name, - const char* a_test_case_comment, - const char* a_comment, - TypeId a_fixture_class_id, - internal::TestFactoryBase* factory) : - parent_(parent), - test_case_name_(String(a_test_case_name)), - name_(String(a_name)), - test_case_comment_(String(a_test_case_comment)), - comment_(String(a_comment)), - fixture_class_id_(a_fixture_class_id), - should_run_(false), - is_disabled_(false), - matches_filter_(false), - factory_(factory) { -} - -// TestInfoImpl destructor. -TestInfoImpl::~TestInfoImpl() { - delete factory_; -} - -// Returns the current OS stack trace as a String. -// -// The maximum number of stack frames to be included is specified by -// the gtest_stack_trace_depth flag. The skip_count parameter -// specifies the number of top frames to be skipped, which doesn't -// count against the number of frames to be included. -// -// For example, if Foo() calls Bar(), which in turn calls -// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in -// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. -String GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, - int skip_count) { - // We pass skip_count + 1 to skip this wrapper function in addition - // to what the user really wants to skip. - return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1); -} - -// Used by the GTEST_HIDE_UNREACHABLE_CODE_ macro to suppress unreachable -// code warnings. -namespace { -class ClassUniqueToAlwaysTrue {}; -} - -bool IsTrue(bool condition) { return condition; } - -bool AlwaysTrue() { -#if GTEST_HAS_EXCEPTIONS - // This condition is always false so AlwaysTrue() never actually throws, - // but it makes the compiler think that it may throw. - if (IsTrue(false)) - throw ClassUniqueToAlwaysTrue(); -#endif // GTEST_HAS_EXCEPTIONS - return true; -} - -// If *pstr starts with the given prefix, modifies *pstr to be right -// past the prefix and returns true; otherwise leaves *pstr unchanged -// and returns false. None of pstr, *pstr, and prefix can be NULL. -bool SkipPrefix(const char* prefix, const char** pstr) { - const size_t prefix_len = strlen(prefix); - if (strncmp(*pstr, prefix, prefix_len) == 0) { - *pstr += prefix_len; - return true; - } - return false; -} - -// Parses a string as a command line flag. The string should have -// the format "--flag=value". When def_optional is true, the "=value" -// part can be omitted. -// -// Returns the value of the flag, or NULL if the parsing failed. -const char* ParseFlagValue(const char* str, - const char* flag, - bool def_optional) { - // str and flag must not be NULL. - if (str == NULL || flag == NULL) return NULL; - - // The flag must start with "--" followed by GTEST_FLAG_PREFIX_. - const String flag_str = String::Format("--%s%s", GTEST_FLAG_PREFIX_, flag); - const size_t flag_len = flag_str.length(); - if (strncmp(str, flag_str.c_str(), flag_len) != 0) return NULL; - - // Skips the flag name. - const char* flag_end = str + flag_len; - - // When def_optional is true, it's OK to not have a "=value" part. - if (def_optional && (flag_end[0] == '\0')) { - return flag_end; - } - - // If def_optional is true and there are more characters after the - // flag name, or if def_optional is false, there must be a '=' after - // the flag name. - if (flag_end[0] != '=') return NULL; - - // Returns the string after "=". - return flag_end + 1; -} - -// Parses a string for a bool flag, in the form of either -// "--flag=value" or "--flag". -// -// In the former case, the value is taken as true as long as it does -// not start with '0', 'f', or 'F'. -// -// In the latter case, the value is taken as true. -// -// On success, stores the value of the flag in *value, and returns -// true. On failure, returns false without changing *value. -bool ParseBoolFlag(const char* str, const char* flag, bool* value) { - // Gets the value of the flag as a string. - const char* const value_str = ParseFlagValue(str, flag, true); - - // Aborts if the parsing failed. - if (value_str == NULL) return false; - - // Converts the string value to a bool. - *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F'); - return true; -} - -// Parses a string for an Int32 flag, in the form of -// "--flag=value". -// -// On success, stores the value of the flag in *value, and returns -// true. On failure, returns false without changing *value. -bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { - // Gets the value of the flag as a string. - const char* const value_str = ParseFlagValue(str, flag, false); - - // Aborts if the parsing failed. - if (value_str == NULL) return false; - - // Sets *value to the value of the flag. - return ParseInt32(Message() << "The value of flag --" << flag, - value_str, value); -} - -// Parses a string for a string flag, in the form of -// "--flag=value". -// -// On success, stores the value of the flag in *value, and returns -// true. On failure, returns false without changing *value. -bool ParseStringFlag(const char* str, const char* flag, String* value) { - // Gets the value of the flag as a string. - const char* const value_str = ParseFlagValue(str, flag, false); - - // Aborts if the parsing failed. - if (value_str == NULL) return false; - - // Sets *value to the value of the flag. - *value = value_str; - return true; -} - -// Determines whether a string has a prefix that Google Test uses for its -// flags, i.e., starts with GTEST_FLAG_PREFIX_ or GTEST_FLAG_PREFIX_DASH_. -// If Google Test detects that a command line flag has its prefix but is not -// recognized, it will print its help message. Flags starting with -// GTEST_INTERNAL_PREFIX_ followed by "internal_" are considered Google Test -// internal flags and do not trigger the help message. -static bool HasGoogleTestFlagPrefix(const char* str) { - return (SkipPrefix("--", &str) || - SkipPrefix("-", &str) || - SkipPrefix("/", &str)) && - !SkipPrefix(GTEST_FLAG_PREFIX_ "internal_", &str) && - (SkipPrefix(GTEST_FLAG_PREFIX_, &str) || - SkipPrefix(GTEST_FLAG_PREFIX_DASH_, &str)); -} - -// Prints a string containing code-encoded text. The following escape -// sequences can be used in the string to control the text color: -// -// @@ prints a single '@' character. -// @R changes the color to red. -// @G changes the color to green. -// @Y changes the color to yellow. -// @D changes to the default terminal text color. -// -// TODO(wan@google.com): Write tests for this once we add stdout -// capturing to Google Test. -static void PrintColorEncoded(const char* str) { - GTestColor color = COLOR_DEFAULT; // The current color. - - // Conceptually, we split the string into segments divided by escape - // sequences. Then we print one segment at a time. At the end of - // each iteration, the str pointer advances to the beginning of the - // next segment. - for (;;) { - const char* p = strchr(str, '@'); - if (p == NULL) { - ColoredPrintf(color, "%s", str); - return; - } - - ColoredPrintf(color, "%s", String(str, p - str).c_str()); - - const char ch = p[1]; - str = p + 2; - if (ch == '@') { - ColoredPrintf(color, "@"); - } else if (ch == 'D') { - color = COLOR_DEFAULT; - } else if (ch == 'R') { - color = COLOR_RED; - } else if (ch == 'G') { - color = COLOR_GREEN; - } else if (ch == 'Y') { - color = COLOR_YELLOW; - } else { - --str; - } - } -} - -static const char kColorEncodedHelpMessage[] = -"This program contains tests written using " GTEST_NAME_ ". You can use the\n" -"following command line flags to control its behavior:\n" -"\n" -"Test Selection:\n" -" @G--" GTEST_FLAG_PREFIX_ "list_tests@D\n" -" List the names of all tests instead of running them. The name of\n" -" TEST(Foo, Bar) is \"Foo.Bar\".\n" -" @G--" GTEST_FLAG_PREFIX_ "filter=@YPOSTIVE_PATTERNS" - "[@G-@YNEGATIVE_PATTERNS]@D\n" -" Run only the tests whose name matches one of the positive patterns but\n" -" none of the negative patterns. '?' matches any single character; '*'\n" -" matches any substring; ':' separates two patterns.\n" -" @G--" GTEST_FLAG_PREFIX_ "also_run_disabled_tests@D\n" -" Run all disabled tests too.\n" -"\n" -"Test Execution:\n" -" @G--" GTEST_FLAG_PREFIX_ "repeat=@Y[COUNT]@D\n" -" Run the tests repeatedly; use a negative count to repeat forever.\n" -" @G--" GTEST_FLAG_PREFIX_ "shuffle@D\n" -" Randomize tests' orders on every iteration.\n" -" @G--" GTEST_FLAG_PREFIX_ "random_seed=@Y[NUMBER]@D\n" -" Random number seed to use for shuffling test orders (between 1 and\n" -" 99999, or 0 to use a seed based on the current time).\n" -"\n" -"Test Output:\n" -" @G--" GTEST_FLAG_PREFIX_ "color=@Y(@Gyes@Y|@Gno@Y|@Gauto@Y)@D\n" -" Enable/disable colored output. The default is @Gauto@D.\n" -" -@G-" GTEST_FLAG_PREFIX_ "print_time=0@D\n" -" Don't print the elapsed time of each test.\n" -" @G--" GTEST_FLAG_PREFIX_ "output=xml@Y[@G:@YDIRECTORY_PATH@G" - GTEST_PATH_SEP_ "@Y|@G:@YFILE_PATH]@D\n" -" Generate an XML report in the given directory or with the given file\n" -" name. @YFILE_PATH@D defaults to @Gtest_details.xml@D.\n" -"\n" -"Assertion Behavior:\n" -#if GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS -" @G--" GTEST_FLAG_PREFIX_ "death_test_style=@Y(@Gfast@Y|@Gthreadsafe@Y)@D\n" -" Set the default death test style.\n" -#endif // GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS -" @G--" GTEST_FLAG_PREFIX_ "break_on_failure@D\n" -" Turn assertion failures into debugger break-points.\n" -" @G--" GTEST_FLAG_PREFIX_ "throw_on_failure@D\n" -" Turn assertion failures into C++ exceptions.\n" -#if GTEST_OS_WINDOWS -" @G--" GTEST_FLAG_PREFIX_ "catch_exceptions@D\n" -" Suppress pop-ups caused by exceptions.\n" -#endif // GTEST_OS_WINDOWS -"\n" -"Except for @G--" GTEST_FLAG_PREFIX_ "list_tests@D, you can alternatively set " - "the corresponding\n" -"environment variable of a flag (all letters in upper-case). For example, to\n" -"disable colored text output, you can either specify @G--" GTEST_FLAG_PREFIX_ - "color=no@D or set\n" -"the @G" GTEST_FLAG_PREFIX_UPPER_ "COLOR@D environment variable to @Gno@D.\n" -"\n" -"For more information, please read the " GTEST_NAME_ " documentation at\n" -"@G" GTEST_PROJECT_URL_ "@D. If you find a bug in " GTEST_NAME_ "\n" -"(not one in your own code or tests), please report it to\n" -"@G<" GTEST_DEV_EMAIL_ ">@D.\n"; - -// Parses the command line for Google Test flags, without initializing -// other parts of Google Test. The type parameter CharType can be -// instantiated to either char or wchar_t. -template -void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { - for (int i = 1; i < *argc; i++) { - const String arg_string = StreamableToString(argv[i]); - const char* const arg = arg_string.c_str(); - - using internal::ParseBoolFlag; - using internal::ParseInt32Flag; - using internal::ParseStringFlag; - - // Do we see a Google Test flag? - if (ParseBoolFlag(arg, kAlsoRunDisabledTestsFlag, - >EST_FLAG(also_run_disabled_tests)) || - ParseBoolFlag(arg, kBreakOnFailureFlag, - >EST_FLAG(break_on_failure)) || - ParseBoolFlag(arg, kCatchExceptionsFlag, - >EST_FLAG(catch_exceptions)) || - ParseStringFlag(arg, kColorFlag, >EST_FLAG(color)) || - ParseStringFlag(arg, kDeathTestStyleFlag, - >EST_FLAG(death_test_style)) || - ParseBoolFlag(arg, kDeathTestUseFork, - >EST_FLAG(death_test_use_fork)) || - ParseStringFlag(arg, kFilterFlag, >EST_FLAG(filter)) || - ParseStringFlag(arg, kInternalRunDeathTestFlag, - >EST_FLAG(internal_run_death_test)) || - ParseBoolFlag(arg, kListTestsFlag, >EST_FLAG(list_tests)) || - ParseStringFlag(arg, kOutputFlag, >EST_FLAG(output)) || - ParseBoolFlag(arg, kPrintTimeFlag, >EST_FLAG(print_time)) || - ParseInt32Flag(arg, kRandomSeedFlag, >EST_FLAG(random_seed)) || - ParseInt32Flag(arg, kRepeatFlag, >EST_FLAG(repeat)) || - ParseBoolFlag(arg, kShuffleFlag, >EST_FLAG(shuffle)) || - ParseInt32Flag(arg, kStackTraceDepthFlag, - >EST_FLAG(stack_trace_depth)) || - ParseBoolFlag(arg, kThrowOnFailureFlag, >EST_FLAG(throw_on_failure)) - ) { - // Yes. Shift the remainder of the argv list left by one. Note - // that argv has (*argc + 1) elements, the last one always being - // NULL. The following loop moves the trailing NULL element as - // well. - for (int j = i; j != *argc; j++) { - argv[j] = argv[j + 1]; - } - - // Decrements the argument count. - (*argc)--; - - // We also need to decrement the iterator as we just removed - // an element. - i--; - } else if (arg_string == "--help" || arg_string == "-h" || - arg_string == "-?" || arg_string == "/?" || - HasGoogleTestFlagPrefix(arg)) { - // Both help flag and unrecognized Google Test flags (excluding - // internal ones) trigger help display. - g_help_flag = true; - } - } - - if (g_help_flag) { - // We print the help here instead of in RUN_ALL_TESTS(), as the - // latter may not be called at all if the user is using Google - // Test with another testing framework. - PrintColorEncoded(kColorEncodedHelpMessage); - } -} - -// Parses the command line for Google Test flags, without initializing -// other parts of Google Test. -void ParseGoogleTestFlagsOnly(int* argc, char** argv) { - ParseGoogleTestFlagsOnlyImpl(argc, argv); -} -void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { - ParseGoogleTestFlagsOnlyImpl(argc, argv); -} - -// The internal implementation of InitGoogleTest(). -// -// The type parameter CharType can be instantiated to either char or -// wchar_t. -template -void InitGoogleTestImpl(int* argc, CharType** argv) { - g_init_gtest_count++; - - // We don't want to run the initialization code twice. - if (g_init_gtest_count != 1) return; - - if (*argc <= 0) return; - - internal::g_executable_path = internal::StreamableToString(argv[0]); - -#if GTEST_HAS_DEATH_TEST - g_argvs.clear(); - for (int i = 0; i != *argc; i++) { - g_argvs.push_back(StreamableToString(argv[i])); - } -#endif // GTEST_HAS_DEATH_TEST - - ParseGoogleTestFlagsOnly(argc, argv); - GetUnitTestImpl()->PostFlagParsingInit(); -} - -} // namespace internal - -// Initializes Google Test. This must be called before calling -// RUN_ALL_TESTS(). In particular, it parses a command line for the -// flags that Google Test recognizes. Whenever a Google Test flag is -// seen, it is removed from argv, and *argc is decremented. -// -// No value is returned. Instead, the Google Test flag variables are -// updated. -// -// Calling the function for the second time has no user-visible effect. -void InitGoogleTest(int* argc, char** argv) { - internal::InitGoogleTestImpl(argc, argv); -} - -// This overloaded version can be used in Windows programs compiled in -// UNICODE mode. -void InitGoogleTest(int* argc, wchar_t** argv) { - internal::InitGoogleTestImpl(argc, argv); -} - -} // namespace testing -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan), vladl@google.com (Vlad Losev) -// -// This file implements death tests. - - -#if GTEST_HAS_DEATH_TEST - -#if GTEST_OS_MAC -#include -#endif // GTEST_OS_MAC - -#include -#include -#include -#include - -#if GTEST_OS_WINDOWS -#include -#else -#include -#include -#endif // GTEST_OS_WINDOWS - -#endif // GTEST_HAS_DEATH_TEST - - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#undef GTEST_IMPLEMENTATION_ - -namespace testing { - -// Constants. - -// The default death test style. -static const char kDefaultDeathTestStyle[] = "fast"; - -GTEST_DEFINE_string_( - death_test_style, - internal::StringFromGTestEnv("death_test_style", kDefaultDeathTestStyle), - "Indicates how to run a death test in a forked child process: " - "\"threadsafe\" (child process re-executes the test binary " - "from the beginning, running only the specific death test) or " - "\"fast\" (child process runs the death test immediately " - "after forking)."); - -GTEST_DEFINE_bool_( - death_test_use_fork, - internal::BoolFromGTestEnv("death_test_use_fork", false), - "Instructs to use fork()/_exit() instead of clone() in death tests. " - "Ignored and always uses fork() on POSIX systems where clone() is not " - "implemented. Useful when running under valgrind or similar tools if " - "those do not support clone(). Valgrind 3.3.1 will just fail if " - "it sees an unsupported combination of clone() flags. " - "It is not recommended to use this flag w/o valgrind though it will " - "work in 99% of the cases. Once valgrind is fixed, this flag will " - "most likely be removed."); - -namespace internal { -GTEST_DEFINE_string_( - internal_run_death_test, "", - "Indicates the file, line number, temporal index of " - "the single death test to run, and a file descriptor to " - "which a success code may be sent, all separated by " - "colons. This flag is specified if and only if the current " - "process is a sub-process launched for running a thread-safe " - "death test. FOR INTERNAL USE ONLY."); -} // namespace internal - -#if GTEST_HAS_DEATH_TEST - -// ExitedWithCode constructor. -ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { -} - -// ExitedWithCode function-call operator. -bool ExitedWithCode::operator()(int exit_status) const { -#if GTEST_OS_WINDOWS - return exit_status == exit_code_; -#else - return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_; -#endif // GTEST_OS_WINDOWS -} - -#if !GTEST_OS_WINDOWS -// KilledBySignal constructor. -KilledBySignal::KilledBySignal(int signum) : signum_(signum) { -} - -// KilledBySignal function-call operator. -bool KilledBySignal::operator()(int exit_status) const { - return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; -} -#endif // !GTEST_OS_WINDOWS - -namespace internal { - -// Utilities needed for death tests. - -// Generates a textual description of a given exit code, in the format -// specified by wait(2). -static String ExitSummary(int exit_code) { - Message m; -#if GTEST_OS_WINDOWS - m << "Exited with exit status " << exit_code; -#else - if (WIFEXITED(exit_code)) { - m << "Exited with exit status " << WEXITSTATUS(exit_code); - } else if (WIFSIGNALED(exit_code)) { - m << "Terminated by signal " << WTERMSIG(exit_code); - } -#ifdef WCOREDUMP - if (WCOREDUMP(exit_code)) { - m << " (core dumped)"; - } -#endif -#endif // GTEST_OS_WINDOWS - return m.GetString(); -} - -// Returns true if exit_status describes a process that was terminated -// by a signal, or exited normally with a nonzero exit code. -bool ExitedUnsuccessfully(int exit_status) { - return !ExitedWithCode(0)(exit_status); -} - -#if !GTEST_OS_WINDOWS -// Generates a textual failure message when a death test finds more than -// one thread running, or cannot determine the number of threads, prior -// to executing the given statement. It is the responsibility of the -// caller not to pass a thread_count of 1. -static String DeathTestThreadWarning(size_t thread_count) { - Message msg; - msg << "Death tests use fork(), which is unsafe particularly" - << " in a threaded context. For this test, " << GTEST_NAME_ << " "; - if (thread_count == 0) - msg << "couldn't detect the number of threads."; - else - msg << "detected " << thread_count << " threads."; - return msg.GetString(); -} -#endif // !GTEST_OS_WINDOWS - -// Flag characters for reporting a death test that did not die. -static const char kDeathTestLived = 'L'; -static const char kDeathTestReturned = 'R'; -static const char kDeathTestInternalError = 'I'; - -// An enumeration describing all of the possible ways that a death test -// can conclude. DIED means that the process died while executing the -// test code; LIVED means that process lived beyond the end of the test -// code; and RETURNED means that the test statement attempted a "return," -// which is not allowed. IN_PROGRESS means the test has not yet -// concluded. -enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED }; - -// Routine for aborting the program which is safe to call from an -// exec-style death test child process, in which case the error -// message is propagated back to the parent process. Otherwise, the -// message is simply printed to stderr. In either case, the program -// then exits with status 1. -void DeathTestAbort(const String& message) { - // On a POSIX system, this function may be called from a threadsafe-style - // death test child process, which operates on a very small stack. Use - // the heap for any additional non-minuscule memory requirements. - const InternalRunDeathTestFlag* const flag = - GetUnitTestImpl()->internal_run_death_test_flag(); - if (flag != NULL) { - FILE* parent = posix::FDOpen(flag->write_fd(), "w"); - fputc(kDeathTestInternalError, parent); - fprintf(parent, "%s", message.c_str()); - fflush(parent); - _exit(1); - } else { - fprintf(stderr, "%s", message.c_str()); - fflush(stderr); - abort(); - } -} - -// A replacement for CHECK that calls DeathTestAbort if the assertion -// fails. -#define GTEST_DEATH_TEST_CHECK_(expression) \ - do { \ - if (!::testing::internal::IsTrue(expression)) { \ - DeathTestAbort(::testing::internal::String::Format( \ - "CHECK failed: File %s, line %d: %s", \ - __FILE__, __LINE__, #expression)); \ - } \ - } while (::testing::internal::AlwaysFalse()) - -// This macro is similar to GTEST_DEATH_TEST_CHECK_, but it is meant for -// evaluating any system call that fulfills two conditions: it must return -// -1 on failure, and set errno to EINTR when it is interrupted and -// should be tried again. The macro expands to a loop that repeatedly -// evaluates the expression as long as it evaluates to -1 and sets -// errno to EINTR. If the expression evaluates to -1 but errno is -// something other than EINTR, DeathTestAbort is called. -#define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \ - do { \ - int gtest_retval; \ - do { \ - gtest_retval = (expression); \ - } while (gtest_retval == -1 && errno == EINTR); \ - if (gtest_retval == -1) { \ - DeathTestAbort(::testing::internal::String::Format( \ - "CHECK failed: File %s, line %d: %s != -1", \ - __FILE__, __LINE__, #expression)); \ - } \ - } while (::testing::internal::AlwaysFalse()) - -// Returns the message describing the last system error in errno. -String GetLastErrnoDescription() { - return String(errno == 0 ? "" : posix::StrError(errno)); -} - -// This is called from a death test parent process to read a failure -// message from the death test child process and log it with the FATAL -// severity. On Windows, the message is read from a pipe handle. On other -// platforms, it is read from a file descriptor. -static void FailFromInternalError(int fd) { - Message error; - char buffer[256]; - int num_read; - - do { - while ((num_read = posix::Read(fd, buffer, 255)) > 0) { - buffer[num_read] = '\0'; - error << buffer; - } - } while (num_read == -1 && errno == EINTR); - - if (num_read == 0) { - GTEST_LOG_(FATAL) << error.GetString(); - } else { - const int last_error = errno; - GTEST_LOG_(FATAL) << "Error while reading death test internal: " - << GetLastErrnoDescription() << " [" << last_error << "]"; - } -} - -// Death test constructor. Increments the running death test count -// for the current test. -DeathTest::DeathTest() { - TestInfo* const info = GetUnitTestImpl()->current_test_info(); - if (info == NULL) { - DeathTestAbort("Cannot run a death test outside of a TEST or " - "TEST_F construct"); - } -} - -// Creates and returns a death test by dispatching to the current -// death test factory. -bool DeathTest::Create(const char* statement, const RE* regex, - const char* file, int line, DeathTest** test) { - return GetUnitTestImpl()->death_test_factory()->Create( - statement, regex, file, line, test); -} - -const char* DeathTest::LastMessage() { - return last_death_test_message_.c_str(); -} - -void DeathTest::set_last_death_test_message(const String& message) { - last_death_test_message_ = message; -} - -String DeathTest::last_death_test_message_; - -// Provides cross platform implementation for some death functionality. -class DeathTestImpl : public DeathTest { - protected: - DeathTestImpl(const char* a_statement, const RE* a_regex) - : statement_(a_statement), - regex_(a_regex), - spawned_(false), - status_(-1), - outcome_(IN_PROGRESS), - read_fd_(-1), - write_fd_(-1) {} - - // read_fd_ is expected to be closed and cleared by a derived class. - ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); } - - void Abort(AbortReason reason); - virtual bool Passed(bool status_ok); - - const char* statement() const { return statement_; } - const RE* regex() const { return regex_; } - bool spawned() const { return spawned_; } - void set_spawned(bool is_spawned) { spawned_ = is_spawned; } - int status() const { return status_; } - void set_status(int a_status) { status_ = a_status; } - DeathTestOutcome outcome() const { return outcome_; } - void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outcome; } - int read_fd() const { return read_fd_; } - void set_read_fd(int fd) { read_fd_ = fd; } - int write_fd() const { return write_fd_; } - void set_write_fd(int fd) { write_fd_ = fd; } - - // Called in the parent process only. Reads the result code of the death - // test child process via a pipe, interprets it to set the outcome_ - // member, and closes read_fd_. Outputs diagnostics and terminates in - // case of unexpected codes. - void ReadAndInterpretStatusByte(); - - private: - // The textual content of the code this object is testing. This class - // doesn't own this string and should not attempt to delete it. - const char* const statement_; - // The regular expression which test output must match. DeathTestImpl - // doesn't own this object and should not attempt to delete it. - const RE* const regex_; - // True if the death test child process has been successfully spawned. - bool spawned_; - // The exit status of the child process. - int status_; - // How the death test concluded. - DeathTestOutcome outcome_; - // Descriptor to the read end of the pipe to the child process. It is - // always -1 in the child process. The child keeps its write end of the - // pipe in write_fd_. - int read_fd_; - // Descriptor to the child's write end of the pipe to the parent process. - // It is always -1 in the parent process. The parent keeps its end of the - // pipe in read_fd_. - int write_fd_; -}; - -// Called in the parent process only. Reads the result code of the death -// test child process via a pipe, interprets it to set the outcome_ -// member, and closes read_fd_. Outputs diagnostics and terminates in -// case of unexpected codes. -void DeathTestImpl::ReadAndInterpretStatusByte() { - char flag; - int bytes_read; - - // The read() here blocks until data is available (signifying the - // failure of the death test) or until the pipe is closed (signifying - // its success), so it's okay to call this in the parent before - // the child process has exited. - do { - bytes_read = posix::Read(read_fd(), &flag, 1); - } while (bytes_read == -1 && errno == EINTR); - - if (bytes_read == 0) { - set_outcome(DIED); - } else if (bytes_read == 1) { - switch (flag) { - case kDeathTestReturned: - set_outcome(RETURNED); - break; - case kDeathTestLived: - set_outcome(LIVED); - break; - case kDeathTestInternalError: - FailFromInternalError(read_fd()); // Does not return. - break; - default: - GTEST_LOG_(FATAL) << "Death test child process reported " - << "unexpected status byte (" - << static_cast(flag) << ")"; - } - } else { - GTEST_LOG_(FATAL) << "Read from death test child process failed: " - << GetLastErrnoDescription(); - } - GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd())); - set_read_fd(-1); -} - -// Signals that the death test code which should have exited, didn't. -// Should be called only in a death test child process. -// Writes a status byte to the child's status file descriptor, then -// calls _exit(1). -void DeathTestImpl::Abort(AbortReason reason) { - // The parent process considers the death test to be a failure if - // it finds any data in our pipe. So, here we write a single flag byte - // to the pipe, then exit. - const char status_ch = - reason == TEST_DID_NOT_DIE ? kDeathTestLived : kDeathTestReturned; - GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1)); - GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(write_fd())); - _exit(1); // Exits w/o any normal exit hooks (we were supposed to crash) -} - -// Assesses the success or failure of a death test, using both private -// members which have previously been set, and one argument: -// -// Private data members: -// outcome: An enumeration describing how the death test -// concluded: DIED, LIVED, or RETURNED. The death test fails -// in the latter two cases. -// status: The exit status of the child process. On *nix, it is in the -// in the format specified by wait(2). On Windows, this is the -// value supplied to the ExitProcess() API or a numeric code -// of the exception that terminated the program. -// regex: A regular expression object to be applied to -// the test's captured standard error output; the death test -// fails if it does not match. -// -// Argument: -// status_ok: true if exit_status is acceptable in the context of -// this particular death test, which fails if it is false -// -// Returns true iff all of the above conditions are met. Otherwise, the -// first failing condition, in the order given above, is the one that is -// reported. Also sets the last death test message string. -bool DeathTestImpl::Passed(bool status_ok) { - if (!spawned()) - return false; - - const String error_message = GetCapturedStderr(); - - bool success = false; - Message buffer; - - buffer << "Death test: " << statement() << "\n"; - switch (outcome()) { - case LIVED: - buffer << " Result: failed to die.\n" - << " Error msg: " << error_message; - break; - case RETURNED: - buffer << " Result: illegal return in test statement.\n" - << " Error msg: " << error_message; - break; - case DIED: - if (status_ok) { - const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); - if (matched) { - success = true; - } else { - buffer << " Result: died but not with expected error.\n" - << " Expected: " << regex()->pattern() << "\n" - << "Actual msg: " << error_message; - } - } else { - buffer << " Result: died but not with expected exit code:\n" - << " " << ExitSummary(status()) << "\n"; - } - break; - case IN_PROGRESS: - default: - GTEST_LOG_(FATAL) - << "DeathTest::Passed somehow called before conclusion of test"; - } - - DeathTest::set_last_death_test_message(buffer.GetString()); - return success; -} - -#if GTEST_OS_WINDOWS -// WindowsDeathTest implements death tests on Windows. Due to the -// specifics of starting new processes on Windows, death tests there are -// always threadsafe, and Google Test considers the -// --gtest_death_test_style=fast setting to be equivalent to -// --gtest_death_test_style=threadsafe there. -// -// A few implementation notes: Like the Linux version, the Windows -// implementation uses pipes for child-to-parent communication. But due to -// the specifics of pipes on Windows, some extra steps are required: -// -// 1. The parent creates a communication pipe and stores handles to both -// ends of it. -// 2. The parent starts the child and provides it with the information -// necessary to acquire the handle to the write end of the pipe. -// 3. The child acquires the write end of the pipe and signals the parent -// using a Windows event. -// 4. Now the parent can release the write end of the pipe on its side. If -// this is done before step 3, the object's reference count goes down to -// 0 and it is destroyed, preventing the child from acquiring it. The -// parent now has to release it, or read operations on the read end of -// the pipe will not return when the child terminates. -// 5. The parent reads child's output through the pipe (outcome code and -// any possible error messages) from the pipe, and its stderr and then -// determines whether to fail the test. -// -// Note: to distinguish Win32 API calls from the local method and function -// calls, the former are explicitly resolved in the global namespace. -// -class WindowsDeathTest : public DeathTestImpl { - public: - WindowsDeathTest(const char* statement, - const RE* regex, - const char* file, - int line) - : DeathTestImpl(statement, regex), file_(file), line_(line) {} - - // All of these virtual functions are inherited from DeathTest. - virtual int Wait(); - virtual TestRole AssumeRole(); - - private: - // The name of the file in which the death test is located. - const char* const file_; - // The line number on which the death test is located. - const int line_; - // Handle to the write end of the pipe to the child process. - AutoHandle write_handle_; - // Child process handle. - AutoHandle child_handle_; - // Event the child process uses to signal the parent that it has - // acquired the handle to the write end of the pipe. After seeing this - // event the parent can release its own handles to make sure its - // ReadFile() calls return when the child terminates. - AutoHandle event_handle_; -}; - -// Waits for the child in a death test to exit, returning its exit -// status, or 0 if no child process exists. As a side effect, sets the -// outcome data member. -int WindowsDeathTest::Wait() { - if (!spawned()) - return 0; - - // Wait until the child either signals that it has acquired the write end - // of the pipe or it dies. - const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() }; - switch (::WaitForMultipleObjects(2, - wait_handles, - FALSE, // Waits for any of the handles. - INFINITE)) { - case WAIT_OBJECT_0: - case WAIT_OBJECT_0 + 1: - break; - default: - GTEST_DEATH_TEST_CHECK_(false); // Should not get here. - } - - // The child has acquired the write end of the pipe or exited. - // We release the handle on our side and continue. - write_handle_.Reset(); - event_handle_.Reset(); - - ReadAndInterpretStatusByte(); - - // Waits for the child process to exit if it haven't already. This - // returns immediately if the child has already exited, regardless of - // whether previous calls to WaitForMultipleObjects synchronized on this - // handle or not. - GTEST_DEATH_TEST_CHECK_( - WAIT_OBJECT_0 == ::WaitForSingleObject(child_handle_.Get(), - INFINITE)); - DWORD status; - GTEST_DEATH_TEST_CHECK_(::GetExitCodeProcess(child_handle_.Get(), &status) - != FALSE); - child_handle_.Reset(); - set_status(static_cast(status)); - return this->status(); -} - -// The AssumeRole process for a Windows death test. It creates a child -// process with the same executable as the current process to run the -// death test. The child process is given the --gtest_filter and -// --gtest_internal_run_death_test flags such that it knows to run the -// current death test only. -DeathTest::TestRole WindowsDeathTest::AssumeRole() { - const UnitTestImpl* const impl = GetUnitTestImpl(); - const InternalRunDeathTestFlag* const flag = - impl->internal_run_death_test_flag(); - const TestInfo* const info = impl->current_test_info(); - const int death_test_index = info->result()->death_test_count(); - - if (flag != NULL) { - // ParseInternalRunDeathTestFlag() has performed all the necessary - // processing. - set_write_fd(flag->write_fd()); - return EXECUTE_TEST; - } - - // WindowsDeathTest uses an anonymous pipe to communicate results of - // a death test. - SECURITY_ATTRIBUTES handles_are_inheritable = { - sizeof(SECURITY_ATTRIBUTES), NULL, TRUE }; - HANDLE read_handle, write_handle; - GTEST_DEATH_TEST_CHECK_( - ::CreatePipe(&read_handle, &write_handle, &handles_are_inheritable, - 0) // Default buffer size. - != FALSE); - set_read_fd(::_open_osfhandle(reinterpret_cast(read_handle), - O_RDONLY)); - write_handle_.Reset(write_handle); - event_handle_.Reset(::CreateEvent( - &handles_are_inheritable, - TRUE, // The event will automatically reset to non-signaled state. - FALSE, // The initial state is non-signalled. - NULL)); // The even is unnamed. - GTEST_DEATH_TEST_CHECK_(event_handle_.Get() != NULL); - const String filter_flag = String::Format("--%s%s=%s.%s", - GTEST_FLAG_PREFIX_, kFilterFlag, - info->test_case_name(), - info->name()); - const String internal_flag = String::Format( - "--%s%s=%s|%d|%d|%u|%Iu|%Iu", - GTEST_FLAG_PREFIX_, - kInternalRunDeathTestFlag, - file_, line_, - death_test_index, - static_cast(::GetCurrentProcessId()), - // size_t has the same with as pointers on both 32-bit and 64-bit - // Windows platforms. - // See http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx. - reinterpret_cast(write_handle), - reinterpret_cast(event_handle_.Get())); - - char executable_path[_MAX_PATH + 1]; // NOLINT - GTEST_DEATH_TEST_CHECK_( - _MAX_PATH + 1 != ::GetModuleFileNameA(NULL, - executable_path, - _MAX_PATH)); - - String command_line = String::Format("%s %s \"%s\"", - ::GetCommandLineA(), - filter_flag.c_str(), - internal_flag.c_str()); - - DeathTest::set_last_death_test_message(""); - - CaptureStderr(); - // Flush the log buffers since the log streams are shared with the child. - FlushInfoLog(); - - // The child process will share the standard handles with the parent. - STARTUPINFOA startup_info; - memset(&startup_info, 0, sizeof(STARTUPINFO)); - startup_info.dwFlags = STARTF_USESTDHANDLES; - startup_info.hStdInput = ::GetStdHandle(STD_INPUT_HANDLE); - startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); - startup_info.hStdError = ::GetStdHandle(STD_ERROR_HANDLE); - - PROCESS_INFORMATION process_info; - GTEST_DEATH_TEST_CHECK_(::CreateProcessA( - executable_path, - const_cast(command_line.c_str()), - NULL, // Retuned process handle is not inheritable. - NULL, // Retuned thread handle is not inheritable. - TRUE, // Child inherits all inheritable handles (for write_handle_). - 0x0, // Default creation flags. - NULL, // Inherit the parent's environment. - UnitTest::GetInstance()->original_working_dir(), - &startup_info, - &process_info) != FALSE); - child_handle_.Reset(process_info.hProcess); - ::CloseHandle(process_info.hThread); - set_spawned(true); - return OVERSEE_TEST; -} -#else // We are not on Windows. - -// ForkingDeathTest provides implementations for most of the abstract -// methods of the DeathTest interface. Only the AssumeRole method is -// left undefined. -class ForkingDeathTest : public DeathTestImpl { - public: - ForkingDeathTest(const char* statement, const RE* regex); - - // All of these virtual functions are inherited from DeathTest. - virtual int Wait(); - - protected: - void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } - - private: - // PID of child process during death test; 0 in the child process itself. - pid_t child_pid_; -}; - -// Constructs a ForkingDeathTest. -ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex) - : DeathTestImpl(a_statement, a_regex), - child_pid_(-1) {} - -// Waits for the child in a death test to exit, returning its exit -// status, or 0 if no child process exists. As a side effect, sets the -// outcome data member. -int ForkingDeathTest::Wait() { - if (!spawned()) - return 0; - - ReadAndInterpretStatusByte(); - - int status_value; - GTEST_DEATH_TEST_CHECK_SYSCALL_(waitpid(child_pid_, &status_value, 0)); - set_status(status_value); - return status_value; -} - -// A concrete death test class that forks, then immediately runs the test -// in the child process. -class NoExecDeathTest : public ForkingDeathTest { - public: - NoExecDeathTest(const char* a_statement, const RE* a_regex) : - ForkingDeathTest(a_statement, a_regex) { } - virtual TestRole AssumeRole(); -}; - -// The AssumeRole process for a fork-and-run death test. It implements a -// straightforward fork, with a simple pipe to transmit the status byte. -DeathTest::TestRole NoExecDeathTest::AssumeRole() { - const size_t thread_count = GetThreadCount(); - if (thread_count != 1) { - GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count); - } - - int pipe_fd[2]; - GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); - - DeathTest::set_last_death_test_message(""); - CaptureStderr(); - // When we fork the process below, the log file buffers are copied, but the - // file descriptors are shared. We flush all log files here so that closing - // the file descriptors in the child process doesn't throw off the - // synchronization between descriptors and buffers in the parent process. - // This is as close to the fork as possible to avoid a race condition in case - // there are multiple threads running before the death test, and another - // thread writes to the log file. - FlushInfoLog(); - - const pid_t child_pid = fork(); - GTEST_DEATH_TEST_CHECK_(child_pid != -1); - set_child_pid(child_pid); - if (child_pid == 0) { - GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0])); - set_write_fd(pipe_fd[1]); - // Redirects all logging to stderr in the child process to prevent - // concurrent writes to the log files. We capture stderr in the parent - // process and append the child process' output to a log. - LogToStderr(); - // Event forwarding to the listeners of event listener API mush be shut - // down in death test subprocesses. - GetUnitTestImpl()->listeners()->SuppressEventForwarding(); - return EXECUTE_TEST; - } else { - GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); - set_read_fd(pipe_fd[0]); - set_spawned(true); - return OVERSEE_TEST; - } -} - -// A concrete death test class that forks and re-executes the main -// program from the beginning, with command-line flags set that cause -// only this specific death test to be run. -class ExecDeathTest : public ForkingDeathTest { - public: - ExecDeathTest(const char* a_statement, const RE* a_regex, - const char* file, int line) : - ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { } - virtual TestRole AssumeRole(); - private: - // The name of the file in which the death test is located. - const char* const file_; - // The line number on which the death test is located. - const int line_; -}; - -// Utility class for accumulating command-line arguments. -class Arguments { - public: - Arguments() { - args_.push_back(NULL); - } - - ~Arguments() { - for (std::vector::iterator i = args_.begin(); i != args_.end(); - ++i) { - free(*i); - } - } - void AddArgument(const char* argument) { - args_.insert(args_.end() - 1, posix::StrDup(argument)); - } - - template - void AddArguments(const ::std::vector& arguments) { - for (typename ::std::vector::const_iterator i = arguments.begin(); - i != arguments.end(); - ++i) { - args_.insert(args_.end() - 1, posix::StrDup(i->c_str())); - } - } - char* const* Argv() { - return &args_[0]; - } - private: - std::vector args_; -}; - -// A struct that encompasses the arguments to the child process of a -// threadsafe-style death test process. -struct ExecDeathTestArgs { - char* const* argv; // Command-line arguments for the child's call to exec - int close_fd; // File descriptor to close; the read end of a pipe -}; - -#if GTEST_OS_MAC -inline char** GetEnviron() { - // When Google Test is built as a framework on MacOS X, the environ variable - // is unavailable. Apple's documentation (man environ) recommends using - // _NSGetEnviron() instead. - return *_NSGetEnviron(); -} -#else -// Some POSIX platforms expect you to declare environ. extern "C" makes -// it reside in the global namespace. -extern "C" char** environ; -inline char** GetEnviron() { return environ; } -#endif // GTEST_OS_MAC - -// The main function for a threadsafe-style death test child process. -// This function is called in a clone()-ed process and thus must avoid -// any potentially unsafe operations like malloc or libc functions. -static int ExecDeathTestChildMain(void* child_arg) { - ExecDeathTestArgs* const args = static_cast(child_arg); - GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd)); - - // We need to execute the test program in the same environment where - // it was originally invoked. Therefore we change to the original - // working directory first. - const char* const original_dir = - UnitTest::GetInstance()->original_working_dir(); - // We can safely call chdir() as it's a direct system call. - if (chdir(original_dir) != 0) { - DeathTestAbort(String::Format("chdir(\"%s\") failed: %s", - original_dir, - GetLastErrnoDescription().c_str())); - return EXIT_FAILURE; - } - - // We can safely call execve() as it's a direct system call. We - // cannot use execvp() as it's a libc function and thus potentially - // unsafe. Since execve() doesn't search the PATH, the user must - // invoke the test program via a valid path that contains at least - // one path separator. - execve(args->argv[0], args->argv, GetEnviron()); - DeathTestAbort(String::Format("execve(%s, ...) in %s failed: %s", - args->argv[0], - original_dir, - GetLastErrnoDescription().c_str())); - return EXIT_FAILURE; -} - -// Two utility routines that together determine the direction the stack -// grows. -// This could be accomplished more elegantly by a single recursive -// function, but we want to guard against the unlikely possibility of -// a smart compiler optimizing the recursion away. -bool StackLowerThanAddress(const void* ptr) { - int dummy; - return &dummy < ptr; -} - -bool StackGrowsDown() { - int dummy; - return StackLowerThanAddress(&dummy); -} - -// A threadsafe implementation of fork(2) for threadsafe-style death tests -// that uses clone(2). It dies with an error message if anything goes -// wrong. -static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { - ExecDeathTestArgs args = { argv, close_fd }; - pid_t child_pid = -1; - -#if GTEST_HAS_CLONE - const bool use_fork = GTEST_FLAG(death_test_use_fork); - - if (!use_fork) { - static const bool stack_grows_down = StackGrowsDown(); - const size_t stack_size = getpagesize(); - // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead. - void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, - MAP_ANON | MAP_PRIVATE, -1, 0); - GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED); - void* const stack_top = - static_cast(stack) + (stack_grows_down ? stack_size : 0); - - child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args); - - GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1); - } -#else - const bool use_fork = true; -#endif // GTEST_HAS_CLONE - - if (use_fork && (child_pid = fork()) == 0) { - ExecDeathTestChildMain(&args); - _exit(0); - } - - GTEST_DEATH_TEST_CHECK_(child_pid != -1); - return child_pid; -} - -// The AssumeRole process for a fork-and-exec death test. It re-executes the -// main program from the beginning, setting the --gtest_filter -// and --gtest_internal_run_death_test flags to cause only the current -// death test to be re-run. -DeathTest::TestRole ExecDeathTest::AssumeRole() { - const UnitTestImpl* const impl = GetUnitTestImpl(); - const InternalRunDeathTestFlag* const flag = - impl->internal_run_death_test_flag(); - const TestInfo* const info = impl->current_test_info(); - const int death_test_index = info->result()->death_test_count(); - - if (flag != NULL) { - set_write_fd(flag->write_fd()); - return EXECUTE_TEST; - } - - int pipe_fd[2]; - GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); - // Clear the close-on-exec flag on the write end of the pipe, lest - // it be closed when the child process does an exec: - GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1); - - const String filter_flag = - String::Format("--%s%s=%s.%s", - GTEST_FLAG_PREFIX_, kFilterFlag, - info->test_case_name(), info->name()); - const String internal_flag = - String::Format("--%s%s=%s|%d|%d|%d", - GTEST_FLAG_PREFIX_, kInternalRunDeathTestFlag, - file_, line_, death_test_index, pipe_fd[1]); - Arguments args; - args.AddArguments(GetArgvs()); - args.AddArgument(filter_flag.c_str()); - args.AddArgument(internal_flag.c_str()); - - DeathTest::set_last_death_test_message(""); - - CaptureStderr(); - // See the comment in NoExecDeathTest::AssumeRole for why the next line - // is necessary. - FlushInfoLog(); - - const pid_t child_pid = ExecDeathTestFork(args.Argv(), pipe_fd[0]); - GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); - set_child_pid(child_pid); - set_read_fd(pipe_fd[0]); - set_spawned(true); - return OVERSEE_TEST; -} - -#endif // !GTEST_OS_WINDOWS - -// Creates a concrete DeathTest-derived class that depends on the -// --gtest_death_test_style flag, and sets the pointer pointed to -// by the "test" argument to its address. If the test should be -// skipped, sets that pointer to NULL. Returns true, unless the -// flag is set to an invalid value. -bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, - const char* file, int line, - DeathTest** test) { - UnitTestImpl* const impl = GetUnitTestImpl(); - const InternalRunDeathTestFlag* const flag = - impl->internal_run_death_test_flag(); - const int death_test_index = impl->current_test_info() - ->increment_death_test_count(); - - if (flag != NULL) { - if (death_test_index > flag->index()) { - DeathTest::set_last_death_test_message(String::Format( - "Death test count (%d) somehow exceeded expected maximum (%d)", - death_test_index, flag->index())); - return false; - } - - if (!(flag->file() == file && flag->line() == line && - flag->index() == death_test_index)) { - *test = NULL; - return true; - } - } - -#if GTEST_OS_WINDOWS - if (GTEST_FLAG(death_test_style) == "threadsafe" || - GTEST_FLAG(death_test_style) == "fast") { - *test = new WindowsDeathTest(statement, regex, file, line); - } -#else - if (GTEST_FLAG(death_test_style) == "threadsafe") { - *test = new ExecDeathTest(statement, regex, file, line); - } else if (GTEST_FLAG(death_test_style) == "fast") { - *test = new NoExecDeathTest(statement, regex); - } -#endif // GTEST_OS_WINDOWS - else { // NOLINT - this is more readable than unbalanced brackets inside #if. - DeathTest::set_last_death_test_message(String::Format( - "Unknown death test style \"%s\" encountered", - GTEST_FLAG(death_test_style).c_str())); - return false; - } - - return true; -} - -// Splits a given string on a given delimiter, populating a given -// vector with the fields. GTEST_HAS_DEATH_TEST implies that we have -// ::std::string, so we can use it here. -static void SplitString(const ::std::string& str, char delimiter, - ::std::vector< ::std::string>* dest) { - ::std::vector< ::std::string> parsed; - ::std::string::size_type pos = 0; - while (::testing::internal::AlwaysTrue()) { - const ::std::string::size_type colon = str.find(delimiter, pos); - if (colon == ::std::string::npos) { - parsed.push_back(str.substr(pos)); - break; - } else { - parsed.push_back(str.substr(pos, colon - pos)); - pos = colon + 1; - } - } - dest->swap(parsed); -} - -#if GTEST_OS_WINDOWS -// Recreates the pipe and event handles from the provided parameters, -// signals the event, and returns a file descriptor wrapped around the pipe -// handle. This function is called in the child process only. -int GetStatusFileDescriptor(unsigned int parent_process_id, - size_t write_handle_as_size_t, - size_t event_handle_as_size_t) { - AutoHandle parent_process_handle(::OpenProcess(PROCESS_DUP_HANDLE, - FALSE, // Non-inheritable. - parent_process_id)); - if (parent_process_handle.Get() == INVALID_HANDLE_VALUE) { - DeathTestAbort(String::Format("Unable to open parent process %u", - parent_process_id)); - } - - // TODO(vladl@google.com): Replace the following check with a - // compile-time assertion when available. - GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t)); - - const HANDLE write_handle = - reinterpret_cast(write_handle_as_size_t); - HANDLE dup_write_handle; - - // The newly initialized handle is accessible only in in the parent - // process. To obtain one accessible within the child, we need to use - // DuplicateHandle. - if (!::DuplicateHandle(parent_process_handle.Get(), write_handle, - ::GetCurrentProcess(), &dup_write_handle, - 0x0, // Requested privileges ignored since - // DUPLICATE_SAME_ACCESS is used. - FALSE, // Request non-inheritable handler. - DUPLICATE_SAME_ACCESS)) { - DeathTestAbort(String::Format( - "Unable to duplicate the pipe handle %Iu from the parent process %u", - write_handle_as_size_t, parent_process_id)); - } - - const HANDLE event_handle = reinterpret_cast(event_handle_as_size_t); - HANDLE dup_event_handle; - - if (!::DuplicateHandle(parent_process_handle.Get(), event_handle, - ::GetCurrentProcess(), &dup_event_handle, - 0x0, - FALSE, - DUPLICATE_SAME_ACCESS)) { - DeathTestAbort(String::Format( - "Unable to duplicate the event handle %Iu from the parent process %u", - event_handle_as_size_t, parent_process_id)); - } - - const int write_fd = - ::_open_osfhandle(reinterpret_cast(dup_write_handle), O_APPEND); - if (write_fd == -1) { - DeathTestAbort(String::Format( - "Unable to convert pipe handle %Iu to a file descriptor", - write_handle_as_size_t)); - } - - // Signals the parent that the write end of the pipe has been acquired - // so the parent can release its own write end. - ::SetEvent(dup_event_handle); - - return write_fd; -} -#endif // GTEST_OS_WINDOWS - -// Returns a newly created InternalRunDeathTestFlag object with fields -// initialized from the GTEST_FLAG(internal_run_death_test) flag if -// the flag is specified; otherwise returns NULL. -InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { - if (GTEST_FLAG(internal_run_death_test) == "") return NULL; - - // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we - // can use it here. - int line = -1; - int index = -1; - ::std::vector< ::std::string> fields; - SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields); - int write_fd = -1; - -#if GTEST_OS_WINDOWS - unsigned int parent_process_id = 0; - size_t write_handle_as_size_t = 0; - size_t event_handle_as_size_t = 0; - - if (fields.size() != 6 - || !ParseNaturalNumber(fields[1], &line) - || !ParseNaturalNumber(fields[2], &index) - || !ParseNaturalNumber(fields[3], &parent_process_id) - || !ParseNaturalNumber(fields[4], &write_handle_as_size_t) - || !ParseNaturalNumber(fields[5], &event_handle_as_size_t)) { - DeathTestAbort(String::Format( - "Bad --gtest_internal_run_death_test flag: %s", - GTEST_FLAG(internal_run_death_test).c_str())); - } - write_fd = GetStatusFileDescriptor(parent_process_id, - write_handle_as_size_t, - event_handle_as_size_t); -#else - if (fields.size() != 4 - || !ParseNaturalNumber(fields[1], &line) - || !ParseNaturalNumber(fields[2], &index) - || !ParseNaturalNumber(fields[3], &write_fd)) { - DeathTestAbort(String::Format( - "Bad --gtest_internal_run_death_test flag: %s", - GTEST_FLAG(internal_run_death_test).c_str())); - } -#endif // GTEST_OS_WINDOWS - return new InternalRunDeathTestFlag(fields[0], line, index, write_fd); -} - -} // namespace internal - -#endif // GTEST_HAS_DEATH_TEST - -} // namespace testing -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: keith.ray@gmail.com (Keith Ray) - - -#include - -#if GTEST_OS_WINDOWS_MOBILE -#include -#elif GTEST_OS_WINDOWS -#include -#include -#elif GTEST_OS_SYMBIAN -// Symbian OpenC has PATH_MAX in sys/syslimits.h -#include -#else -#include -#include // Some Linux distributions define PATH_MAX here. -#endif // GTEST_OS_WINDOWS_MOBILE - -#if GTEST_OS_WINDOWS -#define GTEST_PATH_MAX_ _MAX_PATH -#elif defined(PATH_MAX) -#define GTEST_PATH_MAX_ PATH_MAX -#elif defined(_XOPEN_PATH_MAX) -#define GTEST_PATH_MAX_ _XOPEN_PATH_MAX -#else -#define GTEST_PATH_MAX_ _POSIX_PATH_MAX -#endif // GTEST_OS_WINDOWS - - -namespace testing { -namespace internal { - -#if GTEST_OS_WINDOWS -// On Windows, '\\' is the standard path separator, but many tools and the -// Windows API also accept '/' as an alternate path separator. Unless otherwise -// noted, a file path can contain either kind of path separators, or a mixture -// of them. -const char kPathSeparator = '\\'; -const char kAlternatePathSeparator = '/'; -const char kPathSeparatorString[] = "\\"; -const char kAlternatePathSeparatorString[] = "/"; -#if GTEST_OS_WINDOWS_MOBILE -// Windows CE doesn't have a current directory. You should not use -// the current directory in tests on Windows CE, but this at least -// provides a reasonable fallback. -const char kCurrentDirectoryString[] = "\\"; -// Windows CE doesn't define INVALID_FILE_ATTRIBUTES -const DWORD kInvalidFileAttributes = 0xffffffff; -#else -const char kCurrentDirectoryString[] = ".\\"; -#endif // GTEST_OS_WINDOWS_MOBILE -#else -const char kPathSeparator = '/'; -const char kPathSeparatorString[] = "/"; -const char kCurrentDirectoryString[] = "./"; -#endif // GTEST_OS_WINDOWS - -// Returns whether the given character is a valid path separator. -static bool IsPathSeparator(char c) { -#if GTEST_HAS_ALT_PATH_SEP_ - return (c == kPathSeparator) || (c == kAlternatePathSeparator); -#else - return c == kPathSeparator; -#endif -} - -// Returns the current working directory, or "" if unsuccessful. -FilePath FilePath::GetCurrentDir() { -#if GTEST_OS_WINDOWS_MOBILE - // Windows CE doesn't have a current directory, so we just return - // something reasonable. - return FilePath(kCurrentDirectoryString); -#elif GTEST_OS_WINDOWS - char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; - return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); -#else - char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; - return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); -#endif // GTEST_OS_WINDOWS_MOBILE -} - -// Returns a copy of the FilePath with the case-insensitive extension removed. -// Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns -// FilePath("dir/file"). If a case-insensitive extension is not -// found, returns a copy of the original FilePath. -FilePath FilePath::RemoveExtension(const char* extension) const { - String dot_extension(String::Format(".%s", extension)); - if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) { - return FilePath(String(pathname_.c_str(), pathname_.length() - 4)); - } - return *this; -} - -// Returns a pointer to the last occurence of a valid path separator in -// the FilePath. On Windows, for example, both '/' and '\' are valid path -// separators. Returns NULL if no path separator was found. -const char* FilePath::FindLastPathSeparator() const { - const char* const last_sep = strrchr(c_str(), kPathSeparator); -#if GTEST_HAS_ALT_PATH_SEP_ - const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator); - // Comparing two pointers of which only one is NULL is undefined. - if (last_alt_sep != NULL && - (last_sep == NULL || last_alt_sep > last_sep)) { - return last_alt_sep; - } -#endif - return last_sep; -} - -// Returns a copy of the FilePath with the directory part removed. -// Example: FilePath("path/to/file").RemoveDirectoryName() returns -// FilePath("file"). If there is no directory part ("just_a_file"), it returns -// the FilePath unmodified. If there is no file part ("just_a_dir/") it -// returns an empty FilePath (""). -// On Windows platform, '\' is the path separator, otherwise it is '/'. -FilePath FilePath::RemoveDirectoryName() const { - const char* const last_sep = FindLastPathSeparator(); - return last_sep ? FilePath(String(last_sep + 1)) : *this; -} - -// RemoveFileName returns the directory path with the filename removed. -// Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". -// If the FilePath is "a_file" or "/a_file", RemoveFileName returns -// FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does -// not have a file, like "just/a/dir/", it returns the FilePath unmodified. -// On Windows platform, '\' is the path separator, otherwise it is '/'. -FilePath FilePath::RemoveFileName() const { - const char* const last_sep = FindLastPathSeparator(); - String dir; - if (last_sep) { - dir = String(c_str(), last_sep + 1 - c_str()); - } else { - dir = kCurrentDirectoryString; - } - return FilePath(dir); -} - -// Helper functions for naming files in a directory for xml output. - -// Given directory = "dir", base_name = "test", number = 0, -// extension = "xml", returns "dir/test.xml". If number is greater -// than zero (e.g., 12), returns "dir/test_12.xml". -// On Windows platform, uses \ as the separator rather than /. -FilePath FilePath::MakeFileName(const FilePath& directory, - const FilePath& base_name, - int number, - const char* extension) { - String file; - if (number == 0) { - file = String::Format("%s.%s", base_name.c_str(), extension); - } else { - file = String::Format("%s_%d.%s", base_name.c_str(), number, extension); - } - return ConcatPaths(directory, FilePath(file)); -} - -// Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". -// On Windows, uses \ as the separator rather than /. -FilePath FilePath::ConcatPaths(const FilePath& directory, - const FilePath& relative_path) { - if (directory.IsEmpty()) - return relative_path; - const FilePath dir(directory.RemoveTrailingPathSeparator()); - return FilePath(String::Format("%s%c%s", dir.c_str(), kPathSeparator, - relative_path.c_str())); -} - -// Returns true if pathname describes something findable in the file-system, -// either a file, directory, or whatever. -bool FilePath::FileOrDirectoryExists() const { -#if GTEST_OS_WINDOWS_MOBILE - LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); - const DWORD attributes = GetFileAttributes(unicode); - delete [] unicode; - return attributes != kInvalidFileAttributes; -#else - posix::StatStruct file_stat; - return posix::Stat(pathname_.c_str(), &file_stat) == 0; -#endif // GTEST_OS_WINDOWS_MOBILE -} - -// Returns true if pathname describes a directory in the file-system -// that exists. -bool FilePath::DirectoryExists() const { - bool result = false; -#if GTEST_OS_WINDOWS - // Don't strip off trailing separator if path is a root directory on - // Windows (like "C:\\"). - const FilePath& path(IsRootDirectory() ? *this : - RemoveTrailingPathSeparator()); -#else - const FilePath& path(*this); -#endif - -#if GTEST_OS_WINDOWS_MOBILE - LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); - const DWORD attributes = GetFileAttributes(unicode); - delete [] unicode; - if ((attributes != kInvalidFileAttributes) && - (attributes & FILE_ATTRIBUTE_DIRECTORY)) { - result = true; - } -#else - posix::StatStruct file_stat; - result = posix::Stat(path.c_str(), &file_stat) == 0 && - posix::IsDir(file_stat); -#endif // GTEST_OS_WINDOWS_MOBILE - - return result; -} - -// Returns true if pathname describes a root directory. (Windows has one -// root directory per disk drive.) -bool FilePath::IsRootDirectory() const { -#if GTEST_OS_WINDOWS - // TODO(wan@google.com): on Windows a network share like - // \\server\share can be a root directory, although it cannot be the - // current directory. Handle this properly. - return pathname_.length() == 3 && IsAbsolutePath(); -#else - return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]); -#endif -} - -// Returns true if pathname describes an absolute path. -bool FilePath::IsAbsolutePath() const { - const char* const name = pathname_.c_str(); -#if GTEST_OS_WINDOWS - return pathname_.length() >= 3 && - ((name[0] >= 'a' && name[0] <= 'z') || - (name[0] >= 'A' && name[0] <= 'Z')) && - name[1] == ':' && - IsPathSeparator(name[2]); -#else - return IsPathSeparator(name[0]); -#endif -} - -// Returns a pathname for a file that does not currently exist. The pathname -// will be directory/base_name.extension or -// directory/base_name_.extension if directory/base_name.extension -// already exists. The number will be incremented until a pathname is found -// that does not already exist. -// Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. -// There could be a race condition if two or more processes are calling this -// function at the same time -- they could both pick the same filename. -FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, - const FilePath& base_name, - const char* extension) { - FilePath full_pathname; - int number = 0; - do { - full_pathname.Set(MakeFileName(directory, base_name, number++, extension)); - } while (full_pathname.FileOrDirectoryExists()); - return full_pathname; -} - -// Returns true if FilePath ends with a path separator, which indicates that -// it is intended to represent a directory. Returns false otherwise. -// This does NOT check that a directory (or file) actually exists. -bool FilePath::IsDirectory() const { - return !pathname_.empty() && - IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]); -} - -// Create directories so that path exists. Returns true if successful or if -// the directories already exist; returns false if unable to create directories -// for any reason. -bool FilePath::CreateDirectoriesRecursively() const { - if (!this->IsDirectory()) { - return false; - } - - if (pathname_.length() == 0 || this->DirectoryExists()) { - return true; - } - - const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName()); - return parent.CreateDirectoriesRecursively() && this->CreateFolder(); -} - -// Create the directory so that path exists. Returns true if successful or -// if the directory already exists; returns false if unable to create the -// directory for any reason, including if the parent directory does not -// exist. Not named "CreateDirectory" because that's a macro on Windows. -bool FilePath::CreateFolder() const { -#if GTEST_OS_WINDOWS_MOBILE - FilePath removed_sep(this->RemoveTrailingPathSeparator()); - LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); - int result = CreateDirectory(unicode, NULL) ? 0 : -1; - delete [] unicode; -#elif GTEST_OS_WINDOWS - int result = _mkdir(pathname_.c_str()); -#else - int result = mkdir(pathname_.c_str(), 0777); -#endif // GTEST_OS_WINDOWS_MOBILE - - if (result == -1) { - return this->DirectoryExists(); // An error is OK if the directory exists. - } - return true; // No error. -} - -// If input name has a trailing separator character, remove it and return the -// name, otherwise return the name string unmodified. -// On Windows platform, uses \ as the separator, other platforms use /. -FilePath FilePath::RemoveTrailingPathSeparator() const { - return IsDirectory() - ? FilePath(String(pathname_.c_str(), pathname_.length() - 1)) - : *this; -} - -// Removes any redundant separators that might be in the pathname. -// For example, "bar///foo" becomes "bar/foo". Does not eliminate other -// redundancies that might be in a pathname involving "." or "..". -// TODO(wan@google.com): handle Windows network shares (e.g. \\server\share). -void FilePath::Normalize() { - if (pathname_.c_str() == NULL) { - pathname_ = ""; - return; - } - const char* src = pathname_.c_str(); - char* const dest = new char[pathname_.length() + 1]; - char* dest_ptr = dest; - memset(dest_ptr, 0, pathname_.length() + 1); - - while (*src != '\0') { - *dest_ptr = *src; - if (!IsPathSeparator(*src)) { - src++; - } else { -#if GTEST_HAS_ALT_PATH_SEP_ - if (*dest_ptr == kAlternatePathSeparator) { - *dest_ptr = kPathSeparator; - } -#endif - while (IsPathSeparator(*src)) - src++; - } - dest_ptr++; - } - *dest_ptr = '\0'; - pathname_ = dest; - delete[] dest; -} - -} // namespace internal -} // namespace testing -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - - -#include -#include -#include - -#if GTEST_OS_WINDOWS_MOBILE -#include // For TerminateProcess() -#elif GTEST_OS_WINDOWS -#include -#include -#else -#include -#endif // GTEST_OS_WINDOWS_MOBILE - -#if GTEST_OS_MAC -#include -#include -#include -#endif // GTEST_OS_MAC - - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#undef GTEST_IMPLEMENTATION_ - -namespace testing { -namespace internal { - -#if defined(_MSC_VER) || defined(__BORLANDC__) -// MSVC and C++Builder do not provide a definition of STDERR_FILENO. -const int kStdOutFileno = 1; -const int kStdErrFileno = 2; -#else -const int kStdOutFileno = STDOUT_FILENO; -const int kStdErrFileno = STDERR_FILENO; -#endif // _MSC_VER - -#if GTEST_OS_MAC - -// Returns the number of threads running in the process, or 0 to indicate that -// we cannot detect it. -size_t GetThreadCount() { - const task_t task = mach_task_self(); - mach_msg_type_number_t thread_count; - thread_act_array_t thread_list; - const kern_return_t status = task_threads(task, &thread_list, &thread_count); - if (status == KERN_SUCCESS) { - // task_threads allocates resources in thread_list and we need to free them - // to avoid leaks. - vm_deallocate(task, - reinterpret_cast(thread_list), - sizeof(thread_t) * thread_count); - return static_cast(thread_count); - } else { - return 0; - } -} - -#else - -size_t GetThreadCount() { - // There's no portable way to detect the number of threads, so we just - // return 0 to indicate that we cannot detect it. - return 0; -} - -#endif // GTEST_OS_MAC - -#if GTEST_USES_POSIX_RE - -// Implements RE. Currently only needed for death tests. - -RE::~RE() { - if (is_valid_) { - // regfree'ing an invalid regex might crash because the content - // of the regex is undefined. Since the regex's are essentially - // the same, one cannot be valid (or invalid) without the other - // being so too. - regfree(&partial_regex_); - regfree(&full_regex_); - } - free(const_cast(pattern_)); -} - -// Returns true iff regular expression re matches the entire str. -bool RE::FullMatch(const char* str, const RE& re) { - if (!re.is_valid_) return false; - - regmatch_t match; - return regexec(&re.full_regex_, str, 1, &match, 0) == 0; -} - -// Returns true iff regular expression re matches a substring of str -// (including str itself). -bool RE::PartialMatch(const char* str, const RE& re) { - if (!re.is_valid_) return false; - - regmatch_t match; - return regexec(&re.partial_regex_, str, 1, &match, 0) == 0; -} - -// Initializes an RE from its string representation. -void RE::Init(const char* regex) { - pattern_ = posix::StrDup(regex); - - // Reserves enough bytes to hold the regular expression used for a - // full match. - const size_t full_regex_len = strlen(regex) + 10; - char* const full_pattern = new char[full_regex_len]; - - snprintf(full_pattern, full_regex_len, "^(%s)$", regex); - is_valid_ = regcomp(&full_regex_, full_pattern, REG_EXTENDED) == 0; - // We want to call regcomp(&partial_regex_, ...) even if the - // previous expression returns false. Otherwise partial_regex_ may - // not be properly initialized can may cause trouble when it's - // freed. - // - // Some implementation of POSIX regex (e.g. on at least some - // versions of Cygwin) doesn't accept the empty string as a valid - // regex. We change it to an equivalent form "()" to be safe. - if (is_valid_) { - const char* const partial_regex = (*regex == '\0') ? "()" : regex; - is_valid_ = regcomp(&partial_regex_, partial_regex, REG_EXTENDED) == 0; - } - EXPECT_TRUE(is_valid_) - << "Regular expression \"" << regex - << "\" is not a valid POSIX Extended regular expression."; - - delete[] full_pattern; -} - -#elif GTEST_USES_SIMPLE_RE - -// Returns true iff ch appears anywhere in str (excluding the -// terminating '\0' character). -bool IsInSet(char ch, const char* str) { - return ch != '\0' && strchr(str, ch) != NULL; -} - -// Returns true iff ch belongs to the given classification. Unlike -// similar functions in , these aren't affected by the -// current locale. -bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; } -bool IsPunct(char ch) { - return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); -} -bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } -bool IsWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } -bool IsWordChar(char ch) { - return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') || - ('0' <= ch && ch <= '9') || ch == '_'; -} - -// Returns true iff "\\c" is a supported escape sequence. -bool IsValidEscape(char c) { - return (IsPunct(c) || IsInSet(c, "dDfnrsStvwW")); -} - -// Returns true iff the given atom (specified by escaped and pattern) -// matches ch. The result is undefined if the atom is invalid. -bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { - if (escaped) { // "\\p" where p is pattern_char. - switch (pattern_char) { - case 'd': return IsDigit(ch); - case 'D': return !IsDigit(ch); - case 'f': return ch == '\f'; - case 'n': return ch == '\n'; - case 'r': return ch == '\r'; - case 's': return IsWhiteSpace(ch); - case 'S': return !IsWhiteSpace(ch); - case 't': return ch == '\t'; - case 'v': return ch == '\v'; - case 'w': return IsWordChar(ch); - case 'W': return !IsWordChar(ch); - } - return IsPunct(pattern_char) && pattern_char == ch; - } - - return (pattern_char == '.' && ch != '\n') || pattern_char == ch; -} - -// Helper function used by ValidateRegex() to format error messages. -String FormatRegexSyntaxError(const char* regex, int index) { - return (Message() << "Syntax error at index " << index - << " in simple regular expression \"" << regex << "\": ").GetString(); -} - -// Generates non-fatal failures and returns false if regex is invalid; -// otherwise returns true. -bool ValidateRegex(const char* regex) { - if (regex == NULL) { - // TODO(wan@google.com): fix the source file location in the - // assertion failures to match where the regex is used in user - // code. - ADD_FAILURE() << "NULL is not a valid simple regular expression."; - return false; - } - - bool is_valid = true; - - // True iff ?, *, or + can follow the previous atom. - bool prev_repeatable = false; - for (int i = 0; regex[i]; i++) { - if (regex[i] == '\\') { // An escape sequence - i++; - if (regex[i] == '\0') { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) - << "'\\' cannot appear at the end."; - return false; - } - - if (!IsValidEscape(regex[i])) { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) - << "invalid escape sequence \"\\" << regex[i] << "\"."; - is_valid = false; - } - prev_repeatable = true; - } else { // Not an escape sequence. - const char ch = regex[i]; - - if (ch == '^' && i > 0) { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i) - << "'^' can only appear at the beginning."; - is_valid = false; - } else if (ch == '$' && regex[i + 1] != '\0') { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i) - << "'$' can only appear at the end."; - is_valid = false; - } else if (IsInSet(ch, "()[]{}|")) { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i) - << "'" << ch << "' is unsupported."; - is_valid = false; - } else if (IsRepeat(ch) && !prev_repeatable) { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i) - << "'" << ch << "' can only follow a repeatable token."; - is_valid = false; - } - - prev_repeatable = !IsInSet(ch, "^$?*+"); - } - } - - return is_valid; -} - -// Matches a repeated regex atom followed by a valid simple regular -// expression. The regex atom is defined as c if escaped is false, -// or \c otherwise. repeat is the repetition meta character (?, *, -// or +). The behavior is undefined if str contains too many -// characters to be indexable by size_t, in which case the test will -// probably time out anyway. We are fine with this limitation as -// std::string has it too. -bool MatchRepetitionAndRegexAtHead( - bool escaped, char c, char repeat, const char* regex, - const char* str) { - const size_t min_count = (repeat == '+') ? 1 : 0; - const size_t max_count = (repeat == '?') ? 1 : - static_cast(-1) - 1; - // We cannot call numeric_limits::max() as it conflicts with the - // max() macro on Windows. - - for (size_t i = 0; i <= max_count; ++i) { - // We know that the atom matches each of the first i characters in str. - if (i >= min_count && MatchRegexAtHead(regex, str + i)) { - // We have enough matches at the head, and the tail matches too. - // Since we only care about *whether* the pattern matches str - // (as opposed to *how* it matches), there is no need to find a - // greedy match. - return true; - } - if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i])) - return false; - } - return false; -} - -// Returns true iff regex matches a prefix of str. regex must be a -// valid simple regular expression and not start with "^", or the -// result is undefined. -bool MatchRegexAtHead(const char* regex, const char* str) { - if (*regex == '\0') // An empty regex matches a prefix of anything. - return true; - - // "$" only matches the end of a string. Note that regex being - // valid guarantees that there's nothing after "$" in it. - if (*regex == '$') - return *str == '\0'; - - // Is the first thing in regex an escape sequence? - const bool escaped = *regex == '\\'; - if (escaped) - ++regex; - if (IsRepeat(regex[1])) { - // MatchRepetitionAndRegexAtHead() calls MatchRegexAtHead(), so - // here's an indirect recursion. It terminates as the regex gets - // shorter in each recursion. - return MatchRepetitionAndRegexAtHead( - escaped, regex[0], regex[1], regex + 2, str); - } else { - // regex isn't empty, isn't "$", and doesn't start with a - // repetition. We match the first atom of regex with the first - // character of str and recurse. - return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) && - MatchRegexAtHead(regex + 1, str + 1); - } -} - -// Returns true iff regex matches any substring of str. regex must be -// a valid simple regular expression, or the result is undefined. -// -// The algorithm is recursive, but the recursion depth doesn't exceed -// the regex length, so we won't need to worry about running out of -// stack space normally. In rare cases the time complexity can be -// exponential with respect to the regex length + the string length, -// but usually it's must faster (often close to linear). -bool MatchRegexAnywhere(const char* regex, const char* str) { - if (regex == NULL || str == NULL) - return false; - - if (*regex == '^') - return MatchRegexAtHead(regex + 1, str); - - // A successful match can be anywhere in str. - do { - if (MatchRegexAtHead(regex, str)) - return true; - } while (*str++ != '\0'); - return false; -} - -// Implements the RE class. - -RE::~RE() { - free(const_cast(pattern_)); - free(const_cast(full_pattern_)); -} - -// Returns true iff regular expression re matches the entire str. -bool RE::FullMatch(const char* str, const RE& re) { - return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_, str); -} - -// Returns true iff regular expression re matches a substring of str -// (including str itself). -bool RE::PartialMatch(const char* str, const RE& re) { - return re.is_valid_ && MatchRegexAnywhere(re.pattern_, str); -} - -// Initializes an RE from its string representation. -void RE::Init(const char* regex) { - pattern_ = full_pattern_ = NULL; - if (regex != NULL) { - pattern_ = posix::StrDup(regex); - } - - is_valid_ = ValidateRegex(regex); - if (!is_valid_) { - // No need to calculate the full pattern when the regex is invalid. - return; - } - - const size_t len = strlen(regex); - // Reserves enough bytes to hold the regular expression used for a - // full match: we need space to prepend a '^', append a '$', and - // terminate the string with '\0'. - char* buffer = static_cast(malloc(len + 3)); - full_pattern_ = buffer; - - if (*regex != '^') - *buffer++ = '^'; // Makes sure full_pattern_ starts with '^'. - - // We don't use snprintf or strncpy, as they trigger a warning when - // compiled with VC++ 8.0. - memcpy(buffer, regex, len); - buffer += len; - - if (len == 0 || regex[len - 1] != '$') - *buffer++ = '$'; // Makes sure full_pattern_ ends with '$'. - - *buffer = '\0'; -} - -#endif // GTEST_USES_POSIX_RE - - -GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line) - : severity_(severity) { - const char* const marker = - severity == GTEST_INFO ? "[ INFO ]" : - severity == GTEST_WARNING ? "[WARNING]" : - severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]"; - GetStream() << ::std::endl << marker << " " - << FormatFileLocation(file, line).c_str() << ": "; -} - -// Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. -GTestLog::~GTestLog() { - GetStream() << ::std::endl; - if (severity_ == GTEST_FATAL) { - fflush(stderr); - posix::Abort(); - } -} -// Disable Microsoft deprecation warnings for POSIX functions called from -// this class (creat, dup, dup2, and close) -#ifdef _MSC_VER -#pragma warning(push) -#pragma warning(disable: 4996) -#endif // _MSC_VER - -#if GTEST_HAS_STREAM_REDIRECTION_ - -// Object that captures an output stream (stdout/stderr). -class CapturedStream { - public: - // The ctor redirects the stream to a temporary file. - CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { -#if GTEST_OS_WINDOWS - char temp_dir_path[MAX_PATH + 1] = { '\0' }; // NOLINT - char temp_file_path[MAX_PATH + 1] = { '\0' }; // NOLINT - - ::GetTempPathA(sizeof(temp_dir_path), temp_dir_path); - const UINT success = ::GetTempFileNameA(temp_dir_path, - "gtest_redir", - 0, // Generate unique file name. - temp_file_path); - GTEST_CHECK_(success != 0) - << "Unable to create a temporary file in " << temp_dir_path; - const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE); - GTEST_CHECK_(captured_fd != -1) << "Unable to open temporary file " - << temp_file_path; - filename_ = temp_file_path; -#else - // There's no guarantee that a test has write access to the - // current directory, so we create the temporary file in the /tmp - // directory instead. - char name_template[] = "/tmp/captured_stream.XXXXXX"; - const int captured_fd = mkstemp(name_template); - filename_ = name_template; -#endif // GTEST_OS_WINDOWS - fflush(NULL); - dup2(captured_fd, fd_); - close(captured_fd); - } - - ~CapturedStream() { - remove(filename_.c_str()); - } - - String GetCapturedString() { - if (uncaptured_fd_ != -1) { - // Restores the original stream. - fflush(NULL); - dup2(uncaptured_fd_, fd_); - close(uncaptured_fd_); - uncaptured_fd_ = -1; - } - - FILE* const file = posix::FOpen(filename_.c_str(), "r"); - const String content = ReadEntireFile(file); - posix::FClose(file); - return content; - } - - private: - // Reads the entire content of a file as a String. - static String ReadEntireFile(FILE* file); - - // Returns the size (in bytes) of a file. - static size_t GetFileSize(FILE* file); - - const int fd_; // A stream to capture. - int uncaptured_fd_; - // Name of the temporary file holding the stderr output. - ::std::string filename_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream); -}; - -// Returns the size (in bytes) of a file. -size_t CapturedStream::GetFileSize(FILE* file) { - fseek(file, 0, SEEK_END); - return static_cast(ftell(file)); -} - -// Reads the entire content of a file as a string. -String CapturedStream::ReadEntireFile(FILE* file) { - const size_t file_size = GetFileSize(file); - char* const buffer = new char[file_size]; - - size_t bytes_last_read = 0; // # of bytes read in the last fread() - size_t bytes_read = 0; // # of bytes read so far - - fseek(file, 0, SEEK_SET); - - // Keeps reading the file until we cannot read further or the - // pre-determined file size is reached. - do { - bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file); - bytes_read += bytes_last_read; - } while (bytes_last_read > 0 && bytes_read < file_size); - - const String content(buffer, bytes_read); - delete[] buffer; - - return content; -} - -#ifdef _MSC_VER -#pragma warning(pop) -#endif // _MSC_VER - -static CapturedStream* g_captured_stderr = NULL; -static CapturedStream* g_captured_stdout = NULL; - -// Starts capturing an output stream (stdout/stderr). -void CaptureStream(int fd, const char* stream_name, CapturedStream** stream) { - if (*stream != NULL) { - GTEST_LOG_(FATAL) << "Only one " << stream_name - << " capturer can exist at a time."; - } - *stream = new CapturedStream(fd); -} - -// Stops capturing the output stream and returns the captured string. -String GetCapturedStream(CapturedStream** captured_stream) { - const String content = (*captured_stream)->GetCapturedString(); - - delete *captured_stream; - *captured_stream = NULL; - - return content; -} - -// Starts capturing stdout. -void CaptureStdout() { - CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout); -} - -// Starts capturing stderr. -void CaptureStderr() { - CaptureStream(kStdErrFileno, "stderr", &g_captured_stderr); -} - -// Stops capturing stdout and returns the captured string. -String GetCapturedStdout() { return GetCapturedStream(&g_captured_stdout); } - -// Stops capturing stderr and returns the captured string. -String GetCapturedStderr() { return GetCapturedStream(&g_captured_stderr); } - -#endif // GTEST_HAS_STREAM_REDIRECTION_ - -#if GTEST_HAS_DEATH_TEST - -// A copy of all command line arguments. Set by InitGoogleTest(). -::std::vector g_argvs; - -// Returns the command line as a vector of strings. -const ::std::vector& GetArgvs() { return g_argvs; } - -#endif // GTEST_HAS_DEATH_TEST - -#if GTEST_OS_WINDOWS_MOBILE -namespace posix { -void Abort() { - DebugBreak(); - TerminateProcess(GetCurrentProcess(), 1); -} -} // namespace posix -#endif // GTEST_OS_WINDOWS_MOBILE - -// Returns the name of the environment variable corresponding to the -// given flag. For example, FlagToEnvVar("foo") will return -// "GTEST_FOO" in the open-source version. -static String FlagToEnvVar(const char* flag) { - const String full_flag = - (Message() << GTEST_FLAG_PREFIX_ << flag).GetString(); - - Message env_var; - for (size_t i = 0; i != full_flag.length(); i++) { - env_var << static_cast(toupper(full_flag.c_str()[i])); - } - - return env_var.GetString(); -} - -// Parses 'str' for a 32-bit signed integer. If successful, writes -// the result to *value and returns true; otherwise leaves *value -// unchanged and returns false. -bool ParseInt32(const Message& src_text, const char* str, Int32* value) { - // Parses the environment variable as a decimal integer. - char* end = NULL; - const long long_value = strtol(str, &end, 10); // NOLINT - - // Has strtol() consumed all characters in the string? - if (*end != '\0') { - // No - an invalid character was encountered. - Message msg; - msg << "WARNING: " << src_text - << " is expected to be a 32-bit integer, but actually" - << " has value \"" << str << "\".\n"; - printf("%s", msg.GetString().c_str()); - fflush(stdout); - return false; - } - - // Is the parsed value in the range of an Int32? - const Int32 result = static_cast(long_value); - if (long_value == LONG_MAX || long_value == LONG_MIN || - // The parsed value overflows as a long. (strtol() returns - // LONG_MAX or LONG_MIN when the input overflows.) - result != long_value - // The parsed value overflows as an Int32. - ) { - Message msg; - msg << "WARNING: " << src_text - << " is expected to be a 32-bit integer, but actually" - << " has value " << str << ", which overflows.\n"; - printf("%s", msg.GetString().c_str()); - fflush(stdout); - return false; - } - - *value = result; - return true; -} - -// Reads and returns the Boolean environment variable corresponding to -// the given flag; if it's not set, returns default_value. -// -// The value is considered true iff it's not "0". -bool BoolFromGTestEnv(const char* flag, bool default_value) { - const String env_var = FlagToEnvVar(flag); - const char* const string_value = posix::GetEnv(env_var.c_str()); - return string_value == NULL ? - default_value : strcmp(string_value, "0") != 0; -} - -// Reads and returns a 32-bit integer stored in the environment -// variable corresponding to the given flag; if it isn't set or -// doesn't represent a valid 32-bit integer, returns default_value. -Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { - const String env_var = FlagToEnvVar(flag); - const char* const string_value = posix::GetEnv(env_var.c_str()); - if (string_value == NULL) { - // The environment variable is not set. - return default_value; - } - - Int32 result = default_value; - if (!ParseInt32(Message() << "Environment variable " << env_var, - string_value, &result)) { - printf("The default value %s is used.\n", - (Message() << default_value).GetString().c_str()); - fflush(stdout); - return default_value; - } - - return result; -} - -// Reads and returns the string environment variable corresponding to -// the given flag; if it's not set, returns default_value. -const char* StringFromGTestEnv(const char* flag, const char* default_value) { - const String env_var = FlagToEnvVar(flag); - const char* const value = posix::GetEnv(env_var.c_str()); - return value == NULL ? default_value : value; -} - -} // namespace internal -} // namespace testing -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: mheule@google.com (Markus Heule) -// -// The Google C++ Testing Framework (Google Test) - - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#undef GTEST_IMPLEMENTATION_ - -namespace testing { - -using internal::GetUnitTestImpl; - -// Gets the summary of the failure message by omitting the stack trace -// in it. -internal::String TestPartResult::ExtractSummary(const char* message) { - const char* const stack_trace = strstr(message, internal::kStackTraceMarker); - return stack_trace == NULL ? internal::String(message) : - internal::String(message, stack_trace - message); -} - -// Prints a TestPartResult object. -std::ostream& operator<<(std::ostream& os, const TestPartResult& result) { - return os - << result.file_name() << ":" << result.line_number() << ": " - << (result.type() == TestPartResult::kSuccess ? "Success" : - result.type() == TestPartResult::kFatalFailure ? "Fatal failure" : - "Non-fatal failure") << ":\n" - << result.message() << std::endl; -} - -// Appends a TestPartResult to the array. -void TestPartResultArray::Append(const TestPartResult& result) { - array_.push_back(result); -} - -// Returns the TestPartResult at the given index (0-based). -const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const { - if (index < 0 || index >= size()) { - printf("\nInvalid index (%d) into TestPartResultArray.\n", index); - internal::posix::Abort(); - } - - return array_[index]; -} - -// Returns the number of TestPartResult objects in the array. -int TestPartResultArray::size() const { - return static_cast(array_.size()); -} - -namespace internal { - -HasNewFatalFailureHelper::HasNewFatalFailureHelper() - : has_new_fatal_failure_(false), - original_reporter_(GetUnitTestImpl()-> - GetTestPartResultReporterForCurrentThread()) { - GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(this); -} - -HasNewFatalFailureHelper::~HasNewFatalFailureHelper() { - GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread( - original_reporter_); -} - -void HasNewFatalFailureHelper::ReportTestPartResult( - const TestPartResult& result) { - if (result.fatally_failed()) - has_new_fatal_failure_ = true; - original_reporter_->ReportTestPartResult(result); -} - -} // namespace internal - -} // namespace testing -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - - -namespace testing { -namespace internal { - -#if GTEST_HAS_TYPED_TEST_P - -// Skips to the first non-space char in str. Returns an empty string if str -// contains only whitespace characters. -static const char* SkipSpaces(const char* str) { - while (isspace(*str)) - str++; - return str; -} - -// Verifies that registered_tests match the test names in -// defined_test_names_; returns registered_tests if successful, or -// aborts the program otherwise. -const char* TypedTestCasePState::VerifyRegisteredTestNames( - const char* file, int line, const char* registered_tests) { - typedef ::std::set::const_iterator DefinedTestIter; - registered_ = true; - - // Skip initial whitespace in registered_tests since some - // preprocessors prefix stringizied literals with whitespace. - registered_tests = SkipSpaces(registered_tests); - - Message errors; - ::std::set tests; - for (const char* names = registered_tests; names != NULL; - names = SkipComma(names)) { - const String name = GetPrefixUntilComma(names); - if (tests.count(name) != 0) { - errors << "Test " << name << " is listed more than once.\n"; - continue; - } - - bool found = false; - for (DefinedTestIter it = defined_test_names_.begin(); - it != defined_test_names_.end(); - ++it) { - if (name == *it) { - found = true; - break; - } - } - - if (found) { - tests.insert(name); - } else { - errors << "No test named " << name - << " can be found in this test case.\n"; - } - } - - for (DefinedTestIter it = defined_test_names_.begin(); - it != defined_test_names_.end(); - ++it) { - if (tests.count(*it) == 0) { - errors << "You forgot to list test " << *it << ".\n"; - } - } - - const String& errors_str = errors.GetString(); - if (errors_str != "") { - fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), - errors_str.c_str()); - fflush(stderr); - posix::Abort(); - } - - return registered_tests; -} - -#endif // GTEST_HAS_TYPED_TEST_P - -} // namespace internal -} // namespace testing diff --git a/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest.h b/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest.h deleted file mode 100644 index c0a1902e2..000000000 --- a/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest.h +++ /dev/null @@ -1,18007 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file defines the public API for Google Test. It should be -// included by any test program that uses Google Test. -// -// IMPORTANT NOTE: Due to limitation of the C++ language, we have to -// leave some internal implementation details in this header file. -// They are clearly marked by comments like this: -// -// // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -// -// Such code is NOT meant to be used by a user directly, and is subject -// to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user -// program! -// -// Acknowledgment: Google Test borrowed the idea of automatic test -// registration from Barthelemy Dagenais' (barthelemy@prologique.com) -// easyUnit framework. - -#ifndef GTEST_INCLUDE_GTEST_GTEST_H_ -#define GTEST_INCLUDE_GTEST_GTEST_H_ - -#include -#include - -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file declares functions and macros used internally by -// Google Test. They are subject to change without notice. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ - -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: wan@google.com (Zhanyong Wan) -// -// Low-level types and utilities for porting Google Test to various -// platforms. They are subject to change without notice. DO NOT USE -// THEM IN USER CODE. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ - -// The user can define the following macros in the build script to -// control Google Test's behavior. If the user doesn't define a macro -// in this list, Google Test will define it. -// -// GTEST_HAS_CLONE - Define it to 1/0 to indicate that clone(2) -// is/isn't available. -// GTEST_HAS_EXCEPTIONS - Define it to 1/0 to indicate that exceptions -// are enabled. -// GTEST_HAS_GLOBAL_STRING - Define it to 1/0 to indicate that ::string -// is/isn't available (some systems define -// ::string, which is different to std::string). -// GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::string -// is/isn't available (some systems define -// ::wstring, which is different to std::wstring). -// GTEST_HAS_PTHREAD - Define it to 1/0 to indicate that -// is/isn't available. -// GTEST_HAS_RTTI - Define it to 1/0 to indicate that RTTI is/isn't -// enabled. -// GTEST_HAS_STD_WSTRING - Define it to 1/0 to indicate that -// std::wstring does/doesn't work (Google Test can -// be used where std::wstring is unavailable). -// GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple -// is/isn't available. -// GTEST_HAS_SEH - Define it to 1/0 to indicate whether the -// compiler supports Microsoft's "Structured -// Exception Handling". -// GTEST_USE_OWN_TR1_TUPLE - Define it to 1/0 to indicate whether Google -// Test's own tr1 tuple implementation should be -// used. Unused when the user sets -// GTEST_HAS_TR1_TUPLE to 0. -// GTEST_LINKED_AS_SHARED_LIBRARY -// - Define to 1 when compiling tests that use -// Google Test as a shared library (known as -// DLL on Windows). -// GTEST_CREATE_SHARED_LIBRARY -// - Define to 1 when compiling Google Test itself -// as a shared library. - -// This header defines the following utilities: -// -// Macros indicating the current platform (defined to 1 if compiled on -// the given platform; otherwise undefined): -// GTEST_OS_AIX - IBM AIX -// GTEST_OS_CYGWIN - Cygwin -// GTEST_OS_LINUX - Linux -// GTEST_OS_MAC - Mac OS X -// GTEST_OS_SOLARIS - Sun Solaris -// GTEST_OS_SYMBIAN - Symbian -// GTEST_OS_WINDOWS - Windows (Desktop, MinGW, or Mobile) -// GTEST_OS_WINDOWS_DESKTOP - Windows Desktop -// GTEST_OS_WINDOWS_MINGW - MinGW -// GTEST_OS_WINDOWS_MOBILE - Windows Mobile -// GTEST_OS_ZOS - z/OS -// -// Among the platforms, Cygwin, Linux, Max OS X, and Windows have the -// most stable support. Since core members of the Google Test project -// don't have access to other platforms, support for them may be less -// stable. If you notice any problems on your platform, please notify -// googletestframework@googlegroups.com (patches for fixing them are -// even more welcome!). -// -// Note that it is possible that none of the GTEST_OS_* macros are defined. -// -// Macros indicating available Google Test features (defined to 1 if -// the corresponding feature is supported; otherwise undefined): -// GTEST_HAS_COMBINE - the Combine() function (for value-parameterized -// tests) -// GTEST_HAS_DEATH_TEST - death tests -// GTEST_HAS_PARAM_TEST - value-parameterized tests -// GTEST_HAS_TYPED_TEST - typed tests -// GTEST_HAS_TYPED_TEST_P - type-parameterized tests -// GTEST_USES_POSIX_RE - enhanced POSIX regex is used. -// GTEST_USES_SIMPLE_RE - our own simple regex is used; -// the above two are mutually exclusive. -// GTEST_CAN_COMPARE_NULL - accepts untyped NULL in EXPECT_EQ(). -// -// Macros for basic C++ coding: -// GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning. -// GTEST_ATTRIBUTE_UNUSED_ - declares that a class' instances or a -// variable don't have to be used. -// GTEST_DISALLOW_ASSIGN_ - disables operator=. -// GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=. -// GTEST_MUST_USE_RESULT_ - declares that a function's result must be used. -// -// Synchronization: -// Mutex, MutexLock, ThreadLocal, GetThreadCount() -// - synchronization primitives. -// GTEST_IS_THREADSAFE - defined to 1 to indicate that the above -// synchronization primitives have real implementations -// and Google Test is thread-safe; or 0 otherwise. -// -// Template meta programming: -// is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. -// -// Smart pointers: -// scoped_ptr - as in TR2. -// -// Regular expressions: -// RE - a simple regular expression class using the POSIX -// Extended Regular Expression syntax. Not available on -// Windows. -// -// Logging: -// GTEST_LOG_() - logs messages at the specified severity level. -// LogToStderr() - directs all log messages to stderr. -// FlushInfoLog() - flushes informational log messages. -// -// Stdout and stderr capturing: -// CaptureStdout() - starts capturing stdout. -// GetCapturedStdout() - stops capturing stdout and returns the captured -// string. -// CaptureStderr() - starts capturing stderr. -// GetCapturedStderr() - stops capturing stderr and returns the captured -// string. -// -// Integer types: -// TypeWithSize - maps an integer to a int type. -// Int32, UInt32, Int64, UInt64, TimeInMillis -// - integers of known sizes. -// BiggestInt - the biggest signed integer type. -// -// Command-line utilities: -// GTEST_FLAG() - references a flag. -// GTEST_DECLARE_*() - declares a flag. -// GTEST_DEFINE_*() - defines a flag. -// GetArgvs() - returns the command line as a vector of strings. -// -// Environment variable utilities: -// GetEnv() - gets the value of an environment variable. -// BoolFromGTestEnv() - parses a bool environment variable. -// Int32FromGTestEnv() - parses an Int32 environment variable. -// StringFromGTestEnv() - parses a string environment variable. - -#include // For ptrdiff_t -#include -#include -#include -#ifndef _WIN32_WCE -#include -#endif // !_WIN32_WCE - -#include // NOLINT -#include // NOLINT -#include // NOLINT - -#define GTEST_DEV_EMAIL_ "googletestframework@@googlegroups.com" -#define GTEST_FLAG_PREFIX_ "gtest_" -#define GTEST_FLAG_PREFIX_DASH_ "gtest-" -#define GTEST_FLAG_PREFIX_UPPER_ "GTEST_" -#define GTEST_NAME_ "Google Test" -#define GTEST_PROJECT_URL_ "http://code.google.com/p/googletest/" - -// Determines the version of gcc that is used to compile this. -#ifdef __GNUC__ -// 40302 means version 4.3.2. -#define GTEST_GCC_VER_ \ - (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__) -#endif // __GNUC__ - -// Determines the platform on which Google Test is compiled. -#ifdef __CYGWIN__ -#define GTEST_OS_CYGWIN 1 -#elif defined __SYMBIAN32__ -#define GTEST_OS_SYMBIAN 1 -#elif defined _WIN32 -#define GTEST_OS_WINDOWS 1 -#ifdef _WIN32_WCE -#define GTEST_OS_WINDOWS_MOBILE 1 -#elif defined(__MINGW__) || defined(__MINGW32__) -#define GTEST_OS_WINDOWS_MINGW 1 -#else -#define GTEST_OS_WINDOWS_DESKTOP 1 -#endif // _WIN32_WCE -#elif defined __APPLE__ -#define GTEST_OS_MAC 1 -#elif defined __linux__ -#define GTEST_OS_LINUX 1 -#elif defined __MVS__ -#define GTEST_OS_ZOS 1 -#elif defined(__sun) && defined(__SVR4) -#define GTEST_OS_SOLARIS 1 -#elif defined(_AIX) -#define GTEST_OS_AIX 1 -#endif // __CYGWIN__ - -#if GTEST_OS_CYGWIN || GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_SYMBIAN || \ - GTEST_OS_SOLARIS || GTEST_OS_AIX - -// On some platforms, needs someone to define size_t, and -// won't compile otherwise. We can #include it here as we already -// included , which is guaranteed to define size_t through -// . -#include // NOLINT -#include // NOLINT -#include // NOLINT -#include // NOLINT -#include // NOLINT - -#define GTEST_USES_POSIX_RE 1 - -#elif GTEST_OS_WINDOWS - -#if !GTEST_OS_WINDOWS_MOBILE -#include // NOLINT -#include // NOLINT -#endif - -// is not available on Windows. Use our own simple regex -// implementation instead. -#define GTEST_USES_SIMPLE_RE 1 - -#else - -// may not be available on this platform. Use our own -// simple regex implementation instead. -#define GTEST_USES_SIMPLE_RE 1 - -#endif // GTEST_OS_CYGWIN || GTEST_OS_LINUX || GTEST_OS_MAC || - // GTEST_OS_SYMBIAN || GTEST_OS_SOLARIS || GTEST_OS_AIX - -#ifndef GTEST_HAS_EXCEPTIONS -// The user didn't tell us whether exceptions are enabled, so we need -// to figure it out. -#if defined(_MSC_VER) || defined(__BORLANDC__) -// MSVC's and C++Builder's implementations of the STL use the _HAS_EXCEPTIONS -// macro to enable exceptions, so we'll do the same. -// Assumes that exceptions are enabled by default. -#ifndef _HAS_EXCEPTIONS -#define _HAS_EXCEPTIONS 1 -#endif // _HAS_EXCEPTIONS -#define GTEST_HAS_EXCEPTIONS _HAS_EXCEPTIONS -#elif defined(__GNUC__) && __EXCEPTIONS -// gcc defines __EXCEPTIONS to 1 iff exceptions are enabled. -#define GTEST_HAS_EXCEPTIONS 1 -#elif defined(__SUNPRO_CC) -// Sun Pro CC supports exceptions. However, there is no compile-time way of -// detecting whether they are enabled or not. Therefore, we assume that -// they are enabled unless the user tells us otherwise. -#define GTEST_HAS_EXCEPTIONS 1 -#elif defined(__IBMCPP__) && __EXCEPTIONS -// xlC defines __EXCEPTIONS to 1 iff exceptions are enabled. -#define GTEST_HAS_EXCEPTIONS 1 -#else -// For other compilers, we assume exceptions are disabled to be -// conservative. -#define GTEST_HAS_EXCEPTIONS 0 -#endif // defined(_MSC_VER) || defined(__BORLANDC__) -#endif // GTEST_HAS_EXCEPTIONS - -#if !defined(GTEST_HAS_STD_STRING) -// Even though we don't use this macro any longer, we keep it in case -// some clients still depend on it. -#define GTEST_HAS_STD_STRING 1 -#elif !GTEST_HAS_STD_STRING -// The user told us that ::std::string isn't available. -#error "Google Test cannot be used where ::std::string isn't available." -#endif // !defined(GTEST_HAS_STD_STRING) - -#ifndef GTEST_HAS_GLOBAL_STRING -// The user didn't tell us whether ::string is available, so we need -// to figure it out. - -#define GTEST_HAS_GLOBAL_STRING 0 - -#endif // GTEST_HAS_GLOBAL_STRING - -#ifndef GTEST_HAS_STD_WSTRING -// The user didn't tell us whether ::std::wstring is available, so we need -// to figure it out. -// TODO(wan@google.com): uses autoconf to detect whether ::std::wstring -// is available. - -// Cygwin 1.5 and below doesn't support ::std::wstring. -// Cygwin 1.7 might add wstring support; this should be updated when clear. -// Solaris' libc++ doesn't support it either. -#define GTEST_HAS_STD_WSTRING (!(GTEST_OS_CYGWIN || GTEST_OS_SOLARIS)) - -#endif // GTEST_HAS_STD_WSTRING - -#ifndef GTEST_HAS_GLOBAL_WSTRING -// The user didn't tell us whether ::wstring is available, so we need -// to figure it out. -#define GTEST_HAS_GLOBAL_WSTRING \ - (GTEST_HAS_STD_WSTRING && GTEST_HAS_GLOBAL_STRING) -#endif // GTEST_HAS_GLOBAL_WSTRING - -// Determines whether RTTI is available. -#ifndef GTEST_HAS_RTTI -// The user didn't tell us whether RTTI is enabled, so we need to -// figure it out. - -#ifdef _MSC_VER - -#ifdef _CPPRTTI // MSVC defines this macro iff RTTI is enabled. -#define GTEST_HAS_RTTI 1 -#else -#define GTEST_HAS_RTTI 0 -#endif - -// Starting with version 4.3.2, gcc defines __GXX_RTTI iff RTTI is enabled. -#elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40302) - -#ifdef __GXX_RTTI -#define GTEST_HAS_RTTI 1 -#else -#define GTEST_HAS_RTTI 0 -#endif // __GXX_RTTI - -// Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if -// both the typeid and dynamic_cast features are present. -#elif defined(__IBMCPP__) && (__IBMCPP__ >= 900) - -#ifdef __RTTI_ALL__ -#define GTEST_HAS_RTTI 1 -#else -#define GTEST_HAS_RTTI 0 -#endif - -#else - -// For all other compilers, we assume RTTI is enabled. -#define GTEST_HAS_RTTI 1 - -#endif // _MSC_VER - -#endif // GTEST_HAS_RTTI - -// It's this header's responsibility to #include when RTTI -// is enabled. -#if GTEST_HAS_RTTI -#include -#endif - -// Determines whether Google Test can use the pthreads library. -#ifndef GTEST_HAS_PTHREAD -// The user didn't tell us explicitly, so we assume pthreads support is -// available on Linux and Mac. -// -// To disable threading support in Google Test, add -DGTEST_HAS_PTHREAD=0 -// to your compiler flags. -#define GTEST_HAS_PTHREAD (GTEST_OS_LINUX || GTEST_OS_MAC) -#endif // GTEST_HAS_PTHREAD - -// Determines whether Google Test can use tr1/tuple. You can define -// this macro to 0 to prevent Google Test from using tuple (any -// feature depending on tuple with be disabled in this mode). -#ifndef GTEST_HAS_TR1_TUPLE -// The user didn't tell us not to do it, so we assume it's OK. -#define GTEST_HAS_TR1_TUPLE 1 -#endif // GTEST_HAS_TR1_TUPLE - -// Determines whether Google Test's own tr1 tuple implementation -// should be used. -#ifndef GTEST_USE_OWN_TR1_TUPLE -// The user didn't tell us, so we need to figure it out. - -// We use our own TR1 tuple if we aren't sure the user has an -// implementation of it already. At this time, GCC 4.0.0+ and MSVC -// 2010 are the only mainstream compilers that come with a TR1 tuple -// implementation. NVIDIA's CUDA NVCC compiler pretends to be GCC by -// defining __GNUC__ and friends, but cannot compile GCC's tuple -// implementation. MSVC 2008 (9.0) provides TR1 tuple in a 323 MB -// Feature Pack download, which we cannot assume the user has. -#if (defined(__GNUC__) && !defined(__CUDACC__) && (GTEST_GCC_VER_ >= 40000)) \ - || _MSC_VER >= 1600 -#define GTEST_USE_OWN_TR1_TUPLE 0 -#else -#define GTEST_USE_OWN_TR1_TUPLE 1 -#endif - -#endif // GTEST_USE_OWN_TR1_TUPLE - -// To avoid conditional compilation everywhere, we make it -// gtest-port.h's responsibility to #include the header implementing -// tr1/tuple. -#if GTEST_HAS_TR1_TUPLE - -#if GTEST_USE_OWN_TR1_TUPLE -// This file was GENERATED by a script. DO NOT EDIT BY HAND!!! - -// Copyright 2009 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Implements a subset of TR1 tuple needed by Google Test and Google Mock. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ - -#include // For ::std::pair. - -// The compiler used in Symbian has a bug that prevents us from declaring the -// tuple template as a friend (it complains that tuple is redefined). This -// hack bypasses the bug by declaring the members that should otherwise be -// private as public. -// Sun Studio versions < 12 also have the above bug. -#if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590) -#define GTEST_DECLARE_TUPLE_AS_FRIEND_ public: -#else -#define GTEST_DECLARE_TUPLE_AS_FRIEND_ \ - template friend class tuple; \ - private: -#endif - -// GTEST_n_TUPLE_(T) is the type of an n-tuple. -#define GTEST_0_TUPLE_(T) tuple<> -#define GTEST_1_TUPLE_(T) tuple -#define GTEST_2_TUPLE_(T) tuple -#define GTEST_3_TUPLE_(T) tuple -#define GTEST_4_TUPLE_(T) tuple -#define GTEST_5_TUPLE_(T) tuple -#define GTEST_6_TUPLE_(T) tuple -#define GTEST_7_TUPLE_(T) tuple -#define GTEST_8_TUPLE_(T) tuple -#define GTEST_9_TUPLE_(T) tuple -#define GTEST_10_TUPLE_(T) tuple - -// GTEST_n_TYPENAMES_(T) declares a list of n typenames. -#define GTEST_0_TYPENAMES_(T) -#define GTEST_1_TYPENAMES_(T) typename T##0 -#define GTEST_2_TYPENAMES_(T) typename T##0, typename T##1 -#define GTEST_3_TYPENAMES_(T) typename T##0, typename T##1, typename T##2 -#define GTEST_4_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3 -#define GTEST_5_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4 -#define GTEST_6_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4, typename T##5 -#define GTEST_7_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4, typename T##5, typename T##6 -#define GTEST_8_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4, typename T##5, typename T##6, typename T##7 -#define GTEST_9_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4, typename T##5, typename T##6, \ - typename T##7, typename T##8 -#define GTEST_10_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4, typename T##5, typename T##6, \ - typename T##7, typename T##8, typename T##9 - -// In theory, defining stuff in the ::std namespace is undefined -// behavior. We can do this as we are playing the role of a standard -// library vendor. -namespace std { -namespace tr1 { - -template -class tuple; - -// Anything in namespace gtest_internal is Google Test's INTERNAL -// IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code. -namespace gtest_internal { - -// ByRef::type is T if T is a reference; otherwise it's const T&. -template -struct ByRef { typedef const T& type; }; // NOLINT -template -struct ByRef { typedef T& type; }; // NOLINT - -// A handy wrapper for ByRef. -#define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef::type - -// AddRef::type is T if T is a reference; otherwise it's T&. This -// is the same as tr1::add_reference::type. -template -struct AddRef { typedef T& type; }; // NOLINT -template -struct AddRef { typedef T& type; }; // NOLINT - -// A handy wrapper for AddRef. -#define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef::type - -// A helper for implementing get(). -template class Get; - -// A helper for implementing tuple_element. kIndexValid is true -// iff k < the number of fields in tuple type T. -template -struct TupleElement; - -template -struct TupleElement { typedef T0 type; }; - -template -struct TupleElement { typedef T1 type; }; - -template -struct TupleElement { typedef T2 type; }; - -template -struct TupleElement { typedef T3 type; }; - -template -struct TupleElement { typedef T4 type; }; - -template -struct TupleElement { typedef T5 type; }; - -template -struct TupleElement { typedef T6 type; }; - -template -struct TupleElement { typedef T7 type; }; - -template -struct TupleElement { typedef T8 type; }; - -template -struct TupleElement { typedef T9 type; }; - -} // namespace gtest_internal - -template <> -class tuple<> { - public: - tuple() {} - tuple(const tuple& /* t */) {} - tuple& operator=(const tuple& /* t */) { return *this; } -}; - -template -class GTEST_1_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0) : f0_(f0) {} - - tuple(const tuple& t) : f0_(t.f0_) {} - - template - tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_1_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) { - f0_ = t.f0_; - return *this; - } - - T0 f0_; -}; - -template -class GTEST_2_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1) : f0_(f0), - f1_(f1) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} - - template - tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {} - template - tuple(const ::std::pair& p) : f0_(p.first), f1_(p.second) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_2_TUPLE_(U)& t) { - return CopyFrom(t); - } - template - tuple& operator=(const ::std::pair& p) { - f0_ = p.first; - f1_ = p.second; - return *this; - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - return *this; - } - - T0 f0_; - T1 f1_; -}; - -template -class GTEST_3_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2) : f0_(f0), f1_(f1), f2_(f2) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} - - template - tuple(const GTEST_3_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_3_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; -}; - -template -class GTEST_4_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2), - f3_(f3) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} - - template - tuple(const GTEST_4_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_4_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_4_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; -}; - -template -class GTEST_5_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, - GTEST_BY_REF_(T4) f4) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_) {} - - template - tuple(const GTEST_5_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_5_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_5_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; -}; - -template -class GTEST_6_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, - GTEST_BY_REF_(T5) f5) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), - f5_(f5) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_), f5_(t.f5_) {} - - template - tuple(const GTEST_6_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_6_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_6_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - f5_ = t.f5_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; - T5 f5_; -}; - -template -class GTEST_7_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, - GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6) : f0_(f0), f1_(f1), f2_(f2), - f3_(f3), f4_(f4), f5_(f5), f6_(f6) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} - - template - tuple(const GTEST_7_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_7_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_7_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - f5_ = t.f5_; - f6_ = t.f6_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; - T5 f5_; - T6 f6_; -}; - -template -class GTEST_8_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, - GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, - GTEST_BY_REF_(T7) f7) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), - f5_(f5), f6_(f6), f7_(f7) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} - - template - tuple(const GTEST_8_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_8_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_8_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - f5_ = t.f5_; - f6_ = t.f6_; - f7_ = t.f7_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; - T5 f5_; - T6 f6_; - T7 f7_; -}; - -template -class GTEST_9_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, - GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, - GTEST_BY_REF_(T8) f8) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), - f5_(f5), f6_(f6), f7_(f7), f8_(f8) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} - - template - tuple(const GTEST_9_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_9_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_9_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - f5_ = t.f5_; - f6_ = t.f6_; - f7_ = t.f7_; - f8_ = t.f8_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; - T5 f5_; - T6 f6_; - T7 f7_; - T8 f8_; -}; - -template -class tuple { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), - f9_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, - GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, - GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2), - f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {} - - template - tuple(const GTEST_10_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), - f9_(t.f9_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_10_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_10_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - f5_ = t.f5_; - f6_ = t.f6_; - f7_ = t.f7_; - f8_ = t.f8_; - f9_ = t.f9_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; - T5 f5_; - T6 f6_; - T7 f7_; - T8 f8_; - T9 f9_; -}; - -// 6.1.3.2 Tuple creation functions. - -// Known limitations: we don't support passing an -// std::tr1::reference_wrapper to make_tuple(). And we don't -// implement tie(). - -inline tuple<> make_tuple() { return tuple<>(); } - -template -inline GTEST_1_TUPLE_(T) make_tuple(const T0& f0) { - return GTEST_1_TUPLE_(T)(f0); -} - -template -inline GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) { - return GTEST_2_TUPLE_(T)(f0, f1); -} - -template -inline GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) { - return GTEST_3_TUPLE_(T)(f0, f1, f2); -} - -template -inline GTEST_4_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3) { - return GTEST_4_TUPLE_(T)(f0, f1, f2, f3); -} - -template -inline GTEST_5_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4) { - return GTEST_5_TUPLE_(T)(f0, f1, f2, f3, f4); -} - -template -inline GTEST_6_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4, const T5& f5) { - return GTEST_6_TUPLE_(T)(f0, f1, f2, f3, f4, f5); -} - -template -inline GTEST_7_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4, const T5& f5, const T6& f6) { - return GTEST_7_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6); -} - -template -inline GTEST_8_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7) { - return GTEST_8_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7); -} - -template -inline GTEST_9_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, - const T8& f8) { - return GTEST_9_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8); -} - -template -inline GTEST_10_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, - const T8& f8, const T9& f9) { - return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9); -} - -// 6.1.3.3 Tuple helper classes. - -template struct tuple_size; - -template -struct tuple_size { static const int value = 0; }; - -template -struct tuple_size { static const int value = 1; }; - -template -struct tuple_size { static const int value = 2; }; - -template -struct tuple_size { static const int value = 3; }; - -template -struct tuple_size { static const int value = 4; }; - -template -struct tuple_size { static const int value = 5; }; - -template -struct tuple_size { static const int value = 6; }; - -template -struct tuple_size { static const int value = 7; }; - -template -struct tuple_size { static const int value = 8; }; - -template -struct tuple_size { static const int value = 9; }; - -template -struct tuple_size { static const int value = 10; }; - -template -struct tuple_element { - typedef typename gtest_internal::TupleElement< - k < (tuple_size::value), k, Tuple>::type type; -}; - -#define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element::type - -// 6.1.3.4 Element access. - -namespace gtest_internal { - -template <> -class Get<0> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) - Field(Tuple& t) { return t.f0_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) - ConstField(const Tuple& t) { return t.f0_; } -}; - -template <> -class Get<1> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) - Field(Tuple& t) { return t.f1_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) - ConstField(const Tuple& t) { return t.f1_; } -}; - -template <> -class Get<2> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) - Field(Tuple& t) { return t.f2_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) - ConstField(const Tuple& t) { return t.f2_; } -}; - -template <> -class Get<3> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) - Field(Tuple& t) { return t.f3_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) - ConstField(const Tuple& t) { return t.f3_; } -}; - -template <> -class Get<4> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) - Field(Tuple& t) { return t.f4_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) - ConstField(const Tuple& t) { return t.f4_; } -}; - -template <> -class Get<5> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) - Field(Tuple& t) { return t.f5_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) - ConstField(const Tuple& t) { return t.f5_; } -}; - -template <> -class Get<6> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) - Field(Tuple& t) { return t.f6_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) - ConstField(const Tuple& t) { return t.f6_; } -}; - -template <> -class Get<7> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) - Field(Tuple& t) { return t.f7_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) - ConstField(const Tuple& t) { return t.f7_; } -}; - -template <> -class Get<8> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) - Field(Tuple& t) { return t.f8_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) - ConstField(const Tuple& t) { return t.f8_; } -}; - -template <> -class Get<9> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) - Field(Tuple& t) { return t.f9_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) - ConstField(const Tuple& t) { return t.f9_; } -}; - -} // namespace gtest_internal - -template -GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) -get(GTEST_10_TUPLE_(T)& t) { - return gtest_internal::Get::Field(t); -} - -template -GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) -get(const GTEST_10_TUPLE_(T)& t) { - return gtest_internal::Get::ConstField(t); -} - -// 6.1.3.5 Relational operators - -// We only implement == and !=, as we don't have a need for the rest yet. - -namespace gtest_internal { - -// SameSizeTuplePrefixComparator::Eq(t1, t2) returns true if the -// first k fields of t1 equals the first k fields of t2. -// SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if -// k1 != k2. -template -struct SameSizeTuplePrefixComparator; - -template <> -struct SameSizeTuplePrefixComparator<0, 0> { - template - static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) { - return true; - } -}; - -template -struct SameSizeTuplePrefixComparator { - template - static bool Eq(const Tuple1& t1, const Tuple2& t2) { - return SameSizeTuplePrefixComparator::Eq(t1, t2) && - ::std::tr1::get(t1) == ::std::tr1::get(t2); - } -}; - -} // namespace gtest_internal - -template -inline bool operator==(const GTEST_10_TUPLE_(T)& t, - const GTEST_10_TUPLE_(U)& u) { - return gtest_internal::SameSizeTuplePrefixComparator< - tuple_size::value, - tuple_size::value>::Eq(t, u); -} - -template -inline bool operator!=(const GTEST_10_TUPLE_(T)& t, - const GTEST_10_TUPLE_(U)& u) { return !(t == u); } - -// 6.1.4 Pairs. -// Unimplemented. - -} // namespace tr1 -} // namespace std - -#undef GTEST_0_TUPLE_ -#undef GTEST_1_TUPLE_ -#undef GTEST_2_TUPLE_ -#undef GTEST_3_TUPLE_ -#undef GTEST_4_TUPLE_ -#undef GTEST_5_TUPLE_ -#undef GTEST_6_TUPLE_ -#undef GTEST_7_TUPLE_ -#undef GTEST_8_TUPLE_ -#undef GTEST_9_TUPLE_ -#undef GTEST_10_TUPLE_ - -#undef GTEST_0_TYPENAMES_ -#undef GTEST_1_TYPENAMES_ -#undef GTEST_2_TYPENAMES_ -#undef GTEST_3_TYPENAMES_ -#undef GTEST_4_TYPENAMES_ -#undef GTEST_5_TYPENAMES_ -#undef GTEST_6_TYPENAMES_ -#undef GTEST_7_TYPENAMES_ -#undef GTEST_8_TYPENAMES_ -#undef GTEST_9_TYPENAMES_ -#undef GTEST_10_TYPENAMES_ - -#undef GTEST_DECLARE_TUPLE_AS_FRIEND_ -#undef GTEST_BY_REF_ -#undef GTEST_ADD_REF_ -#undef GTEST_TUPLE_ELEMENT_ - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ -#elif GTEST_OS_SYMBIAN - -// On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to -// use STLport's tuple implementation, which unfortunately doesn't -// work as the copy of STLport distributed with Symbian is incomplete. -// By making sure BOOST_HAS_TR1_TUPLE is undefined, we force Boost to -// use its own tuple implementation. -#ifdef BOOST_HAS_TR1_TUPLE -#undef BOOST_HAS_TR1_TUPLE -#endif // BOOST_HAS_TR1_TUPLE - -// This prevents , which defines -// BOOST_HAS_TR1_TUPLE, from being #included by Boost's . -#define BOOST_TR1_DETAIL_CONFIG_HPP_INCLUDED -#include - -#elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000) -// GCC 4.0+ implements tr1/tuple in the header. This does -// not conform to the TR1 spec, which requires the header to be . - -#if !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302 -// Until version 4.3.2, gcc has a bug that causes , -// which is #included by , to not compile when RTTI is -// disabled. _TR1_FUNCTIONAL is the header guard for -// . Hence the following #define is a hack to prevent -// from being included. -#define _TR1_FUNCTIONAL 1 -#include -#undef _TR1_FUNCTIONAL // Allows the user to #include - // if he chooses to. -#else -#include // NOLINT -#endif // !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302 - -#else -// If the compiler is not GCC 4.0+, we assume the user is using a -// spec-conforming TR1 implementation. -#include // NOLINT -#endif // GTEST_USE_OWN_TR1_TUPLE - -#endif // GTEST_HAS_TR1_TUPLE - -// Determines whether clone(2) is supported. -// Usually it will only be available on Linux, excluding -// Linux on the Itanium architecture. -// Also see http://linux.die.net/man/2/clone. -#ifndef GTEST_HAS_CLONE -// The user didn't tell us, so we need to figure it out. - -#if GTEST_OS_LINUX && !defined(__ia64__) -#define GTEST_HAS_CLONE 1 -#else -#define GTEST_HAS_CLONE 0 -#endif // GTEST_OS_LINUX && !defined(__ia64__) - -#endif // GTEST_HAS_CLONE - -// Determines whether to support stream redirection. This is used to test -// output correctness and to implement death tests. -#if !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_SYMBIAN -#define GTEST_HAS_STREAM_REDIRECTION_ 1 -#endif // !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_SYMBIAN - -// Determines whether to support death tests. -// Google Test does not support death tests for VC 7.1 and earlier as -// abort() in a VC 7.1 application compiled as GUI in debug config -// pops up a dialog window that cannot be suppressed programmatically. -#if (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \ - (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \ - GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX) -#define GTEST_HAS_DEATH_TEST 1 -#include // NOLINT -#endif - -// We don't support MSVC 7.1 with exceptions disabled now. Therefore -// all the compilers we care about are adequate for supporting -// value-parameterized tests. -#define GTEST_HAS_PARAM_TEST 1 - -// Determines whether to support type-driven tests. - -// Typed tests need and variadic macros, which GCC, VC++ 8.0, -// Sun Pro CC, and IBM Visual Age support. -#if defined(__GNUC__) || (_MSC_VER >= 1400) || defined(__SUNPRO_CC) || \ - defined(__IBMCPP__) -#define GTEST_HAS_TYPED_TEST 1 -#define GTEST_HAS_TYPED_TEST_P 1 -#endif - -// Determines whether to support Combine(). This only makes sense when -// value-parameterized tests are enabled. The implementation doesn't -// work on Sun Studio since it doesn't understand templated conversion -// operators. -#if GTEST_HAS_PARAM_TEST && GTEST_HAS_TR1_TUPLE && !defined(__SUNPRO_CC) -#define GTEST_HAS_COMBINE 1 -#endif - -// Determines whether the system compiler uses UTF-16 for encoding wide strings. -#define GTEST_WIDE_STRING_USES_UTF16_ \ - (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_SYMBIAN || GTEST_OS_AIX) - -// Defines some utility macros. - -// The GNU compiler emits a warning if nested "if" statements are followed by -// an "else" statement and braces are not used to explicitly disambiguate the -// "else" binding. This leads to problems with code like: -// -// if (gate) -// ASSERT_*(condition) << "Some message"; -// -// The "switch (0) case 0:" idiom is used to suppress this. -#ifdef __INTEL_COMPILER -#define GTEST_AMBIGUOUS_ELSE_BLOCKER_ -#else -#define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: // NOLINT -#endif - -// Use this annotation at the end of a struct/class definition to -// prevent the compiler from optimizing away instances that are never -// used. This is useful when all interesting logic happens inside the -// c'tor and / or d'tor. Example: -// -// struct Foo { -// Foo() { ... } -// } GTEST_ATTRIBUTE_UNUSED_; -// -// Also use it after a variable or parameter declaration to tell the -// compiler the variable/parameter does not have to be used. -#if defined(__GNUC__) && !defined(COMPILER_ICC) -#define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused)) -#else -#define GTEST_ATTRIBUTE_UNUSED_ -#endif - -// A macro to disallow operator= -// This should be used in the private: declarations for a class. -#define GTEST_DISALLOW_ASSIGN_(type)\ - void operator=(type const &) - -// A macro to disallow copy constructor and operator= -// This should be used in the private: declarations for a class. -#define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)\ - type(type const &);\ - GTEST_DISALLOW_ASSIGN_(type) - -// Tell the compiler to warn about unused return values for functions declared -// with this macro. The macro should be used on function declarations -// following the argument list: -// -// Sprocket* AllocateSprocket() GTEST_MUST_USE_RESULT_; -#if defined(__GNUC__) && (GTEST_GCC_VER_ >= 30400) && !defined(COMPILER_ICC) -#define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result)) -#else -#define GTEST_MUST_USE_RESULT_ -#endif // __GNUC__ && (GTEST_GCC_VER_ >= 30400) && !COMPILER_ICC - -// Determine whether the compiler supports Microsoft's Structured Exception -// Handling. This is supported by several Windows compilers but generally -// does not exist on any other system. -#ifndef GTEST_HAS_SEH -// The user didn't tell us, so we need to figure it out. - -#if defined(_MSC_VER) || defined(__BORLANDC__) -// These two compilers are known to support SEH. -#define GTEST_HAS_SEH 1 -#else -// Assume no SEH. -#define GTEST_HAS_SEH 0 -#endif - -#endif // GTEST_HAS_SEH - -#ifdef _MSC_VER - -#if GTEST_LINKED_AS_SHARED_LIBRARY -#define GTEST_API_ __declspec(dllimport) -#elif GTEST_CREATE_SHARED_LIBRARY -#define GTEST_API_ __declspec(dllexport) -#endif - -#endif // _MSC_VER - -#ifndef GTEST_API_ -#define GTEST_API_ -#endif - -namespace testing { - -class Message; - -namespace internal { - -class String; - -typedef ::std::stringstream StrStream; - -// A helper for suppressing warnings on constant condition. It just -// returns 'condition'. -GTEST_API_ bool IsTrue(bool condition); - -// Defines scoped_ptr. - -// This implementation of scoped_ptr is PARTIAL - it only contains -// enough stuff to satisfy Google Test's need. -template -class scoped_ptr { - public: - typedef T element_type; - - explicit scoped_ptr(T* p = NULL) : ptr_(p) {} - ~scoped_ptr() { reset(); } - - T& operator*() const { return *ptr_; } - T* operator->() const { return ptr_; } - T* get() const { return ptr_; } - - T* release() { - T* const ptr = ptr_; - ptr_ = NULL; - return ptr; - } - - void reset(T* p = NULL) { - if (p != ptr_) { - if (IsTrue(sizeof(T) > 0)) { // Makes sure T is a complete type. - delete ptr_; - } - ptr_ = p; - } - } - private: - T* ptr_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr); -}; - -// Defines RE. - -// A simple C++ wrapper for . It uses the POSIX Extended -// Regular Expression syntax. -class GTEST_API_ RE { - public: - // A copy constructor is required by the Standard to initialize object - // references from r-values. - RE(const RE& other) { Init(other.pattern()); } - - // Constructs an RE from a string. - RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT - -#if GTEST_HAS_GLOBAL_STRING - RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT -#endif // GTEST_HAS_GLOBAL_STRING - - RE(const char* regex) { Init(regex); } // NOLINT - ~RE(); - - // Returns the string representation of the regex. - const char* pattern() const { return pattern_; } - - // FullMatch(str, re) returns true iff regular expression re matches - // the entire str. - // PartialMatch(str, re) returns true iff regular expression re - // matches a substring of str (including str itself). - // - // TODO(wan@google.com): make FullMatch() and PartialMatch() work - // when str contains NUL characters. - static bool FullMatch(const ::std::string& str, const RE& re) { - return FullMatch(str.c_str(), re); - } - static bool PartialMatch(const ::std::string& str, const RE& re) { - return PartialMatch(str.c_str(), re); - } - -#if GTEST_HAS_GLOBAL_STRING - static bool FullMatch(const ::string& str, const RE& re) { - return FullMatch(str.c_str(), re); - } - static bool PartialMatch(const ::string& str, const RE& re) { - return PartialMatch(str.c_str(), re); - } -#endif // GTEST_HAS_GLOBAL_STRING - - static bool FullMatch(const char* str, const RE& re); - static bool PartialMatch(const char* str, const RE& re); - - private: - void Init(const char* regex); - - // We use a const char* instead of a string, as Google Test may be used - // where string is not available. We also do not use Google Test's own - // String type here, in order to simplify dependencies between the - // files. - const char* pattern_; - bool is_valid_; -#if GTEST_USES_POSIX_RE - regex_t full_regex_; // For FullMatch(). - regex_t partial_regex_; // For PartialMatch(). -#else // GTEST_USES_SIMPLE_RE - const char* full_pattern_; // For FullMatch(); -#endif - - GTEST_DISALLOW_ASSIGN_(RE); -}; - -// Defines logging utilities: -// GTEST_LOG_(severity) - logs messages at the specified severity level. The -// message itself is streamed into the macro. -// LogToStderr() - directs all log messages to stderr. -// FlushInfoLog() - flushes informational log messages. - -enum GTestLogSeverity { - GTEST_INFO, - GTEST_WARNING, - GTEST_ERROR, - GTEST_FATAL -}; - -// Formats log entry severity, provides a stream object for streaming the -// log message, and terminates the message with a newline when going out of -// scope. -class GTEST_API_ GTestLog { - public: - GTestLog(GTestLogSeverity severity, const char* file, int line); - - // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. - ~GTestLog(); - - ::std::ostream& GetStream() { return ::std::cerr; } - - private: - const GTestLogSeverity severity_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestLog); -}; - -#define GTEST_LOG_(severity) \ - ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \ - __FILE__, __LINE__).GetStream() - -inline void LogToStderr() {} -inline void FlushInfoLog() { fflush(NULL); } - -// INTERNAL IMPLEMENTATION - DO NOT USE. -// -// GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition -// is not satisfied. -// Synopsys: -// GTEST_CHECK_(boolean_condition); -// or -// GTEST_CHECK_(boolean_condition) << "Additional message"; -// -// This checks the condition and if the condition is not satisfied -// it prints message about the condition violation, including the -// condition itself, plus additional message streamed into it, if any, -// and then it aborts the program. It aborts the program irrespective of -// whether it is built in the debug mode or not. -#define GTEST_CHECK_(condition) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (::testing::internal::IsTrue(condition)) \ - ; \ - else \ - GTEST_LOG_(FATAL) << "Condition " #condition " failed. " - -// An all-mode assert to verify that the given POSIX-style function -// call returns 0 (indicating success). Known limitation: this -// doesn't expand to a balanced 'if' statement, so enclose the macro -// in {} if you need to use it as the only statement in an 'if' -// branch. -#define GTEST_CHECK_POSIX_SUCCESS_(posix_call) \ - if (const int gtest_error = (posix_call)) \ - GTEST_LOG_(FATAL) << #posix_call << "failed with error " \ - << gtest_error - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Downcasts the pointer of type Base to Derived. -// Derived must be a subclass of Base. The parameter MUST -// point to a class of type Derived, not any subclass of it. -// When RTTI is available, the function performs a runtime -// check to enforce this. -template -Derived* CheckedDowncastToActualType(Base* base) { -#if GTEST_HAS_RTTI - GTEST_CHECK_(typeid(*base) == typeid(Derived)); - return dynamic_cast(base); // NOLINT -#else - return static_cast(base); // Poor man's downcast. -#endif -} - -#if GTEST_HAS_STREAM_REDIRECTION_ - -// Defines the stderr capturer: -// CaptureStdout - starts capturing stdout. -// GetCapturedStdout - stops capturing stdout and returns the captured string. -// CaptureStderr - starts capturing stderr. -// GetCapturedStderr - stops capturing stderr and returns the captured string. -// -GTEST_API_ void CaptureStdout(); -GTEST_API_ String GetCapturedStdout(); -GTEST_API_ void CaptureStderr(); -GTEST_API_ String GetCapturedStderr(); - -#endif // GTEST_HAS_STREAM_REDIRECTION_ - - -#if GTEST_HAS_DEATH_TEST - -// A copy of all command line arguments. Set by InitGoogleTest(). -extern ::std::vector g_argvs; - -// GTEST_HAS_DEATH_TEST implies we have ::std::string. -const ::std::vector& GetArgvs(); - -#endif // GTEST_HAS_DEATH_TEST - -// Defines synchronization primitives. - -#if GTEST_HAS_PTHREAD - -// Sleeps for (roughly) n milli-seconds. This function is only for -// testing Google Test's own constructs. Don't use it in user tests, -// either directly or indirectly. -inline void SleepMilliseconds(int n) { - const timespec time = { - 0, // 0 seconds. - n * 1000L * 1000L, // And n ms. - }; - nanosleep(&time, NULL); -} - -// Allows a controller thread to pause execution of newly created -// threads until notified. Instances of this class must be created -// and destroyed in the controller thread. -// -// This class is only for testing Google Test's own constructs. Do not -// use it in user tests, either directly or indirectly. -class Notification { - public: - Notification() : notified_(false) {} - - // Notifies all threads created with this notification to start. Must - // be called from the controller thread. - void Notify() { notified_ = true; } - - // Blocks until the controller thread notifies. Must be called from a test - // thread. - void WaitForNotification() { - while(!notified_) { - SleepMilliseconds(10); - } - } - - private: - volatile bool notified_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); -}; - -// As a C-function, ThreadFuncWithCLinkage cannot be templated itself. -// Consequently, it cannot select a correct instantiation of ThreadWithParam -// in order to call its Run(). Introducing ThreadWithParamBase as a -// non-templated base class for ThreadWithParam allows us to bypass this -// problem. -class ThreadWithParamBase { - public: - virtual ~ThreadWithParamBase() {} - virtual void Run() = 0; -}; - -// pthread_create() accepts a pointer to a function type with the C linkage. -// According to the Standard (7.5/1), function types with different linkages -// are different even if they are otherwise identical. Some compilers (for -// example, SunStudio) treat them as different types. Since class methods -// cannot be defined with C-linkage we need to define a free C-function to -// pass into pthread_create(). -extern "C" inline void* ThreadFuncWithCLinkage(void* thread) { - static_cast(thread)->Run(); - return NULL; -} - -// Helper class for testing Google Test's multi-threading constructs. -// To use it, write: -// -// void ThreadFunc(int param) { /* Do things with param */ } -// Notification thread_can_start; -// ... -// // The thread_can_start parameter is optional; you can supply NULL. -// ThreadWithParam thread(&ThreadFunc, 5, &thread_can_start); -// thread_can_start.Notify(); -// -// These classes are only for testing Google Test's own constructs. Do -// not use them in user tests, either directly or indirectly. -template -class ThreadWithParam : public ThreadWithParamBase { - public: - typedef void (*UserThreadFunc)(T); - - ThreadWithParam( - UserThreadFunc func, T param, Notification* thread_can_start) - : func_(func), - param_(param), - thread_can_start_(thread_can_start), - finished_(false) { - ThreadWithParamBase* const base = this; - // The thread can be created only after all fields except thread_ - // have been initialized. - GTEST_CHECK_POSIX_SUCCESS_( - pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base)); - } - ~ThreadWithParam() { Join(); } - - void Join() { - if (!finished_) { - GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, 0)); - finished_ = true; - } - } - - virtual void Run() { - if (thread_can_start_ != NULL) - thread_can_start_->WaitForNotification(); - func_(param_); - } - - private: - const UserThreadFunc func_; // User-supplied thread function. - const T param_; // User-supplied parameter to the thread function. - // When non-NULL, used to block execution until the controller thread - // notifies. - Notification* const thread_can_start_; - bool finished_; // true iff we know that the thread function has finished. - pthread_t thread_; // The native thread object. - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam); -}; - -// gtest-port.h guarantees to #include when GTEST_HAS_PTHREAD is -// true. -#include - -// MutexBase and Mutex implement mutex on pthreads-based platforms. They -// are used in conjunction with class MutexLock: -// -// Mutex mutex; -// ... -// MutexLock lock(&mutex); // Acquires the mutex and releases it at the end -// // of the current scope. -// -// MutexBase implements behavior for both statically and dynamically -// allocated mutexes. Do not use MutexBase directly. Instead, write -// the following to define a static mutex: -// -// GTEST_DEFINE_STATIC_MUTEX_(g_some_mutex); -// -// You can forward declare a static mutex like this: -// -// GTEST_DECLARE_STATIC_MUTEX_(g_some_mutex); -// -// To create a dynamic mutex, just define an object of type Mutex. -class MutexBase { - public: - // Acquires this mutex. - void Lock() { - GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_)); - owner_ = pthread_self(); - } - - // Releases this mutex. - void Unlock() { - // We don't protect writing to owner_ here, as it's the caller's - // responsibility to ensure that the current thread holds the - // mutex when this is called. - owner_ = 0; - GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_)); - } - - // Does nothing if the current thread holds the mutex. Otherwise, crashes - // with high probability. - void AssertHeld() const { - GTEST_CHECK_(owner_ == pthread_self()) - << "The current thread is not holding the mutex @" << this; - } - - // A static mutex may be used before main() is entered. It may even - // be used before the dynamic initialization stage. Therefore we - // must be able to initialize a static mutex object at link time. - // This means MutexBase has to be a POD and its member variables - // have to be public. - public: - pthread_mutex_t mutex_; // The underlying pthread mutex. - pthread_t owner_; // The thread holding the mutex; 0 means no one holds it. -}; - -// Forward-declares a static mutex. -#define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ - extern ::testing::internal::MutexBase mutex - -// Defines and statically (i.e. at link time) initializes a static mutex. -#define GTEST_DEFINE_STATIC_MUTEX_(mutex) \ - ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, 0 } - -// The Mutex class can only be used for mutexes created at runtime. It -// shares its API with MutexBase otherwise. -class Mutex : public MutexBase { - public: - Mutex() { - GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL)); - owner_ = 0; - } - ~Mutex() { - GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&mutex_)); - } - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex); -}; - -// We cannot name this class MutexLock as the ctor declaration would -// conflict with a macro named MutexLock, which is defined on some -// platforms. Hence the typedef trick below. -class GTestMutexLock { - public: - explicit GTestMutexLock(MutexBase* mutex) - : mutex_(mutex) { mutex_->Lock(); } - - ~GTestMutexLock() { mutex_->Unlock(); } - - private: - MutexBase* const mutex_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock); -}; - -typedef GTestMutexLock MutexLock; - -// Helpers for ThreadLocal. - -// pthread_key_create() requires DeleteThreadLocalValue() to have -// C-linkage. Therefore it cannot be templatized to access -// ThreadLocal. Hence the need for class -// ThreadLocalValueHolderBase. -class ThreadLocalValueHolderBase { - public: - virtual ~ThreadLocalValueHolderBase() {} -}; - -// Called by pthread to delete thread-local data stored by -// pthread_setspecific(). -extern "C" inline void DeleteThreadLocalValue(void* value_holder) { - delete static_cast(value_holder); -} - -// Implements thread-local storage on pthreads-based systems. -// -// // Thread 1 -// ThreadLocal tl(100); // 100 is the default value for each thread. -// -// // Thread 2 -// tl.set(150); // Changes the value for thread 2 only. -// EXPECT_EQ(150, tl.get()); -// -// // Thread 1 -// EXPECT_EQ(100, tl.get()); // In thread 1, tl has the original value. -// tl.set(200); -// EXPECT_EQ(200, tl.get()); -// -// The template type argument T must have a public copy constructor. -// In addition, the default ThreadLocal constructor requires T to have -// a public default constructor. -// -// An object managed for a thread by a ThreadLocal instance is deleted -// when the thread exits. Or, if the ThreadLocal instance dies in -// that thread, when the ThreadLocal dies. It's the user's -// responsibility to ensure that all other threads using a ThreadLocal -// have exited when it dies, or the per-thread objects for those -// threads will not be deleted. -// -// Google Test only uses global ThreadLocal objects. That means they -// will die after main() has returned. Therefore, no per-thread -// object managed by Google Test will be leaked as long as all threads -// using Google Test have exited when main() returns. -template -class ThreadLocal { - public: - ThreadLocal() : key_(CreateKey()), - default_() {} - explicit ThreadLocal(const T& value) : key_(CreateKey()), - default_(value) {} - - ~ThreadLocal() { - // Destroys the managed object for the current thread, if any. - DeleteThreadLocalValue(pthread_getspecific(key_)); - - // Releases resources associated with the key. This will *not* - // delete managed objects for other threads. - GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_)); - } - - T* pointer() { return GetOrCreateValue(); } - const T* pointer() const { return GetOrCreateValue(); } - const T& get() const { return *pointer(); } - void set(const T& value) { *pointer() = value; } - - private: - // Holds a value of type T. - class ValueHolder : public ThreadLocalValueHolderBase { - public: - explicit ValueHolder(const T& value) : value_(value) {} - - T* pointer() { return &value_; } - - private: - T value_; - GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder); - }; - - static pthread_key_t CreateKey() { - pthread_key_t key; - // When a thread exits, DeleteThreadLocalValue() will be called on - // the object managed for that thread. - GTEST_CHECK_POSIX_SUCCESS_( - pthread_key_create(&key, &DeleteThreadLocalValue)); - return key; - } - - T* GetOrCreateValue() const { - ThreadLocalValueHolderBase* const holder = - static_cast(pthread_getspecific(key_)); - if (holder != NULL) { - return CheckedDowncastToActualType(holder)->pointer(); - } - - ValueHolder* const new_holder = new ValueHolder(default_); - ThreadLocalValueHolderBase* const holder_base = new_holder; - GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base)); - return new_holder->pointer(); - } - - // A key pthreads uses for looking up per-thread values. - const pthread_key_t key_; - const T default_; // The default value for each thread. - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal); -}; - -#define GTEST_IS_THREADSAFE 1 - -#else // GTEST_HAS_PTHREAD - -// A dummy implementation of synchronization primitives (mutex, lock, -// and thread-local variable). Necessary for compiling Google Test where -// mutex is not supported - using Google Test in multiple threads is not -// supported on such platforms. - -class Mutex { - public: - Mutex() {} - void AssertHeld() const {} -}; - -#define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ - extern ::testing::internal::Mutex mutex - -#define GTEST_DEFINE_STATIC_MUTEX_(mutex) ::testing::internal::Mutex mutex - -class GTestMutexLock { - public: - explicit GTestMutexLock(Mutex*) {} // NOLINT -}; - -typedef GTestMutexLock MutexLock; - -template -class ThreadLocal { - public: - ThreadLocal() : value_() {} - explicit ThreadLocal(const T& value) : value_(value) {} - T* pointer() { return &value_; } - const T* pointer() const { return &value_; } - const T& get() const { return value_; } - void set(const T& value) { value_ = value; } - private: - T value_; -}; - -// The above synchronization primitives have dummy implementations. -// Therefore Google Test is not thread-safe. -#define GTEST_IS_THREADSAFE 0 - -#endif // GTEST_HAS_PTHREAD - -// Returns the number of threads running in the process, or 0 to indicate that -// we cannot detect it. -GTEST_API_ size_t GetThreadCount(); - -// Passing non-POD classes through ellipsis (...) crashes the ARM -// compiler and generates a warning in Sun Studio. The Nokia Symbian -// and the IBM XL C/C++ compiler try to instantiate a copy constructor -// for objects passed through ellipsis (...), failing for uncopyable -// objects. We define this to ensure that only POD is passed through -// ellipsis on these systems. -#if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC) -// We lose support for NULL detection where the compiler doesn't like -// passing non-POD classes through ellipsis (...). -#define GTEST_ELLIPSIS_NEEDS_POD_ 1 -#else -#define GTEST_CAN_COMPARE_NULL 1 -#endif - -// The Nokia Symbian and IBM XL C/C++ compilers cannot decide between -// const T& and const T* in a function template. These compilers -// _can_ decide between class template specializations for T and T*, -// so a tr1::type_traits-like is_pointer works. -#if defined(__SYMBIAN32__) || defined(__IBMCPP__) -#define GTEST_NEEDS_IS_POINTER_ 1 -#endif - -template -struct bool_constant { - typedef bool_constant type; - static const bool value = bool_value; -}; -template const bool bool_constant::value; - -typedef bool_constant false_type; -typedef bool_constant true_type; - -template -struct is_pointer : public false_type {}; - -template -struct is_pointer : public true_type {}; - -#if GTEST_OS_WINDOWS -#define GTEST_PATH_SEP_ "\\" -#define GTEST_HAS_ALT_PATH_SEP_ 1 -// The biggest signed integer type the compiler supports. -typedef __int64 BiggestInt; -#else -#define GTEST_PATH_SEP_ "/" -#define GTEST_HAS_ALT_PATH_SEP_ 0 -typedef long long BiggestInt; // NOLINT -#endif // GTEST_OS_WINDOWS - -// The testing::internal::posix namespace holds wrappers for common -// POSIX functions. These wrappers hide the differences between -// Windows/MSVC and POSIX systems. Since some compilers define these -// standard functions as macros, the wrapper cannot have the same name -// as the wrapped function. - -namespace posix { - -// Functions with a different name on Windows. - -#if GTEST_OS_WINDOWS - -typedef struct _stat StatStruct; - -#ifdef __BORLANDC__ -inline int IsATTY(int fd) { return isatty(fd); } -inline int StrCaseCmp(const char* s1, const char* s2) { - return stricmp(s1, s2); -} -inline char* StrDup(const char* src) { return strdup(src); } -#else // !__BORLANDC__ -#if GTEST_OS_WINDOWS_MOBILE -inline int IsATTY(int /* fd */) { return 0; } -#else -inline int IsATTY(int fd) { return _isatty(fd); } -#endif // GTEST_OS_WINDOWS_MOBILE -inline int StrCaseCmp(const char* s1, const char* s2) { - return _stricmp(s1, s2); -} -inline char* StrDup(const char* src) { return _strdup(src); } -#endif // __BORLANDC__ - -#if GTEST_OS_WINDOWS_MOBILE -inline int FileNo(FILE* file) { return reinterpret_cast(_fileno(file)); } -// Stat(), RmDir(), and IsDir() are not needed on Windows CE at this -// time and thus not defined there. -#else -inline int FileNo(FILE* file) { return _fileno(file); } -inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } -inline int RmDir(const char* dir) { return _rmdir(dir); } -inline bool IsDir(const StatStruct& st) { - return (_S_IFDIR & st.st_mode) != 0; -} -#endif // GTEST_OS_WINDOWS_MOBILE - -#else - -typedef struct stat StatStruct; - -inline int FileNo(FILE* file) { return fileno(file); } -inline int IsATTY(int fd) { return isatty(fd); } -inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); } -inline int StrCaseCmp(const char* s1, const char* s2) { - return strcasecmp(s1, s2); -} -inline char* StrDup(const char* src) { return strdup(src); } -inline int RmDir(const char* dir) { return rmdir(dir); } -inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); } - -#endif // GTEST_OS_WINDOWS - -// Functions deprecated by MSVC 8.0. - -#ifdef _MSC_VER -// Temporarily disable warning 4996 (deprecated function). -#pragma warning(push) -#pragma warning(disable:4996) -#endif - -inline const char* StrNCpy(char* dest, const char* src, size_t n) { - return strncpy(dest, src, n); -} - -// ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and -// StrError() aren't needed on Windows CE at this time and thus not -// defined there. - -#if !GTEST_OS_WINDOWS_MOBILE -inline int ChDir(const char* dir) { return chdir(dir); } -#endif -inline FILE* FOpen(const char* path, const char* mode) { - return fopen(path, mode); -} -#if !GTEST_OS_WINDOWS_MOBILE -inline FILE *FReopen(const char* path, const char* mode, FILE* stream) { - return freopen(path, mode, stream); -} -inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); } -#endif -inline int FClose(FILE* fp) { return fclose(fp); } -#if !GTEST_OS_WINDOWS_MOBILE -inline int Read(int fd, void* buf, unsigned int count) { - return static_cast(read(fd, buf, count)); -} -inline int Write(int fd, const void* buf, unsigned int count) { - return static_cast(write(fd, buf, count)); -} -inline int Close(int fd) { return close(fd); } -inline const char* StrError(int errnum) { return strerror(errnum); } -#endif -inline const char* GetEnv(const char* name) { -#if GTEST_OS_WINDOWS_MOBILE - // We are on Windows CE, which has no environment variables. - return NULL; -#elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9) - // Environment variables which we programmatically clear will be set to the - // empty string rather than unset (NULL). Handle that case. - const char* const env = getenv(name); - return (env != NULL && env[0] != '\0') ? env : NULL; -#else - return getenv(name); -#endif -} - -#ifdef _MSC_VER -#pragma warning(pop) // Restores the warning state. -#endif - -#if GTEST_OS_WINDOWS_MOBILE -// Windows CE has no C library. The abort() function is used in -// several places in Google Test. This implementation provides a reasonable -// imitation of standard behaviour. -void Abort(); -#else -inline void Abort() { abort(); } -#endif // GTEST_OS_WINDOWS_MOBILE - -} // namespace posix - -// The maximum number a BiggestInt can represent. This definition -// works no matter BiggestInt is represented in one's complement or -// two's complement. -// -// We cannot rely on numeric_limits in STL, as __int64 and long long -// are not part of standard C++ and numeric_limits doesn't need to be -// defined for them. -const BiggestInt kMaxBiggestInt = - ~(static_cast(1) << (8*sizeof(BiggestInt) - 1)); - -// This template class serves as a compile-time function from size to -// type. It maps a size in bytes to a primitive type with that -// size. e.g. -// -// TypeWithSize<4>::UInt -// -// is typedef-ed to be unsigned int (unsigned integer made up of 4 -// bytes). -// -// Such functionality should belong to STL, but I cannot find it -// there. -// -// Google Test uses this class in the implementation of floating-point -// comparison. -// -// For now it only handles UInt (unsigned int) as that's all Google Test -// needs. Other types can be easily added in the future if need -// arises. -template -class TypeWithSize { - public: - // This prevents the user from using TypeWithSize with incorrect - // values of N. - typedef void UInt; -}; - -// The specialization for size 4. -template <> -class TypeWithSize<4> { - public: - // unsigned int has size 4 in both gcc and MSVC. - // - // As base/basictypes.h doesn't compile on Windows, we cannot use - // uint32, uint64, and etc here. - typedef int Int; - typedef unsigned int UInt; -}; - -// The specialization for size 8. -template <> -class TypeWithSize<8> { - public: -#if GTEST_OS_WINDOWS - typedef __int64 Int; - typedef unsigned __int64 UInt; -#else - typedef long long Int; // NOLINT - typedef unsigned long long UInt; // NOLINT -#endif // GTEST_OS_WINDOWS -}; - -// Integer types of known sizes. -typedef TypeWithSize<4>::Int Int32; -typedef TypeWithSize<4>::UInt UInt32; -typedef TypeWithSize<8>::Int Int64; -typedef TypeWithSize<8>::UInt UInt64; -typedef TypeWithSize<8>::Int TimeInMillis; // Represents time in milliseconds. - -// Utilities for command line flags and environment variables. - -// Macro for referencing flags. -#define GTEST_FLAG(name) FLAGS_gtest_##name - -// Macros for declaring flags. -#define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name) -#define GTEST_DECLARE_int32_(name) \ - GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name) -#define GTEST_DECLARE_string_(name) \ - GTEST_API_ extern ::testing::internal::String GTEST_FLAG(name) - -// Macros for defining flags. -#define GTEST_DEFINE_bool_(name, default_val, doc) \ - GTEST_API_ bool GTEST_FLAG(name) = (default_val) -#define GTEST_DEFINE_int32_(name, default_val, doc) \ - GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val) -#define GTEST_DEFINE_string_(name, default_val, doc) \ - GTEST_API_ ::testing::internal::String GTEST_FLAG(name) = (default_val) - -// Parses 'str' for a 32-bit signed integer. If successful, writes the result -// to *value and returns true; otherwise leaves *value unchanged and returns -// false. -// TODO(chandlerc): Find a better way to refactor flag and environment parsing -// out of both gtest-port.cc and gtest.cc to avoid exporting this utility -// function. -bool ParseInt32(const Message& src_text, const char* str, Int32* value); - -// Parses a bool/Int32/string from the environment variable -// corresponding to the given Google Test flag. -bool BoolFromGTestEnv(const char* flag, bool default_val); -GTEST_API_ Int32 Int32FromGTestEnv(const char* flag, Int32 default_val); -const char* StringFromGTestEnv(const char* flag, const char* default_val); - -} // namespace internal -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ - -#if GTEST_OS_LINUX -#include -#include -#include -#include -#endif // GTEST_OS_LINUX - -#include -#include -#include -#include -#include - -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file declares the String class and functions used internally by -// Google Test. They are subject to change without notice. They should not used -// by code external to Google Test. -// -// This header file is #included by . -// It should not be #included by other files. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ - -#ifdef __BORLANDC__ -// string.h is not guaranteed to provide strcpy on C++ Builder. -#include -#endif - -#include - -#include - -namespace testing { -namespace internal { - -// String - a UTF-8 string class. -// -// For historic reasons, we don't use std::string. -// -// TODO(wan@google.com): replace this class with std::string or -// implement it in terms of the latter. -// -// Note that String can represent both NULL and the empty string, -// while std::string cannot represent NULL. -// -// NULL and the empty string are considered different. NULL is less -// than anything (including the empty string) except itself. -// -// This class only provides minimum functionality necessary for -// implementing Google Test. We do not intend to implement a full-fledged -// string class here. -// -// Since the purpose of this class is to provide a substitute for -// std::string on platforms where it cannot be used, we define a copy -// constructor and assignment operators such that we don't need -// conditional compilation in a lot of places. -// -// In order to make the representation efficient, the d'tor of String -// is not virtual. Therefore DO NOT INHERIT FROM String. -class GTEST_API_ String { - public: - // Static utility methods - - // Returns the input enclosed in double quotes if it's not NULL; - // otherwise returns "(null)". For example, "\"Hello\"" is returned - // for input "Hello". - // - // This is useful for printing a C string in the syntax of a literal. - // - // Known issue: escape sequences are not handled yet. - static String ShowCStringQuoted(const char* c_str); - - // Clones a 0-terminated C string, allocating memory using new. The - // caller is responsible for deleting the return value using - // delete[]. Returns the cloned string, or NULL if the input is - // NULL. - // - // This is different from strdup() in string.h, which allocates - // memory using malloc(). - static const char* CloneCString(const char* c_str); - -#if GTEST_OS_WINDOWS_MOBILE - // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be - // able to pass strings to Win32 APIs on CE we need to convert them - // to 'Unicode', UTF-16. - - // Creates a UTF-16 wide string from the given ANSI string, allocating - // memory using new. The caller is responsible for deleting the return - // value using delete[]. Returns the wide string, or NULL if the - // input is NULL. - // - // The wide string is created using the ANSI codepage (CP_ACP) to - // match the behaviour of the ANSI versions of Win32 calls and the - // C runtime. - static LPCWSTR AnsiToUtf16(const char* c_str); - - // Creates an ANSI string from the given wide string, allocating - // memory using new. The caller is responsible for deleting the return - // value using delete[]. Returns the ANSI string, or NULL if the - // input is NULL. - // - // The returned string is created using the ANSI codepage (CP_ACP) to - // match the behaviour of the ANSI versions of Win32 calls and the - // C runtime. - static const char* Utf16ToAnsi(LPCWSTR utf16_str); -#endif - - // Compares two C strings. Returns true iff they have the same content. - // - // Unlike strcmp(), this function can handle NULL argument(s). A - // NULL C string is considered different to any non-NULL C string, - // including the empty string. - static bool CStringEquals(const char* lhs, const char* rhs); - - // Converts a wide C string to a String using the UTF-8 encoding. - // NULL will be converted to "(null)". If an error occurred during - // the conversion, "(failed to convert from wide string)" is - // returned. - static String ShowWideCString(const wchar_t* wide_c_str); - - // Similar to ShowWideCString(), except that this function encloses - // the converted string in double quotes. - static String ShowWideCStringQuoted(const wchar_t* wide_c_str); - - // Compares two wide C strings. Returns true iff they have the same - // content. - // - // Unlike wcscmp(), this function can handle NULL argument(s). A - // NULL C string is considered different to any non-NULL C string, - // including the empty string. - static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); - - // Compares two C strings, ignoring case. Returns true iff they - // have the same content. - // - // Unlike strcasecmp(), this function can handle NULL argument(s). - // A NULL C string is considered different to any non-NULL C string, - // including the empty string. - static bool CaseInsensitiveCStringEquals(const char* lhs, - const char* rhs); - - // Compares two wide C strings, ignoring case. Returns true iff they - // have the same content. - // - // Unlike wcscasecmp(), this function can handle NULL argument(s). - // A NULL C string is considered different to any non-NULL wide C string, - // including the empty string. - // NB: The implementations on different platforms slightly differ. - // On windows, this method uses _wcsicmp which compares according to LC_CTYPE - // environment variable. On GNU platform this method uses wcscasecmp - // which compares according to LC_CTYPE category of the current locale. - // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the - // current locale. - static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs, - const wchar_t* rhs); - - // Formats a list of arguments to a String, using the same format - // spec string as for printf. - // - // We do not use the StringPrintf class as it is not universally - // available. - // - // The result is limited to 4096 characters (including the tailing - // 0). If 4096 characters are not enough to format the input, - // "" is returned. - static String Format(const char* format, ...); - - // C'tors - - // The default c'tor constructs a NULL string. - String() : c_str_(NULL), length_(0) {} - - // Constructs a String by cloning a 0-terminated C string. - String(const char* a_c_str) { // NOLINT - if (a_c_str == NULL) { - c_str_ = NULL; - length_ = 0; - } else { - ConstructNonNull(a_c_str, strlen(a_c_str)); - } - } - - // Constructs a String by copying a given number of chars from a - // buffer. E.g. String("hello", 3) creates the string "hel", - // String("a\0bcd", 4) creates "a\0bc", String(NULL, 0) creates "", - // and String(NULL, 1) results in access violation. - String(const char* buffer, size_t a_length) { - ConstructNonNull(buffer, a_length); - } - - // The copy c'tor creates a new copy of the string. The two - // String objects do not share content. - String(const String& str) : c_str_(NULL), length_(0) { *this = str; } - - // D'tor. String is intended to be a final class, so the d'tor - // doesn't need to be virtual. - ~String() { delete[] c_str_; } - - // Allows a String to be implicitly converted to an ::std::string or - // ::string, and vice versa. Converting a String containing a NULL - // pointer to ::std::string or ::string is undefined behavior. - // Converting a ::std::string or ::string containing an embedded NUL - // character to a String will result in the prefix up to the first - // NUL character. - String(const ::std::string& str) { - ConstructNonNull(str.c_str(), str.length()); - } - - operator ::std::string() const { return ::std::string(c_str(), length()); } - -#if GTEST_HAS_GLOBAL_STRING - String(const ::string& str) { - ConstructNonNull(str.c_str(), str.length()); - } - - operator ::string() const { return ::string(c_str(), length()); } -#endif // GTEST_HAS_GLOBAL_STRING - - // Returns true iff this is an empty string (i.e. ""). - bool empty() const { return (c_str() != NULL) && (length() == 0); } - - // Compares this with another String. - // Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0 - // if this is greater than rhs. - int Compare(const String& rhs) const; - - // Returns true iff this String equals the given C string. A NULL - // string and a non-NULL string are considered not equal. - bool operator==(const char* a_c_str) const { return Compare(a_c_str) == 0; } - - // Returns true iff this String is less than the given String. A - // NULL string is considered less than "". - bool operator<(const String& rhs) const { return Compare(rhs) < 0; } - - // Returns true iff this String doesn't equal the given C string. A NULL - // string and a non-NULL string are considered not equal. - bool operator!=(const char* a_c_str) const { return !(*this == a_c_str); } - - // Returns true iff this String ends with the given suffix. *Any* - // String is considered to end with a NULL or empty suffix. - bool EndsWith(const char* suffix) const; - - // Returns true iff this String ends with the given suffix, not considering - // case. Any String is considered to end with a NULL or empty suffix. - bool EndsWithCaseInsensitive(const char* suffix) const; - - // Returns the length of the encapsulated string, or 0 if the - // string is NULL. - size_t length() const { return length_; } - - // Gets the 0-terminated C string this String object represents. - // The String object still owns the string. Therefore the caller - // should NOT delete the return value. - const char* c_str() const { return c_str_; } - - // Assigns a C string to this object. Self-assignment works. - const String& operator=(const char* a_c_str) { - return *this = String(a_c_str); - } - - // Assigns a String object to this object. Self-assignment works. - const String& operator=(const String& rhs) { - if (this != &rhs) { - delete[] c_str_; - if (rhs.c_str() == NULL) { - c_str_ = NULL; - length_ = 0; - } else { - ConstructNonNull(rhs.c_str(), rhs.length()); - } - } - - return *this; - } - - private: - // Constructs a non-NULL String from the given content. This - // function can only be called when data_ has not been allocated. - // ConstructNonNull(NULL, 0) results in an empty string (""). - // ConstructNonNull(NULL, non_zero) is undefined behavior. - void ConstructNonNull(const char* buffer, size_t a_length) { - char* const str = new char[a_length + 1]; - memcpy(str, buffer, a_length); - str[a_length] = '\0'; - c_str_ = str; - length_ = a_length; - } - - const char* c_str_; - size_t length_; -}; // class String - -// Streams a String to an ostream. Each '\0' character in the String -// is replaced with "\\0". -inline ::std::ostream& operator<<(::std::ostream& os, const String& str) { - if (str.c_str() == NULL) { - os << "(null)"; - } else { - const char* const c_str = str.c_str(); - for (size_t i = 0; i != str.length(); i++) { - if (c_str[i] == '\0') { - os << "\\0"; - } else { - os << c_str[i]; - } - } - } - return os; -} - -// Gets the content of the StrStream's buffer as a String. Each '\0' -// character in the buffer is replaced with "\\0". -GTEST_API_ String StrStreamToString(StrStream* stream); - -// Converts a streamable value to a String. A NULL pointer is -// converted to "(null)". When the input value is a ::string, -// ::std::string, ::wstring, or ::std::wstring object, each NUL -// character in it is replaced with "\\0". - -// Declared here but defined in gtest.h, so that it has access -// to the definition of the Message class, required by the ARM -// compiler. -template -String StreamableToString(const T& streamable); - -} // namespace internal -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: keith.ray@gmail.com (Keith Ray) -// -// Google Test filepath utilities -// -// This header file declares classes and functions used internally by -// Google Test. They are subject to change without notice. -// -// This file is #included in . -// Do not include this header file separately! - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ - - -namespace testing { -namespace internal { - -// FilePath - a class for file and directory pathname manipulation which -// handles platform-specific conventions (like the pathname separator). -// Used for helper functions for naming files in a directory for xml output. -// Except for Set methods, all methods are const or static, which provides an -// "immutable value object" -- useful for peace of mind. -// A FilePath with a value ending in a path separator ("like/this/") represents -// a directory, otherwise it is assumed to represent a file. In either case, -// it may or may not represent an actual file or directory in the file system. -// Names are NOT checked for syntax correctness -- no checking for illegal -// characters, malformed paths, etc. - -class GTEST_API_ FilePath { - public: - FilePath() : pathname_("") { } - FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } - - explicit FilePath(const char* pathname) : pathname_(pathname) { - Normalize(); - } - - explicit FilePath(const String& pathname) : pathname_(pathname) { - Normalize(); - } - - FilePath& operator=(const FilePath& rhs) { - Set(rhs); - return *this; - } - - void Set(const FilePath& rhs) { - pathname_ = rhs.pathname_; - } - - String ToString() const { return pathname_; } - const char* c_str() const { return pathname_.c_str(); } - - // Returns the current working directory, or "" if unsuccessful. - static FilePath GetCurrentDir(); - - // Given directory = "dir", base_name = "test", number = 0, - // extension = "xml", returns "dir/test.xml". If number is greater - // than zero (e.g., 12), returns "dir/test_12.xml". - // On Windows platform, uses \ as the separator rather than /. - static FilePath MakeFileName(const FilePath& directory, - const FilePath& base_name, - int number, - const char* extension); - - // Given directory = "dir", relative_path = "test.xml", - // returns "dir/test.xml". - // On Windows, uses \ as the separator rather than /. - static FilePath ConcatPaths(const FilePath& directory, - const FilePath& relative_path); - - // Returns a pathname for a file that does not currently exist. The pathname - // will be directory/base_name.extension or - // directory/base_name_.extension if directory/base_name.extension - // already exists. The number will be incremented until a pathname is found - // that does not already exist. - // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. - // There could be a race condition if two or more processes are calling this - // function at the same time -- they could both pick the same filename. - static FilePath GenerateUniqueFileName(const FilePath& directory, - const FilePath& base_name, - const char* extension); - - // Returns true iff the path is NULL or "". - bool IsEmpty() const { return c_str() == NULL || *c_str() == '\0'; } - - // If input name has a trailing separator character, removes it and returns - // the name, otherwise return the name string unmodified. - // On Windows platform, uses \ as the separator, other platforms use /. - FilePath RemoveTrailingPathSeparator() const; - - // Returns a copy of the FilePath with the directory part removed. - // Example: FilePath("path/to/file").RemoveDirectoryName() returns - // FilePath("file"). If there is no directory part ("just_a_file"), it returns - // the FilePath unmodified. If there is no file part ("just_a_dir/") it - // returns an empty FilePath (""). - // On Windows platform, '\' is the path separator, otherwise it is '/'. - FilePath RemoveDirectoryName() const; - - // RemoveFileName returns the directory path with the filename removed. - // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". - // If the FilePath is "a_file" or "/a_file", RemoveFileName returns - // FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does - // not have a file, like "just/a/dir/", it returns the FilePath unmodified. - // On Windows platform, '\' is the path separator, otherwise it is '/'. - FilePath RemoveFileName() const; - - // Returns a copy of the FilePath with the case-insensitive extension removed. - // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns - // FilePath("dir/file"). If a case-insensitive extension is not - // found, returns a copy of the original FilePath. - FilePath RemoveExtension(const char* extension) const; - - // Creates directories so that path exists. Returns true if successful or if - // the directories already exist; returns false if unable to create - // directories for any reason. Will also return false if the FilePath does - // not represent a directory (that is, it doesn't end with a path separator). - bool CreateDirectoriesRecursively() const; - - // Create the directory so that path exists. Returns true if successful or - // if the directory already exists; returns false if unable to create the - // directory for any reason, including if the parent directory does not - // exist. Not named "CreateDirectory" because that's a macro on Windows. - bool CreateFolder() const; - - // Returns true if FilePath describes something in the file-system, - // either a file, directory, or whatever, and that something exists. - bool FileOrDirectoryExists() const; - - // Returns true if pathname describes a directory in the file-system - // that exists. - bool DirectoryExists() const; - - // Returns true if FilePath ends with a path separator, which indicates that - // it is intended to represent a directory. Returns false otherwise. - // This does NOT check that a directory (or file) actually exists. - bool IsDirectory() const; - - // Returns true if pathname describes a root directory. (Windows has one - // root directory per disk drive.) - bool IsRootDirectory() const; - - // Returns true if pathname describes an absolute path. - bool IsAbsolutePath() const; - - private: - // Replaces multiple consecutive separators with a single separator. - // For example, "bar///foo" becomes "bar/foo". Does not eliminate other - // redundancies that might be in a pathname involving "." or "..". - // - // A pathname with multiple consecutive separators may occur either through - // user error or as a result of some scripts or APIs that generate a pathname - // with a trailing separator. On other platforms the same API or script - // may NOT generate a pathname with a trailing "/". Then elsewhere that - // pathname may have another "/" and pathname components added to it, - // without checking for the separator already being there. - // The script language and operating system may allow paths like "foo//bar" - // but some of the functions in FilePath will not handle that correctly. In - // particular, RemoveTrailingPathSeparator() only removes one separator, and - // it is called in CreateDirectoriesRecursively() assuming that it will change - // a pathname from directory syntax (trailing separator) to filename syntax. - // - // On Windows this method also replaces the alternate path separator '/' with - // the primary path separator '\\', so that for example "bar\\/\\foo" becomes - // "bar\\foo". - - void Normalize(); - - // Returns a pointer to the last occurence of a valid path separator in - // the FilePath. On Windows, for example, both '/' and '\' are valid path - // separators. Returns NULL if no path separator was found. - const char* FindLastPathSeparator() const; - - String pathname_; -}; // class FilePath - -} // namespace internal -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ -// This file was GENERATED by command: -// pump.py gtest-type-util.h.pump -// DO NOT EDIT BY HAND!!! - -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Type utilities needed for implementing typed and type-parameterized -// tests. This file is generated by a SCRIPT. DO NOT EDIT BY HAND! -// -// Currently we support at most 50 types in a list, and at most 50 -// type-parameterized tests in one type-parameterized test case. -// Please contact googletestframework@googlegroups.com if you need -// more. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ - - -#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P - -// #ifdef __GNUC__ is too general here. It is possible to use gcc without using -// libstdc++ (which is where cxxabi.h comes from). -#ifdef __GLIBCXX__ -#include -#endif // __GLIBCXX__ - -namespace testing { -namespace internal { - -// AssertyTypeEq::type is defined iff T1 and T2 are the same -// type. This can be used as a compile-time assertion to ensure that -// two types are equal. - -template -struct AssertTypeEq; - -template -struct AssertTypeEq { - typedef bool type; -}; - -// GetTypeName() returns a human-readable name of type T. -template -String GetTypeName() { -#if GTEST_HAS_RTTI - - const char* const name = typeid(T).name(); -#ifdef __GLIBCXX__ - int status = 0; - // gcc's implementation of typeid(T).name() mangles the type name, - // so we have to demangle it. - char* const readable_name = abi::__cxa_demangle(name, 0, 0, &status); - const String name_str(status == 0 ? readable_name : name); - free(readable_name); - return name_str; -#else - return name; -#endif // __GLIBCXX__ - -#else - return ""; -#endif // GTEST_HAS_RTTI -} - -// A unique type used as the default value for the arguments of class -// template Types. This allows us to simulate variadic templates -// (e.g. Types, Type, and etc), which C++ doesn't -// support directly. -struct None {}; - -// The following family of struct and struct templates are used to -// represent type lists. In particular, TypesN -// represents a type list with N types (T1, T2, ..., and TN) in it. -// Except for Types0, every struct in the family has two member types: -// Head for the first type in the list, and Tail for the rest of the -// list. - -// The empty type list. -struct Types0 {}; - -// Type lists of length 1, 2, 3, and so on. - -template -struct Types1 { - typedef T1 Head; - typedef Types0 Tail; -}; -template -struct Types2 { - typedef T1 Head; - typedef Types1 Tail; -}; - -template -struct Types3 { - typedef T1 Head; - typedef Types2 Tail; -}; - -template -struct Types4 { - typedef T1 Head; - typedef Types3 Tail; -}; - -template -struct Types5 { - typedef T1 Head; - typedef Types4 Tail; -}; - -template -struct Types6 { - typedef T1 Head; - typedef Types5 Tail; -}; - -template -struct Types7 { - typedef T1 Head; - typedef Types6 Tail; -}; - -template -struct Types8 { - typedef T1 Head; - typedef Types7 Tail; -}; - -template -struct Types9 { - typedef T1 Head; - typedef Types8 Tail; -}; - -template -struct Types10 { - typedef T1 Head; - typedef Types9 Tail; -}; - -template -struct Types11 { - typedef T1 Head; - typedef Types10 Tail; -}; - -template -struct Types12 { - typedef T1 Head; - typedef Types11 Tail; -}; - -template -struct Types13 { - typedef T1 Head; - typedef Types12 Tail; -}; - -template -struct Types14 { - typedef T1 Head; - typedef Types13 Tail; -}; - -template -struct Types15 { - typedef T1 Head; - typedef Types14 Tail; -}; - -template -struct Types16 { - typedef T1 Head; - typedef Types15 Tail; -}; - -template -struct Types17 { - typedef T1 Head; - typedef Types16 Tail; -}; - -template -struct Types18 { - typedef T1 Head; - typedef Types17 Tail; -}; - -template -struct Types19 { - typedef T1 Head; - typedef Types18 Tail; -}; - -template -struct Types20 { - typedef T1 Head; - typedef Types19 Tail; -}; - -template -struct Types21 { - typedef T1 Head; - typedef Types20 Tail; -}; - -template -struct Types22 { - typedef T1 Head; - typedef Types21 Tail; -}; - -template -struct Types23 { - typedef T1 Head; - typedef Types22 Tail; -}; - -template -struct Types24 { - typedef T1 Head; - typedef Types23 Tail; -}; - -template -struct Types25 { - typedef T1 Head; - typedef Types24 Tail; -}; - -template -struct Types26 { - typedef T1 Head; - typedef Types25 Tail; -}; - -template -struct Types27 { - typedef T1 Head; - typedef Types26 Tail; -}; - -template -struct Types28 { - typedef T1 Head; - typedef Types27 Tail; -}; - -template -struct Types29 { - typedef T1 Head; - typedef Types28 Tail; -}; - -template -struct Types30 { - typedef T1 Head; - typedef Types29 Tail; -}; - -template -struct Types31 { - typedef T1 Head; - typedef Types30 Tail; -}; - -template -struct Types32 { - typedef T1 Head; - typedef Types31 Tail; -}; - -template -struct Types33 { - typedef T1 Head; - typedef Types32 Tail; -}; - -template -struct Types34 { - typedef T1 Head; - typedef Types33 Tail; -}; - -template -struct Types35 { - typedef T1 Head; - typedef Types34 Tail; -}; - -template -struct Types36 { - typedef T1 Head; - typedef Types35 Tail; -}; - -template -struct Types37 { - typedef T1 Head; - typedef Types36 Tail; -}; - -template -struct Types38 { - typedef T1 Head; - typedef Types37 Tail; -}; - -template -struct Types39 { - typedef T1 Head; - typedef Types38 Tail; -}; - -template -struct Types40 { - typedef T1 Head; - typedef Types39 Tail; -}; - -template -struct Types41 { - typedef T1 Head; - typedef Types40 Tail; -}; - -template -struct Types42 { - typedef T1 Head; - typedef Types41 Tail; -}; - -template -struct Types43 { - typedef T1 Head; - typedef Types42 Tail; -}; - -template -struct Types44 { - typedef T1 Head; - typedef Types43 Tail; -}; - -template -struct Types45 { - typedef T1 Head; - typedef Types44 Tail; -}; - -template -struct Types46 { - typedef T1 Head; - typedef Types45 Tail; -}; - -template -struct Types47 { - typedef T1 Head; - typedef Types46 Tail; -}; - -template -struct Types48 { - typedef T1 Head; - typedef Types47 Tail; -}; - -template -struct Types49 { - typedef T1 Head; - typedef Types48 Tail; -}; - -template -struct Types50 { - typedef T1 Head; - typedef Types49 Tail; -}; - - -} // namespace internal - -// We don't want to require the users to write TypesN<...> directly, -// as that would require them to count the length. Types<...> is much -// easier to write, but generates horrible messages when there is a -// compiler error, as gcc insists on printing out each template -// argument, even if it has the default value (this means Types -// will appear as Types in the compiler -// errors). -// -// Our solution is to combine the best part of the two approaches: a -// user would write Types, and Google Test will translate -// that to TypesN internally to make error messages -// readable. The translation is done by the 'type' member of the -// Types template. -template -struct Types { - typedef internal::Types50 type; -}; - -template <> -struct Types { - typedef internal::Types0 type; -}; -template -struct Types { - typedef internal::Types1 type; -}; -template -struct Types { - typedef internal::Types2 type; -}; -template -struct Types { - typedef internal::Types3 type; -}; -template -struct Types { - typedef internal::Types4 type; -}; -template -struct Types { - typedef internal::Types5 type; -}; -template -struct Types { - typedef internal::Types6 type; -}; -template -struct Types { - typedef internal::Types7 type; -}; -template -struct Types { - typedef internal::Types8 type; -}; -template -struct Types { - typedef internal::Types9 type; -}; -template -struct Types { - typedef internal::Types10 type; -}; -template -struct Types { - typedef internal::Types11 type; -}; -template -struct Types { - typedef internal::Types12 type; -}; -template -struct Types { - typedef internal::Types13 type; -}; -template -struct Types { - typedef internal::Types14 type; -}; -template -struct Types { - typedef internal::Types15 type; -}; -template -struct Types { - typedef internal::Types16 type; -}; -template -struct Types { - typedef internal::Types17 type; -}; -template -struct Types { - typedef internal::Types18 type; -}; -template -struct Types { - typedef internal::Types19 type; -}; -template -struct Types { - typedef internal::Types20 type; -}; -template -struct Types { - typedef internal::Types21 type; -}; -template -struct Types { - typedef internal::Types22 type; -}; -template -struct Types { - typedef internal::Types23 type; -}; -template -struct Types { - typedef internal::Types24 type; -}; -template -struct Types { - typedef internal::Types25 type; -}; -template -struct Types { - typedef internal::Types26 type; -}; -template -struct Types { - typedef internal::Types27 type; -}; -template -struct Types { - typedef internal::Types28 type; -}; -template -struct Types { - typedef internal::Types29 type; -}; -template -struct Types { - typedef internal::Types30 type; -}; -template -struct Types { - typedef internal::Types31 type; -}; -template -struct Types { - typedef internal::Types32 type; -}; -template -struct Types { - typedef internal::Types33 type; -}; -template -struct Types { - typedef internal::Types34 type; -}; -template -struct Types { - typedef internal::Types35 type; -}; -template -struct Types { - typedef internal::Types36 type; -}; -template -struct Types { - typedef internal::Types37 type; -}; -template -struct Types { - typedef internal::Types38 type; -}; -template -struct Types { - typedef internal::Types39 type; -}; -template -struct Types { - typedef internal::Types40 type; -}; -template -struct Types { - typedef internal::Types41 type; -}; -template -struct Types { - typedef internal::Types42 type; -}; -template -struct Types { - typedef internal::Types43 type; -}; -template -struct Types { - typedef internal::Types44 type; -}; -template -struct Types { - typedef internal::Types45 type; -}; -template -struct Types { - typedef internal::Types46 type; -}; -template -struct Types { - typedef internal::Types47 type; -}; -template -struct Types { - typedef internal::Types48 type; -}; -template -struct Types { - typedef internal::Types49 type; -}; - -namespace internal { - -#define GTEST_TEMPLATE_ template class - -// The template "selector" struct TemplateSel is used to -// represent Tmpl, which must be a class template with one type -// parameter, as a type. TemplateSel::Bind::type is defined -// as the type Tmpl. This allows us to actually instantiate the -// template "selected" by TemplateSel. -// -// This trick is necessary for simulating typedef for class templates, -// which C++ doesn't support directly. -template -struct TemplateSel { - template - struct Bind { - typedef Tmpl type; - }; -}; - -#define GTEST_BIND_(TmplSel, T) \ - TmplSel::template Bind::type - -// A unique struct template used as the default value for the -// arguments of class template Templates. This allows us to simulate -// variadic templates (e.g. Templates, Templates, -// and etc), which C++ doesn't support directly. -template -struct NoneT {}; - -// The following family of struct and struct templates are used to -// represent template lists. In particular, TemplatesN represents a list of N templates (T1, T2, ..., and TN). Except -// for Templates0, every struct in the family has two member types: -// Head for the selector of the first template in the list, and Tail -// for the rest of the list. - -// The empty template list. -struct Templates0 {}; - -// Template lists of length 1, 2, 3, and so on. - -template -struct Templates1 { - typedef TemplateSel Head; - typedef Templates0 Tail; -}; -template -struct Templates2 { - typedef TemplateSel Head; - typedef Templates1 Tail; -}; - -template -struct Templates3 { - typedef TemplateSel Head; - typedef Templates2 Tail; -}; - -template -struct Templates4 { - typedef TemplateSel Head; - typedef Templates3 Tail; -}; - -template -struct Templates5 { - typedef TemplateSel Head; - typedef Templates4 Tail; -}; - -template -struct Templates6 { - typedef TemplateSel Head; - typedef Templates5 Tail; -}; - -template -struct Templates7 { - typedef TemplateSel Head; - typedef Templates6 Tail; -}; - -template -struct Templates8 { - typedef TemplateSel Head; - typedef Templates7 Tail; -}; - -template -struct Templates9 { - typedef TemplateSel Head; - typedef Templates8 Tail; -}; - -template -struct Templates10 { - typedef TemplateSel Head; - typedef Templates9 Tail; -}; - -template -struct Templates11 { - typedef TemplateSel Head; - typedef Templates10 Tail; -}; - -template -struct Templates12 { - typedef TemplateSel Head; - typedef Templates11 Tail; -}; - -template -struct Templates13 { - typedef TemplateSel Head; - typedef Templates12 Tail; -}; - -template -struct Templates14 { - typedef TemplateSel Head; - typedef Templates13 Tail; -}; - -template -struct Templates15 { - typedef TemplateSel Head; - typedef Templates14 Tail; -}; - -template -struct Templates16 { - typedef TemplateSel Head; - typedef Templates15 Tail; -}; - -template -struct Templates17 { - typedef TemplateSel Head; - typedef Templates16 Tail; -}; - -template -struct Templates18 { - typedef TemplateSel Head; - typedef Templates17 Tail; -}; - -template -struct Templates19 { - typedef TemplateSel Head; - typedef Templates18 Tail; -}; - -template -struct Templates20 { - typedef TemplateSel Head; - typedef Templates19 Tail; -}; - -template -struct Templates21 { - typedef TemplateSel Head; - typedef Templates20 Tail; -}; - -template -struct Templates22 { - typedef TemplateSel Head; - typedef Templates21 Tail; -}; - -template -struct Templates23 { - typedef TemplateSel Head; - typedef Templates22 Tail; -}; - -template -struct Templates24 { - typedef TemplateSel Head; - typedef Templates23 Tail; -}; - -template -struct Templates25 { - typedef TemplateSel Head; - typedef Templates24 Tail; -}; - -template -struct Templates26 { - typedef TemplateSel Head; - typedef Templates25 Tail; -}; - -template -struct Templates27 { - typedef TemplateSel Head; - typedef Templates26 Tail; -}; - -template -struct Templates28 { - typedef TemplateSel Head; - typedef Templates27 Tail; -}; - -template -struct Templates29 { - typedef TemplateSel Head; - typedef Templates28 Tail; -}; - -template -struct Templates30 { - typedef TemplateSel Head; - typedef Templates29 Tail; -}; - -template -struct Templates31 { - typedef TemplateSel Head; - typedef Templates30 Tail; -}; - -template -struct Templates32 { - typedef TemplateSel Head; - typedef Templates31 Tail; -}; - -template -struct Templates33 { - typedef TemplateSel Head; - typedef Templates32 Tail; -}; - -template -struct Templates34 { - typedef TemplateSel Head; - typedef Templates33 Tail; -}; - -template -struct Templates35 { - typedef TemplateSel Head; - typedef Templates34 Tail; -}; - -template -struct Templates36 { - typedef TemplateSel Head; - typedef Templates35 Tail; -}; - -template -struct Templates37 { - typedef TemplateSel Head; - typedef Templates36 Tail; -}; - -template -struct Templates38 { - typedef TemplateSel Head; - typedef Templates37 Tail; -}; - -template -struct Templates39 { - typedef TemplateSel Head; - typedef Templates38 Tail; -}; - -template -struct Templates40 { - typedef TemplateSel Head; - typedef Templates39 Tail; -}; - -template -struct Templates41 { - typedef TemplateSel Head; - typedef Templates40 Tail; -}; - -template -struct Templates42 { - typedef TemplateSel Head; - typedef Templates41 Tail; -}; - -template -struct Templates43 { - typedef TemplateSel Head; - typedef Templates42 Tail; -}; - -template -struct Templates44 { - typedef TemplateSel Head; - typedef Templates43 Tail; -}; - -template -struct Templates45 { - typedef TemplateSel Head; - typedef Templates44 Tail; -}; - -template -struct Templates46 { - typedef TemplateSel Head; - typedef Templates45 Tail; -}; - -template -struct Templates47 { - typedef TemplateSel Head; - typedef Templates46 Tail; -}; - -template -struct Templates48 { - typedef TemplateSel Head; - typedef Templates47 Tail; -}; - -template -struct Templates49 { - typedef TemplateSel Head; - typedef Templates48 Tail; -}; - -template -struct Templates50 { - typedef TemplateSel Head; - typedef Templates49 Tail; -}; - - -// We don't want to require the users to write TemplatesN<...> directly, -// as that would require them to count the length. Templates<...> is much -// easier to write, but generates horrible messages when there is a -// compiler error, as gcc insists on printing out each template -// argument, even if it has the default value (this means Templates -// will appear as Templates in the compiler -// errors). -// -// Our solution is to combine the best part of the two approaches: a -// user would write Templates, and Google Test will translate -// that to TemplatesN internally to make error messages -// readable. The translation is done by the 'type' member of the -// Templates template. -template -struct Templates { - typedef Templates50 type; -}; - -template <> -struct Templates { - typedef Templates0 type; -}; -template -struct Templates { - typedef Templates1 type; -}; -template -struct Templates { - typedef Templates2 type; -}; -template -struct Templates { - typedef Templates3 type; -}; -template -struct Templates { - typedef Templates4 type; -}; -template -struct Templates { - typedef Templates5 type; -}; -template -struct Templates { - typedef Templates6 type; -}; -template -struct Templates { - typedef Templates7 type; -}; -template -struct Templates { - typedef Templates8 type; -}; -template -struct Templates { - typedef Templates9 type; -}; -template -struct Templates { - typedef Templates10 type; -}; -template -struct Templates { - typedef Templates11 type; -}; -template -struct Templates { - typedef Templates12 type; -}; -template -struct Templates { - typedef Templates13 type; -}; -template -struct Templates { - typedef Templates14 type; -}; -template -struct Templates { - typedef Templates15 type; -}; -template -struct Templates { - typedef Templates16 type; -}; -template -struct Templates { - typedef Templates17 type; -}; -template -struct Templates { - typedef Templates18 type; -}; -template -struct Templates { - typedef Templates19 type; -}; -template -struct Templates { - typedef Templates20 type; -}; -template -struct Templates { - typedef Templates21 type; -}; -template -struct Templates { - typedef Templates22 type; -}; -template -struct Templates { - typedef Templates23 type; -}; -template -struct Templates { - typedef Templates24 type; -}; -template -struct Templates { - typedef Templates25 type; -}; -template -struct Templates { - typedef Templates26 type; -}; -template -struct Templates { - typedef Templates27 type; -}; -template -struct Templates { - typedef Templates28 type; -}; -template -struct Templates { - typedef Templates29 type; -}; -template -struct Templates { - typedef Templates30 type; -}; -template -struct Templates { - typedef Templates31 type; -}; -template -struct Templates { - typedef Templates32 type; -}; -template -struct Templates { - typedef Templates33 type; -}; -template -struct Templates { - typedef Templates34 type; -}; -template -struct Templates { - typedef Templates35 type; -}; -template -struct Templates { - typedef Templates36 type; -}; -template -struct Templates { - typedef Templates37 type; -}; -template -struct Templates { - typedef Templates38 type; -}; -template -struct Templates { - typedef Templates39 type; -}; -template -struct Templates { - typedef Templates40 type; -}; -template -struct Templates { - typedef Templates41 type; -}; -template -struct Templates { - typedef Templates42 type; -}; -template -struct Templates { - typedef Templates43 type; -}; -template -struct Templates { - typedef Templates44 type; -}; -template -struct Templates { - typedef Templates45 type; -}; -template -struct Templates { - typedef Templates46 type; -}; -template -struct Templates { - typedef Templates47 type; -}; -template -struct Templates { - typedef Templates48 type; -}; -template -struct Templates { - typedef Templates49 type; -}; - -// The TypeList template makes it possible to use either a single type -// or a Types<...> list in TYPED_TEST_CASE() and -// INSTANTIATE_TYPED_TEST_CASE_P(). - -template -struct TypeList { typedef Types1 type; }; - -template -struct TypeList > { - typedef typename Types::type type; -}; - -} // namespace internal -} // namespace testing - -#endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ - -// Due to C++ preprocessor weirdness, we need double indirection to -// concatenate two tokens when one of them is __LINE__. Writing -// -// foo ## __LINE__ -// -// will result in the token foo__LINE__, instead of foo followed by -// the current line number. For more details, see -// http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6 -#define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar) -#define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar - -// Google Test defines the testing::Message class to allow construction of -// test messages via the << operator. The idea is that anything -// streamable to std::ostream can be streamed to a testing::Message. -// This allows a user to use his own types in Google Test assertions by -// overloading the << operator. -// -// util/gtl/stl_logging-inl.h overloads << for STL containers. These -// overloads cannot be defined in the std namespace, as that will be -// undefined behavior. Therefore, they are defined in the global -// namespace instead. -// -// C++'s symbol lookup rule (i.e. Koenig lookup) says that these -// overloads are visible in either the std namespace or the global -// namespace, but not other namespaces, including the testing -// namespace which Google Test's Message class is in. -// -// To allow STL containers (and other types that has a << operator -// defined in the global namespace) to be used in Google Test assertions, -// testing::Message must access the custom << operator from the global -// namespace. Hence this helper function. -// -// Note: Jeffrey Yasskin suggested an alternative fix by "using -// ::operator<<;" in the definition of Message's operator<<. That fix -// doesn't require a helper function, but unfortunately doesn't -// compile with MSVC. -template -inline void GTestStreamToHelper(std::ostream* os, const T& val) { - *os << val; -} - -namespace testing { - -// Forward declaration of classes. - -class AssertionResult; // Result of an assertion. -class Message; // Represents a failure message. -class Test; // Represents a test. -class TestInfo; // Information about a test. -class TestPartResult; // Result of a test part. -class UnitTest; // A collection of test cases. - -namespace internal { - -struct TraceInfo; // Information about a trace point. -class ScopedTrace; // Implements scoped trace. -class TestInfoImpl; // Opaque implementation of TestInfo -class UnitTestImpl; // Opaque implementation of UnitTest - -// How many times InitGoogleTest() has been called. -extern int g_init_gtest_count; - -// The text used in failure messages to indicate the start of the -// stack trace. -GTEST_API_ extern const char kStackTraceMarker[]; - -// A secret type that Google Test users don't know about. It has no -// definition on purpose. Therefore it's impossible to create a -// Secret object, which is what we want. -class Secret; - -// Two overloaded helpers for checking at compile time whether an -// expression is a null pointer literal (i.e. NULL or any 0-valued -// compile-time integral constant). Their return values have -// different sizes, so we can use sizeof() to test which version is -// picked by the compiler. These helpers have no implementations, as -// we only need their signatures. -// -// Given IsNullLiteralHelper(x), the compiler will pick the first -// version if x can be implicitly converted to Secret*, and pick the -// second version otherwise. Since Secret is a secret and incomplete -// type, the only expression a user can write that has type Secret* is -// a null pointer literal. Therefore, we know that x is a null -// pointer literal if and only if the first version is picked by the -// compiler. -char IsNullLiteralHelper(Secret* p); -char (&IsNullLiteralHelper(...))[2]; // NOLINT - -// A compile-time bool constant that is true if and only if x is a -// null pointer literal (i.e. NULL or any 0-valued compile-time -// integral constant). -#ifdef GTEST_ELLIPSIS_NEEDS_POD_ -// We lose support for NULL detection where the compiler doesn't like -// passing non-POD classes through ellipsis (...). -#define GTEST_IS_NULL_LITERAL_(x) false -#else -#define GTEST_IS_NULL_LITERAL_(x) \ - (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1) -#endif // GTEST_ELLIPSIS_NEEDS_POD_ - -// Appends the user-supplied message to the Google-Test-generated message. -GTEST_API_ String AppendUserMessage(const String& gtest_msg, - const Message& user_msg); - -// A helper class for creating scoped traces in user programs. -class GTEST_API_ ScopedTrace { - public: - // The c'tor pushes the given source file location and message onto - // a trace stack maintained by Google Test. - ScopedTrace(const char* file, int line, const Message& message); - - // The d'tor pops the info pushed by the c'tor. - // - // Note that the d'tor is not virtual in order to be efficient. - // Don't inherit from ScopedTrace! - ~ScopedTrace(); - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace); -} GTEST_ATTRIBUTE_UNUSED_; // A ScopedTrace object does its job in its - // c'tor and d'tor. Therefore it doesn't - // need to be used otherwise. - -// Converts a streamable value to a String. A NULL pointer is -// converted to "(null)". When the input value is a ::string, -// ::std::string, ::wstring, or ::std::wstring object, each NUL -// character in it is replaced with "\\0". -// Declared here but defined in gtest.h, so that it has access -// to the definition of the Message class, required by the ARM -// compiler. -template -String StreamableToString(const T& streamable); - -// Formats a value to be used in a failure message. - -#ifdef GTEST_NEEDS_IS_POINTER_ - -// These are needed as the Nokia Symbian and IBM XL C/C++ compilers -// cannot decide between const T& and const T* in a function template. -// These compilers _can_ decide between class template specializations -// for T and T*, so a tr1::type_traits-like is_pointer works, and we -// can overload on that. - -// This overload makes sure that all pointers (including -// those to char or wchar_t) are printed as raw pointers. -template -inline String FormatValueForFailureMessage(internal::true_type /*dummy*/, - T* pointer) { - return StreamableToString(static_cast(pointer)); -} - -template -inline String FormatValueForFailureMessage(internal::false_type /*dummy*/, - const T& value) { - return StreamableToString(value); -} - -template -inline String FormatForFailureMessage(const T& value) { - return FormatValueForFailureMessage( - typename internal::is_pointer::type(), value); -} - -#else - -// These are needed as the above solution using is_pointer has the -// limitation that T cannot be a type without external linkage, when -// compiled using MSVC. - -template -inline String FormatForFailureMessage(const T& value) { - return StreamableToString(value); -} - -// This overload makes sure that all pointers (including -// those to char or wchar_t) are printed as raw pointers. -template -inline String FormatForFailureMessage(T* pointer) { - return StreamableToString(static_cast(pointer)); -} - -#endif // GTEST_NEEDS_IS_POINTER_ - -// These overloaded versions handle narrow and wide characters. -GTEST_API_ String FormatForFailureMessage(char ch); -GTEST_API_ String FormatForFailureMessage(wchar_t wchar); - -// When this operand is a const char* or char*, and the other operand -// is a ::std::string or ::string, we print this operand as a C string -// rather than a pointer. We do the same for wide strings. - -// This internal macro is used to avoid duplicated code. -#define GTEST_FORMAT_IMPL_(operand2_type, operand1_printer)\ -inline String FormatForComparisonFailureMessage(\ - operand2_type::value_type* str, const operand2_type& /*operand2*/) {\ - return operand1_printer(str);\ -}\ -inline String FormatForComparisonFailureMessage(\ - const operand2_type::value_type* str, const operand2_type& /*operand2*/) {\ - return operand1_printer(str);\ -} - -GTEST_FORMAT_IMPL_(::std::string, String::ShowCStringQuoted) -#if GTEST_HAS_STD_WSTRING -GTEST_FORMAT_IMPL_(::std::wstring, String::ShowWideCStringQuoted) -#endif // GTEST_HAS_STD_WSTRING - -#if GTEST_HAS_GLOBAL_STRING -GTEST_FORMAT_IMPL_(::string, String::ShowCStringQuoted) -#endif // GTEST_HAS_GLOBAL_STRING -#if GTEST_HAS_GLOBAL_WSTRING -GTEST_FORMAT_IMPL_(::wstring, String::ShowWideCStringQuoted) -#endif // GTEST_HAS_GLOBAL_WSTRING - -#undef GTEST_FORMAT_IMPL_ - -// Constructs and returns the message for an equality assertion -// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. -// -// The first four parameters are the expressions used in the assertion -// and their values, as strings. For example, for ASSERT_EQ(foo, bar) -// where foo is 5 and bar is 6, we have: -// -// expected_expression: "foo" -// actual_expression: "bar" -// expected_value: "5" -// actual_value: "6" -// -// The ignoring_case parameter is true iff the assertion is a -// *_STRCASEEQ*. When it's true, the string " (ignoring case)" will -// be inserted into the message. -GTEST_API_ AssertionResult EqFailure(const char* expected_expression, - const char* actual_expression, - const String& expected_value, - const String& actual_value, - bool ignoring_case); - -// Constructs a failure message for Boolean assertions such as EXPECT_TRUE. -GTEST_API_ String GetBoolAssertionFailureMessage( - const AssertionResult& assertion_result, - const char* expression_text, - const char* actual_predicate_value, - const char* expected_predicate_value); - -// This template class represents an IEEE floating-point number -// (either single-precision or double-precision, depending on the -// template parameters). -// -// The purpose of this class is to do more sophisticated number -// comparison. (Due to round-off error, etc, it's very unlikely that -// two floating-points will be equal exactly. Hence a naive -// comparison by the == operation often doesn't work.) -// -// Format of IEEE floating-point: -// -// The most-significant bit being the leftmost, an IEEE -// floating-point looks like -// -// sign_bit exponent_bits fraction_bits -// -// Here, sign_bit is a single bit that designates the sign of the -// number. -// -// For float, there are 8 exponent bits and 23 fraction bits. -// -// For double, there are 11 exponent bits and 52 fraction bits. -// -// More details can be found at -// http://en.wikipedia.org/wiki/IEEE_floating-point_standard. -// -// Template parameter: -// -// RawType: the raw floating-point type (either float or double) -template -class FloatingPoint { - public: - // Defines the unsigned integer type that has the same size as the - // floating point number. - typedef typename TypeWithSize::UInt Bits; - - // Constants. - - // # of bits in a number. - static const size_t kBitCount = 8*sizeof(RawType); - - // # of fraction bits in a number. - static const size_t kFractionBitCount = - std::numeric_limits::digits - 1; - - // # of exponent bits in a number. - static const size_t kExponentBitCount = kBitCount - 1 - kFractionBitCount; - - // The mask for the sign bit. - static const Bits kSignBitMask = static_cast(1) << (kBitCount - 1); - - // The mask for the fraction bits. - static const Bits kFractionBitMask = - ~static_cast(0) >> (kExponentBitCount + 1); - - // The mask for the exponent bits. - static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask); - - // How many ULP's (Units in the Last Place) we want to tolerate when - // comparing two numbers. The larger the value, the more error we - // allow. A 0 value means that two numbers must be exactly the same - // to be considered equal. - // - // The maximum error of a single floating-point operation is 0.5 - // units in the last place. On Intel CPU's, all floating-point - // calculations are done with 80-bit precision, while double has 64 - // bits. Therefore, 4 should be enough for ordinary use. - // - // See the following article for more details on ULP: - // http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm. - static const size_t kMaxUlps = 4; - - // Constructs a FloatingPoint from a raw floating-point number. - // - // On an Intel CPU, passing a non-normalized NAN (Not a Number) - // around may change its bits, although the new value is guaranteed - // to be also a NAN. Therefore, don't expect this constructor to - // preserve the bits in x when x is a NAN. - explicit FloatingPoint(const RawType& x) { u_.value_ = x; } - - // Static methods - - // Reinterprets a bit pattern as a floating-point number. - // - // This function is needed to test the AlmostEquals() method. - static RawType ReinterpretBits(const Bits bits) { - FloatingPoint fp(0); - fp.u_.bits_ = bits; - return fp.u_.value_; - } - - // Returns the floating-point number that represent positive infinity. - static RawType Infinity() { - return ReinterpretBits(kExponentBitMask); - } - - // Non-static methods - - // Returns the bits that represents this number. - const Bits &bits() const { return u_.bits_; } - - // Returns the exponent bits of this number. - Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } - - // Returns the fraction bits of this number. - Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } - - // Returns the sign bit of this number. - Bits sign_bit() const { return kSignBitMask & u_.bits_; } - - // Returns true iff this is NAN (not a number). - bool is_nan() const { - // It's a NAN if the exponent bits are all ones and the fraction - // bits are not entirely zeros. - return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0); - } - - // Returns true iff this number is at most kMaxUlps ULP's away from - // rhs. In particular, this function: - // - // - returns false if either number is (or both are) NAN. - // - treats really large numbers as almost equal to infinity. - // - thinks +0.0 and -0.0 are 0 DLP's apart. - bool AlmostEquals(const FloatingPoint& rhs) const { - // The IEEE standard says that any comparison operation involving - // a NAN must return false. - if (is_nan() || rhs.is_nan()) return false; - - return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) - <= kMaxUlps; - } - - private: - // The data type used to store the actual floating-point number. - union FloatingPointUnion { - RawType value_; // The raw floating-point number. - Bits bits_; // The bits that represent the number. - }; - - // Converts an integer from the sign-and-magnitude representation to - // the biased representation. More precisely, let N be 2 to the - // power of (kBitCount - 1), an integer x is represented by the - // unsigned number x + N. - // - // For instance, - // - // -N + 1 (the most negative number representable using - // sign-and-magnitude) is represented by 1; - // 0 is represented by N; and - // N - 1 (the biggest number representable using - // sign-and-magnitude) is represented by 2N - 1. - // - // Read http://en.wikipedia.org/wiki/Signed_number_representations - // for more details on signed number representations. - static Bits SignAndMagnitudeToBiased(const Bits &sam) { - if (kSignBitMask & sam) { - // sam represents a negative number. - return ~sam + 1; - } else { - // sam represents a positive number. - return kSignBitMask | sam; - } - } - - // Given two numbers in the sign-and-magnitude representation, - // returns the distance between them as an unsigned number. - static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits &sam1, - const Bits &sam2) { - const Bits biased1 = SignAndMagnitudeToBiased(sam1); - const Bits biased2 = SignAndMagnitudeToBiased(sam2); - return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1); - } - - FloatingPointUnion u_; -}; - -// Typedefs the instances of the FloatingPoint template class that we -// care to use. -typedef FloatingPoint Float; -typedef FloatingPoint Double; - -// In order to catch the mistake of putting tests that use different -// test fixture classes in the same test case, we need to assign -// unique IDs to fixture classes and compare them. The TypeId type is -// used to hold such IDs. The user should treat TypeId as an opaque -// type: the only operation allowed on TypeId values is to compare -// them for equality using the == operator. -typedef const void* TypeId; - -template -class TypeIdHelper { - public: - // dummy_ must not have a const type. Otherwise an overly eager - // compiler (e.g. MSVC 7.1 & 8.0) may try to merge - // TypeIdHelper::dummy_ for different Ts as an "optimization". - static bool dummy_; -}; - -template -bool TypeIdHelper::dummy_ = false; - -// GetTypeId() returns the ID of type T. Different values will be -// returned for different types. Calling the function twice with the -// same type argument is guaranteed to return the same ID. -template -TypeId GetTypeId() { - // The compiler is required to allocate a different - // TypeIdHelper::dummy_ variable for each T used to instantiate - // the template. Therefore, the address of dummy_ is guaranteed to - // be unique. - return &(TypeIdHelper::dummy_); -} - -// Returns the type ID of ::testing::Test. Always call this instead -// of GetTypeId< ::testing::Test>() to get the type ID of -// ::testing::Test, as the latter may give the wrong result due to a -// suspected linker bug when compiling Google Test as a Mac OS X -// framework. -GTEST_API_ TypeId GetTestTypeId(); - -// Defines the abstract factory interface that creates instances -// of a Test object. -class TestFactoryBase { - public: - virtual ~TestFactoryBase() {} - - // Creates a test instance to run. The instance is both created and destroyed - // within TestInfoImpl::Run() - virtual Test* CreateTest() = 0; - - protected: - TestFactoryBase() {} - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase); -}; - -// This class provides implementation of TeastFactoryBase interface. -// It is used in TEST and TEST_F macros. -template -class TestFactoryImpl : public TestFactoryBase { - public: - virtual Test* CreateTest() { return new TestClass; } -}; - -#if GTEST_OS_WINDOWS - -// Predicate-formatters for implementing the HRESULT checking macros -// {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED} -// We pass a long instead of HRESULT to avoid causing an -// include dependency for the HRESULT type. -GTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr, - long hr); // NOLINT -GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr, - long hr); // NOLINT - -#endif // GTEST_OS_WINDOWS - -// Formats a source file path and a line number as they would appear -// in a compiler error message. -inline String FormatFileLocation(const char* file, int line) { - const char* const file_name = file == NULL ? "unknown file" : file; - if (line < 0) { - return String::Format("%s:", file_name); - } -#ifdef _MSC_VER - return String::Format("%s(%d):", file_name, line); -#else - return String::Format("%s:%d:", file_name, line); -#endif // _MSC_VER -} - -// Types of SetUpTestCase() and TearDownTestCase() functions. -typedef void (*SetUpTestCaseFunc)(); -typedef void (*TearDownTestCaseFunc)(); - -// Creates a new TestInfo object and registers it with Google Test; -// returns the created object. -// -// Arguments: -// -// test_case_name: name of the test case -// name: name of the test -// test_case_comment: a comment on the test case that will be included in -// the test output -// comment: a comment on the test that will be included in the -// test output -// fixture_class_id: ID of the test fixture class -// set_up_tc: pointer to the function that sets up the test case -// tear_down_tc: pointer to the function that tears down the test case -// factory: pointer to the factory that creates a test object. -// The newly created TestInfo instance will assume -// ownership of the factory object. -GTEST_API_ TestInfo* MakeAndRegisterTestInfo( - const char* test_case_name, const char* name, - const char* test_case_comment, const char* comment, - TypeId fixture_class_id, - SetUpTestCaseFunc set_up_tc, - TearDownTestCaseFunc tear_down_tc, - TestFactoryBase* factory); - -// If *pstr starts with the given prefix, modifies *pstr to be right -// past the prefix and returns true; otherwise leaves *pstr unchanged -// and returns false. None of pstr, *pstr, and prefix can be NULL. -bool SkipPrefix(const char* prefix, const char** pstr); - -#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P - -// State of the definition of a type-parameterized test case. -class GTEST_API_ TypedTestCasePState { - public: - TypedTestCasePState() : registered_(false) {} - - // Adds the given test name to defined_test_names_ and return true - // if the test case hasn't been registered; otherwise aborts the - // program. - bool AddTestName(const char* file, int line, const char* case_name, - const char* test_name) { - if (registered_) { - fprintf(stderr, "%s Test %s must be defined before " - "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n", - FormatFileLocation(file, line).c_str(), test_name, case_name); - fflush(stderr); - posix::Abort(); - } - defined_test_names_.insert(test_name); - return true; - } - - // Verifies that registered_tests match the test names in - // defined_test_names_; returns registered_tests if successful, or - // aborts the program otherwise. - const char* VerifyRegisteredTestNames( - const char* file, int line, const char* registered_tests); - - private: - bool registered_; - ::std::set defined_test_names_; -}; - -// Skips to the first non-space char after the first comma in 'str'; -// returns NULL if no comma is found in 'str'. -inline const char* SkipComma(const char* str) { - const char* comma = strchr(str, ','); - if (comma == NULL) { - return NULL; - } - while (isspace(*(++comma))) {} - return comma; -} - -// Returns the prefix of 'str' before the first comma in it; returns -// the entire string if it contains no comma. -inline String GetPrefixUntilComma(const char* str) { - const char* comma = strchr(str, ','); - return comma == NULL ? String(str) : String(str, comma - str); -} - -// TypeParameterizedTest::Register() -// registers a list of type-parameterized tests with Google Test. The -// return value is insignificant - we just need to return something -// such that we can call this function in a namespace scope. -// -// Implementation note: The GTEST_TEMPLATE_ macro declares a template -// template parameter. It's defined in gtest-type-util.h. -template -class TypeParameterizedTest { - public: - // 'index' is the index of the test in the type list 'Types' - // specified in INSTANTIATE_TYPED_TEST_CASE_P(Prefix, TestCase, - // Types). Valid values for 'index' are [0, N - 1] where N is the - // length of Types. - static bool Register(const char* prefix, const char* case_name, - const char* test_names, int index) { - typedef typename Types::Head Type; - typedef Fixture FixtureClass; - typedef typename GTEST_BIND_(TestSel, Type) TestClass; - - // First, registers the first type-parameterized test in the type - // list. - MakeAndRegisterTestInfo( - String::Format("%s%s%s/%d", prefix, prefix[0] == '\0' ? "" : "/", - case_name, index).c_str(), - GetPrefixUntilComma(test_names).c_str(), - String::Format("TypeParam = %s", GetTypeName().c_str()).c_str(), - "", - GetTypeId(), - TestClass::SetUpTestCase, - TestClass::TearDownTestCase, - new TestFactoryImpl); - - // Next, recurses (at compile time) with the tail of the type list. - return TypeParameterizedTest - ::Register(prefix, case_name, test_names, index + 1); - } -}; - -// The base case for the compile time recursion. -template -class TypeParameterizedTest { - public: - static bool Register(const char* /*prefix*/, const char* /*case_name*/, - const char* /*test_names*/, int /*index*/) { - return true; - } -}; - -// TypeParameterizedTestCase::Register() -// registers *all combinations* of 'Tests' and 'Types' with Google -// Test. The return value is insignificant - we just need to return -// something such that we can call this function in a namespace scope. -template -class TypeParameterizedTestCase { - public: - static bool Register(const char* prefix, const char* case_name, - const char* test_names) { - typedef typename Tests::Head Head; - - // First, register the first test in 'Test' for each type in 'Types'. - TypeParameterizedTest::Register( - prefix, case_name, test_names, 0); - - // Next, recurses (at compile time) with the tail of the test list. - return TypeParameterizedTestCase - ::Register(prefix, case_name, SkipComma(test_names)); - } -}; - -// The base case for the compile time recursion. -template -class TypeParameterizedTestCase { - public: - static bool Register(const char* /*prefix*/, const char* /*case_name*/, - const char* /*test_names*/) { - return true; - } -}; - -#endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P - -// Returns the current OS stack trace as a String. -// -// The maximum number of stack frames to be included is specified by -// the gtest_stack_trace_depth flag. The skip_count parameter -// specifies the number of top frames to be skipped, which doesn't -// count against the number of frames to be included. -// -// For example, if Foo() calls Bar(), which in turn calls -// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in -// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. -GTEST_API_ String GetCurrentOsStackTraceExceptTop(UnitTest* unit_test, - int skip_count); - -// Helpers for suppressing warnings on unreachable code or constant -// condition. - -// Always returns true. -GTEST_API_ bool AlwaysTrue(); - -// Always returns false. -inline bool AlwaysFalse() { return !AlwaysTrue(); } - -// A simple Linear Congruential Generator for generating random -// numbers with a uniform distribution. Unlike rand() and srand(), it -// doesn't use global state (and therefore can't interfere with user -// code). Unlike rand_r(), it's portable. An LCG isn't very random, -// but it's good enough for our purposes. -class GTEST_API_ Random { - public: - static const UInt32 kMaxRange = 1u << 31; - - explicit Random(UInt32 seed) : state_(seed) {} - - void Reseed(UInt32 seed) { state_ = seed; } - - // Generates a random number from [0, range). Crashes if 'range' is - // 0 or greater than kMaxRange. - UInt32 Generate(UInt32 range); - - private: - UInt32 state_; - GTEST_DISALLOW_COPY_AND_ASSIGN_(Random); -}; - -} // namespace internal -} // namespace testing - -#define GTEST_MESSAGE_(message, result_type) \ - ::testing::internal::AssertHelper(result_type, __FILE__, __LINE__, message) \ - = ::testing::Message() - -#define GTEST_FATAL_FAILURE_(message) \ - return GTEST_MESSAGE_(message, ::testing::TestPartResult::kFatalFailure) - -#define GTEST_NONFATAL_FAILURE_(message) \ - GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure) - -#define GTEST_SUCCESS_(message) \ - GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess) - -// Suppresses MSVC warnings 4072 (unreachable code) for the code following -// statement if it returns or throws (or doesn't return or throw in some -// situations). -#define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \ - if (::testing::internal::AlwaysTrue()) { statement; } - -#define GTEST_TEST_THROW_(statement, expected_exception, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const char* gtest_msg = "") { \ - bool gtest_caught_expected = false; \ - try { \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - } \ - catch (expected_exception const&) { \ - gtest_caught_expected = true; \ - } \ - catch (...) { \ - gtest_msg = "Expected: " #statement " throws an exception of type " \ - #expected_exception ".\n Actual: it throws a different " \ - "type."; \ - goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ - } \ - if (!gtest_caught_expected) { \ - gtest_msg = "Expected: " #statement " throws an exception of type " \ - #expected_exception ".\n Actual: it throws nothing."; \ - goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ - } \ - } else \ - GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__): \ - fail(gtest_msg) - -#define GTEST_TEST_NO_THROW_(statement, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const char* gtest_msg = "") { \ - try { \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - } \ - catch (...) { \ - gtest_msg = "Expected: " #statement " doesn't throw an exception.\n" \ - " Actual: it throws."; \ - goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \ - } \ - } else \ - GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \ - fail(gtest_msg) - -#define GTEST_TEST_ANY_THROW_(statement, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const char* gtest_msg = "") { \ - bool gtest_caught_any = false; \ - try { \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - } \ - catch (...) { \ - gtest_caught_any = true; \ - } \ - if (!gtest_caught_any) { \ - gtest_msg = "Expected: " #statement " throws an exception.\n" \ - " Actual: it doesn't."; \ - goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \ - } \ - } else \ - GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \ - fail(gtest_msg) - - -// Implements Boolean test assertions such as EXPECT_TRUE. expression can be -// either a boolean expression or an AssertionResult. text is a textual -// represenation of expression as it was passed into the EXPECT_TRUE. -#define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const ::testing::AssertionResult gtest_ar_ = \ - ::testing::AssertionResult(expression)) \ - ; \ - else \ - fail(::testing::internal::GetBoolAssertionFailureMessage(\ - gtest_ar_, text, #actual, #expected).c_str()) - -#define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const char* gtest_msg = "") { \ - ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \ - gtest_msg = "Expected: " #statement " doesn't generate new fatal " \ - "failures in the current thread.\n" \ - " Actual: it does."; \ - goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \ - } \ - } else \ - GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \ - fail(gtest_msg) - -// Expands to the name of the class that implements the given test. -#define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ - test_case_name##_##test_name##_Test - -// Helper macro for defining tests. -#define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\ -class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\ - public:\ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\ - private:\ - virtual void TestBody();\ - static ::testing::TestInfo* const test_info_;\ - GTEST_DISALLOW_COPY_AND_ASSIGN_(\ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\ -};\ -\ -::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\ - ::test_info_ =\ - ::testing::internal::MakeAndRegisterTestInfo(\ - #test_case_name, #test_name, "", "", \ - (parent_id), \ - parent_class::SetUpTestCase, \ - parent_class::TearDownTestCase, \ - new ::testing::internal::TestFactoryImpl<\ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>);\ -void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file defines the public API for death tests. It is -// #included by gtest.h so a user doesn't need to include this -// directly. - -#ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ -#define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ - -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file defines internal utilities needed for implementing -// death tests. They are subject to change without notice. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ - - -namespace testing { -namespace internal { - -GTEST_DECLARE_string_(internal_run_death_test); - -// Names of the flags (needed for parsing Google Test flags). -const char kDeathTestStyleFlag[] = "death_test_style"; -const char kDeathTestUseFork[] = "death_test_use_fork"; -const char kInternalRunDeathTestFlag[] = "internal_run_death_test"; - -#if GTEST_HAS_DEATH_TEST - -// DeathTest is a class that hides much of the complexity of the -// GTEST_DEATH_TEST_ macro. It is abstract; its static Create method -// returns a concrete class that depends on the prevailing death test -// style, as defined by the --gtest_death_test_style and/or -// --gtest_internal_run_death_test flags. - -// In describing the results of death tests, these terms are used with -// the corresponding definitions: -// -// exit status: The integer exit information in the format specified -// by wait(2) -// exit code: The integer code passed to exit(3), _exit(2), or -// returned from main() -class GTEST_API_ DeathTest { - public: - // Create returns false if there was an error determining the - // appropriate action to take for the current death test; for example, - // if the gtest_death_test_style flag is set to an invalid value. - // The LastMessage method will return a more detailed message in that - // case. Otherwise, the DeathTest pointer pointed to by the "test" - // argument is set. If the death test should be skipped, the pointer - // is set to NULL; otherwise, it is set to the address of a new concrete - // DeathTest object that controls the execution of the current test. - static bool Create(const char* statement, const RE* regex, - const char* file, int line, DeathTest** test); - DeathTest(); - virtual ~DeathTest() { } - - // A helper class that aborts a death test when it's deleted. - class ReturnSentinel { - public: - explicit ReturnSentinel(DeathTest* test) : test_(test) { } - ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); } - private: - DeathTest* const test_; - GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel); - } GTEST_ATTRIBUTE_UNUSED_; - - // An enumeration of possible roles that may be taken when a death - // test is encountered. EXECUTE means that the death test logic should - // be executed immediately. OVERSEE means that the program should prepare - // the appropriate environment for a child process to execute the death - // test, then wait for it to complete. - enum TestRole { OVERSEE_TEST, EXECUTE_TEST }; - - // An enumeration of the two reasons that a test might be aborted. - enum AbortReason { TEST_ENCOUNTERED_RETURN_STATEMENT, TEST_DID_NOT_DIE }; - - // Assumes one of the above roles. - virtual TestRole AssumeRole() = 0; - - // Waits for the death test to finish and returns its status. - virtual int Wait() = 0; - - // Returns true if the death test passed; that is, the test process - // exited during the test, its exit status matches a user-supplied - // predicate, and its stderr output matches a user-supplied regular - // expression. - // The user-supplied predicate may be a macro expression rather - // than a function pointer or functor, or else Wait and Passed could - // be combined. - virtual bool Passed(bool exit_status_ok) = 0; - - // Signals that the death test did not die as expected. - virtual void Abort(AbortReason reason) = 0; - - // Returns a human-readable outcome message regarding the outcome of - // the last death test. - static const char* LastMessage(); - - static void set_last_death_test_message(const String& message); - - private: - // A string containing a description of the outcome of the last death test. - static String last_death_test_message_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(DeathTest); -}; - -// Factory interface for death tests. May be mocked out for testing. -class DeathTestFactory { - public: - virtual ~DeathTestFactory() { } - virtual bool Create(const char* statement, const RE* regex, - const char* file, int line, DeathTest** test) = 0; -}; - -// A concrete DeathTestFactory implementation for normal use. -class DefaultDeathTestFactory : public DeathTestFactory { - public: - virtual bool Create(const char* statement, const RE* regex, - const char* file, int line, DeathTest** test); -}; - -// Returns true if exit_status describes a process that was terminated -// by a signal, or exited normally with a nonzero exit code. -GTEST_API_ bool ExitedUnsuccessfully(int exit_status); - -// This macro is for implementing ASSERT_DEATH*, EXPECT_DEATH*, -// ASSERT_EXIT*, and EXPECT_EXIT*. -#define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (::testing::internal::AlwaysTrue()) { \ - const ::testing::internal::RE& gtest_regex = (regex); \ - ::testing::internal::DeathTest* gtest_dt; \ - if (!::testing::internal::DeathTest::Create(#statement, >est_regex, \ - __FILE__, __LINE__, >est_dt)) { \ - goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ - } \ - if (gtest_dt != NULL) { \ - ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \ - gtest_dt_ptr(gtest_dt); \ - switch (gtest_dt->AssumeRole()) { \ - case ::testing::internal::DeathTest::OVERSEE_TEST: \ - if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \ - goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ - } \ - break; \ - case ::testing::internal::DeathTest::EXECUTE_TEST: { \ - ::testing::internal::DeathTest::ReturnSentinel \ - gtest_sentinel(gtest_dt); \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - gtest_dt->Abort(::testing::internal::DeathTest::TEST_DID_NOT_DIE); \ - break; \ - } \ - } \ - } \ - } else \ - GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__): \ - fail(::testing::internal::DeathTest::LastMessage()) -// The symbol "fail" here expands to something into which a message -// can be streamed. - -// A class representing the parsed contents of the -// --gtest_internal_run_death_test flag, as it existed when -// RUN_ALL_TESTS was called. -class InternalRunDeathTestFlag { - public: - InternalRunDeathTestFlag(const String& a_file, - int a_line, - int an_index, - int a_write_fd) - : file_(a_file), line_(a_line), index_(an_index), - write_fd_(a_write_fd) {} - - ~InternalRunDeathTestFlag() { - if (write_fd_ >= 0) - posix::Close(write_fd_); - } - - String file() const { return file_; } - int line() const { return line_; } - int index() const { return index_; } - int write_fd() const { return write_fd_; } - - private: - String file_; - int line_; - int index_; - int write_fd_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(InternalRunDeathTestFlag); -}; - -// Returns a newly created InternalRunDeathTestFlag object with fields -// initialized from the GTEST_FLAG(internal_run_death_test) flag if -// the flag is specified; otherwise returns NULL. -InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag(); - -#else // GTEST_HAS_DEATH_TEST - -// This macro is used for implementing macros such as -// EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED on systems where -// death tests are not supported. Those macros must compile on such systems -// iff EXPECT_DEATH and ASSERT_DEATH compile with the same parameters on -// systems that support death tests. This allows one to write such a macro -// on a system that does not support death tests and be sure that it will -// compile on a death-test supporting system. -// -// Parameters: -// statement - A statement that a macro such as EXPECT_DEATH would test -// for program termination. This macro has to make sure this -// statement is compiled but not executed, to ensure that -// EXPECT_DEATH_IF_SUPPORTED compiles with a certain -// parameter iff EXPECT_DEATH compiles with it. -// regex - A regex that a macro such as EXPECT_DEATH would use to test -// the output of statement. This parameter has to be -// compiled but not evaluated by this macro, to ensure that -// this macro only accepts expressions that a macro such as -// EXPECT_DEATH would accept. -// terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED -// and a return statement for ASSERT_DEATH_IF_SUPPORTED. -// This ensures that ASSERT_DEATH_IF_SUPPORTED will not -// compile inside functions where ASSERT_DEATH doesn't -// compile. -// -// The branch that has an always false condition is used to ensure that -// statement and regex are compiled (and thus syntactically correct) but -// never executed. The unreachable code macro protects the terminator -// statement from generating an 'unreachable code' warning in case -// statement unconditionally returns or throws. The Message constructor at -// the end allows the syntax of streaming additional messages into the -// macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH. -#define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (::testing::internal::AlwaysTrue()) { \ - GTEST_LOG_(WARNING) \ - << "Death tests are not supported on this platform.\n" \ - << "Statement '" #statement "' cannot be verified."; \ - } else if (::testing::internal::AlwaysFalse()) { \ - ::testing::internal::RE::PartialMatch(".*", (regex)); \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - terminator; \ - } else \ - ::testing::Message() - -#endif // GTEST_HAS_DEATH_TEST - -} // namespace internal -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ - -namespace testing { - -// This flag controls the style of death tests. Valid values are "threadsafe", -// meaning that the death test child process will re-execute the test binary -// from the start, running only a single death test, or "fast", -// meaning that the child process will execute the test logic immediately -// after forking. -GTEST_DECLARE_string_(death_test_style); - -#if GTEST_HAS_DEATH_TEST - -// The following macros are useful for writing death tests. - -// Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is -// executed: -// -// 1. It generates a warning if there is more than one active -// thread. This is because it's safe to fork() or clone() only -// when there is a single thread. -// -// 2. The parent process clone()s a sub-process and runs the death -// test in it; the sub-process exits with code 0 at the end of the -// death test, if it hasn't exited already. -// -// 3. The parent process waits for the sub-process to terminate. -// -// 4. The parent process checks the exit code and error message of -// the sub-process. -// -// Examples: -// -// ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number"); -// for (int i = 0; i < 5; i++) { -// EXPECT_DEATH(server.ProcessRequest(i), -// "Invalid request .* in ProcessRequest()") -// << "Failed to die on request " << i); -// } -// -// ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting"); -// -// bool KilledBySIGHUP(int exit_code) { -// return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP; -// } -// -// ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!"); -// -// On the regular expressions used in death tests: -// -// On POSIX-compliant systems (*nix), we use the library, -// which uses the POSIX extended regex syntax. -// -// On other platforms (e.g. Windows), we only support a simple regex -// syntax implemented as part of Google Test. This limited -// implementation should be enough most of the time when writing -// death tests; though it lacks many features you can find in PCRE -// or POSIX extended regex syntax. For example, we don't support -// union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and -// repetition count ("x{5,7}"), among others. -// -// Below is the syntax that we do support. We chose it to be a -// subset of both PCRE and POSIX extended regex, so it's easy to -// learn wherever you come from. In the following: 'A' denotes a -// literal character, period (.), or a single \\ escape sequence; -// 'x' and 'y' denote regular expressions; 'm' and 'n' are for -// natural numbers. -// -// c matches any literal character c -// \\d matches any decimal digit -// \\D matches any character that's not a decimal digit -// \\f matches \f -// \\n matches \n -// \\r matches \r -// \\s matches any ASCII whitespace, including \n -// \\S matches any character that's not a whitespace -// \\t matches \t -// \\v matches \v -// \\w matches any letter, _, or decimal digit -// \\W matches any character that \\w doesn't match -// \\c matches any literal character c, which must be a punctuation -// . matches any single character except \n -// A? matches 0 or 1 occurrences of A -// A* matches 0 or many occurrences of A -// A+ matches 1 or many occurrences of A -// ^ matches the beginning of a string (not that of each line) -// $ matches the end of a string (not that of each line) -// xy matches x followed by y -// -// If you accidentally use PCRE or POSIX extended regex features -// not implemented by us, you will get a run-time failure. In that -// case, please try to rewrite your regular expression within the -// above syntax. -// -// This implementation is *not* meant to be as highly tuned or robust -// as a compiled regex library, but should perform well enough for a -// death test, which already incurs significant overhead by launching -// a child process. -// -// Known caveats: -// -// A "threadsafe" style death test obtains the path to the test -// program from argv[0] and re-executes it in the sub-process. For -// simplicity, the current implementation doesn't search the PATH -// when launching the sub-process. This means that the user must -// invoke the test program via a path that contains at least one -// path separator (e.g. path/to/foo_test and -// /absolute/path/to/bar_test are fine, but foo_test is not). This -// is rarely a problem as people usually don't put the test binary -// directory in PATH. -// -// TODO(wan@google.com): make thread-safe death tests search the PATH. - -// Asserts that a given statement causes the program to exit, with an -// integer exit status that satisfies predicate, and emitting error output -// that matches regex. -#define ASSERT_EXIT(statement, predicate, regex) \ - GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_) - -// Like ASSERT_EXIT, but continues on to successive tests in the -// test case, if any: -#define EXPECT_EXIT(statement, predicate, regex) \ - GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_) - -// Asserts that a given statement causes the program to exit, either by -// explicitly exiting with a nonzero exit code or being killed by a -// signal, and emitting error output that matches regex. -#define ASSERT_DEATH(statement, regex) \ - ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) - -// Like ASSERT_DEATH, but continues on to successive tests in the -// test case, if any: -#define EXPECT_DEATH(statement, regex) \ - EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) - -// Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*: - -// Tests that an exit code describes a normal exit with a given exit code. -class GTEST_API_ ExitedWithCode { - public: - explicit ExitedWithCode(int exit_code); - bool operator()(int exit_status) const; - private: - // No implementation - assignment is unsupported. - void operator=(const ExitedWithCode& other); - - const int exit_code_; -}; - -#if !GTEST_OS_WINDOWS -// Tests that an exit code describes an exit due to termination by a -// given signal. -class GTEST_API_ KilledBySignal { - public: - explicit KilledBySignal(int signum); - bool operator()(int exit_status) const; - private: - const int signum_; -}; -#endif // !GTEST_OS_WINDOWS - -// EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode. -// The death testing framework causes this to have interesting semantics, -// since the sideeffects of the call are only visible in opt mode, and not -// in debug mode. -// -// In practice, this can be used to test functions that utilize the -// LOG(DFATAL) macro using the following style: -// -// int DieInDebugOr12(int* sideeffect) { -// if (sideeffect) { -// *sideeffect = 12; -// } -// LOG(DFATAL) << "death"; -// return 12; -// } -// -// TEST(TestCase, TestDieOr12WorksInDgbAndOpt) { -// int sideeffect = 0; -// // Only asserts in dbg. -// EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death"); -// -// #ifdef NDEBUG -// // opt-mode has sideeffect visible. -// EXPECT_EQ(12, sideeffect); -// #else -// // dbg-mode no visible sideeffect. -// EXPECT_EQ(0, sideeffect); -// #endif -// } -// -// This will assert that DieInDebugReturn12InOpt() crashes in debug -// mode, usually due to a DCHECK or LOG(DFATAL), but returns the -// appropriate fallback value (12 in this case) in opt mode. If you -// need to test that a function has appropriate side-effects in opt -// mode, include assertions against the side-effects. A general -// pattern for this is: -// -// EXPECT_DEBUG_DEATH({ -// // Side-effects here will have an effect after this statement in -// // opt mode, but none in debug mode. -// EXPECT_EQ(12, DieInDebugOr12(&sideeffect)); -// }, "death"); -// -#ifdef NDEBUG - -#define EXPECT_DEBUG_DEATH(statement, regex) \ - do { statement; } while (::testing::internal::AlwaysFalse()) - -#define ASSERT_DEBUG_DEATH(statement, regex) \ - do { statement; } while (::testing::internal::AlwaysFalse()) - -#else - -#define EXPECT_DEBUG_DEATH(statement, regex) \ - EXPECT_DEATH(statement, regex) - -#define ASSERT_DEBUG_DEATH(statement, regex) \ - ASSERT_DEATH(statement, regex) - -#endif // NDEBUG for EXPECT_DEBUG_DEATH -#endif // GTEST_HAS_DEATH_TEST - -// EXPECT_DEATH_IF_SUPPORTED(statement, regex) and -// ASSERT_DEATH_IF_SUPPORTED(statement, regex) expand to real death tests if -// death tests are supported; otherwise they just issue a warning. This is -// useful when you are combining death test assertions with normal test -// assertions in one test. -#if GTEST_HAS_DEATH_TEST -#define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ - EXPECT_DEATH(statement, regex) -#define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ - ASSERT_DEATH(statement, regex) -#else -#define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ - GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, ) -#define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ - GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, return) -#endif - -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file defines the Message class. -// -// IMPORTANT NOTE: Due to limitation of the C++ language, we have to -// leave some internal implementation details in this header file. -// They are clearly marked by comments like this: -// -// // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -// -// Such code is NOT meant to be used by a user directly, and is subject -// to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user -// program! - -#ifndef GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ -#define GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ - -#include - - -namespace testing { - -// The Message class works like an ostream repeater. -// -// Typical usage: -// -// 1. You stream a bunch of values to a Message object. -// It will remember the text in a StrStream. -// 2. Then you stream the Message object to an ostream. -// This causes the text in the Message to be streamed -// to the ostream. -// -// For example; -// -// testing::Message foo; -// foo << 1 << " != " << 2; -// std::cout << foo; -// -// will print "1 != 2". -// -// Message is not intended to be inherited from. In particular, its -// destructor is not virtual. -// -// Note that StrStream behaves differently in gcc and in MSVC. You -// can stream a NULL char pointer to it in the former, but not in the -// latter (it causes an access violation if you do). The Message -// class hides this difference by treating a NULL char pointer as -// "(null)". -class GTEST_API_ Message { - private: - // The type of basic IO manipulators (endl, ends, and flush) for - // narrow streams. - typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&); - - public: - // Constructs an empty Message. - // We allocate the StrStream separately because it otherwise each use of - // ASSERT/EXPECT in a procedure adds over 200 bytes to the procedure's - // stack frame leading to huge stack frames in some cases; gcc does not reuse - // the stack space. - Message() : ss_(new internal::StrStream) { - // By default, we want there to be enough precision when printing - // a double to a Message. - *ss_ << std::setprecision(std::numeric_limits::digits10 + 2); - } - - // Copy constructor. - Message(const Message& msg) : ss_(new internal::StrStream) { // NOLINT - *ss_ << msg.GetString(); - } - - // Constructs a Message from a C-string. - explicit Message(const char* str) : ss_(new internal::StrStream) { - *ss_ << str; - } - - ~Message() { delete ss_; } -#if GTEST_OS_SYMBIAN - // Streams a value (either a pointer or not) to this object. - template - inline Message& operator <<(const T& value) { - StreamHelper(typename internal::is_pointer::type(), value); - return *this; - } -#else - // Streams a non-pointer value to this object. - template - inline Message& operator <<(const T& val) { - ::GTestStreamToHelper(ss_, val); - return *this; - } - - // Streams a pointer value to this object. - // - // This function is an overload of the previous one. When you - // stream a pointer to a Message, this definition will be used as it - // is more specialized. (The C++ Standard, section - // [temp.func.order].) If you stream a non-pointer, then the - // previous definition will be used. - // - // The reason for this overload is that streaming a NULL pointer to - // ostream is undefined behavior. Depending on the compiler, you - // may get "0", "(nil)", "(null)", or an access violation. To - // ensure consistent result across compilers, we always treat NULL - // as "(null)". - template - inline Message& operator <<(T* const& pointer) { // NOLINT - if (pointer == NULL) { - *ss_ << "(null)"; - } else { - ::GTestStreamToHelper(ss_, pointer); - } - return *this; - } -#endif // GTEST_OS_SYMBIAN - - // Since the basic IO manipulators are overloaded for both narrow - // and wide streams, we have to provide this specialized definition - // of operator <<, even though its body is the same as the - // templatized version above. Without this definition, streaming - // endl or other basic IO manipulators to Message will confuse the - // compiler. - Message& operator <<(BasicNarrowIoManip val) { - *ss_ << val; - return *this; - } - - // Instead of 1/0, we want to see true/false for bool values. - Message& operator <<(bool b) { - return *this << (b ? "true" : "false"); - } - - // These two overloads allow streaming a wide C string to a Message - // using the UTF-8 encoding. - Message& operator <<(const wchar_t* wide_c_str) { - return *this << internal::String::ShowWideCString(wide_c_str); - } - Message& operator <<(wchar_t* wide_c_str) { - return *this << internal::String::ShowWideCString(wide_c_str); - } - -#if GTEST_HAS_STD_WSTRING - // Converts the given wide string to a narrow string using the UTF-8 - // encoding, and streams the result to this Message object. - Message& operator <<(const ::std::wstring& wstr); -#endif // GTEST_HAS_STD_WSTRING - -#if GTEST_HAS_GLOBAL_WSTRING - // Converts the given wide string to a narrow string using the UTF-8 - // encoding, and streams the result to this Message object. - Message& operator <<(const ::wstring& wstr); -#endif // GTEST_HAS_GLOBAL_WSTRING - - // Gets the text streamed to this object so far as a String. - // Each '\0' character in the buffer is replaced with "\\0". - // - // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. - internal::String GetString() const { - return internal::StrStreamToString(ss_); - } - - private: -#if GTEST_OS_SYMBIAN - // These are needed as the Nokia Symbian Compiler cannot decide between - // const T& and const T* in a function template. The Nokia compiler _can_ - // decide between class template specializations for T and T*, so a - // tr1::type_traits-like is_pointer works, and we can overload on that. - template - inline void StreamHelper(internal::true_type /*dummy*/, T* pointer) { - if (pointer == NULL) { - *ss_ << "(null)"; - } else { - ::GTestStreamToHelper(ss_, pointer); - } - } - template - inline void StreamHelper(internal::false_type /*dummy*/, const T& value) { - ::GTestStreamToHelper(ss_, value); - } -#endif // GTEST_OS_SYMBIAN - - // We'll hold the text streamed to this object here. - internal::StrStream* const ss_; - - // We declare (but don't implement) this to prevent the compiler - // from implementing the assignment operator. - void operator=(const Message&); -}; - -// Streams a Message to an ostream. -inline std::ostream& operator <<(std::ostream& os, const Message& sb) { - return os << sb.GetString(); -} - -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ -// This file was GENERATED by a script. DO NOT EDIT BY HAND!!! - -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: vladl@google.com (Vlad Losev) -// -// Macros and functions for implementing parameterized tests -// in Google C++ Testing Framework (Google Test) -// -// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! -// -#ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ -#define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ - - -// Value-parameterized tests allow you to test your code with different -// parameters without writing multiple copies of the same test. -// -// Here is how you use value-parameterized tests: - -#if 0 - -// To write value-parameterized tests, first you should define a fixture -// class. It must be derived from testing::TestWithParam, where T is -// the type of your parameter values. TestWithParam is itself derived -// from testing::Test. T can be any copyable type. If it's a raw pointer, -// you are responsible for managing the lifespan of the pointed values. - -class FooTest : public ::testing::TestWithParam { - // You can implement all the usual class fixture members here. -}; - -// Then, use the TEST_P macro to define as many parameterized tests -// for this fixture as you want. The _P suffix is for "parameterized" -// or "pattern", whichever you prefer to think. - -TEST_P(FooTest, DoesBlah) { - // Inside a test, access the test parameter with the GetParam() method - // of the TestWithParam class: - EXPECT_TRUE(foo.Blah(GetParam())); - ... -} - -TEST_P(FooTest, HasBlahBlah) { - ... -} - -// Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test -// case with any set of parameters you want. Google Test defines a number -// of functions for generating test parameters. They return what we call -// (surprise!) parameter generators. Here is a summary of them, which -// are all in the testing namespace: -// -// -// Range(begin, end [, step]) - Yields values {begin, begin+step, -// begin+step+step, ...}. The values do not -// include end. step defaults to 1. -// Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}. -// ValuesIn(container) - Yields values from a C-style array, an STL -// ValuesIn(begin,end) container, or an iterator range [begin, end). -// Bool() - Yields sequence {false, true}. -// Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product -// for the math savvy) of the values generated -// by the N generators. -// -// For more details, see comments at the definitions of these functions below -// in this file. -// -// The following statement will instantiate tests from the FooTest test case -// each with parameter values "meeny", "miny", and "moe". - -INSTANTIATE_TEST_CASE_P(InstantiationName, - FooTest, - Values("meeny", "miny", "moe")); - -// To distinguish different instances of the pattern, (yes, you -// can instantiate it more then once) the first argument to the -// INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the -// actual test case name. Remember to pick unique prefixes for different -// instantiations. The tests from the instantiation above will have -// these names: -// -// * InstantiationName/FooTest.DoesBlah/0 for "meeny" -// * InstantiationName/FooTest.DoesBlah/1 for "miny" -// * InstantiationName/FooTest.DoesBlah/2 for "moe" -// * InstantiationName/FooTest.HasBlahBlah/0 for "meeny" -// * InstantiationName/FooTest.HasBlahBlah/1 for "miny" -// * InstantiationName/FooTest.HasBlahBlah/2 for "moe" -// -// You can use these names in --gtest_filter. -// -// This statement will instantiate all tests from FooTest again, each -// with parameter values "cat" and "dog": - -const char* pets[] = {"cat", "dog"}; -INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets)); - -// The tests from the instantiation above will have these names: -// -// * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat" -// * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog" -// * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat" -// * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog" -// -// Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests -// in the given test case, whether their definitions come before or -// AFTER the INSTANTIATE_TEST_CASE_P statement. -// -// Please also note that generator expressions (including parameters to the -// generators) are evaluated in InitGoogleTest(), after main() has started. -// This allows the user on one hand, to adjust generator parameters in order -// to dynamically determine a set of tests to run and on the other hand, -// give the user a chance to inspect the generated tests with Google Test -// reflection API before RUN_ALL_TESTS() is executed. -// -// You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc -// for more examples. -// -// In the future, we plan to publish the API for defining new parameter -// generators. But for now this interface remains part of the internal -// implementation and is subject to change. - -#endif // 0 - - -#if !GTEST_OS_SYMBIAN -#include -#endif - -// scripts/fuse_gtest.py depends on gtest's own header being #included -// *unconditionally*. Therefore these #includes cannot be moved -// inside #if GTEST_HAS_PARAM_TEST. -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) - -// Type and function utilities for implementing parameterized tests. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ - -#include -#include -#include - -// scripts/fuse_gtest.py depends on gtest's own header being #included -// *unconditionally*. Therefore these #includes cannot be moved -// inside #if GTEST_HAS_PARAM_TEST. -// Copyright 2003 Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: Dan Egnor (egnor@google.com) -// -// A "smart" pointer type with reference tracking. Every pointer to a -// particular object is kept on a circular linked list. When the last pointer -// to an object is destroyed or reassigned, the object is deleted. -// -// Used properly, this deletes the object when the last reference goes away. -// There are several caveats: -// - Like all reference counting schemes, cycles lead to leaks. -// - Each smart pointer is actually two pointers (8 bytes instead of 4). -// - Every time a pointer is assigned, the entire list of pointers to that -// object is traversed. This class is therefore NOT SUITABLE when there -// will often be more than two or three pointers to a particular object. -// - References are only tracked as long as linked_ptr<> objects are copied. -// If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS -// will happen (double deletion). -// -// A good use of this class is storing object references in STL containers. -// You can safely put linked_ptr<> in a vector<>. -// Other uses may not be as good. -// -// Note: If you use an incomplete type with linked_ptr<>, the class -// *containing* linked_ptr<> must have a constructor and destructor (even -// if they do nothing!). -// -// Bill Gibbons suggested we use something like this. -// -// Thread Safety: -// Unlike other linked_ptr implementations, in this implementation -// a linked_ptr object is thread-safe in the sense that: -// - it's safe to copy linked_ptr objects concurrently, -// - it's safe to copy *from* a linked_ptr and read its underlying -// raw pointer (e.g. via get()) concurrently, and -// - it's safe to write to two linked_ptrs that point to the same -// shared object concurrently. -// TODO(wan@google.com): rename this to safe_linked_ptr to avoid -// confusion with normal linked_ptr. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ - -#include -#include - - -namespace testing { -namespace internal { - -// Protects copying of all linked_ptr objects. -GTEST_API_ GTEST_DECLARE_STATIC_MUTEX_(g_linked_ptr_mutex); - -// This is used internally by all instances of linked_ptr<>. It needs to be -// a non-template class because different types of linked_ptr<> can refer to -// the same object (linked_ptr(obj) vs linked_ptr(obj)). -// So, it needs to be possible for different types of linked_ptr to participate -// in the same circular linked list, so we need a single class type here. -// -// DO NOT USE THIS CLASS DIRECTLY YOURSELF. Use linked_ptr. -class linked_ptr_internal { - public: - // Create a new circle that includes only this instance. - void join_new() { - next_ = this; - } - - // Many linked_ptr operations may change p.link_ for some linked_ptr - // variable p in the same circle as this object. Therefore we need - // to prevent two such operations from occurring concurrently. - // - // Note that different types of linked_ptr objects can coexist in a - // circle (e.g. linked_ptr, linked_ptr, and - // linked_ptr). Therefore we must use a single mutex to - // protect all linked_ptr objects. This can create serious - // contention in production code, but is acceptable in a testing - // framework. - - // Join an existing circle. - // L < g_linked_ptr_mutex - void join(linked_ptr_internal const* ptr) { - MutexLock lock(&g_linked_ptr_mutex); - - linked_ptr_internal const* p = ptr; - while (p->next_ != ptr) p = p->next_; - p->next_ = this; - next_ = ptr; - } - - // Leave whatever circle we're part of. Returns true if we were the - // last member of the circle. Once this is done, you can join() another. - // L < g_linked_ptr_mutex - bool depart() { - MutexLock lock(&g_linked_ptr_mutex); - - if (next_ == this) return true; - linked_ptr_internal const* p = next_; - while (p->next_ != this) p = p->next_; - p->next_ = next_; - return false; - } - - private: - mutable linked_ptr_internal const* next_; -}; - -template -class linked_ptr { - public: - typedef T element_type; - - // Take over ownership of a raw pointer. This should happen as soon as - // possible after the object is created. - explicit linked_ptr(T* ptr = NULL) { capture(ptr); } - ~linked_ptr() { depart(); } - - // Copy an existing linked_ptr<>, adding ourselves to the list of references. - template linked_ptr(linked_ptr const& ptr) { copy(&ptr); } - linked_ptr(linked_ptr const& ptr) { // NOLINT - assert(&ptr != this); - copy(&ptr); - } - - // Assignment releases the old value and acquires the new. - template linked_ptr& operator=(linked_ptr const& ptr) { - depart(); - copy(&ptr); - return *this; - } - - linked_ptr& operator=(linked_ptr const& ptr) { - if (&ptr != this) { - depart(); - copy(&ptr); - } - return *this; - } - - // Smart pointer members. - void reset(T* ptr = NULL) { - depart(); - capture(ptr); - } - T* get() const { return value_; } - T* operator->() const { return value_; } - T& operator*() const { return *value_; } - // Release ownership of the pointed object and returns it. - // Sole ownership by this linked_ptr object is required. - T* release() { - bool last = link_.depart(); - assert(last); - T* v = value_; - value_ = NULL; - return v; - } - - bool operator==(T* p) const { return value_ == p; } - bool operator!=(T* p) const { return value_ != p; } - template - bool operator==(linked_ptr const& ptr) const { - return value_ == ptr.get(); - } - template - bool operator!=(linked_ptr const& ptr) const { - return value_ != ptr.get(); - } - - private: - template - friend class linked_ptr; - - T* value_; - linked_ptr_internal link_; - - void depart() { - if (link_.depart()) delete value_; - } - - void capture(T* ptr) { - value_ = ptr; - link_.join_new(); - } - - template void copy(linked_ptr const* ptr) { - value_ = ptr->get(); - if (value_) - link_.join(&ptr->link_); - else - link_.join_new(); - } -}; - -template inline -bool operator==(T* ptr, const linked_ptr& x) { - return ptr == x.get(); -} - -template inline -bool operator!=(T* ptr, const linked_ptr& x) { - return ptr != x.get(); -} - -// A function to convert T* into linked_ptr -// Doing e.g. make_linked_ptr(new FooBarBaz(arg)) is a shorter notation -// for linked_ptr >(new FooBarBaz(arg)) -template -linked_ptr make_linked_ptr(T* ptr) { - return linked_ptr(ptr); -} - -} // namespace internal -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ - -#if GTEST_HAS_PARAM_TEST - -namespace testing { -namespace internal { - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Outputs a message explaining invalid registration of different -// fixture class for the same test case. This may happen when -// TEST_P macro is used to define two tests with the same name -// but in different namespaces. -GTEST_API_ void ReportInvalidTestCaseType(const char* test_case_name, - const char* file, int line); - -template class ParamGeneratorInterface; -template class ParamGenerator; - -// Interface for iterating over elements provided by an implementation -// of ParamGeneratorInterface. -template -class ParamIteratorInterface { - public: - virtual ~ParamIteratorInterface() {} - // A pointer to the base generator instance. - // Used only for the purposes of iterator comparison - // to make sure that two iterators belong to the same generator. - virtual const ParamGeneratorInterface* BaseGenerator() const = 0; - // Advances iterator to point to the next element - // provided by the generator. The caller is responsible - // for not calling Advance() on an iterator equal to - // BaseGenerator()->End(). - virtual void Advance() = 0; - // Clones the iterator object. Used for implementing copy semantics - // of ParamIterator. - virtual ParamIteratorInterface* Clone() const = 0; - // Dereferences the current iterator and provides (read-only) access - // to the pointed value. It is the caller's responsibility not to call - // Current() on an iterator equal to BaseGenerator()->End(). - // Used for implementing ParamGenerator::operator*(). - virtual const T* Current() const = 0; - // Determines whether the given iterator and other point to the same - // element in the sequence generated by the generator. - // Used for implementing ParamGenerator::operator==(). - virtual bool Equals(const ParamIteratorInterface& other) const = 0; -}; - -// Class iterating over elements provided by an implementation of -// ParamGeneratorInterface. It wraps ParamIteratorInterface -// and implements the const forward iterator concept. -template -class ParamIterator { - public: - typedef T value_type; - typedef const T& reference; - typedef ptrdiff_t difference_type; - - // ParamIterator assumes ownership of the impl_ pointer. - ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} - ParamIterator& operator=(const ParamIterator& other) { - if (this != &other) - impl_.reset(other.impl_->Clone()); - return *this; - } - - const T& operator*() const { return *impl_->Current(); } - const T* operator->() const { return impl_->Current(); } - // Prefix version of operator++. - ParamIterator& operator++() { - impl_->Advance(); - return *this; - } - // Postfix version of operator++. - ParamIterator operator++(int /*unused*/) { - ParamIteratorInterface* clone = impl_->Clone(); - impl_->Advance(); - return ParamIterator(clone); - } - bool operator==(const ParamIterator& other) const { - return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_); - } - bool operator!=(const ParamIterator& other) const { - return !(*this == other); - } - - private: - friend class ParamGenerator; - explicit ParamIterator(ParamIteratorInterface* impl) : impl_(impl) {} - scoped_ptr > impl_; -}; - -// ParamGeneratorInterface is the binary interface to access generators -// defined in other translation units. -template -class ParamGeneratorInterface { - public: - typedef T ParamType; - - virtual ~ParamGeneratorInterface() {} - - // Generator interface definition - virtual ParamIteratorInterface* Begin() const = 0; - virtual ParamIteratorInterface* End() const = 0; -}; - -// Wraps ParamGeneratorInterface and provides general generator syntax -// compatible with the STL Container concept. -// This class implements copy initialization semantics and the contained -// ParamGeneratorInterface instance is shared among all copies -// of the original object. This is possible because that instance is immutable. -template -class ParamGenerator { - public: - typedef ParamIterator iterator; - - explicit ParamGenerator(ParamGeneratorInterface* impl) : impl_(impl) {} - ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {} - - ParamGenerator& operator=(const ParamGenerator& other) { - impl_ = other.impl_; - return *this; - } - - iterator begin() const { return iterator(impl_->Begin()); } - iterator end() const { return iterator(impl_->End()); } - - private: - ::testing::internal::linked_ptr > impl_; -}; - -// Generates values from a range of two comparable values. Can be used to -// generate sequences of user-defined types that implement operator+() and -// operator<(). -// This class is used in the Range() function. -template -class RangeGenerator : public ParamGeneratorInterface { - public: - RangeGenerator(T begin, T end, IncrementT step) - : begin_(begin), end_(end), - step_(step), end_index_(CalculateEndIndex(begin, end, step)) {} - virtual ~RangeGenerator() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, begin_, 0, step_); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, end_, end_index_, step_); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, T value, int index, - IncrementT step) - : base_(base), value_(value), index_(index), step_(step) {} - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - virtual void Advance() { - value_ = value_ + step_; - index_++; - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const T* Current() const { return &value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const int other_index = - CheckedDowncastToActualType(&other)->index_; - return index_ == other_index; - } - - private: - Iterator(const Iterator& other) - : ParamIteratorInterface(), - base_(other.base_), value_(other.value_), index_(other.index_), - step_(other.step_) {} - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - T value_; - int index_; - const IncrementT step_; - }; // class RangeGenerator::Iterator - - static int CalculateEndIndex(const T& begin, - const T& end, - const IncrementT& step) { - int end_index = 0; - for (T i = begin; i < end; i = i + step) - end_index++; - return end_index; - } - - // No implementation - assignment is unsupported. - void operator=(const RangeGenerator& other); - - const T begin_; - const T end_; - const IncrementT step_; - // The index for the end() iterator. All the elements in the generated - // sequence are indexed (0-based) to aid iterator comparison. - const int end_index_; -}; // class RangeGenerator - - -// Generates values from a pair of STL-style iterators. Used in the -// ValuesIn() function. The elements are copied from the source range -// since the source can be located on the stack, and the generator -// is likely to persist beyond that stack frame. -template -class ValuesInIteratorRangeGenerator : public ParamGeneratorInterface { - public: - template - ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end) - : container_(begin, end) {} - virtual ~ValuesInIteratorRangeGenerator() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, container_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, container_.end()); - } - - private: - typedef typename ::std::vector ContainerType; - - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - typename ContainerType::const_iterator iterator) - : base_(base), iterator_(iterator) {} - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - virtual void Advance() { - ++iterator_; - value_.reset(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - // We need to use cached value referenced by iterator_ because *iterator_ - // can return a temporary object (and of type other then T), so just - // having "return &*iterator_;" doesn't work. - // value_ is updated here and not in Advance() because Advance() - // can advance iterator_ beyond the end of the range, and we cannot - // detect that fact. The client code, on the other hand, is - // responsible for not calling Current() on an out-of-range iterator. - virtual const T* Current() const { - if (value_.get() == NULL) - value_.reset(new T(*iterator_)); - return value_.get(); - } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - return iterator_ == - CheckedDowncastToActualType(&other)->iterator_; - } - - private: - Iterator(const Iterator& other) - // The explicit constructor call suppresses a false warning - // emitted by gcc when supplied with the -Wextra option. - : ParamIteratorInterface(), - base_(other.base_), - iterator_(other.iterator_) {} - - const ParamGeneratorInterface* const base_; - typename ContainerType::const_iterator iterator_; - // A cached value of *iterator_. We keep it here to allow access by - // pointer in the wrapping iterator's operator->(). - // value_ needs to be mutable to be accessed in Current(). - // Use of scoped_ptr helps manage cached value's lifetime, - // which is bound by the lifespan of the iterator itself. - mutable scoped_ptr value_; - }; // class ValuesInIteratorRangeGenerator::Iterator - - // No implementation - assignment is unsupported. - void operator=(const ValuesInIteratorRangeGenerator& other); - - const ContainerType container_; -}; // class ValuesInIteratorRangeGenerator - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Stores a parameter value and later creates tests parameterized with that -// value. -template -class ParameterizedTestFactory : public TestFactoryBase { - public: - typedef typename TestClass::ParamType ParamType; - explicit ParameterizedTestFactory(ParamType parameter) : - parameter_(parameter) {} - virtual Test* CreateTest() { - TestClass::SetParam(¶meter_); - return new TestClass(); - } - - private: - const ParamType parameter_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory); -}; - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// TestMetaFactoryBase is a base class for meta-factories that create -// test factories for passing into MakeAndRegisterTestInfo function. -template -class TestMetaFactoryBase { - public: - virtual ~TestMetaFactoryBase() {} - - virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0; -}; - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// TestMetaFactory creates test factories for passing into -// MakeAndRegisterTestInfo function. Since MakeAndRegisterTestInfo receives -// ownership of test factory pointer, same factory object cannot be passed -// into that method twice. But ParameterizedTestCaseInfo is going to call -// it for each Test/Parameter value combination. Thus it needs meta factory -// creator class. -template -class TestMetaFactory - : public TestMetaFactoryBase { - public: - typedef typename TestCase::ParamType ParamType; - - TestMetaFactory() {} - - virtual TestFactoryBase* CreateTestFactory(ParamType parameter) { - return new ParameterizedTestFactory(parameter); - } - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestMetaFactory); -}; - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// ParameterizedTestCaseInfoBase is a generic interface -// to ParameterizedTestCaseInfo classes. ParameterizedTestCaseInfoBase -// accumulates test information provided by TEST_P macro invocations -// and generators provided by INSTANTIATE_TEST_CASE_P macro invocations -// and uses that information to register all resulting test instances -// in RegisterTests method. The ParameterizeTestCaseRegistry class holds -// a collection of pointers to the ParameterizedTestCaseInfo objects -// and calls RegisterTests() on each of them when asked. -class ParameterizedTestCaseInfoBase { - public: - virtual ~ParameterizedTestCaseInfoBase() {} - - // Base part of test case name for display purposes. - virtual const String& GetTestCaseName() const = 0; - // Test case id to verify identity. - virtual TypeId GetTestCaseTypeId() const = 0; - // UnitTest class invokes this method to register tests in this - // test case right before running them in RUN_ALL_TESTS macro. - // This method should not be called more then once on any single - // instance of a ParameterizedTestCaseInfoBase derived class. - virtual void RegisterTests() = 0; - - protected: - ParameterizedTestCaseInfoBase() {} - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfoBase); -}; - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// ParameterizedTestCaseInfo accumulates tests obtained from TEST_P -// macro invocations for a particular test case and generators -// obtained from INSTANTIATE_TEST_CASE_P macro invocations for that -// test case. It registers tests with all values generated by all -// generators when asked. -template -class ParameterizedTestCaseInfo : public ParameterizedTestCaseInfoBase { - public: - // ParamType and GeneratorCreationFunc are private types but are required - // for declarations of public methods AddTestPattern() and - // AddTestCaseInstantiation(). - typedef typename TestCase::ParamType ParamType; - // A function that returns an instance of appropriate generator type. - typedef ParamGenerator(GeneratorCreationFunc)(); - - explicit ParameterizedTestCaseInfo(const char* name) - : test_case_name_(name) {} - - // Test case base name for display purposes. - virtual const String& GetTestCaseName() const { return test_case_name_; } - // Test case id to verify identity. - virtual TypeId GetTestCaseTypeId() const { return GetTypeId(); } - // TEST_P macro uses AddTestPattern() to record information - // about a single test in a LocalTestInfo structure. - // test_case_name is the base name of the test case (without invocation - // prefix). test_base_name is the name of an individual test without - // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is - // test case base name and DoBar is test base name. - void AddTestPattern(const char* test_case_name, - const char* test_base_name, - TestMetaFactoryBase* meta_factory) { - tests_.push_back(linked_ptr(new TestInfo(test_case_name, - test_base_name, - meta_factory))); - } - // INSTANTIATE_TEST_CASE_P macro uses AddGenerator() to record information - // about a generator. - int AddTestCaseInstantiation(const char* instantiation_name, - GeneratorCreationFunc* func, - const char* /* file */, - int /* line */) { - instantiations_.push_back(::std::make_pair(instantiation_name, func)); - return 0; // Return value used only to run this method in namespace scope. - } - // UnitTest class invokes this method to register tests in this test case - // test cases right before running tests in RUN_ALL_TESTS macro. - // This method should not be called more then once on any single - // instance of a ParameterizedTestCaseInfoBase derived class. - // UnitTest has a guard to prevent from calling this method more then once. - virtual void RegisterTests() { - for (typename TestInfoContainer::iterator test_it = tests_.begin(); - test_it != tests_.end(); ++test_it) { - linked_ptr test_info = *test_it; - for (typename InstantiationContainer::iterator gen_it = - instantiations_.begin(); gen_it != instantiations_.end(); - ++gen_it) { - const String& instantiation_name = gen_it->first; - ParamGenerator generator((*gen_it->second)()); - - Message test_case_name_stream; - if ( !instantiation_name.empty() ) - test_case_name_stream << instantiation_name.c_str() << "/"; - test_case_name_stream << test_info->test_case_base_name.c_str(); - - int i = 0; - for (typename ParamGenerator::iterator param_it = - generator.begin(); - param_it != generator.end(); ++param_it, ++i) { - Message test_name_stream; - test_name_stream << test_info->test_base_name.c_str() << "/" << i; - ::testing::internal::MakeAndRegisterTestInfo( - test_case_name_stream.GetString().c_str(), - test_name_stream.GetString().c_str(), - "", // test_case_comment - "", // comment; TODO(vladl@google.com): provide parameter value - // representation. - GetTestCaseTypeId(), - TestCase::SetUpTestCase, - TestCase::TearDownTestCase, - test_info->test_meta_factory->CreateTestFactory(*param_it)); - } // for param_it - } // for gen_it - } // for test_it - } // RegisterTests - - private: - // LocalTestInfo structure keeps information about a single test registered - // with TEST_P macro. - struct TestInfo { - TestInfo(const char* a_test_case_base_name, - const char* a_test_base_name, - TestMetaFactoryBase* a_test_meta_factory) : - test_case_base_name(a_test_case_base_name), - test_base_name(a_test_base_name), - test_meta_factory(a_test_meta_factory) {} - - const String test_case_base_name; - const String test_base_name; - const scoped_ptr > test_meta_factory; - }; - typedef ::std::vector > TestInfoContainer; - // Keeps pairs of - // received from INSTANTIATE_TEST_CASE_P macros. - typedef ::std::vector > - InstantiationContainer; - - const String test_case_name_; - TestInfoContainer tests_; - InstantiationContainer instantiations_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfo); -}; // class ParameterizedTestCaseInfo - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// ParameterizedTestCaseRegistry contains a map of ParameterizedTestCaseInfoBase -// classes accessed by test case names. TEST_P and INSTANTIATE_TEST_CASE_P -// macros use it to locate their corresponding ParameterizedTestCaseInfo -// descriptors. -class ParameterizedTestCaseRegistry { - public: - ParameterizedTestCaseRegistry() {} - ~ParameterizedTestCaseRegistry() { - for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); - it != test_case_infos_.end(); ++it) { - delete *it; - } - } - - // Looks up or creates and returns a structure containing information about - // tests and instantiations of a particular test case. - template - ParameterizedTestCaseInfo* GetTestCasePatternHolder( - const char* test_case_name, - const char* file, - int line) { - ParameterizedTestCaseInfo* typed_test_info = NULL; - for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); - it != test_case_infos_.end(); ++it) { - if ((*it)->GetTestCaseName() == test_case_name) { - if ((*it)->GetTestCaseTypeId() != GetTypeId()) { - // Complain about incorrect usage of Google Test facilities - // and terminate the program since we cannot guaranty correct - // test case setup and tear-down in this case. - ReportInvalidTestCaseType(test_case_name, file, line); - abort(); - } else { - // At this point we are sure that the object we found is of the same - // type we are looking for, so we downcast it to that type - // without further checks. - typed_test_info = CheckedDowncastToActualType< - ParameterizedTestCaseInfo >(*it); - } - break; - } - } - if (typed_test_info == NULL) { - typed_test_info = new ParameterizedTestCaseInfo(test_case_name); - test_case_infos_.push_back(typed_test_info); - } - return typed_test_info; - } - void RegisterTests() { - for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); - it != test_case_infos_.end(); ++it) { - (*it)->RegisterTests(); - } - } - - private: - typedef ::std::vector TestCaseInfoContainer; - - TestCaseInfoContainer test_case_infos_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseRegistry); -}; - -} // namespace internal -} // namespace testing - -#endif // GTEST_HAS_PARAM_TEST - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ -// This file was GENERATED by a script. DO NOT EDIT BY HAND!!! - -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) - -// Type and function utilities for implementing parameterized tests. -// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! -// -// Currently Google Test supports at most 50 arguments in Values, -// and at most 10 arguments in Combine. Please contact -// googletestframework@googlegroups.com if you need more. -// Please note that the number of arguments to Combine is limited -// by the maximum arity of the implementation of tr1::tuple which is -// currently set at 10. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ - -// scripts/fuse_gtest.py depends on gtest's own header being #included -// *unconditionally*. Therefore these #includes cannot be moved -// inside #if GTEST_HAS_PARAM_TEST. - -#if GTEST_HAS_PARAM_TEST - -namespace testing { - -// Forward declarations of ValuesIn(), which is implemented in -// include/gtest/gtest-param-test.h. -template -internal::ParamGenerator< - typename ::std::iterator_traits::value_type> ValuesIn( - ForwardIterator begin, ForwardIterator end); - -template -internal::ParamGenerator ValuesIn(const T (&array)[N]); - -template -internal::ParamGenerator ValuesIn( - const Container& container); - -namespace internal { - -// Used in the Values() function to provide polymorphic capabilities. -template -class ValueArray1 { - public: - explicit ValueArray1(T1 v1) : v1_(v1) {} - - template - operator ParamGenerator() const { return ValuesIn(&v1_, &v1_ + 1); } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray1& other); - - const T1 v1_; -}; - -template -class ValueArray2 { - public: - ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray2& other); - - const T1 v1_; - const T2 v2_; -}; - -template -class ValueArray3 { - public: - ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray3& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; -}; - -template -class ValueArray4 { - public: - ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray4& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; -}; - -template -class ValueArray5 { - public: - ValueArray5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray5& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; -}; - -template -class ValueArray6 { - public: - ValueArray6(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray6& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; -}; - -template -class ValueArray7 { - public: - ValueArray7(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray7& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; -}; - -template -class ValueArray8 { - public: - ValueArray8(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray8& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; -}; - -template -class ValueArray9 { - public: - ValueArray9(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, - T9 v9) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray9& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; -}; - -template -class ValueArray10 { - public: - ValueArray10(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray10& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; -}; - -template -class ValueArray11 { - public: - ValueArray11(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), - v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray11& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; -}; - -template -class ValueArray12 { - public: - ValueArray12(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), - v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray12& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; -}; - -template -class ValueArray13 { - public: - ValueArray13(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), - v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), - v12_(v12), v13_(v13) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray13& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; -}; - -template -class ValueArray14 { - public: - ValueArray14(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray14& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; -}; - -template -class ValueArray15 { - public: - ValueArray15(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray15& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; -}; - -template -class ValueArray16 { - public: - ValueArray16(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), - v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), - v16_(v16) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray16& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; -}; - -template -class ValueArray17 { - public: - ValueArray17(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, - T17 v17) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray17& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; -}; - -template -class ValueArray18 { - public: - ValueArray18(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray18& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; -}; - -template -class ValueArray19 { - public: - ValueArray19(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), - v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), - v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray19& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; -}; - -template -class ValueArray20 { - public: - ValueArray20(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), - v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), - v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), - v19_(v19), v20_(v20) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray20& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; -}; - -template -class ValueArray21 { - public: - ValueArray21(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), - v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), - v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), - v18_(v18), v19_(v19), v20_(v20), v21_(v21) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray21& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; -}; - -template -class ValueArray22 { - public: - ValueArray22(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray22& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; -}; - -template -class ValueArray23 { - public: - ValueArray23(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, - v23_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray23& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; -}; - -template -class ValueArray24 { - public: - ValueArray24(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), - v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), - v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), - v22_(v22), v23_(v23), v24_(v24) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray24& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; -}; - -template -class ValueArray25 { - public: - ValueArray25(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, - T25 v25) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray25& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; -}; - -template -class ValueArray26 { - public: - ValueArray26(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray26& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; -}; - -template -class ValueArray27 { - public: - ValueArray27(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), - v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), - v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), - v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), - v26_(v26), v27_(v27) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray27& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; -}; - -template -class ValueArray28 { - public: - ValueArray28(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), - v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), - v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), - v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), - v25_(v25), v26_(v26), v27_(v27), v28_(v28) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray28& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; -}; - -template -class ValueArray29 { - public: - ValueArray29(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), - v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), - v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), - v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), - v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray29& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; -}; - -template -class ValueArray30 { - public: - ValueArray30(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray30& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; -}; - -template -class ValueArray31 { - public: - ValueArray31(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30), v31_(v31) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray31& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; -}; - -template -class ValueArray32 { - public: - ValueArray32(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), - v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), - v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), - v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), - v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray32& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; -}; - -template -class ValueArray33 { - public: - ValueArray33(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, - T33 v33) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray33& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; -}; - -template -class ValueArray34 { - public: - ValueArray34(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33), v34_(v34) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray34& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; -}; - -template -class ValueArray35 { - public: - ValueArray35(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), - v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), - v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), - v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), - v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), - v32_(v32), v33_(v33), v34_(v34), v35_(v35) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, - v35_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray35& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; -}; - -template -class ValueArray36 { - public: - ValueArray36(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), - v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), - v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), - v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), - v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), - v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray36& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; -}; - -template -class ValueArray37 { - public: - ValueArray37(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), - v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), - v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), - v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), - v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), - v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), - v36_(v36), v37_(v37) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray37& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; -}; - -template -class ValueArray38 { - public: - ValueArray38(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), - v35_(v35), v36_(v36), v37_(v37), v38_(v38) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray38& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; -}; - -template -class ValueArray39 { - public: - ValueArray39(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), - v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray39& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; -}; - -template -class ValueArray40 { - public: - ValueArray40(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), - v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), - v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), - v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), - v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), - v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), - v40_(v40) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray40& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; -}; - -template -class ValueArray41 { - public: - ValueArray41(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, - T41 v41) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), - v39_(v39), v40_(v40), v41_(v41) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray41& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; -}; - -template -class ValueArray42 { - public: - ValueArray42(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), - v39_(v39), v40_(v40), v41_(v41), v42_(v42) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray42& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; -}; - -template -class ValueArray43 { - public: - ValueArray43(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), - v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), - v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), - v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), - v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), - v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), - v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray43& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; -}; - -template -class ValueArray44 { - public: - ValueArray44(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), - v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), - v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), - v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), - v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), - v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), - v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), - v43_(v43), v44_(v44) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray44& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; -}; - -template -class ValueArray45 { - public: - ValueArray45(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), - v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), - v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), - v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), - v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), - v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), - v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), - v42_(v42), v43_(v43), v44_(v44), v45_(v45) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray45& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; -}; - -template -class ValueArray46 { - public: - ValueArray46(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), - v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), - v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray46& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; - const T46 v46_; -}; - -template -class ValueArray47 { - public: - ValueArray47(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), - v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), - v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), - v47_(v47) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, - v47_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray47& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; - const T46 v46_; - const T47 v47_; -}; - -template -class ValueArray48 { - public: - ValueArray48(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), - v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), - v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), - v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), - v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), - v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), - v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), - v46_(v46), v47_(v47), v48_(v48) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, v47_, - v48_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray48& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; - const T46 v46_; - const T47 v47_; - const T48 v48_; -}; - -template -class ValueArray49 { - public: - ValueArray49(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, - T49 v49) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), - v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), - v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, v47_, - v48_, v49_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray49& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; - const T46 v46_; - const T47 v47_; - const T48 v48_; - const T49 v49_; -}; - -template -class ValueArray50 { - public: - ValueArray50(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49, - T50 v50) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), - v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), - v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49), v50_(v50) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, v47_, - v48_, v49_, v50_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray50& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; - const T46 v46_; - const T47 v47_; - const T48 v48_; - const T49 v49_; - const T50 v50_; -}; - -#if GTEST_HAS_COMBINE -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Generates values from the Cartesian product of values produced -// by the argument generators. -// -template -class CartesianProductGenerator2 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator2(const ParamGenerator& g1, - const ParamGenerator& g2) - : g1_(g1), g2_(g2) {} - virtual ~CartesianProductGenerator2() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current2_; - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - ParamType current_value_; - }; // class CartesianProductGenerator2::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator2& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; -}; // class CartesianProductGenerator2 - - -template -class CartesianProductGenerator3 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator3(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3) - : g1_(g1), g2_(g2), g3_(g3) {} - virtual ~CartesianProductGenerator3() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current3_; - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - ParamType current_value_; - }; // class CartesianProductGenerator3::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator3& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; -}; // class CartesianProductGenerator3 - - -template -class CartesianProductGenerator4 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator4(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} - virtual ~CartesianProductGenerator4() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current4_; - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - ParamType current_value_; - }; // class CartesianProductGenerator4::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator4& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; -}; // class CartesianProductGenerator4 - - -template -class CartesianProductGenerator5 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator5(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} - virtual ~CartesianProductGenerator5() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current5_; - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - ParamType current_value_; - }; // class CartesianProductGenerator5::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator5& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; -}; // class CartesianProductGenerator5 - - -template -class CartesianProductGenerator6 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator6(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5, - const ParamGenerator& g6) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} - virtual ~CartesianProductGenerator6() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5, - const ParamGenerator& g6, - const typename ParamGenerator::iterator& current6) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5), - begin6_(g6.begin()), end6_(g6.end()), current6_(current6) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current6_; - if (current6_ == end6_) { - current6_ = begin6_; - ++current5_; - } - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_ && - current6_ == typed_other->current6_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_), - begin6_(other.begin6_), - end6_(other.end6_), - current6_(other.current6_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_, *current6_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_ || - current6_ == end6_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - const typename ParamGenerator::iterator begin6_; - const typename ParamGenerator::iterator end6_; - typename ParamGenerator::iterator current6_; - ParamType current_value_; - }; // class CartesianProductGenerator6::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator6& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; - const ParamGenerator g6_; -}; // class CartesianProductGenerator6 - - -template -class CartesianProductGenerator7 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator7(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5, - const ParamGenerator& g6, const ParamGenerator& g7) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} - virtual ~CartesianProductGenerator7() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, - g7_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5, - const ParamGenerator& g6, - const typename ParamGenerator::iterator& current6, - const ParamGenerator& g7, - const typename ParamGenerator::iterator& current7) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5), - begin6_(g6.begin()), end6_(g6.end()), current6_(current6), - begin7_(g7.begin()), end7_(g7.end()), current7_(current7) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current7_; - if (current7_ == end7_) { - current7_ = begin7_; - ++current6_; - } - if (current6_ == end6_) { - current6_ = begin6_; - ++current5_; - } - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_ && - current6_ == typed_other->current6_ && - current7_ == typed_other->current7_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_), - begin6_(other.begin6_), - end6_(other.end6_), - current6_(other.current6_), - begin7_(other.begin7_), - end7_(other.end7_), - current7_(other.current7_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_, *current6_, *current7_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_ || - current6_ == end6_ || - current7_ == end7_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - const typename ParamGenerator::iterator begin6_; - const typename ParamGenerator::iterator end6_; - typename ParamGenerator::iterator current6_; - const typename ParamGenerator::iterator begin7_; - const typename ParamGenerator::iterator end7_; - typename ParamGenerator::iterator current7_; - ParamType current_value_; - }; // class CartesianProductGenerator7::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator7& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; - const ParamGenerator g6_; - const ParamGenerator g7_; -}; // class CartesianProductGenerator7 - - -template -class CartesianProductGenerator8 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator8(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5, - const ParamGenerator& g6, const ParamGenerator& g7, - const ParamGenerator& g8) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), - g8_(g8) {} - virtual ~CartesianProductGenerator8() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, - g7_.begin(), g8_, g8_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, - g8_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5, - const ParamGenerator& g6, - const typename ParamGenerator::iterator& current6, - const ParamGenerator& g7, - const typename ParamGenerator::iterator& current7, - const ParamGenerator& g8, - const typename ParamGenerator::iterator& current8) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5), - begin6_(g6.begin()), end6_(g6.end()), current6_(current6), - begin7_(g7.begin()), end7_(g7.end()), current7_(current7), - begin8_(g8.begin()), end8_(g8.end()), current8_(current8) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current8_; - if (current8_ == end8_) { - current8_ = begin8_; - ++current7_; - } - if (current7_ == end7_) { - current7_ = begin7_; - ++current6_; - } - if (current6_ == end6_) { - current6_ = begin6_; - ++current5_; - } - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_ && - current6_ == typed_other->current6_ && - current7_ == typed_other->current7_ && - current8_ == typed_other->current8_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_), - begin6_(other.begin6_), - end6_(other.end6_), - current6_(other.current6_), - begin7_(other.begin7_), - end7_(other.end7_), - current7_(other.current7_), - begin8_(other.begin8_), - end8_(other.end8_), - current8_(other.current8_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_, *current6_, *current7_, *current8_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_ || - current6_ == end6_ || - current7_ == end7_ || - current8_ == end8_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - const typename ParamGenerator::iterator begin6_; - const typename ParamGenerator::iterator end6_; - typename ParamGenerator::iterator current6_; - const typename ParamGenerator::iterator begin7_; - const typename ParamGenerator::iterator end7_; - typename ParamGenerator::iterator current7_; - const typename ParamGenerator::iterator begin8_; - const typename ParamGenerator::iterator end8_; - typename ParamGenerator::iterator current8_; - ParamType current_value_; - }; // class CartesianProductGenerator8::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator8& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; - const ParamGenerator g6_; - const ParamGenerator g7_; - const ParamGenerator g8_; -}; // class CartesianProductGenerator8 - - -template -class CartesianProductGenerator9 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator9(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5, - const ParamGenerator& g6, const ParamGenerator& g7, - const ParamGenerator& g8, const ParamGenerator& g9) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), - g9_(g9) {} - virtual ~CartesianProductGenerator9() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, - g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, - g8_.end(), g9_, g9_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5, - const ParamGenerator& g6, - const typename ParamGenerator::iterator& current6, - const ParamGenerator& g7, - const typename ParamGenerator::iterator& current7, - const ParamGenerator& g8, - const typename ParamGenerator::iterator& current8, - const ParamGenerator& g9, - const typename ParamGenerator::iterator& current9) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5), - begin6_(g6.begin()), end6_(g6.end()), current6_(current6), - begin7_(g7.begin()), end7_(g7.end()), current7_(current7), - begin8_(g8.begin()), end8_(g8.end()), current8_(current8), - begin9_(g9.begin()), end9_(g9.end()), current9_(current9) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current9_; - if (current9_ == end9_) { - current9_ = begin9_; - ++current8_; - } - if (current8_ == end8_) { - current8_ = begin8_; - ++current7_; - } - if (current7_ == end7_) { - current7_ = begin7_; - ++current6_; - } - if (current6_ == end6_) { - current6_ = begin6_; - ++current5_; - } - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_ && - current6_ == typed_other->current6_ && - current7_ == typed_other->current7_ && - current8_ == typed_other->current8_ && - current9_ == typed_other->current9_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_), - begin6_(other.begin6_), - end6_(other.end6_), - current6_(other.current6_), - begin7_(other.begin7_), - end7_(other.end7_), - current7_(other.current7_), - begin8_(other.begin8_), - end8_(other.end8_), - current8_(other.current8_), - begin9_(other.begin9_), - end9_(other.end9_), - current9_(other.current9_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_, *current6_, *current7_, *current8_, - *current9_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_ || - current6_ == end6_ || - current7_ == end7_ || - current8_ == end8_ || - current9_ == end9_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - const typename ParamGenerator::iterator begin6_; - const typename ParamGenerator::iterator end6_; - typename ParamGenerator::iterator current6_; - const typename ParamGenerator::iterator begin7_; - const typename ParamGenerator::iterator end7_; - typename ParamGenerator::iterator current7_; - const typename ParamGenerator::iterator begin8_; - const typename ParamGenerator::iterator end8_; - typename ParamGenerator::iterator current8_; - const typename ParamGenerator::iterator begin9_; - const typename ParamGenerator::iterator end9_; - typename ParamGenerator::iterator current9_; - ParamType current_value_; - }; // class CartesianProductGenerator9::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator9& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; - const ParamGenerator g6_; - const ParamGenerator g7_; - const ParamGenerator g8_; - const ParamGenerator g9_; -}; // class CartesianProductGenerator9 - - -template -class CartesianProductGenerator10 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator10(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5, - const ParamGenerator& g6, const ParamGenerator& g7, - const ParamGenerator& g8, const ParamGenerator& g9, - const ParamGenerator& g10) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), - g9_(g9), g10_(g10) {} - virtual ~CartesianProductGenerator10() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, - g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin(), g10_, g10_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, - g8_.end(), g9_, g9_.end(), g10_, g10_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5, - const ParamGenerator& g6, - const typename ParamGenerator::iterator& current6, - const ParamGenerator& g7, - const typename ParamGenerator::iterator& current7, - const ParamGenerator& g8, - const typename ParamGenerator::iterator& current8, - const ParamGenerator& g9, - const typename ParamGenerator::iterator& current9, - const ParamGenerator& g10, - const typename ParamGenerator::iterator& current10) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5), - begin6_(g6.begin()), end6_(g6.end()), current6_(current6), - begin7_(g7.begin()), end7_(g7.end()), current7_(current7), - begin8_(g8.begin()), end8_(g8.end()), current8_(current8), - begin9_(g9.begin()), end9_(g9.end()), current9_(current9), - begin10_(g10.begin()), end10_(g10.end()), current10_(current10) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current10_; - if (current10_ == end10_) { - current10_ = begin10_; - ++current9_; - } - if (current9_ == end9_) { - current9_ = begin9_; - ++current8_; - } - if (current8_ == end8_) { - current8_ = begin8_; - ++current7_; - } - if (current7_ == end7_) { - current7_ = begin7_; - ++current6_; - } - if (current6_ == end6_) { - current6_ = begin6_; - ++current5_; - } - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_ && - current6_ == typed_other->current6_ && - current7_ == typed_other->current7_ && - current8_ == typed_other->current8_ && - current9_ == typed_other->current9_ && - current10_ == typed_other->current10_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_), - begin6_(other.begin6_), - end6_(other.end6_), - current6_(other.current6_), - begin7_(other.begin7_), - end7_(other.end7_), - current7_(other.current7_), - begin8_(other.begin8_), - end8_(other.end8_), - current8_(other.current8_), - begin9_(other.begin9_), - end9_(other.end9_), - current9_(other.current9_), - begin10_(other.begin10_), - end10_(other.end10_), - current10_(other.current10_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_, *current6_, *current7_, *current8_, - *current9_, *current10_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_ || - current6_ == end6_ || - current7_ == end7_ || - current8_ == end8_ || - current9_ == end9_ || - current10_ == end10_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - const typename ParamGenerator::iterator begin6_; - const typename ParamGenerator::iterator end6_; - typename ParamGenerator::iterator current6_; - const typename ParamGenerator::iterator begin7_; - const typename ParamGenerator::iterator end7_; - typename ParamGenerator::iterator current7_; - const typename ParamGenerator::iterator begin8_; - const typename ParamGenerator::iterator end8_; - typename ParamGenerator::iterator current8_; - const typename ParamGenerator::iterator begin9_; - const typename ParamGenerator::iterator end9_; - typename ParamGenerator::iterator current9_; - const typename ParamGenerator::iterator begin10_; - const typename ParamGenerator::iterator end10_; - typename ParamGenerator::iterator current10_; - ParamType current_value_; - }; // class CartesianProductGenerator10::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator10& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; - const ParamGenerator g6_; - const ParamGenerator g7_; - const ParamGenerator g8_; - const ParamGenerator g9_; - const ParamGenerator g10_; -}; // class CartesianProductGenerator10 - - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Helper classes providing Combine() with polymorphic features. They allow -// casting CartesianProductGeneratorN to ParamGenerator if T is -// convertible to U. -// -template -class CartesianProductHolder2 { - public: -CartesianProductHolder2(const Generator1& g1, const Generator2& g2) - : g1_(g1), g2_(g2) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator2( - static_cast >(g1_), - static_cast >(g2_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder2& other); - - const Generator1 g1_; - const Generator2 g2_; -}; // class CartesianProductHolder2 - -template -class CartesianProductHolder3 { - public: -CartesianProductHolder3(const Generator1& g1, const Generator2& g2, - const Generator3& g3) - : g1_(g1), g2_(g2), g3_(g3) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator3( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder3& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; -}; // class CartesianProductHolder3 - -template -class CartesianProductHolder4 { - public: -CartesianProductHolder4(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator4( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder4& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; -}; // class CartesianProductHolder4 - -template -class CartesianProductHolder5 { - public: -CartesianProductHolder5(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator5( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder5& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; -}; // class CartesianProductHolder5 - -template -class CartesianProductHolder6 { - public: -CartesianProductHolder6(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5, - const Generator6& g6) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator6( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_), - static_cast >(g6_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder6& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; - const Generator6 g6_; -}; // class CartesianProductHolder6 - -template -class CartesianProductHolder7 { - public: -CartesianProductHolder7(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5, - const Generator6& g6, const Generator7& g7) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator7( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_), - static_cast >(g6_), - static_cast >(g7_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder7& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; - const Generator6 g6_; - const Generator7 g7_; -}; // class CartesianProductHolder7 - -template -class CartesianProductHolder8 { - public: -CartesianProductHolder8(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5, - const Generator6& g6, const Generator7& g7, const Generator8& g8) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), - g8_(g8) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator8( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_), - static_cast >(g6_), - static_cast >(g7_), - static_cast >(g8_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder8& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; - const Generator6 g6_; - const Generator7 g7_; - const Generator8 g8_; -}; // class CartesianProductHolder8 - -template -class CartesianProductHolder9 { - public: -CartesianProductHolder9(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5, - const Generator6& g6, const Generator7& g7, const Generator8& g8, - const Generator9& g9) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), - g9_(g9) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator9( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_), - static_cast >(g6_), - static_cast >(g7_), - static_cast >(g8_), - static_cast >(g9_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder9& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; - const Generator6 g6_; - const Generator7 g7_; - const Generator8 g8_; - const Generator9 g9_; -}; // class CartesianProductHolder9 - -template -class CartesianProductHolder10 { - public: -CartesianProductHolder10(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5, - const Generator6& g6, const Generator7& g7, const Generator8& g8, - const Generator9& g9, const Generator10& g10) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), - g9_(g9), g10_(g10) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator10( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_), - static_cast >(g6_), - static_cast >(g7_), - static_cast >(g8_), - static_cast >(g9_), - static_cast >(g10_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder10& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; - const Generator6 g6_; - const Generator7 g7_; - const Generator8 g8_; - const Generator9 g9_; - const Generator10 g10_; -}; // class CartesianProductHolder10 - -#endif // GTEST_HAS_COMBINE - -} // namespace internal -} // namespace testing - -#endif // GTEST_HAS_PARAM_TEST - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ - -#if GTEST_HAS_PARAM_TEST - -namespace testing { - -// Functions producing parameter generators. -// -// Google Test uses these generators to produce parameters for value- -// parameterized tests. When a parameterized test case is instantiated -// with a particular generator, Google Test creates and runs tests -// for each element in the sequence produced by the generator. -// -// In the following sample, tests from test case FooTest are instantiated -// each three times with parameter values 3, 5, and 8: -// -// class FooTest : public TestWithParam { ... }; -// -// TEST_P(FooTest, TestThis) { -// } -// TEST_P(FooTest, TestThat) { -// } -// INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8)); -// - -// Range() returns generators providing sequences of values in a range. -// -// Synopsis: -// Range(start, end) -// - returns a generator producing a sequence of values {start, start+1, -// start+2, ..., }. -// Range(start, end, step) -// - returns a generator producing a sequence of values {start, start+step, -// start+step+step, ..., }. -// Notes: -// * The generated sequences never include end. For example, Range(1, 5) -// returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) -// returns a generator producing {1, 3, 5, 7}. -// * start and end must have the same type. That type may be any integral or -// floating-point type or a user defined type satisfying these conditions: -// * It must be assignable (have operator=() defined). -// * It must have operator+() (operator+(int-compatible type) for -// two-operand version). -// * It must have operator<() defined. -// Elements in the resulting sequences will also have that type. -// * Condition start < end must be satisfied in order for resulting sequences -// to contain any elements. -// -template -internal::ParamGenerator Range(T start, T end, IncrementT step) { - return internal::ParamGenerator( - new internal::RangeGenerator(start, end, step)); -} - -template -internal::ParamGenerator Range(T start, T end) { - return Range(start, end, 1); -} - -// ValuesIn() function allows generation of tests with parameters coming from -// a container. -// -// Synopsis: -// ValuesIn(const T (&array)[N]) -// - returns a generator producing sequences with elements from -// a C-style array. -// ValuesIn(const Container& container) -// - returns a generator producing sequences with elements from -// an STL-style container. -// ValuesIn(Iterator begin, Iterator end) -// - returns a generator producing sequences with elements from -// a range [begin, end) defined by a pair of STL-style iterators. These -// iterators can also be plain C pointers. -// -// Please note that ValuesIn copies the values from the containers -// passed in and keeps them to generate tests in RUN_ALL_TESTS(). -// -// Examples: -// -// This instantiates tests from test case StringTest -// each with C-string values of "foo", "bar", and "baz": -// -// const char* strings[] = {"foo", "bar", "baz"}; -// INSTANTIATE_TEST_CASE_P(StringSequence, SrtingTest, ValuesIn(strings)); -// -// This instantiates tests from test case StlStringTest -// each with STL strings with values "a" and "b": -// -// ::std::vector< ::std::string> GetParameterStrings() { -// ::std::vector< ::std::string> v; -// v.push_back("a"); -// v.push_back("b"); -// return v; -// } -// -// INSTANTIATE_TEST_CASE_P(CharSequence, -// StlStringTest, -// ValuesIn(GetParameterStrings())); -// -// -// This will also instantiate tests from CharTest -// each with parameter values 'a' and 'b': -// -// ::std::list GetParameterChars() { -// ::std::list list; -// list.push_back('a'); -// list.push_back('b'); -// return list; -// } -// ::std::list l = GetParameterChars(); -// INSTANTIATE_TEST_CASE_P(CharSequence2, -// CharTest, -// ValuesIn(l.begin(), l.end())); -// -template -internal::ParamGenerator< - typename ::std::iterator_traits::value_type> ValuesIn( - ForwardIterator begin, - ForwardIterator end) { - typedef typename ::std::iterator_traits::value_type - ParamType; - return internal::ParamGenerator( - new internal::ValuesInIteratorRangeGenerator(begin, end)); -} - -template -internal::ParamGenerator ValuesIn(const T (&array)[N]) { - return ValuesIn(array, array + N); -} - -template -internal::ParamGenerator ValuesIn( - const Container& container) { - return ValuesIn(container.begin(), container.end()); -} - -// Values() allows generating tests from explicitly specified list of -// parameters. -// -// Synopsis: -// Values(T v1, T v2, ..., T vN) -// - returns a generator producing sequences with elements v1, v2, ..., vN. -// -// For example, this instantiates tests from test case BarTest each -// with values "one", "two", and "three": -// -// INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three")); -// -// This instantiates tests from test case BazTest each with values 1, 2, 3.5. -// The exact type of values will depend on the type of parameter in BazTest. -// -// INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5)); -// -// Currently, Values() supports from 1 to 50 parameters. -// -template -internal::ValueArray1 Values(T1 v1) { - return internal::ValueArray1(v1); -} - -template -internal::ValueArray2 Values(T1 v1, T2 v2) { - return internal::ValueArray2(v1, v2); -} - -template -internal::ValueArray3 Values(T1 v1, T2 v2, T3 v3) { - return internal::ValueArray3(v1, v2, v3); -} - -template -internal::ValueArray4 Values(T1 v1, T2 v2, T3 v3, T4 v4) { - return internal::ValueArray4(v1, v2, v3, v4); -} - -template -internal::ValueArray5 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5) { - return internal::ValueArray5(v1, v2, v3, v4, v5); -} - -template -internal::ValueArray6 Values(T1 v1, T2 v2, T3 v3, - T4 v4, T5 v5, T6 v6) { - return internal::ValueArray6(v1, v2, v3, v4, v5, v6); -} - -template -internal::ValueArray7 Values(T1 v1, T2 v2, T3 v3, - T4 v4, T5 v5, T6 v6, T7 v7) { - return internal::ValueArray7(v1, v2, v3, v4, v5, - v6, v7); -} - -template -internal::ValueArray8 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8) { - return internal::ValueArray8(v1, v2, v3, v4, - v5, v6, v7, v8); -} - -template -internal::ValueArray9 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9) { - return internal::ValueArray9(v1, v2, v3, - v4, v5, v6, v7, v8, v9); -} - -template -internal::ValueArray10 Values(T1 v1, - T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10) { - return internal::ValueArray10(v1, - v2, v3, v4, v5, v6, v7, v8, v9, v10); -} - -template -internal::ValueArray11 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11) { - return internal::ValueArray11(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11); -} - -template -internal::ValueArray12 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12) { - return internal::ValueArray12(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12); -} - -template -internal::ValueArray13 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13) { - return internal::ValueArray13(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13); -} - -template -internal::ValueArray14 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) { - return internal::ValueArray14(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, - v14); -} - -template -internal::ValueArray15 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, - T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) { - return internal::ValueArray15(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, - v13, v14, v15); -} - -template -internal::ValueArray16 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16) { - return internal::ValueArray16(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, - v12, v13, v14, v15, v16); -} - -template -internal::ValueArray17 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17) { - return internal::ValueArray17(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, - v11, v12, v13, v14, v15, v16, v17); -} - -template -internal::ValueArray18 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, - T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18) { - return internal::ValueArray18(v1, v2, v3, v4, v5, v6, v7, v8, v9, - v10, v11, v12, v13, v14, v15, v16, v17, v18); -} - -template -internal::ValueArray19 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, - T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, - T15 v15, T16 v16, T17 v17, T18 v18, T19 v19) { - return internal::ValueArray19(v1, v2, v3, v4, v5, v6, v7, v8, - v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19); -} - -template -internal::ValueArray20 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, - T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20) { - return internal::ValueArray20(v1, v2, v3, v4, v5, v6, v7, - v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20); -} - -template -internal::ValueArray21 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, - T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21) { - return internal::ValueArray21(v1, v2, v3, v4, v5, v6, - v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21); -} - -template -internal::ValueArray22 Values(T1 v1, T2 v2, T3 v3, - T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22) { - return internal::ValueArray22(v1, v2, v3, v4, - v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, - v20, v21, v22); -} - -template -internal::ValueArray23 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22, T23 v23) { - return internal::ValueArray23(v1, v2, v3, - v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, - v20, v21, v22, v23); -} - -template -internal::ValueArray24 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22, T23 v23, T24 v24) { - return internal::ValueArray24(v1, v2, - v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, - v19, v20, v21, v22, v23, v24); -} - -template -internal::ValueArray25 Values(T1 v1, - T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, - T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, - T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25) { - return internal::ValueArray25(v1, - v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, - v18, v19, v20, v21, v22, v23, v24, v25); -} - -template -internal::ValueArray26 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26) { - return internal::ValueArray26(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, - v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26); -} - -template -internal::ValueArray27 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27) { - return internal::ValueArray27(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, - v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27); -} - -template -internal::ValueArray28 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28) { - return internal::ValueArray28(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, - v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, - v28); -} - -template -internal::ValueArray29 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29) { - return internal::ValueArray29(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, - v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, - v27, v28, v29); -} - -template -internal::ValueArray30 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, - T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, - T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, - T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) { - return internal::ValueArray30(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, - v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, - v26, v27, v28, v29, v30); -} - -template -internal::ValueArray31 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) { - return internal::ValueArray31(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, - v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, - v25, v26, v27, v28, v29, v30, v31); -} - -template -internal::ValueArray32 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, - T32 v32) { - return internal::ValueArray32(v1, v2, v3, v4, v5, v6, v7, v8, v9, - v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, - v24, v25, v26, v27, v28, v29, v30, v31, v32); -} - -template -internal::ValueArray33 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, - T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, - T32 v32, T33 v33) { - return internal::ValueArray33(v1, v2, v3, v4, v5, v6, v7, v8, - v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, - v24, v25, v26, v27, v28, v29, v30, v31, v32, v33); -} - -template -internal::ValueArray34 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, - T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, - T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, - T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, - T31 v31, T32 v32, T33 v33, T34 v34) { - return internal::ValueArray34(v1, v2, v3, v4, v5, v6, v7, - v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, - v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34); -} - -template -internal::ValueArray35 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, - T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, - T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, - T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35) { - return internal::ValueArray35(v1, v2, v3, v4, v5, v6, - v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, - v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35); -} - -template -internal::ValueArray36 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, - T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, - T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, - T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36) { - return internal::ValueArray36(v1, v2, v3, v4, - v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, - v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, - v34, v35, v36); -} - -template -internal::ValueArray37 Values(T1 v1, T2 v2, T3 v3, - T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, - T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, - T37 v37) { - return internal::ValueArray37(v1, v2, v3, - v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, - v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, - v34, v35, v36, v37); -} - -template -internal::ValueArray38 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, - T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, - T37 v37, T38 v38) { - return internal::ValueArray38(v1, v2, - v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, - v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, - v33, v34, v35, v36, v37, v38); -} - -template -internal::ValueArray39 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, - T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, - T37 v37, T38 v38, T39 v39) { - return internal::ValueArray39(v1, - v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, - v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, - v32, v33, v34, v35, v36, v37, v38, v39); -} - -template -internal::ValueArray40 Values(T1 v1, - T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, - T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, - T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, - T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, - T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) { - return internal::ValueArray40(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, - v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, - v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40); -} - -template -internal::ValueArray41 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41) { - return internal::ValueArray41(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, - v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, - v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41); -} - -template -internal::ValueArray42 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42) { - return internal::ValueArray42(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, - v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, - v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, - v42); -} - -template -internal::ValueArray43 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43) { - return internal::ValueArray43(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, - v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, - v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, - v41, v42, v43); -} - -template -internal::ValueArray44 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44) { - return internal::ValueArray44(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, - v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, - v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, - v40, v41, v42, v43, v44); -} - -template -internal::ValueArray45 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, - T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, - T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, - T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, - T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, - T41 v41, T42 v42, T43 v43, T44 v44, T45 v45) { - return internal::ValueArray45(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, - v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, - v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, - v39, v40, v41, v42, v43, v44, v45); -} - -template -internal::ValueArray46 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, - T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, - T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) { - return internal::ValueArray46(v1, v2, v3, v4, v5, v6, v7, v8, v9, - v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, - v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, - v38, v39, v40, v41, v42, v43, v44, v45, v46); -} - -template -internal::ValueArray47 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, - T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, - T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) { - return internal::ValueArray47(v1, v2, v3, v4, v5, v6, v7, v8, - v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, - v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, - v38, v39, v40, v41, v42, v43, v44, v45, v46, v47); -} - -template -internal::ValueArray48 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, - T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, - T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, - T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, - T48 v48) { - return internal::ValueArray48(v1, v2, v3, v4, v5, v6, v7, - v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, - v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, - v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48); -} - -template -internal::ValueArray49 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, - T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, - T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, - T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, - T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, - T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, - T47 v47, T48 v48, T49 v49) { - return internal::ValueArray49(v1, v2, v3, v4, v5, v6, - v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, - v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, - v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49); -} - -template -internal::ValueArray50 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, - T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, - T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, - T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, - T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, - T46 v46, T47 v47, T48 v48, T49 v49, T50 v50) { - return internal::ValueArray50(v1, v2, v3, v4, - v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, - v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, - v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, - v48, v49, v50); -} - -// Bool() allows generating tests with parameters in a set of (false, true). -// -// Synopsis: -// Bool() -// - returns a generator producing sequences with elements {false, true}. -// -// It is useful when testing code that depends on Boolean flags. Combinations -// of multiple flags can be tested when several Bool()'s are combined using -// Combine() function. -// -// In the following example all tests in the test case FlagDependentTest -// will be instantiated twice with parameters false and true. -// -// class FlagDependentTest : public testing::TestWithParam { -// virtual void SetUp() { -// external_flag = GetParam(); -// } -// } -// INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool()); -// -inline internal::ParamGenerator Bool() { - return Values(false, true); -} - -#if GTEST_HAS_COMBINE -// Combine() allows the user to combine two or more sequences to produce -// values of a Cartesian product of those sequences' elements. -// -// Synopsis: -// Combine(gen1, gen2, ..., genN) -// - returns a generator producing sequences with elements coming from -// the Cartesian product of elements from the sequences generated by -// gen1, gen2, ..., genN. The sequence elements will have a type of -// tuple where T1, T2, ..., TN are the types -// of elements from sequences produces by gen1, gen2, ..., genN. -// -// Combine can have up to 10 arguments. This number is currently limited -// by the maximum number of elements in the tuple implementation used by Google -// Test. -// -// Example: -// -// This will instantiate tests in test case AnimalTest each one with -// the parameter values tuple("cat", BLACK), tuple("cat", WHITE), -// tuple("dog", BLACK), and tuple("dog", WHITE): -// -// enum Color { BLACK, GRAY, WHITE }; -// class AnimalTest -// : public testing::TestWithParam > {...}; -// -// TEST_P(AnimalTest, AnimalLooksNice) {...} -// -// INSTANTIATE_TEST_CASE_P(AnimalVariations, AnimalTest, -// Combine(Values("cat", "dog"), -// Values(BLACK, WHITE))); -// -// This will instantiate tests in FlagDependentTest with all variations of two -// Boolean flags: -// -// class FlagDependentTest -// : public testing::TestWithParam > { -// virtual void SetUp() { -// // Assigns external_flag_1 and external_flag_2 values from the tuple. -// tie(external_flag_1, external_flag_2) = GetParam(); -// } -// }; -// -// TEST_P(FlagDependentTest, TestFeature1) { -// // Test your code using external_flag_1 and external_flag_2 here. -// } -// INSTANTIATE_TEST_CASE_P(TwoBoolSequence, FlagDependentTest, -// Combine(Bool(), Bool())); -// -template -internal::CartesianProductHolder2 Combine( - const Generator1& g1, const Generator2& g2) { - return internal::CartesianProductHolder2( - g1, g2); -} - -template -internal::CartesianProductHolder3 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3) { - return internal::CartesianProductHolder3( - g1, g2, g3); -} - -template -internal::CartesianProductHolder4 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4) { - return internal::CartesianProductHolder4( - g1, g2, g3, g4); -} - -template -internal::CartesianProductHolder5 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5) { - return internal::CartesianProductHolder5( - g1, g2, g3, g4, g5); -} - -template -internal::CartesianProductHolder6 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5, const Generator6& g6) { - return internal::CartesianProductHolder6( - g1, g2, g3, g4, g5, g6); -} - -template -internal::CartesianProductHolder7 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5, const Generator6& g6, - const Generator7& g7) { - return internal::CartesianProductHolder7( - g1, g2, g3, g4, g5, g6, g7); -} - -template -internal::CartesianProductHolder8 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5, const Generator6& g6, - const Generator7& g7, const Generator8& g8) { - return internal::CartesianProductHolder8( - g1, g2, g3, g4, g5, g6, g7, g8); -} - -template -internal::CartesianProductHolder9 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5, const Generator6& g6, - const Generator7& g7, const Generator8& g8, const Generator9& g9) { - return internal::CartesianProductHolder9( - g1, g2, g3, g4, g5, g6, g7, g8, g9); -} - -template -internal::CartesianProductHolder10 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5, const Generator6& g6, - const Generator7& g7, const Generator8& g8, const Generator9& g9, - const Generator10& g10) { - return internal::CartesianProductHolder10( - g1, g2, g3, g4, g5, g6, g7, g8, g9, g10); -} -#endif // GTEST_HAS_COMBINE - - - -#define TEST_P(test_case_name, test_name) \ - class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ - : public test_case_name { \ - public: \ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \ - virtual void TestBody(); \ - private: \ - static int AddToRegistry() { \ - ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ - GetTestCasePatternHolder(\ - #test_case_name, __FILE__, __LINE__)->AddTestPattern(\ - #test_case_name, \ - #test_name, \ - new ::testing::internal::TestMetaFactory< \ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>()); \ - return 0; \ - } \ - static int gtest_registering_dummy_; \ - GTEST_DISALLOW_COPY_AND_ASSIGN_(\ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \ - }; \ - int GTEST_TEST_CLASS_NAME_(test_case_name, \ - test_name)::gtest_registering_dummy_ = \ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \ - void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() - -#define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator) \ - ::testing::internal::ParamGenerator \ - gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \ - int gtest_##prefix##test_case_name##_dummy_ = \ - ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ - GetTestCasePatternHolder(\ - #test_case_name, __FILE__, __LINE__)->AddTestCaseInstantiation(\ - #prefix, \ - >est_##prefix##test_case_name##_EvalGenerator_, \ - __FILE__, __LINE__) - -} // namespace testing - -#endif // GTEST_HAS_PARAM_TEST - -#endif // GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// Google C++ Testing Framework definitions useful in production code. - -#ifndef GTEST_INCLUDE_GTEST_GTEST_PROD_H_ -#define GTEST_INCLUDE_GTEST_GTEST_PROD_H_ - -// When you need to test the private or protected members of a class, -// use the FRIEND_TEST macro to declare your tests as friends of the -// class. For example: -// -// class MyClass { -// private: -// void MyMethod(); -// FRIEND_TEST(MyClassTest, MyMethod); -// }; -// -// class MyClassTest : public testing::Test { -// // ... -// }; -// -// TEST_F(MyClassTest, MyMethod) { -// // Can call MyClass::MyMethod() here. -// } - -#define FRIEND_TEST(test_case_name, test_name)\ -friend class test_case_name##_##test_name##_Test - -#endif // GTEST_INCLUDE_GTEST_GTEST_PROD_H_ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: mheule@google.com (Markus Heule) -// - -#ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ -#define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ - -#include -#include - -namespace testing { - -// A copyable object representing the result of a test part (i.e. an -// assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()). -// -// Don't inherit from TestPartResult as its destructor is not virtual. -class GTEST_API_ TestPartResult { - public: - // The possible outcomes of a test part (i.e. an assertion or an - // explicit SUCCEED(), FAIL(), or ADD_FAILURE()). - enum Type { - kSuccess, // Succeeded. - kNonFatalFailure, // Failed but the test can continue. - kFatalFailure // Failed and the test should be terminated. - }; - - // C'tor. TestPartResult does NOT have a default constructor. - // Always use this constructor (with parameters) to create a - // TestPartResult object. - TestPartResult(Type a_type, - const char* a_file_name, - int a_line_number, - const char* a_message) - : type_(a_type), - file_name_(a_file_name), - line_number_(a_line_number), - summary_(ExtractSummary(a_message)), - message_(a_message) { - } - - // Gets the outcome of the test part. - Type type() const { return type_; } - - // Gets the name of the source file where the test part took place, or - // NULL if it's unknown. - const char* file_name() const { return file_name_.c_str(); } - - // Gets the line in the source file where the test part took place, - // or -1 if it's unknown. - int line_number() const { return line_number_; } - - // Gets the summary of the failure message. - const char* summary() const { return summary_.c_str(); } - - // Gets the message associated with the test part. - const char* message() const { return message_.c_str(); } - - // Returns true iff the test part passed. - bool passed() const { return type_ == kSuccess; } - - // Returns true iff the test part failed. - bool failed() const { return type_ != kSuccess; } - - // Returns true iff the test part non-fatally failed. - bool nonfatally_failed() const { return type_ == kNonFatalFailure; } - - // Returns true iff the test part fatally failed. - bool fatally_failed() const { return type_ == kFatalFailure; } - private: - Type type_; - - // Gets the summary of the failure message by omitting the stack - // trace in it. - static internal::String ExtractSummary(const char* message); - - // The name of the source file where the test part took place, or - // NULL if the source file is unknown. - internal::String file_name_; - // The line in the source file where the test part took place, or -1 - // if the line number is unknown. - int line_number_; - internal::String summary_; // The test failure summary. - internal::String message_; // The test failure message. -}; - -// Prints a TestPartResult object. -std::ostream& operator<<(std::ostream& os, const TestPartResult& result); - -// An array of TestPartResult objects. -// -// Don't inherit from TestPartResultArray as its destructor is not -// virtual. -class GTEST_API_ TestPartResultArray { - public: - TestPartResultArray() {} - - // Appends the given TestPartResult to the array. - void Append(const TestPartResult& result); - - // Returns the TestPartResult at the given index (0-based). - const TestPartResult& GetTestPartResult(int index) const; - - // Returns the number of TestPartResult objects in the array. - int size() const; - - private: - std::vector array_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray); -}; - -// This interface knows how to report a test part result. -class TestPartResultReporterInterface { - public: - virtual ~TestPartResultReporterInterface() {} - - virtual void ReportTestPartResult(const TestPartResult& result) = 0; -}; - -namespace internal { - -// This helper class is used by {ASSERT|EXPECT}_NO_FATAL_FAILURE to check if a -// statement generates new fatal failures. To do so it registers itself as the -// current test part result reporter. Besides checking if fatal failures were -// reported, it only delegates the reporting to the former result reporter. -// The original result reporter is restored in the destructor. -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -class GTEST_API_ HasNewFatalFailureHelper - : public TestPartResultReporterInterface { - public: - HasNewFatalFailureHelper(); - virtual ~HasNewFatalFailureHelper(); - virtual void ReportTestPartResult(const TestPartResult& result); - bool has_new_fatal_failure() const { return has_new_fatal_failure_; } - private: - bool has_new_fatal_failure_; - TestPartResultReporterInterface* original_reporter_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(HasNewFatalFailureHelper); -}; - -} // namespace internal - -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#ifndef GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ -#define GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ - -// This header implements typed tests and type-parameterized tests. - -// Typed (aka type-driven) tests repeat the same test for types in a -// list. You must know which types you want to test with when writing -// typed tests. Here's how you do it: - -#if 0 - -// First, define a fixture class template. It should be parameterized -// by a type. Remember to derive it from testing::Test. -template -class FooTest : public testing::Test { - public: - ... - typedef std::list List; - static T shared_; - T value_; -}; - -// Next, associate a list of types with the test case, which will be -// repeated for each type in the list. The typedef is necessary for -// the macro to parse correctly. -typedef testing::Types MyTypes; -TYPED_TEST_CASE(FooTest, MyTypes); - -// If the type list contains only one type, you can write that type -// directly without Types<...>: -// TYPED_TEST_CASE(FooTest, int); - -// Then, use TYPED_TEST() instead of TEST_F() to define as many typed -// tests for this test case as you want. -TYPED_TEST(FooTest, DoesBlah) { - // Inside a test, refer to TypeParam to get the type parameter. - // Since we are inside a derived class template, C++ requires use to - // visit the members of FooTest via 'this'. - TypeParam n = this->value_; - - // To visit static members of the fixture, add the TestFixture:: - // prefix. - n += TestFixture::shared_; - - // To refer to typedefs in the fixture, add the "typename - // TestFixture::" prefix. - typename TestFixture::List values; - values.push_back(n); - ... -} - -TYPED_TEST(FooTest, HasPropertyA) { ... } - -#endif // 0 - -// Type-parameterized tests are abstract test patterns parameterized -// by a type. Compared with typed tests, type-parameterized tests -// allow you to define the test pattern without knowing what the type -// parameters are. The defined pattern can be instantiated with -// different types any number of times, in any number of translation -// units. -// -// If you are designing an interface or concept, you can define a -// suite of type-parameterized tests to verify properties that any -// valid implementation of the interface/concept should have. Then, -// each implementation can easily instantiate the test suite to verify -// that it conforms to the requirements, without having to write -// similar tests repeatedly. Here's an example: - -#if 0 - -// First, define a fixture class template. It should be parameterized -// by a type. Remember to derive it from testing::Test. -template -class FooTest : public testing::Test { - ... -}; - -// Next, declare that you will define a type-parameterized test case -// (the _P suffix is for "parameterized" or "pattern", whichever you -// prefer): -TYPED_TEST_CASE_P(FooTest); - -// Then, use TYPED_TEST_P() to define as many type-parameterized tests -// for this type-parameterized test case as you want. -TYPED_TEST_P(FooTest, DoesBlah) { - // Inside a test, refer to TypeParam to get the type parameter. - TypeParam n = 0; - ... -} - -TYPED_TEST_P(FooTest, HasPropertyA) { ... } - -// Now the tricky part: you need to register all test patterns before -// you can instantiate them. The first argument of the macro is the -// test case name; the rest are the names of the tests in this test -// case. -REGISTER_TYPED_TEST_CASE_P(FooTest, - DoesBlah, HasPropertyA); - -// Finally, you are free to instantiate the pattern with the types you -// want. If you put the above code in a header file, you can #include -// it in multiple C++ source files and instantiate it multiple times. -// -// To distinguish different instances of the pattern, the first -// argument to the INSTANTIATE_* macro is a prefix that will be added -// to the actual test case name. Remember to pick unique prefixes for -// different instances. -typedef testing::Types MyTypes; -INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes); - -// If the type list contains only one type, you can write that type -// directly without Types<...>: -// INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, int); - -#endif // 0 - - -// Implements typed tests. - -#if GTEST_HAS_TYPED_TEST - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Expands to the name of the typedef for the type parameters of the -// given test case. -#define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_ - -// The 'Types' template argument below must have spaces around it -// since some compilers may choke on '>>' when passing a template -// instance (e.g. Types) -#define TYPED_TEST_CASE(CaseName, Types) \ - typedef ::testing::internal::TypeList< Types >::type \ - GTEST_TYPE_PARAMS_(CaseName) - -#define TYPED_TEST(CaseName, TestName) \ - template \ - class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \ - : public CaseName { \ - private: \ - typedef CaseName TestFixture; \ - typedef gtest_TypeParam_ TypeParam; \ - virtual void TestBody(); \ - }; \ - bool gtest_##CaseName##_##TestName##_registered_ = \ - ::testing::internal::TypeParameterizedTest< \ - CaseName, \ - ::testing::internal::TemplateSel< \ - GTEST_TEST_CLASS_NAME_(CaseName, TestName)>, \ - GTEST_TYPE_PARAMS_(CaseName)>::Register(\ - "", #CaseName, #TestName, 0); \ - template \ - void GTEST_TEST_CLASS_NAME_(CaseName, TestName)::TestBody() - -#endif // GTEST_HAS_TYPED_TEST - -// Implements type-parameterized tests. - -#if GTEST_HAS_TYPED_TEST_P - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Expands to the namespace name that the type-parameterized tests for -// the given type-parameterized test case are defined in. The exact -// name of the namespace is subject to change without notice. -#define GTEST_CASE_NAMESPACE_(TestCaseName) \ - gtest_case_##TestCaseName##_ - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Expands to the name of the variable used to remember the names of -// the defined tests in the given test case. -#define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \ - gtest_typed_test_case_p_state_##TestCaseName##_ - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY. -// -// Expands to the name of the variable used to remember the names of -// the registered tests in the given test case. -#define GTEST_REGISTERED_TEST_NAMES_(TestCaseName) \ - gtest_registered_test_names_##TestCaseName##_ - -// The variables defined in the type-parameterized test macros are -// static as typically these macros are used in a .h file that can be -// #included in multiple translation units linked together. -#define TYPED_TEST_CASE_P(CaseName) \ - static ::testing::internal::TypedTestCasePState \ - GTEST_TYPED_TEST_CASE_P_STATE_(CaseName) - -#define TYPED_TEST_P(CaseName, TestName) \ - namespace GTEST_CASE_NAMESPACE_(CaseName) { \ - template \ - class TestName : public CaseName { \ - private: \ - typedef CaseName TestFixture; \ - typedef gtest_TypeParam_ TypeParam; \ - virtual void TestBody(); \ - }; \ - static bool gtest_##TestName##_defined_ = \ - GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).AddTestName(\ - __FILE__, __LINE__, #CaseName, #TestName); \ - } \ - template \ - void GTEST_CASE_NAMESPACE_(CaseName)::TestName::TestBody() - -#define REGISTER_TYPED_TEST_CASE_P(CaseName, ...) \ - namespace GTEST_CASE_NAMESPACE_(CaseName) { \ - typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \ - } \ - static const char* const GTEST_REGISTERED_TEST_NAMES_(CaseName) = \ - GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).VerifyRegisteredTestNames(\ - __FILE__, __LINE__, #__VA_ARGS__) - -// The 'Types' template argument below must have spaces around it -// since some compilers may choke on '>>' when passing a template -// instance (e.g. Types) -#define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ - bool gtest_##Prefix##_##CaseName = \ - ::testing::internal::TypeParameterizedTestCase::type>::Register(\ - #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName)) - -#endif // GTEST_HAS_TYPED_TEST_P - -#endif // GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ - -// Depending on the platform, different string classes are available. -// On Linux, in addition to ::std::string, Google also makes use of -// class ::string, which has the same interface as ::std::string, but -// has a different implementation. -// -// The user can define GTEST_HAS_GLOBAL_STRING to 1 to indicate that -// ::string is available AND is a distinct type to ::std::string, or -// define it to 0 to indicate otherwise. -// -// If the user's ::std::string and ::string are the same class due to -// aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0. -// -// If the user doesn't define GTEST_HAS_GLOBAL_STRING, it is defined -// heuristically. - -namespace testing { - -// Declares the flags. - -// This flag temporary enables the disabled tests. -GTEST_DECLARE_bool_(also_run_disabled_tests); - -// This flag brings the debugger on an assertion failure. -GTEST_DECLARE_bool_(break_on_failure); - -// This flag controls whether Google Test catches all test-thrown exceptions -// and logs them as failures. -GTEST_DECLARE_bool_(catch_exceptions); - -// This flag enables using colors in terminal output. Available values are -// "yes" to enable colors, "no" (disable colors), or "auto" (the default) -// to let Google Test decide. -GTEST_DECLARE_string_(color); - -// This flag sets up the filter to select by name using a glob pattern -// the tests to run. If the filter is not given all tests are executed. -GTEST_DECLARE_string_(filter); - -// This flag causes the Google Test to list tests. None of the tests listed -// are actually run if the flag is provided. -GTEST_DECLARE_bool_(list_tests); - -// This flag controls whether Google Test emits a detailed XML report to a file -// in addition to its normal textual output. -GTEST_DECLARE_string_(output); - -// This flags control whether Google Test prints the elapsed time for each -// test. -GTEST_DECLARE_bool_(print_time); - -// This flag specifies the random number seed. -GTEST_DECLARE_int32_(random_seed); - -// This flag sets how many times the tests are repeated. The default value -// is 1. If the value is -1 the tests are repeating forever. -GTEST_DECLARE_int32_(repeat); - -// This flag controls whether Google Test includes Google Test internal -// stack frames in failure stack traces. -GTEST_DECLARE_bool_(show_internal_stack_frames); - -// When this flag is specified, tests' order is randomized on every iteration. -GTEST_DECLARE_bool_(shuffle); - -// This flag specifies the maximum number of stack frames to be -// printed in a failure message. -GTEST_DECLARE_int32_(stack_trace_depth); - -// When this flag is specified, a failed assertion will throw an -// exception if exceptions are enabled, or exit the program with a -// non-zero code otherwise. -GTEST_DECLARE_bool_(throw_on_failure); - -// The upper limit for valid stack trace depths. -const int kMaxStackTraceDepth = 100; - -namespace internal { - -class AssertHelper; -class DefaultGlobalTestPartResultReporter; -class ExecDeathTest; -class NoExecDeathTest; -class FinalSuccessChecker; -class GTestFlagSaver; -class TestInfoImpl; -class TestResultAccessor; -class TestEventListenersAccessor; -class TestEventRepeater; -class WindowsDeathTest; -class UnitTestImpl* GetUnitTestImpl(); -void ReportFailureInUnknownLocation(TestPartResult::Type result_type, - const String& message); -class PrettyUnitTestResultPrinter; -class XmlUnitTestResultPrinter; - -// Converts a streamable value to a String. A NULL pointer is -// converted to "(null)". When the input value is a ::string, -// ::std::string, ::wstring, or ::std::wstring object, each NUL -// character in it is replaced with "\\0". -// Declared in gtest-internal.h but defined here, so that it has access -// to the definition of the Message class, required by the ARM -// compiler. -template -String StreamableToString(const T& streamable) { - return (Message() << streamable).GetString(); -} - -} // namespace internal - -// A class for indicating whether an assertion was successful. When -// the assertion wasn't successful, the AssertionResult object -// remembers a non-empty message that describes how it failed. -// -// To create an instance of this class, use one of the factory functions -// (AssertionSuccess() and AssertionFailure()). -// -// This class is useful for two purposes: -// 1. Defining predicate functions to be used with Boolean test assertions -// EXPECT_TRUE/EXPECT_FALSE and their ASSERT_ counterparts -// 2. Defining predicate-format functions to be -// used with predicate assertions (ASSERT_PRED_FORMAT*, etc). -// -// For example, if you define IsEven predicate: -// -// testing::AssertionResult IsEven(int n) { -// if ((n % 2) == 0) -// return testing::AssertionSuccess(); -// else -// return testing::AssertionFailure() << n << " is odd"; -// } -// -// Then the failed expectation EXPECT_TRUE(IsEven(Fib(5))) -// will print the message -// -// Value of: IsEven(Fib(5)) -// Actual: false (5 is odd) -// Expected: true -// -// instead of a more opaque -// -// Value of: IsEven(Fib(5)) -// Actual: false -// Expected: true -// -// in case IsEven is a simple Boolean predicate. -// -// If you expect your predicate to be reused and want to support informative -// messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up -// about half as often as positive ones in our tests), supply messages for -// both success and failure cases: -// -// testing::AssertionResult IsEven(int n) { -// if ((n % 2) == 0) -// return testing::AssertionSuccess() << n << " is even"; -// else -// return testing::AssertionFailure() << n << " is odd"; -// } -// -// Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print -// -// Value of: IsEven(Fib(6)) -// Actual: true (8 is even) -// Expected: false -// -// NB: Predicates that support negative Boolean assertions have reduced -// performance in positive ones so be careful not to use them in tests -// that have lots (tens of thousands) of positive Boolean assertions. -// -// To use this class with EXPECT_PRED_FORMAT assertions such as: -// -// // Verifies that Foo() returns an even number. -// EXPECT_PRED_FORMAT1(IsEven, Foo()); -// -// you need to define: -// -// testing::AssertionResult IsEven(const char* expr, int n) { -// if ((n % 2) == 0) -// return testing::AssertionSuccess(); -// else -// return testing::AssertionFailure() -// << "Expected: " << expr << " is even\n Actual: it's " << n; -// } -// -// If Foo() returns 5, you will see the following message: -// -// Expected: Foo() is even -// Actual: it's 5 -// -class GTEST_API_ AssertionResult { - public: - // Copy constructor. - // Used in EXPECT_TRUE/FALSE(assertion_result). - AssertionResult(const AssertionResult& other); - // Used in the EXPECT_TRUE/FALSE(bool_expression). - explicit AssertionResult(bool success) : success_(success) {} - - // Returns true iff the assertion succeeded. - operator bool() const { return success_; } // NOLINT - - // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. - AssertionResult operator!() const; - - // Returns the text streamed into this AssertionResult. Test assertions - // use it when they fail (i.e., the predicate's outcome doesn't match the - // assertion's expectation). When nothing has been streamed into the - // object, returns an empty string. - const char* message() const { - return message_.get() != NULL && message_->c_str() != NULL ? - message_->c_str() : ""; - } - // TODO(vladl@google.com): Remove this after making sure no clients use it. - // Deprecated; please use message() instead. - const char* failure_message() const { return message(); } - - // Streams a custom failure message into this object. - template AssertionResult& operator<<(const T& value); - - private: - // No implementation - we want AssertionResult to be - // copy-constructible but not assignable. - void operator=(const AssertionResult& other); - - // Stores result of the assertion predicate. - bool success_; - // Stores the message describing the condition in case the expectation - // construct is not satisfied with the predicate's outcome. - // Referenced via a pointer to avoid taking too much stack frame space - // with test assertions. - internal::scoped_ptr message_; -}; // class AssertionResult - -// Streams a custom failure message into this object. -template -AssertionResult& AssertionResult::operator<<(const T& value) { - Message msg; - if (message_.get() != NULL) - msg << *message_; - msg << value; - message_.reset(new internal::String(msg.GetString())); - return *this; -} - -// Makes a successful assertion result. -GTEST_API_ AssertionResult AssertionSuccess(); - -// Makes a failed assertion result. -GTEST_API_ AssertionResult AssertionFailure(); - -// Makes a failed assertion result with the given failure message. -// Deprecated; use AssertionFailure() << msg. -GTEST_API_ AssertionResult AssertionFailure(const Message& msg); - -// The abstract class that all tests inherit from. -// -// In Google Test, a unit test program contains one or many TestCases, and -// each TestCase contains one or many Tests. -// -// When you define a test using the TEST macro, you don't need to -// explicitly derive from Test - the TEST macro automatically does -// this for you. -// -// The only time you derive from Test is when defining a test fixture -// to be used a TEST_F. For example: -// -// class FooTest : public testing::Test { -// protected: -// virtual void SetUp() { ... } -// virtual void TearDown() { ... } -// ... -// }; -// -// TEST_F(FooTest, Bar) { ... } -// TEST_F(FooTest, Baz) { ... } -// -// Test is not copyable. -class GTEST_API_ Test { - public: - friend class internal::TestInfoImpl; - - // Defines types for pointers to functions that set up and tear down - // a test case. - typedef internal::SetUpTestCaseFunc SetUpTestCaseFunc; - typedef internal::TearDownTestCaseFunc TearDownTestCaseFunc; - - // The d'tor is virtual as we intend to inherit from Test. - virtual ~Test(); - - // Sets up the stuff shared by all tests in this test case. - // - // Google Test will call Foo::SetUpTestCase() before running the first - // test in test case Foo. Hence a sub-class can define its own - // SetUpTestCase() method to shadow the one defined in the super - // class. - static void SetUpTestCase() {} - - // Tears down the stuff shared by all tests in this test case. - // - // Google Test will call Foo::TearDownTestCase() after running the last - // test in test case Foo. Hence a sub-class can define its own - // TearDownTestCase() method to shadow the one defined in the super - // class. - static void TearDownTestCase() {} - - // Returns true iff the current test has a fatal failure. - static bool HasFatalFailure(); - - // Returns true iff the current test has a non-fatal failure. - static bool HasNonfatalFailure(); - - // Returns true iff the current test has a (either fatal or - // non-fatal) failure. - static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); } - - // Logs a property for the current test. Only the last value for a given - // key is remembered. - // These are public static so they can be called from utility functions - // that are not members of the test fixture. - // The arguments are const char* instead strings, as Google Test is used - // on platforms where string doesn't compile. - // - // Note that a driving consideration for these RecordProperty methods - // was to produce xml output suited to the Greenspan charting utility, - // which at present will only chart values that fit in a 32-bit int. It - // is the user's responsibility to restrict their values to 32-bit ints - // if they intend them to be used with Greenspan. - static void RecordProperty(const char* key, const char* value); - static void RecordProperty(const char* key, int value); - - protected: - // Creates a Test object. - Test(); - - // Sets up the test fixture. - virtual void SetUp(); - - // Tears down the test fixture. - virtual void TearDown(); - - private: - // Returns true iff the current test has the same fixture class as - // the first test in the current test case. - static bool HasSameFixtureClass(); - - // Runs the test after the test fixture has been set up. - // - // A sub-class must implement this to define the test logic. - // - // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM. - // Instead, use the TEST or TEST_F macro. - virtual void TestBody() = 0; - - // Sets up, executes, and tears down the test. - void Run(); - - // Uses a GTestFlagSaver to save and restore all Google Test flags. - const internal::GTestFlagSaver* const gtest_flag_saver_; - - // Often a user mis-spells SetUp() as Setup() and spends a long time - // wondering why it is never called by Google Test. The declaration of - // the following method is solely for catching such an error at - // compile time: - // - // - The return type is deliberately chosen to be not void, so it - // will be a conflict if a user declares void Setup() in his test - // fixture. - // - // - This method is private, so it will be another compiler error - // if a user calls it from his test fixture. - // - // DO NOT OVERRIDE THIS FUNCTION. - // - // If you see an error about overriding the following function or - // about it being private, you have mis-spelled SetUp() as Setup(). - struct Setup_should_be_spelled_SetUp {}; - virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; } - - // We disallow copying Tests. - GTEST_DISALLOW_COPY_AND_ASSIGN_(Test); -}; - -typedef internal::TimeInMillis TimeInMillis; - -// A copyable object representing a user specified test property which can be -// output as a key/value string pair. -// -// Don't inherit from TestProperty as its destructor is not virtual. -class TestProperty { - public: - // C'tor. TestProperty does NOT have a default constructor. - // Always use this constructor (with parameters) to create a - // TestProperty object. - TestProperty(const char* a_key, const char* a_value) : - key_(a_key), value_(a_value) { - } - - // Gets the user supplied key. - const char* key() const { - return key_.c_str(); - } - - // Gets the user supplied value. - const char* value() const { - return value_.c_str(); - } - - // Sets a new value, overriding the one supplied in the constructor. - void SetValue(const char* new_value) { - value_ = new_value; - } - - private: - // The key supplied by the user. - internal::String key_; - // The value supplied by the user. - internal::String value_; -}; - -// The result of a single Test. This includes a list of -// TestPartResults, a list of TestProperties, a count of how many -// death tests there are in the Test, and how much time it took to run -// the Test. -// -// TestResult is not copyable. -class GTEST_API_ TestResult { - public: - // Creates an empty TestResult. - TestResult(); - - // D'tor. Do not inherit from TestResult. - ~TestResult(); - - // Gets the number of all test parts. This is the sum of the number - // of successful test parts and the number of failed test parts. - int total_part_count() const; - - // Returns the number of the test properties. - int test_property_count() const; - - // Returns true iff the test passed (i.e. no test part failed). - bool Passed() const { return !Failed(); } - - // Returns true iff the test failed. - bool Failed() const; - - // Returns true iff the test fatally failed. - bool HasFatalFailure() const; - - // Returns true iff the test has a non-fatal failure. - bool HasNonfatalFailure() const; - - // Returns the elapsed time, in milliseconds. - TimeInMillis elapsed_time() const { return elapsed_time_; } - - // Returns the i-th test part result among all the results. i can range - // from 0 to test_property_count() - 1. If i is not in that range, aborts - // the program. - const TestPartResult& GetTestPartResult(int i) const; - - // Returns the i-th test property. i can range from 0 to - // test_property_count() - 1. If i is not in that range, aborts the - // program. - const TestProperty& GetTestProperty(int i) const; - - private: - friend class TestInfo; - friend class UnitTest; - friend class internal::DefaultGlobalTestPartResultReporter; - friend class internal::ExecDeathTest; - friend class internal::TestInfoImpl; - friend class internal::TestResultAccessor; - friend class internal::UnitTestImpl; - friend class internal::WindowsDeathTest; - - // Gets the vector of TestPartResults. - const std::vector& test_part_results() const { - return test_part_results_; - } - - // Gets the vector of TestProperties. - const std::vector& test_properties() const { - return test_properties_; - } - - // Sets the elapsed time. - void set_elapsed_time(TimeInMillis elapsed) { elapsed_time_ = elapsed; } - - // Adds a test property to the list. The property is validated and may add - // a non-fatal failure if invalid (e.g., if it conflicts with reserved - // key names). If a property is already recorded for the same key, the - // value will be updated, rather than storing multiple values for the same - // key. - void RecordProperty(const TestProperty& test_property); - - // Adds a failure if the key is a reserved attribute of Google Test - // testcase tags. Returns true if the property is valid. - // TODO(russr): Validate attribute names are legal and human readable. - static bool ValidateTestProperty(const TestProperty& test_property); - - // Adds a test part result to the list. - void AddTestPartResult(const TestPartResult& test_part_result); - - // Returns the death test count. - int death_test_count() const { return death_test_count_; } - - // Increments the death test count, returning the new count. - int increment_death_test_count() { return ++death_test_count_; } - - // Clears the test part results. - void ClearTestPartResults(); - - // Clears the object. - void Clear(); - - // Protects mutable state of the property vector and of owned - // properties, whose values may be updated. - internal::Mutex test_properites_mutex_; - - // The vector of TestPartResults - std::vector test_part_results_; - // The vector of TestProperties - std::vector test_properties_; - // Running count of death tests. - int death_test_count_; - // The elapsed time, in milliseconds. - TimeInMillis elapsed_time_; - - // We disallow copying TestResult. - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult); -}; // class TestResult - -// A TestInfo object stores the following information about a test: -// -// Test case name -// Test name -// Whether the test should be run -// A function pointer that creates the test object when invoked -// Test result -// -// The constructor of TestInfo registers itself with the UnitTest -// singleton such that the RUN_ALL_TESTS() macro knows which tests to -// run. -class GTEST_API_ TestInfo { - public: - // Destructs a TestInfo object. This function is not virtual, so - // don't inherit from TestInfo. - ~TestInfo(); - - // Returns the test case name. - const char* test_case_name() const; - - // Returns the test name. - const char* name() const; - - // Returns the test case comment. - const char* test_case_comment() const; - - // Returns the test comment. - const char* comment() const; - - // Returns true if this test should run, that is if the test is not disabled - // (or it is disabled but the also_run_disabled_tests flag has been specified) - // and its full name matches the user-specified filter. - // - // Google Test allows the user to filter the tests by their full names. - // The full name of a test Bar in test case Foo is defined as - // "Foo.Bar". Only the tests that match the filter will run. - // - // A filter is a colon-separated list of glob (not regex) patterns, - // optionally followed by a '-' and a colon-separated list of - // negative patterns (tests to exclude). A test is run if it - // matches one of the positive patterns and does not match any of - // the negative patterns. - // - // For example, *A*:Foo.* is a filter that matches any string that - // contains the character 'A' or starts with "Foo.". - bool should_run() const; - - // Returns the result of the test. - const TestResult* result() const; - - private: -#if GTEST_HAS_DEATH_TEST - friend class internal::DefaultDeathTestFactory; -#endif // GTEST_HAS_DEATH_TEST - friend class Test; - friend class TestCase; - friend class internal::TestInfoImpl; - friend class internal::UnitTestImpl; - friend TestInfo* internal::MakeAndRegisterTestInfo( - const char* test_case_name, const char* name, - const char* test_case_comment, const char* comment, - internal::TypeId fixture_class_id, - Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc, - internal::TestFactoryBase* factory); - - // Returns true if this test matches the user-specified filter. - bool matches_filter() const; - - // Increments the number of death tests encountered in this test so - // far. - int increment_death_test_count(); - - // Accessors for the implementation object. - internal::TestInfoImpl* impl() { return impl_; } - const internal::TestInfoImpl* impl() const { return impl_; } - - // Constructs a TestInfo object. The newly constructed instance assumes - // ownership of the factory object. - TestInfo(const char* test_case_name, const char* name, - const char* test_case_comment, const char* comment, - internal::TypeId fixture_class_id, - internal::TestFactoryBase* factory); - - // An opaque implementation object. - internal::TestInfoImpl* impl_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo); -}; - -// A test case, which consists of a vector of TestInfos. -// -// TestCase is not copyable. -class GTEST_API_ TestCase { - public: - // Creates a TestCase with the given name. - // - // TestCase does NOT have a default constructor. Always use this - // constructor to create a TestCase object. - // - // Arguments: - // - // name: name of the test case - // set_up_tc: pointer to the function that sets up the test case - // tear_down_tc: pointer to the function that tears down the test case - TestCase(const char* name, const char* comment, - Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc); - - // Destructor of TestCase. - virtual ~TestCase(); - - // Gets the name of the TestCase. - const char* name() const { return name_.c_str(); } - - // Returns the test case comment. - const char* comment() const { return comment_.c_str(); } - - // Returns true if any test in this test case should run. - bool should_run() const { return should_run_; } - - // Gets the number of successful tests in this test case. - int successful_test_count() const; - - // Gets the number of failed tests in this test case. - int failed_test_count() const; - - // Gets the number of disabled tests in this test case. - int disabled_test_count() const; - - // Get the number of tests in this test case that should run. - int test_to_run_count() const; - - // Gets the number of all tests in this test case. - int total_test_count() const; - - // Returns true iff the test case passed. - bool Passed() const { return !Failed(); } - - // Returns true iff the test case failed. - bool Failed() const { return failed_test_count() > 0; } - - // Returns the elapsed time, in milliseconds. - TimeInMillis elapsed_time() const { return elapsed_time_; } - - // Returns the i-th test among all the tests. i can range from 0 to - // total_test_count() - 1. If i is not in that range, returns NULL. - const TestInfo* GetTestInfo(int i) const; - - private: - friend class Test; - friend class internal::UnitTestImpl; - - // Gets the (mutable) vector of TestInfos in this TestCase. - std::vector& test_info_list() { return test_info_list_; } - - // Gets the (immutable) vector of TestInfos in this TestCase. - const std::vector& test_info_list() const { - return test_info_list_; - } - - // Returns the i-th test among all the tests. i can range from 0 to - // total_test_count() - 1. If i is not in that range, returns NULL. - TestInfo* GetMutableTestInfo(int i); - - // Sets the should_run member. - void set_should_run(bool should) { should_run_ = should; } - - // Adds a TestInfo to this test case. Will delete the TestInfo upon - // destruction of the TestCase object. - void AddTestInfo(TestInfo * test_info); - - // Clears the results of all tests in this test case. - void ClearResult(); - - // Clears the results of all tests in the given test case. - static void ClearTestCaseResult(TestCase* test_case) { - test_case->ClearResult(); - } - - // Runs every test in this TestCase. - void Run(); - - // Returns true iff test passed. - static bool TestPassed(const TestInfo * test_info); - - // Returns true iff test failed. - static bool TestFailed(const TestInfo * test_info); - - // Returns true iff test is disabled. - static bool TestDisabled(const TestInfo * test_info); - - // Returns true if the given test should run. - static bool ShouldRunTest(const TestInfo *test_info); - - // Shuffles the tests in this test case. - void ShuffleTests(internal::Random* random); - - // Restores the test order to before the first shuffle. - void UnshuffleTests(); - - // Name of the test case. - internal::String name_; - // Comment on the test case. - internal::String comment_; - // The vector of TestInfos in their original order. It owns the - // elements in the vector. - std::vector test_info_list_; - // Provides a level of indirection for the test list to allow easy - // shuffling and restoring the test order. The i-th element in this - // vector is the index of the i-th test in the shuffled test list. - std::vector test_indices_; - // Pointer to the function that sets up the test case. - Test::SetUpTestCaseFunc set_up_tc_; - // Pointer to the function that tears down the test case. - Test::TearDownTestCaseFunc tear_down_tc_; - // True iff any test in this test case should run. - bool should_run_; - // Elapsed time, in milliseconds. - TimeInMillis elapsed_time_; - - // We disallow copying TestCases. - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestCase); -}; - -// An Environment object is capable of setting up and tearing down an -// environment. The user should subclass this to define his own -// environment(s). -// -// An Environment object does the set-up and tear-down in virtual -// methods SetUp() and TearDown() instead of the constructor and the -// destructor, as: -// -// 1. You cannot safely throw from a destructor. This is a problem -// as in some cases Google Test is used where exceptions are enabled, and -// we may want to implement ASSERT_* using exceptions where they are -// available. -// 2. You cannot use ASSERT_* directly in a constructor or -// destructor. -class Environment { - public: - // The d'tor is virtual as we need to subclass Environment. - virtual ~Environment() {} - - // Override this to define how to set up the environment. - virtual void SetUp() {} - - // Override this to define how to tear down the environment. - virtual void TearDown() {} - private: - // If you see an error about overriding the following function or - // about it being private, you have mis-spelled SetUp() as Setup(). - struct Setup_should_be_spelled_SetUp {}; - virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; } -}; - -// The interface for tracing execution of tests. The methods are organized in -// the order the corresponding events are fired. -class TestEventListener { - public: - virtual ~TestEventListener() {} - - // Fired before any test activity starts. - virtual void OnTestProgramStart(const UnitTest& unit_test) = 0; - - // Fired before each iteration of tests starts. There may be more than - // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration - // index, starting from 0. - virtual void OnTestIterationStart(const UnitTest& unit_test, - int iteration) = 0; - - // Fired before environment set-up for each iteration of tests starts. - virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test) = 0; - - // Fired after environment set-up for each iteration of tests ends. - virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) = 0; - - // Fired before the test case starts. - virtual void OnTestCaseStart(const TestCase& test_case) = 0; - - // Fired before the test starts. - virtual void OnTestStart(const TestInfo& test_info) = 0; - - // Fired after a failed assertion or a SUCCESS(). - virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0; - - // Fired after the test ends. - virtual void OnTestEnd(const TestInfo& test_info) = 0; - - // Fired after the test case ends. - virtual void OnTestCaseEnd(const TestCase& test_case) = 0; - - // Fired before environment tear-down for each iteration of tests starts. - virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test) = 0; - - // Fired after environment tear-down for each iteration of tests ends. - virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) = 0; - - // Fired after each iteration of tests finishes. - virtual void OnTestIterationEnd(const UnitTest& unit_test, - int iteration) = 0; - - // Fired after all test activities have ended. - virtual void OnTestProgramEnd(const UnitTest& unit_test) = 0; -}; - -// The convenience class for users who need to override just one or two -// methods and are not concerned that a possible change to a signature of -// the methods they override will not be caught during the build. For -// comments about each method please see the definition of TestEventListener -// above. -class EmptyTestEventListener : public TestEventListener { - public: - virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} - virtual void OnTestIterationStart(const UnitTest& /*unit_test*/, - int /*iteration*/) {} - virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) {} - virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} - virtual void OnTestCaseStart(const TestCase& /*test_case*/) {} - virtual void OnTestStart(const TestInfo& /*test_info*/) {} - virtual void OnTestPartResult(const TestPartResult& /*test_part_result*/) {} - virtual void OnTestEnd(const TestInfo& /*test_info*/) {} - virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {} - virtual void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) {} - virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} - virtual void OnTestIterationEnd(const UnitTest& /*unit_test*/, - int /*iteration*/) {} - virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} -}; - -// TestEventListeners lets users add listeners to track events in Google Test. -class GTEST_API_ TestEventListeners { - public: - TestEventListeners(); - ~TestEventListeners(); - - // Appends an event listener to the end of the list. Google Test assumes - // the ownership of the listener (i.e. it will delete the listener when - // the test program finishes). - void Append(TestEventListener* listener); - - // Removes the given event listener from the list and returns it. It then - // becomes the caller's responsibility to delete the listener. Returns - // NULL if the listener is not found in the list. - TestEventListener* Release(TestEventListener* listener); - - // Returns the standard listener responsible for the default console - // output. Can be removed from the listeners list to shut down default - // console output. Note that removing this object from the listener list - // with Release transfers its ownership to the caller and makes this - // function return NULL the next time. - TestEventListener* default_result_printer() const { - return default_result_printer_; - } - - // Returns the standard listener responsible for the default XML output - // controlled by the --gtest_output=xml flag. Can be removed from the - // listeners list by users who want to shut down the default XML output - // controlled by this flag and substitute it with custom one. Note that - // removing this object from the listener list with Release transfers its - // ownership to the caller and makes this function return NULL the next - // time. - TestEventListener* default_xml_generator() const { - return default_xml_generator_; - } - - private: - friend class TestCase; - friend class internal::DefaultGlobalTestPartResultReporter; - friend class internal::NoExecDeathTest; - friend class internal::TestEventListenersAccessor; - friend class internal::TestInfoImpl; - friend class internal::UnitTestImpl; - - // Returns repeater that broadcasts the TestEventListener events to all - // subscribers. - TestEventListener* repeater(); - - // Sets the default_result_printer attribute to the provided listener. - // The listener is also added to the listener list and previous - // default_result_printer is removed from it and deleted. The listener can - // also be NULL in which case it will not be added to the list. Does - // nothing if the previous and the current listener objects are the same. - void SetDefaultResultPrinter(TestEventListener* listener); - - // Sets the default_xml_generator attribute to the provided listener. The - // listener is also added to the listener list and previous - // default_xml_generator is removed from it and deleted. The listener can - // also be NULL in which case it will not be added to the list. Does - // nothing if the previous and the current listener objects are the same. - void SetDefaultXmlGenerator(TestEventListener* listener); - - // Controls whether events will be forwarded by the repeater to the - // listeners in the list. - bool EventForwardingEnabled() const; - void SuppressEventForwarding(); - - // The actual list of listeners. - internal::TestEventRepeater* repeater_; - // Listener responsible for the standard result output. - TestEventListener* default_result_printer_; - // Listener responsible for the creation of the XML output file. - TestEventListener* default_xml_generator_; - - // We disallow copying TestEventListeners. - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventListeners); -}; - -// A UnitTest consists of a vector of TestCases. -// -// This is a singleton class. The only instance of UnitTest is -// created when UnitTest::GetInstance() is first called. This -// instance is never deleted. -// -// UnitTest is not copyable. -// -// This class is thread-safe as long as the methods are called -// according to their specification. -class GTEST_API_ UnitTest { - public: - // Gets the singleton UnitTest object. The first time this method - // is called, a UnitTest object is constructed and returned. - // Consecutive calls will return the same object. - static UnitTest* GetInstance(); - - // Runs all tests in this UnitTest object and prints the result. - // Returns 0 if successful, or 1 otherwise. - // - // This method can only be called from the main thread. - // - // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. - int Run() GTEST_MUST_USE_RESULT_; - - // Returns the working directory when the first TEST() or TEST_F() - // was executed. The UnitTest object owns the string. - const char* original_working_dir() const; - - // Returns the TestCase object for the test that's currently running, - // or NULL if no test is running. - const TestCase* current_test_case() const; - - // Returns the TestInfo object for the test that's currently running, - // or NULL if no test is running. - const TestInfo* current_test_info() const; - - // Returns the random seed used at the start of the current test run. - int random_seed() const; - -#if GTEST_HAS_PARAM_TEST - // Returns the ParameterizedTestCaseRegistry object used to keep track of - // value-parameterized tests and instantiate and register them. - // - // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. - internal::ParameterizedTestCaseRegistry& parameterized_test_registry(); -#endif // GTEST_HAS_PARAM_TEST - - // Gets the number of successful test cases. - int successful_test_case_count() const; - - // Gets the number of failed test cases. - int failed_test_case_count() const; - - // Gets the number of all test cases. - int total_test_case_count() const; - - // Gets the number of all test cases that contain at least one test - // that should run. - int test_case_to_run_count() const; - - // Gets the number of successful tests. - int successful_test_count() const; - - // Gets the number of failed tests. - int failed_test_count() const; - - // Gets the number of disabled tests. - int disabled_test_count() const; - - // Gets the number of all tests. - int total_test_count() const; - - // Gets the number of tests that should run. - int test_to_run_count() const; - - // Gets the elapsed time, in milliseconds. - TimeInMillis elapsed_time() const; - - // Returns true iff the unit test passed (i.e. all test cases passed). - bool Passed() const; - - // Returns true iff the unit test failed (i.e. some test case failed - // or something outside of all tests failed). - bool Failed() const; - - // Gets the i-th test case among all the test cases. i can range from 0 to - // total_test_case_count() - 1. If i is not in that range, returns NULL. - const TestCase* GetTestCase(int i) const; - - // Returns the list of event listeners that can be used to track events - // inside Google Test. - TestEventListeners& listeners(); - - private: - // Registers and returns a global test environment. When a test - // program is run, all global test environments will be set-up in - // the order they were registered. After all tests in the program - // have finished, all global test environments will be torn-down in - // the *reverse* order they were registered. - // - // The UnitTest object takes ownership of the given environment. - // - // This method can only be called from the main thread. - Environment* AddEnvironment(Environment* env); - - // Adds a TestPartResult to the current TestResult object. All - // Google Test assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) - // eventually call this to report their results. The user code - // should use the assertion macros instead of calling this directly. - void AddTestPartResult(TestPartResult::Type result_type, - const char* file_name, - int line_number, - const internal::String& message, - const internal::String& os_stack_trace); - - // Adds a TestProperty to the current TestResult object. If the result already - // contains a property with the same key, the value will be updated. - void RecordPropertyForCurrentTest(const char* key, const char* value); - - // Gets the i-th test case among all the test cases. i can range from 0 to - // total_test_case_count() - 1. If i is not in that range, returns NULL. - TestCase* GetMutableTestCase(int i); - - // Accessors for the implementation object. - internal::UnitTestImpl* impl() { return impl_; } - const internal::UnitTestImpl* impl() const { return impl_; } - - // These classes and funcions are friends as they need to access private - // members of UnitTest. - friend class Test; - friend class internal::AssertHelper; - friend class internal::ScopedTrace; - friend Environment* AddGlobalTestEnvironment(Environment* env); - friend internal::UnitTestImpl* internal::GetUnitTestImpl(); - friend void internal::ReportFailureInUnknownLocation( - TestPartResult::Type result_type, - const internal::String& message); - - // Creates an empty UnitTest. - UnitTest(); - - // D'tor - virtual ~UnitTest(); - - // Pushes a trace defined by SCOPED_TRACE() on to the per-thread - // Google Test trace stack. - void PushGTestTrace(const internal::TraceInfo& trace); - - // Pops a trace from the per-thread Google Test trace stack. - void PopGTestTrace(); - - // Protects mutable state in *impl_. This is mutable as some const - // methods need to lock it too. - mutable internal::Mutex mutex_; - - // Opaque implementation object. This field is never changed once - // the object is constructed. We don't mark it as const here, as - // doing so will cause a warning in the constructor of UnitTest. - // Mutable state in *impl_ is protected by mutex_. - internal::UnitTestImpl* impl_; - - // We disallow copying UnitTest. - GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest); -}; - -// A convenient wrapper for adding an environment for the test -// program. -// -// You should call this before RUN_ALL_TESTS() is called, probably in -// main(). If you use gtest_main, you need to call this before main() -// starts for it to take effect. For example, you can define a global -// variable like this: -// -// testing::Environment* const foo_env = -// testing::AddGlobalTestEnvironment(new FooEnvironment); -// -// However, we strongly recommend you to write your own main() and -// call AddGlobalTestEnvironment() there, as relying on initialization -// of global variables makes the code harder to read and may cause -// problems when you register multiple environments from different -// translation units and the environments have dependencies among them -// (remember that the compiler doesn't guarantee the order in which -// global variables from different translation units are initialized). -inline Environment* AddGlobalTestEnvironment(Environment* env) { - return UnitTest::GetInstance()->AddEnvironment(env); -} - -// Initializes Google Test. This must be called before calling -// RUN_ALL_TESTS(). In particular, it parses a command line for the -// flags that Google Test recognizes. Whenever a Google Test flag is -// seen, it is removed from argv, and *argc is decremented. -// -// No value is returned. Instead, the Google Test flag variables are -// updated. -// -// Calling the function for the second time has no user-visible effect. -GTEST_API_ void InitGoogleTest(int* argc, char** argv); - -// This overloaded version can be used in Windows programs compiled in -// UNICODE mode. -GTEST_API_ void InitGoogleTest(int* argc, wchar_t** argv); - -namespace internal { - -// These overloaded versions handle ::std::string and ::std::wstring. -GTEST_API_ inline String FormatForFailureMessage(const ::std::string& str) { - return (Message() << '"' << str << '"').GetString(); -} - -#if GTEST_HAS_STD_WSTRING -GTEST_API_ inline String FormatForFailureMessage(const ::std::wstring& wstr) { - return (Message() << "L\"" << wstr << '"').GetString(); -} -#endif // GTEST_HAS_STD_WSTRING - -// These overloaded versions handle ::string and ::wstring. -#if GTEST_HAS_GLOBAL_STRING -GTEST_API_ inline String FormatForFailureMessage(const ::string& str) { - return (Message() << '"' << str << '"').GetString(); -} -#endif // GTEST_HAS_GLOBAL_STRING - -#if GTEST_HAS_GLOBAL_WSTRING -GTEST_API_ inline String FormatForFailureMessage(const ::wstring& wstr) { - return (Message() << "L\"" << wstr << '"').GetString(); -} -#endif // GTEST_HAS_GLOBAL_WSTRING - -// Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc) -// operand to be used in a failure message. The type (but not value) -// of the other operand may affect the format. This allows us to -// print a char* as a raw pointer when it is compared against another -// char*, and print it as a C string when it is compared against an -// std::string object, for example. -// -// The default implementation ignores the type of the other operand. -// Some specialized versions are used to handle formatting wide or -// narrow C strings. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -template -String FormatForComparisonFailureMessage(const T1& value, - const T2& /* other_operand */) { - return FormatForFailureMessage(value); -} - -// The helper function for {ASSERT|EXPECT}_EQ. -template -AssertionResult CmpHelperEQ(const char* expected_expression, - const char* actual_expression, - const T1& expected, - const T2& actual) { -#ifdef _MSC_VER -#pragma warning(push) // Saves the current warning state. -#pragma warning(disable:4389) // Temporarily disables warning on - // signed/unsigned mismatch. -#endif - - if (expected == actual) { - return AssertionSuccess(); - } - -#ifdef _MSC_VER -#pragma warning(pop) // Restores the warning state. -#endif - - return EqFailure(expected_expression, - actual_expression, - FormatForComparisonFailureMessage(expected, actual), - FormatForComparisonFailureMessage(actual, expected), - false); -} - -// With this overloaded version, we allow anonymous enums to be used -// in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous enums -// can be implicitly cast to BiggestInt. -GTEST_API_ AssertionResult CmpHelperEQ(const char* expected_expression, - const char* actual_expression, - BiggestInt expected, - BiggestInt actual); - -// The helper class for {ASSERT|EXPECT}_EQ. The template argument -// lhs_is_null_literal is true iff the first argument to ASSERT_EQ() -// is a null pointer literal. The following default implementation is -// for lhs_is_null_literal being false. -template -class EqHelper { - public: - // This templatized version is for the general case. - template - static AssertionResult Compare(const char* expected_expression, - const char* actual_expression, - const T1& expected, - const T2& actual) { - return CmpHelperEQ(expected_expression, actual_expression, expected, - actual); - } - - // With this overloaded version, we allow anonymous enums to be used - // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous - // enums can be implicitly cast to BiggestInt. - // - // Even though its body looks the same as the above version, we - // cannot merge the two, as it will make anonymous enums unhappy. - static AssertionResult Compare(const char* expected_expression, - const char* actual_expression, - BiggestInt expected, - BiggestInt actual) { - return CmpHelperEQ(expected_expression, actual_expression, expected, - actual); - } -}; - -// This specialization is used when the first argument to ASSERT_EQ() -// is a null pointer literal. -template <> -class EqHelper { - public: - // We define two overloaded versions of Compare(). The first - // version will be picked when the second argument to ASSERT_EQ() is - // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or - // EXPECT_EQ(false, a_bool). - template - static AssertionResult Compare(const char* expected_expression, - const char* actual_expression, - const T1& expected, - const T2& actual) { - return CmpHelperEQ(expected_expression, actual_expression, expected, - actual); - } - - // This version will be picked when the second argument to - // ASSERT_EQ() is a pointer, e.g. ASSERT_EQ(NULL, a_pointer). - template - static AssertionResult Compare(const char* expected_expression, - const char* actual_expression, - const T1& /* expected */, - T2* actual) { - // We already know that 'expected' is a null pointer. - return CmpHelperEQ(expected_expression, actual_expression, - static_cast(NULL), actual); - } -}; - -// A macro for implementing the helper functions needed to implement -// ASSERT_?? and EXPECT_??. It is here just to avoid copy-and-paste -// of similar code. -// -// For each templatized helper function, we also define an overloaded -// version for BiggestInt in order to reduce code bloat and allow -// anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled -// with gcc 4. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -#define GTEST_IMPL_CMP_HELPER_(op_name, op)\ -template \ -AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ - const T1& val1, const T2& val2) {\ - if (val1 op val2) {\ - return AssertionSuccess();\ - } else {\ - Message msg;\ - msg << "Expected: (" << expr1 << ") " #op " (" << expr2\ - << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\ - << " vs " << FormatForComparisonFailureMessage(val2, val1);\ - return AssertionFailure(msg);\ - }\ -}\ -GTEST_API_ AssertionResult CmpHelper##op_name(\ - const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2) - -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. - -// Implements the helper function for {ASSERT|EXPECT}_NE -GTEST_IMPL_CMP_HELPER_(NE, !=); -// Implements the helper function for {ASSERT|EXPECT}_LE -GTEST_IMPL_CMP_HELPER_(LE, <=); -// Implements the helper function for {ASSERT|EXPECT}_LT -GTEST_IMPL_CMP_HELPER_(LT, < ); -// Implements the helper function for {ASSERT|EXPECT}_GE -GTEST_IMPL_CMP_HELPER_(GE, >=); -// Implements the helper function for {ASSERT|EXPECT}_GT -GTEST_IMPL_CMP_HELPER_(GT, > ); - -#undef GTEST_IMPL_CMP_HELPER_ - -// The helper function for {ASSERT|EXPECT}_STREQ. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression, - const char* actual_expression, - const char* expected, - const char* actual); - -// The helper function for {ASSERT|EXPECT}_STRCASEEQ. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression, - const char* actual_expression, - const char* expected, - const char* actual); - -// The helper function for {ASSERT|EXPECT}_STRNE. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, - const char* s2_expression, - const char* s1, - const char* s2); - -// The helper function for {ASSERT|EXPECT}_STRCASENE. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression, - const char* s2_expression, - const char* s1, - const char* s2); - - -// Helper function for *_STREQ on wide strings. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression, - const char* actual_expression, - const wchar_t* expected, - const wchar_t* actual); - -// Helper function for *_STRNE on wide strings. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, - const char* s2_expression, - const wchar_t* s1, - const wchar_t* s2); - -} // namespace internal - -// IsSubstring() and IsNotSubstring() are intended to be used as the -// first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by -// themselves. They check whether needle is a substring of haystack -// (NULL is considered a substring of itself only), and return an -// appropriate error message when they fail. -// -// The {needle,haystack}_expr arguments are the stringified -// expressions that generated the two real arguments. -GTEST_API_ AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const char* needle, const char* haystack); -GTEST_API_ AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const wchar_t* needle, const wchar_t* haystack); -GTEST_API_ AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const char* needle, const char* haystack); -GTEST_API_ AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const wchar_t* needle, const wchar_t* haystack); -GTEST_API_ AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::string& needle, const ::std::string& haystack); -GTEST_API_ AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::string& needle, const ::std::string& haystack); - -#if GTEST_HAS_STD_WSTRING -GTEST_API_ AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::wstring& needle, const ::std::wstring& haystack); -GTEST_API_ AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::wstring& needle, const ::std::wstring& haystack); -#endif // GTEST_HAS_STD_WSTRING - -namespace internal { - -// Helper template function for comparing floating-points. -// -// Template parameter: -// -// RawType: the raw floating-point type (either float or double) -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -template -AssertionResult CmpHelperFloatingPointEQ(const char* expected_expression, - const char* actual_expression, - RawType expected, - RawType actual) { - const FloatingPoint lhs(expected), rhs(actual); - - if (lhs.AlmostEquals(rhs)) { - return AssertionSuccess(); - } - - StrStream expected_ss; - expected_ss << std::setprecision(std::numeric_limits::digits10 + 2) - << expected; - - StrStream actual_ss; - actual_ss << std::setprecision(std::numeric_limits::digits10 + 2) - << actual; - - return EqFailure(expected_expression, - actual_expression, - StrStreamToString(&expected_ss), - StrStreamToString(&actual_ss), - false); -} - -// Helper function for implementing ASSERT_NEAR. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1, - const char* expr2, - const char* abs_error_expr, - double val1, - double val2, - double abs_error); - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// A class that enables one to stream messages to assertion macros -class GTEST_API_ AssertHelper { - public: - // Constructor. - AssertHelper(TestPartResult::Type type, - const char* file, - int line, - const char* message); - ~AssertHelper(); - - // Message assignment is a semantic trick to enable assertion - // streaming; see the GTEST_MESSAGE_ macro below. - void operator=(const Message& message) const; - - private: - // We put our data in a struct so that the size of the AssertHelper class can - // be as small as possible. This is important because gcc is incapable of - // re-using stack space even for temporary variables, so every EXPECT_EQ - // reserves stack space for another AssertHelper. - struct AssertHelperData { - AssertHelperData(TestPartResult::Type t, - const char* srcfile, - int line_num, - const char* msg) - : type(t), file(srcfile), line(line_num), message(msg) { } - - TestPartResult::Type const type; - const char* const file; - int const line; - String const message; - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData); - }; - - AssertHelperData* const data_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper); -}; - -} // namespace internal - -#if GTEST_HAS_PARAM_TEST -// The abstract base class that all value-parameterized tests inherit from. -// -// This class adds support for accessing the test parameter value via -// the GetParam() method. -// -// Use it with one of the parameter generator defining functions, like Range(), -// Values(), ValuesIn(), Bool(), and Combine(). -// -// class FooTest : public ::testing::TestWithParam { -// protected: -// FooTest() { -// // Can use GetParam() here. -// } -// virtual ~FooTest() { -// // Can use GetParam() here. -// } -// virtual void SetUp() { -// // Can use GetParam() here. -// } -// virtual void TearDown { -// // Can use GetParam() here. -// } -// }; -// TEST_P(FooTest, DoesBar) { -// // Can use GetParam() method here. -// Foo foo; -// ASSERT_TRUE(foo.DoesBar(GetParam())); -// } -// INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10)); - -template -class TestWithParam : public Test { - public: - typedef T ParamType; - - // The current parameter value. Is also available in the test fixture's - // constructor. - const ParamType& GetParam() const { return *parameter_; } - - private: - // Sets parameter value. The caller is responsible for making sure the value - // remains alive and unchanged throughout the current test. - static void SetParam(const ParamType* parameter) { - parameter_ = parameter; - } - - // Static value used for accessing parameter during a test lifetime. - static const ParamType* parameter_; - - // TestClass must be a subclass of TestWithParam. - template friend class internal::ParameterizedTestFactory; -}; - -template -const T* TestWithParam::parameter_ = NULL; - -#endif // GTEST_HAS_PARAM_TEST - -// Macros for indicating success/failure in test code. - -// ADD_FAILURE unconditionally adds a failure to the current test. -// SUCCEED generates a success - it doesn't automatically make the -// current test successful, as a test is only successful when it has -// no failure. -// -// EXPECT_* verifies that a certain condition is satisfied. If not, -// it behaves like ADD_FAILURE. In particular: -// -// EXPECT_TRUE verifies that a Boolean condition is true. -// EXPECT_FALSE verifies that a Boolean condition is false. -// -// FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except -// that they will also abort the current function on failure. People -// usually want the fail-fast behavior of FAIL and ASSERT_*, but those -// writing data-driven tests often find themselves using ADD_FAILURE -// and EXPECT_* more. -// -// Examples: -// -// EXPECT_TRUE(server.StatusIsOK()); -// ASSERT_FALSE(server.HasPendingRequest(port)) -// << "There are still pending requests " << "on port " << port; - -// Generates a nonfatal failure with a generic message. -#define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed") - -// Generates a fatal failure with a generic message. -#define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed") - -// Define this macro to 1 to omit the definition of FAIL(), which is a -// generic name and clashes with some other libraries. -#if !GTEST_DONT_DEFINE_FAIL -#define FAIL() GTEST_FAIL() -#endif - -// Generates a success with a generic message. -#define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded") - -// Define this macro to 1 to omit the definition of SUCCEED(), which -// is a generic name and clashes with some other libraries. -#if !GTEST_DONT_DEFINE_SUCCEED -#define SUCCEED() GTEST_SUCCEED() -#endif - -// Macros for testing exceptions. -// -// * {ASSERT|EXPECT}_THROW(statement, expected_exception): -// Tests that the statement throws the expected exception. -// * {ASSERT|EXPECT}_NO_THROW(statement): -// Tests that the statement doesn't throw any exception. -// * {ASSERT|EXPECT}_ANY_THROW(statement): -// Tests that the statement throws an exception. - -#define EXPECT_THROW(statement, expected_exception) \ - GTEST_TEST_THROW_(statement, expected_exception, GTEST_NONFATAL_FAILURE_) -#define EXPECT_NO_THROW(statement) \ - GTEST_TEST_NO_THROW_(statement, GTEST_NONFATAL_FAILURE_) -#define EXPECT_ANY_THROW(statement) \ - GTEST_TEST_ANY_THROW_(statement, GTEST_NONFATAL_FAILURE_) -#define ASSERT_THROW(statement, expected_exception) \ - GTEST_TEST_THROW_(statement, expected_exception, GTEST_FATAL_FAILURE_) -#define ASSERT_NO_THROW(statement) \ - GTEST_TEST_NO_THROW_(statement, GTEST_FATAL_FAILURE_) -#define ASSERT_ANY_THROW(statement) \ - GTEST_TEST_ANY_THROW_(statement, GTEST_FATAL_FAILURE_) - -// Boolean assertions. Condition can be either a Boolean expression or an -// AssertionResult. For more information on how to use AssertionResult with -// these macros see comments on that class. -#define EXPECT_TRUE(condition) \ - GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ - GTEST_NONFATAL_FAILURE_) -#define EXPECT_FALSE(condition) \ - GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ - GTEST_NONFATAL_FAILURE_) -#define ASSERT_TRUE(condition) \ - GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ - GTEST_FATAL_FAILURE_) -#define ASSERT_FALSE(condition) \ - GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ - GTEST_FATAL_FAILURE_) - -// Includes the auto-generated header that implements a family of -// generic predicate assertion macros. -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// This file is AUTOMATICALLY GENERATED on 10/02/2008 by command -// 'gen_gtest_pred_impl.py 5'. DO NOT EDIT BY HAND! -// -// Implements a family of generic predicate assertion macros. - -#ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ -#define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ - -// Makes sure this header is not included before gtest.h. -#ifndef GTEST_INCLUDE_GTEST_GTEST_H_ -#error Do not include gtest_pred_impl.h directly. Include gtest.h instead. -#endif // GTEST_INCLUDE_GTEST_GTEST_H_ - -// This header implements a family of generic predicate assertion -// macros: -// -// ASSERT_PRED_FORMAT1(pred_format, v1) -// ASSERT_PRED_FORMAT2(pred_format, v1, v2) -// ... -// -// where pred_format is a function or functor that takes n (in the -// case of ASSERT_PRED_FORMATn) values and their source expression -// text, and returns a testing::AssertionResult. See the definition -// of ASSERT_EQ in gtest.h for an example. -// -// If you don't care about formatting, you can use the more -// restrictive version: -// -// ASSERT_PRED1(pred, v1) -// ASSERT_PRED2(pred, v1, v2) -// ... -// -// where pred is an n-ary function or functor that returns bool, -// and the values v1, v2, ..., must support the << operator for -// streaming to std::ostream. -// -// We also define the EXPECT_* variations. -// -// For now we only support predicates whose arity is at most 5. -// Please email googletestframework@googlegroups.com if you need -// support for higher arities. - -// GTEST_ASSERT_ is the basic statement to which all of the assertions -// in this file reduce. Don't use this in your code. - -#define GTEST_ASSERT_(expression, on_failure) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const ::testing::AssertionResult gtest_ar = (expression)) \ - ; \ - else \ - on_failure(gtest_ar.failure_message()) - - -// Helper function for implementing {EXPECT|ASSERT}_PRED1. Don't use -// this in your code. -template -AssertionResult AssertPred1Helper(const char* pred_text, - const char* e1, - Pred pred, - const T1& v1) { - if (pred(v1)) return AssertionSuccess(); - - Message msg; - msg << pred_text << "(" - << e1 << ") evaluates to false, where" - << "\n" << e1 << " evaluates to " << v1; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1. -// Don't use this in your code. -#define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\ - GTEST_ASSERT_(pred_format(#v1, v1),\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED1. Don't use -// this in your code. -#define GTEST_PRED1_(pred, v1, on_failure)\ - GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \ - #v1, \ - pred, \ - v1), on_failure) - -// Unary predicate assertion macros. -#define EXPECT_PRED_FORMAT1(pred_format, v1) \ - GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED1(pred, v1) \ - GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT1(pred_format, v1) \ - GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED1(pred, v1) \ - GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_) - - - -// Helper function for implementing {EXPECT|ASSERT}_PRED2. Don't use -// this in your code. -template -AssertionResult AssertPred2Helper(const char* pred_text, - const char* e1, - const char* e2, - Pred pred, - const T1& v1, - const T2& v2) { - if (pred(v1, v2)) return AssertionSuccess(); - - Message msg; - msg << pred_text << "(" - << e1 << ", " - << e2 << ") evaluates to false, where" - << "\n" << e1 << " evaluates to " << v1 - << "\n" << e2 << " evaluates to " << v2; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2. -// Don't use this in your code. -#define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\ - GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2),\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED2. Don't use -// this in your code. -#define GTEST_PRED2_(pred, v1, v2, on_failure)\ - GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \ - #v1, \ - #v2, \ - pred, \ - v1, \ - v2), on_failure) - -// Binary predicate assertion macros. -#define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \ - GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED2(pred, v1, v2) \ - GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \ - GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED2(pred, v1, v2) \ - GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_) - - - -// Helper function for implementing {EXPECT|ASSERT}_PRED3. Don't use -// this in your code. -template -AssertionResult AssertPred3Helper(const char* pred_text, - const char* e1, - const char* e2, - const char* e3, - Pred pred, - const T1& v1, - const T2& v2, - const T3& v3) { - if (pred(v1, v2, v3)) return AssertionSuccess(); - - Message msg; - msg << pred_text << "(" - << e1 << ", " - << e2 << ", " - << e3 << ") evaluates to false, where" - << "\n" << e1 << " evaluates to " << v1 - << "\n" << e2 << " evaluates to " << v2 - << "\n" << e3 << " evaluates to " << v3; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3. -// Don't use this in your code. -#define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\ - GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3),\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED3. Don't use -// this in your code. -#define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\ - GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \ - #v1, \ - #v2, \ - #v3, \ - pred, \ - v1, \ - v2, \ - v3), on_failure) - -// Ternary predicate assertion macros. -#define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \ - GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED3(pred, v1, v2, v3) \ - GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \ - GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED3(pred, v1, v2, v3) \ - GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_) - - - -// Helper function for implementing {EXPECT|ASSERT}_PRED4. Don't use -// this in your code. -template -AssertionResult AssertPred4Helper(const char* pred_text, - const char* e1, - const char* e2, - const char* e3, - const char* e4, - Pred pred, - const T1& v1, - const T2& v2, - const T3& v3, - const T4& v4) { - if (pred(v1, v2, v3, v4)) return AssertionSuccess(); - - Message msg; - msg << pred_text << "(" - << e1 << ", " - << e2 << ", " - << e3 << ", " - << e4 << ") evaluates to false, where" - << "\n" << e1 << " evaluates to " << v1 - << "\n" << e2 << " evaluates to " << v2 - << "\n" << e3 << " evaluates to " << v3 - << "\n" << e4 << " evaluates to " << v4; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4. -// Don't use this in your code. -#define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\ - GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4),\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED4. Don't use -// this in your code. -#define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\ - GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \ - #v1, \ - #v2, \ - #v3, \ - #v4, \ - pred, \ - v1, \ - v2, \ - v3, \ - v4), on_failure) - -// 4-ary predicate assertion macros. -#define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ - GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED4(pred, v1, v2, v3, v4) \ - GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ - GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED4(pred, v1, v2, v3, v4) \ - GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) - - - -// Helper function for implementing {EXPECT|ASSERT}_PRED5. Don't use -// this in your code. -template -AssertionResult AssertPred5Helper(const char* pred_text, - const char* e1, - const char* e2, - const char* e3, - const char* e4, - const char* e5, - Pred pred, - const T1& v1, - const T2& v2, - const T3& v3, - const T4& v4, - const T5& v5) { - if (pred(v1, v2, v3, v4, v5)) return AssertionSuccess(); - - Message msg; - msg << pred_text << "(" - << e1 << ", " - << e2 << ", " - << e3 << ", " - << e4 << ", " - << e5 << ") evaluates to false, where" - << "\n" << e1 << " evaluates to " << v1 - << "\n" << e2 << " evaluates to " << v2 - << "\n" << e3 << " evaluates to " << v3 - << "\n" << e4 << " evaluates to " << v4 - << "\n" << e5 << " evaluates to " << v5; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5. -// Don't use this in your code. -#define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\ - GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5),\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED5. Don't use -// this in your code. -#define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\ - GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \ - #v1, \ - #v2, \ - #v3, \ - #v4, \ - #v5, \ - pred, \ - v1, \ - v2, \ - v3, \ - v4, \ - v5), on_failure) - -// 5-ary predicate assertion macros. -#define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ - GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \ - GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ - GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \ - GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) - - - -#endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ - -// Macros for testing equalities and inequalities. -// -// * {ASSERT|EXPECT}_EQ(expected, actual): Tests that expected == actual -// * {ASSERT|EXPECT}_NE(v1, v2): Tests that v1 != v2 -// * {ASSERT|EXPECT}_LT(v1, v2): Tests that v1 < v2 -// * {ASSERT|EXPECT}_LE(v1, v2): Tests that v1 <= v2 -// * {ASSERT|EXPECT}_GT(v1, v2): Tests that v1 > v2 -// * {ASSERT|EXPECT}_GE(v1, v2): Tests that v1 >= v2 -// -// When they are not, Google Test prints both the tested expressions and -// their actual values. The values must be compatible built-in types, -// or you will get a compiler error. By "compatible" we mean that the -// values can be compared by the respective operator. -// -// Note: -// -// 1. It is possible to make a user-defined type work with -// {ASSERT|EXPECT}_??(), but that requires overloading the -// comparison operators and is thus discouraged by the Google C++ -// Usage Guide. Therefore, you are advised to use the -// {ASSERT|EXPECT}_TRUE() macro to assert that two objects are -// equal. -// -// 2. The {ASSERT|EXPECT}_??() macros do pointer comparisons on -// pointers (in particular, C strings). Therefore, if you use it -// with two C strings, you are testing how their locations in memory -// are related, not how their content is related. To compare two C -// strings by content, use {ASSERT|EXPECT}_STR*(). -// -// 3. {ASSERT|EXPECT}_EQ(expected, actual) is preferred to -// {ASSERT|EXPECT}_TRUE(expected == actual), as the former tells you -// what the actual value is when it fails, and similarly for the -// other comparisons. -// -// 4. Do not depend on the order in which {ASSERT|EXPECT}_??() -// evaluate their arguments, which is undefined. -// -// 5. These macros evaluate their arguments exactly once. -// -// Examples: -// -// EXPECT_NE(5, Foo()); -// EXPECT_EQ(NULL, a_pointer); -// ASSERT_LT(i, array_size); -// ASSERT_GT(records.size(), 0) << "There is no record left."; - -#define EXPECT_EQ(expected, actual) \ - EXPECT_PRED_FORMAT2(::testing::internal:: \ - EqHelper::Compare, \ - expected, actual) -#define EXPECT_NE(expected, actual) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, expected, actual) -#define EXPECT_LE(val1, val2) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) -#define EXPECT_LT(val1, val2) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) -#define EXPECT_GE(val1, val2) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) -#define EXPECT_GT(val1, val2) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) - -#define ASSERT_EQ(expected, actual) \ - ASSERT_PRED_FORMAT2(::testing::internal:: \ - EqHelper::Compare, \ - expected, actual) -#define ASSERT_NE(val1, val2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2) -#define ASSERT_LE(val1, val2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) -#define ASSERT_LT(val1, val2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) -#define ASSERT_GE(val1, val2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) -#define ASSERT_GT(val1, val2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) - -// C String Comparisons. All tests treat NULL and any non-NULL string -// as different. Two NULLs are equal. -// -// * {ASSERT|EXPECT}_STREQ(s1, s2): Tests that s1 == s2 -// * {ASSERT|EXPECT}_STRNE(s1, s2): Tests that s1 != s2 -// * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case -// * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case -// -// For wide or narrow string objects, you can use the -// {ASSERT|EXPECT}_??() macros. -// -// Don't depend on the order in which the arguments are evaluated, -// which is undefined. -// -// These macros evaluate their arguments exactly once. - -#define EXPECT_STREQ(expected, actual) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual) -#define EXPECT_STRNE(s1, s2) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) -#define EXPECT_STRCASEEQ(expected, actual) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual) -#define EXPECT_STRCASENE(s1, s2)\ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) - -#define ASSERT_STREQ(expected, actual) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual) -#define ASSERT_STRNE(s1, s2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) -#define ASSERT_STRCASEEQ(expected, actual) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual) -#define ASSERT_STRCASENE(s1, s2)\ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) - -// Macros for comparing floating-point numbers. -// -// * {ASSERT|EXPECT}_FLOAT_EQ(expected, actual): -// Tests that two float values are almost equal. -// * {ASSERT|EXPECT}_DOUBLE_EQ(expected, actual): -// Tests that two double values are almost equal. -// * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error): -// Tests that v1 and v2 are within the given distance to each other. -// -// Google Test uses ULP-based comparison to automatically pick a default -// error bound that is appropriate for the operands. See the -// FloatingPoint template class in gtest-internal.h if you are -// interested in the implementation details. - -#define EXPECT_FLOAT_EQ(expected, actual)\ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ - expected, actual) - -#define EXPECT_DOUBLE_EQ(expected, actual)\ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ - expected, actual) - -#define ASSERT_FLOAT_EQ(expected, actual)\ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ - expected, actual) - -#define ASSERT_DOUBLE_EQ(expected, actual)\ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ - expected, actual) - -#define EXPECT_NEAR(val1, val2, abs_error)\ - EXPECT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ - val1, val2, abs_error) - -#define ASSERT_NEAR(val1, val2, abs_error)\ - ASSERT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ - val1, val2, abs_error) - -// These predicate format functions work on floating-point values, and -// can be used in {ASSERT|EXPECT}_PRED_FORMAT2*(), e.g. -// -// EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0); - -// Asserts that val1 is less than, or almost equal to, val2. Fails -// otherwise. In particular, it fails if either val1 or val2 is NaN. -GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2, - float val1, float val2); -GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2, - double val1, double val2); - - -#if GTEST_OS_WINDOWS - -// Macros that test for HRESULT failure and success, these are only useful -// on Windows, and rely on Windows SDK macros and APIs to compile. -// -// * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr) -// -// When expr unexpectedly fails or succeeds, Google Test prints the -// expected result and the actual result with both a human-readable -// string representation of the error, if available, as well as the -// hex result code. -#define EXPECT_HRESULT_SUCCEEDED(expr) \ - EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) - -#define ASSERT_HRESULT_SUCCEEDED(expr) \ - ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) - -#define EXPECT_HRESULT_FAILED(expr) \ - EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) - -#define ASSERT_HRESULT_FAILED(expr) \ - ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) - -#endif // GTEST_OS_WINDOWS - -// Macros that execute statement and check that it doesn't generate new fatal -// failures in the current thread. -// -// * {ASSERT|EXPECT}_NO_FATAL_FAILURE(statement); -// -// Examples: -// -// EXPECT_NO_FATAL_FAILURE(Process()); -// ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed"; -// -#define ASSERT_NO_FATAL_FAILURE(statement) \ - GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_) -#define EXPECT_NO_FATAL_FAILURE(statement) \ - GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_) - -// Causes a trace (including the source file path, the current line -// number, and the given message) to be included in every test failure -// message generated by code in the current scope. The effect is -// undone when the control leaves the current scope. -// -// The message argument can be anything streamable to std::ostream. -// -// In the implementation, we include the current line number as part -// of the dummy variable name, thus allowing multiple SCOPED_TRACE()s -// to appear in the same block - as long as they are on different -// lines. -#define SCOPED_TRACE(message) \ - ::testing::internal::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\ - __FILE__, __LINE__, ::testing::Message() << (message)) - -namespace internal { - -// This template is declared, but intentionally undefined. -template -struct StaticAssertTypeEqHelper; - -template -struct StaticAssertTypeEqHelper {}; - -} // namespace internal - -// Compile-time assertion for type equality. -// StaticAssertTypeEq() compiles iff type1 and type2 are -// the same type. The value it returns is not interesting. -// -// Instead of making StaticAssertTypeEq a class template, we make it a -// function template that invokes a helper class template. This -// prevents a user from misusing StaticAssertTypeEq by -// defining objects of that type. -// -// CAVEAT: -// -// When used inside a method of a class template, -// StaticAssertTypeEq() is effective ONLY IF the method is -// instantiated. For example, given: -// -// template class Foo { -// public: -// void Bar() { testing::StaticAssertTypeEq(); } -// }; -// -// the code: -// -// void Test1() { Foo foo; } -// -// will NOT generate a compiler error, as Foo::Bar() is never -// actually instantiated. Instead, you need: -// -// void Test2() { Foo foo; foo.Bar(); } -// -// to cause a compiler error. -template -bool StaticAssertTypeEq() { - internal::StaticAssertTypeEqHelper(); - return true; -} - -// Defines a test. -// -// The first parameter is the name of the test case, and the second -// parameter is the name of the test within the test case. -// -// The convention is to end the test case name with "Test". For -// example, a test case for the Foo class can be named FooTest. -// -// The user should put his test code between braces after using this -// macro. Example: -// -// TEST(FooTest, InitializesCorrectly) { -// Foo foo; -// EXPECT_TRUE(foo.StatusIsOK()); -// } - -// Note that we call GetTestTypeId() instead of GetTypeId< -// ::testing::Test>() here to get the type ID of testing::Test. This -// is to work around a suspected linker bug when using Google Test as -// a framework on Mac OS X. The bug causes GetTypeId< -// ::testing::Test>() to return different values depending on whether -// the call is from the Google Test framework itself or from user test -// code. GetTestTypeId() is guaranteed to always return the same -// value, as it always calls GetTypeId<>() from the Google Test -// framework. -#define GTEST_TEST(test_case_name, test_name)\ - GTEST_TEST_(test_case_name, test_name, \ - ::testing::Test, ::testing::internal::GetTestTypeId()) - -// Define this macro to 1 to omit the definition of TEST(), which -// is a generic name and clashes with some other libraries. -#if !GTEST_DONT_DEFINE_TEST -#define TEST(test_case_name, test_name) GTEST_TEST(test_case_name, test_name) -#endif - -// Defines a test that uses a test fixture. -// -// The first parameter is the name of the test fixture class, which -// also doubles as the test case name. The second parameter is the -// name of the test within the test case. -// -// A test fixture class must be declared earlier. The user should put -// his test code between braces after using this macro. Example: -// -// class FooTest : public testing::Test { -// protected: -// virtual void SetUp() { b_.AddElement(3); } -// -// Foo a_; -// Foo b_; -// }; -// -// TEST_F(FooTest, InitializesCorrectly) { -// EXPECT_TRUE(a_.StatusIsOK()); -// } -// -// TEST_F(FooTest, ReturnsElementCountCorrectly) { -// EXPECT_EQ(0, a_.size()); -// EXPECT_EQ(1, b_.size()); -// } - -#define TEST_F(test_fixture, test_name)\ - GTEST_TEST_(test_fixture, test_name, test_fixture, \ - ::testing::internal::GetTypeId()) - -// Use this macro in main() to run all tests. It returns 0 if all -// tests are successful, or 1 otherwise. -// -// RUN_ALL_TESTS() should be invoked after the command line has been -// parsed by InitGoogleTest(). - -#define RUN_ALL_TESTS()\ - (::testing::UnitTest::GetInstance()->Run()) - -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_GTEST_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest_main.cc b/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest_main.cc deleted file mode 100644 index d20c02fdf..000000000 --- a/cpp/thirdparty/gtest-1.5.0/fused-src/gtest/gtest_main.cc +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -#include - -#include - -int main(int argc, char **argv) { - std::cout << "Running main() from gtest_main.cc\n"; - - testing::InitGoogleTest(&argc, argv); - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-death-test.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-death-test.h deleted file mode 100644 index 121dc1fb5..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-death-test.h +++ /dev/null @@ -1,283 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file defines the public API for death tests. It is -// #included by gtest.h so a user doesn't need to include this -// directly. - -#ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ -#define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ - -#include - -namespace testing { - -// This flag controls the style of death tests. Valid values are "threadsafe", -// meaning that the death test child process will re-execute the test binary -// from the start, running only a single death test, or "fast", -// meaning that the child process will execute the test logic immediately -// after forking. -GTEST_DECLARE_string_(death_test_style); - -#if GTEST_HAS_DEATH_TEST - -// The following macros are useful for writing death tests. - -// Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is -// executed: -// -// 1. It generates a warning if there is more than one active -// thread. This is because it's safe to fork() or clone() only -// when there is a single thread. -// -// 2. The parent process clone()s a sub-process and runs the death -// test in it; the sub-process exits with code 0 at the end of the -// death test, if it hasn't exited already. -// -// 3. The parent process waits for the sub-process to terminate. -// -// 4. The parent process checks the exit code and error message of -// the sub-process. -// -// Examples: -// -// ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number"); -// for (int i = 0; i < 5; i++) { -// EXPECT_DEATH(server.ProcessRequest(i), -// "Invalid request .* in ProcessRequest()") -// << "Failed to die on request " << i); -// } -// -// ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting"); -// -// bool KilledBySIGHUP(int exit_code) { -// return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP; -// } -// -// ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!"); -// -// On the regular expressions used in death tests: -// -// On POSIX-compliant systems (*nix), we use the library, -// which uses the POSIX extended regex syntax. -// -// On other platforms (e.g. Windows), we only support a simple regex -// syntax implemented as part of Google Test. This limited -// implementation should be enough most of the time when writing -// death tests; though it lacks many features you can find in PCRE -// or POSIX extended regex syntax. For example, we don't support -// union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and -// repetition count ("x{5,7}"), among others. -// -// Below is the syntax that we do support. We chose it to be a -// subset of both PCRE and POSIX extended regex, so it's easy to -// learn wherever you come from. In the following: 'A' denotes a -// literal character, period (.), or a single \\ escape sequence; -// 'x' and 'y' denote regular expressions; 'm' and 'n' are for -// natural numbers. -// -// c matches any literal character c -// \\d matches any decimal digit -// \\D matches any character that's not a decimal digit -// \\f matches \f -// \\n matches \n -// \\r matches \r -// \\s matches any ASCII whitespace, including \n -// \\S matches any character that's not a whitespace -// \\t matches \t -// \\v matches \v -// \\w matches any letter, _, or decimal digit -// \\W matches any character that \\w doesn't match -// \\c matches any literal character c, which must be a punctuation -// . matches any single character except \n -// A? matches 0 or 1 occurrences of A -// A* matches 0 or many occurrences of A -// A+ matches 1 or many occurrences of A -// ^ matches the beginning of a string (not that of each line) -// $ matches the end of a string (not that of each line) -// xy matches x followed by y -// -// If you accidentally use PCRE or POSIX extended regex features -// not implemented by us, you will get a run-time failure. In that -// case, please try to rewrite your regular expression within the -// above syntax. -// -// This implementation is *not* meant to be as highly tuned or robust -// as a compiled regex library, but should perform well enough for a -// death test, which already incurs significant overhead by launching -// a child process. -// -// Known caveats: -// -// A "threadsafe" style death test obtains the path to the test -// program from argv[0] and re-executes it in the sub-process. For -// simplicity, the current implementation doesn't search the PATH -// when launching the sub-process. This means that the user must -// invoke the test program via a path that contains at least one -// path separator (e.g. path/to/foo_test and -// /absolute/path/to/bar_test are fine, but foo_test is not). This -// is rarely a problem as people usually don't put the test binary -// directory in PATH. -// -// TODO(wan@google.com): make thread-safe death tests search the PATH. - -// Asserts that a given statement causes the program to exit, with an -// integer exit status that satisfies predicate, and emitting error output -// that matches regex. -#define ASSERT_EXIT(statement, predicate, regex) \ - GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_) - -// Like ASSERT_EXIT, but continues on to successive tests in the -// test case, if any: -#define EXPECT_EXIT(statement, predicate, regex) \ - GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_) - -// Asserts that a given statement causes the program to exit, either by -// explicitly exiting with a nonzero exit code or being killed by a -// signal, and emitting error output that matches regex. -#define ASSERT_DEATH(statement, regex) \ - ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) - -// Like ASSERT_DEATH, but continues on to successive tests in the -// test case, if any: -#define EXPECT_DEATH(statement, regex) \ - EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) - -// Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*: - -// Tests that an exit code describes a normal exit with a given exit code. -class GTEST_API_ ExitedWithCode { - public: - explicit ExitedWithCode(int exit_code); - bool operator()(int exit_status) const; - private: - // No implementation - assignment is unsupported. - void operator=(const ExitedWithCode& other); - - const int exit_code_; -}; - -#if !GTEST_OS_WINDOWS -// Tests that an exit code describes an exit due to termination by a -// given signal. -class GTEST_API_ KilledBySignal { - public: - explicit KilledBySignal(int signum); - bool operator()(int exit_status) const; - private: - const int signum_; -}; -#endif // !GTEST_OS_WINDOWS - -// EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode. -// The death testing framework causes this to have interesting semantics, -// since the sideeffects of the call are only visible in opt mode, and not -// in debug mode. -// -// In practice, this can be used to test functions that utilize the -// LOG(DFATAL) macro using the following style: -// -// int DieInDebugOr12(int* sideeffect) { -// if (sideeffect) { -// *sideeffect = 12; -// } -// LOG(DFATAL) << "death"; -// return 12; -// } -// -// TEST(TestCase, TestDieOr12WorksInDgbAndOpt) { -// int sideeffect = 0; -// // Only asserts in dbg. -// EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death"); -// -// #ifdef NDEBUG -// // opt-mode has sideeffect visible. -// EXPECT_EQ(12, sideeffect); -// #else -// // dbg-mode no visible sideeffect. -// EXPECT_EQ(0, sideeffect); -// #endif -// } -// -// This will assert that DieInDebugReturn12InOpt() crashes in debug -// mode, usually due to a DCHECK or LOG(DFATAL), but returns the -// appropriate fallback value (12 in this case) in opt mode. If you -// need to test that a function has appropriate side-effects in opt -// mode, include assertions against the side-effects. A general -// pattern for this is: -// -// EXPECT_DEBUG_DEATH({ -// // Side-effects here will have an effect after this statement in -// // opt mode, but none in debug mode. -// EXPECT_EQ(12, DieInDebugOr12(&sideeffect)); -// }, "death"); -// -#ifdef NDEBUG - -#define EXPECT_DEBUG_DEATH(statement, regex) \ - do { statement; } while (::testing::internal::AlwaysFalse()) - -#define ASSERT_DEBUG_DEATH(statement, regex) \ - do { statement; } while (::testing::internal::AlwaysFalse()) - -#else - -#define EXPECT_DEBUG_DEATH(statement, regex) \ - EXPECT_DEATH(statement, regex) - -#define ASSERT_DEBUG_DEATH(statement, regex) \ - ASSERT_DEATH(statement, regex) - -#endif // NDEBUG for EXPECT_DEBUG_DEATH -#endif // GTEST_HAS_DEATH_TEST - -// EXPECT_DEATH_IF_SUPPORTED(statement, regex) and -// ASSERT_DEATH_IF_SUPPORTED(statement, regex) expand to real death tests if -// death tests are supported; otherwise they just issue a warning. This is -// useful when you are combining death test assertions with normal test -// assertions in one test. -#if GTEST_HAS_DEATH_TEST -#define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ - EXPECT_DEATH(statement, regex) -#define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ - ASSERT_DEATH(statement, regex) -#else -#define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ - GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, ) -#define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ - GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, return) -#endif - -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-message.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-message.h deleted file mode 100644 index f135b6942..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-message.h +++ /dev/null @@ -1,230 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file defines the Message class. -// -// IMPORTANT NOTE: Due to limitation of the C++ language, we have to -// leave some internal implementation details in this header file. -// They are clearly marked by comments like this: -// -// // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -// -// Such code is NOT meant to be used by a user directly, and is subject -// to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user -// program! - -#ifndef GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ -#define GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ - -#include - -#include -#include - -namespace testing { - -// The Message class works like an ostream repeater. -// -// Typical usage: -// -// 1. You stream a bunch of values to a Message object. -// It will remember the text in a StrStream. -// 2. Then you stream the Message object to an ostream. -// This causes the text in the Message to be streamed -// to the ostream. -// -// For example; -// -// testing::Message foo; -// foo << 1 << " != " << 2; -// std::cout << foo; -// -// will print "1 != 2". -// -// Message is not intended to be inherited from. In particular, its -// destructor is not virtual. -// -// Note that StrStream behaves differently in gcc and in MSVC. You -// can stream a NULL char pointer to it in the former, but not in the -// latter (it causes an access violation if you do). The Message -// class hides this difference by treating a NULL char pointer as -// "(null)". -class GTEST_API_ Message { - private: - // The type of basic IO manipulators (endl, ends, and flush) for - // narrow streams. - typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&); - - public: - // Constructs an empty Message. - // We allocate the StrStream separately because it otherwise each use of - // ASSERT/EXPECT in a procedure adds over 200 bytes to the procedure's - // stack frame leading to huge stack frames in some cases; gcc does not reuse - // the stack space. - Message() : ss_(new internal::StrStream) { - // By default, we want there to be enough precision when printing - // a double to a Message. - *ss_ << std::setprecision(std::numeric_limits::digits10 + 2); - } - - // Copy constructor. - Message(const Message& msg) : ss_(new internal::StrStream) { // NOLINT - *ss_ << msg.GetString(); - } - - // Constructs a Message from a C-string. - explicit Message(const char* str) : ss_(new internal::StrStream) { - *ss_ << str; - } - - ~Message() { delete ss_; } -#if GTEST_OS_SYMBIAN - // Streams a value (either a pointer or not) to this object. - template - inline Message& operator <<(const T& value) { - StreamHelper(typename internal::is_pointer::type(), value); - return *this; - } -#else - // Streams a non-pointer value to this object. - template - inline Message& operator <<(const T& val) { - ::GTestStreamToHelper(ss_, val); - return *this; - } - - // Streams a pointer value to this object. - // - // This function is an overload of the previous one. When you - // stream a pointer to a Message, this definition will be used as it - // is more specialized. (The C++ Standard, section - // [temp.func.order].) If you stream a non-pointer, then the - // previous definition will be used. - // - // The reason for this overload is that streaming a NULL pointer to - // ostream is undefined behavior. Depending on the compiler, you - // may get "0", "(nil)", "(null)", or an access violation. To - // ensure consistent result across compilers, we always treat NULL - // as "(null)". - template - inline Message& operator <<(T* const& pointer) { // NOLINT - if (pointer == NULL) { - *ss_ << "(null)"; - } else { - ::GTestStreamToHelper(ss_, pointer); - } - return *this; - } -#endif // GTEST_OS_SYMBIAN - - // Since the basic IO manipulators are overloaded for both narrow - // and wide streams, we have to provide this specialized definition - // of operator <<, even though its body is the same as the - // templatized version above. Without this definition, streaming - // endl or other basic IO manipulators to Message will confuse the - // compiler. - Message& operator <<(BasicNarrowIoManip val) { - *ss_ << val; - return *this; - } - - // Instead of 1/0, we want to see true/false for bool values. - Message& operator <<(bool b) { - return *this << (b ? "true" : "false"); - } - - // These two overloads allow streaming a wide C string to a Message - // using the UTF-8 encoding. - Message& operator <<(const wchar_t* wide_c_str) { - return *this << internal::String::ShowWideCString(wide_c_str); - } - Message& operator <<(wchar_t* wide_c_str) { - return *this << internal::String::ShowWideCString(wide_c_str); - } - -#if GTEST_HAS_STD_WSTRING - // Converts the given wide string to a narrow string using the UTF-8 - // encoding, and streams the result to this Message object. - Message& operator <<(const ::std::wstring& wstr); -#endif // GTEST_HAS_STD_WSTRING - -#if GTEST_HAS_GLOBAL_WSTRING - // Converts the given wide string to a narrow string using the UTF-8 - // encoding, and streams the result to this Message object. - Message& operator <<(const ::wstring& wstr); -#endif // GTEST_HAS_GLOBAL_WSTRING - - // Gets the text streamed to this object so far as a String. - // Each '\0' character in the buffer is replaced with "\\0". - // - // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. - internal::String GetString() const { - return internal::StrStreamToString(ss_); - } - - private: -#if GTEST_OS_SYMBIAN - // These are needed as the Nokia Symbian Compiler cannot decide between - // const T& and const T* in a function template. The Nokia compiler _can_ - // decide between class template specializations for T and T*, so a - // tr1::type_traits-like is_pointer works, and we can overload on that. - template - inline void StreamHelper(internal::true_type /*dummy*/, T* pointer) { - if (pointer == NULL) { - *ss_ << "(null)"; - } else { - ::GTestStreamToHelper(ss_, pointer); - } - } - template - inline void StreamHelper(internal::false_type /*dummy*/, const T& value) { - ::GTestStreamToHelper(ss_, value); - } -#endif // GTEST_OS_SYMBIAN - - // We'll hold the text streamed to this object here. - internal::StrStream* const ss_; - - // We declare (but don't implement) this to prevent the compiler - // from implementing the assignment operator. - void operator=(const Message&); -}; - -// Streams a Message to an ostream. -inline std::ostream& operator <<(std::ostream& os, const Message& sb) { - return os << sb.GetString(); -} - -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-param-test.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-param-test.h deleted file mode 100644 index 810069644..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-param-test.h +++ /dev/null @@ -1,1392 +0,0 @@ -// This file was GENERATED by a script. DO NOT EDIT BY HAND!!! - -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: vladl@google.com (Vlad Losev) -// -// Macros and functions for implementing parameterized tests -// in Google C++ Testing Framework (Google Test) -// -// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! -// -#ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ -#define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ - - -// Value-parameterized tests allow you to test your code with different -// parameters without writing multiple copies of the same test. -// -// Here is how you use value-parameterized tests: - -#if 0 - -// To write value-parameterized tests, first you should define a fixture -// class. It must be derived from testing::TestWithParam, where T is -// the type of your parameter values. TestWithParam is itself derived -// from testing::Test. T can be any copyable type. If it's a raw pointer, -// you are responsible for managing the lifespan of the pointed values. - -class FooTest : public ::testing::TestWithParam { - // You can implement all the usual class fixture members here. -}; - -// Then, use the TEST_P macro to define as many parameterized tests -// for this fixture as you want. The _P suffix is for "parameterized" -// or "pattern", whichever you prefer to think. - -TEST_P(FooTest, DoesBlah) { - // Inside a test, access the test parameter with the GetParam() method - // of the TestWithParam class: - EXPECT_TRUE(foo.Blah(GetParam())); - ... -} - -TEST_P(FooTest, HasBlahBlah) { - ... -} - -// Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test -// case with any set of parameters you want. Google Test defines a number -// of functions for generating test parameters. They return what we call -// (surprise!) parameter generators. Here is a summary of them, which -// are all in the testing namespace: -// -// -// Range(begin, end [, step]) - Yields values {begin, begin+step, -// begin+step+step, ...}. The values do not -// include end. step defaults to 1. -// Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}. -// ValuesIn(container) - Yields values from a C-style array, an STL -// ValuesIn(begin,end) container, or an iterator range [begin, end). -// Bool() - Yields sequence {false, true}. -// Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product -// for the math savvy) of the values generated -// by the N generators. -// -// For more details, see comments at the definitions of these functions below -// in this file. -// -// The following statement will instantiate tests from the FooTest test case -// each with parameter values "meeny", "miny", and "moe". - -INSTANTIATE_TEST_CASE_P(InstantiationName, - FooTest, - Values("meeny", "miny", "moe")); - -// To distinguish different instances of the pattern, (yes, you -// can instantiate it more then once) the first argument to the -// INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the -// actual test case name. Remember to pick unique prefixes for different -// instantiations. The tests from the instantiation above will have -// these names: -// -// * InstantiationName/FooTest.DoesBlah/0 for "meeny" -// * InstantiationName/FooTest.DoesBlah/1 for "miny" -// * InstantiationName/FooTest.DoesBlah/2 for "moe" -// * InstantiationName/FooTest.HasBlahBlah/0 for "meeny" -// * InstantiationName/FooTest.HasBlahBlah/1 for "miny" -// * InstantiationName/FooTest.HasBlahBlah/2 for "moe" -// -// You can use these names in --gtest_filter. -// -// This statement will instantiate all tests from FooTest again, each -// with parameter values "cat" and "dog": - -const char* pets[] = {"cat", "dog"}; -INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets)); - -// The tests from the instantiation above will have these names: -// -// * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat" -// * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog" -// * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat" -// * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog" -// -// Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests -// in the given test case, whether their definitions come before or -// AFTER the INSTANTIATE_TEST_CASE_P statement. -// -// Please also note that generator expressions (including parameters to the -// generators) are evaluated in InitGoogleTest(), after main() has started. -// This allows the user on one hand, to adjust generator parameters in order -// to dynamically determine a set of tests to run and on the other hand, -// give the user a chance to inspect the generated tests with Google Test -// reflection API before RUN_ALL_TESTS() is executed. -// -// You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc -// for more examples. -// -// In the future, we plan to publish the API for defining new parameter -// generators. But for now this interface remains part of the internal -// implementation and is subject to change. - -#endif // 0 - -#include - -#if !GTEST_OS_SYMBIAN -#include -#endif - -// scripts/fuse_gtest.py depends on gtest's own header being #included -// *unconditionally*. Therefore these #includes cannot be moved -// inside #if GTEST_HAS_PARAM_TEST. -#include -#include -#include - -#if GTEST_HAS_PARAM_TEST - -namespace testing { - -// Functions producing parameter generators. -// -// Google Test uses these generators to produce parameters for value- -// parameterized tests. When a parameterized test case is instantiated -// with a particular generator, Google Test creates and runs tests -// for each element in the sequence produced by the generator. -// -// In the following sample, tests from test case FooTest are instantiated -// each three times with parameter values 3, 5, and 8: -// -// class FooTest : public TestWithParam { ... }; -// -// TEST_P(FooTest, TestThis) { -// } -// TEST_P(FooTest, TestThat) { -// } -// INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8)); -// - -// Range() returns generators providing sequences of values in a range. -// -// Synopsis: -// Range(start, end) -// - returns a generator producing a sequence of values {start, start+1, -// start+2, ..., }. -// Range(start, end, step) -// - returns a generator producing a sequence of values {start, start+step, -// start+step+step, ..., }. -// Notes: -// * The generated sequences never include end. For example, Range(1, 5) -// returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) -// returns a generator producing {1, 3, 5, 7}. -// * start and end must have the same type. That type may be any integral or -// floating-point type or a user defined type satisfying these conditions: -// * It must be assignable (have operator=() defined). -// * It must have operator+() (operator+(int-compatible type) for -// two-operand version). -// * It must have operator<() defined. -// Elements in the resulting sequences will also have that type. -// * Condition start < end must be satisfied in order for resulting sequences -// to contain any elements. -// -template -internal::ParamGenerator Range(T start, T end, IncrementT step) { - return internal::ParamGenerator( - new internal::RangeGenerator(start, end, step)); -} - -template -internal::ParamGenerator Range(T start, T end) { - return Range(start, end, 1); -} - -// ValuesIn() function allows generation of tests with parameters coming from -// a container. -// -// Synopsis: -// ValuesIn(const T (&array)[N]) -// - returns a generator producing sequences with elements from -// a C-style array. -// ValuesIn(const Container& container) -// - returns a generator producing sequences with elements from -// an STL-style container. -// ValuesIn(Iterator begin, Iterator end) -// - returns a generator producing sequences with elements from -// a range [begin, end) defined by a pair of STL-style iterators. These -// iterators can also be plain C pointers. -// -// Please note that ValuesIn copies the values from the containers -// passed in and keeps them to generate tests in RUN_ALL_TESTS(). -// -// Examples: -// -// This instantiates tests from test case StringTest -// each with C-string values of "foo", "bar", and "baz": -// -// const char* strings[] = {"foo", "bar", "baz"}; -// INSTANTIATE_TEST_CASE_P(StringSequence, SrtingTest, ValuesIn(strings)); -// -// This instantiates tests from test case StlStringTest -// each with STL strings with values "a" and "b": -// -// ::std::vector< ::std::string> GetParameterStrings() { -// ::std::vector< ::std::string> v; -// v.push_back("a"); -// v.push_back("b"); -// return v; -// } -// -// INSTANTIATE_TEST_CASE_P(CharSequence, -// StlStringTest, -// ValuesIn(GetParameterStrings())); -// -// -// This will also instantiate tests from CharTest -// each with parameter values 'a' and 'b': -// -// ::std::list GetParameterChars() { -// ::std::list list; -// list.push_back('a'); -// list.push_back('b'); -// return list; -// } -// ::std::list l = GetParameterChars(); -// INSTANTIATE_TEST_CASE_P(CharSequence2, -// CharTest, -// ValuesIn(l.begin(), l.end())); -// -template -internal::ParamGenerator< - typename ::std::iterator_traits::value_type> ValuesIn( - ForwardIterator begin, - ForwardIterator end) { - typedef typename ::std::iterator_traits::value_type - ParamType; - return internal::ParamGenerator( - new internal::ValuesInIteratorRangeGenerator(begin, end)); -} - -template -internal::ParamGenerator ValuesIn(const T (&array)[N]) { - return ValuesIn(array, array + N); -} - -template -internal::ParamGenerator ValuesIn( - const Container& container) { - return ValuesIn(container.begin(), container.end()); -} - -// Values() allows generating tests from explicitly specified list of -// parameters. -// -// Synopsis: -// Values(T v1, T v2, ..., T vN) -// - returns a generator producing sequences with elements v1, v2, ..., vN. -// -// For example, this instantiates tests from test case BarTest each -// with values "one", "two", and "three": -// -// INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three")); -// -// This instantiates tests from test case BazTest each with values 1, 2, 3.5. -// The exact type of values will depend on the type of parameter in BazTest. -// -// INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5)); -// -// Currently, Values() supports from 1 to 50 parameters. -// -template -internal::ValueArray1 Values(T1 v1) { - return internal::ValueArray1(v1); -} - -template -internal::ValueArray2 Values(T1 v1, T2 v2) { - return internal::ValueArray2(v1, v2); -} - -template -internal::ValueArray3 Values(T1 v1, T2 v2, T3 v3) { - return internal::ValueArray3(v1, v2, v3); -} - -template -internal::ValueArray4 Values(T1 v1, T2 v2, T3 v3, T4 v4) { - return internal::ValueArray4(v1, v2, v3, v4); -} - -template -internal::ValueArray5 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5) { - return internal::ValueArray5(v1, v2, v3, v4, v5); -} - -template -internal::ValueArray6 Values(T1 v1, T2 v2, T3 v3, - T4 v4, T5 v5, T6 v6) { - return internal::ValueArray6(v1, v2, v3, v4, v5, v6); -} - -template -internal::ValueArray7 Values(T1 v1, T2 v2, T3 v3, - T4 v4, T5 v5, T6 v6, T7 v7) { - return internal::ValueArray7(v1, v2, v3, v4, v5, - v6, v7); -} - -template -internal::ValueArray8 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8) { - return internal::ValueArray8(v1, v2, v3, v4, - v5, v6, v7, v8); -} - -template -internal::ValueArray9 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9) { - return internal::ValueArray9(v1, v2, v3, - v4, v5, v6, v7, v8, v9); -} - -template -internal::ValueArray10 Values(T1 v1, - T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10) { - return internal::ValueArray10(v1, - v2, v3, v4, v5, v6, v7, v8, v9, v10); -} - -template -internal::ValueArray11 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11) { - return internal::ValueArray11(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11); -} - -template -internal::ValueArray12 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12) { - return internal::ValueArray12(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12); -} - -template -internal::ValueArray13 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13) { - return internal::ValueArray13(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13); -} - -template -internal::ValueArray14 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) { - return internal::ValueArray14(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, - v14); -} - -template -internal::ValueArray15 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, - T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) { - return internal::ValueArray15(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, - v13, v14, v15); -} - -template -internal::ValueArray16 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16) { - return internal::ValueArray16(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, - v12, v13, v14, v15, v16); -} - -template -internal::ValueArray17 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17) { - return internal::ValueArray17(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, - v11, v12, v13, v14, v15, v16, v17); -} - -template -internal::ValueArray18 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, - T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18) { - return internal::ValueArray18(v1, v2, v3, v4, v5, v6, v7, v8, v9, - v10, v11, v12, v13, v14, v15, v16, v17, v18); -} - -template -internal::ValueArray19 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, - T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, - T15 v15, T16 v16, T17 v17, T18 v18, T19 v19) { - return internal::ValueArray19(v1, v2, v3, v4, v5, v6, v7, v8, - v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19); -} - -template -internal::ValueArray20 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, - T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20) { - return internal::ValueArray20(v1, v2, v3, v4, v5, v6, v7, - v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20); -} - -template -internal::ValueArray21 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, - T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21) { - return internal::ValueArray21(v1, v2, v3, v4, v5, v6, - v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21); -} - -template -internal::ValueArray22 Values(T1 v1, T2 v2, T3 v3, - T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22) { - return internal::ValueArray22(v1, v2, v3, v4, - v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, - v20, v21, v22); -} - -template -internal::ValueArray23 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22, T23 v23) { - return internal::ValueArray23(v1, v2, v3, - v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, - v20, v21, v22, v23); -} - -template -internal::ValueArray24 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22, T23 v23, T24 v24) { - return internal::ValueArray24(v1, v2, - v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, - v19, v20, v21, v22, v23, v24); -} - -template -internal::ValueArray25 Values(T1 v1, - T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, - T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, - T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25) { - return internal::ValueArray25(v1, - v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, - v18, v19, v20, v21, v22, v23, v24, v25); -} - -template -internal::ValueArray26 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26) { - return internal::ValueArray26(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, - v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26); -} - -template -internal::ValueArray27 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27) { - return internal::ValueArray27(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, - v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27); -} - -template -internal::ValueArray28 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28) { - return internal::ValueArray28(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, - v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, - v28); -} - -template -internal::ValueArray29 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29) { - return internal::ValueArray29(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, - v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, - v27, v28, v29); -} - -template -internal::ValueArray30 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, - T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, - T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, - T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) { - return internal::ValueArray30(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, - v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, - v26, v27, v28, v29, v30); -} - -template -internal::ValueArray31 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) { - return internal::ValueArray31(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, - v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, - v25, v26, v27, v28, v29, v30, v31); -} - -template -internal::ValueArray32 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, - T32 v32) { - return internal::ValueArray32(v1, v2, v3, v4, v5, v6, v7, v8, v9, - v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, - v24, v25, v26, v27, v28, v29, v30, v31, v32); -} - -template -internal::ValueArray33 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, - T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, - T32 v32, T33 v33) { - return internal::ValueArray33(v1, v2, v3, v4, v5, v6, v7, v8, - v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, - v24, v25, v26, v27, v28, v29, v30, v31, v32, v33); -} - -template -internal::ValueArray34 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, - T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, - T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, - T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, - T31 v31, T32 v32, T33 v33, T34 v34) { - return internal::ValueArray34(v1, v2, v3, v4, v5, v6, v7, - v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, - v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34); -} - -template -internal::ValueArray35 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, - T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, - T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, - T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35) { - return internal::ValueArray35(v1, v2, v3, v4, v5, v6, - v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, - v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35); -} - -template -internal::ValueArray36 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, - T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, - T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, - T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36) { - return internal::ValueArray36(v1, v2, v3, v4, - v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, - v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, - v34, v35, v36); -} - -template -internal::ValueArray37 Values(T1 v1, T2 v2, T3 v3, - T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, - T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, - T37 v37) { - return internal::ValueArray37(v1, v2, v3, - v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, - v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, - v34, v35, v36, v37); -} - -template -internal::ValueArray38 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, - T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, - T37 v37, T38 v38) { - return internal::ValueArray38(v1, v2, - v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, - v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, - v33, v34, v35, v36, v37, v38); -} - -template -internal::ValueArray39 Values(T1 v1, T2 v2, - T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, - T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, - T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, - T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, - T37 v37, T38 v38, T39 v39) { - return internal::ValueArray39(v1, - v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, - v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, - v32, v33, v34, v35, v36, v37, v38, v39); -} - -template -internal::ValueArray40 Values(T1 v1, - T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, - T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, - T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, - T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, - T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) { - return internal::ValueArray40(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, - v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, - v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40); -} - -template -internal::ValueArray41 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41) { - return internal::ValueArray41(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, - v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, - v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41); -} - -template -internal::ValueArray42 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42) { - return internal::ValueArray42(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, - v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, - v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, - v42); -} - -template -internal::ValueArray43 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43) { - return internal::ValueArray43(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, - v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, - v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, - v41, v42, v43); -} - -template -internal::ValueArray44 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44) { - return internal::ValueArray44(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, - v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, - v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, - v40, v41, v42, v43, v44); -} - -template -internal::ValueArray45 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, - T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, - T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, - T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, - T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, - T41 v41, T42 v42, T43 v43, T44 v44, T45 v45) { - return internal::ValueArray45(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, - v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, - v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, - v39, v40, v41, v42, v43, v44, v45); -} - -template -internal::ValueArray46 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, - T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, - T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) { - return internal::ValueArray46(v1, v2, v3, v4, v5, v6, v7, v8, v9, - v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, - v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, - v38, v39, v40, v41, v42, v43, v44, v45, v46); -} - -template -internal::ValueArray47 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, - T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, - T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) { - return internal::ValueArray47(v1, v2, v3, v4, v5, v6, v7, v8, - v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, - v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, - v38, v39, v40, v41, v42, v43, v44, v45, v46, v47); -} - -template -internal::ValueArray48 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, - T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, - T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, - T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, - T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, - T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, - T48 v48) { - return internal::ValueArray48(v1, v2, v3, v4, v5, v6, v7, - v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, - v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, - v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48); -} - -template -internal::ValueArray49 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, - T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, - T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, - T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, - T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, - T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, - T47 v47, T48 v48, T49 v49) { - return internal::ValueArray49(v1, v2, v3, v4, v5, v6, - v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, - v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, - v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49); -} - -template -internal::ValueArray50 Values(T1 v1, T2 v2, T3 v3, T4 v4, - T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, - T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, - T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, - T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, - T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, - T46 v46, T47 v47, T48 v48, T49 v49, T50 v50) { - return internal::ValueArray50(v1, v2, v3, v4, - v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, - v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, - v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, - v48, v49, v50); -} - -// Bool() allows generating tests with parameters in a set of (false, true). -// -// Synopsis: -// Bool() -// - returns a generator producing sequences with elements {false, true}. -// -// It is useful when testing code that depends on Boolean flags. Combinations -// of multiple flags can be tested when several Bool()'s are combined using -// Combine() function. -// -// In the following example all tests in the test case FlagDependentTest -// will be instantiated twice with parameters false and true. -// -// class FlagDependentTest : public testing::TestWithParam { -// virtual void SetUp() { -// external_flag = GetParam(); -// } -// } -// INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool()); -// -inline internal::ParamGenerator Bool() { - return Values(false, true); -} - -#if GTEST_HAS_COMBINE -// Combine() allows the user to combine two or more sequences to produce -// values of a Cartesian product of those sequences' elements. -// -// Synopsis: -// Combine(gen1, gen2, ..., genN) -// - returns a generator producing sequences with elements coming from -// the Cartesian product of elements from the sequences generated by -// gen1, gen2, ..., genN. The sequence elements will have a type of -// tuple where T1, T2, ..., TN are the types -// of elements from sequences produces by gen1, gen2, ..., genN. -// -// Combine can have up to 10 arguments. This number is currently limited -// by the maximum number of elements in the tuple implementation used by Google -// Test. -// -// Example: -// -// This will instantiate tests in test case AnimalTest each one with -// the parameter values tuple("cat", BLACK), tuple("cat", WHITE), -// tuple("dog", BLACK), and tuple("dog", WHITE): -// -// enum Color { BLACK, GRAY, WHITE }; -// class AnimalTest -// : public testing::TestWithParam > {...}; -// -// TEST_P(AnimalTest, AnimalLooksNice) {...} -// -// INSTANTIATE_TEST_CASE_P(AnimalVariations, AnimalTest, -// Combine(Values("cat", "dog"), -// Values(BLACK, WHITE))); -// -// This will instantiate tests in FlagDependentTest with all variations of two -// Boolean flags: -// -// class FlagDependentTest -// : public testing::TestWithParam > { -// virtual void SetUp() { -// // Assigns external_flag_1 and external_flag_2 values from the tuple. -// tie(external_flag_1, external_flag_2) = GetParam(); -// } -// }; -// -// TEST_P(FlagDependentTest, TestFeature1) { -// // Test your code using external_flag_1 and external_flag_2 here. -// } -// INSTANTIATE_TEST_CASE_P(TwoBoolSequence, FlagDependentTest, -// Combine(Bool(), Bool())); -// -template -internal::CartesianProductHolder2 Combine( - const Generator1& g1, const Generator2& g2) { - return internal::CartesianProductHolder2( - g1, g2); -} - -template -internal::CartesianProductHolder3 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3) { - return internal::CartesianProductHolder3( - g1, g2, g3); -} - -template -internal::CartesianProductHolder4 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4) { - return internal::CartesianProductHolder4( - g1, g2, g3, g4); -} - -template -internal::CartesianProductHolder5 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5) { - return internal::CartesianProductHolder5( - g1, g2, g3, g4, g5); -} - -template -internal::CartesianProductHolder6 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5, const Generator6& g6) { - return internal::CartesianProductHolder6( - g1, g2, g3, g4, g5, g6); -} - -template -internal::CartesianProductHolder7 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5, const Generator6& g6, - const Generator7& g7) { - return internal::CartesianProductHolder7( - g1, g2, g3, g4, g5, g6, g7); -} - -template -internal::CartesianProductHolder8 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5, const Generator6& g6, - const Generator7& g7, const Generator8& g8) { - return internal::CartesianProductHolder8( - g1, g2, g3, g4, g5, g6, g7, g8); -} - -template -internal::CartesianProductHolder9 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5, const Generator6& g6, - const Generator7& g7, const Generator8& g8, const Generator9& g9) { - return internal::CartesianProductHolder9( - g1, g2, g3, g4, g5, g6, g7, g8, g9); -} - -template -internal::CartesianProductHolder10 Combine( - const Generator1& g1, const Generator2& g2, const Generator3& g3, - const Generator4& g4, const Generator5& g5, const Generator6& g6, - const Generator7& g7, const Generator8& g8, const Generator9& g9, - const Generator10& g10) { - return internal::CartesianProductHolder10( - g1, g2, g3, g4, g5, g6, g7, g8, g9, g10); -} -#endif // GTEST_HAS_COMBINE - - - -#define TEST_P(test_case_name, test_name) \ - class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ - : public test_case_name { \ - public: \ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \ - virtual void TestBody(); \ - private: \ - static int AddToRegistry() { \ - ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ - GetTestCasePatternHolder(\ - #test_case_name, __FILE__, __LINE__)->AddTestPattern(\ - #test_case_name, \ - #test_name, \ - new ::testing::internal::TestMetaFactory< \ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>()); \ - return 0; \ - } \ - static int gtest_registering_dummy_; \ - GTEST_DISALLOW_COPY_AND_ASSIGN_(\ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \ - }; \ - int GTEST_TEST_CLASS_NAME_(test_case_name, \ - test_name)::gtest_registering_dummy_ = \ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \ - void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() - -#define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator) \ - ::testing::internal::ParamGenerator \ - gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \ - int gtest_##prefix##test_case_name##_dummy_ = \ - ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ - GetTestCasePatternHolder(\ - #test_case_name, __FILE__, __LINE__)->AddTestCaseInstantiation(\ - #prefix, \ - >est_##prefix##test_case_name##_EvalGenerator_, \ - __FILE__, __LINE__) - -} // namespace testing - -#endif // GTEST_HAS_PARAM_TEST - -#endif // GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-param-test.h.pump b/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-param-test.h.pump deleted file mode 100644 index a23118827..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-param-test.h.pump +++ /dev/null @@ -1,457 +0,0 @@ -$$ -*- mode: c++; -*- -$var n = 50 $$ Maximum length of Values arguments we want to support. -$var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: vladl@google.com (Vlad Losev) -// -// Macros and functions for implementing parameterized tests -// in Google C++ Testing Framework (Google Test) -// -// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! -// -#ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ -#define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ - - -// Value-parameterized tests allow you to test your code with different -// parameters without writing multiple copies of the same test. -// -// Here is how you use value-parameterized tests: - -#if 0 - -// To write value-parameterized tests, first you should define a fixture -// class. It must be derived from testing::TestWithParam, where T is -// the type of your parameter values. TestWithParam is itself derived -// from testing::Test. T can be any copyable type. If it's a raw pointer, -// you are responsible for managing the lifespan of the pointed values. - -class FooTest : public ::testing::TestWithParam { - // You can implement all the usual class fixture members here. -}; - -// Then, use the TEST_P macro to define as many parameterized tests -// for this fixture as you want. The _P suffix is for "parameterized" -// or "pattern", whichever you prefer to think. - -TEST_P(FooTest, DoesBlah) { - // Inside a test, access the test parameter with the GetParam() method - // of the TestWithParam class: - EXPECT_TRUE(foo.Blah(GetParam())); - ... -} - -TEST_P(FooTest, HasBlahBlah) { - ... -} - -// Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test -// case with any set of parameters you want. Google Test defines a number -// of functions for generating test parameters. They return what we call -// (surprise!) parameter generators. Here is a summary of them, which -// are all in the testing namespace: -// -// -// Range(begin, end [, step]) - Yields values {begin, begin+step, -// begin+step+step, ...}. The values do not -// include end. step defaults to 1. -// Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}. -// ValuesIn(container) - Yields values from a C-style array, an STL -// ValuesIn(begin,end) container, or an iterator range [begin, end). -// Bool() - Yields sequence {false, true}. -// Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product -// for the math savvy) of the values generated -// by the N generators. -// -// For more details, see comments at the definitions of these functions below -// in this file. -// -// The following statement will instantiate tests from the FooTest test case -// each with parameter values "meeny", "miny", and "moe". - -INSTANTIATE_TEST_CASE_P(InstantiationName, - FooTest, - Values("meeny", "miny", "moe")); - -// To distinguish different instances of the pattern, (yes, you -// can instantiate it more then once) the first argument to the -// INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the -// actual test case name. Remember to pick unique prefixes for different -// instantiations. The tests from the instantiation above will have -// these names: -// -// * InstantiationName/FooTest.DoesBlah/0 for "meeny" -// * InstantiationName/FooTest.DoesBlah/1 for "miny" -// * InstantiationName/FooTest.DoesBlah/2 for "moe" -// * InstantiationName/FooTest.HasBlahBlah/0 for "meeny" -// * InstantiationName/FooTest.HasBlahBlah/1 for "miny" -// * InstantiationName/FooTest.HasBlahBlah/2 for "moe" -// -// You can use these names in --gtest_filter. -// -// This statement will instantiate all tests from FooTest again, each -// with parameter values "cat" and "dog": - -const char* pets[] = {"cat", "dog"}; -INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets)); - -// The tests from the instantiation above will have these names: -// -// * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat" -// * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog" -// * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat" -// * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog" -// -// Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests -// in the given test case, whether their definitions come before or -// AFTER the INSTANTIATE_TEST_CASE_P statement. -// -// Please also note that generator expressions are evaluated in -// RUN_ALL_TESTS(), after main() has started. This allows evaluation of -// parameter list based on command line parameters. -// -// You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc -// for more examples. -// -// In the future, we plan to publish the API for defining new parameter -// generators. But for now this interface remains part of the internal -// implementation and is subject to change. - -#endif // 0 - -#include - -#if !GTEST_OS_SYMBIAN -#include -#endif - -// scripts/fuse_gtest.py depends on gtest's own header being #included -// *unconditionally*. Therefore these #includes cannot be moved -// inside #if GTEST_HAS_PARAM_TEST. -#include -#include -#include - -#if GTEST_HAS_PARAM_TEST - -namespace testing { - -// Functions producing parameter generators. -// -// Google Test uses these generators to produce parameters for value- -// parameterized tests. When a parameterized test case is instantiated -// with a particular generator, Google Test creates and runs tests -// for each element in the sequence produced by the generator. -// -// In the following sample, tests from test case FooTest are instantiated -// each three times with parameter values 3, 5, and 8: -// -// class FooTest : public TestWithParam { ... }; -// -// TEST_P(FooTest, TestThis) { -// } -// TEST_P(FooTest, TestThat) { -// } -// INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8)); -// - -// Range() returns generators providing sequences of values in a range. -// -// Synopsis: -// Range(start, end) -// - returns a generator producing a sequence of values {start, start+1, -// start+2, ..., }. -// Range(start, end, step) -// - returns a generator producing a sequence of values {start, start+step, -// start+step+step, ..., }. -// Notes: -// * The generated sequences never include end. For example, Range(1, 5) -// returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) -// returns a generator producing {1, 3, 5, 7}. -// * start and end must have the same type. That type may be any integral or -// floating-point type or a user defined type satisfying these conditions: -// * It must be assignable (have operator=() defined). -// * It must have operator+() (operator+(int-compatible type) for -// two-operand version). -// * It must have operator<() defined. -// Elements in the resulting sequences will also have that type. -// * Condition start < end must be satisfied in order for resulting sequences -// to contain any elements. -// -template -internal::ParamGenerator Range(T start, T end, IncrementT step) { - return internal::ParamGenerator( - new internal::RangeGenerator(start, end, step)); -} - -template -internal::ParamGenerator Range(T start, T end) { - return Range(start, end, 1); -} - -// ValuesIn() function allows generation of tests with parameters coming from -// a container. -// -// Synopsis: -// ValuesIn(const T (&array)[N]) -// - returns a generator producing sequences with elements from -// a C-style array. -// ValuesIn(const Container& container) -// - returns a generator producing sequences with elements from -// an STL-style container. -// ValuesIn(Iterator begin, Iterator end) -// - returns a generator producing sequences with elements from -// a range [begin, end) defined by a pair of STL-style iterators. These -// iterators can also be plain C pointers. -// -// Please note that ValuesIn copies the values from the containers -// passed in and keeps them to generate tests in RUN_ALL_TESTS(). -// -// Examples: -// -// This instantiates tests from test case StringTest -// each with C-string values of "foo", "bar", and "baz": -// -// const char* strings[] = {"foo", "bar", "baz"}; -// INSTANTIATE_TEST_CASE_P(StringSequence, SrtingTest, ValuesIn(strings)); -// -// This instantiates tests from test case StlStringTest -// each with STL strings with values "a" and "b": -// -// ::std::vector< ::std::string> GetParameterStrings() { -// ::std::vector< ::std::string> v; -// v.push_back("a"); -// v.push_back("b"); -// return v; -// } -// -// INSTANTIATE_TEST_CASE_P(CharSequence, -// StlStringTest, -// ValuesIn(GetParameterStrings())); -// -// -// This will also instantiate tests from CharTest -// each with parameter values 'a' and 'b': -// -// ::std::list GetParameterChars() { -// ::std::list list; -// list.push_back('a'); -// list.push_back('b'); -// return list; -// } -// ::std::list l = GetParameterChars(); -// INSTANTIATE_TEST_CASE_P(CharSequence2, -// CharTest, -// ValuesIn(l.begin(), l.end())); -// -template -internal::ParamGenerator< - typename ::std::iterator_traits::value_type> ValuesIn( - ForwardIterator begin, - ForwardIterator end) { - typedef typename ::std::iterator_traits::value_type - ParamType; - return internal::ParamGenerator( - new internal::ValuesInIteratorRangeGenerator(begin, end)); -} - -template -internal::ParamGenerator ValuesIn(const T (&array)[N]) { - return ValuesIn(array, array + N); -} - -template -internal::ParamGenerator ValuesIn( - const Container& container) { - return ValuesIn(container.begin(), container.end()); -} - -// Values() allows generating tests from explicitly specified list of -// parameters. -// -// Synopsis: -// Values(T v1, T v2, ..., T vN) -// - returns a generator producing sequences with elements v1, v2, ..., vN. -// -// For example, this instantiates tests from test case BarTest each -// with values "one", "two", and "three": -// -// INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three")); -// -// This instantiates tests from test case BazTest each with values 1, 2, 3.5. -// The exact type of values will depend on the type of parameter in BazTest. -// -// INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5)); -// -// Currently, Values() supports from 1 to $n parameters. -// -$range i 1..n -$for i [[ -$range j 1..i - -template <$for j, [[typename T$j]]> -internal::ValueArray$i<$for j, [[T$j]]> Values($for j, [[T$j v$j]]) { - return internal::ValueArray$i<$for j, [[T$j]]>($for j, [[v$j]]); -} - -]] - -// Bool() allows generating tests with parameters in a set of (false, true). -// -// Synopsis: -// Bool() -// - returns a generator producing sequences with elements {false, true}. -// -// It is useful when testing code that depends on Boolean flags. Combinations -// of multiple flags can be tested when several Bool()'s are combined using -// Combine() function. -// -// In the following example all tests in the test case FlagDependentTest -// will be instantiated twice with parameters false and true. -// -// class FlagDependentTest : public testing::TestWithParam { -// virtual void SetUp() { -// external_flag = GetParam(); -// } -// } -// INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool()); -// -inline internal::ParamGenerator Bool() { - return Values(false, true); -} - -#if GTEST_HAS_COMBINE -// Combine() allows the user to combine two or more sequences to produce -// values of a Cartesian product of those sequences' elements. -// -// Synopsis: -// Combine(gen1, gen2, ..., genN) -// - returns a generator producing sequences with elements coming from -// the Cartesian product of elements from the sequences generated by -// gen1, gen2, ..., genN. The sequence elements will have a type of -// tuple where T1, T2, ..., TN are the types -// of elements from sequences produces by gen1, gen2, ..., genN. -// -// Combine can have up to $maxtuple arguments. This number is currently limited -// by the maximum number of elements in the tuple implementation used by Google -// Test. -// -// Example: -// -// This will instantiate tests in test case AnimalTest each one with -// the parameter values tuple("cat", BLACK), tuple("cat", WHITE), -// tuple("dog", BLACK), and tuple("dog", WHITE): -// -// enum Color { BLACK, GRAY, WHITE }; -// class AnimalTest -// : public testing::TestWithParam > {...}; -// -// TEST_P(AnimalTest, AnimalLooksNice) {...} -// -// INSTANTIATE_TEST_CASE_P(AnimalVariations, AnimalTest, -// Combine(Values("cat", "dog"), -// Values(BLACK, WHITE))); -// -// This will instantiate tests in FlagDependentTest with all variations of two -// Boolean flags: -// -// class FlagDependentTest -// : public testing::TestWithParam > { -// virtual void SetUp() { -// // Assigns external_flag_1 and external_flag_2 values from the tuple. -// tie(external_flag_1, external_flag_2) = GetParam(); -// } -// }; -// -// TEST_P(FlagDependentTest, TestFeature1) { -// // Test your code using external_flag_1 and external_flag_2 here. -// } -// INSTANTIATE_TEST_CASE_P(TwoBoolSequence, FlagDependentTest, -// Combine(Bool(), Bool())); -// -$range i 2..maxtuple -$for i [[ -$range j 1..i - -template <$for j, [[typename Generator$j]]> -internal::CartesianProductHolder$i<$for j, [[Generator$j]]> Combine( - $for j, [[const Generator$j& g$j]]) { - return internal::CartesianProductHolder$i<$for j, [[Generator$j]]>( - $for j, [[g$j]]); -} - -]] -#endif // GTEST_HAS_COMBINE - - - -#define TEST_P(test_case_name, test_name) \ - class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ - : public test_case_name { \ - public: \ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \ - virtual void TestBody(); \ - private: \ - static int AddToRegistry() { \ - ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ - GetTestCasePatternHolder(\ - #test_case_name, __FILE__, __LINE__)->AddTestPattern(\ - #test_case_name, \ - #test_name, \ - new ::testing::internal::TestMetaFactory< \ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>()); \ - return 0; \ - } \ - static int gtest_registering_dummy_; \ - GTEST_DISALLOW_COPY_AND_ASSIGN_(\ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \ - }; \ - int GTEST_TEST_CLASS_NAME_(test_case_name, \ - test_name)::gtest_registering_dummy_ = \ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \ - void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() - -#define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator) \ - ::testing::internal::ParamGenerator \ - gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \ - int gtest_##prefix##test_case_name##_dummy_ = \ - ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ - GetTestCasePatternHolder(\ - #test_case_name, __FILE__, __LINE__)->AddTestCaseInstantiation(\ - #prefix, \ - >est_##prefix##test_case_name##_EvalGenerator_, \ - __FILE__, __LINE__) - -} // namespace testing - -#endif // GTEST_HAS_PARAM_TEST - -#endif // GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-spi.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-spi.h deleted file mode 100644 index c41da4844..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-spi.h +++ /dev/null @@ -1,232 +0,0 @@ -// Copyright 2007, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// Utilities for testing Google Test itself and code that uses Google Test -// (e.g. frameworks built on top of Google Test). - -#ifndef GTEST_INCLUDE_GTEST_GTEST_SPI_H_ -#define GTEST_INCLUDE_GTEST_GTEST_SPI_H_ - -#include - -namespace testing { - -// This helper class can be used to mock out Google Test failure reporting -// so that we can test Google Test or code that builds on Google Test. -// -// An object of this class appends a TestPartResult object to the -// TestPartResultArray object given in the constructor whenever a Google Test -// failure is reported. It can either intercept only failures that are -// generated in the same thread that created this object or it can intercept -// all generated failures. The scope of this mock object can be controlled with -// the second argument to the two arguments constructor. -class GTEST_API_ ScopedFakeTestPartResultReporter - : public TestPartResultReporterInterface { - public: - // The two possible mocking modes of this object. - enum InterceptMode { - INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. - INTERCEPT_ALL_THREADS // Intercepts all failures. - }; - - // The c'tor sets this object as the test part result reporter used - // by Google Test. The 'result' parameter specifies where to report the - // results. This reporter will only catch failures generated in the current - // thread. DEPRECATED - explicit ScopedFakeTestPartResultReporter(TestPartResultArray* result); - - // Same as above, but you can choose the interception scope of this object. - ScopedFakeTestPartResultReporter(InterceptMode intercept_mode, - TestPartResultArray* result); - - // The d'tor restores the previous test part result reporter. - virtual ~ScopedFakeTestPartResultReporter(); - - // Appends the TestPartResult object to the TestPartResultArray - // received in the constructor. - // - // This method is from the TestPartResultReporterInterface - // interface. - virtual void ReportTestPartResult(const TestPartResult& result); - private: - void Init(); - - const InterceptMode intercept_mode_; - TestPartResultReporterInterface* old_reporter_; - TestPartResultArray* const result_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter); -}; - -namespace internal { - -// A helper class for implementing EXPECT_FATAL_FAILURE() and -// EXPECT_NONFATAL_FAILURE(). Its destructor verifies that the given -// TestPartResultArray contains exactly one failure that has the given -// type and contains the given substring. If that's not the case, a -// non-fatal failure will be generated. -class GTEST_API_ SingleFailureChecker { - public: - // The constructor remembers the arguments. - SingleFailureChecker(const TestPartResultArray* results, - TestPartResult::Type type, - const char* substr); - ~SingleFailureChecker(); - private: - const TestPartResultArray* const results_; - const TestPartResult::Type type_; - const String substr_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(SingleFailureChecker); -}; - -} // namespace internal - -} // namespace testing - -// A set of macros for testing Google Test assertions or code that's expected -// to generate Google Test fatal failures. It verifies that the given -// statement will cause exactly one fatal Google Test failure with 'substr' -// being part of the failure message. -// -// There are two different versions of this macro. EXPECT_FATAL_FAILURE only -// affects and considers failures generated in the current thread and -// EXPECT_FATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. -// -// The verification of the assertion is done correctly even when the statement -// throws an exception or aborts the current function. -// -// Known restrictions: -// - 'statement' cannot reference local non-static variables or -// non-static members of the current object. -// - 'statement' cannot return a value. -// - You cannot stream a failure message to this macro. -// -// Note that even though the implementations of the following two -// macros are much alike, we cannot refactor them to use a common -// helper macro, due to some peculiarity in how the preprocessor -// works. The AcceptsMacroThatExpandsToUnprotectedComma test in -// gtest_unittest.cc will fail to compile if we do that. -#define EXPECT_FATAL_FAILURE(statement, substr) \ - do { \ - class GTestExpectFatalFailureHelper {\ - public:\ - static void Execute() { statement; }\ - };\ - ::testing::TestPartResultArray gtest_failures;\ - ::testing::internal::SingleFailureChecker gtest_checker(\ - >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ - {\ - ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ - ::testing::ScopedFakeTestPartResultReporter:: \ - INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ - GTestExpectFatalFailureHelper::Execute();\ - }\ - } while (::testing::internal::AlwaysFalse()) - -#define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ - do { \ - class GTestExpectFatalFailureHelper {\ - public:\ - static void Execute() { statement; }\ - };\ - ::testing::TestPartResultArray gtest_failures;\ - ::testing::internal::SingleFailureChecker gtest_checker(\ - >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ - {\ - ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ - ::testing::ScopedFakeTestPartResultReporter:: \ - INTERCEPT_ALL_THREADS, >est_failures);\ - GTestExpectFatalFailureHelper::Execute();\ - }\ - } while (::testing::internal::AlwaysFalse()) - -// A macro for testing Google Test assertions or code that's expected to -// generate Google Test non-fatal failures. It asserts that the given -// statement will cause exactly one non-fatal Google Test failure with 'substr' -// being part of the failure message. -// -// There are two different versions of this macro. EXPECT_NONFATAL_FAILURE only -// affects and considers failures generated in the current thread and -// EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. -// -// 'statement' is allowed to reference local variables and members of -// the current object. -// -// The verification of the assertion is done correctly even when the statement -// throws an exception or aborts the current function. -// -// Known restrictions: -// - You cannot stream a failure message to this macro. -// -// Note that even though the implementations of the following two -// macros are much alike, we cannot refactor them to use a common -// helper macro, due to some peculiarity in how the preprocessor -// works. If we do that, the code won't compile when the user gives -// EXPECT_NONFATAL_FAILURE() a statement that contains a macro that -// expands to code containing an unprotected comma. The -// AcceptsMacroThatExpandsToUnprotectedComma test in gtest_unittest.cc -// catches that. -// -// For the same reason, we have to write -// if (::testing::internal::AlwaysTrue()) { statement; } -// instead of -// GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) -// to avoid an MSVC warning on unreachable code. -#define EXPECT_NONFATAL_FAILURE(statement, substr) \ - do {\ - ::testing::TestPartResultArray gtest_failures;\ - ::testing::internal::SingleFailureChecker gtest_checker(\ - >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ - (substr));\ - {\ - ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ - ::testing::ScopedFakeTestPartResultReporter:: \ - INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ - if (::testing::internal::AlwaysTrue()) { statement; }\ - }\ - } while (::testing::internal::AlwaysFalse()) - -#define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ - do {\ - ::testing::TestPartResultArray gtest_failures;\ - ::testing::internal::SingleFailureChecker gtest_checker(\ - >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ - (substr));\ - {\ - ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ - ::testing::ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS,\ - >est_failures);\ - if (::testing::internal::AlwaysTrue()) { statement; }\ - }\ - } while (::testing::internal::AlwaysFalse()) - -#endif // GTEST_INCLUDE_GTEST_GTEST_SPI_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-test-part.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-test-part.h deleted file mode 100644 index f71475906..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-test-part.h +++ /dev/null @@ -1,176 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: mheule@google.com (Markus Heule) -// - -#ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ -#define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ - -#include -#include -#include -#include - -namespace testing { - -// A copyable object representing the result of a test part (i.e. an -// assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()). -// -// Don't inherit from TestPartResult as its destructor is not virtual. -class GTEST_API_ TestPartResult { - public: - // The possible outcomes of a test part (i.e. an assertion or an - // explicit SUCCEED(), FAIL(), or ADD_FAILURE()). - enum Type { - kSuccess, // Succeeded. - kNonFatalFailure, // Failed but the test can continue. - kFatalFailure // Failed and the test should be terminated. - }; - - // C'tor. TestPartResult does NOT have a default constructor. - // Always use this constructor (with parameters) to create a - // TestPartResult object. - TestPartResult(Type a_type, - const char* a_file_name, - int a_line_number, - const char* a_message) - : type_(a_type), - file_name_(a_file_name), - line_number_(a_line_number), - summary_(ExtractSummary(a_message)), - message_(a_message) { - } - - // Gets the outcome of the test part. - Type type() const { return type_; } - - // Gets the name of the source file where the test part took place, or - // NULL if it's unknown. - const char* file_name() const { return file_name_.c_str(); } - - // Gets the line in the source file where the test part took place, - // or -1 if it's unknown. - int line_number() const { return line_number_; } - - // Gets the summary of the failure message. - const char* summary() const { return summary_.c_str(); } - - // Gets the message associated with the test part. - const char* message() const { return message_.c_str(); } - - // Returns true iff the test part passed. - bool passed() const { return type_ == kSuccess; } - - // Returns true iff the test part failed. - bool failed() const { return type_ != kSuccess; } - - // Returns true iff the test part non-fatally failed. - bool nonfatally_failed() const { return type_ == kNonFatalFailure; } - - // Returns true iff the test part fatally failed. - bool fatally_failed() const { return type_ == kFatalFailure; } - private: - Type type_; - - // Gets the summary of the failure message by omitting the stack - // trace in it. - static internal::String ExtractSummary(const char* message); - - // The name of the source file where the test part took place, or - // NULL if the source file is unknown. - internal::String file_name_; - // The line in the source file where the test part took place, or -1 - // if the line number is unknown. - int line_number_; - internal::String summary_; // The test failure summary. - internal::String message_; // The test failure message. -}; - -// Prints a TestPartResult object. -std::ostream& operator<<(std::ostream& os, const TestPartResult& result); - -// An array of TestPartResult objects. -// -// Don't inherit from TestPartResultArray as its destructor is not -// virtual. -class GTEST_API_ TestPartResultArray { - public: - TestPartResultArray() {} - - // Appends the given TestPartResult to the array. - void Append(const TestPartResult& result); - - // Returns the TestPartResult at the given index (0-based). - const TestPartResult& GetTestPartResult(int index) const; - - // Returns the number of TestPartResult objects in the array. - int size() const; - - private: - std::vector array_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray); -}; - -// This interface knows how to report a test part result. -class TestPartResultReporterInterface { - public: - virtual ~TestPartResultReporterInterface() {} - - virtual void ReportTestPartResult(const TestPartResult& result) = 0; -}; - -namespace internal { - -// This helper class is used by {ASSERT|EXPECT}_NO_FATAL_FAILURE to check if a -// statement generates new fatal failures. To do so it registers itself as the -// current test part result reporter. Besides checking if fatal failures were -// reported, it only delegates the reporting to the former result reporter. -// The original result reporter is restored in the destructor. -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -class GTEST_API_ HasNewFatalFailureHelper - : public TestPartResultReporterInterface { - public: - HasNewFatalFailureHelper(); - virtual ~HasNewFatalFailureHelper(); - virtual void ReportTestPartResult(const TestPartResult& result); - bool has_new_fatal_failure() const { return has_new_fatal_failure_; } - private: - bool has_new_fatal_failure_; - TestPartResultReporterInterface* original_reporter_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(HasNewFatalFailureHelper); -}; - -} // namespace internal - -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-typed-test.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-typed-test.h deleted file mode 100644 index 1ec8eb8d3..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest-typed-test.h +++ /dev/null @@ -1,259 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#ifndef GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ -#define GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ - -// This header implements typed tests and type-parameterized tests. - -// Typed (aka type-driven) tests repeat the same test for types in a -// list. You must know which types you want to test with when writing -// typed tests. Here's how you do it: - -#if 0 - -// First, define a fixture class template. It should be parameterized -// by a type. Remember to derive it from testing::Test. -template -class FooTest : public testing::Test { - public: - ... - typedef std::list List; - static T shared_; - T value_; -}; - -// Next, associate a list of types with the test case, which will be -// repeated for each type in the list. The typedef is necessary for -// the macro to parse correctly. -typedef testing::Types MyTypes; -TYPED_TEST_CASE(FooTest, MyTypes); - -// If the type list contains only one type, you can write that type -// directly without Types<...>: -// TYPED_TEST_CASE(FooTest, int); - -// Then, use TYPED_TEST() instead of TEST_F() to define as many typed -// tests for this test case as you want. -TYPED_TEST(FooTest, DoesBlah) { - // Inside a test, refer to TypeParam to get the type parameter. - // Since we are inside a derived class template, C++ requires use to - // visit the members of FooTest via 'this'. - TypeParam n = this->value_; - - // To visit static members of the fixture, add the TestFixture:: - // prefix. - n += TestFixture::shared_; - - // To refer to typedefs in the fixture, add the "typename - // TestFixture::" prefix. - typename TestFixture::List values; - values.push_back(n); - ... -} - -TYPED_TEST(FooTest, HasPropertyA) { ... } - -#endif // 0 - -// Type-parameterized tests are abstract test patterns parameterized -// by a type. Compared with typed tests, type-parameterized tests -// allow you to define the test pattern without knowing what the type -// parameters are. The defined pattern can be instantiated with -// different types any number of times, in any number of translation -// units. -// -// If you are designing an interface or concept, you can define a -// suite of type-parameterized tests to verify properties that any -// valid implementation of the interface/concept should have. Then, -// each implementation can easily instantiate the test suite to verify -// that it conforms to the requirements, without having to write -// similar tests repeatedly. Here's an example: - -#if 0 - -// First, define a fixture class template. It should be parameterized -// by a type. Remember to derive it from testing::Test. -template -class FooTest : public testing::Test { - ... -}; - -// Next, declare that you will define a type-parameterized test case -// (the _P suffix is for "parameterized" or "pattern", whichever you -// prefer): -TYPED_TEST_CASE_P(FooTest); - -// Then, use TYPED_TEST_P() to define as many type-parameterized tests -// for this type-parameterized test case as you want. -TYPED_TEST_P(FooTest, DoesBlah) { - // Inside a test, refer to TypeParam to get the type parameter. - TypeParam n = 0; - ... -} - -TYPED_TEST_P(FooTest, HasPropertyA) { ... } - -// Now the tricky part: you need to register all test patterns before -// you can instantiate them. The first argument of the macro is the -// test case name; the rest are the names of the tests in this test -// case. -REGISTER_TYPED_TEST_CASE_P(FooTest, - DoesBlah, HasPropertyA); - -// Finally, you are free to instantiate the pattern with the types you -// want. If you put the above code in a header file, you can #include -// it in multiple C++ source files and instantiate it multiple times. -// -// To distinguish different instances of the pattern, the first -// argument to the INSTANTIATE_* macro is a prefix that will be added -// to the actual test case name. Remember to pick unique prefixes for -// different instances. -typedef testing::Types MyTypes; -INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes); - -// If the type list contains only one type, you can write that type -// directly without Types<...>: -// INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, int); - -#endif // 0 - -#include -#include - -// Implements typed tests. - -#if GTEST_HAS_TYPED_TEST - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Expands to the name of the typedef for the type parameters of the -// given test case. -#define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_ - -// The 'Types' template argument below must have spaces around it -// since some compilers may choke on '>>' when passing a template -// instance (e.g. Types) -#define TYPED_TEST_CASE(CaseName, Types) \ - typedef ::testing::internal::TypeList< Types >::type \ - GTEST_TYPE_PARAMS_(CaseName) - -#define TYPED_TEST(CaseName, TestName) \ - template \ - class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \ - : public CaseName { \ - private: \ - typedef CaseName TestFixture; \ - typedef gtest_TypeParam_ TypeParam; \ - virtual void TestBody(); \ - }; \ - bool gtest_##CaseName##_##TestName##_registered_ = \ - ::testing::internal::TypeParameterizedTest< \ - CaseName, \ - ::testing::internal::TemplateSel< \ - GTEST_TEST_CLASS_NAME_(CaseName, TestName)>, \ - GTEST_TYPE_PARAMS_(CaseName)>::Register(\ - "", #CaseName, #TestName, 0); \ - template \ - void GTEST_TEST_CLASS_NAME_(CaseName, TestName)::TestBody() - -#endif // GTEST_HAS_TYPED_TEST - -// Implements type-parameterized tests. - -#if GTEST_HAS_TYPED_TEST_P - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Expands to the namespace name that the type-parameterized tests for -// the given type-parameterized test case are defined in. The exact -// name of the namespace is subject to change without notice. -#define GTEST_CASE_NAMESPACE_(TestCaseName) \ - gtest_case_##TestCaseName##_ - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Expands to the name of the variable used to remember the names of -// the defined tests in the given test case. -#define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \ - gtest_typed_test_case_p_state_##TestCaseName##_ - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY. -// -// Expands to the name of the variable used to remember the names of -// the registered tests in the given test case. -#define GTEST_REGISTERED_TEST_NAMES_(TestCaseName) \ - gtest_registered_test_names_##TestCaseName##_ - -// The variables defined in the type-parameterized test macros are -// static as typically these macros are used in a .h file that can be -// #included in multiple translation units linked together. -#define TYPED_TEST_CASE_P(CaseName) \ - static ::testing::internal::TypedTestCasePState \ - GTEST_TYPED_TEST_CASE_P_STATE_(CaseName) - -#define TYPED_TEST_P(CaseName, TestName) \ - namespace GTEST_CASE_NAMESPACE_(CaseName) { \ - template \ - class TestName : public CaseName { \ - private: \ - typedef CaseName TestFixture; \ - typedef gtest_TypeParam_ TypeParam; \ - virtual void TestBody(); \ - }; \ - static bool gtest_##TestName##_defined_ = \ - GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).AddTestName(\ - __FILE__, __LINE__, #CaseName, #TestName); \ - } \ - template \ - void GTEST_CASE_NAMESPACE_(CaseName)::TestName::TestBody() - -#define REGISTER_TYPED_TEST_CASE_P(CaseName, ...) \ - namespace GTEST_CASE_NAMESPACE_(CaseName) { \ - typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \ - } \ - static const char* const GTEST_REGISTERED_TEST_NAMES_(CaseName) = \ - GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).VerifyRegisteredTestNames(\ - __FILE__, __LINE__, #__VA_ARGS__) - -// The 'Types' template argument below must have spaces around it -// since some compilers may choke on '>>' when passing a template -// instance (e.g. Types) -#define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ - bool gtest_##Prefix##_##CaseName = \ - ::testing::internal::TypeParameterizedTestCase::type>::Register(\ - #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName)) - -#endif // GTEST_HAS_TYPED_TEST_P - -#endif // GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest.h deleted file mode 100644 index 921fad11f..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest.h +++ /dev/null @@ -1,2052 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file defines the public API for Google Test. It should be -// included by any test program that uses Google Test. -// -// IMPORTANT NOTE: Due to limitation of the C++ language, we have to -// leave some internal implementation details in this header file. -// They are clearly marked by comments like this: -// -// // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -// -// Such code is NOT meant to be used by a user directly, and is subject -// to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user -// program! -// -// Acknowledgment: Google Test borrowed the idea of automatic test -// registration from Barthelemy Dagenais' (barthelemy@prologique.com) -// easyUnit framework. - -#ifndef GTEST_INCLUDE_GTEST_GTEST_H_ -#define GTEST_INCLUDE_GTEST_GTEST_H_ - -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -// Depending on the platform, different string classes are available. -// On Linux, in addition to ::std::string, Google also makes use of -// class ::string, which has the same interface as ::std::string, but -// has a different implementation. -// -// The user can define GTEST_HAS_GLOBAL_STRING to 1 to indicate that -// ::string is available AND is a distinct type to ::std::string, or -// define it to 0 to indicate otherwise. -// -// If the user's ::std::string and ::string are the same class due to -// aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0. -// -// If the user doesn't define GTEST_HAS_GLOBAL_STRING, it is defined -// heuristically. - -namespace testing { - -// Declares the flags. - -// This flag temporary enables the disabled tests. -GTEST_DECLARE_bool_(also_run_disabled_tests); - -// This flag brings the debugger on an assertion failure. -GTEST_DECLARE_bool_(break_on_failure); - -// This flag controls whether Google Test catches all test-thrown exceptions -// and logs them as failures. -GTEST_DECLARE_bool_(catch_exceptions); - -// This flag enables using colors in terminal output. Available values are -// "yes" to enable colors, "no" (disable colors), or "auto" (the default) -// to let Google Test decide. -GTEST_DECLARE_string_(color); - -// This flag sets up the filter to select by name using a glob pattern -// the tests to run. If the filter is not given all tests are executed. -GTEST_DECLARE_string_(filter); - -// This flag causes the Google Test to list tests. None of the tests listed -// are actually run if the flag is provided. -GTEST_DECLARE_bool_(list_tests); - -// This flag controls whether Google Test emits a detailed XML report to a file -// in addition to its normal textual output. -GTEST_DECLARE_string_(output); - -// This flags control whether Google Test prints the elapsed time for each -// test. -GTEST_DECLARE_bool_(print_time); - -// This flag specifies the random number seed. -GTEST_DECLARE_int32_(random_seed); - -// This flag sets how many times the tests are repeated. The default value -// is 1. If the value is -1 the tests are repeating forever. -GTEST_DECLARE_int32_(repeat); - -// This flag controls whether Google Test includes Google Test internal -// stack frames in failure stack traces. -GTEST_DECLARE_bool_(show_internal_stack_frames); - -// When this flag is specified, tests' order is randomized on every iteration. -GTEST_DECLARE_bool_(shuffle); - -// This flag specifies the maximum number of stack frames to be -// printed in a failure message. -GTEST_DECLARE_int32_(stack_trace_depth); - -// When this flag is specified, a failed assertion will throw an -// exception if exceptions are enabled, or exit the program with a -// non-zero code otherwise. -GTEST_DECLARE_bool_(throw_on_failure); - -// The upper limit for valid stack trace depths. -const int kMaxStackTraceDepth = 100; - -namespace internal { - -class AssertHelper; -class DefaultGlobalTestPartResultReporter; -class ExecDeathTest; -class NoExecDeathTest; -class FinalSuccessChecker; -class GTestFlagSaver; -class TestInfoImpl; -class TestResultAccessor; -class TestEventListenersAccessor; -class TestEventRepeater; -class WindowsDeathTest; -class UnitTestImpl* GetUnitTestImpl(); -void ReportFailureInUnknownLocation(TestPartResult::Type result_type, - const String& message); -class PrettyUnitTestResultPrinter; -class XmlUnitTestResultPrinter; - -// Converts a streamable value to a String. A NULL pointer is -// converted to "(null)". When the input value is a ::string, -// ::std::string, ::wstring, or ::std::wstring object, each NUL -// character in it is replaced with "\\0". -// Declared in gtest-internal.h but defined here, so that it has access -// to the definition of the Message class, required by the ARM -// compiler. -template -String StreamableToString(const T& streamable) { - return (Message() << streamable).GetString(); -} - -} // namespace internal - -// A class for indicating whether an assertion was successful. When -// the assertion wasn't successful, the AssertionResult object -// remembers a non-empty message that describes how it failed. -// -// To create an instance of this class, use one of the factory functions -// (AssertionSuccess() and AssertionFailure()). -// -// This class is useful for two purposes: -// 1. Defining predicate functions to be used with Boolean test assertions -// EXPECT_TRUE/EXPECT_FALSE and their ASSERT_ counterparts -// 2. Defining predicate-format functions to be -// used with predicate assertions (ASSERT_PRED_FORMAT*, etc). -// -// For example, if you define IsEven predicate: -// -// testing::AssertionResult IsEven(int n) { -// if ((n % 2) == 0) -// return testing::AssertionSuccess(); -// else -// return testing::AssertionFailure() << n << " is odd"; -// } -// -// Then the failed expectation EXPECT_TRUE(IsEven(Fib(5))) -// will print the message -// -// Value of: IsEven(Fib(5)) -// Actual: false (5 is odd) -// Expected: true -// -// instead of a more opaque -// -// Value of: IsEven(Fib(5)) -// Actual: false -// Expected: true -// -// in case IsEven is a simple Boolean predicate. -// -// If you expect your predicate to be reused and want to support informative -// messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up -// about half as often as positive ones in our tests), supply messages for -// both success and failure cases: -// -// testing::AssertionResult IsEven(int n) { -// if ((n % 2) == 0) -// return testing::AssertionSuccess() << n << " is even"; -// else -// return testing::AssertionFailure() << n << " is odd"; -// } -// -// Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print -// -// Value of: IsEven(Fib(6)) -// Actual: true (8 is even) -// Expected: false -// -// NB: Predicates that support negative Boolean assertions have reduced -// performance in positive ones so be careful not to use them in tests -// that have lots (tens of thousands) of positive Boolean assertions. -// -// To use this class with EXPECT_PRED_FORMAT assertions such as: -// -// // Verifies that Foo() returns an even number. -// EXPECT_PRED_FORMAT1(IsEven, Foo()); -// -// you need to define: -// -// testing::AssertionResult IsEven(const char* expr, int n) { -// if ((n % 2) == 0) -// return testing::AssertionSuccess(); -// else -// return testing::AssertionFailure() -// << "Expected: " << expr << " is even\n Actual: it's " << n; -// } -// -// If Foo() returns 5, you will see the following message: -// -// Expected: Foo() is even -// Actual: it's 5 -// -class GTEST_API_ AssertionResult { - public: - // Copy constructor. - // Used in EXPECT_TRUE/FALSE(assertion_result). - AssertionResult(const AssertionResult& other); - // Used in the EXPECT_TRUE/FALSE(bool_expression). - explicit AssertionResult(bool success) : success_(success) {} - - // Returns true iff the assertion succeeded. - operator bool() const { return success_; } // NOLINT - - // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. - AssertionResult operator!() const; - - // Returns the text streamed into this AssertionResult. Test assertions - // use it when they fail (i.e., the predicate's outcome doesn't match the - // assertion's expectation). When nothing has been streamed into the - // object, returns an empty string. - const char* message() const { - return message_.get() != NULL && message_->c_str() != NULL ? - message_->c_str() : ""; - } - // TODO(vladl@google.com): Remove this after making sure no clients use it. - // Deprecated; please use message() instead. - const char* failure_message() const { return message(); } - - // Streams a custom failure message into this object. - template AssertionResult& operator<<(const T& value); - - private: - // No implementation - we want AssertionResult to be - // copy-constructible but not assignable. - void operator=(const AssertionResult& other); - - // Stores result of the assertion predicate. - bool success_; - // Stores the message describing the condition in case the expectation - // construct is not satisfied with the predicate's outcome. - // Referenced via a pointer to avoid taking too much stack frame space - // with test assertions. - internal::scoped_ptr message_; -}; // class AssertionResult - -// Streams a custom failure message into this object. -template -AssertionResult& AssertionResult::operator<<(const T& value) { - Message msg; - if (message_.get() != NULL) - msg << *message_; - msg << value; - message_.reset(new internal::String(msg.GetString())); - return *this; -} - -// Makes a successful assertion result. -GTEST_API_ AssertionResult AssertionSuccess(); - -// Makes a failed assertion result. -GTEST_API_ AssertionResult AssertionFailure(); - -// Makes a failed assertion result with the given failure message. -// Deprecated; use AssertionFailure() << msg. -GTEST_API_ AssertionResult AssertionFailure(const Message& msg); - -// The abstract class that all tests inherit from. -// -// In Google Test, a unit test program contains one or many TestCases, and -// each TestCase contains one or many Tests. -// -// When you define a test using the TEST macro, you don't need to -// explicitly derive from Test - the TEST macro automatically does -// this for you. -// -// The only time you derive from Test is when defining a test fixture -// to be used a TEST_F. For example: -// -// class FooTest : public testing::Test { -// protected: -// virtual void SetUp() { ... } -// virtual void TearDown() { ... } -// ... -// }; -// -// TEST_F(FooTest, Bar) { ... } -// TEST_F(FooTest, Baz) { ... } -// -// Test is not copyable. -class GTEST_API_ Test { - public: - friend class internal::TestInfoImpl; - - // Defines types for pointers to functions that set up and tear down - // a test case. - typedef internal::SetUpTestCaseFunc SetUpTestCaseFunc; - typedef internal::TearDownTestCaseFunc TearDownTestCaseFunc; - - // The d'tor is virtual as we intend to inherit from Test. - virtual ~Test(); - - // Sets up the stuff shared by all tests in this test case. - // - // Google Test will call Foo::SetUpTestCase() before running the first - // test in test case Foo. Hence a sub-class can define its own - // SetUpTestCase() method to shadow the one defined in the super - // class. - static void SetUpTestCase() {} - - // Tears down the stuff shared by all tests in this test case. - // - // Google Test will call Foo::TearDownTestCase() after running the last - // test in test case Foo. Hence a sub-class can define its own - // TearDownTestCase() method to shadow the one defined in the super - // class. - static void TearDownTestCase() {} - - // Returns true iff the current test has a fatal failure. - static bool HasFatalFailure(); - - // Returns true iff the current test has a non-fatal failure. - static bool HasNonfatalFailure(); - - // Returns true iff the current test has a (either fatal or - // non-fatal) failure. - static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); } - - // Logs a property for the current test. Only the last value for a given - // key is remembered. - // These are public static so they can be called from utility functions - // that are not members of the test fixture. - // The arguments are const char* instead strings, as Google Test is used - // on platforms where string doesn't compile. - // - // Note that a driving consideration for these RecordProperty methods - // was to produce xml output suited to the Greenspan charting utility, - // which at present will only chart values that fit in a 32-bit int. It - // is the user's responsibility to restrict their values to 32-bit ints - // if they intend them to be used with Greenspan. - static void RecordProperty(const char* key, const char* value); - static void RecordProperty(const char* key, int value); - - protected: - // Creates a Test object. - Test(); - - // Sets up the test fixture. - virtual void SetUp(); - - // Tears down the test fixture. - virtual void TearDown(); - - private: - // Returns true iff the current test has the same fixture class as - // the first test in the current test case. - static bool HasSameFixtureClass(); - - // Runs the test after the test fixture has been set up. - // - // A sub-class must implement this to define the test logic. - // - // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM. - // Instead, use the TEST or TEST_F macro. - virtual void TestBody() = 0; - - // Sets up, executes, and tears down the test. - void Run(); - - // Uses a GTestFlagSaver to save and restore all Google Test flags. - const internal::GTestFlagSaver* const gtest_flag_saver_; - - // Often a user mis-spells SetUp() as Setup() and spends a long time - // wondering why it is never called by Google Test. The declaration of - // the following method is solely for catching such an error at - // compile time: - // - // - The return type is deliberately chosen to be not void, so it - // will be a conflict if a user declares void Setup() in his test - // fixture. - // - // - This method is private, so it will be another compiler error - // if a user calls it from his test fixture. - // - // DO NOT OVERRIDE THIS FUNCTION. - // - // If you see an error about overriding the following function or - // about it being private, you have mis-spelled SetUp() as Setup(). - struct Setup_should_be_spelled_SetUp {}; - virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; } - - // We disallow copying Tests. - GTEST_DISALLOW_COPY_AND_ASSIGN_(Test); -}; - -typedef internal::TimeInMillis TimeInMillis; - -// A copyable object representing a user specified test property which can be -// output as a key/value string pair. -// -// Don't inherit from TestProperty as its destructor is not virtual. -class TestProperty { - public: - // C'tor. TestProperty does NOT have a default constructor. - // Always use this constructor (with parameters) to create a - // TestProperty object. - TestProperty(const char* a_key, const char* a_value) : - key_(a_key), value_(a_value) { - } - - // Gets the user supplied key. - const char* key() const { - return key_.c_str(); - } - - // Gets the user supplied value. - const char* value() const { - return value_.c_str(); - } - - // Sets a new value, overriding the one supplied in the constructor. - void SetValue(const char* new_value) { - value_ = new_value; - } - - private: - // The key supplied by the user. - internal::String key_; - // The value supplied by the user. - internal::String value_; -}; - -// The result of a single Test. This includes a list of -// TestPartResults, a list of TestProperties, a count of how many -// death tests there are in the Test, and how much time it took to run -// the Test. -// -// TestResult is not copyable. -class GTEST_API_ TestResult { - public: - // Creates an empty TestResult. - TestResult(); - - // D'tor. Do not inherit from TestResult. - ~TestResult(); - - // Gets the number of all test parts. This is the sum of the number - // of successful test parts and the number of failed test parts. - int total_part_count() const; - - // Returns the number of the test properties. - int test_property_count() const; - - // Returns true iff the test passed (i.e. no test part failed). - bool Passed() const { return !Failed(); } - - // Returns true iff the test failed. - bool Failed() const; - - // Returns true iff the test fatally failed. - bool HasFatalFailure() const; - - // Returns true iff the test has a non-fatal failure. - bool HasNonfatalFailure() const; - - // Returns the elapsed time, in milliseconds. - TimeInMillis elapsed_time() const { return elapsed_time_; } - - // Returns the i-th test part result among all the results. i can range - // from 0 to test_property_count() - 1. If i is not in that range, aborts - // the program. - const TestPartResult& GetTestPartResult(int i) const; - - // Returns the i-th test property. i can range from 0 to - // test_property_count() - 1. If i is not in that range, aborts the - // program. - const TestProperty& GetTestProperty(int i) const; - - private: - friend class TestInfo; - friend class UnitTest; - friend class internal::DefaultGlobalTestPartResultReporter; - friend class internal::ExecDeathTest; - friend class internal::TestInfoImpl; - friend class internal::TestResultAccessor; - friend class internal::UnitTestImpl; - friend class internal::WindowsDeathTest; - - // Gets the vector of TestPartResults. - const std::vector& test_part_results() const { - return test_part_results_; - } - - // Gets the vector of TestProperties. - const std::vector& test_properties() const { - return test_properties_; - } - - // Sets the elapsed time. - void set_elapsed_time(TimeInMillis elapsed) { elapsed_time_ = elapsed; } - - // Adds a test property to the list. The property is validated and may add - // a non-fatal failure if invalid (e.g., if it conflicts with reserved - // key names). If a property is already recorded for the same key, the - // value will be updated, rather than storing multiple values for the same - // key. - void RecordProperty(const TestProperty& test_property); - - // Adds a failure if the key is a reserved attribute of Google Test - // testcase tags. Returns true if the property is valid. - // TODO(russr): Validate attribute names are legal and human readable. - static bool ValidateTestProperty(const TestProperty& test_property); - - // Adds a test part result to the list. - void AddTestPartResult(const TestPartResult& test_part_result); - - // Returns the death test count. - int death_test_count() const { return death_test_count_; } - - // Increments the death test count, returning the new count. - int increment_death_test_count() { return ++death_test_count_; } - - // Clears the test part results. - void ClearTestPartResults(); - - // Clears the object. - void Clear(); - - // Protects mutable state of the property vector and of owned - // properties, whose values may be updated. - internal::Mutex test_properites_mutex_; - - // The vector of TestPartResults - std::vector test_part_results_; - // The vector of TestProperties - std::vector test_properties_; - // Running count of death tests. - int death_test_count_; - // The elapsed time, in milliseconds. - TimeInMillis elapsed_time_; - - // We disallow copying TestResult. - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult); -}; // class TestResult - -// A TestInfo object stores the following information about a test: -// -// Test case name -// Test name -// Whether the test should be run -// A function pointer that creates the test object when invoked -// Test result -// -// The constructor of TestInfo registers itself with the UnitTest -// singleton such that the RUN_ALL_TESTS() macro knows which tests to -// run. -class GTEST_API_ TestInfo { - public: - // Destructs a TestInfo object. This function is not virtual, so - // don't inherit from TestInfo. - ~TestInfo(); - - // Returns the test case name. - const char* test_case_name() const; - - // Returns the test name. - const char* name() const; - - // Returns the test case comment. - const char* test_case_comment() const; - - // Returns the test comment. - const char* comment() const; - - // Returns true if this test should run, that is if the test is not disabled - // (or it is disabled but the also_run_disabled_tests flag has been specified) - // and its full name matches the user-specified filter. - // - // Google Test allows the user to filter the tests by their full names. - // The full name of a test Bar in test case Foo is defined as - // "Foo.Bar". Only the tests that match the filter will run. - // - // A filter is a colon-separated list of glob (not regex) patterns, - // optionally followed by a '-' and a colon-separated list of - // negative patterns (tests to exclude). A test is run if it - // matches one of the positive patterns and does not match any of - // the negative patterns. - // - // For example, *A*:Foo.* is a filter that matches any string that - // contains the character 'A' or starts with "Foo.". - bool should_run() const; - - // Returns the result of the test. - const TestResult* result() const; - - private: -#if GTEST_HAS_DEATH_TEST - friend class internal::DefaultDeathTestFactory; -#endif // GTEST_HAS_DEATH_TEST - friend class Test; - friend class TestCase; - friend class internal::TestInfoImpl; - friend class internal::UnitTestImpl; - friend TestInfo* internal::MakeAndRegisterTestInfo( - const char* test_case_name, const char* name, - const char* test_case_comment, const char* comment, - internal::TypeId fixture_class_id, - Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc, - internal::TestFactoryBase* factory); - - // Returns true if this test matches the user-specified filter. - bool matches_filter() const; - - // Increments the number of death tests encountered in this test so - // far. - int increment_death_test_count(); - - // Accessors for the implementation object. - internal::TestInfoImpl* impl() { return impl_; } - const internal::TestInfoImpl* impl() const { return impl_; } - - // Constructs a TestInfo object. The newly constructed instance assumes - // ownership of the factory object. - TestInfo(const char* test_case_name, const char* name, - const char* test_case_comment, const char* comment, - internal::TypeId fixture_class_id, - internal::TestFactoryBase* factory); - - // An opaque implementation object. - internal::TestInfoImpl* impl_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo); -}; - -// A test case, which consists of a vector of TestInfos. -// -// TestCase is not copyable. -class GTEST_API_ TestCase { - public: - // Creates a TestCase with the given name. - // - // TestCase does NOT have a default constructor. Always use this - // constructor to create a TestCase object. - // - // Arguments: - // - // name: name of the test case - // set_up_tc: pointer to the function that sets up the test case - // tear_down_tc: pointer to the function that tears down the test case - TestCase(const char* name, const char* comment, - Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc); - - // Destructor of TestCase. - virtual ~TestCase(); - - // Gets the name of the TestCase. - const char* name() const { return name_.c_str(); } - - // Returns the test case comment. - const char* comment() const { return comment_.c_str(); } - - // Returns true if any test in this test case should run. - bool should_run() const { return should_run_; } - - // Gets the number of successful tests in this test case. - int successful_test_count() const; - - // Gets the number of failed tests in this test case. - int failed_test_count() const; - - // Gets the number of disabled tests in this test case. - int disabled_test_count() const; - - // Get the number of tests in this test case that should run. - int test_to_run_count() const; - - // Gets the number of all tests in this test case. - int total_test_count() const; - - // Returns true iff the test case passed. - bool Passed() const { return !Failed(); } - - // Returns true iff the test case failed. - bool Failed() const { return failed_test_count() > 0; } - - // Returns the elapsed time, in milliseconds. - TimeInMillis elapsed_time() const { return elapsed_time_; } - - // Returns the i-th test among all the tests. i can range from 0 to - // total_test_count() - 1. If i is not in that range, returns NULL. - const TestInfo* GetTestInfo(int i) const; - - private: - friend class Test; - friend class internal::UnitTestImpl; - - // Gets the (mutable) vector of TestInfos in this TestCase. - std::vector& test_info_list() { return test_info_list_; } - - // Gets the (immutable) vector of TestInfos in this TestCase. - const std::vector& test_info_list() const { - return test_info_list_; - } - - // Returns the i-th test among all the tests. i can range from 0 to - // total_test_count() - 1. If i is not in that range, returns NULL. - TestInfo* GetMutableTestInfo(int i); - - // Sets the should_run member. - void set_should_run(bool should) { should_run_ = should; } - - // Adds a TestInfo to this test case. Will delete the TestInfo upon - // destruction of the TestCase object. - void AddTestInfo(TestInfo * test_info); - - // Clears the results of all tests in this test case. - void ClearResult(); - - // Clears the results of all tests in the given test case. - static void ClearTestCaseResult(TestCase* test_case) { - test_case->ClearResult(); - } - - // Runs every test in this TestCase. - void Run(); - - // Returns true iff test passed. - static bool TestPassed(const TestInfo * test_info); - - // Returns true iff test failed. - static bool TestFailed(const TestInfo * test_info); - - // Returns true iff test is disabled. - static bool TestDisabled(const TestInfo * test_info); - - // Returns true if the given test should run. - static bool ShouldRunTest(const TestInfo *test_info); - - // Shuffles the tests in this test case. - void ShuffleTests(internal::Random* random); - - // Restores the test order to before the first shuffle. - void UnshuffleTests(); - - // Name of the test case. - internal::String name_; - // Comment on the test case. - internal::String comment_; - // The vector of TestInfos in their original order. It owns the - // elements in the vector. - std::vector test_info_list_; - // Provides a level of indirection for the test list to allow easy - // shuffling and restoring the test order. The i-th element in this - // vector is the index of the i-th test in the shuffled test list. - std::vector test_indices_; - // Pointer to the function that sets up the test case. - Test::SetUpTestCaseFunc set_up_tc_; - // Pointer to the function that tears down the test case. - Test::TearDownTestCaseFunc tear_down_tc_; - // True iff any test in this test case should run. - bool should_run_; - // Elapsed time, in milliseconds. - TimeInMillis elapsed_time_; - - // We disallow copying TestCases. - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestCase); -}; - -// An Environment object is capable of setting up and tearing down an -// environment. The user should subclass this to define his own -// environment(s). -// -// An Environment object does the set-up and tear-down in virtual -// methods SetUp() and TearDown() instead of the constructor and the -// destructor, as: -// -// 1. You cannot safely throw from a destructor. This is a problem -// as in some cases Google Test is used where exceptions are enabled, and -// we may want to implement ASSERT_* using exceptions where they are -// available. -// 2. You cannot use ASSERT_* directly in a constructor or -// destructor. -class Environment { - public: - // The d'tor is virtual as we need to subclass Environment. - virtual ~Environment() {} - - // Override this to define how to set up the environment. - virtual void SetUp() {} - - // Override this to define how to tear down the environment. - virtual void TearDown() {} - private: - // If you see an error about overriding the following function or - // about it being private, you have mis-spelled SetUp() as Setup(). - struct Setup_should_be_spelled_SetUp {}; - virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; } -}; - -// The interface for tracing execution of tests. The methods are organized in -// the order the corresponding events are fired. -class TestEventListener { - public: - virtual ~TestEventListener() {} - - // Fired before any test activity starts. - virtual void OnTestProgramStart(const UnitTest& unit_test) = 0; - - // Fired before each iteration of tests starts. There may be more than - // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration - // index, starting from 0. - virtual void OnTestIterationStart(const UnitTest& unit_test, - int iteration) = 0; - - // Fired before environment set-up for each iteration of tests starts. - virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test) = 0; - - // Fired after environment set-up for each iteration of tests ends. - virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) = 0; - - // Fired before the test case starts. - virtual void OnTestCaseStart(const TestCase& test_case) = 0; - - // Fired before the test starts. - virtual void OnTestStart(const TestInfo& test_info) = 0; - - // Fired after a failed assertion or a SUCCESS(). - virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0; - - // Fired after the test ends. - virtual void OnTestEnd(const TestInfo& test_info) = 0; - - // Fired after the test case ends. - virtual void OnTestCaseEnd(const TestCase& test_case) = 0; - - // Fired before environment tear-down for each iteration of tests starts. - virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test) = 0; - - // Fired after environment tear-down for each iteration of tests ends. - virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) = 0; - - // Fired after each iteration of tests finishes. - virtual void OnTestIterationEnd(const UnitTest& unit_test, - int iteration) = 0; - - // Fired after all test activities have ended. - virtual void OnTestProgramEnd(const UnitTest& unit_test) = 0; -}; - -// The convenience class for users who need to override just one or two -// methods and are not concerned that a possible change to a signature of -// the methods they override will not be caught during the build. For -// comments about each method please see the definition of TestEventListener -// above. -class EmptyTestEventListener : public TestEventListener { - public: - virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} - virtual void OnTestIterationStart(const UnitTest& /*unit_test*/, - int /*iteration*/) {} - virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) {} - virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} - virtual void OnTestCaseStart(const TestCase& /*test_case*/) {} - virtual void OnTestStart(const TestInfo& /*test_info*/) {} - virtual void OnTestPartResult(const TestPartResult& /*test_part_result*/) {} - virtual void OnTestEnd(const TestInfo& /*test_info*/) {} - virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {} - virtual void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) {} - virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} - virtual void OnTestIterationEnd(const UnitTest& /*unit_test*/, - int /*iteration*/) {} - virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} -}; - -// TestEventListeners lets users add listeners to track events in Google Test. -class GTEST_API_ TestEventListeners { - public: - TestEventListeners(); - ~TestEventListeners(); - - // Appends an event listener to the end of the list. Google Test assumes - // the ownership of the listener (i.e. it will delete the listener when - // the test program finishes). - void Append(TestEventListener* listener); - - // Removes the given event listener from the list and returns it. It then - // becomes the caller's responsibility to delete the listener. Returns - // NULL if the listener is not found in the list. - TestEventListener* Release(TestEventListener* listener); - - // Returns the standard listener responsible for the default console - // output. Can be removed from the listeners list to shut down default - // console output. Note that removing this object from the listener list - // with Release transfers its ownership to the caller and makes this - // function return NULL the next time. - TestEventListener* default_result_printer() const { - return default_result_printer_; - } - - // Returns the standard listener responsible for the default XML output - // controlled by the --gtest_output=xml flag. Can be removed from the - // listeners list by users who want to shut down the default XML output - // controlled by this flag and substitute it with custom one. Note that - // removing this object from the listener list with Release transfers its - // ownership to the caller and makes this function return NULL the next - // time. - TestEventListener* default_xml_generator() const { - return default_xml_generator_; - } - - private: - friend class TestCase; - friend class internal::DefaultGlobalTestPartResultReporter; - friend class internal::NoExecDeathTest; - friend class internal::TestEventListenersAccessor; - friend class internal::TestInfoImpl; - friend class internal::UnitTestImpl; - - // Returns repeater that broadcasts the TestEventListener events to all - // subscribers. - TestEventListener* repeater(); - - // Sets the default_result_printer attribute to the provided listener. - // The listener is also added to the listener list and previous - // default_result_printer is removed from it and deleted. The listener can - // also be NULL in which case it will not be added to the list. Does - // nothing if the previous and the current listener objects are the same. - void SetDefaultResultPrinter(TestEventListener* listener); - - // Sets the default_xml_generator attribute to the provided listener. The - // listener is also added to the listener list and previous - // default_xml_generator is removed from it and deleted. The listener can - // also be NULL in which case it will not be added to the list. Does - // nothing if the previous and the current listener objects are the same. - void SetDefaultXmlGenerator(TestEventListener* listener); - - // Controls whether events will be forwarded by the repeater to the - // listeners in the list. - bool EventForwardingEnabled() const; - void SuppressEventForwarding(); - - // The actual list of listeners. - internal::TestEventRepeater* repeater_; - // Listener responsible for the standard result output. - TestEventListener* default_result_printer_; - // Listener responsible for the creation of the XML output file. - TestEventListener* default_xml_generator_; - - // We disallow copying TestEventListeners. - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventListeners); -}; - -// A UnitTest consists of a vector of TestCases. -// -// This is a singleton class. The only instance of UnitTest is -// created when UnitTest::GetInstance() is first called. This -// instance is never deleted. -// -// UnitTest is not copyable. -// -// This class is thread-safe as long as the methods are called -// according to their specification. -class GTEST_API_ UnitTest { - public: - // Gets the singleton UnitTest object. The first time this method - // is called, a UnitTest object is constructed and returned. - // Consecutive calls will return the same object. - static UnitTest* GetInstance(); - - // Runs all tests in this UnitTest object and prints the result. - // Returns 0 if successful, or 1 otherwise. - // - // This method can only be called from the main thread. - // - // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. - int Run() GTEST_MUST_USE_RESULT_; - - // Returns the working directory when the first TEST() or TEST_F() - // was executed. The UnitTest object owns the string. - const char* original_working_dir() const; - - // Returns the TestCase object for the test that's currently running, - // or NULL if no test is running. - const TestCase* current_test_case() const; - - // Returns the TestInfo object for the test that's currently running, - // or NULL if no test is running. - const TestInfo* current_test_info() const; - - // Returns the random seed used at the start of the current test run. - int random_seed() const; - -#if GTEST_HAS_PARAM_TEST - // Returns the ParameterizedTestCaseRegistry object used to keep track of - // value-parameterized tests and instantiate and register them. - // - // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. - internal::ParameterizedTestCaseRegistry& parameterized_test_registry(); -#endif // GTEST_HAS_PARAM_TEST - - // Gets the number of successful test cases. - int successful_test_case_count() const; - - // Gets the number of failed test cases. - int failed_test_case_count() const; - - // Gets the number of all test cases. - int total_test_case_count() const; - - // Gets the number of all test cases that contain at least one test - // that should run. - int test_case_to_run_count() const; - - // Gets the number of successful tests. - int successful_test_count() const; - - // Gets the number of failed tests. - int failed_test_count() const; - - // Gets the number of disabled tests. - int disabled_test_count() const; - - // Gets the number of all tests. - int total_test_count() const; - - // Gets the number of tests that should run. - int test_to_run_count() const; - - // Gets the elapsed time, in milliseconds. - TimeInMillis elapsed_time() const; - - // Returns true iff the unit test passed (i.e. all test cases passed). - bool Passed() const; - - // Returns true iff the unit test failed (i.e. some test case failed - // or something outside of all tests failed). - bool Failed() const; - - // Gets the i-th test case among all the test cases. i can range from 0 to - // total_test_case_count() - 1. If i is not in that range, returns NULL. - const TestCase* GetTestCase(int i) const; - - // Returns the list of event listeners that can be used to track events - // inside Google Test. - TestEventListeners& listeners(); - - private: - // Registers and returns a global test environment. When a test - // program is run, all global test environments will be set-up in - // the order they were registered. After all tests in the program - // have finished, all global test environments will be torn-down in - // the *reverse* order they were registered. - // - // The UnitTest object takes ownership of the given environment. - // - // This method can only be called from the main thread. - Environment* AddEnvironment(Environment* env); - - // Adds a TestPartResult to the current TestResult object. All - // Google Test assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) - // eventually call this to report their results. The user code - // should use the assertion macros instead of calling this directly. - void AddTestPartResult(TestPartResult::Type result_type, - const char* file_name, - int line_number, - const internal::String& message, - const internal::String& os_stack_trace); - - // Adds a TestProperty to the current TestResult object. If the result already - // contains a property with the same key, the value will be updated. - void RecordPropertyForCurrentTest(const char* key, const char* value); - - // Gets the i-th test case among all the test cases. i can range from 0 to - // total_test_case_count() - 1. If i is not in that range, returns NULL. - TestCase* GetMutableTestCase(int i); - - // Accessors for the implementation object. - internal::UnitTestImpl* impl() { return impl_; } - const internal::UnitTestImpl* impl() const { return impl_; } - - // These classes and funcions are friends as they need to access private - // members of UnitTest. - friend class Test; - friend class internal::AssertHelper; - friend class internal::ScopedTrace; - friend Environment* AddGlobalTestEnvironment(Environment* env); - friend internal::UnitTestImpl* internal::GetUnitTestImpl(); - friend void internal::ReportFailureInUnknownLocation( - TestPartResult::Type result_type, - const internal::String& message); - - // Creates an empty UnitTest. - UnitTest(); - - // D'tor - virtual ~UnitTest(); - - // Pushes a trace defined by SCOPED_TRACE() on to the per-thread - // Google Test trace stack. - void PushGTestTrace(const internal::TraceInfo& trace); - - // Pops a trace from the per-thread Google Test trace stack. - void PopGTestTrace(); - - // Protects mutable state in *impl_. This is mutable as some const - // methods need to lock it too. - mutable internal::Mutex mutex_; - - // Opaque implementation object. This field is never changed once - // the object is constructed. We don't mark it as const here, as - // doing so will cause a warning in the constructor of UnitTest. - // Mutable state in *impl_ is protected by mutex_. - internal::UnitTestImpl* impl_; - - // We disallow copying UnitTest. - GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest); -}; - -// A convenient wrapper for adding an environment for the test -// program. -// -// You should call this before RUN_ALL_TESTS() is called, probably in -// main(). If you use gtest_main, you need to call this before main() -// starts for it to take effect. For example, you can define a global -// variable like this: -// -// testing::Environment* const foo_env = -// testing::AddGlobalTestEnvironment(new FooEnvironment); -// -// However, we strongly recommend you to write your own main() and -// call AddGlobalTestEnvironment() there, as relying on initialization -// of global variables makes the code harder to read and may cause -// problems when you register multiple environments from different -// translation units and the environments have dependencies among them -// (remember that the compiler doesn't guarantee the order in which -// global variables from different translation units are initialized). -inline Environment* AddGlobalTestEnvironment(Environment* env) { - return UnitTest::GetInstance()->AddEnvironment(env); -} - -// Initializes Google Test. This must be called before calling -// RUN_ALL_TESTS(). In particular, it parses a command line for the -// flags that Google Test recognizes. Whenever a Google Test flag is -// seen, it is removed from argv, and *argc is decremented. -// -// No value is returned. Instead, the Google Test flag variables are -// updated. -// -// Calling the function for the second time has no user-visible effect. -GTEST_API_ void InitGoogleTest(int* argc, char** argv); - -// This overloaded version can be used in Windows programs compiled in -// UNICODE mode. -GTEST_API_ void InitGoogleTest(int* argc, wchar_t** argv); - -namespace internal { - -// These overloaded versions handle ::std::string and ::std::wstring. -GTEST_API_ inline String FormatForFailureMessage(const ::std::string& str) { - return (Message() << '"' << str << '"').GetString(); -} - -#if GTEST_HAS_STD_WSTRING -GTEST_API_ inline String FormatForFailureMessage(const ::std::wstring& wstr) { - return (Message() << "L\"" << wstr << '"').GetString(); -} -#endif // GTEST_HAS_STD_WSTRING - -// These overloaded versions handle ::string and ::wstring. -#if GTEST_HAS_GLOBAL_STRING -GTEST_API_ inline String FormatForFailureMessage(const ::string& str) { - return (Message() << '"' << str << '"').GetString(); -} -#endif // GTEST_HAS_GLOBAL_STRING - -#if GTEST_HAS_GLOBAL_WSTRING -GTEST_API_ inline String FormatForFailureMessage(const ::wstring& wstr) { - return (Message() << "L\"" << wstr << '"').GetString(); -} -#endif // GTEST_HAS_GLOBAL_WSTRING - -// Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc) -// operand to be used in a failure message. The type (but not value) -// of the other operand may affect the format. This allows us to -// print a char* as a raw pointer when it is compared against another -// char*, and print it as a C string when it is compared against an -// std::string object, for example. -// -// The default implementation ignores the type of the other operand. -// Some specialized versions are used to handle formatting wide or -// narrow C strings. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -template -String FormatForComparisonFailureMessage(const T1& value, - const T2& /* other_operand */) { - return FormatForFailureMessage(value); -} - -// The helper function for {ASSERT|EXPECT}_EQ. -template -AssertionResult CmpHelperEQ(const char* expected_expression, - const char* actual_expression, - const T1& expected, - const T2& actual) { -#ifdef _MSC_VER -#pragma warning(push) // Saves the current warning state. -#pragma warning(disable:4389) // Temporarily disables warning on - // signed/unsigned mismatch. -#endif - - if (expected == actual) { - return AssertionSuccess(); - } - -#ifdef _MSC_VER -#pragma warning(pop) // Restores the warning state. -#endif - - return EqFailure(expected_expression, - actual_expression, - FormatForComparisonFailureMessage(expected, actual), - FormatForComparisonFailureMessage(actual, expected), - false); -} - -// With this overloaded version, we allow anonymous enums to be used -// in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous enums -// can be implicitly cast to BiggestInt. -GTEST_API_ AssertionResult CmpHelperEQ(const char* expected_expression, - const char* actual_expression, - BiggestInt expected, - BiggestInt actual); - -// The helper class for {ASSERT|EXPECT}_EQ. The template argument -// lhs_is_null_literal is true iff the first argument to ASSERT_EQ() -// is a null pointer literal. The following default implementation is -// for lhs_is_null_literal being false. -template -class EqHelper { - public: - // This templatized version is for the general case. - template - static AssertionResult Compare(const char* expected_expression, - const char* actual_expression, - const T1& expected, - const T2& actual) { - return CmpHelperEQ(expected_expression, actual_expression, expected, - actual); - } - - // With this overloaded version, we allow anonymous enums to be used - // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous - // enums can be implicitly cast to BiggestInt. - // - // Even though its body looks the same as the above version, we - // cannot merge the two, as it will make anonymous enums unhappy. - static AssertionResult Compare(const char* expected_expression, - const char* actual_expression, - BiggestInt expected, - BiggestInt actual) { - return CmpHelperEQ(expected_expression, actual_expression, expected, - actual); - } -}; - -// This specialization is used when the first argument to ASSERT_EQ() -// is a null pointer literal. -template <> -class EqHelper { - public: - // We define two overloaded versions of Compare(). The first - // version will be picked when the second argument to ASSERT_EQ() is - // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or - // EXPECT_EQ(false, a_bool). - template - static AssertionResult Compare(const char* expected_expression, - const char* actual_expression, - const T1& expected, - const T2& actual) { - return CmpHelperEQ(expected_expression, actual_expression, expected, - actual); - } - - // This version will be picked when the second argument to - // ASSERT_EQ() is a pointer, e.g. ASSERT_EQ(NULL, a_pointer). - template - static AssertionResult Compare(const char* expected_expression, - const char* actual_expression, - const T1& /* expected */, - T2* actual) { - // We already know that 'expected' is a null pointer. - return CmpHelperEQ(expected_expression, actual_expression, - static_cast(NULL), actual); - } -}; - -// A macro for implementing the helper functions needed to implement -// ASSERT_?? and EXPECT_??. It is here just to avoid copy-and-paste -// of similar code. -// -// For each templatized helper function, we also define an overloaded -// version for BiggestInt in order to reduce code bloat and allow -// anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled -// with gcc 4. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -#define GTEST_IMPL_CMP_HELPER_(op_name, op)\ -template \ -AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ - const T1& val1, const T2& val2) {\ - if (val1 op val2) {\ - return AssertionSuccess();\ - } else {\ - Message msg;\ - msg << "Expected: (" << expr1 << ") " #op " (" << expr2\ - << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\ - << " vs " << FormatForComparisonFailureMessage(val2, val1);\ - return AssertionFailure(msg);\ - }\ -}\ -GTEST_API_ AssertionResult CmpHelper##op_name(\ - const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2) - -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. - -// Implements the helper function for {ASSERT|EXPECT}_NE -GTEST_IMPL_CMP_HELPER_(NE, !=); -// Implements the helper function for {ASSERT|EXPECT}_LE -GTEST_IMPL_CMP_HELPER_(LE, <=); -// Implements the helper function for {ASSERT|EXPECT}_LT -GTEST_IMPL_CMP_HELPER_(LT, < ); -// Implements the helper function for {ASSERT|EXPECT}_GE -GTEST_IMPL_CMP_HELPER_(GE, >=); -// Implements the helper function for {ASSERT|EXPECT}_GT -GTEST_IMPL_CMP_HELPER_(GT, > ); - -#undef GTEST_IMPL_CMP_HELPER_ - -// The helper function for {ASSERT|EXPECT}_STREQ. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression, - const char* actual_expression, - const char* expected, - const char* actual); - -// The helper function for {ASSERT|EXPECT}_STRCASEEQ. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression, - const char* actual_expression, - const char* expected, - const char* actual); - -// The helper function for {ASSERT|EXPECT}_STRNE. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, - const char* s2_expression, - const char* s1, - const char* s2); - -// The helper function for {ASSERT|EXPECT}_STRCASENE. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression, - const char* s2_expression, - const char* s1, - const char* s2); - - -// Helper function for *_STREQ on wide strings. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression, - const char* actual_expression, - const wchar_t* expected, - const wchar_t* actual); - -// Helper function for *_STRNE on wide strings. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, - const char* s2_expression, - const wchar_t* s1, - const wchar_t* s2); - -} // namespace internal - -// IsSubstring() and IsNotSubstring() are intended to be used as the -// first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by -// themselves. They check whether needle is a substring of haystack -// (NULL is considered a substring of itself only), and return an -// appropriate error message when they fail. -// -// The {needle,haystack}_expr arguments are the stringified -// expressions that generated the two real arguments. -GTEST_API_ AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const char* needle, const char* haystack); -GTEST_API_ AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const wchar_t* needle, const wchar_t* haystack); -GTEST_API_ AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const char* needle, const char* haystack); -GTEST_API_ AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const wchar_t* needle, const wchar_t* haystack); -GTEST_API_ AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::string& needle, const ::std::string& haystack); -GTEST_API_ AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::string& needle, const ::std::string& haystack); - -#if GTEST_HAS_STD_WSTRING -GTEST_API_ AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::wstring& needle, const ::std::wstring& haystack); -GTEST_API_ AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::wstring& needle, const ::std::wstring& haystack); -#endif // GTEST_HAS_STD_WSTRING - -namespace internal { - -// Helper template function for comparing floating-points. -// -// Template parameter: -// -// RawType: the raw floating-point type (either float or double) -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -template -AssertionResult CmpHelperFloatingPointEQ(const char* expected_expression, - const char* actual_expression, - RawType expected, - RawType actual) { - const FloatingPoint lhs(expected), rhs(actual); - - if (lhs.AlmostEquals(rhs)) { - return AssertionSuccess(); - } - - StrStream expected_ss; - expected_ss << std::setprecision(std::numeric_limits::digits10 + 2) - << expected; - - StrStream actual_ss; - actual_ss << std::setprecision(std::numeric_limits::digits10 + 2) - << actual; - - return EqFailure(expected_expression, - actual_expression, - StrStreamToString(&expected_ss), - StrStreamToString(&actual_ss), - false); -} - -// Helper function for implementing ASSERT_NEAR. -// -// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. -GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1, - const char* expr2, - const char* abs_error_expr, - double val1, - double val2, - double abs_error); - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// A class that enables one to stream messages to assertion macros -class GTEST_API_ AssertHelper { - public: - // Constructor. - AssertHelper(TestPartResult::Type type, - const char* file, - int line, - const char* message); - ~AssertHelper(); - - // Message assignment is a semantic trick to enable assertion - // streaming; see the GTEST_MESSAGE_ macro below. - void operator=(const Message& message) const; - - private: - // We put our data in a struct so that the size of the AssertHelper class can - // be as small as possible. This is important because gcc is incapable of - // re-using stack space even for temporary variables, so every EXPECT_EQ - // reserves stack space for another AssertHelper. - struct AssertHelperData { - AssertHelperData(TestPartResult::Type t, - const char* srcfile, - int line_num, - const char* msg) - : type(t), file(srcfile), line(line_num), message(msg) { } - - TestPartResult::Type const type; - const char* const file; - int const line; - String const message; - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData); - }; - - AssertHelperData* const data_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper); -}; - -} // namespace internal - -#if GTEST_HAS_PARAM_TEST -// The abstract base class that all value-parameterized tests inherit from. -// -// This class adds support for accessing the test parameter value via -// the GetParam() method. -// -// Use it with one of the parameter generator defining functions, like Range(), -// Values(), ValuesIn(), Bool(), and Combine(). -// -// class FooTest : public ::testing::TestWithParam { -// protected: -// FooTest() { -// // Can use GetParam() here. -// } -// virtual ~FooTest() { -// // Can use GetParam() here. -// } -// virtual void SetUp() { -// // Can use GetParam() here. -// } -// virtual void TearDown { -// // Can use GetParam() here. -// } -// }; -// TEST_P(FooTest, DoesBar) { -// // Can use GetParam() method here. -// Foo foo; -// ASSERT_TRUE(foo.DoesBar(GetParam())); -// } -// INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10)); - -template -class TestWithParam : public Test { - public: - typedef T ParamType; - - // The current parameter value. Is also available in the test fixture's - // constructor. - const ParamType& GetParam() const { return *parameter_; } - - private: - // Sets parameter value. The caller is responsible for making sure the value - // remains alive and unchanged throughout the current test. - static void SetParam(const ParamType* parameter) { - parameter_ = parameter; - } - - // Static value used for accessing parameter during a test lifetime. - static const ParamType* parameter_; - - // TestClass must be a subclass of TestWithParam. - template friend class internal::ParameterizedTestFactory; -}; - -template -const T* TestWithParam::parameter_ = NULL; - -#endif // GTEST_HAS_PARAM_TEST - -// Macros for indicating success/failure in test code. - -// ADD_FAILURE unconditionally adds a failure to the current test. -// SUCCEED generates a success - it doesn't automatically make the -// current test successful, as a test is only successful when it has -// no failure. -// -// EXPECT_* verifies that a certain condition is satisfied. If not, -// it behaves like ADD_FAILURE. In particular: -// -// EXPECT_TRUE verifies that a Boolean condition is true. -// EXPECT_FALSE verifies that a Boolean condition is false. -// -// FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except -// that they will also abort the current function on failure. People -// usually want the fail-fast behavior of FAIL and ASSERT_*, but those -// writing data-driven tests often find themselves using ADD_FAILURE -// and EXPECT_* more. -// -// Examples: -// -// EXPECT_TRUE(server.StatusIsOK()); -// ASSERT_FALSE(server.HasPendingRequest(port)) -// << "There are still pending requests " << "on port " << port; - -// Generates a nonfatal failure with a generic message. -#define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed") - -// Generates a fatal failure with a generic message. -#define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed") - -// Define this macro to 1 to omit the definition of FAIL(), which is a -// generic name and clashes with some other libraries. -#if !GTEST_DONT_DEFINE_FAIL -#define FAIL() GTEST_FAIL() -#endif - -// Generates a success with a generic message. -#define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded") - -// Define this macro to 1 to omit the definition of SUCCEED(), which -// is a generic name and clashes with some other libraries. -#if !GTEST_DONT_DEFINE_SUCCEED -#define SUCCEED() GTEST_SUCCEED() -#endif - -// Macros for testing exceptions. -// -// * {ASSERT|EXPECT}_THROW(statement, expected_exception): -// Tests that the statement throws the expected exception. -// * {ASSERT|EXPECT}_NO_THROW(statement): -// Tests that the statement doesn't throw any exception. -// * {ASSERT|EXPECT}_ANY_THROW(statement): -// Tests that the statement throws an exception. - -#define EXPECT_THROW(statement, expected_exception) \ - GTEST_TEST_THROW_(statement, expected_exception, GTEST_NONFATAL_FAILURE_) -#define EXPECT_NO_THROW(statement) \ - GTEST_TEST_NO_THROW_(statement, GTEST_NONFATAL_FAILURE_) -#define EXPECT_ANY_THROW(statement) \ - GTEST_TEST_ANY_THROW_(statement, GTEST_NONFATAL_FAILURE_) -#define ASSERT_THROW(statement, expected_exception) \ - GTEST_TEST_THROW_(statement, expected_exception, GTEST_FATAL_FAILURE_) -#define ASSERT_NO_THROW(statement) \ - GTEST_TEST_NO_THROW_(statement, GTEST_FATAL_FAILURE_) -#define ASSERT_ANY_THROW(statement) \ - GTEST_TEST_ANY_THROW_(statement, GTEST_FATAL_FAILURE_) - -// Boolean assertions. Condition can be either a Boolean expression or an -// AssertionResult. For more information on how to use AssertionResult with -// these macros see comments on that class. -#define EXPECT_TRUE(condition) \ - GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ - GTEST_NONFATAL_FAILURE_) -#define EXPECT_FALSE(condition) \ - GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ - GTEST_NONFATAL_FAILURE_) -#define ASSERT_TRUE(condition) \ - GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ - GTEST_FATAL_FAILURE_) -#define ASSERT_FALSE(condition) \ - GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ - GTEST_FATAL_FAILURE_) - -// Includes the auto-generated header that implements a family of -// generic predicate assertion macros. -#include - -// Macros for testing equalities and inequalities. -// -// * {ASSERT|EXPECT}_EQ(expected, actual): Tests that expected == actual -// * {ASSERT|EXPECT}_NE(v1, v2): Tests that v1 != v2 -// * {ASSERT|EXPECT}_LT(v1, v2): Tests that v1 < v2 -// * {ASSERT|EXPECT}_LE(v1, v2): Tests that v1 <= v2 -// * {ASSERT|EXPECT}_GT(v1, v2): Tests that v1 > v2 -// * {ASSERT|EXPECT}_GE(v1, v2): Tests that v1 >= v2 -// -// When they are not, Google Test prints both the tested expressions and -// their actual values. The values must be compatible built-in types, -// or you will get a compiler error. By "compatible" we mean that the -// values can be compared by the respective operator. -// -// Note: -// -// 1. It is possible to make a user-defined type work with -// {ASSERT|EXPECT}_??(), but that requires overloading the -// comparison operators and is thus discouraged by the Google C++ -// Usage Guide. Therefore, you are advised to use the -// {ASSERT|EXPECT}_TRUE() macro to assert that two objects are -// equal. -// -// 2. The {ASSERT|EXPECT}_??() macros do pointer comparisons on -// pointers (in particular, C strings). Therefore, if you use it -// with two C strings, you are testing how their locations in memory -// are related, not how their content is related. To compare two C -// strings by content, use {ASSERT|EXPECT}_STR*(). -// -// 3. {ASSERT|EXPECT}_EQ(expected, actual) is preferred to -// {ASSERT|EXPECT}_TRUE(expected == actual), as the former tells you -// what the actual value is when it fails, and similarly for the -// other comparisons. -// -// 4. Do not depend on the order in which {ASSERT|EXPECT}_??() -// evaluate their arguments, which is undefined. -// -// 5. These macros evaluate their arguments exactly once. -// -// Examples: -// -// EXPECT_NE(5, Foo()); -// EXPECT_EQ(NULL, a_pointer); -// ASSERT_LT(i, array_size); -// ASSERT_GT(records.size(), 0) << "There is no record left."; - -#define EXPECT_EQ(expected, actual) \ - EXPECT_PRED_FORMAT2(::testing::internal:: \ - EqHelper::Compare, \ - expected, actual) -#define EXPECT_NE(expected, actual) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, expected, actual) -#define EXPECT_LE(val1, val2) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) -#define EXPECT_LT(val1, val2) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) -#define EXPECT_GE(val1, val2) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) -#define EXPECT_GT(val1, val2) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) - -#define ASSERT_EQ(expected, actual) \ - ASSERT_PRED_FORMAT2(::testing::internal:: \ - EqHelper::Compare, \ - expected, actual) -#define ASSERT_NE(val1, val2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2) -#define ASSERT_LE(val1, val2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) -#define ASSERT_LT(val1, val2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) -#define ASSERT_GE(val1, val2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) -#define ASSERT_GT(val1, val2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) - -// C String Comparisons. All tests treat NULL and any non-NULL string -// as different. Two NULLs are equal. -// -// * {ASSERT|EXPECT}_STREQ(s1, s2): Tests that s1 == s2 -// * {ASSERT|EXPECT}_STRNE(s1, s2): Tests that s1 != s2 -// * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case -// * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case -// -// For wide or narrow string objects, you can use the -// {ASSERT|EXPECT}_??() macros. -// -// Don't depend on the order in which the arguments are evaluated, -// which is undefined. -// -// These macros evaluate their arguments exactly once. - -#define EXPECT_STREQ(expected, actual) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual) -#define EXPECT_STRNE(s1, s2) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) -#define EXPECT_STRCASEEQ(expected, actual) \ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual) -#define EXPECT_STRCASENE(s1, s2)\ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) - -#define ASSERT_STREQ(expected, actual) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual) -#define ASSERT_STRNE(s1, s2) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) -#define ASSERT_STRCASEEQ(expected, actual) \ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual) -#define ASSERT_STRCASENE(s1, s2)\ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) - -// Macros for comparing floating-point numbers. -// -// * {ASSERT|EXPECT}_FLOAT_EQ(expected, actual): -// Tests that two float values are almost equal. -// * {ASSERT|EXPECT}_DOUBLE_EQ(expected, actual): -// Tests that two double values are almost equal. -// * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error): -// Tests that v1 and v2 are within the given distance to each other. -// -// Google Test uses ULP-based comparison to automatically pick a default -// error bound that is appropriate for the operands. See the -// FloatingPoint template class in gtest-internal.h if you are -// interested in the implementation details. - -#define EXPECT_FLOAT_EQ(expected, actual)\ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ - expected, actual) - -#define EXPECT_DOUBLE_EQ(expected, actual)\ - EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ - expected, actual) - -#define ASSERT_FLOAT_EQ(expected, actual)\ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ - expected, actual) - -#define ASSERT_DOUBLE_EQ(expected, actual)\ - ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ - expected, actual) - -#define EXPECT_NEAR(val1, val2, abs_error)\ - EXPECT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ - val1, val2, abs_error) - -#define ASSERT_NEAR(val1, val2, abs_error)\ - ASSERT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ - val1, val2, abs_error) - -// These predicate format functions work on floating-point values, and -// can be used in {ASSERT|EXPECT}_PRED_FORMAT2*(), e.g. -// -// EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0); - -// Asserts that val1 is less than, or almost equal to, val2. Fails -// otherwise. In particular, it fails if either val1 or val2 is NaN. -GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2, - float val1, float val2); -GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2, - double val1, double val2); - - -#if GTEST_OS_WINDOWS - -// Macros that test for HRESULT failure and success, these are only useful -// on Windows, and rely on Windows SDK macros and APIs to compile. -// -// * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr) -// -// When expr unexpectedly fails or succeeds, Google Test prints the -// expected result and the actual result with both a human-readable -// string representation of the error, if available, as well as the -// hex result code. -#define EXPECT_HRESULT_SUCCEEDED(expr) \ - EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) - -#define ASSERT_HRESULT_SUCCEEDED(expr) \ - ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) - -#define EXPECT_HRESULT_FAILED(expr) \ - EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) - -#define ASSERT_HRESULT_FAILED(expr) \ - ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) - -#endif // GTEST_OS_WINDOWS - -// Macros that execute statement and check that it doesn't generate new fatal -// failures in the current thread. -// -// * {ASSERT|EXPECT}_NO_FATAL_FAILURE(statement); -// -// Examples: -// -// EXPECT_NO_FATAL_FAILURE(Process()); -// ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed"; -// -#define ASSERT_NO_FATAL_FAILURE(statement) \ - GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_) -#define EXPECT_NO_FATAL_FAILURE(statement) \ - GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_) - -// Causes a trace (including the source file path, the current line -// number, and the given message) to be included in every test failure -// message generated by code in the current scope. The effect is -// undone when the control leaves the current scope. -// -// The message argument can be anything streamable to std::ostream. -// -// In the implementation, we include the current line number as part -// of the dummy variable name, thus allowing multiple SCOPED_TRACE()s -// to appear in the same block - as long as they are on different -// lines. -#define SCOPED_TRACE(message) \ - ::testing::internal::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\ - __FILE__, __LINE__, ::testing::Message() << (message)) - -namespace internal { - -// This template is declared, but intentionally undefined. -template -struct StaticAssertTypeEqHelper; - -template -struct StaticAssertTypeEqHelper {}; - -} // namespace internal - -// Compile-time assertion for type equality. -// StaticAssertTypeEq() compiles iff type1 and type2 are -// the same type. The value it returns is not interesting. -// -// Instead of making StaticAssertTypeEq a class template, we make it a -// function template that invokes a helper class template. This -// prevents a user from misusing StaticAssertTypeEq by -// defining objects of that type. -// -// CAVEAT: -// -// When used inside a method of a class template, -// StaticAssertTypeEq() is effective ONLY IF the method is -// instantiated. For example, given: -// -// template class Foo { -// public: -// void Bar() { testing::StaticAssertTypeEq(); } -// }; -// -// the code: -// -// void Test1() { Foo foo; } -// -// will NOT generate a compiler error, as Foo::Bar() is never -// actually instantiated. Instead, you need: -// -// void Test2() { Foo foo; foo.Bar(); } -// -// to cause a compiler error. -template -bool StaticAssertTypeEq() { - internal::StaticAssertTypeEqHelper(); - return true; -} - -// Defines a test. -// -// The first parameter is the name of the test case, and the second -// parameter is the name of the test within the test case. -// -// The convention is to end the test case name with "Test". For -// example, a test case for the Foo class can be named FooTest. -// -// The user should put his test code between braces after using this -// macro. Example: -// -// TEST(FooTest, InitializesCorrectly) { -// Foo foo; -// EXPECT_TRUE(foo.StatusIsOK()); -// } - -// Note that we call GetTestTypeId() instead of GetTypeId< -// ::testing::Test>() here to get the type ID of testing::Test. This -// is to work around a suspected linker bug when using Google Test as -// a framework on Mac OS X. The bug causes GetTypeId< -// ::testing::Test>() to return different values depending on whether -// the call is from the Google Test framework itself or from user test -// code. GetTestTypeId() is guaranteed to always return the same -// value, as it always calls GetTypeId<>() from the Google Test -// framework. -#define GTEST_TEST(test_case_name, test_name)\ - GTEST_TEST_(test_case_name, test_name, \ - ::testing::Test, ::testing::internal::GetTestTypeId()) - -// Define this macro to 1 to omit the definition of TEST(), which -// is a generic name and clashes with some other libraries. -#if !GTEST_DONT_DEFINE_TEST -#define TEST(test_case_name, test_name) GTEST_TEST(test_case_name, test_name) -#endif - -// Defines a test that uses a test fixture. -// -// The first parameter is the name of the test fixture class, which -// also doubles as the test case name. The second parameter is the -// name of the test within the test case. -// -// A test fixture class must be declared earlier. The user should put -// his test code between braces after using this macro. Example: -// -// class FooTest : public testing::Test { -// protected: -// virtual void SetUp() { b_.AddElement(3); } -// -// Foo a_; -// Foo b_; -// }; -// -// TEST_F(FooTest, InitializesCorrectly) { -// EXPECT_TRUE(a_.StatusIsOK()); -// } -// -// TEST_F(FooTest, ReturnsElementCountCorrectly) { -// EXPECT_EQ(0, a_.size()); -// EXPECT_EQ(1, b_.size()); -// } - -#define TEST_F(test_fixture, test_name)\ - GTEST_TEST_(test_fixture, test_name, test_fixture, \ - ::testing::internal::GetTypeId()) - -// Use this macro in main() to run all tests. It returns 0 if all -// tests are successful, or 1 otherwise. -// -// RUN_ALL_TESTS() should be invoked after the command line has been -// parsed by InitGoogleTest(). - -#define RUN_ALL_TESTS()\ - (::testing::UnitTest::GetInstance()->Run()) - -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_GTEST_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest_pred_impl.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest_pred_impl.h deleted file mode 100644 index e1e2f8c4c..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest_pred_impl.h +++ /dev/null @@ -1,368 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// This file is AUTOMATICALLY GENERATED on 10/02/2008 by command -// 'gen_gtest_pred_impl.py 5'. DO NOT EDIT BY HAND! -// -// Implements a family of generic predicate assertion macros. - -#ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ -#define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ - -// Makes sure this header is not included before gtest.h. -#ifndef GTEST_INCLUDE_GTEST_GTEST_H_ -#error Do not include gtest_pred_impl.h directly. Include gtest.h instead. -#endif // GTEST_INCLUDE_GTEST_GTEST_H_ - -// This header implements a family of generic predicate assertion -// macros: -// -// ASSERT_PRED_FORMAT1(pred_format, v1) -// ASSERT_PRED_FORMAT2(pred_format, v1, v2) -// ... -// -// where pred_format is a function or functor that takes n (in the -// case of ASSERT_PRED_FORMATn) values and their source expression -// text, and returns a testing::AssertionResult. See the definition -// of ASSERT_EQ in gtest.h for an example. -// -// If you don't care about formatting, you can use the more -// restrictive version: -// -// ASSERT_PRED1(pred, v1) -// ASSERT_PRED2(pred, v1, v2) -// ... -// -// where pred is an n-ary function or functor that returns bool, -// and the values v1, v2, ..., must support the << operator for -// streaming to std::ostream. -// -// We also define the EXPECT_* variations. -// -// For now we only support predicates whose arity is at most 5. -// Please email googletestframework@googlegroups.com if you need -// support for higher arities. - -// GTEST_ASSERT_ is the basic statement to which all of the assertions -// in this file reduce. Don't use this in your code. - -#define GTEST_ASSERT_(expression, on_failure) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const ::testing::AssertionResult gtest_ar = (expression)) \ - ; \ - else \ - on_failure(gtest_ar.failure_message()) - - -// Helper function for implementing {EXPECT|ASSERT}_PRED1. Don't use -// this in your code. -template -AssertionResult AssertPred1Helper(const char* pred_text, - const char* e1, - Pred pred, - const T1& v1) { - if (pred(v1)) return AssertionSuccess(); - - Message msg; - msg << pred_text << "(" - << e1 << ") evaluates to false, where" - << "\n" << e1 << " evaluates to " << v1; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1. -// Don't use this in your code. -#define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\ - GTEST_ASSERT_(pred_format(#v1, v1),\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED1. Don't use -// this in your code. -#define GTEST_PRED1_(pred, v1, on_failure)\ - GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \ - #v1, \ - pred, \ - v1), on_failure) - -// Unary predicate assertion macros. -#define EXPECT_PRED_FORMAT1(pred_format, v1) \ - GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED1(pred, v1) \ - GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT1(pred_format, v1) \ - GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED1(pred, v1) \ - GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_) - - - -// Helper function for implementing {EXPECT|ASSERT}_PRED2. Don't use -// this in your code. -template -AssertionResult AssertPred2Helper(const char* pred_text, - const char* e1, - const char* e2, - Pred pred, - const T1& v1, - const T2& v2) { - if (pred(v1, v2)) return AssertionSuccess(); - - Message msg; - msg << pred_text << "(" - << e1 << ", " - << e2 << ") evaluates to false, where" - << "\n" << e1 << " evaluates to " << v1 - << "\n" << e2 << " evaluates to " << v2; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2. -// Don't use this in your code. -#define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\ - GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2),\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED2. Don't use -// this in your code. -#define GTEST_PRED2_(pred, v1, v2, on_failure)\ - GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \ - #v1, \ - #v2, \ - pred, \ - v1, \ - v2), on_failure) - -// Binary predicate assertion macros. -#define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \ - GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED2(pred, v1, v2) \ - GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \ - GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED2(pred, v1, v2) \ - GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_) - - - -// Helper function for implementing {EXPECT|ASSERT}_PRED3. Don't use -// this in your code. -template -AssertionResult AssertPred3Helper(const char* pred_text, - const char* e1, - const char* e2, - const char* e3, - Pred pred, - const T1& v1, - const T2& v2, - const T3& v3) { - if (pred(v1, v2, v3)) return AssertionSuccess(); - - Message msg; - msg << pred_text << "(" - << e1 << ", " - << e2 << ", " - << e3 << ") evaluates to false, where" - << "\n" << e1 << " evaluates to " << v1 - << "\n" << e2 << " evaluates to " << v2 - << "\n" << e3 << " evaluates to " << v3; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3. -// Don't use this in your code. -#define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\ - GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3),\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED3. Don't use -// this in your code. -#define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\ - GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \ - #v1, \ - #v2, \ - #v3, \ - pred, \ - v1, \ - v2, \ - v3), on_failure) - -// Ternary predicate assertion macros. -#define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \ - GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED3(pred, v1, v2, v3) \ - GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \ - GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED3(pred, v1, v2, v3) \ - GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_) - - - -// Helper function for implementing {EXPECT|ASSERT}_PRED4. Don't use -// this in your code. -template -AssertionResult AssertPred4Helper(const char* pred_text, - const char* e1, - const char* e2, - const char* e3, - const char* e4, - Pred pred, - const T1& v1, - const T2& v2, - const T3& v3, - const T4& v4) { - if (pred(v1, v2, v3, v4)) return AssertionSuccess(); - - Message msg; - msg << pred_text << "(" - << e1 << ", " - << e2 << ", " - << e3 << ", " - << e4 << ") evaluates to false, where" - << "\n" << e1 << " evaluates to " << v1 - << "\n" << e2 << " evaluates to " << v2 - << "\n" << e3 << " evaluates to " << v3 - << "\n" << e4 << " evaluates to " << v4; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4. -// Don't use this in your code. -#define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\ - GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4),\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED4. Don't use -// this in your code. -#define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\ - GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \ - #v1, \ - #v2, \ - #v3, \ - #v4, \ - pred, \ - v1, \ - v2, \ - v3, \ - v4), on_failure) - -// 4-ary predicate assertion macros. -#define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ - GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED4(pred, v1, v2, v3, v4) \ - GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ - GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED4(pred, v1, v2, v3, v4) \ - GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) - - - -// Helper function for implementing {EXPECT|ASSERT}_PRED5. Don't use -// this in your code. -template -AssertionResult AssertPred5Helper(const char* pred_text, - const char* e1, - const char* e2, - const char* e3, - const char* e4, - const char* e5, - Pred pred, - const T1& v1, - const T2& v2, - const T3& v3, - const T4& v4, - const T5& v5) { - if (pred(v1, v2, v3, v4, v5)) return AssertionSuccess(); - - Message msg; - msg << pred_text << "(" - << e1 << ", " - << e2 << ", " - << e3 << ", " - << e4 << ", " - << e5 << ") evaluates to false, where" - << "\n" << e1 << " evaluates to " << v1 - << "\n" << e2 << " evaluates to " << v2 - << "\n" << e3 << " evaluates to " << v3 - << "\n" << e4 << " evaluates to " << v4 - << "\n" << e5 << " evaluates to " << v5; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5. -// Don't use this in your code. -#define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\ - GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5),\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED5. Don't use -// this in your code. -#define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\ - GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \ - #v1, \ - #v2, \ - #v3, \ - #v4, \ - #v5, \ - pred, \ - v1, \ - v2, \ - v3, \ - v4, \ - v5), on_failure) - -// 5-ary predicate assertion macros. -#define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ - GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \ - GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ - GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \ - GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) - - - -#endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest_prod.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest_prod.h deleted file mode 100644 index da80ddc6c..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/gtest_prod.h +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// Google C++ Testing Framework definitions useful in production code. - -#ifndef GTEST_INCLUDE_GTEST_GTEST_PROD_H_ -#define GTEST_INCLUDE_GTEST_GTEST_PROD_H_ - -// When you need to test the private or protected members of a class, -// use the FRIEND_TEST macro to declare your tests as friends of the -// class. For example: -// -// class MyClass { -// private: -// void MyMethod(); -// FRIEND_TEST(MyClassTest, MyMethod); -// }; -// -// class MyClassTest : public testing::Test { -// // ... -// }; -// -// TEST_F(MyClassTest, MyMethod) { -// // Can call MyClass::MyMethod() here. -// } - -#define FRIEND_TEST(test_case_name, test_name)\ -friend class test_case_name##_##test_name##_Test - -#endif // GTEST_INCLUDE_GTEST_GTEST_PROD_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-death-test-internal.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-death-test-internal.h deleted file mode 100644 index e4330848d..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-death-test-internal.h +++ /dev/null @@ -1,275 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file defines internal utilities needed for implementing -// death tests. They are subject to change without notice. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ - -#include - -namespace testing { -namespace internal { - -GTEST_DECLARE_string_(internal_run_death_test); - -// Names of the flags (needed for parsing Google Test flags). -const char kDeathTestStyleFlag[] = "death_test_style"; -const char kDeathTestUseFork[] = "death_test_use_fork"; -const char kInternalRunDeathTestFlag[] = "internal_run_death_test"; - -#if GTEST_HAS_DEATH_TEST - -// DeathTest is a class that hides much of the complexity of the -// GTEST_DEATH_TEST_ macro. It is abstract; its static Create method -// returns a concrete class that depends on the prevailing death test -// style, as defined by the --gtest_death_test_style and/or -// --gtest_internal_run_death_test flags. - -// In describing the results of death tests, these terms are used with -// the corresponding definitions: -// -// exit status: The integer exit information in the format specified -// by wait(2) -// exit code: The integer code passed to exit(3), _exit(2), or -// returned from main() -class GTEST_API_ DeathTest { - public: - // Create returns false if there was an error determining the - // appropriate action to take for the current death test; for example, - // if the gtest_death_test_style flag is set to an invalid value. - // The LastMessage method will return a more detailed message in that - // case. Otherwise, the DeathTest pointer pointed to by the "test" - // argument is set. If the death test should be skipped, the pointer - // is set to NULL; otherwise, it is set to the address of a new concrete - // DeathTest object that controls the execution of the current test. - static bool Create(const char* statement, const RE* regex, - const char* file, int line, DeathTest** test); - DeathTest(); - virtual ~DeathTest() { } - - // A helper class that aborts a death test when it's deleted. - class ReturnSentinel { - public: - explicit ReturnSentinel(DeathTest* test) : test_(test) { } - ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); } - private: - DeathTest* const test_; - GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel); - } GTEST_ATTRIBUTE_UNUSED_; - - // An enumeration of possible roles that may be taken when a death - // test is encountered. EXECUTE means that the death test logic should - // be executed immediately. OVERSEE means that the program should prepare - // the appropriate environment for a child process to execute the death - // test, then wait for it to complete. - enum TestRole { OVERSEE_TEST, EXECUTE_TEST }; - - // An enumeration of the two reasons that a test might be aborted. - enum AbortReason { TEST_ENCOUNTERED_RETURN_STATEMENT, TEST_DID_NOT_DIE }; - - // Assumes one of the above roles. - virtual TestRole AssumeRole() = 0; - - // Waits for the death test to finish and returns its status. - virtual int Wait() = 0; - - // Returns true if the death test passed; that is, the test process - // exited during the test, its exit status matches a user-supplied - // predicate, and its stderr output matches a user-supplied regular - // expression. - // The user-supplied predicate may be a macro expression rather - // than a function pointer or functor, or else Wait and Passed could - // be combined. - virtual bool Passed(bool exit_status_ok) = 0; - - // Signals that the death test did not die as expected. - virtual void Abort(AbortReason reason) = 0; - - // Returns a human-readable outcome message regarding the outcome of - // the last death test. - static const char* LastMessage(); - - static void set_last_death_test_message(const String& message); - - private: - // A string containing a description of the outcome of the last death test. - static String last_death_test_message_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(DeathTest); -}; - -// Factory interface for death tests. May be mocked out for testing. -class DeathTestFactory { - public: - virtual ~DeathTestFactory() { } - virtual bool Create(const char* statement, const RE* regex, - const char* file, int line, DeathTest** test) = 0; -}; - -// A concrete DeathTestFactory implementation for normal use. -class DefaultDeathTestFactory : public DeathTestFactory { - public: - virtual bool Create(const char* statement, const RE* regex, - const char* file, int line, DeathTest** test); -}; - -// Returns true if exit_status describes a process that was terminated -// by a signal, or exited normally with a nonzero exit code. -GTEST_API_ bool ExitedUnsuccessfully(int exit_status); - -// This macro is for implementing ASSERT_DEATH*, EXPECT_DEATH*, -// ASSERT_EXIT*, and EXPECT_EXIT*. -#define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (::testing::internal::AlwaysTrue()) { \ - const ::testing::internal::RE& gtest_regex = (regex); \ - ::testing::internal::DeathTest* gtest_dt; \ - if (!::testing::internal::DeathTest::Create(#statement, >est_regex, \ - __FILE__, __LINE__, >est_dt)) { \ - goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ - } \ - if (gtest_dt != NULL) { \ - ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \ - gtest_dt_ptr(gtest_dt); \ - switch (gtest_dt->AssumeRole()) { \ - case ::testing::internal::DeathTest::OVERSEE_TEST: \ - if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \ - goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ - } \ - break; \ - case ::testing::internal::DeathTest::EXECUTE_TEST: { \ - ::testing::internal::DeathTest::ReturnSentinel \ - gtest_sentinel(gtest_dt); \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - gtest_dt->Abort(::testing::internal::DeathTest::TEST_DID_NOT_DIE); \ - break; \ - } \ - } \ - } \ - } else \ - GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__): \ - fail(::testing::internal::DeathTest::LastMessage()) -// The symbol "fail" here expands to something into which a message -// can be streamed. - -// A class representing the parsed contents of the -// --gtest_internal_run_death_test flag, as it existed when -// RUN_ALL_TESTS was called. -class InternalRunDeathTestFlag { - public: - InternalRunDeathTestFlag(const String& a_file, - int a_line, - int an_index, - int a_write_fd) - : file_(a_file), line_(a_line), index_(an_index), - write_fd_(a_write_fd) {} - - ~InternalRunDeathTestFlag() { - if (write_fd_ >= 0) - posix::Close(write_fd_); - } - - String file() const { return file_; } - int line() const { return line_; } - int index() const { return index_; } - int write_fd() const { return write_fd_; } - - private: - String file_; - int line_; - int index_; - int write_fd_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(InternalRunDeathTestFlag); -}; - -// Returns a newly created InternalRunDeathTestFlag object with fields -// initialized from the GTEST_FLAG(internal_run_death_test) flag if -// the flag is specified; otherwise returns NULL. -InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag(); - -#else // GTEST_HAS_DEATH_TEST - -// This macro is used for implementing macros such as -// EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED on systems where -// death tests are not supported. Those macros must compile on such systems -// iff EXPECT_DEATH and ASSERT_DEATH compile with the same parameters on -// systems that support death tests. This allows one to write such a macro -// on a system that does not support death tests and be sure that it will -// compile on a death-test supporting system. -// -// Parameters: -// statement - A statement that a macro such as EXPECT_DEATH would test -// for program termination. This macro has to make sure this -// statement is compiled but not executed, to ensure that -// EXPECT_DEATH_IF_SUPPORTED compiles with a certain -// parameter iff EXPECT_DEATH compiles with it. -// regex - A regex that a macro such as EXPECT_DEATH would use to test -// the output of statement. This parameter has to be -// compiled but not evaluated by this macro, to ensure that -// this macro only accepts expressions that a macro such as -// EXPECT_DEATH would accept. -// terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED -// and a return statement for ASSERT_DEATH_IF_SUPPORTED. -// This ensures that ASSERT_DEATH_IF_SUPPORTED will not -// compile inside functions where ASSERT_DEATH doesn't -// compile. -// -// The branch that has an always false condition is used to ensure that -// statement and regex are compiled (and thus syntactically correct) but -// never executed. The unreachable code macro protects the terminator -// statement from generating an 'unreachable code' warning in case -// statement unconditionally returns or throws. The Message constructor at -// the end allows the syntax of streaming additional messages into the -// macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH. -#define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (::testing::internal::AlwaysTrue()) { \ - GTEST_LOG_(WARNING) \ - << "Death tests are not supported on this platform.\n" \ - << "Statement '" #statement "' cannot be verified."; \ - } else if (::testing::internal::AlwaysFalse()) { \ - ::testing::internal::RE::PartialMatch(".*", (regex)); \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - terminator; \ - } else \ - ::testing::Message() - -#endif // GTEST_HAS_DEATH_TEST - -} // namespace internal -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-filepath.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-filepath.h deleted file mode 100644 index 4b76d7950..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-filepath.h +++ /dev/null @@ -1,210 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: keith.ray@gmail.com (Keith Ray) -// -// Google Test filepath utilities -// -// This header file declares classes and functions used internally by -// Google Test. They are subject to change without notice. -// -// This file is #included in . -// Do not include this header file separately! - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ - -#include - -namespace testing { -namespace internal { - -// FilePath - a class for file and directory pathname manipulation which -// handles platform-specific conventions (like the pathname separator). -// Used for helper functions for naming files in a directory for xml output. -// Except for Set methods, all methods are const or static, which provides an -// "immutable value object" -- useful for peace of mind. -// A FilePath with a value ending in a path separator ("like/this/") represents -// a directory, otherwise it is assumed to represent a file. In either case, -// it may or may not represent an actual file or directory in the file system. -// Names are NOT checked for syntax correctness -- no checking for illegal -// characters, malformed paths, etc. - -class GTEST_API_ FilePath { - public: - FilePath() : pathname_("") { } - FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } - - explicit FilePath(const char* pathname) : pathname_(pathname) { - Normalize(); - } - - explicit FilePath(const String& pathname) : pathname_(pathname) { - Normalize(); - } - - FilePath& operator=(const FilePath& rhs) { - Set(rhs); - return *this; - } - - void Set(const FilePath& rhs) { - pathname_ = rhs.pathname_; - } - - String ToString() const { return pathname_; } - const char* c_str() const { return pathname_.c_str(); } - - // Returns the current working directory, or "" if unsuccessful. - static FilePath GetCurrentDir(); - - // Given directory = "dir", base_name = "test", number = 0, - // extension = "xml", returns "dir/test.xml". If number is greater - // than zero (e.g., 12), returns "dir/test_12.xml". - // On Windows platform, uses \ as the separator rather than /. - static FilePath MakeFileName(const FilePath& directory, - const FilePath& base_name, - int number, - const char* extension); - - // Given directory = "dir", relative_path = "test.xml", - // returns "dir/test.xml". - // On Windows, uses \ as the separator rather than /. - static FilePath ConcatPaths(const FilePath& directory, - const FilePath& relative_path); - - // Returns a pathname for a file that does not currently exist. The pathname - // will be directory/base_name.extension or - // directory/base_name_.extension if directory/base_name.extension - // already exists. The number will be incremented until a pathname is found - // that does not already exist. - // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. - // There could be a race condition if two or more processes are calling this - // function at the same time -- they could both pick the same filename. - static FilePath GenerateUniqueFileName(const FilePath& directory, - const FilePath& base_name, - const char* extension); - - // Returns true iff the path is NULL or "". - bool IsEmpty() const { return c_str() == NULL || *c_str() == '\0'; } - - // If input name has a trailing separator character, removes it and returns - // the name, otherwise return the name string unmodified. - // On Windows platform, uses \ as the separator, other platforms use /. - FilePath RemoveTrailingPathSeparator() const; - - // Returns a copy of the FilePath with the directory part removed. - // Example: FilePath("path/to/file").RemoveDirectoryName() returns - // FilePath("file"). If there is no directory part ("just_a_file"), it returns - // the FilePath unmodified. If there is no file part ("just_a_dir/") it - // returns an empty FilePath (""). - // On Windows platform, '\' is the path separator, otherwise it is '/'. - FilePath RemoveDirectoryName() const; - - // RemoveFileName returns the directory path with the filename removed. - // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". - // If the FilePath is "a_file" or "/a_file", RemoveFileName returns - // FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does - // not have a file, like "just/a/dir/", it returns the FilePath unmodified. - // On Windows platform, '\' is the path separator, otherwise it is '/'. - FilePath RemoveFileName() const; - - // Returns a copy of the FilePath with the case-insensitive extension removed. - // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns - // FilePath("dir/file"). If a case-insensitive extension is not - // found, returns a copy of the original FilePath. - FilePath RemoveExtension(const char* extension) const; - - // Creates directories so that path exists. Returns true if successful or if - // the directories already exist; returns false if unable to create - // directories for any reason. Will also return false if the FilePath does - // not represent a directory (that is, it doesn't end with a path separator). - bool CreateDirectoriesRecursively() const; - - // Create the directory so that path exists. Returns true if successful or - // if the directory already exists; returns false if unable to create the - // directory for any reason, including if the parent directory does not - // exist. Not named "CreateDirectory" because that's a macro on Windows. - bool CreateFolder() const; - - // Returns true if FilePath describes something in the file-system, - // either a file, directory, or whatever, and that something exists. - bool FileOrDirectoryExists() const; - - // Returns true if pathname describes a directory in the file-system - // that exists. - bool DirectoryExists() const; - - // Returns true if FilePath ends with a path separator, which indicates that - // it is intended to represent a directory. Returns false otherwise. - // This does NOT check that a directory (or file) actually exists. - bool IsDirectory() const; - - // Returns true if pathname describes a root directory. (Windows has one - // root directory per disk drive.) - bool IsRootDirectory() const; - - // Returns true if pathname describes an absolute path. - bool IsAbsolutePath() const; - - private: - // Replaces multiple consecutive separators with a single separator. - // For example, "bar///foo" becomes "bar/foo". Does not eliminate other - // redundancies that might be in a pathname involving "." or "..". - // - // A pathname with multiple consecutive separators may occur either through - // user error or as a result of some scripts or APIs that generate a pathname - // with a trailing separator. On other platforms the same API or script - // may NOT generate a pathname with a trailing "/". Then elsewhere that - // pathname may have another "/" and pathname components added to it, - // without checking for the separator already being there. - // The script language and operating system may allow paths like "foo//bar" - // but some of the functions in FilePath will not handle that correctly. In - // particular, RemoveTrailingPathSeparator() only removes one separator, and - // it is called in CreateDirectoriesRecursively() assuming that it will change - // a pathname from directory syntax (trailing separator) to filename syntax. - // - // On Windows this method also replaces the alternate path separator '/' with - // the primary path separator '\\', so that for example "bar\\/\\foo" becomes - // "bar\\foo". - - void Normalize(); - - // Returns a pointer to the last occurence of a valid path separator in - // the FilePath. On Windows, for example, both '/' and '\' are valid path - // separators. Returns NULL if no path separator was found. - const char* FindLastPathSeparator() const; - - String pathname_; -}; // class FilePath - -} // namespace internal -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-internal.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-internal.h deleted file mode 100644 index 31a66e99d..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-internal.h +++ /dev/null @@ -1,923 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file declares functions and macros used internally by -// Google Test. They are subject to change without notice. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ - -#include - -#if GTEST_OS_LINUX -#include -#include -#include -#include -#endif // GTEST_OS_LINUX - -#include -#include -#include -#include -#include - -#include -#include -#include - -// Due to C++ preprocessor weirdness, we need double indirection to -// concatenate two tokens when one of them is __LINE__. Writing -// -// foo ## __LINE__ -// -// will result in the token foo__LINE__, instead of foo followed by -// the current line number. For more details, see -// http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6 -#define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar) -#define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar - -// Google Test defines the testing::Message class to allow construction of -// test messages via the << operator. The idea is that anything -// streamable to std::ostream can be streamed to a testing::Message. -// This allows a user to use his own types in Google Test assertions by -// overloading the << operator. -// -// util/gtl/stl_logging-inl.h overloads << for STL containers. These -// overloads cannot be defined in the std namespace, as that will be -// undefined behavior. Therefore, they are defined in the global -// namespace instead. -// -// C++'s symbol lookup rule (i.e. Koenig lookup) says that these -// overloads are visible in either the std namespace or the global -// namespace, but not other namespaces, including the testing -// namespace which Google Test's Message class is in. -// -// To allow STL containers (and other types that has a << operator -// defined in the global namespace) to be used in Google Test assertions, -// testing::Message must access the custom << operator from the global -// namespace. Hence this helper function. -// -// Note: Jeffrey Yasskin suggested an alternative fix by "using -// ::operator<<;" in the definition of Message's operator<<. That fix -// doesn't require a helper function, but unfortunately doesn't -// compile with MSVC. -template -inline void GTestStreamToHelper(std::ostream* os, const T& val) { - *os << val; -} - -namespace testing { - -// Forward declaration of classes. - -class AssertionResult; // Result of an assertion. -class Message; // Represents a failure message. -class Test; // Represents a test. -class TestInfo; // Information about a test. -class TestPartResult; // Result of a test part. -class UnitTest; // A collection of test cases. - -namespace internal { - -struct TraceInfo; // Information about a trace point. -class ScopedTrace; // Implements scoped trace. -class TestInfoImpl; // Opaque implementation of TestInfo -class UnitTestImpl; // Opaque implementation of UnitTest - -// How many times InitGoogleTest() has been called. -extern int g_init_gtest_count; - -// The text used in failure messages to indicate the start of the -// stack trace. -GTEST_API_ extern const char kStackTraceMarker[]; - -// A secret type that Google Test users don't know about. It has no -// definition on purpose. Therefore it's impossible to create a -// Secret object, which is what we want. -class Secret; - -// Two overloaded helpers for checking at compile time whether an -// expression is a null pointer literal (i.e. NULL or any 0-valued -// compile-time integral constant). Their return values have -// different sizes, so we can use sizeof() to test which version is -// picked by the compiler. These helpers have no implementations, as -// we only need their signatures. -// -// Given IsNullLiteralHelper(x), the compiler will pick the first -// version if x can be implicitly converted to Secret*, and pick the -// second version otherwise. Since Secret is a secret and incomplete -// type, the only expression a user can write that has type Secret* is -// a null pointer literal. Therefore, we know that x is a null -// pointer literal if and only if the first version is picked by the -// compiler. -char IsNullLiteralHelper(Secret* p); -char (&IsNullLiteralHelper(...))[2]; // NOLINT - -// A compile-time bool constant that is true if and only if x is a -// null pointer literal (i.e. NULL or any 0-valued compile-time -// integral constant). -#ifdef GTEST_ELLIPSIS_NEEDS_POD_ -// We lose support for NULL detection where the compiler doesn't like -// passing non-POD classes through ellipsis (...). -#define GTEST_IS_NULL_LITERAL_(x) false -#else -#define GTEST_IS_NULL_LITERAL_(x) \ - (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1) -#endif // GTEST_ELLIPSIS_NEEDS_POD_ - -// Appends the user-supplied message to the Google-Test-generated message. -GTEST_API_ String AppendUserMessage(const String& gtest_msg, - const Message& user_msg); - -// A helper class for creating scoped traces in user programs. -class GTEST_API_ ScopedTrace { - public: - // The c'tor pushes the given source file location and message onto - // a trace stack maintained by Google Test. - ScopedTrace(const char* file, int line, const Message& message); - - // The d'tor pops the info pushed by the c'tor. - // - // Note that the d'tor is not virtual in order to be efficient. - // Don't inherit from ScopedTrace! - ~ScopedTrace(); - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace); -} GTEST_ATTRIBUTE_UNUSED_; // A ScopedTrace object does its job in its - // c'tor and d'tor. Therefore it doesn't - // need to be used otherwise. - -// Converts a streamable value to a String. A NULL pointer is -// converted to "(null)". When the input value is a ::string, -// ::std::string, ::wstring, or ::std::wstring object, each NUL -// character in it is replaced with "\\0". -// Declared here but defined in gtest.h, so that it has access -// to the definition of the Message class, required by the ARM -// compiler. -template -String StreamableToString(const T& streamable); - -// Formats a value to be used in a failure message. - -#ifdef GTEST_NEEDS_IS_POINTER_ - -// These are needed as the Nokia Symbian and IBM XL C/C++ compilers -// cannot decide between const T& and const T* in a function template. -// These compilers _can_ decide between class template specializations -// for T and T*, so a tr1::type_traits-like is_pointer works, and we -// can overload on that. - -// This overload makes sure that all pointers (including -// those to char or wchar_t) are printed as raw pointers. -template -inline String FormatValueForFailureMessage(internal::true_type /*dummy*/, - T* pointer) { - return StreamableToString(static_cast(pointer)); -} - -template -inline String FormatValueForFailureMessage(internal::false_type /*dummy*/, - const T& value) { - return StreamableToString(value); -} - -template -inline String FormatForFailureMessage(const T& value) { - return FormatValueForFailureMessage( - typename internal::is_pointer::type(), value); -} - -#else - -// These are needed as the above solution using is_pointer has the -// limitation that T cannot be a type without external linkage, when -// compiled using MSVC. - -template -inline String FormatForFailureMessage(const T& value) { - return StreamableToString(value); -} - -// This overload makes sure that all pointers (including -// those to char or wchar_t) are printed as raw pointers. -template -inline String FormatForFailureMessage(T* pointer) { - return StreamableToString(static_cast(pointer)); -} - -#endif // GTEST_NEEDS_IS_POINTER_ - -// These overloaded versions handle narrow and wide characters. -GTEST_API_ String FormatForFailureMessage(char ch); -GTEST_API_ String FormatForFailureMessage(wchar_t wchar); - -// When this operand is a const char* or char*, and the other operand -// is a ::std::string or ::string, we print this operand as a C string -// rather than a pointer. We do the same for wide strings. - -// This internal macro is used to avoid duplicated code. -#define GTEST_FORMAT_IMPL_(operand2_type, operand1_printer)\ -inline String FormatForComparisonFailureMessage(\ - operand2_type::value_type* str, const operand2_type& /*operand2*/) {\ - return operand1_printer(str);\ -}\ -inline String FormatForComparisonFailureMessage(\ - const operand2_type::value_type* str, const operand2_type& /*operand2*/) {\ - return operand1_printer(str);\ -} - -GTEST_FORMAT_IMPL_(::std::string, String::ShowCStringQuoted) -#if GTEST_HAS_STD_WSTRING -GTEST_FORMAT_IMPL_(::std::wstring, String::ShowWideCStringQuoted) -#endif // GTEST_HAS_STD_WSTRING - -#if GTEST_HAS_GLOBAL_STRING -GTEST_FORMAT_IMPL_(::string, String::ShowCStringQuoted) -#endif // GTEST_HAS_GLOBAL_STRING -#if GTEST_HAS_GLOBAL_WSTRING -GTEST_FORMAT_IMPL_(::wstring, String::ShowWideCStringQuoted) -#endif // GTEST_HAS_GLOBAL_WSTRING - -#undef GTEST_FORMAT_IMPL_ - -// Constructs and returns the message for an equality assertion -// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. -// -// The first four parameters are the expressions used in the assertion -// and their values, as strings. For example, for ASSERT_EQ(foo, bar) -// where foo is 5 and bar is 6, we have: -// -// expected_expression: "foo" -// actual_expression: "bar" -// expected_value: "5" -// actual_value: "6" -// -// The ignoring_case parameter is true iff the assertion is a -// *_STRCASEEQ*. When it's true, the string " (ignoring case)" will -// be inserted into the message. -GTEST_API_ AssertionResult EqFailure(const char* expected_expression, - const char* actual_expression, - const String& expected_value, - const String& actual_value, - bool ignoring_case); - -// Constructs a failure message for Boolean assertions such as EXPECT_TRUE. -GTEST_API_ String GetBoolAssertionFailureMessage( - const AssertionResult& assertion_result, - const char* expression_text, - const char* actual_predicate_value, - const char* expected_predicate_value); - -// This template class represents an IEEE floating-point number -// (either single-precision or double-precision, depending on the -// template parameters). -// -// The purpose of this class is to do more sophisticated number -// comparison. (Due to round-off error, etc, it's very unlikely that -// two floating-points will be equal exactly. Hence a naive -// comparison by the == operation often doesn't work.) -// -// Format of IEEE floating-point: -// -// The most-significant bit being the leftmost, an IEEE -// floating-point looks like -// -// sign_bit exponent_bits fraction_bits -// -// Here, sign_bit is a single bit that designates the sign of the -// number. -// -// For float, there are 8 exponent bits and 23 fraction bits. -// -// For double, there are 11 exponent bits and 52 fraction bits. -// -// More details can be found at -// http://en.wikipedia.org/wiki/IEEE_floating-point_standard. -// -// Template parameter: -// -// RawType: the raw floating-point type (either float or double) -template -class FloatingPoint { - public: - // Defines the unsigned integer type that has the same size as the - // floating point number. - typedef typename TypeWithSize::UInt Bits; - - // Constants. - - // # of bits in a number. - static const size_t kBitCount = 8*sizeof(RawType); - - // # of fraction bits in a number. - static const size_t kFractionBitCount = - std::numeric_limits::digits - 1; - - // # of exponent bits in a number. - static const size_t kExponentBitCount = kBitCount - 1 - kFractionBitCount; - - // The mask for the sign bit. - static const Bits kSignBitMask = static_cast(1) << (kBitCount - 1); - - // The mask for the fraction bits. - static const Bits kFractionBitMask = - ~static_cast(0) >> (kExponentBitCount + 1); - - // The mask for the exponent bits. - static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask); - - // How many ULP's (Units in the Last Place) we want to tolerate when - // comparing two numbers. The larger the value, the more error we - // allow. A 0 value means that two numbers must be exactly the same - // to be considered equal. - // - // The maximum error of a single floating-point operation is 0.5 - // units in the last place. On Intel CPU's, all floating-point - // calculations are done with 80-bit precision, while double has 64 - // bits. Therefore, 4 should be enough for ordinary use. - // - // See the following article for more details on ULP: - // http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm. - static const size_t kMaxUlps = 4; - - // Constructs a FloatingPoint from a raw floating-point number. - // - // On an Intel CPU, passing a non-normalized NAN (Not a Number) - // around may change its bits, although the new value is guaranteed - // to be also a NAN. Therefore, don't expect this constructor to - // preserve the bits in x when x is a NAN. - explicit FloatingPoint(const RawType& x) { u_.value_ = x; } - - // Static methods - - // Reinterprets a bit pattern as a floating-point number. - // - // This function is needed to test the AlmostEquals() method. - static RawType ReinterpretBits(const Bits bits) { - FloatingPoint fp(0); - fp.u_.bits_ = bits; - return fp.u_.value_; - } - - // Returns the floating-point number that represent positive infinity. - static RawType Infinity() { - return ReinterpretBits(kExponentBitMask); - } - - // Non-static methods - - // Returns the bits that represents this number. - const Bits &bits() const { return u_.bits_; } - - // Returns the exponent bits of this number. - Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } - - // Returns the fraction bits of this number. - Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } - - // Returns the sign bit of this number. - Bits sign_bit() const { return kSignBitMask & u_.bits_; } - - // Returns true iff this is NAN (not a number). - bool is_nan() const { - // It's a NAN if the exponent bits are all ones and the fraction - // bits are not entirely zeros. - return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0); - } - - // Returns true iff this number is at most kMaxUlps ULP's away from - // rhs. In particular, this function: - // - // - returns false if either number is (or both are) NAN. - // - treats really large numbers as almost equal to infinity. - // - thinks +0.0 and -0.0 are 0 DLP's apart. - bool AlmostEquals(const FloatingPoint& rhs) const { - // The IEEE standard says that any comparison operation involving - // a NAN must return false. - if (is_nan() || rhs.is_nan()) return false; - - return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) - <= kMaxUlps; - } - - private: - // The data type used to store the actual floating-point number. - union FloatingPointUnion { - RawType value_; // The raw floating-point number. - Bits bits_; // The bits that represent the number. - }; - - // Converts an integer from the sign-and-magnitude representation to - // the biased representation. More precisely, let N be 2 to the - // power of (kBitCount - 1), an integer x is represented by the - // unsigned number x + N. - // - // For instance, - // - // -N + 1 (the most negative number representable using - // sign-and-magnitude) is represented by 1; - // 0 is represented by N; and - // N - 1 (the biggest number representable using - // sign-and-magnitude) is represented by 2N - 1. - // - // Read http://en.wikipedia.org/wiki/Signed_number_representations - // for more details on signed number representations. - static Bits SignAndMagnitudeToBiased(const Bits &sam) { - if (kSignBitMask & sam) { - // sam represents a negative number. - return ~sam + 1; - } else { - // sam represents a positive number. - return kSignBitMask | sam; - } - } - - // Given two numbers in the sign-and-magnitude representation, - // returns the distance between them as an unsigned number. - static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits &sam1, - const Bits &sam2) { - const Bits biased1 = SignAndMagnitudeToBiased(sam1); - const Bits biased2 = SignAndMagnitudeToBiased(sam2); - return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1); - } - - FloatingPointUnion u_; -}; - -// Typedefs the instances of the FloatingPoint template class that we -// care to use. -typedef FloatingPoint Float; -typedef FloatingPoint Double; - -// In order to catch the mistake of putting tests that use different -// test fixture classes in the same test case, we need to assign -// unique IDs to fixture classes and compare them. The TypeId type is -// used to hold such IDs. The user should treat TypeId as an opaque -// type: the only operation allowed on TypeId values is to compare -// them for equality using the == operator. -typedef const void* TypeId; - -template -class TypeIdHelper { - public: - // dummy_ must not have a const type. Otherwise an overly eager - // compiler (e.g. MSVC 7.1 & 8.0) may try to merge - // TypeIdHelper::dummy_ for different Ts as an "optimization". - static bool dummy_; -}; - -template -bool TypeIdHelper::dummy_ = false; - -// GetTypeId() returns the ID of type T. Different values will be -// returned for different types. Calling the function twice with the -// same type argument is guaranteed to return the same ID. -template -TypeId GetTypeId() { - // The compiler is required to allocate a different - // TypeIdHelper::dummy_ variable for each T used to instantiate - // the template. Therefore, the address of dummy_ is guaranteed to - // be unique. - return &(TypeIdHelper::dummy_); -} - -// Returns the type ID of ::testing::Test. Always call this instead -// of GetTypeId< ::testing::Test>() to get the type ID of -// ::testing::Test, as the latter may give the wrong result due to a -// suspected linker bug when compiling Google Test as a Mac OS X -// framework. -GTEST_API_ TypeId GetTestTypeId(); - -// Defines the abstract factory interface that creates instances -// of a Test object. -class TestFactoryBase { - public: - virtual ~TestFactoryBase() {} - - // Creates a test instance to run. The instance is both created and destroyed - // within TestInfoImpl::Run() - virtual Test* CreateTest() = 0; - - protected: - TestFactoryBase() {} - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase); -}; - -// This class provides implementation of TeastFactoryBase interface. -// It is used in TEST and TEST_F macros. -template -class TestFactoryImpl : public TestFactoryBase { - public: - virtual Test* CreateTest() { return new TestClass; } -}; - -#if GTEST_OS_WINDOWS - -// Predicate-formatters for implementing the HRESULT checking macros -// {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED} -// We pass a long instead of HRESULT to avoid causing an -// include dependency for the HRESULT type. -GTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr, - long hr); // NOLINT -GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr, - long hr); // NOLINT - -#endif // GTEST_OS_WINDOWS - -// Formats a source file path and a line number as they would appear -// in a compiler error message. -inline String FormatFileLocation(const char* file, int line) { - const char* const file_name = file == NULL ? "unknown file" : file; - if (line < 0) { - return String::Format("%s:", file_name); - } -#ifdef _MSC_VER - return String::Format("%s(%d):", file_name, line); -#else - return String::Format("%s:%d:", file_name, line); -#endif // _MSC_VER -} - -// Types of SetUpTestCase() and TearDownTestCase() functions. -typedef void (*SetUpTestCaseFunc)(); -typedef void (*TearDownTestCaseFunc)(); - -// Creates a new TestInfo object and registers it with Google Test; -// returns the created object. -// -// Arguments: -// -// test_case_name: name of the test case -// name: name of the test -// test_case_comment: a comment on the test case that will be included in -// the test output -// comment: a comment on the test that will be included in the -// test output -// fixture_class_id: ID of the test fixture class -// set_up_tc: pointer to the function that sets up the test case -// tear_down_tc: pointer to the function that tears down the test case -// factory: pointer to the factory that creates a test object. -// The newly created TestInfo instance will assume -// ownership of the factory object. -GTEST_API_ TestInfo* MakeAndRegisterTestInfo( - const char* test_case_name, const char* name, - const char* test_case_comment, const char* comment, - TypeId fixture_class_id, - SetUpTestCaseFunc set_up_tc, - TearDownTestCaseFunc tear_down_tc, - TestFactoryBase* factory); - -// If *pstr starts with the given prefix, modifies *pstr to be right -// past the prefix and returns true; otherwise leaves *pstr unchanged -// and returns false. None of pstr, *pstr, and prefix can be NULL. -bool SkipPrefix(const char* prefix, const char** pstr); - -#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P - -// State of the definition of a type-parameterized test case. -class GTEST_API_ TypedTestCasePState { - public: - TypedTestCasePState() : registered_(false) {} - - // Adds the given test name to defined_test_names_ and return true - // if the test case hasn't been registered; otherwise aborts the - // program. - bool AddTestName(const char* file, int line, const char* case_name, - const char* test_name) { - if (registered_) { - fprintf(stderr, "%s Test %s must be defined before " - "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n", - FormatFileLocation(file, line).c_str(), test_name, case_name); - fflush(stderr); - posix::Abort(); - } - defined_test_names_.insert(test_name); - return true; - } - - // Verifies that registered_tests match the test names in - // defined_test_names_; returns registered_tests if successful, or - // aborts the program otherwise. - const char* VerifyRegisteredTestNames( - const char* file, int line, const char* registered_tests); - - private: - bool registered_; - ::std::set defined_test_names_; -}; - -// Skips to the first non-space char after the first comma in 'str'; -// returns NULL if no comma is found in 'str'. -inline const char* SkipComma(const char* str) { - const char* comma = strchr(str, ','); - if (comma == NULL) { - return NULL; - } - while (isspace(*(++comma))) {} - return comma; -} - -// Returns the prefix of 'str' before the first comma in it; returns -// the entire string if it contains no comma. -inline String GetPrefixUntilComma(const char* str) { - const char* comma = strchr(str, ','); - return comma == NULL ? String(str) : String(str, comma - str); -} - -// TypeParameterizedTest::Register() -// registers a list of type-parameterized tests with Google Test. The -// return value is insignificant - we just need to return something -// such that we can call this function in a namespace scope. -// -// Implementation note: The GTEST_TEMPLATE_ macro declares a template -// template parameter. It's defined in gtest-type-util.h. -template -class TypeParameterizedTest { - public: - // 'index' is the index of the test in the type list 'Types' - // specified in INSTANTIATE_TYPED_TEST_CASE_P(Prefix, TestCase, - // Types). Valid values for 'index' are [0, N - 1] where N is the - // length of Types. - static bool Register(const char* prefix, const char* case_name, - const char* test_names, int index) { - typedef typename Types::Head Type; - typedef Fixture FixtureClass; - typedef typename GTEST_BIND_(TestSel, Type) TestClass; - - // First, registers the first type-parameterized test in the type - // list. - MakeAndRegisterTestInfo( - String::Format("%s%s%s/%d", prefix, prefix[0] == '\0' ? "" : "/", - case_name, index).c_str(), - GetPrefixUntilComma(test_names).c_str(), - String::Format("TypeParam = %s", GetTypeName().c_str()).c_str(), - "", - GetTypeId(), - TestClass::SetUpTestCase, - TestClass::TearDownTestCase, - new TestFactoryImpl); - - // Next, recurses (at compile time) with the tail of the type list. - return TypeParameterizedTest - ::Register(prefix, case_name, test_names, index + 1); - } -}; - -// The base case for the compile time recursion. -template -class TypeParameterizedTest { - public: - static bool Register(const char* /*prefix*/, const char* /*case_name*/, - const char* /*test_names*/, int /*index*/) { - return true; - } -}; - -// TypeParameterizedTestCase::Register() -// registers *all combinations* of 'Tests' and 'Types' with Google -// Test. The return value is insignificant - we just need to return -// something such that we can call this function in a namespace scope. -template -class TypeParameterizedTestCase { - public: - static bool Register(const char* prefix, const char* case_name, - const char* test_names) { - typedef typename Tests::Head Head; - - // First, register the first test in 'Test' for each type in 'Types'. - TypeParameterizedTest::Register( - prefix, case_name, test_names, 0); - - // Next, recurses (at compile time) with the tail of the test list. - return TypeParameterizedTestCase - ::Register(prefix, case_name, SkipComma(test_names)); - } -}; - -// The base case for the compile time recursion. -template -class TypeParameterizedTestCase { - public: - static bool Register(const char* /*prefix*/, const char* /*case_name*/, - const char* /*test_names*/) { - return true; - } -}; - -#endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P - -// Returns the current OS stack trace as a String. -// -// The maximum number of stack frames to be included is specified by -// the gtest_stack_trace_depth flag. The skip_count parameter -// specifies the number of top frames to be skipped, which doesn't -// count against the number of frames to be included. -// -// For example, if Foo() calls Bar(), which in turn calls -// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in -// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. -GTEST_API_ String GetCurrentOsStackTraceExceptTop(UnitTest* unit_test, - int skip_count); - -// Helpers for suppressing warnings on unreachable code or constant -// condition. - -// Always returns true. -GTEST_API_ bool AlwaysTrue(); - -// Always returns false. -inline bool AlwaysFalse() { return !AlwaysTrue(); } - -// A simple Linear Congruential Generator for generating random -// numbers with a uniform distribution. Unlike rand() and srand(), it -// doesn't use global state (and therefore can't interfere with user -// code). Unlike rand_r(), it's portable. An LCG isn't very random, -// but it's good enough for our purposes. -class GTEST_API_ Random { - public: - static const UInt32 kMaxRange = 1u << 31; - - explicit Random(UInt32 seed) : state_(seed) {} - - void Reseed(UInt32 seed) { state_ = seed; } - - // Generates a random number from [0, range). Crashes if 'range' is - // 0 or greater than kMaxRange. - UInt32 Generate(UInt32 range); - - private: - UInt32 state_; - GTEST_DISALLOW_COPY_AND_ASSIGN_(Random); -}; - -} // namespace internal -} // namespace testing - -#define GTEST_MESSAGE_(message, result_type) \ - ::testing::internal::AssertHelper(result_type, __FILE__, __LINE__, message) \ - = ::testing::Message() - -#define GTEST_FATAL_FAILURE_(message) \ - return GTEST_MESSAGE_(message, ::testing::TestPartResult::kFatalFailure) - -#define GTEST_NONFATAL_FAILURE_(message) \ - GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure) - -#define GTEST_SUCCESS_(message) \ - GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess) - -// Suppresses MSVC warnings 4072 (unreachable code) for the code following -// statement if it returns or throws (or doesn't return or throw in some -// situations). -#define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \ - if (::testing::internal::AlwaysTrue()) { statement; } - -#define GTEST_TEST_THROW_(statement, expected_exception, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const char* gtest_msg = "") { \ - bool gtest_caught_expected = false; \ - try { \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - } \ - catch (expected_exception const&) { \ - gtest_caught_expected = true; \ - } \ - catch (...) { \ - gtest_msg = "Expected: " #statement " throws an exception of type " \ - #expected_exception ".\n Actual: it throws a different " \ - "type."; \ - goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ - } \ - if (!gtest_caught_expected) { \ - gtest_msg = "Expected: " #statement " throws an exception of type " \ - #expected_exception ".\n Actual: it throws nothing."; \ - goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ - } \ - } else \ - GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__): \ - fail(gtest_msg) - -#define GTEST_TEST_NO_THROW_(statement, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const char* gtest_msg = "") { \ - try { \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - } \ - catch (...) { \ - gtest_msg = "Expected: " #statement " doesn't throw an exception.\n" \ - " Actual: it throws."; \ - goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \ - } \ - } else \ - GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \ - fail(gtest_msg) - -#define GTEST_TEST_ANY_THROW_(statement, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const char* gtest_msg = "") { \ - bool gtest_caught_any = false; \ - try { \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - } \ - catch (...) { \ - gtest_caught_any = true; \ - } \ - if (!gtest_caught_any) { \ - gtest_msg = "Expected: " #statement " throws an exception.\n" \ - " Actual: it doesn't."; \ - goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \ - } \ - } else \ - GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \ - fail(gtest_msg) - - -// Implements Boolean test assertions such as EXPECT_TRUE. expression can be -// either a boolean expression or an AssertionResult. text is a textual -// represenation of expression as it was passed into the EXPECT_TRUE. -#define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const ::testing::AssertionResult gtest_ar_ = \ - ::testing::AssertionResult(expression)) \ - ; \ - else \ - fail(::testing::internal::GetBoolAssertionFailureMessage(\ - gtest_ar_, text, #actual, #expected).c_str()) - -#define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (const char* gtest_msg = "") { \ - ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \ - GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ - if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \ - gtest_msg = "Expected: " #statement " doesn't generate new fatal " \ - "failures in the current thread.\n" \ - " Actual: it does."; \ - goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \ - } \ - } else \ - GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \ - fail(gtest_msg) - -// Expands to the name of the class that implements the given test. -#define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ - test_case_name##_##test_name##_Test - -// Helper macro for defining tests. -#define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\ -class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\ - public:\ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\ - private:\ - virtual void TestBody();\ - static ::testing::TestInfo* const test_info_;\ - GTEST_DISALLOW_COPY_AND_ASSIGN_(\ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\ -};\ -\ -::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\ - ::test_info_ =\ - ::testing::internal::MakeAndRegisterTestInfo(\ - #test_case_name, #test_name, "", "", \ - (parent_id), \ - parent_class::SetUpTestCase, \ - parent_class::TearDownTestCase, \ - new ::testing::internal::TestFactoryImpl<\ - GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>);\ -void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-linked_ptr.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-linked_ptr.h deleted file mode 100644 index 540ef4cd4..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-linked_ptr.h +++ /dev/null @@ -1,242 +0,0 @@ -// Copyright 2003 Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: Dan Egnor (egnor@google.com) -// -// A "smart" pointer type with reference tracking. Every pointer to a -// particular object is kept on a circular linked list. When the last pointer -// to an object is destroyed or reassigned, the object is deleted. -// -// Used properly, this deletes the object when the last reference goes away. -// There are several caveats: -// - Like all reference counting schemes, cycles lead to leaks. -// - Each smart pointer is actually two pointers (8 bytes instead of 4). -// - Every time a pointer is assigned, the entire list of pointers to that -// object is traversed. This class is therefore NOT SUITABLE when there -// will often be more than two or three pointers to a particular object. -// - References are only tracked as long as linked_ptr<> objects are copied. -// If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS -// will happen (double deletion). -// -// A good use of this class is storing object references in STL containers. -// You can safely put linked_ptr<> in a vector<>. -// Other uses may not be as good. -// -// Note: If you use an incomplete type with linked_ptr<>, the class -// *containing* linked_ptr<> must have a constructor and destructor (even -// if they do nothing!). -// -// Bill Gibbons suggested we use something like this. -// -// Thread Safety: -// Unlike other linked_ptr implementations, in this implementation -// a linked_ptr object is thread-safe in the sense that: -// - it's safe to copy linked_ptr objects concurrently, -// - it's safe to copy *from* a linked_ptr and read its underlying -// raw pointer (e.g. via get()) concurrently, and -// - it's safe to write to two linked_ptrs that point to the same -// shared object concurrently. -// TODO(wan@google.com): rename this to safe_linked_ptr to avoid -// confusion with normal linked_ptr. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ - -#include -#include - -#include - -namespace testing { -namespace internal { - -// Protects copying of all linked_ptr objects. -GTEST_API_ GTEST_DECLARE_STATIC_MUTEX_(g_linked_ptr_mutex); - -// This is used internally by all instances of linked_ptr<>. It needs to be -// a non-template class because different types of linked_ptr<> can refer to -// the same object (linked_ptr(obj) vs linked_ptr(obj)). -// So, it needs to be possible for different types of linked_ptr to participate -// in the same circular linked list, so we need a single class type here. -// -// DO NOT USE THIS CLASS DIRECTLY YOURSELF. Use linked_ptr. -class linked_ptr_internal { - public: - // Create a new circle that includes only this instance. - void join_new() { - next_ = this; - } - - // Many linked_ptr operations may change p.link_ for some linked_ptr - // variable p in the same circle as this object. Therefore we need - // to prevent two such operations from occurring concurrently. - // - // Note that different types of linked_ptr objects can coexist in a - // circle (e.g. linked_ptr, linked_ptr, and - // linked_ptr). Therefore we must use a single mutex to - // protect all linked_ptr objects. This can create serious - // contention in production code, but is acceptable in a testing - // framework. - - // Join an existing circle. - // L < g_linked_ptr_mutex - void join(linked_ptr_internal const* ptr) { - MutexLock lock(&g_linked_ptr_mutex); - - linked_ptr_internal const* p = ptr; - while (p->next_ != ptr) p = p->next_; - p->next_ = this; - next_ = ptr; - } - - // Leave whatever circle we're part of. Returns true if we were the - // last member of the circle. Once this is done, you can join() another. - // L < g_linked_ptr_mutex - bool depart() { - MutexLock lock(&g_linked_ptr_mutex); - - if (next_ == this) return true; - linked_ptr_internal const* p = next_; - while (p->next_ != this) p = p->next_; - p->next_ = next_; - return false; - } - - private: - mutable linked_ptr_internal const* next_; -}; - -template -class linked_ptr { - public: - typedef T element_type; - - // Take over ownership of a raw pointer. This should happen as soon as - // possible after the object is created. - explicit linked_ptr(T* ptr = NULL) { capture(ptr); } - ~linked_ptr() { depart(); } - - // Copy an existing linked_ptr<>, adding ourselves to the list of references. - template linked_ptr(linked_ptr const& ptr) { copy(&ptr); } - linked_ptr(linked_ptr const& ptr) { // NOLINT - assert(&ptr != this); - copy(&ptr); - } - - // Assignment releases the old value and acquires the new. - template linked_ptr& operator=(linked_ptr const& ptr) { - depart(); - copy(&ptr); - return *this; - } - - linked_ptr& operator=(linked_ptr const& ptr) { - if (&ptr != this) { - depart(); - copy(&ptr); - } - return *this; - } - - // Smart pointer members. - void reset(T* ptr = NULL) { - depart(); - capture(ptr); - } - T* get() const { return value_; } - T* operator->() const { return value_; } - T& operator*() const { return *value_; } - // Release ownership of the pointed object and returns it. - // Sole ownership by this linked_ptr object is required. - T* release() { - bool last = link_.depart(); - assert(last); - T* v = value_; - value_ = NULL; - return v; - } - - bool operator==(T* p) const { return value_ == p; } - bool operator!=(T* p) const { return value_ != p; } - template - bool operator==(linked_ptr const& ptr) const { - return value_ == ptr.get(); - } - template - bool operator!=(linked_ptr const& ptr) const { - return value_ != ptr.get(); - } - - private: - template - friend class linked_ptr; - - T* value_; - linked_ptr_internal link_; - - void depart() { - if (link_.depart()) delete value_; - } - - void capture(T* ptr) { - value_ = ptr; - link_.join_new(); - } - - template void copy(linked_ptr const* ptr) { - value_ = ptr->get(); - if (value_) - link_.join(&ptr->link_); - else - link_.join_new(); - } -}; - -template inline -bool operator==(T* ptr, const linked_ptr& x) { - return ptr == x.get(); -} - -template inline -bool operator!=(T* ptr, const linked_ptr& x) { - return ptr != x.get(); -} - -// A function to convert T* into linked_ptr -// Doing e.g. make_linked_ptr(new FooBarBaz(arg)) is a shorter notation -// for linked_ptr >(new FooBarBaz(arg)) -template -linked_ptr make_linked_ptr(T* ptr) { - return linked_ptr(ptr); -} - -} // namespace internal -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util-generated.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util-generated.h deleted file mode 100644 index ab4ab5662..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util-generated.h +++ /dev/null @@ -1,4820 +0,0 @@ -// This file was GENERATED by a script. DO NOT EDIT BY HAND!!! - -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) - -// Type and function utilities for implementing parameterized tests. -// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! -// -// Currently Google Test supports at most 50 arguments in Values, -// and at most 10 arguments in Combine. Please contact -// googletestframework@googlegroups.com if you need more. -// Please note that the number of arguments to Combine is limited -// by the maximum arity of the implementation of tr1::tuple which is -// currently set at 10. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ - -// scripts/fuse_gtest.py depends on gtest's own header being #included -// *unconditionally*. Therefore these #includes cannot be moved -// inside #if GTEST_HAS_PARAM_TEST. -#include -#include - -#if GTEST_HAS_PARAM_TEST - -namespace testing { - -// Forward declarations of ValuesIn(), which is implemented in -// include/gtest/gtest-param-test.h. -template -internal::ParamGenerator< - typename ::std::iterator_traits::value_type> ValuesIn( - ForwardIterator begin, ForwardIterator end); - -template -internal::ParamGenerator ValuesIn(const T (&array)[N]); - -template -internal::ParamGenerator ValuesIn( - const Container& container); - -namespace internal { - -// Used in the Values() function to provide polymorphic capabilities. -template -class ValueArray1 { - public: - explicit ValueArray1(T1 v1) : v1_(v1) {} - - template - operator ParamGenerator() const { return ValuesIn(&v1_, &v1_ + 1); } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray1& other); - - const T1 v1_; -}; - -template -class ValueArray2 { - public: - ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray2& other); - - const T1 v1_; - const T2 v2_; -}; - -template -class ValueArray3 { - public: - ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray3& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; -}; - -template -class ValueArray4 { - public: - ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray4& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; -}; - -template -class ValueArray5 { - public: - ValueArray5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray5& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; -}; - -template -class ValueArray6 { - public: - ValueArray6(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray6& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; -}; - -template -class ValueArray7 { - public: - ValueArray7(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray7& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; -}; - -template -class ValueArray8 { - public: - ValueArray8(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, - T8 v8) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray8& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; -}; - -template -class ValueArray9 { - public: - ValueArray9(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, - T9 v9) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray9& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; -}; - -template -class ValueArray10 { - public: - ValueArray10(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray10& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; -}; - -template -class ValueArray11 { - public: - ValueArray11(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), - v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray11& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; -}; - -template -class ValueArray12 { - public: - ValueArray12(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), - v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray12& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; -}; - -template -class ValueArray13 { - public: - ValueArray13(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), - v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), - v12_(v12), v13_(v13) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray13& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; -}; - -template -class ValueArray14 { - public: - ValueArray14(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray14& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; -}; - -template -class ValueArray15 { - public: - ValueArray15(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray15& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; -}; - -template -class ValueArray16 { - public: - ValueArray16(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), - v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), - v16_(v16) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray16& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; -}; - -template -class ValueArray17 { - public: - ValueArray17(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, - T17 v17) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray17& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; -}; - -template -class ValueArray18 { - public: - ValueArray18(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray18& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; -}; - -template -class ValueArray19 { - public: - ValueArray19(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), - v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), - v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray19& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; -}; - -template -class ValueArray20 { - public: - ValueArray20(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), - v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), - v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), - v19_(v19), v20_(v20) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray20& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; -}; - -template -class ValueArray21 { - public: - ValueArray21(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), - v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), - v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), - v18_(v18), v19_(v19), v20_(v20), v21_(v21) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray21& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; -}; - -template -class ValueArray22 { - public: - ValueArray22(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray22& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; -}; - -template -class ValueArray23 { - public: - ValueArray23(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, - v23_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray23& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; -}; - -template -class ValueArray24 { - public: - ValueArray24(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), - v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), - v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), - v22_(v22), v23_(v23), v24_(v24) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray24& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; -}; - -template -class ValueArray25 { - public: - ValueArray25(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, - T25 v25) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray25& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; -}; - -template -class ValueArray26 { - public: - ValueArray26(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray26& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; -}; - -template -class ValueArray27 { - public: - ValueArray27(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), - v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), - v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), - v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), - v26_(v26), v27_(v27) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray27& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; -}; - -template -class ValueArray28 { - public: - ValueArray28(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), - v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), - v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), - v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), - v25_(v25), v26_(v26), v27_(v27), v28_(v28) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray28& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; -}; - -template -class ValueArray29 { - public: - ValueArray29(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), - v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), - v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), - v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), - v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray29& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; -}; - -template -class ValueArray30 { - public: - ValueArray30(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray30& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; -}; - -template -class ValueArray31 { - public: - ValueArray31(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30), v31_(v31) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray31& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; -}; - -template -class ValueArray32 { - public: - ValueArray32(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), - v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), - v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), - v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), - v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray32& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; -}; - -template -class ValueArray33 { - public: - ValueArray33(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, - T33 v33) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray33& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; -}; - -template -class ValueArray34 { - public: - ValueArray34(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33), v34_(v34) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray34& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; -}; - -template -class ValueArray35 { - public: - ValueArray35(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), - v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), - v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), - v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), - v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), - v32_(v32), v33_(v33), v34_(v34), v35_(v35) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, - v35_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray35& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; -}; - -template -class ValueArray36 { - public: - ValueArray36(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), - v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), - v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), - v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), - v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), - v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray36& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; -}; - -template -class ValueArray37 { - public: - ValueArray37(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), - v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), - v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), - v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), - v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), - v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), - v36_(v36), v37_(v37) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray37& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; -}; - -template -class ValueArray38 { - public: - ValueArray38(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), - v35_(v35), v36_(v36), v37_(v37), v38_(v38) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray38& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; -}; - -template -class ValueArray39 { - public: - ValueArray39(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), - v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray39& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; -}; - -template -class ValueArray40 { - public: - ValueArray40(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), - v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), - v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), - v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), - v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), - v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), - v40_(v40) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray40& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; -}; - -template -class ValueArray41 { - public: - ValueArray41(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, - T41 v41) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), - v39_(v39), v40_(v40), v41_(v41) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray41& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; -}; - -template -class ValueArray42 { - public: - ValueArray42(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), - v39_(v39), v40_(v40), v41_(v41), v42_(v42) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray42& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; -}; - -template -class ValueArray43 { - public: - ValueArray43(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), - v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), - v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), - v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), - v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), - v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), - v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray43& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; -}; - -template -class ValueArray44 { - public: - ValueArray44(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), - v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), - v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), - v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), - v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), - v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), - v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), - v43_(v43), v44_(v44) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray44& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; -}; - -template -class ValueArray45 { - public: - ValueArray45(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), - v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), - v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), - v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), - v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), - v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), - v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), - v42_(v42), v43_(v43), v44_(v44), v45_(v45) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray45& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; -}; - -template -class ValueArray46 { - public: - ValueArray46(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) : v1_(v1), v2_(v2), v3_(v3), - v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), - v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), - v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray46& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; - const T46 v46_; -}; - -template -class ValueArray47 { - public: - ValueArray47(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) : v1_(v1), v2_(v2), - v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), - v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), - v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), - v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), - v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), - v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), - v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), - v47_(v47) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, - v47_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray47& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; - const T46 v46_; - const T47 v47_; -}; - -template -class ValueArray48 { - public: - ValueArray48(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48) : v1_(v1), - v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), - v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), - v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), - v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), - v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), - v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), - v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), - v46_(v46), v47_(v47), v48_(v48) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, v47_, - v48_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray48& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; - const T46 v46_; - const T47 v47_; - const T48 v48_; -}; - -template -class ValueArray49 { - public: - ValueArray49(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, - T49 v49) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), - v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), - v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, v47_, - v48_, v49_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray49& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; - const T46 v46_; - const T47 v47_; - const T48 v48_; - const T49 v49_; -}; - -template -class ValueArray50 { - public: - ValueArray50(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, - T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, - T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, - T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, - T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, - T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49, - T50 v50) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), - v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), - v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), - v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), - v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), - v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), - v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), - v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49), v50_(v50) {} - - template - operator ParamGenerator() const { - const T array[] = {v1_, v2_, v3_, v4_, v5_, v6_, v7_, v8_, v9_, v10_, v11_, - v12_, v13_, v14_, v15_, v16_, v17_, v18_, v19_, v20_, v21_, v22_, v23_, - v24_, v25_, v26_, v27_, v28_, v29_, v30_, v31_, v32_, v33_, v34_, v35_, - v36_, v37_, v38_, v39_, v40_, v41_, v42_, v43_, v44_, v45_, v46_, v47_, - v48_, v49_, v50_}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray50& other); - - const T1 v1_; - const T2 v2_; - const T3 v3_; - const T4 v4_; - const T5 v5_; - const T6 v6_; - const T7 v7_; - const T8 v8_; - const T9 v9_; - const T10 v10_; - const T11 v11_; - const T12 v12_; - const T13 v13_; - const T14 v14_; - const T15 v15_; - const T16 v16_; - const T17 v17_; - const T18 v18_; - const T19 v19_; - const T20 v20_; - const T21 v21_; - const T22 v22_; - const T23 v23_; - const T24 v24_; - const T25 v25_; - const T26 v26_; - const T27 v27_; - const T28 v28_; - const T29 v29_; - const T30 v30_; - const T31 v31_; - const T32 v32_; - const T33 v33_; - const T34 v34_; - const T35 v35_; - const T36 v36_; - const T37 v37_; - const T38 v38_; - const T39 v39_; - const T40 v40_; - const T41 v41_; - const T42 v42_; - const T43 v43_; - const T44 v44_; - const T45 v45_; - const T46 v46_; - const T47 v47_; - const T48 v48_; - const T49 v49_; - const T50 v50_; -}; - -#if GTEST_HAS_COMBINE -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Generates values from the Cartesian product of values produced -// by the argument generators. -// -template -class CartesianProductGenerator2 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator2(const ParamGenerator& g1, - const ParamGenerator& g2) - : g1_(g1), g2_(g2) {} - virtual ~CartesianProductGenerator2() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current2_; - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - ParamType current_value_; - }; // class CartesianProductGenerator2::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator2& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; -}; // class CartesianProductGenerator2 - - -template -class CartesianProductGenerator3 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator3(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3) - : g1_(g1), g2_(g2), g3_(g3) {} - virtual ~CartesianProductGenerator3() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current3_; - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - ParamType current_value_; - }; // class CartesianProductGenerator3::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator3& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; -}; // class CartesianProductGenerator3 - - -template -class CartesianProductGenerator4 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator4(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} - virtual ~CartesianProductGenerator4() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current4_; - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - ParamType current_value_; - }; // class CartesianProductGenerator4::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator4& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; -}; // class CartesianProductGenerator4 - - -template -class CartesianProductGenerator5 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator5(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} - virtual ~CartesianProductGenerator5() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current5_; - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - ParamType current_value_; - }; // class CartesianProductGenerator5::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator5& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; -}; // class CartesianProductGenerator5 - - -template -class CartesianProductGenerator6 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator6(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5, - const ParamGenerator& g6) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} - virtual ~CartesianProductGenerator6() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5, - const ParamGenerator& g6, - const typename ParamGenerator::iterator& current6) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5), - begin6_(g6.begin()), end6_(g6.end()), current6_(current6) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current6_; - if (current6_ == end6_) { - current6_ = begin6_; - ++current5_; - } - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_ && - current6_ == typed_other->current6_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_), - begin6_(other.begin6_), - end6_(other.end6_), - current6_(other.current6_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_, *current6_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_ || - current6_ == end6_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - const typename ParamGenerator::iterator begin6_; - const typename ParamGenerator::iterator end6_; - typename ParamGenerator::iterator current6_; - ParamType current_value_; - }; // class CartesianProductGenerator6::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator6& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; - const ParamGenerator g6_; -}; // class CartesianProductGenerator6 - - -template -class CartesianProductGenerator7 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator7(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5, - const ParamGenerator& g6, const ParamGenerator& g7) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} - virtual ~CartesianProductGenerator7() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, - g7_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5, - const ParamGenerator& g6, - const typename ParamGenerator::iterator& current6, - const ParamGenerator& g7, - const typename ParamGenerator::iterator& current7) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5), - begin6_(g6.begin()), end6_(g6.end()), current6_(current6), - begin7_(g7.begin()), end7_(g7.end()), current7_(current7) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current7_; - if (current7_ == end7_) { - current7_ = begin7_; - ++current6_; - } - if (current6_ == end6_) { - current6_ = begin6_; - ++current5_; - } - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_ && - current6_ == typed_other->current6_ && - current7_ == typed_other->current7_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_), - begin6_(other.begin6_), - end6_(other.end6_), - current6_(other.current6_), - begin7_(other.begin7_), - end7_(other.end7_), - current7_(other.current7_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_, *current6_, *current7_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_ || - current6_ == end6_ || - current7_ == end7_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - const typename ParamGenerator::iterator begin6_; - const typename ParamGenerator::iterator end6_; - typename ParamGenerator::iterator current6_; - const typename ParamGenerator::iterator begin7_; - const typename ParamGenerator::iterator end7_; - typename ParamGenerator::iterator current7_; - ParamType current_value_; - }; // class CartesianProductGenerator7::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator7& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; - const ParamGenerator g6_; - const ParamGenerator g7_; -}; // class CartesianProductGenerator7 - - -template -class CartesianProductGenerator8 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator8(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5, - const ParamGenerator& g6, const ParamGenerator& g7, - const ParamGenerator& g8) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), - g8_(g8) {} - virtual ~CartesianProductGenerator8() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, - g7_.begin(), g8_, g8_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, - g8_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5, - const ParamGenerator& g6, - const typename ParamGenerator::iterator& current6, - const ParamGenerator& g7, - const typename ParamGenerator::iterator& current7, - const ParamGenerator& g8, - const typename ParamGenerator::iterator& current8) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5), - begin6_(g6.begin()), end6_(g6.end()), current6_(current6), - begin7_(g7.begin()), end7_(g7.end()), current7_(current7), - begin8_(g8.begin()), end8_(g8.end()), current8_(current8) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current8_; - if (current8_ == end8_) { - current8_ = begin8_; - ++current7_; - } - if (current7_ == end7_) { - current7_ = begin7_; - ++current6_; - } - if (current6_ == end6_) { - current6_ = begin6_; - ++current5_; - } - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_ && - current6_ == typed_other->current6_ && - current7_ == typed_other->current7_ && - current8_ == typed_other->current8_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_), - begin6_(other.begin6_), - end6_(other.end6_), - current6_(other.current6_), - begin7_(other.begin7_), - end7_(other.end7_), - current7_(other.current7_), - begin8_(other.begin8_), - end8_(other.end8_), - current8_(other.current8_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_, *current6_, *current7_, *current8_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_ || - current6_ == end6_ || - current7_ == end7_ || - current8_ == end8_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - const typename ParamGenerator::iterator begin6_; - const typename ParamGenerator::iterator end6_; - typename ParamGenerator::iterator current6_; - const typename ParamGenerator::iterator begin7_; - const typename ParamGenerator::iterator end7_; - typename ParamGenerator::iterator current7_; - const typename ParamGenerator::iterator begin8_; - const typename ParamGenerator::iterator end8_; - typename ParamGenerator::iterator current8_; - ParamType current_value_; - }; // class CartesianProductGenerator8::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator8& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; - const ParamGenerator g6_; - const ParamGenerator g7_; - const ParamGenerator g8_; -}; // class CartesianProductGenerator8 - - -template -class CartesianProductGenerator9 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator9(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5, - const ParamGenerator& g6, const ParamGenerator& g7, - const ParamGenerator& g8, const ParamGenerator& g9) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), - g9_(g9) {} - virtual ~CartesianProductGenerator9() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, - g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, - g8_.end(), g9_, g9_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5, - const ParamGenerator& g6, - const typename ParamGenerator::iterator& current6, - const ParamGenerator& g7, - const typename ParamGenerator::iterator& current7, - const ParamGenerator& g8, - const typename ParamGenerator::iterator& current8, - const ParamGenerator& g9, - const typename ParamGenerator::iterator& current9) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5), - begin6_(g6.begin()), end6_(g6.end()), current6_(current6), - begin7_(g7.begin()), end7_(g7.end()), current7_(current7), - begin8_(g8.begin()), end8_(g8.end()), current8_(current8), - begin9_(g9.begin()), end9_(g9.end()), current9_(current9) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current9_; - if (current9_ == end9_) { - current9_ = begin9_; - ++current8_; - } - if (current8_ == end8_) { - current8_ = begin8_; - ++current7_; - } - if (current7_ == end7_) { - current7_ = begin7_; - ++current6_; - } - if (current6_ == end6_) { - current6_ = begin6_; - ++current5_; - } - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_ && - current6_ == typed_other->current6_ && - current7_ == typed_other->current7_ && - current8_ == typed_other->current8_ && - current9_ == typed_other->current9_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_), - begin6_(other.begin6_), - end6_(other.end6_), - current6_(other.current6_), - begin7_(other.begin7_), - end7_(other.end7_), - current7_(other.current7_), - begin8_(other.begin8_), - end8_(other.end8_), - current8_(other.current8_), - begin9_(other.begin9_), - end9_(other.end9_), - current9_(other.current9_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_, *current6_, *current7_, *current8_, - *current9_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_ || - current6_ == end6_ || - current7_ == end7_ || - current8_ == end8_ || - current9_ == end9_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - const typename ParamGenerator::iterator begin6_; - const typename ParamGenerator::iterator end6_; - typename ParamGenerator::iterator current6_; - const typename ParamGenerator::iterator begin7_; - const typename ParamGenerator::iterator end7_; - typename ParamGenerator::iterator current7_; - const typename ParamGenerator::iterator begin8_; - const typename ParamGenerator::iterator end8_; - typename ParamGenerator::iterator current8_; - const typename ParamGenerator::iterator begin9_; - const typename ParamGenerator::iterator end9_; - typename ParamGenerator::iterator current9_; - ParamType current_value_; - }; // class CartesianProductGenerator9::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator9& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; - const ParamGenerator g6_; - const ParamGenerator g7_; - const ParamGenerator g8_; - const ParamGenerator g9_; -}; // class CartesianProductGenerator9 - - -template -class CartesianProductGenerator10 - : public ParamGeneratorInterface< ::std::tr1::tuple > { - public: - typedef ::std::tr1::tuple ParamType; - - CartesianProductGenerator10(const ParamGenerator& g1, - const ParamGenerator& g2, const ParamGenerator& g3, - const ParamGenerator& g4, const ParamGenerator& g5, - const ParamGenerator& g6, const ParamGenerator& g7, - const ParamGenerator& g8, const ParamGenerator& g9, - const ParamGenerator& g10) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), - g9_(g9), g10_(g10) {} - virtual ~CartesianProductGenerator10() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, - g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, - g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin(), g10_, g10_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), - g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, - g8_.end(), g9_, g9_.end(), g10_, g10_.end()); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - const ParamGenerator& g1, - const typename ParamGenerator::iterator& current1, - const ParamGenerator& g2, - const typename ParamGenerator::iterator& current2, - const ParamGenerator& g3, - const typename ParamGenerator::iterator& current3, - const ParamGenerator& g4, - const typename ParamGenerator::iterator& current4, - const ParamGenerator& g5, - const typename ParamGenerator::iterator& current5, - const ParamGenerator& g6, - const typename ParamGenerator::iterator& current6, - const ParamGenerator& g7, - const typename ParamGenerator::iterator& current7, - const ParamGenerator& g8, - const typename ParamGenerator::iterator& current8, - const ParamGenerator& g9, - const typename ParamGenerator::iterator& current9, - const ParamGenerator& g10, - const typename ParamGenerator::iterator& current10) - : base_(base), - begin1_(g1.begin()), end1_(g1.end()), current1_(current1), - begin2_(g2.begin()), end2_(g2.end()), current2_(current2), - begin3_(g3.begin()), end3_(g3.end()), current3_(current3), - begin4_(g4.begin()), end4_(g4.end()), current4_(current4), - begin5_(g5.begin()), end5_(g5.end()), current5_(current5), - begin6_(g6.begin()), end6_(g6.end()), current6_(current6), - begin7_(g7.begin()), end7_(g7.end()), current7_(current7), - begin8_(g8.begin()), end8_(g8.end()), current8_(current8), - begin9_(g9.begin()), end9_(g9.end()), current9_(current9), - begin10_(g10.begin()), end10_(g10.end()), current10_(current10) { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current10_; - if (current10_ == end10_) { - current10_ = begin10_; - ++current9_; - } - if (current9_ == end9_) { - current9_ = begin9_; - ++current8_; - } - if (current8_ == end8_) { - current8_ = begin8_; - ++current7_; - } - if (current7_ == end7_) { - current7_ = begin7_; - ++current6_; - } - if (current6_ == end6_) { - current6_ = begin6_; - ++current5_; - } - if (current5_ == end5_) { - current5_ = begin5_; - ++current4_; - } - if (current4_ == end4_) { - current4_ = begin4_; - ++current3_; - } - if (current3_ == end3_) { - current3_ = begin3_; - ++current2_; - } - if (current2_ == end2_) { - current2_ = begin2_; - ++current1_; - } - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ( - current1_ == typed_other->current1_ && - current2_ == typed_other->current2_ && - current3_ == typed_other->current3_ && - current4_ == typed_other->current4_ && - current5_ == typed_other->current5_ && - current6_ == typed_other->current6_ && - current7_ == typed_other->current7_ && - current8_ == typed_other->current8_ && - current9_ == typed_other->current9_ && - current10_ == typed_other->current10_); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), - begin1_(other.begin1_), - end1_(other.end1_), - current1_(other.current1_), - begin2_(other.begin2_), - end2_(other.end2_), - current2_(other.current2_), - begin3_(other.begin3_), - end3_(other.end3_), - current3_(other.current3_), - begin4_(other.begin4_), - end4_(other.end4_), - current4_(other.current4_), - begin5_(other.begin5_), - end5_(other.end5_), - current5_(other.current5_), - begin6_(other.begin6_), - end6_(other.end6_), - current6_(other.current6_), - begin7_(other.begin7_), - end7_(other.end7_), - current7_(other.current7_), - begin8_(other.begin8_), - end8_(other.end8_), - current8_(other.current8_), - begin9_(other.begin9_), - end9_(other.end9_), - current9_(other.current9_), - begin10_(other.begin10_), - end10_(other.end10_), - current10_(other.current10_) { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType(*current1_, *current2_, *current3_, - *current4_, *current5_, *current6_, *current7_, *current8_, - *current9_, *current10_); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return - current1_ == end1_ || - current2_ == end2_ || - current3_ == end3_ || - current4_ == end4_ || - current5_ == end5_ || - current6_ == end6_ || - current7_ == end7_ || - current8_ == end8_ || - current9_ == end9_ || - current10_ == end10_; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. - const typename ParamGenerator::iterator begin1_; - const typename ParamGenerator::iterator end1_; - typename ParamGenerator::iterator current1_; - const typename ParamGenerator::iterator begin2_; - const typename ParamGenerator::iterator end2_; - typename ParamGenerator::iterator current2_; - const typename ParamGenerator::iterator begin3_; - const typename ParamGenerator::iterator end3_; - typename ParamGenerator::iterator current3_; - const typename ParamGenerator::iterator begin4_; - const typename ParamGenerator::iterator end4_; - typename ParamGenerator::iterator current4_; - const typename ParamGenerator::iterator begin5_; - const typename ParamGenerator::iterator end5_; - typename ParamGenerator::iterator current5_; - const typename ParamGenerator::iterator begin6_; - const typename ParamGenerator::iterator end6_; - typename ParamGenerator::iterator current6_; - const typename ParamGenerator::iterator begin7_; - const typename ParamGenerator::iterator end7_; - typename ParamGenerator::iterator current7_; - const typename ParamGenerator::iterator begin8_; - const typename ParamGenerator::iterator end8_; - typename ParamGenerator::iterator current8_; - const typename ParamGenerator::iterator begin9_; - const typename ParamGenerator::iterator end9_; - typename ParamGenerator::iterator current9_; - const typename ParamGenerator::iterator begin10_; - const typename ParamGenerator::iterator end10_; - typename ParamGenerator::iterator current10_; - ParamType current_value_; - }; // class CartesianProductGenerator10::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator10& other); - - const ParamGenerator g1_; - const ParamGenerator g2_; - const ParamGenerator g3_; - const ParamGenerator g4_; - const ParamGenerator g5_; - const ParamGenerator g6_; - const ParamGenerator g7_; - const ParamGenerator g8_; - const ParamGenerator g9_; - const ParamGenerator g10_; -}; // class CartesianProductGenerator10 - - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Helper classes providing Combine() with polymorphic features. They allow -// casting CartesianProductGeneratorN to ParamGenerator if T is -// convertible to U. -// -template -class CartesianProductHolder2 { - public: -CartesianProductHolder2(const Generator1& g1, const Generator2& g2) - : g1_(g1), g2_(g2) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator2( - static_cast >(g1_), - static_cast >(g2_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder2& other); - - const Generator1 g1_; - const Generator2 g2_; -}; // class CartesianProductHolder2 - -template -class CartesianProductHolder3 { - public: -CartesianProductHolder3(const Generator1& g1, const Generator2& g2, - const Generator3& g3) - : g1_(g1), g2_(g2), g3_(g3) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator3( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder3& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; -}; // class CartesianProductHolder3 - -template -class CartesianProductHolder4 { - public: -CartesianProductHolder4(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator4( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder4& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; -}; // class CartesianProductHolder4 - -template -class CartesianProductHolder5 { - public: -CartesianProductHolder5(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator5( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder5& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; -}; // class CartesianProductHolder5 - -template -class CartesianProductHolder6 { - public: -CartesianProductHolder6(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5, - const Generator6& g6) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator6( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_), - static_cast >(g6_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder6& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; - const Generator6 g6_; -}; // class CartesianProductHolder6 - -template -class CartesianProductHolder7 { - public: -CartesianProductHolder7(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5, - const Generator6& g6, const Generator7& g7) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator7( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_), - static_cast >(g6_), - static_cast >(g7_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder7& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; - const Generator6 g6_; - const Generator7 g7_; -}; // class CartesianProductHolder7 - -template -class CartesianProductHolder8 { - public: -CartesianProductHolder8(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5, - const Generator6& g6, const Generator7& g7, const Generator8& g8) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), - g8_(g8) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator8( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_), - static_cast >(g6_), - static_cast >(g7_), - static_cast >(g8_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder8& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; - const Generator6 g6_; - const Generator7 g7_; - const Generator8 g8_; -}; // class CartesianProductHolder8 - -template -class CartesianProductHolder9 { - public: -CartesianProductHolder9(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5, - const Generator6& g6, const Generator7& g7, const Generator8& g8, - const Generator9& g9) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), - g9_(g9) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator9( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_), - static_cast >(g6_), - static_cast >(g7_), - static_cast >(g8_), - static_cast >(g9_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder9& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; - const Generator6 g6_; - const Generator7 g7_; - const Generator8 g8_; - const Generator9 g9_; -}; // class CartesianProductHolder9 - -template -class CartesianProductHolder10 { - public: -CartesianProductHolder10(const Generator1& g1, const Generator2& g2, - const Generator3& g3, const Generator4& g4, const Generator5& g5, - const Generator6& g6, const Generator7& g7, const Generator8& g8, - const Generator9& g9, const Generator10& g10) - : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), - g9_(g9), g10_(g10) {} - template - operator ParamGenerator< ::std::tr1::tuple >() const { - return ParamGenerator< ::std::tr1::tuple >( - new CartesianProductGenerator10( - static_cast >(g1_), - static_cast >(g2_), - static_cast >(g3_), - static_cast >(g4_), - static_cast >(g5_), - static_cast >(g6_), - static_cast >(g7_), - static_cast >(g8_), - static_cast >(g9_), - static_cast >(g10_))); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder10& other); - - const Generator1 g1_; - const Generator2 g2_; - const Generator3 g3_; - const Generator4 g4_; - const Generator5 g5_; - const Generator6 g6_; - const Generator7 g7_; - const Generator8 g8_; - const Generator9 g9_; - const Generator10 g10_; -}; // class CartesianProductHolder10 - -#endif // GTEST_HAS_COMBINE - -} // namespace internal -} // namespace testing - -#endif // GTEST_HAS_PARAM_TEST - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util-generated.h.pump b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util-generated.h.pump deleted file mode 100644 index baedfbc2d..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util-generated.h.pump +++ /dev/null @@ -1,301 +0,0 @@ -$$ -*- mode: c++; -*- -$var n = 50 $$ Maximum length of Values arguments we want to support. -$var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) - -// Type and function utilities for implementing parameterized tests. -// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! -// -// Currently Google Test supports at most $n arguments in Values, -// and at most $maxtuple arguments in Combine. Please contact -// googletestframework@googlegroups.com if you need more. -// Please note that the number of arguments to Combine is limited -// by the maximum arity of the implementation of tr1::tuple which is -// currently set at $maxtuple. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ - -// scripts/fuse_gtest.py depends on gtest's own header being #included -// *unconditionally*. Therefore these #includes cannot be moved -// inside #if GTEST_HAS_PARAM_TEST. -#include -#include - -#if GTEST_HAS_PARAM_TEST - -namespace testing { - -// Forward declarations of ValuesIn(), which is implemented in -// include/gtest/gtest-param-test.h. -template -internal::ParamGenerator< - typename ::std::iterator_traits::value_type> ValuesIn( - ForwardIterator begin, ForwardIterator end); - -template -internal::ParamGenerator ValuesIn(const T (&array)[N]); - -template -internal::ParamGenerator ValuesIn( - const Container& container); - -namespace internal { - -// Used in the Values() function to provide polymorphic capabilities. -template -class ValueArray1 { - public: - explicit ValueArray1(T1 v1) : v1_(v1) {} - - template - operator ParamGenerator() const { return ValuesIn(&v1_, &v1_ + 1); } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray1& other); - - const T1 v1_; -}; - -$range i 2..n -$for i [[ -$range j 1..i - -template <$for j, [[typename T$j]]> -class ValueArray$i { - public: - ValueArray$i($for j, [[T$j v$j]]) : $for j, [[v$(j)_(v$j)]] {} - - template - operator ParamGenerator() const { - const T array[] = {$for j, [[v$(j)_]]}; - return ValuesIn(array); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const ValueArray$i& other); - -$for j [[ - - const T$j v$(j)_; -]] - -}; - -]] - -#if GTEST_HAS_COMBINE -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Generates values from the Cartesian product of values produced -// by the argument generators. -// -$range i 2..maxtuple -$for i [[ -$range j 1..i -$range k 2..i - -template <$for j, [[typename T$j]]> -class CartesianProductGenerator$i - : public ParamGeneratorInterface< ::std::tr1::tuple<$for j, [[T$j]]> > { - public: - typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType; - - CartesianProductGenerator$i($for j, [[const ParamGenerator& g$j]]) - : $for j, [[g$(j)_(g$j)]] {} - virtual ~CartesianProductGenerator$i() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, $for j, [[g$(j)_, g$(j)_.begin()]]); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, $for j, [[g$(j)_, g$(j)_.end()]]); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, $for j, [[ - - const ParamGenerator& g$j, - const typename ParamGenerator::iterator& current$(j)]]) - : base_(base), -$for j, [[ - - begin$(j)_(g$j.begin()), end$(j)_(g$j.end()), current$(j)_(current$j) -]] { - ComputeCurrentValue(); - } - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - // Advance should not be called on beyond-of-range iterators - // so no component iterators must be beyond end of range, either. - virtual void Advance() { - assert(!AtEnd()); - ++current$(i)_; - -$for k [[ - if (current$(i+2-k)_ == end$(i+2-k)_) { - current$(i+2-k)_ = begin$(i+2-k)_; - ++current$(i+2-k-1)_; - } - -]] - ComputeCurrentValue(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const ParamType* Current() const { return ¤t_value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const Iterator* typed_other = - CheckedDowncastToActualType(&other); - // We must report iterators equal if they both point beyond their - // respective ranges. That can happen in a variety of fashions, - // so we have to consult AtEnd(). - return (AtEnd() && typed_other->AtEnd()) || - ($for j && [[ - - current$(j)_ == typed_other->current$(j)_ -]]); - } - - private: - Iterator(const Iterator& other) - : base_(other.base_), $for j, [[ - - begin$(j)_(other.begin$(j)_), - end$(j)_(other.end$(j)_), - current$(j)_(other.current$(j)_) -]] { - ComputeCurrentValue(); - } - - void ComputeCurrentValue() { - if (!AtEnd()) - current_value_ = ParamType($for j, [[*current$(j)_]]); - } - bool AtEnd() const { - // We must report iterator past the end of the range when either of the - // component iterators has reached the end of its range. - return -$for j || [[ - - current$(j)_ == end$(j)_ -]]; - } - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. - // current[i]_ is the actual traversing iterator. -$for j [[ - - const typename ParamGenerator::iterator begin$(j)_; - const typename ParamGenerator::iterator end$(j)_; - typename ParamGenerator::iterator current$(j)_; -]] - - ParamType current_value_; - }; // class CartesianProductGenerator$i::Iterator - - // No implementation - assignment is unsupported. - void operator=(const CartesianProductGenerator$i& other); - - -$for j [[ - const ParamGenerator g$(j)_; - -]] -}; // class CartesianProductGenerator$i - - -]] - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Helper classes providing Combine() with polymorphic features. They allow -// casting CartesianProductGeneratorN to ParamGenerator if T is -// convertible to U. -// -$range i 2..maxtuple -$for i [[ -$range j 1..i - -template <$for j, [[class Generator$j]]> -class CartesianProductHolder$i { - public: -CartesianProductHolder$i($for j, [[const Generator$j& g$j]]) - : $for j, [[g$(j)_(g$j)]] {} - template <$for j, [[typename T$j]]> - operator ParamGenerator< ::std::tr1::tuple<$for j, [[T$j]]> >() const { - return ParamGenerator< ::std::tr1::tuple<$for j, [[T$j]]> >( - new CartesianProductGenerator$i<$for j, [[T$j]]>( -$for j,[[ - - static_cast >(g$(j)_) -]])); - } - - private: - // No implementation - assignment is unsupported. - void operator=(const CartesianProductHolder$i& other); - - -$for j [[ - const Generator$j g$(j)_; - -]] -}; // class CartesianProductHolder$i - -]] - -#endif // GTEST_HAS_COMBINE - -} // namespace internal -} // namespace testing - -#endif // GTEST_HAS_PARAM_TEST - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util.h deleted file mode 100644 index 0cbb58c21..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-param-util.h +++ /dev/null @@ -1,619 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) - -// Type and function utilities for implementing parameterized tests. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ - -#include -#include -#include - -// scripts/fuse_gtest.py depends on gtest's own header being #included -// *unconditionally*. Therefore these #includes cannot be moved -// inside #if GTEST_HAS_PARAM_TEST. -#include -#include -#include - -#if GTEST_HAS_PARAM_TEST - -namespace testing { -namespace internal { - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Outputs a message explaining invalid registration of different -// fixture class for the same test case. This may happen when -// TEST_P macro is used to define two tests with the same name -// but in different namespaces. -GTEST_API_ void ReportInvalidTestCaseType(const char* test_case_name, - const char* file, int line); - -template class ParamGeneratorInterface; -template class ParamGenerator; - -// Interface for iterating over elements provided by an implementation -// of ParamGeneratorInterface. -template -class ParamIteratorInterface { - public: - virtual ~ParamIteratorInterface() {} - // A pointer to the base generator instance. - // Used only for the purposes of iterator comparison - // to make sure that two iterators belong to the same generator. - virtual const ParamGeneratorInterface* BaseGenerator() const = 0; - // Advances iterator to point to the next element - // provided by the generator. The caller is responsible - // for not calling Advance() on an iterator equal to - // BaseGenerator()->End(). - virtual void Advance() = 0; - // Clones the iterator object. Used for implementing copy semantics - // of ParamIterator. - virtual ParamIteratorInterface* Clone() const = 0; - // Dereferences the current iterator and provides (read-only) access - // to the pointed value. It is the caller's responsibility not to call - // Current() on an iterator equal to BaseGenerator()->End(). - // Used for implementing ParamGenerator::operator*(). - virtual const T* Current() const = 0; - // Determines whether the given iterator and other point to the same - // element in the sequence generated by the generator. - // Used for implementing ParamGenerator::operator==(). - virtual bool Equals(const ParamIteratorInterface& other) const = 0; -}; - -// Class iterating over elements provided by an implementation of -// ParamGeneratorInterface. It wraps ParamIteratorInterface -// and implements the const forward iterator concept. -template -class ParamIterator { - public: - typedef T value_type; - typedef const T& reference; - typedef ptrdiff_t difference_type; - - // ParamIterator assumes ownership of the impl_ pointer. - ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} - ParamIterator& operator=(const ParamIterator& other) { - if (this != &other) - impl_.reset(other.impl_->Clone()); - return *this; - } - - const T& operator*() const { return *impl_->Current(); } - const T* operator->() const { return impl_->Current(); } - // Prefix version of operator++. - ParamIterator& operator++() { - impl_->Advance(); - return *this; - } - // Postfix version of operator++. - ParamIterator operator++(int /*unused*/) { - ParamIteratorInterface* clone = impl_->Clone(); - impl_->Advance(); - return ParamIterator(clone); - } - bool operator==(const ParamIterator& other) const { - return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_); - } - bool operator!=(const ParamIterator& other) const { - return !(*this == other); - } - - private: - friend class ParamGenerator; - explicit ParamIterator(ParamIteratorInterface* impl) : impl_(impl) {} - scoped_ptr > impl_; -}; - -// ParamGeneratorInterface is the binary interface to access generators -// defined in other translation units. -template -class ParamGeneratorInterface { - public: - typedef T ParamType; - - virtual ~ParamGeneratorInterface() {} - - // Generator interface definition - virtual ParamIteratorInterface* Begin() const = 0; - virtual ParamIteratorInterface* End() const = 0; -}; - -// Wraps ParamGeneratorInterface and provides general generator syntax -// compatible with the STL Container concept. -// This class implements copy initialization semantics and the contained -// ParamGeneratorInterface instance is shared among all copies -// of the original object. This is possible because that instance is immutable. -template -class ParamGenerator { - public: - typedef ParamIterator iterator; - - explicit ParamGenerator(ParamGeneratorInterface* impl) : impl_(impl) {} - ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {} - - ParamGenerator& operator=(const ParamGenerator& other) { - impl_ = other.impl_; - return *this; - } - - iterator begin() const { return iterator(impl_->Begin()); } - iterator end() const { return iterator(impl_->End()); } - - private: - ::testing::internal::linked_ptr > impl_; -}; - -// Generates values from a range of two comparable values. Can be used to -// generate sequences of user-defined types that implement operator+() and -// operator<(). -// This class is used in the Range() function. -template -class RangeGenerator : public ParamGeneratorInterface { - public: - RangeGenerator(T begin, T end, IncrementT step) - : begin_(begin), end_(end), - step_(step), end_index_(CalculateEndIndex(begin, end, step)) {} - virtual ~RangeGenerator() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, begin_, 0, step_); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, end_, end_index_, step_); - } - - private: - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, T value, int index, - IncrementT step) - : base_(base), value_(value), index_(index), step_(step) {} - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - virtual void Advance() { - value_ = value_ + step_; - index_++; - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - virtual const T* Current() const { return &value_; } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - const int other_index = - CheckedDowncastToActualType(&other)->index_; - return index_ == other_index; - } - - private: - Iterator(const Iterator& other) - : ParamIteratorInterface(), - base_(other.base_), value_(other.value_), index_(other.index_), - step_(other.step_) {} - - // No implementation - assignment is unsupported. - void operator=(const Iterator& other); - - const ParamGeneratorInterface* const base_; - T value_; - int index_; - const IncrementT step_; - }; // class RangeGenerator::Iterator - - static int CalculateEndIndex(const T& begin, - const T& end, - const IncrementT& step) { - int end_index = 0; - for (T i = begin; i < end; i = i + step) - end_index++; - return end_index; - } - - // No implementation - assignment is unsupported. - void operator=(const RangeGenerator& other); - - const T begin_; - const T end_; - const IncrementT step_; - // The index for the end() iterator. All the elements in the generated - // sequence are indexed (0-based) to aid iterator comparison. - const int end_index_; -}; // class RangeGenerator - - -// Generates values from a pair of STL-style iterators. Used in the -// ValuesIn() function. The elements are copied from the source range -// since the source can be located on the stack, and the generator -// is likely to persist beyond that stack frame. -template -class ValuesInIteratorRangeGenerator : public ParamGeneratorInterface { - public: - template - ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end) - : container_(begin, end) {} - virtual ~ValuesInIteratorRangeGenerator() {} - - virtual ParamIteratorInterface* Begin() const { - return new Iterator(this, container_.begin()); - } - virtual ParamIteratorInterface* End() const { - return new Iterator(this, container_.end()); - } - - private: - typedef typename ::std::vector ContainerType; - - class Iterator : public ParamIteratorInterface { - public: - Iterator(const ParamGeneratorInterface* base, - typename ContainerType::const_iterator iterator) - : base_(base), iterator_(iterator) {} - virtual ~Iterator() {} - - virtual const ParamGeneratorInterface* BaseGenerator() const { - return base_; - } - virtual void Advance() { - ++iterator_; - value_.reset(); - } - virtual ParamIteratorInterface* Clone() const { - return new Iterator(*this); - } - // We need to use cached value referenced by iterator_ because *iterator_ - // can return a temporary object (and of type other then T), so just - // having "return &*iterator_;" doesn't work. - // value_ is updated here and not in Advance() because Advance() - // can advance iterator_ beyond the end of the range, and we cannot - // detect that fact. The client code, on the other hand, is - // responsible for not calling Current() on an out-of-range iterator. - virtual const T* Current() const { - if (value_.get() == NULL) - value_.reset(new T(*iterator_)); - return value_.get(); - } - virtual bool Equals(const ParamIteratorInterface& other) const { - // Having the same base generator guarantees that the other - // iterator is of the same type and we can downcast. - GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) - << "The program attempted to compare iterators " - << "from different generators." << std::endl; - return iterator_ == - CheckedDowncastToActualType(&other)->iterator_; - } - - private: - Iterator(const Iterator& other) - // The explicit constructor call suppresses a false warning - // emitted by gcc when supplied with the -Wextra option. - : ParamIteratorInterface(), - base_(other.base_), - iterator_(other.iterator_) {} - - const ParamGeneratorInterface* const base_; - typename ContainerType::const_iterator iterator_; - // A cached value of *iterator_. We keep it here to allow access by - // pointer in the wrapping iterator's operator->(). - // value_ needs to be mutable to be accessed in Current(). - // Use of scoped_ptr helps manage cached value's lifetime, - // which is bound by the lifespan of the iterator itself. - mutable scoped_ptr value_; - }; // class ValuesInIteratorRangeGenerator::Iterator - - // No implementation - assignment is unsupported. - void operator=(const ValuesInIteratorRangeGenerator& other); - - const ContainerType container_; -}; // class ValuesInIteratorRangeGenerator - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Stores a parameter value and later creates tests parameterized with that -// value. -template -class ParameterizedTestFactory : public TestFactoryBase { - public: - typedef typename TestClass::ParamType ParamType; - explicit ParameterizedTestFactory(ParamType parameter) : - parameter_(parameter) {} - virtual Test* CreateTest() { - TestClass::SetParam(¶meter_); - return new TestClass(); - } - - private: - const ParamType parameter_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory); -}; - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// TestMetaFactoryBase is a base class for meta-factories that create -// test factories for passing into MakeAndRegisterTestInfo function. -template -class TestMetaFactoryBase { - public: - virtual ~TestMetaFactoryBase() {} - - virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0; -}; - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// TestMetaFactory creates test factories for passing into -// MakeAndRegisterTestInfo function. Since MakeAndRegisterTestInfo receives -// ownership of test factory pointer, same factory object cannot be passed -// into that method twice. But ParameterizedTestCaseInfo is going to call -// it for each Test/Parameter value combination. Thus it needs meta factory -// creator class. -template -class TestMetaFactory - : public TestMetaFactoryBase { - public: - typedef typename TestCase::ParamType ParamType; - - TestMetaFactory() {} - - virtual TestFactoryBase* CreateTestFactory(ParamType parameter) { - return new ParameterizedTestFactory(parameter); - } - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestMetaFactory); -}; - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// ParameterizedTestCaseInfoBase is a generic interface -// to ParameterizedTestCaseInfo classes. ParameterizedTestCaseInfoBase -// accumulates test information provided by TEST_P macro invocations -// and generators provided by INSTANTIATE_TEST_CASE_P macro invocations -// and uses that information to register all resulting test instances -// in RegisterTests method. The ParameterizeTestCaseRegistry class holds -// a collection of pointers to the ParameterizedTestCaseInfo objects -// and calls RegisterTests() on each of them when asked. -class ParameterizedTestCaseInfoBase { - public: - virtual ~ParameterizedTestCaseInfoBase() {} - - // Base part of test case name for display purposes. - virtual const String& GetTestCaseName() const = 0; - // Test case id to verify identity. - virtual TypeId GetTestCaseTypeId() const = 0; - // UnitTest class invokes this method to register tests in this - // test case right before running them in RUN_ALL_TESTS macro. - // This method should not be called more then once on any single - // instance of a ParameterizedTestCaseInfoBase derived class. - virtual void RegisterTests() = 0; - - protected: - ParameterizedTestCaseInfoBase() {} - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfoBase); -}; - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// ParameterizedTestCaseInfo accumulates tests obtained from TEST_P -// macro invocations for a particular test case and generators -// obtained from INSTANTIATE_TEST_CASE_P macro invocations for that -// test case. It registers tests with all values generated by all -// generators when asked. -template -class ParameterizedTestCaseInfo : public ParameterizedTestCaseInfoBase { - public: - // ParamType and GeneratorCreationFunc are private types but are required - // for declarations of public methods AddTestPattern() and - // AddTestCaseInstantiation(). - typedef typename TestCase::ParamType ParamType; - // A function that returns an instance of appropriate generator type. - typedef ParamGenerator(GeneratorCreationFunc)(); - - explicit ParameterizedTestCaseInfo(const char* name) - : test_case_name_(name) {} - - // Test case base name for display purposes. - virtual const String& GetTestCaseName() const { return test_case_name_; } - // Test case id to verify identity. - virtual TypeId GetTestCaseTypeId() const { return GetTypeId(); } - // TEST_P macro uses AddTestPattern() to record information - // about a single test in a LocalTestInfo structure. - // test_case_name is the base name of the test case (without invocation - // prefix). test_base_name is the name of an individual test without - // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is - // test case base name and DoBar is test base name. - void AddTestPattern(const char* test_case_name, - const char* test_base_name, - TestMetaFactoryBase* meta_factory) { - tests_.push_back(linked_ptr(new TestInfo(test_case_name, - test_base_name, - meta_factory))); - } - // INSTANTIATE_TEST_CASE_P macro uses AddGenerator() to record information - // about a generator. - int AddTestCaseInstantiation(const char* instantiation_name, - GeneratorCreationFunc* func, - const char* /* file */, - int /* line */) { - instantiations_.push_back(::std::make_pair(instantiation_name, func)); - return 0; // Return value used only to run this method in namespace scope. - } - // UnitTest class invokes this method to register tests in this test case - // test cases right before running tests in RUN_ALL_TESTS macro. - // This method should not be called more then once on any single - // instance of a ParameterizedTestCaseInfoBase derived class. - // UnitTest has a guard to prevent from calling this method more then once. - virtual void RegisterTests() { - for (typename TestInfoContainer::iterator test_it = tests_.begin(); - test_it != tests_.end(); ++test_it) { - linked_ptr test_info = *test_it; - for (typename InstantiationContainer::iterator gen_it = - instantiations_.begin(); gen_it != instantiations_.end(); - ++gen_it) { - const String& instantiation_name = gen_it->first; - ParamGenerator generator((*gen_it->second)()); - - Message test_case_name_stream; - if ( !instantiation_name.empty() ) - test_case_name_stream << instantiation_name.c_str() << "/"; - test_case_name_stream << test_info->test_case_base_name.c_str(); - - int i = 0; - for (typename ParamGenerator::iterator param_it = - generator.begin(); - param_it != generator.end(); ++param_it, ++i) { - Message test_name_stream; - test_name_stream << test_info->test_base_name.c_str() << "/" << i; - ::testing::internal::MakeAndRegisterTestInfo( - test_case_name_stream.GetString().c_str(), - test_name_stream.GetString().c_str(), - "", // test_case_comment - "", // comment; TODO(vladl@google.com): provide parameter value - // representation. - GetTestCaseTypeId(), - TestCase::SetUpTestCase, - TestCase::TearDownTestCase, - test_info->test_meta_factory->CreateTestFactory(*param_it)); - } // for param_it - } // for gen_it - } // for test_it - } // RegisterTests - - private: - // LocalTestInfo structure keeps information about a single test registered - // with TEST_P macro. - struct TestInfo { - TestInfo(const char* a_test_case_base_name, - const char* a_test_base_name, - TestMetaFactoryBase* a_test_meta_factory) : - test_case_base_name(a_test_case_base_name), - test_base_name(a_test_base_name), - test_meta_factory(a_test_meta_factory) {} - - const String test_case_base_name; - const String test_base_name; - const scoped_ptr > test_meta_factory; - }; - typedef ::std::vector > TestInfoContainer; - // Keeps pairs of - // received from INSTANTIATE_TEST_CASE_P macros. - typedef ::std::vector > - InstantiationContainer; - - const String test_case_name_; - TestInfoContainer tests_; - InstantiationContainer instantiations_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfo); -}; // class ParameterizedTestCaseInfo - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// ParameterizedTestCaseRegistry contains a map of ParameterizedTestCaseInfoBase -// classes accessed by test case names. TEST_P and INSTANTIATE_TEST_CASE_P -// macros use it to locate their corresponding ParameterizedTestCaseInfo -// descriptors. -class ParameterizedTestCaseRegistry { - public: - ParameterizedTestCaseRegistry() {} - ~ParameterizedTestCaseRegistry() { - for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); - it != test_case_infos_.end(); ++it) { - delete *it; - } - } - - // Looks up or creates and returns a structure containing information about - // tests and instantiations of a particular test case. - template - ParameterizedTestCaseInfo* GetTestCasePatternHolder( - const char* test_case_name, - const char* file, - int line) { - ParameterizedTestCaseInfo* typed_test_info = NULL; - for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); - it != test_case_infos_.end(); ++it) { - if ((*it)->GetTestCaseName() == test_case_name) { - if ((*it)->GetTestCaseTypeId() != GetTypeId()) { - // Complain about incorrect usage of Google Test facilities - // and terminate the program since we cannot guaranty correct - // test case setup and tear-down in this case. - ReportInvalidTestCaseType(test_case_name, file, line); - abort(); - } else { - // At this point we are sure that the object we found is of the same - // type we are looking for, so we downcast it to that type - // without further checks. - typed_test_info = CheckedDowncastToActualType< - ParameterizedTestCaseInfo >(*it); - } - break; - } - } - if (typed_test_info == NULL) { - typed_test_info = new ParameterizedTestCaseInfo(test_case_name); - test_case_infos_.push_back(typed_test_info); - } - return typed_test_info; - } - void RegisterTests() { - for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); - it != test_case_infos_.end(); ++it) { - (*it)->RegisterTests(); - } - } - - private: - typedef ::std::vector TestCaseInfoContainer; - - TestCaseInfoContainer test_case_infos_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseRegistry); -}; - -} // namespace internal -} // namespace testing - -#endif // GTEST_HAS_PARAM_TEST - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-port.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-port.h deleted file mode 100644 index a2a62be92..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-port.h +++ /dev/null @@ -1,1497 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: wan@google.com (Zhanyong Wan) -// -// Low-level types and utilities for porting Google Test to various -// platforms. They are subject to change without notice. DO NOT USE -// THEM IN USER CODE. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ - -// The user can define the following macros in the build script to -// control Google Test's behavior. If the user doesn't define a macro -// in this list, Google Test will define it. -// -// GTEST_HAS_CLONE - Define it to 1/0 to indicate that clone(2) -// is/isn't available. -// GTEST_HAS_EXCEPTIONS - Define it to 1/0 to indicate that exceptions -// are enabled. -// GTEST_HAS_GLOBAL_STRING - Define it to 1/0 to indicate that ::string -// is/isn't available (some systems define -// ::string, which is different to std::string). -// GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::string -// is/isn't available (some systems define -// ::wstring, which is different to std::wstring). -// GTEST_HAS_PTHREAD - Define it to 1/0 to indicate that -// is/isn't available. -// GTEST_HAS_RTTI - Define it to 1/0 to indicate that RTTI is/isn't -// enabled. -// GTEST_HAS_STD_WSTRING - Define it to 1/0 to indicate that -// std::wstring does/doesn't work (Google Test can -// be used where std::wstring is unavailable). -// GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple -// is/isn't available. -// GTEST_HAS_SEH - Define it to 1/0 to indicate whether the -// compiler supports Microsoft's "Structured -// Exception Handling". -// GTEST_USE_OWN_TR1_TUPLE - Define it to 1/0 to indicate whether Google -// Test's own tr1 tuple implementation should be -// used. Unused when the user sets -// GTEST_HAS_TR1_TUPLE to 0. -// GTEST_LINKED_AS_SHARED_LIBRARY -// - Define to 1 when compiling tests that use -// Google Test as a shared library (known as -// DLL on Windows). -// GTEST_CREATE_SHARED_LIBRARY -// - Define to 1 when compiling Google Test itself -// as a shared library. - -// This header defines the following utilities: -// -// Macros indicating the current platform (defined to 1 if compiled on -// the given platform; otherwise undefined): -// GTEST_OS_AIX - IBM AIX -// GTEST_OS_CYGWIN - Cygwin -// GTEST_OS_LINUX - Linux -// GTEST_OS_MAC - Mac OS X -// GTEST_OS_SOLARIS - Sun Solaris -// GTEST_OS_SYMBIAN - Symbian -// GTEST_OS_WINDOWS - Windows (Desktop, MinGW, or Mobile) -// GTEST_OS_WINDOWS_DESKTOP - Windows Desktop -// GTEST_OS_WINDOWS_MINGW - MinGW -// GTEST_OS_WINDOWS_MOBILE - Windows Mobile -// GTEST_OS_ZOS - z/OS -// -// Among the platforms, Cygwin, Linux, Max OS X, and Windows have the -// most stable support. Since core members of the Google Test project -// don't have access to other platforms, support for them may be less -// stable. If you notice any problems on your platform, please notify -// googletestframework@googlegroups.com (patches for fixing them are -// even more welcome!). -// -// Note that it is possible that none of the GTEST_OS_* macros are defined. -// -// Macros indicating available Google Test features (defined to 1 if -// the corresponding feature is supported; otherwise undefined): -// GTEST_HAS_COMBINE - the Combine() function (for value-parameterized -// tests) -// GTEST_HAS_DEATH_TEST - death tests -// GTEST_HAS_PARAM_TEST - value-parameterized tests -// GTEST_HAS_TYPED_TEST - typed tests -// GTEST_HAS_TYPED_TEST_P - type-parameterized tests -// GTEST_USES_POSIX_RE - enhanced POSIX regex is used. -// GTEST_USES_SIMPLE_RE - our own simple regex is used; -// the above two are mutually exclusive. -// GTEST_CAN_COMPARE_NULL - accepts untyped NULL in EXPECT_EQ(). -// -// Macros for basic C++ coding: -// GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning. -// GTEST_ATTRIBUTE_UNUSED_ - declares that a class' instances or a -// variable don't have to be used. -// GTEST_DISALLOW_ASSIGN_ - disables operator=. -// GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=. -// GTEST_MUST_USE_RESULT_ - declares that a function's result must be used. -// -// Synchronization: -// Mutex, MutexLock, ThreadLocal, GetThreadCount() -// - synchronization primitives. -// GTEST_IS_THREADSAFE - defined to 1 to indicate that the above -// synchronization primitives have real implementations -// and Google Test is thread-safe; or 0 otherwise. -// -// Template meta programming: -// is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. -// -// Smart pointers: -// scoped_ptr - as in TR2. -// -// Regular expressions: -// RE - a simple regular expression class using the POSIX -// Extended Regular Expression syntax. Not available on -// Windows. -// -// Logging: -// GTEST_LOG_() - logs messages at the specified severity level. -// LogToStderr() - directs all log messages to stderr. -// FlushInfoLog() - flushes informational log messages. -// -// Stdout and stderr capturing: -// CaptureStdout() - starts capturing stdout. -// GetCapturedStdout() - stops capturing stdout and returns the captured -// string. -// CaptureStderr() - starts capturing stderr. -// GetCapturedStderr() - stops capturing stderr and returns the captured -// string. -// -// Integer types: -// TypeWithSize - maps an integer to a int type. -// Int32, UInt32, Int64, UInt64, TimeInMillis -// - integers of known sizes. -// BiggestInt - the biggest signed integer type. -// -// Command-line utilities: -// GTEST_FLAG() - references a flag. -// GTEST_DECLARE_*() - declares a flag. -// GTEST_DEFINE_*() - defines a flag. -// GetArgvs() - returns the command line as a vector of strings. -// -// Environment variable utilities: -// GetEnv() - gets the value of an environment variable. -// BoolFromGTestEnv() - parses a bool environment variable. -// Int32FromGTestEnv() - parses an Int32 environment variable. -// StringFromGTestEnv() - parses a string environment variable. - -#include // For ptrdiff_t -#include -#include -#include -#ifndef _WIN32_WCE -#include -#endif // !_WIN32_WCE - -#include // NOLINT -#include // NOLINT -#include // NOLINT - -#define GTEST_DEV_EMAIL_ "googletestframework@@googlegroups.com" -#define GTEST_FLAG_PREFIX_ "gtest_" -#define GTEST_FLAG_PREFIX_DASH_ "gtest-" -#define GTEST_FLAG_PREFIX_UPPER_ "GTEST_" -#define GTEST_NAME_ "Google Test" -#define GTEST_PROJECT_URL_ "http://code.google.com/p/googletest/" - -// Determines the version of gcc that is used to compile this. -#ifdef __GNUC__ -// 40302 means version 4.3.2. -#define GTEST_GCC_VER_ \ - (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__) -#endif // __GNUC__ - -// Determines the platform on which Google Test is compiled. -#ifdef __CYGWIN__ -#define GTEST_OS_CYGWIN 1 -#elif defined __SYMBIAN32__ -#define GTEST_OS_SYMBIAN 1 -#elif defined _WIN32 -#define GTEST_OS_WINDOWS 1 -#ifdef _WIN32_WCE -#define GTEST_OS_WINDOWS_MOBILE 1 -#elif defined(__MINGW__) || defined(__MINGW32__) -#define GTEST_OS_WINDOWS_MINGW 1 -#else -#define GTEST_OS_WINDOWS_DESKTOP 1 -#endif // _WIN32_WCE -#elif defined __APPLE__ -#define GTEST_OS_MAC 1 -#elif defined __linux__ -#define GTEST_OS_LINUX 1 -#elif defined __MVS__ -#define GTEST_OS_ZOS 1 -#elif defined(__sun) && defined(__SVR4) -#define GTEST_OS_SOLARIS 1 -#elif defined(_AIX) -#define GTEST_OS_AIX 1 -#endif // __CYGWIN__ - -#if GTEST_OS_CYGWIN || GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_SYMBIAN || \ - GTEST_OS_SOLARIS || GTEST_OS_AIX - -// On some platforms, needs someone to define size_t, and -// won't compile otherwise. We can #include it here as we already -// included , which is guaranteed to define size_t through -// . -#include // NOLINT -#include // NOLINT -#include // NOLINT -#include // NOLINT -#include // NOLINT - -#define GTEST_USES_POSIX_RE 1 - -#elif GTEST_OS_WINDOWS - -#if !GTEST_OS_WINDOWS_MOBILE -#include // NOLINT -#include // NOLINT -#endif - -// is not available on Windows. Use our own simple regex -// implementation instead. -#define GTEST_USES_SIMPLE_RE 1 - -#else - -// may not be available on this platform. Use our own -// simple regex implementation instead. -#define GTEST_USES_SIMPLE_RE 1 - -#endif // GTEST_OS_CYGWIN || GTEST_OS_LINUX || GTEST_OS_MAC || - // GTEST_OS_SYMBIAN || GTEST_OS_SOLARIS || GTEST_OS_AIX - -#ifndef GTEST_HAS_EXCEPTIONS -// The user didn't tell us whether exceptions are enabled, so we need -// to figure it out. -#if defined(_MSC_VER) || defined(__BORLANDC__) -// MSVC's and C++Builder's implementations of the STL use the _HAS_EXCEPTIONS -// macro to enable exceptions, so we'll do the same. -// Assumes that exceptions are enabled by default. -#ifndef _HAS_EXCEPTIONS -#define _HAS_EXCEPTIONS 1 -#endif // _HAS_EXCEPTIONS -#define GTEST_HAS_EXCEPTIONS _HAS_EXCEPTIONS -#elif defined(__GNUC__) && __EXCEPTIONS -// gcc defines __EXCEPTIONS to 1 iff exceptions are enabled. -#define GTEST_HAS_EXCEPTIONS 1 -#elif defined(__SUNPRO_CC) -// Sun Pro CC supports exceptions. However, there is no compile-time way of -// detecting whether they are enabled or not. Therefore, we assume that -// they are enabled unless the user tells us otherwise. -#define GTEST_HAS_EXCEPTIONS 1 -#elif defined(__IBMCPP__) && __EXCEPTIONS -// xlC defines __EXCEPTIONS to 1 iff exceptions are enabled. -#define GTEST_HAS_EXCEPTIONS 1 -#else -// For other compilers, we assume exceptions are disabled to be -// conservative. -#define GTEST_HAS_EXCEPTIONS 0 -#endif // defined(_MSC_VER) || defined(__BORLANDC__) -#endif // GTEST_HAS_EXCEPTIONS - -#if !defined(GTEST_HAS_STD_STRING) -// Even though we don't use this macro any longer, we keep it in case -// some clients still depend on it. -#define GTEST_HAS_STD_STRING 1 -#elif !GTEST_HAS_STD_STRING -// The user told us that ::std::string isn't available. -#error "Google Test cannot be used where ::std::string isn't available." -#endif // !defined(GTEST_HAS_STD_STRING) - -#ifndef GTEST_HAS_GLOBAL_STRING -// The user didn't tell us whether ::string is available, so we need -// to figure it out. - -#define GTEST_HAS_GLOBAL_STRING 0 - -#endif // GTEST_HAS_GLOBAL_STRING - -#ifndef GTEST_HAS_STD_WSTRING -// The user didn't tell us whether ::std::wstring is available, so we need -// to figure it out. -// TODO(wan@google.com): uses autoconf to detect whether ::std::wstring -// is available. - -// Cygwin 1.5 and below doesn't support ::std::wstring. -// Cygwin 1.7 might add wstring support; this should be updated when clear. -// Solaris' libc++ doesn't support it either. -#define GTEST_HAS_STD_WSTRING (!(GTEST_OS_CYGWIN || GTEST_OS_SOLARIS)) - -#endif // GTEST_HAS_STD_WSTRING - -#ifndef GTEST_HAS_GLOBAL_WSTRING -// The user didn't tell us whether ::wstring is available, so we need -// to figure it out. -#define GTEST_HAS_GLOBAL_WSTRING \ - (GTEST_HAS_STD_WSTRING && GTEST_HAS_GLOBAL_STRING) -#endif // GTEST_HAS_GLOBAL_WSTRING - -// Determines whether RTTI is available. -#ifndef GTEST_HAS_RTTI -// The user didn't tell us whether RTTI is enabled, so we need to -// figure it out. - -#ifdef _MSC_VER - -#ifdef _CPPRTTI // MSVC defines this macro iff RTTI is enabled. -#define GTEST_HAS_RTTI 1 -#else -#define GTEST_HAS_RTTI 0 -#endif - -// Starting with version 4.3.2, gcc defines __GXX_RTTI iff RTTI is enabled. -#elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40302) - -#ifdef __GXX_RTTI -#define GTEST_HAS_RTTI 1 -#else -#define GTEST_HAS_RTTI 0 -#endif // __GXX_RTTI - -// Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if -// both the typeid and dynamic_cast features are present. -#elif defined(__IBMCPP__) && (__IBMCPP__ >= 900) - -#ifdef __RTTI_ALL__ -#define GTEST_HAS_RTTI 1 -#else -#define GTEST_HAS_RTTI 0 -#endif - -#else - -// For all other compilers, we assume RTTI is enabled. -#define GTEST_HAS_RTTI 1 - -#endif // _MSC_VER - -#endif // GTEST_HAS_RTTI - -// It's this header's responsibility to #include when RTTI -// is enabled. -#if GTEST_HAS_RTTI -#include -#endif - -// Determines whether Google Test can use the pthreads library. -#ifndef GTEST_HAS_PTHREAD -// The user didn't tell us explicitly, so we assume pthreads support is -// available on Linux and Mac. -// -// To disable threading support in Google Test, add -DGTEST_HAS_PTHREAD=0 -// to your compiler flags. -#define GTEST_HAS_PTHREAD (GTEST_OS_LINUX || GTEST_OS_MAC) -#endif // GTEST_HAS_PTHREAD - -// Determines whether Google Test can use tr1/tuple. You can define -// this macro to 0 to prevent Google Test from using tuple (any -// feature depending on tuple with be disabled in this mode). -#ifndef GTEST_HAS_TR1_TUPLE -// The user didn't tell us not to do it, so we assume it's OK. -#define GTEST_HAS_TR1_TUPLE 1 -#endif // GTEST_HAS_TR1_TUPLE - -// Determines whether Google Test's own tr1 tuple implementation -// should be used. -#ifndef GTEST_USE_OWN_TR1_TUPLE -// The user didn't tell us, so we need to figure it out. - -// We use our own TR1 tuple if we aren't sure the user has an -// implementation of it already. At this time, GCC 4.0.0+ and MSVC -// 2010 are the only mainstream compilers that come with a TR1 tuple -// implementation. NVIDIA's CUDA NVCC compiler pretends to be GCC by -// defining __GNUC__ and friends, but cannot compile GCC's tuple -// implementation. MSVC 2008 (9.0) provides TR1 tuple in a 323 MB -// Feature Pack download, which we cannot assume the user has. -#if (defined(__GNUC__) && !defined(__CUDACC__) && (GTEST_GCC_VER_ >= 40000)) \ - || _MSC_VER >= 1600 -#define GTEST_USE_OWN_TR1_TUPLE 0 -#else -#define GTEST_USE_OWN_TR1_TUPLE 1 -#endif - -#endif // GTEST_USE_OWN_TR1_TUPLE - -// To avoid conditional compilation everywhere, we make it -// gtest-port.h's responsibility to #include the header implementing -// tr1/tuple. -#if GTEST_HAS_TR1_TUPLE - -#if GTEST_USE_OWN_TR1_TUPLE -#include -#elif GTEST_OS_SYMBIAN - -// On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to -// use STLport's tuple implementation, which unfortunately doesn't -// work as the copy of STLport distributed with Symbian is incomplete. -// By making sure BOOST_HAS_TR1_TUPLE is undefined, we force Boost to -// use its own tuple implementation. -#ifdef BOOST_HAS_TR1_TUPLE -#undef BOOST_HAS_TR1_TUPLE -#endif // BOOST_HAS_TR1_TUPLE - -// This prevents , which defines -// BOOST_HAS_TR1_TUPLE, from being #included by Boost's . -#define BOOST_TR1_DETAIL_CONFIG_HPP_INCLUDED -#include - -#elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000) -// GCC 4.0+ implements tr1/tuple in the header. This does -// not conform to the TR1 spec, which requires the header to be . - -#if !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302 -// Until version 4.3.2, gcc has a bug that causes , -// which is #included by , to not compile when RTTI is -// disabled. _TR1_FUNCTIONAL is the header guard for -// . Hence the following #define is a hack to prevent -// from being included. -#define _TR1_FUNCTIONAL 1 -#include -#undef _TR1_FUNCTIONAL // Allows the user to #include - // if he chooses to. -#else -#include // NOLINT -#endif // !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302 - -#else -// If the compiler is not GCC 4.0+, we assume the user is using a -// spec-conforming TR1 implementation. -#include // NOLINT -#endif // GTEST_USE_OWN_TR1_TUPLE - -#endif // GTEST_HAS_TR1_TUPLE - -// Determines whether clone(2) is supported. -// Usually it will only be available on Linux, excluding -// Linux on the Itanium architecture. -// Also see http://linux.die.net/man/2/clone. -#ifndef GTEST_HAS_CLONE -// The user didn't tell us, so we need to figure it out. - -#if GTEST_OS_LINUX && !defined(__ia64__) -#define GTEST_HAS_CLONE 1 -#else -#define GTEST_HAS_CLONE 0 -#endif // GTEST_OS_LINUX && !defined(__ia64__) - -#endif // GTEST_HAS_CLONE - -// Determines whether to support stream redirection. This is used to test -// output correctness and to implement death tests. -#if !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_SYMBIAN -#define GTEST_HAS_STREAM_REDIRECTION_ 1 -#endif // !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_SYMBIAN - -// Determines whether to support death tests. -// Google Test does not support death tests for VC 7.1 and earlier as -// abort() in a VC 7.1 application compiled as GUI in debug config -// pops up a dialog window that cannot be suppressed programmatically. -#if (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \ - (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \ - GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX) -#define GTEST_HAS_DEATH_TEST 1 -#include // NOLINT -#endif - -// We don't support MSVC 7.1 with exceptions disabled now. Therefore -// all the compilers we care about are adequate for supporting -// value-parameterized tests. -#define GTEST_HAS_PARAM_TEST 1 - -// Determines whether to support type-driven tests. - -// Typed tests need and variadic macros, which GCC, VC++ 8.0, -// Sun Pro CC, and IBM Visual Age support. -#if defined(__GNUC__) || (_MSC_VER >= 1400) || defined(__SUNPRO_CC) || \ - defined(__IBMCPP__) -#define GTEST_HAS_TYPED_TEST 1 -#define GTEST_HAS_TYPED_TEST_P 1 -#endif - -// Determines whether to support Combine(). This only makes sense when -// value-parameterized tests are enabled. The implementation doesn't -// work on Sun Studio since it doesn't understand templated conversion -// operators. -#if GTEST_HAS_PARAM_TEST && GTEST_HAS_TR1_TUPLE && !defined(__SUNPRO_CC) -#define GTEST_HAS_COMBINE 1 -#endif - -// Determines whether the system compiler uses UTF-16 for encoding wide strings. -#define GTEST_WIDE_STRING_USES_UTF16_ \ - (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_SYMBIAN || GTEST_OS_AIX) - -// Defines some utility macros. - -// The GNU compiler emits a warning if nested "if" statements are followed by -// an "else" statement and braces are not used to explicitly disambiguate the -// "else" binding. This leads to problems with code like: -// -// if (gate) -// ASSERT_*(condition) << "Some message"; -// -// The "switch (0) case 0:" idiom is used to suppress this. -#ifdef __INTEL_COMPILER -#define GTEST_AMBIGUOUS_ELSE_BLOCKER_ -#else -#define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: // NOLINT -#endif - -// Use this annotation at the end of a struct/class definition to -// prevent the compiler from optimizing away instances that are never -// used. This is useful when all interesting logic happens inside the -// c'tor and / or d'tor. Example: -// -// struct Foo { -// Foo() { ... } -// } GTEST_ATTRIBUTE_UNUSED_; -// -// Also use it after a variable or parameter declaration to tell the -// compiler the variable/parameter does not have to be used. -#if defined(__GNUC__) && !defined(COMPILER_ICC) -#define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused)) -#else -#define GTEST_ATTRIBUTE_UNUSED_ -#endif - -// A macro to disallow operator= -// This should be used in the private: declarations for a class. -#define GTEST_DISALLOW_ASSIGN_(type)\ - void operator=(type const &) - -// A macro to disallow copy constructor and operator= -// This should be used in the private: declarations for a class. -#define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)\ - type(type const &);\ - GTEST_DISALLOW_ASSIGN_(type) - -// Tell the compiler to warn about unused return values for functions declared -// with this macro. The macro should be used on function declarations -// following the argument list: -// -// Sprocket* AllocateSprocket() GTEST_MUST_USE_RESULT_; -#if defined(__GNUC__) && (GTEST_GCC_VER_ >= 30400) && !defined(COMPILER_ICC) -#define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result)) -#else -#define GTEST_MUST_USE_RESULT_ -#endif // __GNUC__ && (GTEST_GCC_VER_ >= 30400) && !COMPILER_ICC - -// Determine whether the compiler supports Microsoft's Structured Exception -// Handling. This is supported by several Windows compilers but generally -// does not exist on any other system. -#ifndef GTEST_HAS_SEH -// The user didn't tell us, so we need to figure it out. - -#if defined(_MSC_VER) || defined(__BORLANDC__) -// These two compilers are known to support SEH. -#define GTEST_HAS_SEH 1 -#else -// Assume no SEH. -#define GTEST_HAS_SEH 0 -#endif - -#endif // GTEST_HAS_SEH - -#ifdef _MSC_VER - -#if GTEST_LINKED_AS_SHARED_LIBRARY -#define GTEST_API_ __declspec(dllimport) -#elif GTEST_CREATE_SHARED_LIBRARY -#define GTEST_API_ __declspec(dllexport) -#endif - -#endif // _MSC_VER - -#ifndef GTEST_API_ -#define GTEST_API_ -#endif - -namespace testing { - -class Message; - -namespace internal { - -class String; - -typedef ::std::stringstream StrStream; - -// A helper for suppressing warnings on constant condition. It just -// returns 'condition'. -GTEST_API_ bool IsTrue(bool condition); - -// Defines scoped_ptr. - -// This implementation of scoped_ptr is PARTIAL - it only contains -// enough stuff to satisfy Google Test's need. -template -class scoped_ptr { - public: - typedef T element_type; - - explicit scoped_ptr(T* p = NULL) : ptr_(p) {} - ~scoped_ptr() { reset(); } - - T& operator*() const { return *ptr_; } - T* operator->() const { return ptr_; } - T* get() const { return ptr_; } - - T* release() { - T* const ptr = ptr_; - ptr_ = NULL; - return ptr; - } - - void reset(T* p = NULL) { - if (p != ptr_) { - if (IsTrue(sizeof(T) > 0)) { // Makes sure T is a complete type. - delete ptr_; - } - ptr_ = p; - } - } - private: - T* ptr_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr); -}; - -// Defines RE. - -// A simple C++ wrapper for . It uses the POSIX Extended -// Regular Expression syntax. -class GTEST_API_ RE { - public: - // A copy constructor is required by the Standard to initialize object - // references from r-values. - RE(const RE& other) { Init(other.pattern()); } - - // Constructs an RE from a string. - RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT - -#if GTEST_HAS_GLOBAL_STRING - RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT -#endif // GTEST_HAS_GLOBAL_STRING - - RE(const char* regex) { Init(regex); } // NOLINT - ~RE(); - - // Returns the string representation of the regex. - const char* pattern() const { return pattern_; } - - // FullMatch(str, re) returns true iff regular expression re matches - // the entire str. - // PartialMatch(str, re) returns true iff regular expression re - // matches a substring of str (including str itself). - // - // TODO(wan@google.com): make FullMatch() and PartialMatch() work - // when str contains NUL characters. - static bool FullMatch(const ::std::string& str, const RE& re) { - return FullMatch(str.c_str(), re); - } - static bool PartialMatch(const ::std::string& str, const RE& re) { - return PartialMatch(str.c_str(), re); - } - -#if GTEST_HAS_GLOBAL_STRING - static bool FullMatch(const ::string& str, const RE& re) { - return FullMatch(str.c_str(), re); - } - static bool PartialMatch(const ::string& str, const RE& re) { - return PartialMatch(str.c_str(), re); - } -#endif // GTEST_HAS_GLOBAL_STRING - - static bool FullMatch(const char* str, const RE& re); - static bool PartialMatch(const char* str, const RE& re); - - private: - void Init(const char* regex); - - // We use a const char* instead of a string, as Google Test may be used - // where string is not available. We also do not use Google Test's own - // String type here, in order to simplify dependencies between the - // files. - const char* pattern_; - bool is_valid_; -#if GTEST_USES_POSIX_RE - regex_t full_regex_; // For FullMatch(). - regex_t partial_regex_; // For PartialMatch(). -#else // GTEST_USES_SIMPLE_RE - const char* full_pattern_; // For FullMatch(); -#endif - - GTEST_DISALLOW_ASSIGN_(RE); -}; - -// Defines logging utilities: -// GTEST_LOG_(severity) - logs messages at the specified severity level. The -// message itself is streamed into the macro. -// LogToStderr() - directs all log messages to stderr. -// FlushInfoLog() - flushes informational log messages. - -enum GTestLogSeverity { - GTEST_INFO, - GTEST_WARNING, - GTEST_ERROR, - GTEST_FATAL -}; - -// Formats log entry severity, provides a stream object for streaming the -// log message, and terminates the message with a newline when going out of -// scope. -class GTEST_API_ GTestLog { - public: - GTestLog(GTestLogSeverity severity, const char* file, int line); - - // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. - ~GTestLog(); - - ::std::ostream& GetStream() { return ::std::cerr; } - - private: - const GTestLogSeverity severity_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestLog); -}; - -#define GTEST_LOG_(severity) \ - ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \ - __FILE__, __LINE__).GetStream() - -inline void LogToStderr() {} -inline void FlushInfoLog() { fflush(NULL); } - -// INTERNAL IMPLEMENTATION - DO NOT USE. -// -// GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition -// is not satisfied. -// Synopsys: -// GTEST_CHECK_(boolean_condition); -// or -// GTEST_CHECK_(boolean_condition) << "Additional message"; -// -// This checks the condition and if the condition is not satisfied -// it prints message about the condition violation, including the -// condition itself, plus additional message streamed into it, if any, -// and then it aborts the program. It aborts the program irrespective of -// whether it is built in the debug mode or not. -#define GTEST_CHECK_(condition) \ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ - if (::testing::internal::IsTrue(condition)) \ - ; \ - else \ - GTEST_LOG_(FATAL) << "Condition " #condition " failed. " - -// An all-mode assert to verify that the given POSIX-style function -// call returns 0 (indicating success). Known limitation: this -// doesn't expand to a balanced 'if' statement, so enclose the macro -// in {} if you need to use it as the only statement in an 'if' -// branch. -#define GTEST_CHECK_POSIX_SUCCESS_(posix_call) \ - if (const int gtest_error = (posix_call)) \ - GTEST_LOG_(FATAL) << #posix_call << "failed with error " \ - << gtest_error - -// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. -// -// Downcasts the pointer of type Base to Derived. -// Derived must be a subclass of Base. The parameter MUST -// point to a class of type Derived, not any subclass of it. -// When RTTI is available, the function performs a runtime -// check to enforce this. -template -Derived* CheckedDowncastToActualType(Base* base) { -#if GTEST_HAS_RTTI - GTEST_CHECK_(typeid(*base) == typeid(Derived)); - return dynamic_cast(base); // NOLINT -#else - return static_cast(base); // Poor man's downcast. -#endif -} - -#if GTEST_HAS_STREAM_REDIRECTION_ - -// Defines the stderr capturer: -// CaptureStdout - starts capturing stdout. -// GetCapturedStdout - stops capturing stdout and returns the captured string. -// CaptureStderr - starts capturing stderr. -// GetCapturedStderr - stops capturing stderr and returns the captured string. -// -GTEST_API_ void CaptureStdout(); -GTEST_API_ String GetCapturedStdout(); -GTEST_API_ void CaptureStderr(); -GTEST_API_ String GetCapturedStderr(); - -#endif // GTEST_HAS_STREAM_REDIRECTION_ - - -#if GTEST_HAS_DEATH_TEST - -// A copy of all command line arguments. Set by InitGoogleTest(). -extern ::std::vector g_argvs; - -// GTEST_HAS_DEATH_TEST implies we have ::std::string. -const ::std::vector& GetArgvs(); - -#endif // GTEST_HAS_DEATH_TEST - -// Defines synchronization primitives. - -#if GTEST_HAS_PTHREAD - -// Sleeps for (roughly) n milli-seconds. This function is only for -// testing Google Test's own constructs. Don't use it in user tests, -// either directly or indirectly. -inline void SleepMilliseconds(int n) { - const timespec time = { - 0, // 0 seconds. - n * 1000L * 1000L, // And n ms. - }; - nanosleep(&time, NULL); -} - -// Allows a controller thread to pause execution of newly created -// threads until notified. Instances of this class must be created -// and destroyed in the controller thread. -// -// This class is only for testing Google Test's own constructs. Do not -// use it in user tests, either directly or indirectly. -class Notification { - public: - Notification() : notified_(false) {} - - // Notifies all threads created with this notification to start. Must - // be called from the controller thread. - void Notify() { notified_ = true; } - - // Blocks until the controller thread notifies. Must be called from a test - // thread. - void WaitForNotification() { - while(!notified_) { - SleepMilliseconds(10); - } - } - - private: - volatile bool notified_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); -}; - -// As a C-function, ThreadFuncWithCLinkage cannot be templated itself. -// Consequently, it cannot select a correct instantiation of ThreadWithParam -// in order to call its Run(). Introducing ThreadWithParamBase as a -// non-templated base class for ThreadWithParam allows us to bypass this -// problem. -class ThreadWithParamBase { - public: - virtual ~ThreadWithParamBase() {} - virtual void Run() = 0; -}; - -// pthread_create() accepts a pointer to a function type with the C linkage. -// According to the Standard (7.5/1), function types with different linkages -// are different even if they are otherwise identical. Some compilers (for -// example, SunStudio) treat them as different types. Since class methods -// cannot be defined with C-linkage we need to define a free C-function to -// pass into pthread_create(). -extern "C" inline void* ThreadFuncWithCLinkage(void* thread) { - static_cast(thread)->Run(); - return NULL; -} - -// Helper class for testing Google Test's multi-threading constructs. -// To use it, write: -// -// void ThreadFunc(int param) { /* Do things with param */ } -// Notification thread_can_start; -// ... -// // The thread_can_start parameter is optional; you can supply NULL. -// ThreadWithParam thread(&ThreadFunc, 5, &thread_can_start); -// thread_can_start.Notify(); -// -// These classes are only for testing Google Test's own constructs. Do -// not use them in user tests, either directly or indirectly. -template -class ThreadWithParam : public ThreadWithParamBase { - public: - typedef void (*UserThreadFunc)(T); - - ThreadWithParam( - UserThreadFunc func, T param, Notification* thread_can_start) - : func_(func), - param_(param), - thread_can_start_(thread_can_start), - finished_(false) { - ThreadWithParamBase* const base = this; - // The thread can be created only after all fields except thread_ - // have been initialized. - GTEST_CHECK_POSIX_SUCCESS_( - pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base)); - } - ~ThreadWithParam() { Join(); } - - void Join() { - if (!finished_) { - GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, 0)); - finished_ = true; - } - } - - virtual void Run() { - if (thread_can_start_ != NULL) - thread_can_start_->WaitForNotification(); - func_(param_); - } - - private: - const UserThreadFunc func_; // User-supplied thread function. - const T param_; // User-supplied parameter to the thread function. - // When non-NULL, used to block execution until the controller thread - // notifies. - Notification* const thread_can_start_; - bool finished_; // true iff we know that the thread function has finished. - pthread_t thread_; // The native thread object. - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam); -}; - -// gtest-port.h guarantees to #include when GTEST_HAS_PTHREAD is -// true. -#include - -// MutexBase and Mutex implement mutex on pthreads-based platforms. They -// are used in conjunction with class MutexLock: -// -// Mutex mutex; -// ... -// MutexLock lock(&mutex); // Acquires the mutex and releases it at the end -// // of the current scope. -// -// MutexBase implements behavior for both statically and dynamically -// allocated mutexes. Do not use MutexBase directly. Instead, write -// the following to define a static mutex: -// -// GTEST_DEFINE_STATIC_MUTEX_(g_some_mutex); -// -// You can forward declare a static mutex like this: -// -// GTEST_DECLARE_STATIC_MUTEX_(g_some_mutex); -// -// To create a dynamic mutex, just define an object of type Mutex. -class MutexBase { - public: - // Acquires this mutex. - void Lock() { - GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_)); - owner_ = pthread_self(); - } - - // Releases this mutex. - void Unlock() { - // We don't protect writing to owner_ here, as it's the caller's - // responsibility to ensure that the current thread holds the - // mutex when this is called. - owner_ = 0; - GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_)); - } - - // Does nothing if the current thread holds the mutex. Otherwise, crashes - // with high probability. - void AssertHeld() const { - GTEST_CHECK_(owner_ == pthread_self()) - << "The current thread is not holding the mutex @" << this; - } - - // A static mutex may be used before main() is entered. It may even - // be used before the dynamic initialization stage. Therefore we - // must be able to initialize a static mutex object at link time. - // This means MutexBase has to be a POD and its member variables - // have to be public. - public: - pthread_mutex_t mutex_; // The underlying pthread mutex. - pthread_t owner_; // The thread holding the mutex; 0 means no one holds it. -}; - -// Forward-declares a static mutex. -#define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ - extern ::testing::internal::MutexBase mutex - -// Defines and statically (i.e. at link time) initializes a static mutex. -#define GTEST_DEFINE_STATIC_MUTEX_(mutex) \ - ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, 0 } - -// The Mutex class can only be used for mutexes created at runtime. It -// shares its API with MutexBase otherwise. -class Mutex : public MutexBase { - public: - Mutex() { - GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL)); - owner_ = 0; - } - ~Mutex() { - GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&mutex_)); - } - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex); -}; - -// We cannot name this class MutexLock as the ctor declaration would -// conflict with a macro named MutexLock, which is defined on some -// platforms. Hence the typedef trick below. -class GTestMutexLock { - public: - explicit GTestMutexLock(MutexBase* mutex) - : mutex_(mutex) { mutex_->Lock(); } - - ~GTestMutexLock() { mutex_->Unlock(); } - - private: - MutexBase* const mutex_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock); -}; - -typedef GTestMutexLock MutexLock; - -// Helpers for ThreadLocal. - -// pthread_key_create() requires DeleteThreadLocalValue() to have -// C-linkage. Therefore it cannot be templatized to access -// ThreadLocal. Hence the need for class -// ThreadLocalValueHolderBase. -class ThreadLocalValueHolderBase { - public: - virtual ~ThreadLocalValueHolderBase() {} -}; - -// Called by pthread to delete thread-local data stored by -// pthread_setspecific(). -extern "C" inline void DeleteThreadLocalValue(void* value_holder) { - delete static_cast(value_holder); -} - -// Implements thread-local storage on pthreads-based systems. -// -// // Thread 1 -// ThreadLocal tl(100); // 100 is the default value for each thread. -// -// // Thread 2 -// tl.set(150); // Changes the value for thread 2 only. -// EXPECT_EQ(150, tl.get()); -// -// // Thread 1 -// EXPECT_EQ(100, tl.get()); // In thread 1, tl has the original value. -// tl.set(200); -// EXPECT_EQ(200, tl.get()); -// -// The template type argument T must have a public copy constructor. -// In addition, the default ThreadLocal constructor requires T to have -// a public default constructor. -// -// An object managed for a thread by a ThreadLocal instance is deleted -// when the thread exits. Or, if the ThreadLocal instance dies in -// that thread, when the ThreadLocal dies. It's the user's -// responsibility to ensure that all other threads using a ThreadLocal -// have exited when it dies, or the per-thread objects for those -// threads will not be deleted. -// -// Google Test only uses global ThreadLocal objects. That means they -// will die after main() has returned. Therefore, no per-thread -// object managed by Google Test will be leaked as long as all threads -// using Google Test have exited when main() returns. -template -class ThreadLocal { - public: - ThreadLocal() : key_(CreateKey()), - default_() {} - explicit ThreadLocal(const T& value) : key_(CreateKey()), - default_(value) {} - - ~ThreadLocal() { - // Destroys the managed object for the current thread, if any. - DeleteThreadLocalValue(pthread_getspecific(key_)); - - // Releases resources associated with the key. This will *not* - // delete managed objects for other threads. - GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_)); - } - - T* pointer() { return GetOrCreateValue(); } - const T* pointer() const { return GetOrCreateValue(); } - const T& get() const { return *pointer(); } - void set(const T& value) { *pointer() = value; } - - private: - // Holds a value of type T. - class ValueHolder : public ThreadLocalValueHolderBase { - public: - explicit ValueHolder(const T& value) : value_(value) {} - - T* pointer() { return &value_; } - - private: - T value_; - GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder); - }; - - static pthread_key_t CreateKey() { - pthread_key_t key; - // When a thread exits, DeleteThreadLocalValue() will be called on - // the object managed for that thread. - GTEST_CHECK_POSIX_SUCCESS_( - pthread_key_create(&key, &DeleteThreadLocalValue)); - return key; - } - - T* GetOrCreateValue() const { - ThreadLocalValueHolderBase* const holder = - static_cast(pthread_getspecific(key_)); - if (holder != NULL) { - return CheckedDowncastToActualType(holder)->pointer(); - } - - ValueHolder* const new_holder = new ValueHolder(default_); - ThreadLocalValueHolderBase* const holder_base = new_holder; - GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base)); - return new_holder->pointer(); - } - - // A key pthreads uses for looking up per-thread values. - const pthread_key_t key_; - const T default_; // The default value for each thread. - - GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal); -}; - -#define GTEST_IS_THREADSAFE 1 - -#else // GTEST_HAS_PTHREAD - -// A dummy implementation of synchronization primitives (mutex, lock, -// and thread-local variable). Necessary for compiling Google Test where -// mutex is not supported - using Google Test in multiple threads is not -// supported on such platforms. - -class Mutex { - public: - Mutex() {} - void AssertHeld() const {} -}; - -#define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ - extern ::testing::internal::Mutex mutex - -#define GTEST_DEFINE_STATIC_MUTEX_(mutex) ::testing::internal::Mutex mutex - -class GTestMutexLock { - public: - explicit GTestMutexLock(Mutex*) {} // NOLINT -}; - -typedef GTestMutexLock MutexLock; - -template -class ThreadLocal { - public: - ThreadLocal() : value_() {} - explicit ThreadLocal(const T& value) : value_(value) {} - T* pointer() { return &value_; } - const T* pointer() const { return &value_; } - const T& get() const { return value_; } - void set(const T& value) { value_ = value; } - private: - T value_; -}; - -// The above synchronization primitives have dummy implementations. -// Therefore Google Test is not thread-safe. -#define GTEST_IS_THREADSAFE 0 - -#endif // GTEST_HAS_PTHREAD - -// Returns the number of threads running in the process, or 0 to indicate that -// we cannot detect it. -GTEST_API_ size_t GetThreadCount(); - -// Passing non-POD classes through ellipsis (...) crashes the ARM -// compiler and generates a warning in Sun Studio. The Nokia Symbian -// and the IBM XL C/C++ compiler try to instantiate a copy constructor -// for objects passed through ellipsis (...), failing for uncopyable -// objects. We define this to ensure that only POD is passed through -// ellipsis on these systems. -#if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC) -// We lose support for NULL detection where the compiler doesn't like -// passing non-POD classes through ellipsis (...). -#define GTEST_ELLIPSIS_NEEDS_POD_ 1 -#else -#define GTEST_CAN_COMPARE_NULL 1 -#endif - -// The Nokia Symbian and IBM XL C/C++ compilers cannot decide between -// const T& and const T* in a function template. These compilers -// _can_ decide between class template specializations for T and T*, -// so a tr1::type_traits-like is_pointer works. -#if defined(__SYMBIAN32__) || defined(__IBMCPP__) -#define GTEST_NEEDS_IS_POINTER_ 1 -#endif - -template -struct bool_constant { - typedef bool_constant type; - static const bool value = bool_value; -}; -template const bool bool_constant::value; - -typedef bool_constant false_type; -typedef bool_constant true_type; - -template -struct is_pointer : public false_type {}; - -template -struct is_pointer : public true_type {}; - -#if GTEST_OS_WINDOWS -#define GTEST_PATH_SEP_ "\\" -#define GTEST_HAS_ALT_PATH_SEP_ 1 -// The biggest signed integer type the compiler supports. -typedef __int64 BiggestInt; -#else -#define GTEST_PATH_SEP_ "/" -#define GTEST_HAS_ALT_PATH_SEP_ 0 -typedef long long BiggestInt; // NOLINT -#endif // GTEST_OS_WINDOWS - -// The testing::internal::posix namespace holds wrappers for common -// POSIX functions. These wrappers hide the differences between -// Windows/MSVC and POSIX systems. Since some compilers define these -// standard functions as macros, the wrapper cannot have the same name -// as the wrapped function. - -namespace posix { - -// Functions with a different name on Windows. - -#if GTEST_OS_WINDOWS - -typedef struct _stat StatStruct; - -#ifdef __BORLANDC__ -inline int IsATTY(int fd) { return isatty(fd); } -inline int StrCaseCmp(const char* s1, const char* s2) { - return stricmp(s1, s2); -} -inline char* StrDup(const char* src) { return strdup(src); } -#else // !__BORLANDC__ -#if GTEST_OS_WINDOWS_MOBILE -inline int IsATTY(int /* fd */) { return 0; } -#else -inline int IsATTY(int fd) { return _isatty(fd); } -#endif // GTEST_OS_WINDOWS_MOBILE -inline int StrCaseCmp(const char* s1, const char* s2) { - return _stricmp(s1, s2); -} -inline char* StrDup(const char* src) { return _strdup(src); } -#endif // __BORLANDC__ - -#if GTEST_OS_WINDOWS_MOBILE -inline int FileNo(FILE* file) { return reinterpret_cast(_fileno(file)); } -// Stat(), RmDir(), and IsDir() are not needed on Windows CE at this -// time and thus not defined there. -#else -inline int FileNo(FILE* file) { return _fileno(file); } -inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } -inline int RmDir(const char* dir) { return _rmdir(dir); } -inline bool IsDir(const StatStruct& st) { - return (_S_IFDIR & st.st_mode) != 0; -} -#endif // GTEST_OS_WINDOWS_MOBILE - -#else - -typedef struct stat StatStruct; - -inline int FileNo(FILE* file) { return fileno(file); } -inline int IsATTY(int fd) { return isatty(fd); } -inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); } -inline int StrCaseCmp(const char* s1, const char* s2) { - return strcasecmp(s1, s2); -} -inline char* StrDup(const char* src) { return strdup(src); } -inline int RmDir(const char* dir) { return rmdir(dir); } -inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); } - -#endif // GTEST_OS_WINDOWS - -// Functions deprecated by MSVC 8.0. - -#ifdef _MSC_VER -// Temporarily disable warning 4996 (deprecated function). -#pragma warning(push) -#pragma warning(disable:4996) -#endif - -inline const char* StrNCpy(char* dest, const char* src, size_t n) { - return strncpy(dest, src, n); -} - -// ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and -// StrError() aren't needed on Windows CE at this time and thus not -// defined there. - -#if !GTEST_OS_WINDOWS_MOBILE -inline int ChDir(const char* dir) { return chdir(dir); } -#endif -inline FILE* FOpen(const char* path, const char* mode) { - return fopen(path, mode); -} -#if !GTEST_OS_WINDOWS_MOBILE -inline FILE *FReopen(const char* path, const char* mode, FILE* stream) { - return freopen(path, mode, stream); -} -inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); } -#endif -inline int FClose(FILE* fp) { return fclose(fp); } -#if !GTEST_OS_WINDOWS_MOBILE -inline int Read(int fd, void* buf, unsigned int count) { - return static_cast(read(fd, buf, count)); -} -inline int Write(int fd, const void* buf, unsigned int count) { - return static_cast(write(fd, buf, count)); -} -inline int Close(int fd) { return close(fd); } -inline const char* StrError(int errnum) { return strerror(errnum); } -#endif -inline const char* GetEnv(const char* name) { -#if GTEST_OS_WINDOWS_MOBILE - // We are on Windows CE, which has no environment variables. - return NULL; -#elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9) - // Environment variables which we programmatically clear will be set to the - // empty string rather than unset (NULL). Handle that case. - const char* const env = getenv(name); - return (env != NULL && env[0] != '\0') ? env : NULL; -#else - return getenv(name); -#endif -} - -#ifdef _MSC_VER -#pragma warning(pop) // Restores the warning state. -#endif - -#if GTEST_OS_WINDOWS_MOBILE -// Windows CE has no C library. The abort() function is used in -// several places in Google Test. This implementation provides a reasonable -// imitation of standard behaviour. -void Abort(); -#else -inline void Abort() { abort(); } -#endif // GTEST_OS_WINDOWS_MOBILE - -} // namespace posix - -// The maximum number a BiggestInt can represent. This definition -// works no matter BiggestInt is represented in one's complement or -// two's complement. -// -// We cannot rely on numeric_limits in STL, as __int64 and long long -// are not part of standard C++ and numeric_limits doesn't need to be -// defined for them. -const BiggestInt kMaxBiggestInt = - ~(static_cast(1) << (8*sizeof(BiggestInt) - 1)); - -// This template class serves as a compile-time function from size to -// type. It maps a size in bytes to a primitive type with that -// size. e.g. -// -// TypeWithSize<4>::UInt -// -// is typedef-ed to be unsigned int (unsigned integer made up of 4 -// bytes). -// -// Such functionality should belong to STL, but I cannot find it -// there. -// -// Google Test uses this class in the implementation of floating-point -// comparison. -// -// For now it only handles UInt (unsigned int) as that's all Google Test -// needs. Other types can be easily added in the future if need -// arises. -template -class TypeWithSize { - public: - // This prevents the user from using TypeWithSize with incorrect - // values of N. - typedef void UInt; -}; - -// The specialization for size 4. -template <> -class TypeWithSize<4> { - public: - // unsigned int has size 4 in both gcc and MSVC. - // - // As base/basictypes.h doesn't compile on Windows, we cannot use - // uint32, uint64, and etc here. - typedef int Int; - typedef unsigned int UInt; -}; - -// The specialization for size 8. -template <> -class TypeWithSize<8> { - public: -#if GTEST_OS_WINDOWS - typedef __int64 Int; - typedef unsigned __int64 UInt; -#else - typedef long long Int; // NOLINT - typedef unsigned long long UInt; // NOLINT -#endif // GTEST_OS_WINDOWS -}; - -// Integer types of known sizes. -typedef TypeWithSize<4>::Int Int32; -typedef TypeWithSize<4>::UInt UInt32; -typedef TypeWithSize<8>::Int Int64; -typedef TypeWithSize<8>::UInt UInt64; -typedef TypeWithSize<8>::Int TimeInMillis; // Represents time in milliseconds. - -// Utilities for command line flags and environment variables. - -// Macro for referencing flags. -#define GTEST_FLAG(name) FLAGS_gtest_##name - -// Macros for declaring flags. -#define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name) -#define GTEST_DECLARE_int32_(name) \ - GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name) -#define GTEST_DECLARE_string_(name) \ - GTEST_API_ extern ::testing::internal::String GTEST_FLAG(name) - -// Macros for defining flags. -#define GTEST_DEFINE_bool_(name, default_val, doc) \ - GTEST_API_ bool GTEST_FLAG(name) = (default_val) -#define GTEST_DEFINE_int32_(name, default_val, doc) \ - GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val) -#define GTEST_DEFINE_string_(name, default_val, doc) \ - GTEST_API_ ::testing::internal::String GTEST_FLAG(name) = (default_val) - -// Parses 'str' for a 32-bit signed integer. If successful, writes the result -// to *value and returns true; otherwise leaves *value unchanged and returns -// false. -// TODO(chandlerc): Find a better way to refactor flag and environment parsing -// out of both gtest-port.cc and gtest.cc to avoid exporting this utility -// function. -bool ParseInt32(const Message& src_text, const char* str, Int32* value); - -// Parses a bool/Int32/string from the environment variable -// corresponding to the given Google Test flag. -bool BoolFromGTestEnv(const char* flag, bool default_val); -GTEST_API_ Int32 Int32FromGTestEnv(const char* flag, Int32 default_val); -const char* StringFromGTestEnv(const char* flag, const char* default_val); - -} // namespace internal -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-string.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-string.h deleted file mode 100644 index aff093dec..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-string.h +++ /dev/null @@ -1,350 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file declares the String class and functions used internally by -// Google Test. They are subject to change without notice. They should not used -// by code external to Google Test. -// -// This header file is #included by . -// It should not be #included by other files. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ - -#ifdef __BORLANDC__ -// string.h is not guaranteed to provide strcpy on C++ Builder. -#include -#endif - -#include -#include - -#include - -namespace testing { -namespace internal { - -// String - a UTF-8 string class. -// -// For historic reasons, we don't use std::string. -// -// TODO(wan@google.com): replace this class with std::string or -// implement it in terms of the latter. -// -// Note that String can represent both NULL and the empty string, -// while std::string cannot represent NULL. -// -// NULL and the empty string are considered different. NULL is less -// than anything (including the empty string) except itself. -// -// This class only provides minimum functionality necessary for -// implementing Google Test. We do not intend to implement a full-fledged -// string class here. -// -// Since the purpose of this class is to provide a substitute for -// std::string on platforms where it cannot be used, we define a copy -// constructor and assignment operators such that we don't need -// conditional compilation in a lot of places. -// -// In order to make the representation efficient, the d'tor of String -// is not virtual. Therefore DO NOT INHERIT FROM String. -class GTEST_API_ String { - public: - // Static utility methods - - // Returns the input enclosed in double quotes if it's not NULL; - // otherwise returns "(null)". For example, "\"Hello\"" is returned - // for input "Hello". - // - // This is useful for printing a C string in the syntax of a literal. - // - // Known issue: escape sequences are not handled yet. - static String ShowCStringQuoted(const char* c_str); - - // Clones a 0-terminated C string, allocating memory using new. The - // caller is responsible for deleting the return value using - // delete[]. Returns the cloned string, or NULL if the input is - // NULL. - // - // This is different from strdup() in string.h, which allocates - // memory using malloc(). - static const char* CloneCString(const char* c_str); - -#if GTEST_OS_WINDOWS_MOBILE - // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be - // able to pass strings to Win32 APIs on CE we need to convert them - // to 'Unicode', UTF-16. - - // Creates a UTF-16 wide string from the given ANSI string, allocating - // memory using new. The caller is responsible for deleting the return - // value using delete[]. Returns the wide string, or NULL if the - // input is NULL. - // - // The wide string is created using the ANSI codepage (CP_ACP) to - // match the behaviour of the ANSI versions of Win32 calls and the - // C runtime. - static LPCWSTR AnsiToUtf16(const char* c_str); - - // Creates an ANSI string from the given wide string, allocating - // memory using new. The caller is responsible for deleting the return - // value using delete[]. Returns the ANSI string, or NULL if the - // input is NULL. - // - // The returned string is created using the ANSI codepage (CP_ACP) to - // match the behaviour of the ANSI versions of Win32 calls and the - // C runtime. - static const char* Utf16ToAnsi(LPCWSTR utf16_str); -#endif - - // Compares two C strings. Returns true iff they have the same content. - // - // Unlike strcmp(), this function can handle NULL argument(s). A - // NULL C string is considered different to any non-NULL C string, - // including the empty string. - static bool CStringEquals(const char* lhs, const char* rhs); - - // Converts a wide C string to a String using the UTF-8 encoding. - // NULL will be converted to "(null)". If an error occurred during - // the conversion, "(failed to convert from wide string)" is - // returned. - static String ShowWideCString(const wchar_t* wide_c_str); - - // Similar to ShowWideCString(), except that this function encloses - // the converted string in double quotes. - static String ShowWideCStringQuoted(const wchar_t* wide_c_str); - - // Compares two wide C strings. Returns true iff they have the same - // content. - // - // Unlike wcscmp(), this function can handle NULL argument(s). A - // NULL C string is considered different to any non-NULL C string, - // including the empty string. - static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); - - // Compares two C strings, ignoring case. Returns true iff they - // have the same content. - // - // Unlike strcasecmp(), this function can handle NULL argument(s). - // A NULL C string is considered different to any non-NULL C string, - // including the empty string. - static bool CaseInsensitiveCStringEquals(const char* lhs, - const char* rhs); - - // Compares two wide C strings, ignoring case. Returns true iff they - // have the same content. - // - // Unlike wcscasecmp(), this function can handle NULL argument(s). - // A NULL C string is considered different to any non-NULL wide C string, - // including the empty string. - // NB: The implementations on different platforms slightly differ. - // On windows, this method uses _wcsicmp which compares according to LC_CTYPE - // environment variable. On GNU platform this method uses wcscasecmp - // which compares according to LC_CTYPE category of the current locale. - // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the - // current locale. - static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs, - const wchar_t* rhs); - - // Formats a list of arguments to a String, using the same format - // spec string as for printf. - // - // We do not use the StringPrintf class as it is not universally - // available. - // - // The result is limited to 4096 characters (including the tailing - // 0). If 4096 characters are not enough to format the input, - // "" is returned. - static String Format(const char* format, ...); - - // C'tors - - // The default c'tor constructs a NULL string. - String() : c_str_(NULL), length_(0) {} - - // Constructs a String by cloning a 0-terminated C string. - String(const char* a_c_str) { // NOLINT - if (a_c_str == NULL) { - c_str_ = NULL; - length_ = 0; - } else { - ConstructNonNull(a_c_str, strlen(a_c_str)); - } - } - - // Constructs a String by copying a given number of chars from a - // buffer. E.g. String("hello", 3) creates the string "hel", - // String("a\0bcd", 4) creates "a\0bc", String(NULL, 0) creates "", - // and String(NULL, 1) results in access violation. - String(const char* buffer, size_t a_length) { - ConstructNonNull(buffer, a_length); - } - - // The copy c'tor creates a new copy of the string. The two - // String objects do not share content. - String(const String& str) : c_str_(NULL), length_(0) { *this = str; } - - // D'tor. String is intended to be a final class, so the d'tor - // doesn't need to be virtual. - ~String() { delete[] c_str_; } - - // Allows a String to be implicitly converted to an ::std::string or - // ::string, and vice versa. Converting a String containing a NULL - // pointer to ::std::string or ::string is undefined behavior. - // Converting a ::std::string or ::string containing an embedded NUL - // character to a String will result in the prefix up to the first - // NUL character. - String(const ::std::string& str) { - ConstructNonNull(str.c_str(), str.length()); - } - - operator ::std::string() const { return ::std::string(c_str(), length()); } - -#if GTEST_HAS_GLOBAL_STRING - String(const ::string& str) { - ConstructNonNull(str.c_str(), str.length()); - } - - operator ::string() const { return ::string(c_str(), length()); } -#endif // GTEST_HAS_GLOBAL_STRING - - // Returns true iff this is an empty string (i.e. ""). - bool empty() const { return (c_str() != NULL) && (length() == 0); } - - // Compares this with another String. - // Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0 - // if this is greater than rhs. - int Compare(const String& rhs) const; - - // Returns true iff this String equals the given C string. A NULL - // string and a non-NULL string are considered not equal. - bool operator==(const char* a_c_str) const { return Compare(a_c_str) == 0; } - - // Returns true iff this String is less than the given String. A - // NULL string is considered less than "". - bool operator<(const String& rhs) const { return Compare(rhs) < 0; } - - // Returns true iff this String doesn't equal the given C string. A NULL - // string and a non-NULL string are considered not equal. - bool operator!=(const char* a_c_str) const { return !(*this == a_c_str); } - - // Returns true iff this String ends with the given suffix. *Any* - // String is considered to end with a NULL or empty suffix. - bool EndsWith(const char* suffix) const; - - // Returns true iff this String ends with the given suffix, not considering - // case. Any String is considered to end with a NULL or empty suffix. - bool EndsWithCaseInsensitive(const char* suffix) const; - - // Returns the length of the encapsulated string, or 0 if the - // string is NULL. - size_t length() const { return length_; } - - // Gets the 0-terminated C string this String object represents. - // The String object still owns the string. Therefore the caller - // should NOT delete the return value. - const char* c_str() const { return c_str_; } - - // Assigns a C string to this object. Self-assignment works. - const String& operator=(const char* a_c_str) { - return *this = String(a_c_str); - } - - // Assigns a String object to this object. Self-assignment works. - const String& operator=(const String& rhs) { - if (this != &rhs) { - delete[] c_str_; - if (rhs.c_str() == NULL) { - c_str_ = NULL; - length_ = 0; - } else { - ConstructNonNull(rhs.c_str(), rhs.length()); - } - } - - return *this; - } - - private: - // Constructs a non-NULL String from the given content. This - // function can only be called when data_ has not been allocated. - // ConstructNonNull(NULL, 0) results in an empty string (""). - // ConstructNonNull(NULL, non_zero) is undefined behavior. - void ConstructNonNull(const char* buffer, size_t a_length) { - char* const str = new char[a_length + 1]; - memcpy(str, buffer, a_length); - str[a_length] = '\0'; - c_str_ = str; - length_ = a_length; - } - - const char* c_str_; - size_t length_; -}; // class String - -// Streams a String to an ostream. Each '\0' character in the String -// is replaced with "\\0". -inline ::std::ostream& operator<<(::std::ostream& os, const String& str) { - if (str.c_str() == NULL) { - os << "(null)"; - } else { - const char* const c_str = str.c_str(); - for (size_t i = 0; i != str.length(); i++) { - if (c_str[i] == '\0') { - os << "\\0"; - } else { - os << c_str[i]; - } - } - } - return os; -} - -// Gets the content of the StrStream's buffer as a String. Each '\0' -// character in the buffer is replaced with "\\0". -GTEST_API_ String StrStreamToString(StrStream* stream); - -// Converts a streamable value to a String. A NULL pointer is -// converted to "(null)". When the input value is a ::string, -// ::std::string, ::wstring, or ::std::wstring object, each NUL -// character in it is replaced with "\\0". - -// Declared here but defined in gtest.h, so that it has access -// to the definition of the Message class, required by the ARM -// compiler. -template -String StreamableToString(const T& streamable); - -} // namespace internal -} // namespace testing - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-tuple.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-tuple.h deleted file mode 100644 index 16178fc07..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-tuple.h +++ /dev/null @@ -1,968 +0,0 @@ -// This file was GENERATED by a script. DO NOT EDIT BY HAND!!! - -// Copyright 2009 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Implements a subset of TR1 tuple needed by Google Test and Google Mock. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ - -#include // For ::std::pair. - -// The compiler used in Symbian has a bug that prevents us from declaring the -// tuple template as a friend (it complains that tuple is redefined). This -// hack bypasses the bug by declaring the members that should otherwise be -// private as public. -// Sun Studio versions < 12 also have the above bug. -#if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590) -#define GTEST_DECLARE_TUPLE_AS_FRIEND_ public: -#else -#define GTEST_DECLARE_TUPLE_AS_FRIEND_ \ - template friend class tuple; \ - private: -#endif - -// GTEST_n_TUPLE_(T) is the type of an n-tuple. -#define GTEST_0_TUPLE_(T) tuple<> -#define GTEST_1_TUPLE_(T) tuple -#define GTEST_2_TUPLE_(T) tuple -#define GTEST_3_TUPLE_(T) tuple -#define GTEST_4_TUPLE_(T) tuple -#define GTEST_5_TUPLE_(T) tuple -#define GTEST_6_TUPLE_(T) tuple -#define GTEST_7_TUPLE_(T) tuple -#define GTEST_8_TUPLE_(T) tuple -#define GTEST_9_TUPLE_(T) tuple -#define GTEST_10_TUPLE_(T) tuple - -// GTEST_n_TYPENAMES_(T) declares a list of n typenames. -#define GTEST_0_TYPENAMES_(T) -#define GTEST_1_TYPENAMES_(T) typename T##0 -#define GTEST_2_TYPENAMES_(T) typename T##0, typename T##1 -#define GTEST_3_TYPENAMES_(T) typename T##0, typename T##1, typename T##2 -#define GTEST_4_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3 -#define GTEST_5_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4 -#define GTEST_6_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4, typename T##5 -#define GTEST_7_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4, typename T##5, typename T##6 -#define GTEST_8_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4, typename T##5, typename T##6, typename T##7 -#define GTEST_9_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4, typename T##5, typename T##6, \ - typename T##7, typename T##8 -#define GTEST_10_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ - typename T##3, typename T##4, typename T##5, typename T##6, \ - typename T##7, typename T##8, typename T##9 - -// In theory, defining stuff in the ::std namespace is undefined -// behavior. We can do this as we are playing the role of a standard -// library vendor. -namespace std { -namespace tr1 { - -template -class tuple; - -// Anything in namespace gtest_internal is Google Test's INTERNAL -// IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code. -namespace gtest_internal { - -// ByRef::type is T if T is a reference; otherwise it's const T&. -template -struct ByRef { typedef const T& type; }; // NOLINT -template -struct ByRef { typedef T& type; }; // NOLINT - -// A handy wrapper for ByRef. -#define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef::type - -// AddRef::type is T if T is a reference; otherwise it's T&. This -// is the same as tr1::add_reference::type. -template -struct AddRef { typedef T& type; }; // NOLINT -template -struct AddRef { typedef T& type; }; // NOLINT - -// A handy wrapper for AddRef. -#define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef::type - -// A helper for implementing get(). -template class Get; - -// A helper for implementing tuple_element. kIndexValid is true -// iff k < the number of fields in tuple type T. -template -struct TupleElement; - -template -struct TupleElement { typedef T0 type; }; - -template -struct TupleElement { typedef T1 type; }; - -template -struct TupleElement { typedef T2 type; }; - -template -struct TupleElement { typedef T3 type; }; - -template -struct TupleElement { typedef T4 type; }; - -template -struct TupleElement { typedef T5 type; }; - -template -struct TupleElement { typedef T6 type; }; - -template -struct TupleElement { typedef T7 type; }; - -template -struct TupleElement { typedef T8 type; }; - -template -struct TupleElement { typedef T9 type; }; - -} // namespace gtest_internal - -template <> -class tuple<> { - public: - tuple() {} - tuple(const tuple& /* t */) {} - tuple& operator=(const tuple& /* t */) { return *this; } -}; - -template -class GTEST_1_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0) : f0_(f0) {} - - tuple(const tuple& t) : f0_(t.f0_) {} - - template - tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_1_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) { - f0_ = t.f0_; - return *this; - } - - T0 f0_; -}; - -template -class GTEST_2_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1) : f0_(f0), - f1_(f1) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} - - template - tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {} - template - tuple(const ::std::pair& p) : f0_(p.first), f1_(p.second) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_2_TUPLE_(U)& t) { - return CopyFrom(t); - } - template - tuple& operator=(const ::std::pair& p) { - f0_ = p.first; - f1_ = p.second; - return *this; - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - return *this; - } - - T0 f0_; - T1 f1_; -}; - -template -class GTEST_3_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2) : f0_(f0), f1_(f1), f2_(f2) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} - - template - tuple(const GTEST_3_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_3_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; -}; - -template -class GTEST_4_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2), - f3_(f3) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} - - template - tuple(const GTEST_4_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_4_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_4_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; -}; - -template -class GTEST_5_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, - GTEST_BY_REF_(T4) f4) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_) {} - - template - tuple(const GTEST_5_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_5_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_5_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; -}; - -template -class GTEST_6_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, - GTEST_BY_REF_(T5) f5) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), - f5_(f5) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_), f5_(t.f5_) {} - - template - tuple(const GTEST_6_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_6_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_6_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - f5_ = t.f5_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; - T5 f5_; -}; - -template -class GTEST_7_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, - GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6) : f0_(f0), f1_(f1), f2_(f2), - f3_(f3), f4_(f4), f5_(f5), f6_(f6) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} - - template - tuple(const GTEST_7_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_7_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_7_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - f5_ = t.f5_; - f6_ = t.f6_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; - T5 f5_; - T6 f6_; -}; - -template -class GTEST_8_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, - GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, - GTEST_BY_REF_(T7) f7) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), - f5_(f5), f6_(f6), f7_(f7) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} - - template - tuple(const GTEST_8_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_8_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_8_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - f5_ = t.f5_; - f6_ = t.f6_; - f7_ = t.f7_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; - T5 f5_; - T6 f6_; - T7 f7_; -}; - -template -class GTEST_9_TUPLE_(T) { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, - GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, - GTEST_BY_REF_(T8) f8) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), - f5_(f5), f6_(f6), f7_(f7), f8_(f8) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} - - template - tuple(const GTEST_9_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_9_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_9_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - f5_ = t.f5_; - f6_ = t.f6_; - f7_ = t.f7_; - f8_ = t.f8_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; - T5 f5_; - T6 f6_; - T7 f7_; - T8 f8_; -}; - -template -class tuple { - public: - template friend class gtest_internal::Get; - - tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), - f9_() {} - - explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, - GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, - GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, - GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2), - f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {} - - tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), - f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {} - - template - tuple(const GTEST_10_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), - f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), - f9_(t.f9_) {} - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_10_TUPLE_(U)& t) { - return CopyFrom(t); - } - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_10_TUPLE_(U)& t) { - f0_ = t.f0_; - f1_ = t.f1_; - f2_ = t.f2_; - f3_ = t.f3_; - f4_ = t.f4_; - f5_ = t.f5_; - f6_ = t.f6_; - f7_ = t.f7_; - f8_ = t.f8_; - f9_ = t.f9_; - return *this; - } - - T0 f0_; - T1 f1_; - T2 f2_; - T3 f3_; - T4 f4_; - T5 f5_; - T6 f6_; - T7 f7_; - T8 f8_; - T9 f9_; -}; - -// 6.1.3.2 Tuple creation functions. - -// Known limitations: we don't support passing an -// std::tr1::reference_wrapper to make_tuple(). And we don't -// implement tie(). - -inline tuple<> make_tuple() { return tuple<>(); } - -template -inline GTEST_1_TUPLE_(T) make_tuple(const T0& f0) { - return GTEST_1_TUPLE_(T)(f0); -} - -template -inline GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) { - return GTEST_2_TUPLE_(T)(f0, f1); -} - -template -inline GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) { - return GTEST_3_TUPLE_(T)(f0, f1, f2); -} - -template -inline GTEST_4_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3) { - return GTEST_4_TUPLE_(T)(f0, f1, f2, f3); -} - -template -inline GTEST_5_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4) { - return GTEST_5_TUPLE_(T)(f0, f1, f2, f3, f4); -} - -template -inline GTEST_6_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4, const T5& f5) { - return GTEST_6_TUPLE_(T)(f0, f1, f2, f3, f4, f5); -} - -template -inline GTEST_7_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4, const T5& f5, const T6& f6) { - return GTEST_7_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6); -} - -template -inline GTEST_8_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7) { - return GTEST_8_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7); -} - -template -inline GTEST_9_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, - const T8& f8) { - return GTEST_9_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8); -} - -template -inline GTEST_10_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, - const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, - const T8& f8, const T9& f9) { - return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9); -} - -// 6.1.3.3 Tuple helper classes. - -template struct tuple_size; - -template -struct tuple_size { static const int value = 0; }; - -template -struct tuple_size { static const int value = 1; }; - -template -struct tuple_size { static const int value = 2; }; - -template -struct tuple_size { static const int value = 3; }; - -template -struct tuple_size { static const int value = 4; }; - -template -struct tuple_size { static const int value = 5; }; - -template -struct tuple_size { static const int value = 6; }; - -template -struct tuple_size { static const int value = 7; }; - -template -struct tuple_size { static const int value = 8; }; - -template -struct tuple_size { static const int value = 9; }; - -template -struct tuple_size { static const int value = 10; }; - -template -struct tuple_element { - typedef typename gtest_internal::TupleElement< - k < (tuple_size::value), k, Tuple>::type type; -}; - -#define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element::type - -// 6.1.3.4 Element access. - -namespace gtest_internal { - -template <> -class Get<0> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) - Field(Tuple& t) { return t.f0_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) - ConstField(const Tuple& t) { return t.f0_; } -}; - -template <> -class Get<1> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) - Field(Tuple& t) { return t.f1_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) - ConstField(const Tuple& t) { return t.f1_; } -}; - -template <> -class Get<2> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) - Field(Tuple& t) { return t.f2_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) - ConstField(const Tuple& t) { return t.f2_; } -}; - -template <> -class Get<3> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) - Field(Tuple& t) { return t.f3_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) - ConstField(const Tuple& t) { return t.f3_; } -}; - -template <> -class Get<4> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) - Field(Tuple& t) { return t.f4_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) - ConstField(const Tuple& t) { return t.f4_; } -}; - -template <> -class Get<5> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) - Field(Tuple& t) { return t.f5_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) - ConstField(const Tuple& t) { return t.f5_; } -}; - -template <> -class Get<6> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) - Field(Tuple& t) { return t.f6_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) - ConstField(const Tuple& t) { return t.f6_; } -}; - -template <> -class Get<7> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) - Field(Tuple& t) { return t.f7_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) - ConstField(const Tuple& t) { return t.f7_; } -}; - -template <> -class Get<8> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) - Field(Tuple& t) { return t.f8_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) - ConstField(const Tuple& t) { return t.f8_; } -}; - -template <> -class Get<9> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) - Field(Tuple& t) { return t.f9_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) - ConstField(const Tuple& t) { return t.f9_; } -}; - -} // namespace gtest_internal - -template -GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) -get(GTEST_10_TUPLE_(T)& t) { - return gtest_internal::Get::Field(t); -} - -template -GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) -get(const GTEST_10_TUPLE_(T)& t) { - return gtest_internal::Get::ConstField(t); -} - -// 6.1.3.5 Relational operators - -// We only implement == and !=, as we don't have a need for the rest yet. - -namespace gtest_internal { - -// SameSizeTuplePrefixComparator::Eq(t1, t2) returns true if the -// first k fields of t1 equals the first k fields of t2. -// SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if -// k1 != k2. -template -struct SameSizeTuplePrefixComparator; - -template <> -struct SameSizeTuplePrefixComparator<0, 0> { - template - static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) { - return true; - } -}; - -template -struct SameSizeTuplePrefixComparator { - template - static bool Eq(const Tuple1& t1, const Tuple2& t2) { - return SameSizeTuplePrefixComparator::Eq(t1, t2) && - ::std::tr1::get(t1) == ::std::tr1::get(t2); - } -}; - -} // namespace gtest_internal - -template -inline bool operator==(const GTEST_10_TUPLE_(T)& t, - const GTEST_10_TUPLE_(U)& u) { - return gtest_internal::SameSizeTuplePrefixComparator< - tuple_size::value, - tuple_size::value>::Eq(t, u); -} - -template -inline bool operator!=(const GTEST_10_TUPLE_(T)& t, - const GTEST_10_TUPLE_(U)& u) { return !(t == u); } - -// 6.1.4 Pairs. -// Unimplemented. - -} // namespace tr1 -} // namespace std - -#undef GTEST_0_TUPLE_ -#undef GTEST_1_TUPLE_ -#undef GTEST_2_TUPLE_ -#undef GTEST_3_TUPLE_ -#undef GTEST_4_TUPLE_ -#undef GTEST_5_TUPLE_ -#undef GTEST_6_TUPLE_ -#undef GTEST_7_TUPLE_ -#undef GTEST_8_TUPLE_ -#undef GTEST_9_TUPLE_ -#undef GTEST_10_TUPLE_ - -#undef GTEST_0_TYPENAMES_ -#undef GTEST_1_TYPENAMES_ -#undef GTEST_2_TYPENAMES_ -#undef GTEST_3_TYPENAMES_ -#undef GTEST_4_TYPENAMES_ -#undef GTEST_5_TYPENAMES_ -#undef GTEST_6_TYPENAMES_ -#undef GTEST_7_TYPENAMES_ -#undef GTEST_8_TYPENAMES_ -#undef GTEST_9_TYPENAMES_ -#undef GTEST_10_TYPENAMES_ - -#undef GTEST_DECLARE_TUPLE_AS_FRIEND_ -#undef GTEST_BY_REF_ -#undef GTEST_ADD_REF_ -#undef GTEST_TUPLE_ELEMENT_ - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-tuple.h.pump b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-tuple.h.pump deleted file mode 100644 index 85ebc8062..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-tuple.h.pump +++ /dev/null @@ -1,336 +0,0 @@ -$$ -*- mode: c++; -*- -$var n = 10 $$ Maximum number of tuple fields we want to support. -$$ This meta comment fixes auto-indentation in Emacs. }} -// Copyright 2009 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Implements a subset of TR1 tuple needed by Google Test and Google Mock. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ - -#include // For ::std::pair. - -// The compiler used in Symbian has a bug that prevents us from declaring the -// tuple template as a friend (it complains that tuple is redefined). This -// hack bypasses the bug by declaring the members that should otherwise be -// private as public. -// Sun Studio versions < 12 also have the above bug. -#if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590) -#define GTEST_DECLARE_TUPLE_AS_FRIEND_ public: -#else -#define GTEST_DECLARE_TUPLE_AS_FRIEND_ \ - template friend class tuple; \ - private: -#endif - - -$range i 0..n-1 -$range j 0..n -$range k 1..n -// GTEST_n_TUPLE_(T) is the type of an n-tuple. -#define GTEST_0_TUPLE_(T) tuple<> - -$for k [[ -$range m 0..k-1 -$range m2 k..n-1 -#define GTEST_$(k)_TUPLE_(T) tuple<$for m, [[T##$m]]$for m2 [[, void]]> - -]] - -// GTEST_n_TYPENAMES_(T) declares a list of n typenames. - -$for j [[ -$range m 0..j-1 -#define GTEST_$(j)_TYPENAMES_(T) $for m, [[typename T##$m]] - - -]] - -// In theory, defining stuff in the ::std namespace is undefined -// behavior. We can do this as we are playing the role of a standard -// library vendor. -namespace std { -namespace tr1 { - -template <$for i, [[typename T$i = void]]> -class tuple; - -// Anything in namespace gtest_internal is Google Test's INTERNAL -// IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code. -namespace gtest_internal { - -// ByRef::type is T if T is a reference; otherwise it's const T&. -template -struct ByRef { typedef const T& type; }; // NOLINT -template -struct ByRef { typedef T& type; }; // NOLINT - -// A handy wrapper for ByRef. -#define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef::type - -// AddRef::type is T if T is a reference; otherwise it's T&. This -// is the same as tr1::add_reference::type. -template -struct AddRef { typedef T& type; }; // NOLINT -template -struct AddRef { typedef T& type; }; // NOLINT - -// A handy wrapper for AddRef. -#define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef::type - -// A helper for implementing get(). -template class Get; - -// A helper for implementing tuple_element. kIndexValid is true -// iff k < the number of fields in tuple type T. -template -struct TupleElement; - - -$for i [[ -template -struct TupleElement [[]] -{ typedef T$i type; }; - - -]] -} // namespace gtest_internal - -template <> -class tuple<> { - public: - tuple() {} - tuple(const tuple& /* t */) {} - tuple& operator=(const tuple& /* t */) { return *this; } -}; - - -$for k [[ -$range m 0..k-1 -template -class $if k < n [[GTEST_$(k)_TUPLE_(T)]] $else [[tuple]] { - public: - template friend class gtest_internal::Get; - - tuple() : $for m, [[f$(m)_()]] {} - - explicit tuple($for m, [[GTEST_BY_REF_(T$m) f$m]]) : [[]] -$for m, [[f$(m)_(f$m)]] {} - - tuple(const tuple& t) : $for m, [[f$(m)_(t.f$(m)_)]] {} - - template - tuple(const GTEST_$(k)_TUPLE_(U)& t) : $for m, [[f$(m)_(t.f$(m)_)]] {} - -$if k == 2 [[ - template - tuple(const ::std::pair& p) : f0_(p.first), f1_(p.second) {} - -]] - - tuple& operator=(const tuple& t) { return CopyFrom(t); } - - template - tuple& operator=(const GTEST_$(k)_TUPLE_(U)& t) { - return CopyFrom(t); - } - -$if k == 2 [[ - template - tuple& operator=(const ::std::pair& p) { - f0_ = p.first; - f1_ = p.second; - return *this; - } - -]] - - GTEST_DECLARE_TUPLE_AS_FRIEND_ - - template - tuple& CopyFrom(const GTEST_$(k)_TUPLE_(U)& t) { - -$for m [[ - f$(m)_ = t.f$(m)_; - -]] - return *this; - } - - -$for m [[ - T$m f$(m)_; - -]] -}; - - -]] -// 6.1.3.2 Tuple creation functions. - -// Known limitations: we don't support passing an -// std::tr1::reference_wrapper to make_tuple(). And we don't -// implement tie(). - -inline tuple<> make_tuple() { return tuple<>(); } - -$for k [[ -$range m 0..k-1 - -template -inline GTEST_$(k)_TUPLE_(T) make_tuple($for m, [[const T$m& f$m]]) { - return GTEST_$(k)_TUPLE_(T)($for m, [[f$m]]); -} - -]] - -// 6.1.3.3 Tuple helper classes. - -template struct tuple_size; - - -$for j [[ -template -struct tuple_size { static const int value = $j; }; - - -]] -template -struct tuple_element { - typedef typename gtest_internal::TupleElement< - k < (tuple_size::value), k, Tuple>::type type; -}; - -#define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element::type - -// 6.1.3.4 Element access. - -namespace gtest_internal { - - -$for i [[ -template <> -class Get<$i> { - public: - template - static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_($i, Tuple)) - Field(Tuple& t) { return t.f$(i)_; } // NOLINT - - template - static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_($i, Tuple)) - ConstField(const Tuple& t) { return t.f$(i)_; } -}; - - -]] -} // namespace gtest_internal - -template -GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_$(n)_TUPLE_(T))) -get(GTEST_$(n)_TUPLE_(T)& t) { - return gtest_internal::Get::Field(t); -} - -template -GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_$(n)_TUPLE_(T))) -get(const GTEST_$(n)_TUPLE_(T)& t) { - return gtest_internal::Get::ConstField(t); -} - -// 6.1.3.5 Relational operators - -// We only implement == and !=, as we don't have a need for the rest yet. - -namespace gtest_internal { - -// SameSizeTuplePrefixComparator::Eq(t1, t2) returns true if the -// first k fields of t1 equals the first k fields of t2. -// SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if -// k1 != k2. -template -struct SameSizeTuplePrefixComparator; - -template <> -struct SameSizeTuplePrefixComparator<0, 0> { - template - static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) { - return true; - } -}; - -template -struct SameSizeTuplePrefixComparator { - template - static bool Eq(const Tuple1& t1, const Tuple2& t2) { - return SameSizeTuplePrefixComparator::Eq(t1, t2) && - ::std::tr1::get(t1) == ::std::tr1::get(t2); - } -}; - -} // namespace gtest_internal - -template -inline bool operator==(const GTEST_$(n)_TUPLE_(T)& t, - const GTEST_$(n)_TUPLE_(U)& u) { - return gtest_internal::SameSizeTuplePrefixComparator< - tuple_size::value, - tuple_size::value>::Eq(t, u); -} - -template -inline bool operator!=(const GTEST_$(n)_TUPLE_(T)& t, - const GTEST_$(n)_TUPLE_(U)& u) { return !(t == u); } - -// 6.1.4 Pairs. -// Unimplemented. - -} // namespace tr1 -} // namespace std - - -$for j [[ -#undef GTEST_$(j)_TUPLE_ - -]] - - -$for j [[ -#undef GTEST_$(j)_TYPENAMES_ - -]] - -#undef GTEST_DECLARE_TUPLE_AS_FRIEND_ -#undef GTEST_BY_REF_ -#undef GTEST_ADD_REF_ -#undef GTEST_TUPLE_ELEMENT_ - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-type-util.h b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-type-util.h deleted file mode 100644 index 093eee6f0..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-type-util.h +++ /dev/null @@ -1,3321 +0,0 @@ -// This file was GENERATED by command: -// pump.py gtest-type-util.h.pump -// DO NOT EDIT BY HAND!!! - -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Type utilities needed for implementing typed and type-parameterized -// tests. This file is generated by a SCRIPT. DO NOT EDIT BY HAND! -// -// Currently we support at most 50 types in a list, and at most 50 -// type-parameterized tests in one type-parameterized test case. -// Please contact googletestframework@googlegroups.com if you need -// more. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ - -#include -#include - -#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P - -// #ifdef __GNUC__ is too general here. It is possible to use gcc without using -// libstdc++ (which is where cxxabi.h comes from). -#ifdef __GLIBCXX__ -#include -#endif // __GLIBCXX__ - -namespace testing { -namespace internal { - -// AssertyTypeEq::type is defined iff T1 and T2 are the same -// type. This can be used as a compile-time assertion to ensure that -// two types are equal. - -template -struct AssertTypeEq; - -template -struct AssertTypeEq { - typedef bool type; -}; - -// GetTypeName() returns a human-readable name of type T. -template -String GetTypeName() { -#if GTEST_HAS_RTTI - - const char* const name = typeid(T).name(); -#ifdef __GLIBCXX__ - int status = 0; - // gcc's implementation of typeid(T).name() mangles the type name, - // so we have to demangle it. - char* const readable_name = abi::__cxa_demangle(name, 0, 0, &status); - const String name_str(status == 0 ? readable_name : name); - free(readable_name); - return name_str; -#else - return name; -#endif // __GLIBCXX__ - -#else - return ""; -#endif // GTEST_HAS_RTTI -} - -// A unique type used as the default value for the arguments of class -// template Types. This allows us to simulate variadic templates -// (e.g. Types, Type, and etc), which C++ doesn't -// support directly. -struct None {}; - -// The following family of struct and struct templates are used to -// represent type lists. In particular, TypesN -// represents a type list with N types (T1, T2, ..., and TN) in it. -// Except for Types0, every struct in the family has two member types: -// Head for the first type in the list, and Tail for the rest of the -// list. - -// The empty type list. -struct Types0 {}; - -// Type lists of length 1, 2, 3, and so on. - -template -struct Types1 { - typedef T1 Head; - typedef Types0 Tail; -}; -template -struct Types2 { - typedef T1 Head; - typedef Types1 Tail; -}; - -template -struct Types3 { - typedef T1 Head; - typedef Types2 Tail; -}; - -template -struct Types4 { - typedef T1 Head; - typedef Types3 Tail; -}; - -template -struct Types5 { - typedef T1 Head; - typedef Types4 Tail; -}; - -template -struct Types6 { - typedef T1 Head; - typedef Types5 Tail; -}; - -template -struct Types7 { - typedef T1 Head; - typedef Types6 Tail; -}; - -template -struct Types8 { - typedef T1 Head; - typedef Types7 Tail; -}; - -template -struct Types9 { - typedef T1 Head; - typedef Types8 Tail; -}; - -template -struct Types10 { - typedef T1 Head; - typedef Types9 Tail; -}; - -template -struct Types11 { - typedef T1 Head; - typedef Types10 Tail; -}; - -template -struct Types12 { - typedef T1 Head; - typedef Types11 Tail; -}; - -template -struct Types13 { - typedef T1 Head; - typedef Types12 Tail; -}; - -template -struct Types14 { - typedef T1 Head; - typedef Types13 Tail; -}; - -template -struct Types15 { - typedef T1 Head; - typedef Types14 Tail; -}; - -template -struct Types16 { - typedef T1 Head; - typedef Types15 Tail; -}; - -template -struct Types17 { - typedef T1 Head; - typedef Types16 Tail; -}; - -template -struct Types18 { - typedef T1 Head; - typedef Types17 Tail; -}; - -template -struct Types19 { - typedef T1 Head; - typedef Types18 Tail; -}; - -template -struct Types20 { - typedef T1 Head; - typedef Types19 Tail; -}; - -template -struct Types21 { - typedef T1 Head; - typedef Types20 Tail; -}; - -template -struct Types22 { - typedef T1 Head; - typedef Types21 Tail; -}; - -template -struct Types23 { - typedef T1 Head; - typedef Types22 Tail; -}; - -template -struct Types24 { - typedef T1 Head; - typedef Types23 Tail; -}; - -template -struct Types25 { - typedef T1 Head; - typedef Types24 Tail; -}; - -template -struct Types26 { - typedef T1 Head; - typedef Types25 Tail; -}; - -template -struct Types27 { - typedef T1 Head; - typedef Types26 Tail; -}; - -template -struct Types28 { - typedef T1 Head; - typedef Types27 Tail; -}; - -template -struct Types29 { - typedef T1 Head; - typedef Types28 Tail; -}; - -template -struct Types30 { - typedef T1 Head; - typedef Types29 Tail; -}; - -template -struct Types31 { - typedef T1 Head; - typedef Types30 Tail; -}; - -template -struct Types32 { - typedef T1 Head; - typedef Types31 Tail; -}; - -template -struct Types33 { - typedef T1 Head; - typedef Types32 Tail; -}; - -template -struct Types34 { - typedef T1 Head; - typedef Types33 Tail; -}; - -template -struct Types35 { - typedef T1 Head; - typedef Types34 Tail; -}; - -template -struct Types36 { - typedef T1 Head; - typedef Types35 Tail; -}; - -template -struct Types37 { - typedef T1 Head; - typedef Types36 Tail; -}; - -template -struct Types38 { - typedef T1 Head; - typedef Types37 Tail; -}; - -template -struct Types39 { - typedef T1 Head; - typedef Types38 Tail; -}; - -template -struct Types40 { - typedef T1 Head; - typedef Types39 Tail; -}; - -template -struct Types41 { - typedef T1 Head; - typedef Types40 Tail; -}; - -template -struct Types42 { - typedef T1 Head; - typedef Types41 Tail; -}; - -template -struct Types43 { - typedef T1 Head; - typedef Types42 Tail; -}; - -template -struct Types44 { - typedef T1 Head; - typedef Types43 Tail; -}; - -template -struct Types45 { - typedef T1 Head; - typedef Types44 Tail; -}; - -template -struct Types46 { - typedef T1 Head; - typedef Types45 Tail; -}; - -template -struct Types47 { - typedef T1 Head; - typedef Types46 Tail; -}; - -template -struct Types48 { - typedef T1 Head; - typedef Types47 Tail; -}; - -template -struct Types49 { - typedef T1 Head; - typedef Types48 Tail; -}; - -template -struct Types50 { - typedef T1 Head; - typedef Types49 Tail; -}; - - -} // namespace internal - -// We don't want to require the users to write TypesN<...> directly, -// as that would require them to count the length. Types<...> is much -// easier to write, but generates horrible messages when there is a -// compiler error, as gcc insists on printing out each template -// argument, even if it has the default value (this means Types -// will appear as Types in the compiler -// errors). -// -// Our solution is to combine the best part of the two approaches: a -// user would write Types, and Google Test will translate -// that to TypesN internally to make error messages -// readable. The translation is done by the 'type' member of the -// Types template. -template -struct Types { - typedef internal::Types50 type; -}; - -template <> -struct Types { - typedef internal::Types0 type; -}; -template -struct Types { - typedef internal::Types1 type; -}; -template -struct Types { - typedef internal::Types2 type; -}; -template -struct Types { - typedef internal::Types3 type; -}; -template -struct Types { - typedef internal::Types4 type; -}; -template -struct Types { - typedef internal::Types5 type; -}; -template -struct Types { - typedef internal::Types6 type; -}; -template -struct Types { - typedef internal::Types7 type; -}; -template -struct Types { - typedef internal::Types8 type; -}; -template -struct Types { - typedef internal::Types9 type; -}; -template -struct Types { - typedef internal::Types10 type; -}; -template -struct Types { - typedef internal::Types11 type; -}; -template -struct Types { - typedef internal::Types12 type; -}; -template -struct Types { - typedef internal::Types13 type; -}; -template -struct Types { - typedef internal::Types14 type; -}; -template -struct Types { - typedef internal::Types15 type; -}; -template -struct Types { - typedef internal::Types16 type; -}; -template -struct Types { - typedef internal::Types17 type; -}; -template -struct Types { - typedef internal::Types18 type; -}; -template -struct Types { - typedef internal::Types19 type; -}; -template -struct Types { - typedef internal::Types20 type; -}; -template -struct Types { - typedef internal::Types21 type; -}; -template -struct Types { - typedef internal::Types22 type; -}; -template -struct Types { - typedef internal::Types23 type; -}; -template -struct Types { - typedef internal::Types24 type; -}; -template -struct Types { - typedef internal::Types25 type; -}; -template -struct Types { - typedef internal::Types26 type; -}; -template -struct Types { - typedef internal::Types27 type; -}; -template -struct Types { - typedef internal::Types28 type; -}; -template -struct Types { - typedef internal::Types29 type; -}; -template -struct Types { - typedef internal::Types30 type; -}; -template -struct Types { - typedef internal::Types31 type; -}; -template -struct Types { - typedef internal::Types32 type; -}; -template -struct Types { - typedef internal::Types33 type; -}; -template -struct Types { - typedef internal::Types34 type; -}; -template -struct Types { - typedef internal::Types35 type; -}; -template -struct Types { - typedef internal::Types36 type; -}; -template -struct Types { - typedef internal::Types37 type; -}; -template -struct Types { - typedef internal::Types38 type; -}; -template -struct Types { - typedef internal::Types39 type; -}; -template -struct Types { - typedef internal::Types40 type; -}; -template -struct Types { - typedef internal::Types41 type; -}; -template -struct Types { - typedef internal::Types42 type; -}; -template -struct Types { - typedef internal::Types43 type; -}; -template -struct Types { - typedef internal::Types44 type; -}; -template -struct Types { - typedef internal::Types45 type; -}; -template -struct Types { - typedef internal::Types46 type; -}; -template -struct Types { - typedef internal::Types47 type; -}; -template -struct Types { - typedef internal::Types48 type; -}; -template -struct Types { - typedef internal::Types49 type; -}; - -namespace internal { - -#define GTEST_TEMPLATE_ template class - -// The template "selector" struct TemplateSel is used to -// represent Tmpl, which must be a class template with one type -// parameter, as a type. TemplateSel::Bind::type is defined -// as the type Tmpl. This allows us to actually instantiate the -// template "selected" by TemplateSel. -// -// This trick is necessary for simulating typedef for class templates, -// which C++ doesn't support directly. -template -struct TemplateSel { - template - struct Bind { - typedef Tmpl type; - }; -}; - -#define GTEST_BIND_(TmplSel, T) \ - TmplSel::template Bind::type - -// A unique struct template used as the default value for the -// arguments of class template Templates. This allows us to simulate -// variadic templates (e.g. Templates, Templates, -// and etc), which C++ doesn't support directly. -template -struct NoneT {}; - -// The following family of struct and struct templates are used to -// represent template lists. In particular, TemplatesN represents a list of N templates (T1, T2, ..., and TN). Except -// for Templates0, every struct in the family has two member types: -// Head for the selector of the first template in the list, and Tail -// for the rest of the list. - -// The empty template list. -struct Templates0 {}; - -// Template lists of length 1, 2, 3, and so on. - -template -struct Templates1 { - typedef TemplateSel Head; - typedef Templates0 Tail; -}; -template -struct Templates2 { - typedef TemplateSel Head; - typedef Templates1 Tail; -}; - -template -struct Templates3 { - typedef TemplateSel Head; - typedef Templates2 Tail; -}; - -template -struct Templates4 { - typedef TemplateSel Head; - typedef Templates3 Tail; -}; - -template -struct Templates5 { - typedef TemplateSel Head; - typedef Templates4 Tail; -}; - -template -struct Templates6 { - typedef TemplateSel Head; - typedef Templates5 Tail; -}; - -template -struct Templates7 { - typedef TemplateSel Head; - typedef Templates6 Tail; -}; - -template -struct Templates8 { - typedef TemplateSel Head; - typedef Templates7 Tail; -}; - -template -struct Templates9 { - typedef TemplateSel Head; - typedef Templates8 Tail; -}; - -template -struct Templates10 { - typedef TemplateSel Head; - typedef Templates9 Tail; -}; - -template -struct Templates11 { - typedef TemplateSel Head; - typedef Templates10 Tail; -}; - -template -struct Templates12 { - typedef TemplateSel Head; - typedef Templates11 Tail; -}; - -template -struct Templates13 { - typedef TemplateSel Head; - typedef Templates12 Tail; -}; - -template -struct Templates14 { - typedef TemplateSel Head; - typedef Templates13 Tail; -}; - -template -struct Templates15 { - typedef TemplateSel Head; - typedef Templates14 Tail; -}; - -template -struct Templates16 { - typedef TemplateSel Head; - typedef Templates15 Tail; -}; - -template -struct Templates17 { - typedef TemplateSel Head; - typedef Templates16 Tail; -}; - -template -struct Templates18 { - typedef TemplateSel Head; - typedef Templates17 Tail; -}; - -template -struct Templates19 { - typedef TemplateSel Head; - typedef Templates18 Tail; -}; - -template -struct Templates20 { - typedef TemplateSel Head; - typedef Templates19 Tail; -}; - -template -struct Templates21 { - typedef TemplateSel Head; - typedef Templates20 Tail; -}; - -template -struct Templates22 { - typedef TemplateSel Head; - typedef Templates21 Tail; -}; - -template -struct Templates23 { - typedef TemplateSel Head; - typedef Templates22 Tail; -}; - -template -struct Templates24 { - typedef TemplateSel Head; - typedef Templates23 Tail; -}; - -template -struct Templates25 { - typedef TemplateSel Head; - typedef Templates24 Tail; -}; - -template -struct Templates26 { - typedef TemplateSel Head; - typedef Templates25 Tail; -}; - -template -struct Templates27 { - typedef TemplateSel Head; - typedef Templates26 Tail; -}; - -template -struct Templates28 { - typedef TemplateSel Head; - typedef Templates27 Tail; -}; - -template -struct Templates29 { - typedef TemplateSel Head; - typedef Templates28 Tail; -}; - -template -struct Templates30 { - typedef TemplateSel Head; - typedef Templates29 Tail; -}; - -template -struct Templates31 { - typedef TemplateSel Head; - typedef Templates30 Tail; -}; - -template -struct Templates32 { - typedef TemplateSel Head; - typedef Templates31 Tail; -}; - -template -struct Templates33 { - typedef TemplateSel Head; - typedef Templates32 Tail; -}; - -template -struct Templates34 { - typedef TemplateSel Head; - typedef Templates33 Tail; -}; - -template -struct Templates35 { - typedef TemplateSel Head; - typedef Templates34 Tail; -}; - -template -struct Templates36 { - typedef TemplateSel Head; - typedef Templates35 Tail; -}; - -template -struct Templates37 { - typedef TemplateSel Head; - typedef Templates36 Tail; -}; - -template -struct Templates38 { - typedef TemplateSel Head; - typedef Templates37 Tail; -}; - -template -struct Templates39 { - typedef TemplateSel Head; - typedef Templates38 Tail; -}; - -template -struct Templates40 { - typedef TemplateSel Head; - typedef Templates39 Tail; -}; - -template -struct Templates41 { - typedef TemplateSel Head; - typedef Templates40 Tail; -}; - -template -struct Templates42 { - typedef TemplateSel Head; - typedef Templates41 Tail; -}; - -template -struct Templates43 { - typedef TemplateSel Head; - typedef Templates42 Tail; -}; - -template -struct Templates44 { - typedef TemplateSel Head; - typedef Templates43 Tail; -}; - -template -struct Templates45 { - typedef TemplateSel Head; - typedef Templates44 Tail; -}; - -template -struct Templates46 { - typedef TemplateSel Head; - typedef Templates45 Tail; -}; - -template -struct Templates47 { - typedef TemplateSel Head; - typedef Templates46 Tail; -}; - -template -struct Templates48 { - typedef TemplateSel Head; - typedef Templates47 Tail; -}; - -template -struct Templates49 { - typedef TemplateSel Head; - typedef Templates48 Tail; -}; - -template -struct Templates50 { - typedef TemplateSel Head; - typedef Templates49 Tail; -}; - - -// We don't want to require the users to write TemplatesN<...> directly, -// as that would require them to count the length. Templates<...> is much -// easier to write, but generates horrible messages when there is a -// compiler error, as gcc insists on printing out each template -// argument, even if it has the default value (this means Templates -// will appear as Templates in the compiler -// errors). -// -// Our solution is to combine the best part of the two approaches: a -// user would write Templates, and Google Test will translate -// that to TemplatesN internally to make error messages -// readable. The translation is done by the 'type' member of the -// Templates template. -template -struct Templates { - typedef Templates50 type; -}; - -template <> -struct Templates { - typedef Templates0 type; -}; -template -struct Templates { - typedef Templates1 type; -}; -template -struct Templates { - typedef Templates2 type; -}; -template -struct Templates { - typedef Templates3 type; -}; -template -struct Templates { - typedef Templates4 type; -}; -template -struct Templates { - typedef Templates5 type; -}; -template -struct Templates { - typedef Templates6 type; -}; -template -struct Templates { - typedef Templates7 type; -}; -template -struct Templates { - typedef Templates8 type; -}; -template -struct Templates { - typedef Templates9 type; -}; -template -struct Templates { - typedef Templates10 type; -}; -template -struct Templates { - typedef Templates11 type; -}; -template -struct Templates { - typedef Templates12 type; -}; -template -struct Templates { - typedef Templates13 type; -}; -template -struct Templates { - typedef Templates14 type; -}; -template -struct Templates { - typedef Templates15 type; -}; -template -struct Templates { - typedef Templates16 type; -}; -template -struct Templates { - typedef Templates17 type; -}; -template -struct Templates { - typedef Templates18 type; -}; -template -struct Templates { - typedef Templates19 type; -}; -template -struct Templates { - typedef Templates20 type; -}; -template -struct Templates { - typedef Templates21 type; -}; -template -struct Templates { - typedef Templates22 type; -}; -template -struct Templates { - typedef Templates23 type; -}; -template -struct Templates { - typedef Templates24 type; -}; -template -struct Templates { - typedef Templates25 type; -}; -template -struct Templates { - typedef Templates26 type; -}; -template -struct Templates { - typedef Templates27 type; -}; -template -struct Templates { - typedef Templates28 type; -}; -template -struct Templates { - typedef Templates29 type; -}; -template -struct Templates { - typedef Templates30 type; -}; -template -struct Templates { - typedef Templates31 type; -}; -template -struct Templates { - typedef Templates32 type; -}; -template -struct Templates { - typedef Templates33 type; -}; -template -struct Templates { - typedef Templates34 type; -}; -template -struct Templates { - typedef Templates35 type; -}; -template -struct Templates { - typedef Templates36 type; -}; -template -struct Templates { - typedef Templates37 type; -}; -template -struct Templates { - typedef Templates38 type; -}; -template -struct Templates { - typedef Templates39 type; -}; -template -struct Templates { - typedef Templates40 type; -}; -template -struct Templates { - typedef Templates41 type; -}; -template -struct Templates { - typedef Templates42 type; -}; -template -struct Templates { - typedef Templates43 type; -}; -template -struct Templates { - typedef Templates44 type; -}; -template -struct Templates { - typedef Templates45 type; -}; -template -struct Templates { - typedef Templates46 type; -}; -template -struct Templates { - typedef Templates47 type; -}; -template -struct Templates { - typedef Templates48 type; -}; -template -struct Templates { - typedef Templates49 type; -}; - -// The TypeList template makes it possible to use either a single type -// or a Types<...> list in TYPED_TEST_CASE() and -// INSTANTIATE_TYPED_TEST_CASE_P(). - -template -struct TypeList { typedef Types1 type; }; - -template -struct TypeList > { - typedef typename Types::type type; -}; - -} // namespace internal -} // namespace testing - -#endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-type-util.h.pump b/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-type-util.h.pump deleted file mode 100644 index 5aed1e554..000000000 --- a/cpp/thirdparty/gtest-1.5.0/include/gtest/internal/gtest-type-util.h.pump +++ /dev/null @@ -1,287 +0,0 @@ -$$ -*- mode: c++; -*- -$var n = 50 $$ Maximum length of type lists we want to support. -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Type utilities needed for implementing typed and type-parameterized -// tests. This file is generated by a SCRIPT. DO NOT EDIT BY HAND! -// -// Currently we support at most $n types in a list, and at most $n -// type-parameterized tests in one type-parameterized test case. -// Please contact googletestframework@googlegroups.com if you need -// more. - -#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ -#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ - -#include -#include - -#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P - -// #ifdef __GNUC__ is too general here. It is possible to use gcc without using -// libstdc++ (which is where cxxabi.h comes from). -#ifdef __GLIBCXX__ -#include -#endif // __GLIBCXX__ - -namespace testing { -namespace internal { - -// AssertyTypeEq::type is defined iff T1 and T2 are the same -// type. This can be used as a compile-time assertion to ensure that -// two types are equal. - -template -struct AssertTypeEq; - -template -struct AssertTypeEq { - typedef bool type; -}; - -// GetTypeName() returns a human-readable name of type T. -template -String GetTypeName() { -#if GTEST_HAS_RTTI - - const char* const name = typeid(T).name(); -#ifdef __GLIBCXX__ - int status = 0; - // gcc's implementation of typeid(T).name() mangles the type name, - // so we have to demangle it. - char* const readable_name = abi::__cxa_demangle(name, 0, 0, &status); - const String name_str(status == 0 ? readable_name : name); - free(readable_name); - return name_str; -#else - return name; -#endif // __GLIBCXX__ - -#else - return ""; -#endif // GTEST_HAS_RTTI -} - -// A unique type used as the default value for the arguments of class -// template Types. This allows us to simulate variadic templates -// (e.g. Types, Type, and etc), which C++ doesn't -// support directly. -struct None {}; - -// The following family of struct and struct templates are used to -// represent type lists. In particular, TypesN -// represents a type list with N types (T1, T2, ..., and TN) in it. -// Except for Types0, every struct in the family has two member types: -// Head for the first type in the list, and Tail for the rest of the -// list. - -// The empty type list. -struct Types0 {}; - -// Type lists of length 1, 2, 3, and so on. - -template -struct Types1 { - typedef T1 Head; - typedef Types0 Tail; -}; - -$range i 2..n - -$for i [[ -$range j 1..i -$range k 2..i -template <$for j, [[typename T$j]]> -struct Types$i { - typedef T1 Head; - typedef Types$(i-1)<$for k, [[T$k]]> Tail; -}; - - -]] - -} // namespace internal - -// We don't want to require the users to write TypesN<...> directly, -// as that would require them to count the length. Types<...> is much -// easier to write, but generates horrible messages when there is a -// compiler error, as gcc insists on printing out each template -// argument, even if it has the default value (this means Types -// will appear as Types in the compiler -// errors). -// -// Our solution is to combine the best part of the two approaches: a -// user would write Types, and Google Test will translate -// that to TypesN internally to make error messages -// readable. The translation is done by the 'type' member of the -// Types template. - -$range i 1..n -template <$for i, [[typename T$i = internal::None]]> -struct Types { - typedef internal::Types$n<$for i, [[T$i]]> type; -}; - -template <> -struct Types<$for i, [[internal::None]]> { - typedef internal::Types0 type; -}; - -$range i 1..n-1 -$for i [[ -$range j 1..i -$range k i+1..n -template <$for j, [[typename T$j]]> -struct Types<$for j, [[T$j]]$for k[[, internal::None]]> { - typedef internal::Types$i<$for j, [[T$j]]> type; -}; - -]] - -namespace internal { - -#define GTEST_TEMPLATE_ template class - -// The template "selector" struct TemplateSel is used to -// represent Tmpl, which must be a class template with one type -// parameter, as a type. TemplateSel::Bind::type is defined -// as the type Tmpl. This allows us to actually instantiate the -// template "selected" by TemplateSel. -// -// This trick is necessary for simulating typedef for class templates, -// which C++ doesn't support directly. -template -struct TemplateSel { - template - struct Bind { - typedef Tmpl type; - }; -}; - -#define GTEST_BIND_(TmplSel, T) \ - TmplSel::template Bind::type - -// A unique struct template used as the default value for the -// arguments of class template Templates. This allows us to simulate -// variadic templates (e.g. Templates, Templates, -// and etc), which C++ doesn't support directly. -template -struct NoneT {}; - -// The following family of struct and struct templates are used to -// represent template lists. In particular, TemplatesN represents a list of N templates (T1, T2, ..., and TN). Except -// for Templates0, every struct in the family has two member types: -// Head for the selector of the first template in the list, and Tail -// for the rest of the list. - -// The empty template list. -struct Templates0 {}; - -// Template lists of length 1, 2, 3, and so on. - -template -struct Templates1 { - typedef TemplateSel Head; - typedef Templates0 Tail; -}; - -$range i 2..n - -$for i [[ -$range j 1..i -$range k 2..i -template <$for j, [[GTEST_TEMPLATE_ T$j]]> -struct Templates$i { - typedef TemplateSel Head; - typedef Templates$(i-1)<$for k, [[T$k]]> Tail; -}; - - -]] - -// We don't want to require the users to write TemplatesN<...> directly, -// as that would require them to count the length. Templates<...> is much -// easier to write, but generates horrible messages when there is a -// compiler error, as gcc insists on printing out each template -// argument, even if it has the default value (this means Templates -// will appear as Templates in the compiler -// errors). -// -// Our solution is to combine the best part of the two approaches: a -// user would write Templates, and Google Test will translate -// that to TemplatesN internally to make error messages -// readable. The translation is done by the 'type' member of the -// Templates template. - -$range i 1..n -template <$for i, [[GTEST_TEMPLATE_ T$i = NoneT]]> -struct Templates { - typedef Templates$n<$for i, [[T$i]]> type; -}; - -template <> -struct Templates<$for i, [[NoneT]]> { - typedef Templates0 type; -}; - -$range i 1..n-1 -$for i [[ -$range j 1..i -$range k i+1..n -template <$for j, [[GTEST_TEMPLATE_ T$j]]> -struct Templates<$for j, [[T$j]]$for k[[, NoneT]]> { - typedef Templates$i<$for j, [[T$j]]> type; -}; - -]] - -// The TypeList template makes it possible to use either a single type -// or a Types<...> list in TYPED_TEST_CASE() and -// INSTANTIATE_TYPED_TEST_CASE_P(). - -template -struct TypeList { typedef Types1 type; }; - - -$range i 1..n -template <$for i, [[typename T$i]]> -struct TypeList > { - typedef typename Types<$for i, [[T$i]]>::type type; -}; - -} // namespace internal -} // namespace testing - -#endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P - -#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/m4/acx_pthread.m4 b/cpp/thirdparty/gtest-1.5.0/m4/acx_pthread.m4 deleted file mode 100644 index 2cf20de14..000000000 --- a/cpp/thirdparty/gtest-1.5.0/m4/acx_pthread.m4 +++ /dev/null @@ -1,363 +0,0 @@ -# This was retrieved from -# http://svn.0pointer.de/viewvc/trunk/common/acx_pthread.m4?revision=1277&root=avahi -# See also (perhaps for new versions?) -# http://svn.0pointer.de/viewvc/trunk/common/acx_pthread.m4?root=avahi -# -# We've rewritten the inconsistency check code (from avahi), to work -# more broadly. In particular, it no longer assumes ld accepts -zdefs. -# This caused a restructing of the code, but the functionality has only -# changed a little. - -dnl @synopsis ACX_PTHREAD([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) -dnl -dnl @summary figure out how to build C programs using POSIX threads -dnl -dnl This macro figures out how to build C programs using POSIX threads. -dnl It sets the PTHREAD_LIBS output variable to the threads library and -dnl linker flags, and the PTHREAD_CFLAGS output variable to any special -dnl C compiler flags that are needed. (The user can also force certain -dnl compiler flags/libs to be tested by setting these environment -dnl variables.) -dnl -dnl Also sets PTHREAD_CC to any special C compiler that is needed for -dnl multi-threaded programs (defaults to the value of CC otherwise). -dnl (This is necessary on AIX to use the special cc_r compiler alias.) -dnl -dnl NOTE: You are assumed to not only compile your program with these -dnl flags, but also link it with them as well. e.g. you should link -dnl with $PTHREAD_CC $CFLAGS $PTHREAD_CFLAGS $LDFLAGS ... $PTHREAD_LIBS -dnl $LIBS -dnl -dnl If you are only building threads programs, you may wish to use -dnl these variables in your default LIBS, CFLAGS, and CC: -dnl -dnl LIBS="$PTHREAD_LIBS $LIBS" -dnl CFLAGS="$CFLAGS $PTHREAD_CFLAGS" -dnl CC="$PTHREAD_CC" -dnl -dnl In addition, if the PTHREAD_CREATE_JOINABLE thread-attribute -dnl constant has a nonstandard name, defines PTHREAD_CREATE_JOINABLE to -dnl that name (e.g. PTHREAD_CREATE_UNDETACHED on AIX). -dnl -dnl ACTION-IF-FOUND is a list of shell commands to run if a threads -dnl library is found, and ACTION-IF-NOT-FOUND is a list of commands to -dnl run it if it is not found. If ACTION-IF-FOUND is not specified, the -dnl default action will define HAVE_PTHREAD. -dnl -dnl Please let the authors know if this macro fails on any platform, or -dnl if you have any other suggestions or comments. This macro was based -dnl on work by SGJ on autoconf scripts for FFTW (www.fftw.org) (with -dnl help from M. Frigo), as well as ac_pthread and hb_pthread macros -dnl posted by Alejandro Forero Cuervo to the autoconf macro repository. -dnl We are also grateful for the helpful feedback of numerous users. -dnl -dnl @category InstalledPackages -dnl @author Steven G. Johnson -dnl @version 2006-05-29 -dnl @license GPLWithACException -dnl -dnl Checks for GCC shared/pthread inconsistency based on work by -dnl Marcin Owsiany - - -AC_DEFUN([ACX_PTHREAD], [ -AC_REQUIRE([AC_CANONICAL_HOST]) -AC_LANG_SAVE -AC_LANG_C -acx_pthread_ok=no - -# We used to check for pthread.h first, but this fails if pthread.h -# requires special compiler flags (e.g. on True64 or Sequent). -# It gets checked for in the link test anyway. - -# First of all, check if the user has set any of the PTHREAD_LIBS, -# etcetera environment variables, and if threads linking works using -# them: -if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - save_LIBS="$LIBS" - LIBS="$PTHREAD_LIBS $LIBS" - AC_MSG_CHECKING([for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS]) - AC_TRY_LINK_FUNC(pthread_join, acx_pthread_ok=yes) - AC_MSG_RESULT($acx_pthread_ok) - if test x"$acx_pthread_ok" = xno; then - PTHREAD_LIBS="" - PTHREAD_CFLAGS="" - fi - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" -fi - -# We must check for the threads library under a number of different -# names; the ordering is very important because some systems -# (e.g. DEC) have both -lpthread and -lpthreads, where one of the -# libraries is broken (non-POSIX). - -# Create a list of thread flags to try. Items starting with a "-" are -# C compiler flags, and other items are library names, except for "none" -# which indicates that we try without any flags at all, and "pthread-config" -# which is a program returning the flags for the Pth emulation library. - -acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" - -# The ordering *is* (sometimes) important. Some notes on the -# individual items follow: - -# pthreads: AIX (must check this before -lpthread) -# none: in case threads are in libc; should be tried before -Kthread and -# other compiler flags to prevent continual compiler warnings -# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) -# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) -# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) -# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) -# -pthreads: Solaris/gcc -# -mthreads: Mingw32/gcc, Lynx/gcc -# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it -# doesn't hurt to check since this sometimes defines pthreads too; -# also defines -D_REENTRANT) -# ... -mt is also the pthreads flag for HP/aCC -# pthread: Linux, etcetera -# --thread-safe: KAI C++ -# pthread-config: use pthread-config program (for GNU Pth library) - -case "${host_cpu}-${host_os}" in - *solaris*) - - # On Solaris (at least, for some versions), libc contains stubbed - # (non-functional) versions of the pthreads routines, so link-based - # tests will erroneously succeed. (We need to link with -pthreads/-mt/ - # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather - # a function called by this macro, so we could check for that, but - # who knows whether they'll stub that too in a future libc.) So, - # we'll just look for -pthreads and -lpthread first: - - acx_pthread_flags="-pthreads pthread -mt -pthread $acx_pthread_flags" - ;; -esac - -if test x"$acx_pthread_ok" = xno; then -for flag in $acx_pthread_flags; do - - case $flag in - none) - AC_MSG_CHECKING([whether pthreads work without any flags]) - ;; - - -*) - AC_MSG_CHECKING([whether pthreads work with $flag]) - PTHREAD_CFLAGS="$flag" - ;; - - pthread-config) - AC_CHECK_PROG(acx_pthread_config, pthread-config, yes, no) - if test x"$acx_pthread_config" = xno; then continue; fi - PTHREAD_CFLAGS="`pthread-config --cflags`" - PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" - ;; - - *) - AC_MSG_CHECKING([for the pthreads library -l$flag]) - PTHREAD_LIBS="-l$flag" - ;; - esac - - save_LIBS="$LIBS" - save_CFLAGS="$CFLAGS" - LIBS="$PTHREAD_LIBS $LIBS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - - # Check for various functions. We must include pthread.h, - # since some functions may be macros. (On the Sequent, we - # need a special flag -Kthread to make this header compile.) - # We check for pthread_join because it is in -lpthread on IRIX - # while pthread_create is in libc. We check for pthread_attr_init - # due to DEC craziness with -lpthreads. We check for - # pthread_cleanup_push because it is one of the few pthread - # functions on Solaris that doesn't have a non-functional libc stub. - # We try pthread_create on general principles. - AC_TRY_LINK([#include ], - [pthread_t th; pthread_join(th, 0); - pthread_attr_init(0); pthread_cleanup_push(0, 0); - pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], - [acx_pthread_ok=yes]) - - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" - - AC_MSG_RESULT($acx_pthread_ok) - if test "x$acx_pthread_ok" = xyes; then - break; - fi - - PTHREAD_LIBS="" - PTHREAD_CFLAGS="" -done -fi - -# Various other checks: -if test "x$acx_pthread_ok" = xyes; then - save_LIBS="$LIBS" - LIBS="$PTHREAD_LIBS $LIBS" - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $PTHREAD_CFLAGS" - - # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. - AC_MSG_CHECKING([for joinable pthread attribute]) - attr_name=unknown - for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do - AC_TRY_LINK([#include ], [int attr=$attr; return attr;], - [attr_name=$attr; break]) - done - AC_MSG_RESULT($attr_name) - if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then - AC_DEFINE_UNQUOTED(PTHREAD_CREATE_JOINABLE, $attr_name, - [Define to necessary symbol if this constant - uses a non-standard name on your system.]) - fi - - AC_MSG_CHECKING([if more special flags are required for pthreads]) - flag=no - case "${host_cpu}-${host_os}" in - *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; - *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; - esac - AC_MSG_RESULT(${flag}) - if test "x$flag" != xno; then - PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" - fi - - LIBS="$save_LIBS" - CFLAGS="$save_CFLAGS" - # More AIX lossage: must compile with xlc_r or cc_r - if test x"$GCC" != xyes; then - AC_CHECK_PROGS(PTHREAD_CC, xlc_r cc_r, ${CC}) - else - PTHREAD_CC=$CC - fi - - # The next part tries to detect GCC inconsistency with -shared on some - # architectures and systems. The problem is that in certain - # configurations, when -shared is specified, GCC "forgets" to - # internally use various flags which are still necessary. - - # - # Prepare the flags - # - save_CFLAGS="$CFLAGS" - save_LIBS="$LIBS" - save_CC="$CC" - - # Try with the flags determined by the earlier checks. - # - # -Wl,-z,defs forces link-time symbol resolution, so that the - # linking checks with -shared actually have any value - # - # FIXME: -fPIC is required for -shared on many architectures, - # so we specify it here, but the right way would probably be to - # properly detect whether it is actually required. - CFLAGS="-shared -fPIC -Wl,-z,defs $CFLAGS $PTHREAD_CFLAGS" - LIBS="$PTHREAD_LIBS $LIBS" - CC="$PTHREAD_CC" - - # In order not to create several levels of indentation, we test - # the value of "$done" until we find the cure or run out of ideas. - done="no" - - # First, make sure the CFLAGS we added are actually accepted by our - # compiler. If not (and OS X's ld, for instance, does not accept -z), - # then we can't do this test. - if test x"$done" = xno; then - AC_MSG_CHECKING([whether to check for GCC pthread/shared inconsistencies]) - AC_TRY_LINK(,, , [done=yes]) - - if test "x$done" = xyes ; then - AC_MSG_RESULT([no]) - else - AC_MSG_RESULT([yes]) - fi - fi - - if test x"$done" = xno; then - AC_MSG_CHECKING([whether -pthread is sufficient with -shared]) - AC_TRY_LINK([#include ], - [pthread_t th; pthread_join(th, 0); - pthread_attr_init(0); pthread_cleanup_push(0, 0); - pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], - [done=yes]) - - if test "x$done" = xyes; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - fi - fi - - # - # Linux gcc on some architectures such as mips/mipsel forgets - # about -lpthread - # - if test x"$done" = xno; then - AC_MSG_CHECKING([whether -lpthread fixes that]) - LIBS="-lpthread $PTHREAD_LIBS $save_LIBS" - AC_TRY_LINK([#include ], - [pthread_t th; pthread_join(th, 0); - pthread_attr_init(0); pthread_cleanup_push(0, 0); - pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], - [done=yes]) - - if test "x$done" = xyes; then - AC_MSG_RESULT([yes]) - PTHREAD_LIBS="-lpthread $PTHREAD_LIBS" - else - AC_MSG_RESULT([no]) - fi - fi - # - # FreeBSD 4.10 gcc forgets to use -lc_r instead of -lc - # - if test x"$done" = xno; then - AC_MSG_CHECKING([whether -lc_r fixes that]) - LIBS="-lc_r $PTHREAD_LIBS $save_LIBS" - AC_TRY_LINK([#include ], - [pthread_t th; pthread_join(th, 0); - pthread_attr_init(0); pthread_cleanup_push(0, 0); - pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], - [done=yes]) - - if test "x$done" = xyes; then - AC_MSG_RESULT([yes]) - PTHREAD_LIBS="-lc_r $PTHREAD_LIBS" - else - AC_MSG_RESULT([no]) - fi - fi - if test x"$done" = xno; then - # OK, we have run out of ideas - AC_MSG_WARN([Impossible to determine how to use pthreads with shared libraries]) - - # so it's not safe to assume that we may use pthreads - acx_pthread_ok=no - fi - - CFLAGS="$save_CFLAGS" - LIBS="$save_LIBS" - CC="$save_CC" -else - PTHREAD_CC="$CC" -fi - -AC_SUBST(PTHREAD_LIBS) -AC_SUBST(PTHREAD_CFLAGS) -AC_SUBST(PTHREAD_CC) - -# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: -if test x"$acx_pthread_ok" = xyes; then - ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.]),[$1]) - : -else - acx_pthread_ok=no - $2 -fi -AC_LANG_RESTORE -])dnl ACX_PTHREAD diff --git a/cpp/thirdparty/gtest-1.5.0/m4/gtest.m4 b/cpp/thirdparty/gtest-1.5.0/m4/gtest.m4 deleted file mode 100644 index 6598ba75a..000000000 --- a/cpp/thirdparty/gtest-1.5.0/m4/gtest.m4 +++ /dev/null @@ -1,74 +0,0 @@ -dnl GTEST_LIB_CHECK([minimum version [, -dnl action if found [,action if not found]]]) -dnl -dnl Check for the presence of the Google Test library, optionally at a minimum -dnl version, and indicate a viable version with the HAVE_GTEST flag. It defines -dnl standard variables for substitution including GTEST_CPPFLAGS, -dnl GTEST_CXXFLAGS, GTEST_LDFLAGS, and GTEST_LIBS. It also defines -dnl GTEST_VERSION as the version of Google Test found. Finally, it provides -dnl optional custom action slots in the event GTEST is found or not. -AC_DEFUN([GTEST_LIB_CHECK], -[ -dnl Provide a flag to enable or disable Google Test usage. -AC_ARG_ENABLE([gtest], - [AS_HELP_STRING([--enable-gtest], - [Enable tests using the Google C++ Testing Framework. - (Default is enabled.)])], - [], - [enable_gtest=]) -AC_ARG_VAR([GTEST_CONFIG], - [The exact path of Google Test's 'gtest-config' script.]) -AC_ARG_VAR([GTEST_CPPFLAGS], - [C-like preprocessor flags for Google Test.]) -AC_ARG_VAR([GTEST_CXXFLAGS], - [C++ compile flags for Google Test.]) -AC_ARG_VAR([GTEST_LDFLAGS], - [Linker path and option flags for Google Test.]) -AC_ARG_VAR([GTEST_LIBS], - [Library linking flags for Google Test.]) -AC_ARG_VAR([GTEST_VERSION], - [The version of Google Test available.]) -HAVE_GTEST="no" -AS_IF([test "x${enable_gtest}" != "xno"], - [AC_MSG_CHECKING([for 'gtest-config']) - AS_IF([test "x${enable_gtest}" != "xyes"], - [AS_IF([test -x "${enable_gtest}/scripts/gtest-config"], - [GTEST_CONFIG="${enable_gtest}/scripts/gtest-config"], - [GTEST_CONFIG="${enable_gtest}/bin/gtest-config"]) - AS_IF([test -x "${GTEST_CONFIG}"], [], - [AC_MSG_RESULT([no]) - AC_MSG_ERROR([dnl -Unable to locate either a built or installed Google Test. -The specific location '${enable_gtest}' was provided for a built or installed -Google Test, but no 'gtest-config' script could be found at this location.]) - ])], - [AC_PATH_PROG([GTEST_CONFIG], [gtest-config])]) - AS_IF([test -x "${GTEST_CONFIG}"], - [AC_MSG_RESULT([${GTEST_CONFIG}]) - m4_ifval([$1], - [_gtest_min_version="--min-version=$1" - AC_MSG_CHECKING([for Google Test at least version >= $1])], - [_gtest_min_version="--min-version=0" - AC_MSG_CHECKING([for Google Test])]) - AS_IF([${GTEST_CONFIG} ${_gtest_min_version}], - [AC_MSG_RESULT([yes]) - HAVE_GTEST='yes'], - [AC_MSG_RESULT([no])])], - [AC_MSG_RESULT([no])]) - AS_IF([test "x${HAVE_GTEST}" = "xyes"], - [GTEST_CPPFLAGS=`${GTEST_CONFIG} --cppflags` - GTEST_CXXFLAGS=`${GTEST_CONFIG} --cxxflags` - GTEST_LDFLAGS=`${GTEST_CONFIG} --ldflags` - GTEST_LIBS=`${GTEST_CONFIG} --libs` - GTEST_VERSION=`${GTEST_CONFIG} --version` - AC_DEFINE([HAVE_GTEST],[1],[Defined when Google Test is available.])], - [AS_IF([test "x${enable_gtest}" = "xyes"], - [AC_MSG_ERROR([dnl -Google Test was enabled, but no viable version could be found.]) - ])])]) -AC_SUBST([HAVE_GTEST]) -AM_CONDITIONAL([HAVE_GTEST],[test "x$HAVE_GTEST" = "xyes"]) -AS_IF([test "x$HAVE_GTEST" = "xyes"], - [m4_ifval([$2], [$2])], - [m4_ifval([$3], [$3])]) -]) diff --git a/cpp/thirdparty/gtest-1.5.0/make/Makefile b/cpp/thirdparty/gtest-1.5.0/make/Makefile deleted file mode 100644 index 5b27b6a2c..000000000 --- a/cpp/thirdparty/gtest-1.5.0/make/Makefile +++ /dev/null @@ -1,80 +0,0 @@ -# A sample Makefile for building Google Test and using it in user -# tests. Please tweak it to suit your environment and project. You -# may want to move it to your project's root directory. -# -# SYNOPSIS: -# -# make [all] - makes everything. -# make TARGET - makes the given target. -# make clean - removes all files generated by make. - -# Please tweak the following variable definitions as needed by your -# project, except GTEST_HEADERS, which you can use in your own targets -# but shouldn't modify. - -# Points to the root of Google Test, relative to where this file is. -# Remember to tweak this if you move this file. -GTEST_DIR = .. - -# Where to find user code. -USER_DIR = ../samples - -# Flags passed to the preprocessor. -CPPFLAGS += -I$(GTEST_DIR)/include - -# Flags passed to the C++ compiler. -CXXFLAGS += -g -Wall -Wextra - -# All tests produced by this Makefile. Remember to add new tests you -# created to the list. -TESTS = sample1_unittest - -# All Google Test headers. Usually you shouldn't change this -# definition. -GTEST_HEADERS = $(GTEST_DIR)/include/gtest/*.h \ - $(GTEST_DIR)/include/gtest/internal/*.h - -# House-keeping build targets. - -all : $(TESTS) - -clean : - rm -f $(TESTS) gtest.a gtest_main.a *.o - -# Builds gtest.a and gtest_main.a. - -# Usually you shouldn't tweak such internal variables, indicated by a -# trailing _. -GTEST_SRCS_ = $(GTEST_DIR)/src/*.cc $(GTEST_DIR)/src/*.h $(GTEST_HEADERS) - -# For simplicity and to avoid depending on Google Test's -# implementation details, the dependencies specified below are -# conservative and not optimized. This is fine as Google Test -# compiles fast and for ordinary users its source rarely changes. -gtest-all.o : $(GTEST_SRCS_) - $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c \ - $(GTEST_DIR)/src/gtest-all.cc - -gtest_main.o : $(GTEST_SRCS_) - $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c \ - $(GTEST_DIR)/src/gtest_main.cc - -gtest.a : gtest-all.o - $(AR) $(ARFLAGS) $@ $^ - -gtest_main.a : gtest-all.o gtest_main.o - $(AR) $(ARFLAGS) $@ $^ - -# Builds a sample test. A test should link with either gtest.a or -# gtest_main.a, depending on whether it defines its own main() -# function. - -sample1.o : $(USER_DIR)/sample1.cc $(USER_DIR)/sample1.h $(GTEST_HEADERS) - $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1.cc - -sample1_unittest.o : $(USER_DIR)/sample1_unittest.cc \ - $(USER_DIR)/sample1.h $(GTEST_HEADERS) - $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1_unittest.cc - -sample1_unittest : sample1.o sample1_unittest.o gtest_main.a - $(CXX) $(CPPFLAGS) $(CXXFLAGS) -lpthread $^ -o $@ diff --git a/cpp/thirdparty/gtest-1.5.0/msvc/gtest-md.sln b/cpp/thirdparty/gtest-1.5.0/msvc/gtest-md.sln deleted file mode 100755 index f7908da11..000000000 --- a/cpp/thirdparty/gtest-1.5.0/msvc/gtest-md.sln +++ /dev/null @@ -1,45 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest-md", "gtest-md.vcproj", "{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_main-md", "gtest_main-md.vcproj", "{3AF54C8A-10BF-4332-9147-F68ED9862033}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_prod_test-md", "gtest_prod_test-md.vcproj", "{24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_unittest-md", "gtest_unittest-md.vcproj", "{4D9FDFB5-986A-4139-823C-F4EE0ED481A2}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug.ActiveCfg = Debug|Win32 - {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug.Build.0 = Debug|Win32 - {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release.ActiveCfg = Release|Win32 - {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release.Build.0 = Release|Win32 - {3AF54C8A-10BF-4332-9147-F68ED9862033}.Debug.ActiveCfg = Debug|Win32 - {3AF54C8A-10BF-4332-9147-F68ED9862033}.Debug.Build.0 = Debug|Win32 - {3AF54C8A-10BF-4332-9147-F68ED9862033}.Release.ActiveCfg = Release|Win32 - {3AF54C8A-10BF-4332-9147-F68ED9862033}.Release.Build.0 = Release|Win32 - {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Debug.ActiveCfg = Debug|Win32 - {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Debug.Build.0 = Debug|Win32 - {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Release.ActiveCfg = Release|Win32 - {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Release.Build.0 = Release|Win32 - {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Debug.ActiveCfg = Debug|Win32 - {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Debug.Build.0 = Debug|Win32 - {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Release.ActiveCfg = Release|Win32 - {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/cpp/thirdparty/gtest-1.5.0/msvc/gtest-md.vcproj b/cpp/thirdparty/gtest-1.5.0/msvc/gtest-md.vcproj deleted file mode 100755 index c78a4a4d9..000000000 --- a/cpp/thirdparty/gtest-1.5.0/msvc/gtest-md.vcproj +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/thirdparty/gtest-1.5.0/msvc/gtest.sln b/cpp/thirdparty/gtest-1.5.0/msvc/gtest.sln deleted file mode 100755 index ef4b057ff..000000000 --- a/cpp/thirdparty/gtest-1.5.0/msvc/gtest.sln +++ /dev/null @@ -1,45 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest", "gtest.vcproj", "{C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_main", "gtest_main.vcproj", "{3AF54C8A-10BF-4332-9147-F68ED9862032}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_unittest", "gtest_unittest.vcproj", "{4D9FDFB5-986A-4139-823C-F4EE0ED481A1}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_prod_test", "gtest_prod_test.vcproj", "{24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Debug.ActiveCfg = Debug|Win32 - {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Debug.Build.0 = Debug|Win32 - {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Release.ActiveCfg = Release|Win32 - {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Release.Build.0 = Release|Win32 - {3AF54C8A-10BF-4332-9147-F68ED9862032}.Debug.ActiveCfg = Debug|Win32 - {3AF54C8A-10BF-4332-9147-F68ED9862032}.Debug.Build.0 = Debug|Win32 - {3AF54C8A-10BF-4332-9147-F68ED9862032}.Release.ActiveCfg = Release|Win32 - {3AF54C8A-10BF-4332-9147-F68ED9862032}.Release.Build.0 = Release|Win32 - {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Debug.ActiveCfg = Debug|Win32 - {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Debug.Build.0 = Debug|Win32 - {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Release.ActiveCfg = Release|Win32 - {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Release.Build.0 = Release|Win32 - {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Debug.ActiveCfg = Debug|Win32 - {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Debug.Build.0 = Debug|Win32 - {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Release.ActiveCfg = Release|Win32 - {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/cpp/thirdparty/gtest-1.5.0/msvc/gtest.vcproj b/cpp/thirdparty/gtest-1.5.0/msvc/gtest.vcproj deleted file mode 100755 index bd2ed81e4..000000000 --- a/cpp/thirdparty/gtest-1.5.0/msvc/gtest.vcproj +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_main-md.vcproj b/cpp/thirdparty/gtest-1.5.0/msvc/gtest_main-md.vcproj deleted file mode 100755 index 321667f1b..000000000 --- a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_main-md.vcproj +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_main.vcproj b/cpp/thirdparty/gtest-1.5.0/msvc/gtest_main.vcproj deleted file mode 100755 index 13cc1d4f9..000000000 --- a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_main.vcproj +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_prod_test-md.vcproj b/cpp/thirdparty/gtest-1.5.0/msvc/gtest_prod_test-md.vcproj deleted file mode 100755 index 05b05d9ed..000000000 --- a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_prod_test-md.vcproj +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_prod_test.vcproj b/cpp/thirdparty/gtest-1.5.0/msvc/gtest_prod_test.vcproj deleted file mode 100755 index 6d7a2f021..000000000 --- a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_prod_test.vcproj +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_unittest-md.vcproj b/cpp/thirdparty/gtest-1.5.0/msvc/gtest_unittest-md.vcproj deleted file mode 100755 index 38a5e5663..000000000 --- a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_unittest-md.vcproj +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_unittest.vcproj b/cpp/thirdparty/gtest-1.5.0/msvc/gtest_unittest.vcproj deleted file mode 100755 index cb1f52b1f..000000000 --- a/cpp/thirdparty/gtest-1.5.0/msvc/gtest_unittest.vcproj +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cpp/thirdparty/gtest-1.5.0/samples/.gitignore b/cpp/thirdparty/gtest-1.5.0/samples/.gitignore deleted file mode 100644 index 213948b08..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/.deps -/.dirstamp -/*.o -/*.lo -/*.la -/.libs diff --git a/cpp/thirdparty/gtest-1.5.0/samples/prime_tables.h b/cpp/thirdparty/gtest-1.5.0/samples/prime_tables.h deleted file mode 100644 index 92ce16a01..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/prime_tables.h +++ /dev/null @@ -1,123 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// Author: vladl@google.com (Vlad Losev) - -// This provides interface PrimeTable that determines whether a number is a -// prime and determines a next prime number. This interface is used -// in Google Test samples demonstrating use of parameterized tests. - -#ifndef GTEST_SAMPLES_PRIME_TABLES_H_ -#define GTEST_SAMPLES_PRIME_TABLES_H_ - -#include - -// The prime table interface. -class PrimeTable { - public: - virtual ~PrimeTable() {} - - // Returns true iff n is a prime number. - virtual bool IsPrime(int n) const = 0; - - // Returns the smallest prime number greater than p; or returns -1 - // if the next prime is beyond the capacity of the table. - virtual int GetNextPrime(int p) const = 0; -}; - -// Implementation #1 calculates the primes on-the-fly. -class OnTheFlyPrimeTable : public PrimeTable { - public: - virtual bool IsPrime(int n) const { - if (n <= 1) return false; - - for (int i = 2; i*i <= n; i++) { - // n is divisible by an integer other than 1 and itself. - if ((n % i) == 0) return false; - } - - return true; - } - - virtual int GetNextPrime(int p) const { - for (int n = p + 1; n > 0; n++) { - if (IsPrime(n)) return n; - } - - return -1; - } -}; - -// Implementation #2 pre-calculates the primes and stores the result -// in an array. -class PreCalculatedPrimeTable : public PrimeTable { - public: - // 'max' specifies the maximum number the prime table holds. - explicit PreCalculatedPrimeTable(int max) - : is_prime_size_(max + 1), is_prime_(new bool[max + 1]) { - CalculatePrimesUpTo(max); - } - virtual ~PreCalculatedPrimeTable() { delete[] is_prime_; } - - virtual bool IsPrime(int n) const { - return 0 <= n && n < is_prime_size_ && is_prime_[n]; - } - - virtual int GetNextPrime(int p) const { - for (int n = p + 1; n < is_prime_size_; n++) { - if (is_prime_[n]) return n; - } - - return -1; - } - - private: - void CalculatePrimesUpTo(int max) { - ::std::fill(is_prime_, is_prime_ + is_prime_size_, true); - is_prime_[0] = is_prime_[1] = false; - - for (int i = 2; i <= max; i++) { - if (!is_prime_[i]) continue; - - // Marks all multiples of i (except i itself) as non-prime. - for (int j = 2*i; j <= max; j += i) { - is_prime_[j] = false; - } - } - } - - const int is_prime_size_; - bool* const is_prime_; - - // Disables compiler warning "assignment operator could not be generated." - void operator=(const PreCalculatedPrimeTable& rhs); -}; - -#endif // GTEST_SAMPLES_PRIME_TABLES_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample1.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample1.cc deleted file mode 100644 index f171e2609..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample1.cc +++ /dev/null @@ -1,68 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// A sample program demonstrating using Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) - -#include "sample1.h" - -// Returns n! (the factorial of n). For negative n, n! is defined to be 1. -int Factorial(int n) { - int result = 1; - for (int i = 1; i <= n; i++) { - result *= i; - } - - return result; -} - -// Returns true iff n is a prime number. -bool IsPrime(int n) { - // Trivial case 1: small numbers - if (n <= 1) return false; - - // Trivial case 2: even numbers - if (n % 2 == 0) return n == 2; - - // Now, we have that n is odd and n >= 3. - - // Try to divide n by every odd number i, starting from 3 - for (int i = 3; ; i += 2) { - // We only have to try i up to the squre root of n - if (i > n/i) break; - - // Now, we have i <= n/i < n. - // If n is divisible by i, n is not prime. - if (n % i == 0) return false; - } - - // n has no integer factor in the range (1, n), and thus is prime. - return true; -} diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample1.h b/cpp/thirdparty/gtest-1.5.0/samples/sample1.h deleted file mode 100644 index 3dfeb98c4..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample1.h +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// A sample program demonstrating using Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) - -#ifndef GTEST_SAMPLES_SAMPLE1_H_ -#define GTEST_SAMPLES_SAMPLE1_H_ - -// Returns n! (the factorial of n). For negative n, n! is defined to be 1. -int Factorial(int n); - -// Returns true iff n is a prime number. -bool IsPrime(int n); - -#endif // GTEST_SAMPLES_SAMPLE1_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample10_unittest.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample10_unittest.cc deleted file mode 100644 index 3ad6fd653..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample10_unittest.cc +++ /dev/null @@ -1,145 +0,0 @@ -// Copyright 2009 Google Inc. All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) - -// This sample shows how to use Google Test listener API to implement -// a primitive leak checker. - -#include -#include - -#include - -using ::testing::EmptyTestEventListener; -using ::testing::InitGoogleTest; -using ::testing::Test; -using ::testing::TestCase; -using ::testing::TestEventListeners; -using ::testing::TestInfo; -using ::testing::TestPartResult; -using ::testing::UnitTest; - -namespace { - -// We will track memory used by this class. -class Water { - public: - // Normal Water declarations go here. - - // operator new and operator delete help us control water allocation. - void* operator new(size_t allocation_size) { - allocated_++; - return malloc(allocation_size); - } - - void operator delete(void* block, size_t /* allocation_size */) { - allocated_--; - free(block); - } - - static int allocated() { return allocated_; } - - private: - static int allocated_; -}; - -int Water::allocated_ = 0; - -// This event listener monitors how many Water objects are created and -// destroyed by each test, and reports a failure if a test leaks some Water -// objects. It does this by comparing the number of live Water objects at -// the beginning of a test and at the end of a test. -class LeakChecker : public EmptyTestEventListener { - private: - // Called before a test starts. - virtual void OnTestStart(const TestInfo& /* test_info */) { - initially_allocated_ = Water::allocated(); - } - - // Called after a test ends. - virtual void OnTestEnd(const TestInfo& /* test_info */) { - int difference = Water::allocated() - initially_allocated_; - - // You can generate a failure in any event handler except - // OnTestPartResult. Just use an appropriate Google Test assertion to do - // it. - EXPECT_TRUE(difference <= 0) - << "Leaked " << difference << " unit(s) of Water!"; - } - - int initially_allocated_; -}; - -TEST(ListenersTest, DoesNotLeak) { - Water* water = new Water; - delete water; -} - -// This should fail when the --check_for_leaks command line flag is -// specified. -TEST(ListenersTest, LeaksWater) { - Water* water = new Water; - EXPECT_TRUE(water != NULL); -} - -} // namespace - -int main(int argc, char **argv) { - InitGoogleTest(&argc, argv); - - bool check_for_leaks = false; - if (argc > 1 && strcmp(argv[1], "--check_for_leaks") == 0 ) - check_for_leaks = true; - else - printf("%s\n", "Run this program with --check_for_leaks to enable " - "custom leak checking in the tests."); - - // If we are given the --check_for_leaks command line flag, installs the - // leak checker. - if (check_for_leaks) { - TestEventListeners& listeners = UnitTest::GetInstance()->listeners(); - - // Adds the leak checker to the end of the test event listener list, - // after the default text output printer and the default XML report - // generator. - // - // The order is important - it ensures that failures generated in the - // leak checker's OnTestEnd() method are processed by the text and XML - // printers *before* their OnTestEnd() methods are called, such that - // they are attributed to the right test. Remember that a listener - // receives an OnXyzStart event *after* listeners preceding it in the - // list received that event, and receives an OnXyzEnd event *before* - // listeners preceding it. - // - // We don't need to worry about deleting the new listener later, as - // Google Test will do it. - listeners.Append(new LeakChecker); - } - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample1_unittest.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample1_unittest.cc deleted file mode 100644 index 01eb5462f..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample1_unittest.cc +++ /dev/null @@ -1,153 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// A sample program demonstrating using Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) - - -// This sample shows how to write a simple unit test for a function, -// using Google C++ testing framework. -// -// Writing a unit test using Google C++ testing framework is easy as 1-2-3: - - -// Step 1. Include necessary header files such that the stuff your -// test logic needs is declared. -// -// Don't forget gtest.h, which declares the testing framework. - -#include -#include "sample1.h" -#include - - -// Step 2. Use the TEST macro to define your tests. -// -// TEST has two parameters: the test case name and the test name. -// After using the macro, you should define your test logic between a -// pair of braces. You can use a bunch of macros to indicate the -// success or failure of a test. EXPECT_TRUE and EXPECT_EQ are -// examples of such macros. For a complete list, see gtest.h. -// -// -// -// In Google Test, tests are grouped into test cases. This is how we -// keep test code organized. You should put logically related tests -// into the same test case. -// -// The test case name and the test name should both be valid C++ -// identifiers. And you should not use underscore (_) in the names. -// -// Google Test guarantees that each test you define is run exactly -// once, but it makes no guarantee on the order the tests are -// executed. Therefore, you should write your tests in such a way -// that their results don't depend on their order. -// -// - - -// Tests Factorial(). - -// Tests factorial of negative numbers. -TEST(FactorialTest, Negative) { - // This test is named "Negative", and belongs to the "FactorialTest" - // test case. - EXPECT_EQ(1, Factorial(-5)); - EXPECT_EQ(1, Factorial(-1)); - EXPECT_TRUE(Factorial(-10) > 0); - - // - // - // EXPECT_EQ(expected, actual) is the same as - // - // EXPECT_TRUE((expected) == (actual)) - // - // except that it will print both the expected value and the actual - // value when the assertion fails. This is very helpful for - // debugging. Therefore in this case EXPECT_EQ is preferred. - // - // On the other hand, EXPECT_TRUE accepts any Boolean expression, - // and is thus more general. - // - // -} - -// Tests factorial of 0. -TEST(FactorialTest, Zero) { - EXPECT_EQ(1, Factorial(0)); -} - -// Tests factorial of positive numbers. -TEST(FactorialTest, Positive) { - EXPECT_EQ(1, Factorial(1)); - EXPECT_EQ(2, Factorial(2)); - EXPECT_EQ(6, Factorial(3)); - EXPECT_EQ(40320, Factorial(8)); -} - - -// Tests IsPrime() - -// Tests negative input. -TEST(IsPrimeTest, Negative) { - // This test belongs to the IsPrimeTest test case. - - EXPECT_FALSE(IsPrime(-1)); - EXPECT_FALSE(IsPrime(-2)); - EXPECT_FALSE(IsPrime(INT_MIN)); -} - -// Tests some trivial cases. -TEST(IsPrimeTest, Trivial) { - EXPECT_FALSE(IsPrime(0)); - EXPECT_FALSE(IsPrime(1)); - EXPECT_TRUE(IsPrime(2)); - EXPECT_TRUE(IsPrime(3)); -} - -// Tests positive input. -TEST(IsPrimeTest, Positive) { - EXPECT_FALSE(IsPrime(4)); - EXPECT_TRUE(IsPrime(5)); - EXPECT_FALSE(IsPrime(6)); - EXPECT_TRUE(IsPrime(23)); -} - -// Step 3. Call RUN_ALL_TESTS() in main(). -// -// We do this by linking in src/gtest_main.cc file, which consists of -// a main() function which calls RUN_ALL_TESTS() for us. -// -// This runs all the tests you've defined, prints the result, and -// returns 0 if successful, or 1 otherwise. -// -// Did you notice that we didn't register the tests? The -// RUN_ALL_TESTS() macro magically knows about all the tests we -// defined. Isn't this convenient? diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample2.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample2.cc deleted file mode 100644 index 5f763b9bd..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample2.cc +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// A sample program demonstrating using Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) - -#include "sample2.h" - -#include - -// Clones a 0-terminated C string, allocating memory using new. -const char* MyString::CloneCString(const char* a_c_string) { - if (a_c_string == NULL) return NULL; - - const size_t len = strlen(a_c_string); - char* const clone = new char[ len + 1 ]; - memcpy(clone, a_c_string, len + 1); - - return clone; -} - -// Sets the 0-terminated C string this MyString object -// represents. -void MyString::Set(const char* a_c_string) { - // Makes sure this works when c_string == c_string_ - const char* const temp = MyString::CloneCString(a_c_string); - delete[] c_string_; - c_string_ = temp; -} diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample2.h b/cpp/thirdparty/gtest-1.5.0/samples/sample2.h deleted file mode 100644 index 5b57e6082..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample2.h +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// A sample program demonstrating using Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) - -#ifndef GTEST_SAMPLES_SAMPLE2_H_ -#define GTEST_SAMPLES_SAMPLE2_H_ - -#include - - -// A simple string class. -class MyString { - private: - const char* c_string_; - const MyString& operator=(const MyString& rhs); - - public: - - // Clones a 0-terminated C string, allocating memory using new. - static const char* CloneCString(const char* a_c_string); - - //////////////////////////////////////////////////////////// - // - // C'tors - - // The default c'tor constructs a NULL string. - MyString() : c_string_(NULL) {} - - // Constructs a MyString by cloning a 0-terminated C string. - explicit MyString(const char* a_c_string) : c_string_(NULL) { - Set(a_c_string); - } - - // Copy c'tor - MyString(const MyString& string) : c_string_(NULL) { - Set(string.c_string_); - } - - //////////////////////////////////////////////////////////// - // - // D'tor. MyString is intended to be a final class, so the d'tor - // doesn't need to be virtual. - ~MyString() { delete[] c_string_; } - - // Gets the 0-terminated C string this MyString object represents. - const char* c_string() const { return c_string_; } - - size_t Length() const { - return c_string_ == NULL ? 0 : strlen(c_string_); - } - - // Sets the 0-terminated C string this MyString object represents. - void Set(const char* c_string); -}; - - -#endif // GTEST_SAMPLES_SAMPLE2_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample2_unittest.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample2_unittest.cc deleted file mode 100644 index 32232d98c..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample2_unittest.cc +++ /dev/null @@ -1,109 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// A sample program demonstrating using Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) - - -// This sample shows how to write a more complex unit test for a class -// that has multiple member functions. -// -// Usually, it's a good idea to have one test for each method in your -// class. You don't have to do that exactly, but it helps to keep -// your tests organized. You may also throw in additional tests as -// needed. - -#include "sample2.h" -#include - -// In this example, we test the MyString class (a simple string). - -// Tests the default c'tor. -TEST(MyString, DefaultConstructor) { - const MyString s; - - // Asserts that s.c_string() returns NULL. - // - // - // - // If we write NULL instead of - // - // static_cast(NULL) - // - // in this assertion, it will generate a warning on gcc 3.4. The - // reason is that EXPECT_EQ needs to know the types of its - // arguments in order to print them when it fails. Since NULL is - // #defined as 0, the compiler will use the formatter function for - // int to print it. However, gcc thinks that NULL should be used as - // a pointer, not an int, and therefore complains. - // - // The root of the problem is C++'s lack of distinction between the - // integer number 0 and the null pointer constant. Unfortunately, - // we have to live with this fact. - // - // - EXPECT_STREQ(NULL, s.c_string()); - - EXPECT_EQ(0u, s.Length()); -} - -const char kHelloString[] = "Hello, world!"; - -// Tests the c'tor that accepts a C string. -TEST(MyString, ConstructorFromCString) { - const MyString s(kHelloString); - EXPECT_TRUE(strcmp(s.c_string(), kHelloString) == 0); - EXPECT_EQ(sizeof(kHelloString)/sizeof(kHelloString[0]) - 1, - s.Length()); -} - -// Tests the copy c'tor. -TEST(MyString, CopyConstructor) { - const MyString s1(kHelloString); - const MyString s2 = s1; - EXPECT_TRUE(strcmp(s2.c_string(), kHelloString) == 0); -} - -// Tests the Set method. -TEST(MyString, Set) { - MyString s; - - s.Set(kHelloString); - EXPECT_TRUE(strcmp(s.c_string(), kHelloString) == 0); - - // Set should work when the input pointer is the same as the one - // already in the MyString object. - s.Set(s.c_string()); - EXPECT_TRUE(strcmp(s.c_string(), kHelloString) == 0); - - // Can we set the MyString to NULL? - s.Set(NULL); - EXPECT_STREQ(NULL, s.c_string()); -} diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample3-inl.h b/cpp/thirdparty/gtest-1.5.0/samples/sample3-inl.h deleted file mode 100644 index 46369a076..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample3-inl.h +++ /dev/null @@ -1,173 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// A sample program demonstrating using Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) - -#ifndef GTEST_SAMPLES_SAMPLE3_INL_H_ -#define GTEST_SAMPLES_SAMPLE3_INL_H_ - -#include - - -// Queue is a simple queue implemented as a singled-linked list. -// -// The element type must support copy constructor. -template // E is the element type -class Queue; - -// QueueNode is a node in a Queue, which consists of an element of -// type E and a pointer to the next node. -template // E is the element type -class QueueNode { - friend class Queue; - - public: - // Gets the element in this node. - const E& element() const { return element_; } - - // Gets the next node in the queue. - QueueNode* next() { return next_; } - const QueueNode* next() const { return next_; } - - private: - // Creates a node with a given element value. The next pointer is - // set to NULL. - QueueNode(const E& an_element) : element_(an_element), next_(NULL) {} - - // We disable the default assignment operator and copy c'tor. - const QueueNode& operator = (const QueueNode&); - QueueNode(const QueueNode&); - - E element_; - QueueNode* next_; -}; - -template // E is the element type. -class Queue { -public: - - // Creates an empty queue. - Queue() : head_(NULL), last_(NULL), size_(0) {} - - // D'tor. Clears the queue. - ~Queue() { Clear(); } - - // Clears the queue. - void Clear() { - if (size_ > 0) { - // 1. Deletes every node. - QueueNode* node = head_; - QueueNode* next = node->next(); - for (; ;) { - delete node; - node = next; - if (node == NULL) break; - next = node->next(); - } - - // 2. Resets the member variables. - head_ = last_ = NULL; - size_ = 0; - } - } - - // Gets the number of elements. - size_t Size() const { return size_; } - - // Gets the first element of the queue, or NULL if the queue is empty. - QueueNode* Head() { return head_; } - const QueueNode* Head() const { return head_; } - - // Gets the last element of the queue, or NULL if the queue is empty. - QueueNode* Last() { return last_; } - const QueueNode* Last() const { return last_; } - - // Adds an element to the end of the queue. A copy of the element is - // created using the copy constructor, and then stored in the queue. - // Changes made to the element in the queue doesn't affect the source - // object, and vice versa. - void Enqueue(const E& element) { - QueueNode* new_node = new QueueNode(element); - - if (size_ == 0) { - head_ = last_ = new_node; - size_ = 1; - } else { - last_->next_ = new_node; - last_ = new_node; - size_++; - } - } - - // Removes the head of the queue and returns it. Returns NULL if - // the queue is empty. - E* Dequeue() { - if (size_ == 0) { - return NULL; - } - - const QueueNode* const old_head = head_; - head_ = head_->next_; - size_--; - if (size_ == 0) { - last_ = NULL; - } - - E* element = new E(old_head->element()); - delete old_head; - - return element; - } - - // Applies a function/functor on each element of the queue, and - // returns the result in a new queue. The original queue is not - // affected. - template - Queue* Map(F function) const { - Queue* new_queue = new Queue(); - for (const QueueNode* node = head_; node != NULL; node = node->next_) { - new_queue->Enqueue(function(node->element())); - } - - return new_queue; - } - - private: - QueueNode* head_; // The first node of the queue. - QueueNode* last_; // The last node of the queue. - size_t size_; // The number of elements in the queue. - - // We disallow copying a queue. - Queue(const Queue&); - const Queue& operator = (const Queue&); - }; - -#endif // GTEST_SAMPLES_SAMPLE3_INL_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample3_unittest.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample3_unittest.cc deleted file mode 100644 index 34c1ca865..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample3_unittest.cc +++ /dev/null @@ -1,151 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// A sample program demonstrating using Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) - - -// In this example, we use a more advanced feature of Google Test called -// test fixture. -// -// A test fixture is a place to hold objects and functions shared by -// all tests in a test case. Using a test fixture avoids duplicating -// the test code necessary to initialize and cleanup those common -// objects for each test. It is also useful for defining sub-routines -// that your tests need to invoke a lot. -// -// -// -// The tests share the test fixture in the sense of code sharing, not -// data sharing. Each test is given its own fresh copy of the -// fixture. You cannot expect the data modified by one test to be -// passed on to another test, which is a bad idea. -// -// The reason for this design is that tests should be independent and -// repeatable. In particular, a test should not fail as the result of -// another test's failure. If one test depends on info produced by -// another test, then the two tests should really be one big test. -// -// The macros for indicating the success/failure of a test -// (EXPECT_TRUE, FAIL, etc) need to know what the current test is -// (when Google Test prints the test result, it tells you which test -// each failure belongs to). Technically, these macros invoke a -// member function of the Test class. Therefore, you cannot use them -// in a global function. That's why you should put test sub-routines -// in a test fixture. -// -// - -#include "sample3-inl.h" -#include - -// To use a test fixture, derive a class from testing::Test. -class QueueTest : public testing::Test { - protected: // You should make the members protected s.t. they can be - // accessed from sub-classes. - - // virtual void SetUp() will be called before each test is run. You - // should define it if you need to initialize the varaibles. - // Otherwise, this can be skipped. - virtual void SetUp() { - q1_.Enqueue(1); - q2_.Enqueue(2); - q2_.Enqueue(3); - } - - // virtual void TearDown() will be called after each test is run. - // You should define it if there is cleanup work to do. Otherwise, - // you don't have to provide it. - // - // virtual void TearDown() { - // } - - // A helper function that some test uses. - static int Double(int n) { - return 2*n; - } - - // A helper function for testing Queue::Map(). - void MapTester(const Queue * q) { - // Creates a new queue, where each element is twice as big as the - // corresponding one in q. - const Queue * const new_q = q->Map(Double); - - // Verifies that the new queue has the same size as q. - ASSERT_EQ(q->Size(), new_q->Size()); - - // Verifies the relationship between the elements of the two queues. - for ( const QueueNode * n1 = q->Head(), * n2 = new_q->Head(); - n1 != NULL; n1 = n1->next(), n2 = n2->next() ) { - EXPECT_EQ(2 * n1->element(), n2->element()); - } - - delete new_q; - } - - // Declares the variables your tests want to use. - Queue q0_; - Queue q1_; - Queue q2_; -}; - -// When you have a test fixture, you define a test using TEST_F -// instead of TEST. - -// Tests the default c'tor. -TEST_F(QueueTest, DefaultConstructor) { - // You can access data in the test fixture here. - EXPECT_EQ(0u, q0_.Size()); -} - -// Tests Dequeue(). -TEST_F(QueueTest, Dequeue) { - int * n = q0_.Dequeue(); - EXPECT_TRUE(n == NULL); - - n = q1_.Dequeue(); - ASSERT_TRUE(n != NULL); - EXPECT_EQ(1, *n); - EXPECT_EQ(0u, q1_.Size()); - delete n; - - n = q2_.Dequeue(); - ASSERT_TRUE(n != NULL); - EXPECT_EQ(2, *n); - EXPECT_EQ(1u, q2_.Size()); - delete n; -} - -// Tests the Queue::Map() function. -TEST_F(QueueTest, Map) { - MapTester(&q0_); - MapTester(&q1_); - MapTester(&q2_); -} diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample4.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample4.cc deleted file mode 100644 index ae44bda6f..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample4.cc +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// A sample program demonstrating using Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) - -#include - -#include "sample4.h" - -// Returns the current counter value, and increments it. -int Counter::Increment() { - return counter_++; -} - -// Prints the current counter value to STDOUT. -void Counter::Print() const { - printf("%d", counter_); -} diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample4.h b/cpp/thirdparty/gtest-1.5.0/samples/sample4.h deleted file mode 100644 index cd60f0dd2..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample4.h +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// A sample program demonstrating using Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) - -#ifndef GTEST_SAMPLES_SAMPLE4_H_ -#define GTEST_SAMPLES_SAMPLE4_H_ - -// A simple monotonic counter. -class Counter { - private: - int counter_; - - public: - // Creates a counter that starts at 0. - Counter() : counter_(0) {} - - // Returns the current counter value, and increments it. - int Increment(); - - // Prints the current counter value to STDOUT. - void Print() const; -}; - -#endif // GTEST_SAMPLES_SAMPLE4_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample4_unittest.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample4_unittest.cc deleted file mode 100644 index b4fb3736a..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample4_unittest.cc +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#include -#include "sample4.h" - -// Tests the Increment() method. -TEST(Counter, Increment) { - Counter c; - - // EXPECT_EQ() evaluates its arguments exactly once, so they - // can have side effects. - - EXPECT_EQ(0, c.Increment()); - EXPECT_EQ(1, c.Increment()); - EXPECT_EQ(2, c.Increment()); -} diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample5_unittest.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample5_unittest.cc deleted file mode 100644 index 49dae7c69..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample5_unittest.cc +++ /dev/null @@ -1,199 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// This sample teaches how to reuse a test fixture in multiple test -// cases by deriving sub-fixtures from it. -// -// When you define a test fixture, you specify the name of the test -// case that will use this fixture. Therefore, a test fixture can -// be used by only one test case. -// -// Sometimes, more than one test cases may want to use the same or -// slightly different test fixtures. For example, you may want to -// make sure that all tests for a GUI library don't leak important -// system resources like fonts and brushes. In Google Test, you do -// this by putting the shared logic in a super (as in "super class") -// test fixture, and then have each test case use a fixture derived -// from this super fixture. - -#include -#include -#include "sample3-inl.h" -#include -#include "sample1.h" - -// In this sample, we want to ensure that every test finishes within -// ~5 seconds. If a test takes longer to run, we consider it a -// failure. -// -// We put the code for timing a test in a test fixture called -// "QuickTest". QuickTest is intended to be the super fixture that -// other fixtures derive from, therefore there is no test case with -// the name "QuickTest". This is OK. -// -// Later, we will derive multiple test fixtures from QuickTest. -class QuickTest : public testing::Test { - protected: - // Remember that SetUp() is run immediately before a test starts. - // This is a good place to record the start time. - virtual void SetUp() { - start_time_ = time(NULL); - } - - // TearDown() is invoked immediately after a test finishes. Here we - // check if the test was too slow. - virtual void TearDown() { - // Gets the time when the test finishes - const time_t end_time = time(NULL); - - // Asserts that the test took no more than ~5 seconds. Did you - // know that you can use assertions in SetUp() and TearDown() as - // well? - EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long."; - } - - // The UTC time (in seconds) when the test starts - time_t start_time_; -}; - - -// We derive a fixture named IntegerFunctionTest from the QuickTest -// fixture. All tests using this fixture will be automatically -// required to be quick. -class IntegerFunctionTest : public QuickTest { - // We don't need any more logic than already in the QuickTest fixture. - // Therefore the body is empty. -}; - - -// Now we can write tests in the IntegerFunctionTest test case. - -// Tests Factorial() -TEST_F(IntegerFunctionTest, Factorial) { - // Tests factorial of negative numbers. - EXPECT_EQ(1, Factorial(-5)); - EXPECT_EQ(1, Factorial(-1)); - EXPECT_TRUE(Factorial(-10) > 0); - - // Tests factorial of 0. - EXPECT_EQ(1, Factorial(0)); - - // Tests factorial of positive numbers. - EXPECT_EQ(1, Factorial(1)); - EXPECT_EQ(2, Factorial(2)); - EXPECT_EQ(6, Factorial(3)); - EXPECT_EQ(40320, Factorial(8)); -} - - -// Tests IsPrime() -TEST_F(IntegerFunctionTest, IsPrime) { - // Tests negative input. - EXPECT_TRUE(!IsPrime(-1)); - EXPECT_TRUE(!IsPrime(-2)); - EXPECT_TRUE(!IsPrime(INT_MIN)); - - // Tests some trivial cases. - EXPECT_TRUE(!IsPrime(0)); - EXPECT_TRUE(!IsPrime(1)); - EXPECT_TRUE(IsPrime(2)); - EXPECT_TRUE(IsPrime(3)); - - // Tests positive input. - EXPECT_TRUE(!IsPrime(4)); - EXPECT_TRUE(IsPrime(5)); - EXPECT_TRUE(!IsPrime(6)); - EXPECT_TRUE(IsPrime(23)); -} - - -// The next test case (named "QueueTest") also needs to be quick, so -// we derive another fixture from QuickTest. -// -// The QueueTest test fixture has some logic and shared objects in -// addition to what's in QuickTest already. We define the additional -// stuff inside the body of the test fixture, as usual. -class QueueTest : public QuickTest { - protected: - virtual void SetUp() { - // First, we need to set up the super fixture (QuickTest). - QuickTest::SetUp(); - - // Second, some additional setup for this fixture. - q1_.Enqueue(1); - q2_.Enqueue(2); - q2_.Enqueue(3); - } - - // By default, TearDown() inherits the behavior of - // QuickTest::TearDown(). As we have no additional cleaning work - // for QueueTest, we omit it here. - // - // virtual void TearDown() { - // QuickTest::TearDown(); - // } - - Queue q0_; - Queue q1_; - Queue q2_; -}; - - -// Now, let's write tests using the QueueTest fixture. - -// Tests the default constructor. -TEST_F(QueueTest, DefaultConstructor) { - EXPECT_EQ(0u, q0_.Size()); -} - -// Tests Dequeue(). -TEST_F(QueueTest, Dequeue) { - int* n = q0_.Dequeue(); - EXPECT_TRUE(n == NULL); - - n = q1_.Dequeue(); - EXPECT_TRUE(n != NULL); - EXPECT_EQ(1, *n); - EXPECT_EQ(0u, q1_.Size()); - delete n; - - n = q2_.Dequeue(); - EXPECT_TRUE(n != NULL); - EXPECT_EQ(2, *n); - EXPECT_EQ(1u, q2_.Size()); - delete n; -} - -// If necessary, you can derive further test fixtures from a derived -// fixture itself. For example, you can derive another fixture from -// QueueTest. Google Test imposes no limit on how deep the hierarchy -// can be. In practice, however, you probably don't want it to be too -// deep as to be confusing. diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample6_unittest.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample6_unittest.cc deleted file mode 100644 index dd0df31f0..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample6_unittest.cc +++ /dev/null @@ -1,224 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// This sample shows how to test common properties of multiple -// implementations of the same interface (aka interface tests). - -// The interface and its implementations are in this header. -#include "prime_tables.h" - -#include - -// First, we define some factory functions for creating instances of -// the implementations. You may be able to skip this step if all your -// implementations can be constructed the same way. - -template -PrimeTable* CreatePrimeTable(); - -template <> -PrimeTable* CreatePrimeTable() { - return new OnTheFlyPrimeTable; -} - -template <> -PrimeTable* CreatePrimeTable() { - return new PreCalculatedPrimeTable(10000); -} - -// Then we define a test fixture class template. -template -class PrimeTableTest : public testing::Test { - protected: - // The ctor calls the factory function to create a prime table - // implemented by T. - PrimeTableTest() : table_(CreatePrimeTable()) {} - - virtual ~PrimeTableTest() { delete table_; } - - // Note that we test an implementation via the base interface - // instead of the actual implementation class. This is important - // for keeping the tests close to the real world scenario, where the - // implementation is invoked via the base interface. It avoids - // got-yas where the implementation class has a method that shadows - // a method with the same name (but slightly different argument - // types) in the base interface, for example. - PrimeTable* const table_; -}; - -#if GTEST_HAS_TYPED_TEST - -using testing::Types; - -// Google Test offers two ways for reusing tests for different types. -// The first is called "typed tests". You should use it if you -// already know *all* the types you are gonna exercise when you write -// the tests. - -// To write a typed test case, first use -// -// TYPED_TEST_CASE(TestCaseName, TypeList); -// -// to declare it and specify the type parameters. As with TEST_F, -// TestCaseName must match the test fixture name. - -// The list of types we want to test. -typedef Types Implementations; - -TYPED_TEST_CASE(PrimeTableTest, Implementations); - -// Then use TYPED_TEST(TestCaseName, TestName) to define a typed test, -// similar to TEST_F. -TYPED_TEST(PrimeTableTest, ReturnsFalseForNonPrimes) { - // Inside the test body, you can refer to the type parameter by - // TypeParam, and refer to the fixture class by TestFixture. We - // don't need them in this example. - - // Since we are in the template world, C++ requires explicitly - // writing 'this->' when referring to members of the fixture class. - // This is something you have to learn to live with. - EXPECT_FALSE(this->table_->IsPrime(-5)); - EXPECT_FALSE(this->table_->IsPrime(0)); - EXPECT_FALSE(this->table_->IsPrime(1)); - EXPECT_FALSE(this->table_->IsPrime(4)); - EXPECT_FALSE(this->table_->IsPrime(6)); - EXPECT_FALSE(this->table_->IsPrime(100)); -} - -TYPED_TEST(PrimeTableTest, ReturnsTrueForPrimes) { - EXPECT_TRUE(this->table_->IsPrime(2)); - EXPECT_TRUE(this->table_->IsPrime(3)); - EXPECT_TRUE(this->table_->IsPrime(5)); - EXPECT_TRUE(this->table_->IsPrime(7)); - EXPECT_TRUE(this->table_->IsPrime(11)); - EXPECT_TRUE(this->table_->IsPrime(131)); -} - -TYPED_TEST(PrimeTableTest, CanGetNextPrime) { - EXPECT_EQ(2, this->table_->GetNextPrime(0)); - EXPECT_EQ(3, this->table_->GetNextPrime(2)); - EXPECT_EQ(5, this->table_->GetNextPrime(3)); - EXPECT_EQ(7, this->table_->GetNextPrime(5)); - EXPECT_EQ(11, this->table_->GetNextPrime(7)); - EXPECT_EQ(131, this->table_->GetNextPrime(128)); -} - -// That's it! Google Test will repeat each TYPED_TEST for each type -// in the type list specified in TYPED_TEST_CASE. Sit back and be -// happy that you don't have to define them multiple times. - -#endif // GTEST_HAS_TYPED_TEST - -#if GTEST_HAS_TYPED_TEST_P - -using testing::Types; - -// Sometimes, however, you don't yet know all the types that you want -// to test when you write the tests. For example, if you are the -// author of an interface and expect other people to implement it, you -// might want to write a set of tests to make sure each implementation -// conforms to some basic requirements, but you don't know what -// implementations will be written in the future. -// -// How can you write the tests without committing to the type -// parameters? That's what "type-parameterized tests" can do for you. -// It is a bit more involved than typed tests, but in return you get a -// test pattern that can be reused in many contexts, which is a big -// win. Here's how you do it: - -// First, define a test fixture class template. Here we just reuse -// the PrimeTableTest fixture defined earlier: - -template -class PrimeTableTest2 : public PrimeTableTest { -}; - -// Then, declare the test case. The argument is the name of the test -// fixture, and also the name of the test case (as usual). The _P -// suffix is for "parameterized" or "pattern". -TYPED_TEST_CASE_P(PrimeTableTest2); - -// Next, use TYPED_TEST_P(TestCaseName, TestName) to define a test, -// similar to what you do with TEST_F. -TYPED_TEST_P(PrimeTableTest2, ReturnsFalseForNonPrimes) { - EXPECT_FALSE(this->table_->IsPrime(-5)); - EXPECT_FALSE(this->table_->IsPrime(0)); - EXPECT_FALSE(this->table_->IsPrime(1)); - EXPECT_FALSE(this->table_->IsPrime(4)); - EXPECT_FALSE(this->table_->IsPrime(6)); - EXPECT_FALSE(this->table_->IsPrime(100)); -} - -TYPED_TEST_P(PrimeTableTest2, ReturnsTrueForPrimes) { - EXPECT_TRUE(this->table_->IsPrime(2)); - EXPECT_TRUE(this->table_->IsPrime(3)); - EXPECT_TRUE(this->table_->IsPrime(5)); - EXPECT_TRUE(this->table_->IsPrime(7)); - EXPECT_TRUE(this->table_->IsPrime(11)); - EXPECT_TRUE(this->table_->IsPrime(131)); -} - -TYPED_TEST_P(PrimeTableTest2, CanGetNextPrime) { - EXPECT_EQ(2, this->table_->GetNextPrime(0)); - EXPECT_EQ(3, this->table_->GetNextPrime(2)); - EXPECT_EQ(5, this->table_->GetNextPrime(3)); - EXPECT_EQ(7, this->table_->GetNextPrime(5)); - EXPECT_EQ(11, this->table_->GetNextPrime(7)); - EXPECT_EQ(131, this->table_->GetNextPrime(128)); -} - -// Type-parameterized tests involve one extra step: you have to -// enumerate the tests you defined: -REGISTER_TYPED_TEST_CASE_P( - PrimeTableTest2, // The first argument is the test case name. - // The rest of the arguments are the test names. - ReturnsFalseForNonPrimes, ReturnsTrueForPrimes, CanGetNextPrime); - -// At this point the test pattern is done. However, you don't have -// any real test yet as you haven't said which types you want to run -// the tests with. - -// To turn the abstract test pattern into real tests, you instantiate -// it with a list of types. Usually the test pattern will be defined -// in a .h file, and anyone can #include and instantiate it. You can -// even instantiate it more than once in the same program. To tell -// different instances apart, you give each of them a name, which will -// become part of the test case name and can be used in test filters. - -// The list of types we want to test. Note that it doesn't have to be -// defined at the time we write the TYPED_TEST_P()s. -typedef Types - PrimeTableImplementations; -INSTANTIATE_TYPED_TEST_CASE_P(OnTheFlyAndPreCalculated, // Instance name - PrimeTableTest2, // Test case name - PrimeTableImplementations); // Type list - -#endif // GTEST_HAS_TYPED_TEST_P diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample7_unittest.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample7_unittest.cc deleted file mode 100644 index f4552827e..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample7_unittest.cc +++ /dev/null @@ -1,132 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) - -// This sample shows how to test common properties of multiple -// implementations of an interface (aka interface tests) using -// value-parameterized tests. Each test in the test case has -// a parameter that is an interface pointer to an implementation -// tested. - -// The interface and its implementations are in this header. -#include "prime_tables.h" - -#include - -#if GTEST_HAS_PARAM_TEST - -using ::testing::TestWithParam; -using ::testing::Values; - -// As a general rule, tested objects should not be reused between tests. -// Also, their constructors and destructors of tested objects can have -// side effects. Thus you should create and destroy them for each test. -// In this sample we will define a simple factory function for PrimeTable -// objects. We will instantiate objects in test's SetUp() method and -// delete them in TearDown() method. -typedef PrimeTable* CreatePrimeTableFunc(); - -PrimeTable* CreateOnTheFlyPrimeTable() { - return new OnTheFlyPrimeTable(); -} - -template -PrimeTable* CreatePreCalculatedPrimeTable() { - return new PreCalculatedPrimeTable(max_precalculated); -} - -// Inside the test body, fixture constructor, SetUp(), and TearDown() -// you can refer to the test parameter by GetParam(). -// In this case, the test parameter is a PrimeTableFactory interface pointer -// which we use in fixture's SetUp() to create and store an instance of -// PrimeTable. -class PrimeTableTest : public TestWithParam { - public: - virtual ~PrimeTableTest() { delete table_; } - virtual void SetUp() { table_ = (*GetParam())(); } - virtual void TearDown() { - delete table_; - table_ = NULL; - } - - protected: - PrimeTable* table_; -}; - -TEST_P(PrimeTableTest, ReturnsFalseForNonPrimes) { - EXPECT_FALSE(table_->IsPrime(-5)); - EXPECT_FALSE(table_->IsPrime(0)); - EXPECT_FALSE(table_->IsPrime(1)); - EXPECT_FALSE(table_->IsPrime(4)); - EXPECT_FALSE(table_->IsPrime(6)); - EXPECT_FALSE(table_->IsPrime(100)); -} - -TEST_P(PrimeTableTest, ReturnsTrueForPrimes) { - EXPECT_TRUE(table_->IsPrime(2)); - EXPECT_TRUE(table_->IsPrime(3)); - EXPECT_TRUE(table_->IsPrime(5)); - EXPECT_TRUE(table_->IsPrime(7)); - EXPECT_TRUE(table_->IsPrime(11)); - EXPECT_TRUE(table_->IsPrime(131)); -} - -TEST_P(PrimeTableTest, CanGetNextPrime) { - EXPECT_EQ(2, table_->GetNextPrime(0)); - EXPECT_EQ(3, table_->GetNextPrime(2)); - EXPECT_EQ(5, table_->GetNextPrime(3)); - EXPECT_EQ(7, table_->GetNextPrime(5)); - EXPECT_EQ(11, table_->GetNextPrime(7)); - EXPECT_EQ(131, table_->GetNextPrime(128)); -} - -// In order to run value-parameterized tests, you need to instantiate them, -// or bind them to a list of values which will be used as test parameters. -// You can instantiate them in a different translation module, or even -// instantiate them several times. -// -// Here, we instantiate our tests with a list of two PrimeTable object -// factory functions: -INSTANTIATE_TEST_CASE_P( - OnTheFlyAndPreCalculated, - PrimeTableTest, - Values(&CreateOnTheFlyPrimeTable, &CreatePreCalculatedPrimeTable<1000>)); - -#else - -// Google Test may not support value-parameterized tests with some -// compilers. If we use conditional compilation to compile out all -// code referring to the gtest_main library, MSVC linker will not link -// that library at all and consequently complain about missing entry -// point defined in that library (fatal error LNK1561: entry point -// must be defined). This dummy test keeps gtest_main linked in. -TEST(DummyTest, ValueParameterizedTestsAreNotSupportedOnThisPlatform) {} - -#endif // GTEST_HAS_PARAM_TEST diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample8_unittest.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample8_unittest.cc deleted file mode 100644 index ccf61d92b..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample8_unittest.cc +++ /dev/null @@ -1,173 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) - -// This sample shows how to test code relying on some global flag variables. -// Combine() helps with generating all possible combinations of such flags, -// and each test is given one combination as a parameter. - -// Use class definitions to test from this header. -#include "prime_tables.h" - -#include - -#if GTEST_HAS_COMBINE - -// Suppose we want to introduce a new, improved implementation of PrimeTable -// which combines speed of PrecalcPrimeTable and versatility of -// OnTheFlyPrimeTable (see prime_tables.h). Inside it instantiates both -// PrecalcPrimeTable and OnTheFlyPrimeTable and uses the one that is more -// appropriate under the circumstances. But in low memory conditions, it can be -// told to instantiate without PrecalcPrimeTable instance at all and use only -// OnTheFlyPrimeTable. -class HybridPrimeTable : public PrimeTable { - public: - HybridPrimeTable(bool force_on_the_fly, int max_precalculated) - : on_the_fly_impl_(new OnTheFlyPrimeTable), - precalc_impl_(force_on_the_fly ? NULL : - new PreCalculatedPrimeTable(max_precalculated)), - max_precalculated_(max_precalculated) {} - virtual ~HybridPrimeTable() { - delete on_the_fly_impl_; - delete precalc_impl_; - } - - virtual bool IsPrime(int n) const { - if (precalc_impl_ != NULL && n < max_precalculated_) - return precalc_impl_->IsPrime(n); - else - return on_the_fly_impl_->IsPrime(n); - } - - virtual int GetNextPrime(int p) const { - int next_prime = -1; - if (precalc_impl_ != NULL && p < max_precalculated_) - next_prime = precalc_impl_->GetNextPrime(p); - - return next_prime != -1 ? next_prime : on_the_fly_impl_->GetNextPrime(p); - } - - private: - OnTheFlyPrimeTable* on_the_fly_impl_; - PreCalculatedPrimeTable* precalc_impl_; - int max_precalculated_; -}; - -using ::testing::TestWithParam; -using ::testing::Bool; -using ::testing::Values; -using ::testing::Combine; - -// To test all code paths for HybridPrimeTable we must test it with numbers -// both within and outside PreCalculatedPrimeTable's capacity and also with -// PreCalculatedPrimeTable disabled. We do this by defining fixture which will -// accept different combinations of parameters for instantiating a -// HybridPrimeTable instance. -class PrimeTableTest : public TestWithParam< ::std::tr1::tuple > { - protected: - virtual void SetUp() { - // This can be written as - // - // bool force_on_the_fly; - // int max_precalculated; - // tie(force_on_the_fly, max_precalculated) = GetParam(); - // - // once the Google C++ Style Guide allows use of ::std::tr1::tie. - // - bool force_on_the_fly = ::std::tr1::get<0>(GetParam()); - int max_precalculated = ::std::tr1::get<1>(GetParam()); - table_ = new HybridPrimeTable(force_on_the_fly, max_precalculated); - } - virtual void TearDown() { - delete table_; - table_ = NULL; - } - HybridPrimeTable* table_; -}; - -TEST_P(PrimeTableTest, ReturnsFalseForNonPrimes) { - // Inside the test body, you can refer to the test parameter by GetParam(). - // In this case, the test parameter is a PrimeTable interface pointer which - // we can use directly. - // Please note that you can also save it in the fixture's SetUp() method - // or constructor and use saved copy in the tests. - - EXPECT_FALSE(table_->IsPrime(-5)); - EXPECT_FALSE(table_->IsPrime(0)); - EXPECT_FALSE(table_->IsPrime(1)); - EXPECT_FALSE(table_->IsPrime(4)); - EXPECT_FALSE(table_->IsPrime(6)); - EXPECT_FALSE(table_->IsPrime(100)); -} - -TEST_P(PrimeTableTest, ReturnsTrueForPrimes) { - EXPECT_TRUE(table_->IsPrime(2)); - EXPECT_TRUE(table_->IsPrime(3)); - EXPECT_TRUE(table_->IsPrime(5)); - EXPECT_TRUE(table_->IsPrime(7)); - EXPECT_TRUE(table_->IsPrime(11)); - EXPECT_TRUE(table_->IsPrime(131)); -} - -TEST_P(PrimeTableTest, CanGetNextPrime) { - EXPECT_EQ(2, table_->GetNextPrime(0)); - EXPECT_EQ(3, table_->GetNextPrime(2)); - EXPECT_EQ(5, table_->GetNextPrime(3)); - EXPECT_EQ(7, table_->GetNextPrime(5)); - EXPECT_EQ(11, table_->GetNextPrime(7)); - EXPECT_EQ(131, table_->GetNextPrime(128)); -} - -// In order to run value-parameterized tests, you need to instantiate them, -// or bind them to a list of values which will be used as test parameters. -// You can instantiate them in a different translation module, or even -// instantiate them several times. -// -// Here, we instantiate our tests with a list of parameters. We must combine -// all variations of the boolean flag suppressing PrecalcPrimeTable and some -// meaningful values for tests. We choose a small value (1), and a value that -// will put some of the tested numbers beyond the capability of the -// PrecalcPrimeTable instance and some inside it (10). Combine will produce all -// possible combinations. -INSTANTIATE_TEST_CASE_P(MeaningfulTestParameters, - PrimeTableTest, - Combine(Bool(), Values(1, 10))); - -#else - -// Google Test may not support Combine() with some compilers. If we -// use conditional compilation to compile out all code referring to -// the gtest_main library, MSVC linker will not link that library at -// all and consequently complain about missing entry point defined in -// that library (fatal error LNK1561: entry point must be -// defined). This dummy test keeps gtest_main linked in. -TEST(DummyTest, CombineIsNotSupportedOnThisPlatform) {} - -#endif // GTEST_HAS_COMBINE diff --git a/cpp/thirdparty/gtest-1.5.0/samples/sample9_unittest.cc b/cpp/thirdparty/gtest-1.5.0/samples/sample9_unittest.cc deleted file mode 100644 index d828ef4d8..000000000 --- a/cpp/thirdparty/gtest-1.5.0/samples/sample9_unittest.cc +++ /dev/null @@ -1,160 +0,0 @@ -// Copyright 2009 Google Inc. All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) - -// This sample shows how to use Google Test listener API to implement -// an alternative console output and how to use the UnitTest reflection API -// to enumerate test cases and tests and to inspect their results. - -#include - -#include - -using ::testing::EmptyTestEventListener; -using ::testing::InitGoogleTest; -using ::testing::Test; -using ::testing::TestCase; -using ::testing::TestEventListeners; -using ::testing::TestInfo; -using ::testing::TestPartResult; -using ::testing::UnitTest; - -namespace { - -// Provides alternative output mode which produces minimal amount of -// information about tests. -class TersePrinter : public EmptyTestEventListener { - private: - // Called before any test activity starts. - virtual void OnTestProgramStart(const UnitTest& /* unit_test */) {} - - // Called after all test activities have ended. - virtual void OnTestProgramEnd(const UnitTest& unit_test) { - fprintf(stdout, "TEST %s\n", unit_test.Passed() ? "PASSED" : "FAILED"); - fflush(stdout); - } - - // Called before a test starts. - virtual void OnTestStart(const TestInfo& test_info) { - fprintf(stdout, - "*** Test %s.%s starting.\n", - test_info.test_case_name(), - test_info.name()); - fflush(stdout); - } - - // Called after a failed assertion or a SUCCESS(). - virtual void OnTestPartResult(const TestPartResult& test_part_result) { - fprintf(stdout, - "%s in %s:%d\n%s\n", - test_part_result.failed() ? "*** Failure" : "Success", - test_part_result.file_name(), - test_part_result.line_number(), - test_part_result.summary()); - fflush(stdout); - } - - // Called after a test ends. - virtual void OnTestEnd(const TestInfo& test_info) { - fprintf(stdout, - "*** Test %s.%s ending.\n", - test_info.test_case_name(), - test_info.name()); - fflush(stdout); - } -}; // class TersePrinter - -TEST(CustomOutputTest, PrintsMessage) { - printf("Printing something from the test body...\n"); -} - -TEST(CustomOutputTest, Succeeds) { - SUCCEED() << "SUCCEED() has been invoked from here"; -} - -TEST(CustomOutputTest, Fails) { - EXPECT_EQ(1, 2) - << "This test fails in order to demonstrate alternative failure messages"; -} - -} // namespace - -int main(int argc, char **argv) { - InitGoogleTest(&argc, argv); - - bool terse_output = false; - if (argc > 1 && strcmp(argv[1], "--terse_output") == 0 ) - terse_output = true; - else - printf("%s\n", "Run this program with --terse_output to change the way " - "it prints its output."); - - UnitTest& unit_test = *UnitTest::GetInstance(); - - // If we are given the --terse_output command line flag, suppresses the - // standard output and attaches own result printer. - if (terse_output) { - TestEventListeners& listeners = unit_test.listeners(); - - // Removes the default console output listener from the list so it will - // not receive events from Google Test and won't print any output. Since - // this operation transfers ownership of the listener to the caller we - // have to delete it as well. - delete listeners.Release(listeners.default_result_printer()); - - // Adds the custom output listener to the list. It will now receive - // events from Google Test and print the alternative output. We don't - // have to worry about deleting it since Google Test assumes ownership - // over it after adding it to the list. - listeners.Append(new TersePrinter); - } - int ret_val = RUN_ALL_TESTS(); - - // This is an example of using the UnitTest reflection API to inspect test - // results. Here we discount failures from the tests we expected to fail. - int unexpectedly_failed_tests = 0; - for (int i = 0; i < unit_test.total_test_case_count(); ++i) { - const TestCase& test_case = *unit_test.GetTestCase(i); - for (int j = 0; j < test_case.total_test_count(); ++j) { - const TestInfo& test_info = *test_case.GetTestInfo(j); - // Counts failed tests that were not meant to fail (those without - // 'Fails' in the name). - if (test_info.result()->Failed() && - strcmp(test_info.name(), "Fails") != 0) { - unexpectedly_failed_tests++; - } - } - } - - // Test that were meant to fail should not affect the test program outcome. - if (unexpectedly_failed_tests == 0) - ret_val = 0; - - return ret_val; -} diff --git a/cpp/thirdparty/gtest-1.5.0/scripts/.gitignore b/cpp/thirdparty/gtest-1.5.0/scripts/.gitignore deleted file mode 100644 index 468e9caac..000000000 --- a/cpp/thirdparty/gtest-1.5.0/scripts/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/gtest-config diff --git a/cpp/thirdparty/gtest-1.5.0/scripts/fuse_gtest_files.py b/cpp/thirdparty/gtest-1.5.0/scripts/fuse_gtest_files.py deleted file mode 100755 index 148444ca7..000000000 --- a/cpp/thirdparty/gtest-1.5.0/scripts/fuse_gtest_files.py +++ /dev/null @@ -1,250 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2009, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""fuse_gtest_files.py v0.2.0 -Fuses Google Test source code into a .h file and a .cc file. - -SYNOPSIS - fuse_gtest_files.py [GTEST_ROOT_DIR] OUTPUT_DIR - - Scans GTEST_ROOT_DIR for Google Test source code, and generates - two files: OUTPUT_DIR/gtest/gtest.h and OUTPUT_DIR/gtest/gtest-all.cc. - Then you can build your tests by adding OUTPUT_DIR to the include - search path and linking with OUTPUT_DIR/gtest/gtest-all.cc. These - two files contain everything you need to use Google Test. Hence - you can "install" Google Test by copying them to wherever you want. - - GTEST_ROOT_DIR can be omitted and defaults to the parent - directory of the directory holding this script. - -EXAMPLES - ./fuse_gtest_files.py fused_gtest - ./fuse_gtest_files.py path/to/unpacked/gtest fused_gtest - -This tool is experimental. In particular, it assumes that there is no -conditional inclusion of Google Test headers. Please report any -problems to googletestframework@googlegroups.com. You can read -http://code.google.com/p/googletest/wiki/GoogleTestAdvancedGuide for -more information. -""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import os -import re -import sets -import sys - -# We assume that this file is in the scripts/ directory in the Google -# Test root directory. -DEFAULT_GTEST_ROOT_DIR = os.path.join(os.path.dirname(__file__), '..') - -# Regex for matching '#include '. -INCLUDE_GTEST_FILE_REGEX = re.compile(r'^\s*#\s*include\s*<(gtest/.+)>') - -# Regex for matching '#include "src/..."'. -INCLUDE_SRC_FILE_REGEX = re.compile(r'^\s*#\s*include\s*"(src/.+)"') - -# Where to find the source seed files. -GTEST_H_SEED = 'include/gtest/gtest.h' -GTEST_SPI_H_SEED = 'include/gtest/gtest-spi.h' -GTEST_ALL_CC_SEED = 'src/gtest-all.cc' - -# Where to put the generated files. -GTEST_H_OUTPUT = 'gtest/gtest.h' -GTEST_ALL_CC_OUTPUT = 'gtest/gtest-all.cc' - - -def VerifyFileExists(directory, relative_path): - """Verifies that the given file exists; aborts on failure. - - relative_path is the file path relative to the given directory. - """ - - if not os.path.isfile(os.path.join(directory, relative_path)): - print 'ERROR: Cannot find %s in directory %s.' % (relative_path, - directory) - print ('Please either specify a valid project root directory ' - 'or omit it on the command line.') - sys.exit(1) - - -def ValidateGTestRootDir(gtest_root): - """Makes sure gtest_root points to a valid gtest root directory. - - The function aborts the program on failure. - """ - - VerifyFileExists(gtest_root, GTEST_H_SEED) - VerifyFileExists(gtest_root, GTEST_ALL_CC_SEED) - - -def VerifyOutputFile(output_dir, relative_path): - """Verifies that the given output file path is valid. - - relative_path is relative to the output_dir directory. - """ - - # Makes sure the output file either doesn't exist or can be overwritten. - output_file = os.path.join(output_dir, relative_path) - if os.path.exists(output_file): - # TODO(wan@google.com): The following user-interaction doesn't - # work with automated processes. We should provide a way for the - # Makefile to force overwriting the files. - print ('%s already exists in directory %s - overwrite it? (y/N) ' % - (relative_path, output_dir)) - answer = sys.stdin.readline().strip() - if answer not in ['y', 'Y']: - print 'ABORTED.' - sys.exit(1) - - # Makes sure the directory holding the output file exists; creates - # it and all its ancestors if necessary. - parent_directory = os.path.dirname(output_file) - if not os.path.isdir(parent_directory): - os.makedirs(parent_directory) - - -def ValidateOutputDir(output_dir): - """Makes sure output_dir points to a valid output directory. - - The function aborts the program on failure. - """ - - VerifyOutputFile(output_dir, GTEST_H_OUTPUT) - VerifyOutputFile(output_dir, GTEST_ALL_CC_OUTPUT) - - -def FuseGTestH(gtest_root, output_dir): - """Scans folder gtest_root to generate gtest/gtest.h in output_dir.""" - - output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w') - processed_files = sets.Set() # Holds all gtest headers we've processed. - - def ProcessFile(gtest_header_path): - """Processes the given gtest header file.""" - - # We don't process the same header twice. - if gtest_header_path in processed_files: - return - - processed_files.add(gtest_header_path) - - # Reads each line in the given gtest header. - for line in file(os.path.join(gtest_root, gtest_header_path), 'r'): - m = INCLUDE_GTEST_FILE_REGEX.match(line) - if m: - # It's '#include ' - let's process it recursively. - ProcessFile('include/' + m.group(1)) - else: - # Otherwise we copy the line unchanged to the output file. - output_file.write(line) - - ProcessFile(GTEST_H_SEED) - output_file.close() - - -def FuseGTestAllCcToFile(gtest_root, output_file): - """Scans folder gtest_root to generate gtest/gtest-all.cc in output_file.""" - - processed_files = sets.Set() - - def ProcessFile(gtest_source_file): - """Processes the given gtest source file.""" - - # We don't process the same #included file twice. - if gtest_source_file in processed_files: - return - - processed_files.add(gtest_source_file) - - # Reads each line in the given gtest source file. - for line in file(os.path.join(gtest_root, gtest_source_file), 'r'): - m = INCLUDE_GTEST_FILE_REGEX.match(line) - if m: - if 'include/' + m.group(1) == GTEST_SPI_H_SEED: - # It's '#include '. This file is not - # #included by , so we need to process it. - ProcessFile(GTEST_SPI_H_SEED) - else: - # It's '#include ' where foo is not gtest-spi. - # We treat it as '#include ', as all other - # gtest headers are being fused into gtest.h and cannot be - # #included directly. - - # There is no need to #include more than once. - if not GTEST_H_SEED in processed_files: - processed_files.add(GTEST_H_SEED) - output_file.write('#include <%s>\n' % (GTEST_H_OUTPUT,)) - else: - m = INCLUDE_SRC_FILE_REGEX.match(line) - if m: - # It's '#include "src/foo"' - let's process it recursively. - ProcessFile(m.group(1)) - else: - output_file.write(line) - - ProcessFile(GTEST_ALL_CC_SEED) - - -def FuseGTestAllCc(gtest_root, output_dir): - """Scans folder gtest_root to generate gtest/gtest-all.cc in output_dir.""" - - output_file = file(os.path.join(output_dir, GTEST_ALL_CC_OUTPUT), 'w') - FuseGTestAllCcToFile(gtest_root, output_file) - output_file.close() - - -def FuseGTest(gtest_root, output_dir): - """Fuses gtest.h and gtest-all.cc.""" - - ValidateGTestRootDir(gtest_root) - ValidateOutputDir(output_dir) - - FuseGTestH(gtest_root, output_dir) - FuseGTestAllCc(gtest_root, output_dir) - - -def main(): - argc = len(sys.argv) - if argc == 2: - # fuse_gtest_files.py OUTPUT_DIR - FuseGTest(DEFAULT_GTEST_ROOT_DIR, sys.argv[1]) - elif argc == 3: - # fuse_gtest_files.py GTEST_ROOT_DIR OUTPUT_DIR - FuseGTest(sys.argv[1], sys.argv[2]) - else: - print __doc__ - sys.exit(1) - - -if __name__ == '__main__': - main() diff --git a/cpp/thirdparty/gtest-1.5.0/scripts/gen_gtest_pred_impl.py b/cpp/thirdparty/gtest-1.5.0/scripts/gen_gtest_pred_impl.py deleted file mode 100755 index 8307134ad..000000000 --- a/cpp/thirdparty/gtest-1.5.0/scripts/gen_gtest_pred_impl.py +++ /dev/null @@ -1,733 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2006, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""gen_gtest_pred_impl.py v0.1 - -Generates the implementation of Google Test predicate assertions and -accompanying tests. - -Usage: - - gen_gtest_pred_impl.py MAX_ARITY - -where MAX_ARITY is a positive integer. - -The command generates the implementation of up-to MAX_ARITY-ary -predicate assertions, and writes it to file gtest_pred_impl.h in the -directory where the script is. It also generates the accompanying -unit test in file gtest_pred_impl_unittest.cc. -""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import os -import sys -import time - -# Where this script is. -SCRIPT_DIR = os.path.dirname(sys.argv[0]) - -# Where to store the generated header. -HEADER = os.path.join(SCRIPT_DIR, '../include/gtest/gtest_pred_impl.h') - -# Where to store the generated unit test. -UNIT_TEST = os.path.join(SCRIPT_DIR, '../test/gtest_pred_impl_unittest.cc') - - -def HeaderPreamble(n): - """Returns the preamble for the header file. - - Args: - n: the maximum arity of the predicate macros to be generated. - """ - - # A map that defines the values used in the preamble template. - DEFS = { - 'today' : time.strftime('%m/%d/%Y'), - 'year' : time.strftime('%Y'), - 'command' : '%s %s' % (os.path.basename(sys.argv[0]), n), - 'n' : n - } - - return ( -"""// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// This file is AUTOMATICALLY GENERATED on %(today)s by command -// '%(command)s'. DO NOT EDIT BY HAND! -// -// Implements a family of generic predicate assertion macros. - -#ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ -#define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ - -// Makes sure this header is not included before gtest.h. -#ifndef GTEST_INCLUDE_GTEST_GTEST_H_ -#error Do not include gtest_pred_impl.h directly. Include gtest.h instead. -#endif // GTEST_INCLUDE_GTEST_GTEST_H_ - -// This header implements a family of generic predicate assertion -// macros: -// -// ASSERT_PRED_FORMAT1(pred_format, v1) -// ASSERT_PRED_FORMAT2(pred_format, v1, v2) -// ... -// -// where pred_format is a function or functor that takes n (in the -// case of ASSERT_PRED_FORMATn) values and their source expression -// text, and returns a testing::AssertionResult. See the definition -// of ASSERT_EQ in gtest.h for an example. -// -// If you don't care about formatting, you can use the more -// restrictive version: -// -// ASSERT_PRED1(pred, v1) -// ASSERT_PRED2(pred, v1, v2) -// ... -// -// where pred is an n-ary function or functor that returns bool, -// and the values v1, v2, ..., must support the << operator for -// streaming to std::ostream. -// -// We also define the EXPECT_* variations. -// -// For now we only support predicates whose arity is at most %(n)s. -// Please email googletestframework@googlegroups.com if you need -// support for higher arities. - -// GTEST_ASSERT_ is the basic statement to which all of the assertions -// in this file reduce. Don't use this in your code. - -#define GTEST_ASSERT_(expression, on_failure) \\ - GTEST_AMBIGUOUS_ELSE_BLOCKER_ \\ - if (const ::testing::AssertionResult gtest_ar = (expression)) \\ - ; \\ - else \\ - on_failure(gtest_ar.failure_message()) -""" % DEFS) - - -def Arity(n): - """Returns the English name of the given arity.""" - - if n < 0: - return None - elif n <= 3: - return ['nullary', 'unary', 'binary', 'ternary'][n] - else: - return '%s-ary' % n - - -def Title(word): - """Returns the given word in title case. The difference between - this and string's title() method is that Title('4-ary') is '4-ary' - while '4-ary'.title() is '4-Ary'.""" - - return word[0].upper() + word[1:] - - -def OneTo(n): - """Returns the list [1, 2, 3, ..., n].""" - - return range(1, n + 1) - - -def Iter(n, format, sep=''): - """Given a positive integer n, a format string that contains 0 or - more '%s' format specs, and optionally a separator string, returns - the join of n strings, each formatted with the format string on an - iterator ranged from 1 to n. - - Example: - - Iter(3, 'v%s', sep=', ') returns 'v1, v2, v3'. - """ - - # How many '%s' specs are in format? - spec_count = len(format.split('%s')) - 1 - return sep.join([format % (spec_count * (i,)) for i in OneTo(n)]) - - -def ImplementationForArity(n): - """Returns the implementation of n-ary predicate assertions.""" - - # A map the defines the values used in the implementation template. - DEFS = { - 'n' : str(n), - 'vs' : Iter(n, 'v%s', sep=', '), - 'vts' : Iter(n, '#v%s', sep=', '), - 'arity' : Arity(n), - 'Arity' : Title(Arity(n)) - } - - impl = """ - -// Helper function for implementing {EXPECT|ASSERT}_PRED%(n)s. Don't use -// this in your code. -template -AssertionResult AssertPred%(n)sHelper(const char* pred_text""" % DEFS - - impl += Iter(n, """, - const char* e%s""") - - impl += """, - Pred pred""" - - impl += Iter(n, """, - const T%s& v%s""") - - impl += """) { - if (pred(%(vs)s)) return AssertionSuccess(); - - Message msg; -""" % DEFS - - impl += ' msg << pred_text << "("' - - impl += Iter(n, """ - << e%s""", sep=' << ", "') - - impl += ' << ") evaluates to false, where"' - - impl += Iter(n, """ - << "\\n" << e%s << " evaluates to " << v%s""") - - impl += """; - return AssertionFailure(msg); -} - -// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT%(n)s. -// Don't use this in your code. -#define GTEST_PRED_FORMAT%(n)s_(pred_format, %(vs)s, on_failure)\\ - GTEST_ASSERT_(pred_format(%(vts)s, %(vs)s),\\ - on_failure) - -// Internal macro for implementing {EXPECT|ASSERT}_PRED%(n)s. Don't use -// this in your code. -#define GTEST_PRED%(n)s_(pred, %(vs)s, on_failure)\\ - GTEST_ASSERT_(::testing::AssertPred%(n)sHelper(#pred""" % DEFS - - impl += Iter(n, """, \\ - #v%s""") - - impl += """, \\ - pred""" - - impl += Iter(n, """, \\ - v%s""") - - impl += """), on_failure) - -// %(Arity)s predicate assertion macros. -#define EXPECT_PRED_FORMAT%(n)s(pred_format, %(vs)s) \\ - GTEST_PRED_FORMAT%(n)s_(pred_format, %(vs)s, GTEST_NONFATAL_FAILURE_) -#define EXPECT_PRED%(n)s(pred, %(vs)s) \\ - GTEST_PRED%(n)s_(pred, %(vs)s, GTEST_NONFATAL_FAILURE_) -#define ASSERT_PRED_FORMAT%(n)s(pred_format, %(vs)s) \\ - GTEST_PRED_FORMAT%(n)s_(pred_format, %(vs)s, GTEST_FATAL_FAILURE_) -#define ASSERT_PRED%(n)s(pred, %(vs)s) \\ - GTEST_PRED%(n)s_(pred, %(vs)s, GTEST_FATAL_FAILURE_) - -""" % DEFS - - return impl - - -def HeaderPostamble(): - """Returns the postamble for the header file.""" - - return """ - -#endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ -""" - - -def GenerateFile(path, content): - """Given a file path and a content string, overwrites it with the - given content.""" - - print 'Updating file %s . . .' % path - - f = file(path, 'w+') - print >>f, content, - f.close() - - print 'File %s has been updated.' % path - - -def GenerateHeader(n): - """Given the maximum arity n, updates the header file that implements - the predicate assertions.""" - - GenerateFile(HEADER, - HeaderPreamble(n) - + ''.join([ImplementationForArity(i) for i in OneTo(n)]) - + HeaderPostamble()) - - -def UnitTestPreamble(): - """Returns the preamble for the unit test file.""" - - # A map that defines the values used in the preamble template. - DEFS = { - 'today' : time.strftime('%m/%d/%Y'), - 'year' : time.strftime('%Y'), - 'command' : '%s %s' % (os.path.basename(sys.argv[0]), sys.argv[1]), - } - - return ( -"""// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// This file is AUTOMATICALLY GENERATED on %(today)s by command -// '%(command)s'. DO NOT EDIT BY HAND! - -// Regression test for gtest_pred_impl.h -// -// This file is generated by a script and quite long. If you intend to -// learn how Google Test works by reading its unit tests, read -// gtest_unittest.cc instead. -// -// This is intended as a regression test for the Google Test predicate -// assertions. We compile it as part of the gtest_unittest target -// only to keep the implementation tidy and compact, as it is quite -// involved to set up the stage for testing Google Test using Google -// Test itself. -// -// Currently, gtest_unittest takes ~11 seconds to run in the testing -// daemon. In the future, if it grows too large and needs much more -// time to finish, we should consider separating this file into a -// stand-alone regression test. - -#include - -#include -#include - -// A user-defined data type. -struct Bool { - explicit Bool(int val) : value(val != 0) {} - - bool operator>(int n) const { return value > Bool(n).value; } - - Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); } - - bool operator==(const Bool& rhs) const { return value == rhs.value; } - - bool value; -}; - -// Enables Bool to be used in assertions. -std::ostream& operator<<(std::ostream& os, const Bool& x) { - return os << (x.value ? "true" : "false"); -} - -""" % DEFS) - - -def TestsForArity(n): - """Returns the tests for n-ary predicate assertions.""" - - # A map that defines the values used in the template for the tests. - DEFS = { - 'n' : n, - 'es' : Iter(n, 'e%s', sep=', '), - 'vs' : Iter(n, 'v%s', sep=', '), - 'vts' : Iter(n, '#v%s', sep=', '), - 'tvs' : Iter(n, 'T%s v%s', sep=', '), - 'int_vs' : Iter(n, 'int v%s', sep=', '), - 'Bool_vs' : Iter(n, 'Bool v%s', sep=', '), - 'types' : Iter(n, 'typename T%s', sep=', '), - 'v_sum' : Iter(n, 'v%s', sep=' + '), - 'arity' : Arity(n), - 'Arity' : Title(Arity(n)), - } - - tests = ( -"""// Sample functions/functors for testing %(arity)s predicate assertions. - -// A %(arity)s predicate function. -template <%(types)s> -bool PredFunction%(n)s(%(tvs)s) { - return %(v_sum)s > 0; -} - -// The following two functions are needed to circumvent a bug in -// gcc 2.95.3, which sometimes has problem with the above template -// function. -bool PredFunction%(n)sInt(%(int_vs)s) { - return %(v_sum)s > 0; -} -bool PredFunction%(n)sBool(%(Bool_vs)s) { - return %(v_sum)s > 0; -} -""" % DEFS) - - tests += """ -// A %(arity)s predicate functor. -struct PredFunctor%(n)s { - template <%(types)s> - bool operator()(""" % DEFS - - tests += Iter(n, 'const T%s& v%s', sep=""", - """) - - tests += """) { - return %(v_sum)s > 0; - } -}; -""" % DEFS - - tests += """ -// A %(arity)s predicate-formatter function. -template <%(types)s> -testing::AssertionResult PredFormatFunction%(n)s(""" % DEFS - - tests += Iter(n, 'const char* e%s', sep=""", - """) - - tests += Iter(n, """, - const T%s& v%s""") - - tests += """) { - if (PredFunction%(n)s(%(vs)s)) - return testing::AssertionSuccess(); - - testing::Message msg; - msg << """ % DEFS - - tests += Iter(n, 'e%s', sep=' << " + " << ') - - tests += """ - << " is expected to be positive, but evaluates to " - << %(v_sum)s << "."; - return testing::AssertionFailure(msg); -} -""" % DEFS - - tests += """ -// A %(arity)s predicate-formatter functor. -struct PredFormatFunctor%(n)s { - template <%(types)s> - testing::AssertionResult operator()(""" % DEFS - - tests += Iter(n, 'const char* e%s', sep=""", - """) - - tests += Iter(n, """, - const T%s& v%s""") - - tests += """) const { - return PredFormatFunction%(n)s(%(es)s, %(vs)s); - } -}; -""" % DEFS - - tests += """ -// Tests for {EXPECT|ASSERT}_PRED_FORMAT%(n)s. - -class Predicate%(n)sTest : public testing::Test { - protected: - virtual void SetUp() { - expected_to_finish_ = true; - finished_ = false;""" % DEFS - - tests += """ - """ + Iter(n, 'n%s_ = ') + """0; - } -""" - - tests += """ - virtual void TearDown() { - // Verifies that each of the predicate's arguments was evaluated - // exactly once.""" - - tests += ''.join([""" - EXPECT_EQ(1, n%s_) << - "The predicate assertion didn't evaluate argument %s " - "exactly once.";""" % (i, i + 1) for i in OneTo(n)]) - - tests += """ - - // Verifies that the control flow in the test function is expected. - if (expected_to_finish_ && !finished_) { - FAIL() << "The predicate assertion unexpactedly aborted the test."; - } else if (!expected_to_finish_ && finished_) { - FAIL() << "The failed predicate assertion didn't abort the test " - "as expected."; - } - } - - // true iff the test function is expected to run to finish. - static bool expected_to_finish_; - - // true iff the test function did run to finish. - static bool finished_; -""" % DEFS - - tests += Iter(n, """ - static int n%s_;""") - - tests += """ -}; - -bool Predicate%(n)sTest::expected_to_finish_; -bool Predicate%(n)sTest::finished_; -""" % DEFS - - tests += Iter(n, """int Predicate%%(n)sTest::n%s_; -""") % DEFS - - tests += """ -typedef Predicate%(n)sTest EXPECT_PRED_FORMAT%(n)sTest; -typedef Predicate%(n)sTest ASSERT_PRED_FORMAT%(n)sTest; -typedef Predicate%(n)sTest EXPECT_PRED%(n)sTest; -typedef Predicate%(n)sTest ASSERT_PRED%(n)sTest; -""" % DEFS - - def GenTest(use_format, use_assert, expect_failure, - use_functor, use_user_type): - """Returns the test for a predicate assertion macro. - - Args: - use_format: true iff the assertion is a *_PRED_FORMAT*. - use_assert: true iff the assertion is a ASSERT_*. - expect_failure: true iff the assertion is expected to fail. - use_functor: true iff the first argument of the assertion is - a functor (as opposed to a function) - use_user_type: true iff the predicate functor/function takes - argument(s) of a user-defined type. - - Example: - - GenTest(1, 0, 0, 1, 0) returns a test that tests the behavior - of a successful EXPECT_PRED_FORMATn() that takes a functor - whose arguments have built-in types.""" - - if use_assert: - assrt = 'ASSERT' # 'assert' is reserved, so we cannot use - # that identifier here. - else: - assrt = 'EXPECT' - - assertion = assrt + '_PRED' - - if use_format: - pred_format = 'PredFormat' - assertion += '_FORMAT' - else: - pred_format = 'Pred' - - assertion += '%(n)s' % DEFS - - if use_functor: - pred_format_type = 'functor' - pred_format += 'Functor%(n)s()' - else: - pred_format_type = 'function' - pred_format += 'Function%(n)s' - if not use_format: - if use_user_type: - pred_format += 'Bool' - else: - pred_format += 'Int' - - test_name = pred_format_type.title() - - if use_user_type: - arg_type = 'user-defined type (Bool)' - test_name += 'OnUserType' - if expect_failure: - arg = 'Bool(n%s_++)' - else: - arg = 'Bool(++n%s_)' - else: - arg_type = 'built-in type (int)' - test_name += 'OnBuiltInType' - if expect_failure: - arg = 'n%s_++' - else: - arg = '++n%s_' - - if expect_failure: - successful_or_failed = 'failed' - expected_or_not = 'expected.' - test_name += 'Failure' - else: - successful_or_failed = 'successful' - expected_or_not = 'UNEXPECTED!' - test_name += 'Success' - - # A map that defines the values used in the test template. - defs = DEFS.copy() - defs.update({ - 'assert' : assrt, - 'assertion' : assertion, - 'test_name' : test_name, - 'pf_type' : pred_format_type, - 'pf' : pred_format, - 'arg_type' : arg_type, - 'arg' : arg, - 'successful' : successful_or_failed, - 'expected' : expected_or_not, - }) - - test = """ -// Tests a %(successful)s %(assertion)s where the -// predicate-formatter is a %(pf_type)s on a %(arg_type)s. -TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs - - indent = (len(assertion) + 3)*' ' - extra_indent = '' - - if expect_failure: - extra_indent = ' ' - if use_assert: - test += """ - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT""" - else: - test += """ - EXPECT_NONFATAL_FAILURE({ // NOLINT""" - - test += '\n' + extra_indent + """ %(assertion)s(%(pf)s""" % defs - - test = test % defs - test += Iter(n, ',\n' + indent + extra_indent + '%(arg)s' % defs) - test += ');\n' + extra_indent + ' finished_ = true;\n' - - if expect_failure: - test += ' }, "");\n' - - test += '}\n' - return test - - # Generates tests for all 2**6 = 64 combinations. - tests += ''.join([GenTest(use_format, use_assert, expect_failure, - use_functor, use_user_type) - for use_format in [0, 1] - for use_assert in [0, 1] - for expect_failure in [0, 1] - for use_functor in [0, 1] - for use_user_type in [0, 1] - ]) - - return tests - - -def UnitTestPostamble(): - """Returns the postamble for the tests.""" - - return '' - - -def GenerateUnitTest(n): - """Returns the tests for up-to n-ary predicate assertions.""" - - GenerateFile(UNIT_TEST, - UnitTestPreamble() - + ''.join([TestsForArity(i) for i in OneTo(n)]) - + UnitTestPostamble()) - - -def _Main(): - """The entry point of the script. Generates the header file and its - unit test.""" - - if len(sys.argv) != 2: - print __doc__ - print 'Author: ' + __author__ - sys.exit(1) - - n = int(sys.argv[1]) - GenerateHeader(n) - GenerateUnitTest(n) - - -if __name__ == '__main__': - _Main() diff --git a/cpp/thirdparty/gtest-1.5.0/scripts/gtest-config.in b/cpp/thirdparty/gtest-1.5.0/scripts/gtest-config.in deleted file mode 100755 index 9c7263854..000000000 --- a/cpp/thirdparty/gtest-1.5.0/scripts/gtest-config.in +++ /dev/null @@ -1,274 +0,0 @@ -#!/bin/sh - -# These variables are automatically filled in by the configure script. -name="@PACKAGE_TARNAME@" -version="@PACKAGE_VERSION@" - -show_usage() -{ - echo "Usage: gtest-config [OPTIONS...]" -} - -show_help() -{ - show_usage - cat <<\EOF - -The `gtest-config' script provides access to the necessary compile and linking -flags to connect with Google C++ Testing Framework, both in a build prior to -installation, and on the system proper after installation. The installation -overrides may be issued in combination with any other queries, but will only -affect installation queries if called on a built but not installed gtest. The -installation queries may not be issued with any other types of queries, and -only one installation query may be made at a time. The version queries and -compiler flag queries may be combined as desired but not mixed. Different -version queries are always combined with logical "and" semantics, and only the -last of any particular query is used while all previous ones ignored. All -versions must be specified as a sequence of numbers separated by periods. -Compiler flag queries output the union of the sets of flags when combined. - - Examples: - gtest-config --min-version=1.0 || echo "Insufficient Google Test version." - - g++ $(gtest-config --cppflags --cxxflags) -o foo.o -c foo.cpp - g++ $(gtest-config --ldflags --libs) -o foo foo.o - - # When using a built but not installed Google Test: - g++ $(../../my_gtest_build/scripts/gtest-config ...) ... - - # When using an installed Google Test, but with installation overrides: - export GTEST_PREFIX="/opt" - g++ $(gtest-config --libdir="/opt/lib64" ...) ... - - Help: - --usage brief usage information - --help display this help message - - Installation Overrides: - --prefix= overrides the installation prefix - --exec-prefix= overrides the executable installation prefix - --libdir= overrides the library installation prefix - --includedir= overrides the header file installation prefix - - Installation Queries: - --prefix installation prefix - --exec-prefix executable installation prefix - --libdir library installation directory - --includedir header file installation directory - --version the version of the Google Test installation - - Version Queries: - --min-version=VERSION return 0 if the version is at least VERSION - --exact-version=VERSION return 0 if the version is exactly VERSION - --max-version=VERSION return 0 if the version is at most VERSION - - Compilation Flag Queries: - --cppflags compile flags specific to the C-like preprocessors - --cxxflags compile flags appropriate for C++ programs - --ldflags linker flags - --libs libraries for linking - -EOF -} - -# This function bounds our version with a min and a max. It uses some clever -# POSIX-compliant variable expansion to portably do all the work in the shell -# and avoid any dependency on a particular "sed" or "awk" implementation. -# Notable is that it will only ever compare the first 3 components of versions. -# Further components will be cleanly stripped off. All versions must be -# unadorned, so "v1.0" will *not* work. The minimum version must be in $1, and -# the max in $2. TODO(chandlerc@google.com): If this ever breaks, we should -# investigate expanding this via autom4te from AS_VERSION_COMPARE rather than -# continuing to maintain our own shell version. -check_versions() -{ - major_version=${version%%.*} - minor_version="0" - point_version="0" - if test "${version#*.}" != "${version}"; then - minor_version=${version#*.} - minor_version=${minor_version%%.*} - fi - if test "${version#*.*.}" != "${version}"; then - point_version=${version#*.*.} - point_version=${point_version%%.*} - fi - - min_version="$1" - min_major_version=${min_version%%.*} - min_minor_version="0" - min_point_version="0" - if test "${min_version#*.}" != "${min_version}"; then - min_minor_version=${min_version#*.} - min_minor_version=${min_minor_version%%.*} - fi - if test "${min_version#*.*.}" != "${min_version}"; then - min_point_version=${min_version#*.*.} - min_point_version=${min_point_version%%.*} - fi - - max_version="$2" - max_major_version=${max_version%%.*} - max_minor_version="0" - max_point_version="0" - if test "${max_version#*.}" != "${max_version}"; then - max_minor_version=${max_version#*.} - max_minor_version=${max_minor_version%%.*} - fi - if test "${max_version#*.*.}" != "${max_version}"; then - max_point_version=${max_version#*.*.} - max_point_version=${max_point_version%%.*} - fi - - test $(($major_version)) -lt $(($min_major_version)) && exit 1 - if test $(($major_version)) -eq $(($min_major_version)); then - test $(($minor_version)) -lt $(($min_minor_version)) && exit 1 - if test $(($minor_version)) -eq $(($min_minor_version)); then - test $(($point_version)) -lt $(($min_point_version)) && exit 1 - fi - fi - - test $(($major_version)) -gt $(($max_major_version)) && exit 1 - if test $(($major_version)) -eq $(($max_major_version)); then - test $(($minor_version)) -gt $(($max_minor_version)) && exit 1 - if test $(($minor_version)) -eq $(($max_minor_version)); then - test $(($point_version)) -gt $(($max_point_version)) && exit 1 - fi - fi - - exit 0 -} - -# Show the usage line when no arguments are specified. -if test $# -eq 0; then - show_usage - exit 1 -fi - -while test $# -gt 0; do - case $1 in - --usage) show_usage; exit 0;; - --help) show_help; exit 0;; - - # Installation overrides - --prefix=*) GTEST_PREFIX=${1#--prefix=};; - --exec-prefix=*) GTEST_EXEC_PREFIX=${1#--exec-prefix=};; - --libdir=*) GTEST_LIBDIR=${1#--libdir=};; - --includedir=*) GTEST_INCLUDEDIR=${1#--includedir=};; - - # Installation queries - --prefix|--exec-prefix|--libdir|--includedir|--version) - if test -n "${do_query}"; then - show_usage - exit 1 - fi - do_query=${1#--} - ;; - - # Version checking - --min-version=*) - do_check_versions=yes - min_version=${1#--min-version=} - ;; - --max-version=*) - do_check_versions=yes - max_version=${1#--max-version=} - ;; - --exact-version=*) - do_check_versions=yes - exact_version=${1#--exact-version=} - ;; - - # Compiler flag output - --cppflags) echo_cppflags=yes;; - --cxxflags) echo_cxxflags=yes;; - --ldflags) echo_ldflags=yes;; - --libs) echo_libs=yes;; - - # Everything else is an error - *) show_usage; exit 1;; - esac - shift -done - -# These have defaults filled in by the configure script but can also be -# overridden by environment variables or command line parameters. -prefix="${GTEST_PREFIX:-@prefix@}" -exec_prefix="${GTEST_EXEC_PREFIX:-@exec_prefix@}" -libdir="${GTEST_LIBDIR:-@libdir@}" -includedir="${GTEST_INCLUDEDIR:-@includedir@}" - -# We try and detect if our binary is not located at its installed location. If -# it's not, we provide variables pointing to the source and build tree rather -# than to the install tree. This allows building against a just-built gtest -# rather than an installed gtest. -bindir="@bindir@" -this_relative_bindir=`dirname $0` -this_bindir=`cd ${this_relative_bindir}; pwd -P` -if test "${this_bindir}" = "${this_bindir%${bindir}}"; then - # The path to the script doesn't end in the bindir sequence from Autoconf, - # assume that we are in a build tree. - build_dir=`dirname ${this_bindir}` - src_dir=`cd ${this_bindir}/@top_srcdir@; pwd -P` - - # TODO(chandlerc@google.com): This is a dangerous dependency on libtool, we - # should work to remove it, and/or remove libtool altogether, replacing it - # with direct references to the library and a link path. - gtest_libs="${build_dir}/lib/libgtest.la @PTHREAD_CFLAGS@ @PTHREAD_LIBS@" - gtest_ldflags="" - - # We provide hooks to include from either the source or build dir, where the - # build dir is always preferred. This will potentially allow us to write - # build rules for generated headers and have them automatically be preferred - # over provided versions. - gtest_cppflags="-I${build_dir}/include -I${src_dir}/include" - gtest_cxxflags="@PTHREAD_CFLAGS@" -else - # We're using an installed gtest, although it may be staged under some - # prefix. Assume (as our own libraries do) that we can resolve the prefix, - # and are present in the dynamic link paths. - gtest_ldflags="-L${libdir}" - gtest_libs="-l${name} @PTHREAD_CFLAGS@ @PTHREAD_LIBS@" - gtest_cppflags="-I${includedir}" - gtest_cxxflags="@PTHREAD_CFLAGS@" -fi - -# Do an installation query if requested. -if test -n "$do_query"; then - case $do_query in - prefix) echo $prefix; exit 0;; - exec-prefix) echo $exec_prefix; exit 0;; - libdir) echo $libdir; exit 0;; - includedir) echo $includedir; exit 0;; - version) echo $version; exit 0;; - *) show_usage; exit 1;; - esac -fi - -# Do a version check if requested. -if test "$do_check_versions" = "yes"; then - # Make sure we didn't receive a bad combination of parameters. - test "$echo_cppflags" = "yes" && show_usage && exit 1 - test "$echo_cxxflags" = "yes" && show_usage && exit 1 - test "$echo_ldflags" = "yes" && show_usage && exit 1 - test "$echo_libs" = "yes" && show_usage && exit 1 - - if test "$exact_version" != ""; then - check_versions $exact_version $exact_version - # unreachable - else - check_versions ${min_version:-0.0.0} ${max_version:-9999.9999.9999} - # unreachable - fi -fi - -# Do the output in the correct order so that these can be used in-line of -# a compiler invocation. -output="" -test "$echo_cppflags" = "yes" && output="$output $gtest_cppflags" -test "$echo_cxxflags" = "yes" && output="$output $gtest_cxxflags" -test "$echo_ldflags" = "yes" && output="$output $gtest_ldflags" -test "$echo_libs" = "yes" && output="$output $gtest_libs" -echo $output - -exit 0 diff --git a/cpp/thirdparty/gtest-1.5.0/scripts/pump.py b/cpp/thirdparty/gtest-1.5.0/scripts/pump.py deleted file mode 100755 index f15c1b6ce..000000000 --- a/cpp/thirdparty/gtest-1.5.0/scripts/pump.py +++ /dev/null @@ -1,835 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2008, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""pump v0.1 - Pretty Useful for Meta Programming. - -A tool for preprocessor meta programming. Useful for generating -repetitive boilerplate code. Especially useful for writing C++ -classes, functions, macros, and templates that need to work with -various number of arguments. - -USAGE: - pump.py SOURCE_FILE - -EXAMPLES: - pump.py foo.cc.pump - Converts foo.cc.pump to foo.cc. - -GRAMMAR: - CODE ::= ATOMIC_CODE* - ATOMIC_CODE ::= $var ID = EXPRESSION - | $var ID = [[ CODE ]] - | $range ID EXPRESSION..EXPRESSION - | $for ID SEPARATOR [[ CODE ]] - | $($) - | $ID - | $(EXPRESSION) - | $if EXPRESSION [[ CODE ]] ELSE_BRANCH - | [[ CODE ]] - | RAW_CODE - SEPARATOR ::= RAW_CODE | EMPTY - ELSE_BRANCH ::= $else [[ CODE ]] - | $elif EXPRESSION [[ CODE ]] ELSE_BRANCH - | EMPTY - EXPRESSION has Python syntax. -""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import os -import re -import sys - - -TOKEN_TABLE = [ - (re.compile(r'\$var\s+'), '$var'), - (re.compile(r'\$elif\s+'), '$elif'), - (re.compile(r'\$else\s+'), '$else'), - (re.compile(r'\$for\s+'), '$for'), - (re.compile(r'\$if\s+'), '$if'), - (re.compile(r'\$range\s+'), '$range'), - (re.compile(r'\$[_A-Za-z]\w*'), '$id'), - (re.compile(r'\$\(\$\)'), '$($)'), - (re.compile(r'\$\$.*'), '$$'), - (re.compile(r'\$'), '$'), - (re.compile(r'\[\[\n?'), '[['), - (re.compile(r'\]\]\n?'), ']]'), - ] - - -class Cursor: - """Represents a position (line and column) in a text file.""" - - def __init__(self, line=-1, column=-1): - self.line = line - self.column = column - - def __eq__(self, rhs): - return self.line == rhs.line and self.column == rhs.column - - def __ne__(self, rhs): - return not self == rhs - - def __lt__(self, rhs): - return self.line < rhs.line or ( - self.line == rhs.line and self.column < rhs.column) - - def __le__(self, rhs): - return self < rhs or self == rhs - - def __gt__(self, rhs): - return rhs < self - - def __ge__(self, rhs): - return rhs <= self - - def __str__(self): - if self == Eof(): - return 'EOF' - else: - return '%s(%s)' % (self.line + 1, self.column) - - def __add__(self, offset): - return Cursor(self.line, self.column + offset) - - def __sub__(self, offset): - return Cursor(self.line, self.column - offset) - - def Clone(self): - """Returns a copy of self.""" - - return Cursor(self.line, self.column) - - -# Special cursor to indicate the end-of-file. -def Eof(): - """Returns the special cursor to denote the end-of-file.""" - return Cursor(-1, -1) - - -class Token: - """Represents a token in a Pump source file.""" - - def __init__(self, start=None, end=None, value=None, token_type=None): - if start is None: - self.start = Eof() - else: - self.start = start - if end is None: - self.end = Eof() - else: - self.end = end - self.value = value - self.token_type = token_type - - def __str__(self): - return 'Token @%s: \'%s\' type=%s' % ( - self.start, self.value, self.token_type) - - def Clone(self): - """Returns a copy of self.""" - - return Token(self.start.Clone(), self.end.Clone(), self.value, - self.token_type) - - -def StartsWith(lines, pos, string): - """Returns True iff the given position in lines starts with 'string'.""" - - return lines[pos.line][pos.column:].startswith(string) - - -def FindFirstInLine(line, token_table): - best_match_start = -1 - for (regex, token_type) in token_table: - m = regex.search(line) - if m: - # We found regex in lines - if best_match_start < 0 or m.start() < best_match_start: - best_match_start = m.start() - best_match_length = m.end() - m.start() - best_match_token_type = token_type - - if best_match_start < 0: - return None - - return (best_match_start, best_match_length, best_match_token_type) - - -def FindFirst(lines, token_table, cursor): - """Finds the first occurrence of any string in strings in lines.""" - - start = cursor.Clone() - cur_line_number = cursor.line - for line in lines[start.line:]: - if cur_line_number == start.line: - line = line[start.column:] - m = FindFirstInLine(line, token_table) - if m: - # We found a regex in line. - (start_column, length, token_type) = m - if cur_line_number == start.line: - start_column += start.column - found_start = Cursor(cur_line_number, start_column) - found_end = found_start + length - return MakeToken(lines, found_start, found_end, token_type) - cur_line_number += 1 - # We failed to find str in lines - return None - - -def SubString(lines, start, end): - """Returns a substring in lines.""" - - if end == Eof(): - end = Cursor(len(lines) - 1, len(lines[-1])) - - if start >= end: - return '' - - if start.line == end.line: - return lines[start.line][start.column:end.column] - - result_lines = ([lines[start.line][start.column:]] + - lines[start.line + 1:end.line] + - [lines[end.line][:end.column]]) - return ''.join(result_lines) - - -def MakeToken(lines, start, end, token_type): - """Creates a new instance of Token.""" - - return Token(start, end, SubString(lines, start, end), token_type) - - -def ParseToken(lines, pos, regex, token_type): - line = lines[pos.line][pos.column:] - m = regex.search(line) - if m and not m.start(): - return MakeToken(lines, pos, pos + m.end(), token_type) - else: - print 'ERROR: %s expected at %s.' % (token_type, pos) - sys.exit(1) - - -ID_REGEX = re.compile(r'[_A-Za-z]\w*') -EQ_REGEX = re.compile(r'=') -REST_OF_LINE_REGEX = re.compile(r'.*?(?=$|\$\$)') -OPTIONAL_WHITE_SPACES_REGEX = re.compile(r'\s*') -WHITE_SPACE_REGEX = re.compile(r'\s') -DOT_DOT_REGEX = re.compile(r'\.\.') - - -def Skip(lines, pos, regex): - line = lines[pos.line][pos.column:] - m = re.search(regex, line) - if m and not m.start(): - return pos + m.end() - else: - return pos - - -def SkipUntil(lines, pos, regex, token_type): - line = lines[pos.line][pos.column:] - m = re.search(regex, line) - if m: - return pos + m.start() - else: - print ('ERROR: %s expected on line %s after column %s.' % - (token_type, pos.line + 1, pos.column)) - sys.exit(1) - - -def ParseExpTokenInParens(lines, pos): - def ParseInParens(pos): - pos = Skip(lines, pos, OPTIONAL_WHITE_SPACES_REGEX) - pos = Skip(lines, pos, r'\(') - pos = Parse(pos) - pos = Skip(lines, pos, r'\)') - return pos - - def Parse(pos): - pos = SkipUntil(lines, pos, r'\(|\)', ')') - if SubString(lines, pos, pos + 1) == '(': - pos = Parse(pos + 1) - pos = Skip(lines, pos, r'\)') - return Parse(pos) - else: - return pos - - start = pos.Clone() - pos = ParseInParens(pos) - return MakeToken(lines, start, pos, 'exp') - - -def RStripNewLineFromToken(token): - if token.value.endswith('\n'): - return Token(token.start, token.end, token.value[:-1], token.token_type) - else: - return token - - -def TokenizeLines(lines, pos): - while True: - found = FindFirst(lines, TOKEN_TABLE, pos) - if not found: - yield MakeToken(lines, pos, Eof(), 'code') - return - - if found.start == pos: - prev_token = None - prev_token_rstripped = None - else: - prev_token = MakeToken(lines, pos, found.start, 'code') - prev_token_rstripped = RStripNewLineFromToken(prev_token) - - if found.token_type == '$$': # A meta comment. - if prev_token_rstripped: - yield prev_token_rstripped - pos = Cursor(found.end.line + 1, 0) - elif found.token_type == '$var': - if prev_token_rstripped: - yield prev_token_rstripped - yield found - id_token = ParseToken(lines, found.end, ID_REGEX, 'id') - yield id_token - pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX) - - eq_token = ParseToken(lines, pos, EQ_REGEX, '=') - yield eq_token - pos = Skip(lines, eq_token.end, r'\s*') - - if SubString(lines, pos, pos + 2) != '[[': - exp_token = ParseToken(lines, pos, REST_OF_LINE_REGEX, 'exp') - yield exp_token - pos = Cursor(exp_token.end.line + 1, 0) - elif found.token_type == '$for': - if prev_token_rstripped: - yield prev_token_rstripped - yield found - id_token = ParseToken(lines, found.end, ID_REGEX, 'id') - yield id_token - pos = Skip(lines, id_token.end, WHITE_SPACE_REGEX) - elif found.token_type == '$range': - if prev_token_rstripped: - yield prev_token_rstripped - yield found - id_token = ParseToken(lines, found.end, ID_REGEX, 'id') - yield id_token - pos = Skip(lines, id_token.end, OPTIONAL_WHITE_SPACES_REGEX) - - dots_pos = SkipUntil(lines, pos, DOT_DOT_REGEX, '..') - yield MakeToken(lines, pos, dots_pos, 'exp') - yield MakeToken(lines, dots_pos, dots_pos + 2, '..') - pos = dots_pos + 2 - new_pos = Cursor(pos.line + 1, 0) - yield MakeToken(lines, pos, new_pos, 'exp') - pos = new_pos - elif found.token_type == '$': - if prev_token: - yield prev_token - yield found - exp_token = ParseExpTokenInParens(lines, found.end) - yield exp_token - pos = exp_token.end - elif (found.token_type == ']]' or found.token_type == '$if' or - found.token_type == '$elif' or found.token_type == '$else'): - if prev_token_rstripped: - yield prev_token_rstripped - yield found - pos = found.end - else: - if prev_token: - yield prev_token - yield found - pos = found.end - - -def Tokenize(s): - lines = s.splitlines(True) - return TokenizeLines(lines, Cursor(0, 0)) - - -class CodeNode: - def __init__(self, atomic_code_list=None): - self.atomic_code = atomic_code_list - - -class VarNode: - def __init__(self, identifier=None, atomic_code=None): - self.identifier = identifier - self.atomic_code = atomic_code - - -class RangeNode: - def __init__(self, identifier=None, exp1=None, exp2=None): - self.identifier = identifier - self.exp1 = exp1 - self.exp2 = exp2 - - -class ForNode: - def __init__(self, identifier=None, sep=None, code=None): - self.identifier = identifier - self.sep = sep - self.code = code - - -class ElseNode: - def __init__(self, else_branch=None): - self.else_branch = else_branch - - -class IfNode: - def __init__(self, exp=None, then_branch=None, else_branch=None): - self.exp = exp - self.then_branch = then_branch - self.else_branch = else_branch - - -class RawCodeNode: - def __init__(self, token=None): - self.raw_code = token - - -class LiteralDollarNode: - def __init__(self, token): - self.token = token - - -class ExpNode: - def __init__(self, token, python_exp): - self.token = token - self.python_exp = python_exp - - -def PopFront(a_list): - head = a_list[0] - a_list[:1] = [] - return head - - -def PushFront(a_list, elem): - a_list[:0] = [elem] - - -def PopToken(a_list, token_type=None): - token = PopFront(a_list) - if token_type is not None and token.token_type != token_type: - print 'ERROR: %s expected at %s' % (token_type, token.start) - print 'ERROR: %s found instead' % (token,) - sys.exit(1) - - return token - - -def PeekToken(a_list): - if not a_list: - return None - - return a_list[0] - - -def ParseExpNode(token): - python_exp = re.sub(r'([_A-Za-z]\w*)', r'self.GetValue("\1")', token.value) - return ExpNode(token, python_exp) - - -def ParseElseNode(tokens): - def Pop(token_type=None): - return PopToken(tokens, token_type) - - next = PeekToken(tokens) - if not next: - return None - if next.token_type == '$else': - Pop('$else') - Pop('[[') - code_node = ParseCodeNode(tokens) - Pop(']]') - return code_node - elif next.token_type == '$elif': - Pop('$elif') - exp = Pop('code') - Pop('[[') - code_node = ParseCodeNode(tokens) - Pop(']]') - inner_else_node = ParseElseNode(tokens) - return CodeNode([IfNode(ParseExpNode(exp), code_node, inner_else_node)]) - elif not next.value.strip(): - Pop('code') - return ParseElseNode(tokens) - else: - return None - - -def ParseAtomicCodeNode(tokens): - def Pop(token_type=None): - return PopToken(tokens, token_type) - - head = PopFront(tokens) - t = head.token_type - if t == 'code': - return RawCodeNode(head) - elif t == '$var': - id_token = Pop('id') - Pop('=') - next = PeekToken(tokens) - if next.token_type == 'exp': - exp_token = Pop() - return VarNode(id_token, ParseExpNode(exp_token)) - Pop('[[') - code_node = ParseCodeNode(tokens) - Pop(']]') - return VarNode(id_token, code_node) - elif t == '$for': - id_token = Pop('id') - next_token = PeekToken(tokens) - if next_token.token_type == 'code': - sep_token = next_token - Pop('code') - else: - sep_token = None - Pop('[[') - code_node = ParseCodeNode(tokens) - Pop(']]') - return ForNode(id_token, sep_token, code_node) - elif t == '$if': - exp_token = Pop('code') - Pop('[[') - code_node = ParseCodeNode(tokens) - Pop(']]') - else_node = ParseElseNode(tokens) - return IfNode(ParseExpNode(exp_token), code_node, else_node) - elif t == '$range': - id_token = Pop('id') - exp1_token = Pop('exp') - Pop('..') - exp2_token = Pop('exp') - return RangeNode(id_token, ParseExpNode(exp1_token), - ParseExpNode(exp2_token)) - elif t == '$id': - return ParseExpNode(Token(head.start + 1, head.end, head.value[1:], 'id')) - elif t == '$($)': - return LiteralDollarNode(head) - elif t == '$': - exp_token = Pop('exp') - return ParseExpNode(exp_token) - elif t == '[[': - code_node = ParseCodeNode(tokens) - Pop(']]') - return code_node - else: - PushFront(tokens, head) - return None - - -def ParseCodeNode(tokens): - atomic_code_list = [] - while True: - if not tokens: - break - atomic_code_node = ParseAtomicCodeNode(tokens) - if atomic_code_node: - atomic_code_list.append(atomic_code_node) - else: - break - return CodeNode(atomic_code_list) - - -def Convert(file_path): - s = file(file_path, 'r').read() - tokens = [] - for token in Tokenize(s): - tokens.append(token) - code_node = ParseCodeNode(tokens) - return code_node - - -class Env: - def __init__(self): - self.variables = [] - self.ranges = [] - - def Clone(self): - clone = Env() - clone.variables = self.variables[:] - clone.ranges = self.ranges[:] - return clone - - def PushVariable(self, var, value): - # If value looks like an int, store it as an int. - try: - int_value = int(value) - if ('%s' % int_value) == value: - value = int_value - except Exception: - pass - self.variables[:0] = [(var, value)] - - def PopVariable(self): - self.variables[:1] = [] - - def PushRange(self, var, lower, upper): - self.ranges[:0] = [(var, lower, upper)] - - def PopRange(self): - self.ranges[:1] = [] - - def GetValue(self, identifier): - for (var, value) in self.variables: - if identifier == var: - return value - - print 'ERROR: meta variable %s is undefined.' % (identifier,) - sys.exit(1) - - def EvalExp(self, exp): - try: - result = eval(exp.python_exp) - except Exception, e: - print 'ERROR: caught exception %s: %s' % (e.__class__.__name__, e) - print ('ERROR: failed to evaluate meta expression %s at %s' % - (exp.python_exp, exp.token.start)) - sys.exit(1) - return result - - def GetRange(self, identifier): - for (var, lower, upper) in self.ranges: - if identifier == var: - return (lower, upper) - - print 'ERROR: range %s is undefined.' % (identifier,) - sys.exit(1) - - -class Output: - def __init__(self): - self.string = '' - - def GetLastLine(self): - index = self.string.rfind('\n') - if index < 0: - return '' - - return self.string[index + 1:] - - def Append(self, s): - self.string += s - - -def RunAtomicCode(env, node, output): - if isinstance(node, VarNode): - identifier = node.identifier.value.strip() - result = Output() - RunAtomicCode(env.Clone(), node.atomic_code, result) - value = result.string - env.PushVariable(identifier, value) - elif isinstance(node, RangeNode): - identifier = node.identifier.value.strip() - lower = int(env.EvalExp(node.exp1)) - upper = int(env.EvalExp(node.exp2)) - env.PushRange(identifier, lower, upper) - elif isinstance(node, ForNode): - identifier = node.identifier.value.strip() - if node.sep is None: - sep = '' - else: - sep = node.sep.value - (lower, upper) = env.GetRange(identifier) - for i in range(lower, upper + 1): - new_env = env.Clone() - new_env.PushVariable(identifier, i) - RunCode(new_env, node.code, output) - if i != upper: - output.Append(sep) - elif isinstance(node, RawCodeNode): - output.Append(node.raw_code.value) - elif isinstance(node, IfNode): - cond = env.EvalExp(node.exp) - if cond: - RunCode(env.Clone(), node.then_branch, output) - elif node.else_branch is not None: - RunCode(env.Clone(), node.else_branch, output) - elif isinstance(node, ExpNode): - value = env.EvalExp(node) - output.Append('%s' % (value,)) - elif isinstance(node, LiteralDollarNode): - output.Append('$') - elif isinstance(node, CodeNode): - RunCode(env.Clone(), node, output) - else: - print 'BAD' - print node - sys.exit(1) - - -def RunCode(env, code_node, output): - for atomic_code in code_node.atomic_code: - RunAtomicCode(env, atomic_code, output) - - -def IsComment(cur_line): - return '//' in cur_line - - -def IsInPreprocessorDirevative(prev_lines, cur_line): - if cur_line.lstrip().startswith('#'): - return True - return prev_lines != [] and prev_lines[-1].endswith('\\') - - -def WrapComment(line, output): - loc = line.find('//') - before_comment = line[:loc].rstrip() - if before_comment == '': - indent = loc - else: - output.append(before_comment) - indent = len(before_comment) - len(before_comment.lstrip()) - prefix = indent*' ' + '// ' - max_len = 80 - len(prefix) - comment = line[loc + 2:].strip() - segs = [seg for seg in re.split(r'(\w+\W*)', comment) if seg != ''] - cur_line = '' - for seg in segs: - if len((cur_line + seg).rstrip()) < max_len: - cur_line += seg - else: - if cur_line.strip() != '': - output.append(prefix + cur_line.rstrip()) - cur_line = seg.lstrip() - if cur_line.strip() != '': - output.append(prefix + cur_line.strip()) - - -def WrapCode(line, line_concat, output): - indent = len(line) - len(line.lstrip()) - prefix = indent*' ' # Prefix of the current line - max_len = 80 - indent - len(line_concat) # Maximum length of the current line - new_prefix = prefix + 4*' ' # Prefix of a continuation line - new_max_len = max_len - 4 # Maximum length of a continuation line - # Prefers to wrap a line after a ',' or ';'. - segs = [seg for seg in re.split(r'([^,;]+[,;]?)', line.strip()) if seg != ''] - cur_line = '' # The current line without leading spaces. - for seg in segs: - # If the line is still too long, wrap at a space. - while cur_line == '' and len(seg.strip()) > max_len: - seg = seg.lstrip() - split_at = seg.rfind(' ', 0, max_len) - output.append(prefix + seg[:split_at].strip() + line_concat) - seg = seg[split_at + 1:] - prefix = new_prefix - max_len = new_max_len - - if len((cur_line + seg).rstrip()) < max_len: - cur_line = (cur_line + seg).lstrip() - else: - output.append(prefix + cur_line.rstrip() + line_concat) - prefix = new_prefix - max_len = new_max_len - cur_line = seg.lstrip() - if cur_line.strip() != '': - output.append(prefix + cur_line.strip()) - - -def WrapPreprocessorDirevative(line, output): - WrapCode(line, ' \\', output) - - -def WrapPlainCode(line, output): - WrapCode(line, '', output) - - -def IsHeaderGuardOrInclude(line): - return (re.match(r'^#(ifndef|define|endif\s*//)\s*[\w_]+\s*$', line) or - re.match(r'^#include\s', line)) - - -def WrapLongLine(line, output): - line = line.rstrip() - if len(line) <= 80: - output.append(line) - elif IsComment(line): - if IsHeaderGuardOrInclude(line): - # The style guide made an exception to allow long header guard lines - # and includes. - output.append(line) - else: - WrapComment(line, output) - elif IsInPreprocessorDirevative(output, line): - if IsHeaderGuardOrInclude(line): - # The style guide made an exception to allow long header guard lines - # and includes. - output.append(line) - else: - WrapPreprocessorDirevative(line, output) - else: - WrapPlainCode(line, output) - - -def BeautifyCode(string): - lines = string.splitlines() - output = [] - for line in lines: - WrapLongLine(line, output) - output2 = [line.rstrip() for line in output] - return '\n'.join(output2) + '\n' - - -def main(argv): - if len(argv) == 1: - print __doc__ - sys.exit(1) - - file_path = argv[-1] - ast = Convert(file_path) - output = Output() - RunCode(Env(), ast, output) - output_str = BeautifyCode(output.string) - if file_path.endswith('.pump'): - output_file_path = file_path[:-5] - else: - output_file_path = '-' - if output_file_path == '-': - print output_str, - else: - output_file = file(output_file_path, 'w') - output_file.write('// This file was GENERATED by command:\n') - output_file.write('// %s %s\n' % - (os.path.basename(__file__), os.path.basename(file_path))) - output_file.write('// DO NOT EDIT BY HAND!!!\n\n') - output_file.write(output_str) - output_file.close() - - -if __name__ == '__main__': - main(sys.argv) diff --git a/cpp/thirdparty/gtest-1.5.0/scripts/test/Makefile b/cpp/thirdparty/gtest-1.5.0/scripts/test/Makefile deleted file mode 100644 index ffc0c90ad..000000000 --- a/cpp/thirdparty/gtest-1.5.0/scripts/test/Makefile +++ /dev/null @@ -1,57 +0,0 @@ -# A Makefile for fusing Google Test and building a sample test against it. -# -# SYNOPSIS: -# -# make [all] - makes everything. -# make TARGET - makes the given target. -# make check - makes everything and runs the built sample test. -# make clean - removes all files generated by make. - -# Points to the root of fused Google Test, relative to where this file is. -FUSED_GTEST_DIR = output - -# Paths to the fused gtest files. -FUSED_GTEST_H = $(FUSED_GTEST_DIR)/gtest/gtest.h -FUSED_GTEST_ALL_CC = $(FUSED_GTEST_DIR)/gtest/gtest-all.cc - -# Where to find the sample test. -SAMPLE_DIR = ../../samples - -# Where to find gtest_main.cc. -GTEST_MAIN_CC = ../../src/gtest_main.cc - -# Flags passed to the preprocessor. -CPPFLAGS += -I$(FUSED_GTEST_DIR) - -# Flags passed to the C++ compiler. -CXXFLAGS += -g - -all : sample1_unittest - -check : all - ./sample1_unittest - -clean : - rm -rf $(FUSED_GTEST_DIR) sample1_unittest *.o - -$(FUSED_GTEST_H) : - ../fuse_gtest_files.py $(FUSED_GTEST_DIR) - -$(FUSED_GTEST_ALL_CC) : - ../fuse_gtest_files.py $(FUSED_GTEST_DIR) - -gtest-all.o : $(FUSED_GTEST_H) $(FUSED_GTEST_ALL_CC) - $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(FUSED_GTEST_DIR)/gtest/gtest-all.cc - -gtest_main.o : $(FUSED_GTEST_H) $(GTEST_MAIN_CC) - $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(GTEST_MAIN_CC) - -sample1.o : $(SAMPLE_DIR)/sample1.cc $(SAMPLE_DIR)/sample1.h - $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(SAMPLE_DIR)/sample1.cc - -sample1_unittest.o : $(SAMPLE_DIR)/sample1_unittest.cc \ - $(SAMPLE_DIR)/sample1.h $(FUSED_GTEST_H) - $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(SAMPLE_DIR)/sample1_unittest.cc - -sample1_unittest : sample1.o sample1_unittest.o gtest-all.o gtest_main.o - $(CXX) $(CPPFLAGS) $(CXXFLAGS) $^ -o $@ diff --git a/cpp/thirdparty/gtest-1.5.0/src/.gitignore b/cpp/thirdparty/gtest-1.5.0/src/.gitignore deleted file mode 100644 index 213948b08..000000000 --- a/cpp/thirdparty/gtest-1.5.0/src/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/.deps -/.dirstamp -/*.o -/*.lo -/*.la -/.libs diff --git a/cpp/thirdparty/gtest-1.5.0/src/gtest-all.cc b/cpp/thirdparty/gtest-1.5.0/src/gtest-all.cc deleted file mode 100644 index fe34765fb..000000000 --- a/cpp/thirdparty/gtest-1.5.0/src/gtest-all.cc +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: mheule@google.com (Markus Heule) -// -// Google C++ Testing Framework (Google Test) -// -// Sometimes it's desirable to build Google Test by compiling a single file. -// This file serves this purpose. - -// This line ensures that gtest.h can be compiled on its own, even -// when it's fused. -#include - -// The following lines pull in the real gtest *.cc files. -#include "src/gtest.cc" -#include "src/gtest-death-test.cc" -#include "src/gtest-filepath.cc" -#include "src/gtest-port.cc" -#include "src/gtest-test-part.cc" -#include "src/gtest-typed-test.cc" diff --git a/cpp/thirdparty/gtest-1.5.0/src/gtest-death-test.cc b/cpp/thirdparty/gtest-1.5.0/src/gtest-death-test.cc deleted file mode 100644 index 3b73b01d2..000000000 --- a/cpp/thirdparty/gtest-1.5.0/src/gtest-death-test.cc +++ /dev/null @@ -1,1172 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan), vladl@google.com (Vlad Losev) -// -// This file implements death tests. - -#include -#include - -#if GTEST_HAS_DEATH_TEST - -#if GTEST_OS_MAC -#include -#endif // GTEST_OS_MAC - -#include -#include -#include -#include - -#if GTEST_OS_WINDOWS -#include -#else -#include -#include -#endif // GTEST_OS_WINDOWS - -#endif // GTEST_HAS_DEATH_TEST - -#include -#include - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -namespace testing { - -// Constants. - -// The default death test style. -static const char kDefaultDeathTestStyle[] = "fast"; - -GTEST_DEFINE_string_( - death_test_style, - internal::StringFromGTestEnv("death_test_style", kDefaultDeathTestStyle), - "Indicates how to run a death test in a forked child process: " - "\"threadsafe\" (child process re-executes the test binary " - "from the beginning, running only the specific death test) or " - "\"fast\" (child process runs the death test immediately " - "after forking)."); - -GTEST_DEFINE_bool_( - death_test_use_fork, - internal::BoolFromGTestEnv("death_test_use_fork", false), - "Instructs to use fork()/_exit() instead of clone() in death tests. " - "Ignored and always uses fork() on POSIX systems where clone() is not " - "implemented. Useful when running under valgrind or similar tools if " - "those do not support clone(). Valgrind 3.3.1 will just fail if " - "it sees an unsupported combination of clone() flags. " - "It is not recommended to use this flag w/o valgrind though it will " - "work in 99% of the cases. Once valgrind is fixed, this flag will " - "most likely be removed."); - -namespace internal { -GTEST_DEFINE_string_( - internal_run_death_test, "", - "Indicates the file, line number, temporal index of " - "the single death test to run, and a file descriptor to " - "which a success code may be sent, all separated by " - "colons. This flag is specified if and only if the current " - "process is a sub-process launched for running a thread-safe " - "death test. FOR INTERNAL USE ONLY."); -} // namespace internal - -#if GTEST_HAS_DEATH_TEST - -// ExitedWithCode constructor. -ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { -} - -// ExitedWithCode function-call operator. -bool ExitedWithCode::operator()(int exit_status) const { -#if GTEST_OS_WINDOWS - return exit_status == exit_code_; -#else - return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_; -#endif // GTEST_OS_WINDOWS -} - -#if !GTEST_OS_WINDOWS -// KilledBySignal constructor. -KilledBySignal::KilledBySignal(int signum) : signum_(signum) { -} - -// KilledBySignal function-call operator. -bool KilledBySignal::operator()(int exit_status) const { - return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; -} -#endif // !GTEST_OS_WINDOWS - -namespace internal { - -// Utilities needed for death tests. - -// Generates a textual description of a given exit code, in the format -// specified by wait(2). -static String ExitSummary(int exit_code) { - Message m; -#if GTEST_OS_WINDOWS - m << "Exited with exit status " << exit_code; -#else - if (WIFEXITED(exit_code)) { - m << "Exited with exit status " << WEXITSTATUS(exit_code); - } else if (WIFSIGNALED(exit_code)) { - m << "Terminated by signal " << WTERMSIG(exit_code); - } -#ifdef WCOREDUMP - if (WCOREDUMP(exit_code)) { - m << " (core dumped)"; - } -#endif -#endif // GTEST_OS_WINDOWS - return m.GetString(); -} - -// Returns true if exit_status describes a process that was terminated -// by a signal, or exited normally with a nonzero exit code. -bool ExitedUnsuccessfully(int exit_status) { - return !ExitedWithCode(0)(exit_status); -} - -#if !GTEST_OS_WINDOWS -// Generates a textual failure message when a death test finds more than -// one thread running, or cannot determine the number of threads, prior -// to executing the given statement. It is the responsibility of the -// caller not to pass a thread_count of 1. -static String DeathTestThreadWarning(size_t thread_count) { - Message msg; - msg << "Death tests use fork(), which is unsafe particularly" - << " in a threaded context. For this test, " << GTEST_NAME_ << " "; - if (thread_count == 0) - msg << "couldn't detect the number of threads."; - else - msg << "detected " << thread_count << " threads."; - return msg.GetString(); -} -#endif // !GTEST_OS_WINDOWS - -// Flag characters for reporting a death test that did not die. -static const char kDeathTestLived = 'L'; -static const char kDeathTestReturned = 'R'; -static const char kDeathTestInternalError = 'I'; - -// An enumeration describing all of the possible ways that a death test -// can conclude. DIED means that the process died while executing the -// test code; LIVED means that process lived beyond the end of the test -// code; and RETURNED means that the test statement attempted a "return," -// which is not allowed. IN_PROGRESS means the test has not yet -// concluded. -enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED }; - -// Routine for aborting the program which is safe to call from an -// exec-style death test child process, in which case the error -// message is propagated back to the parent process. Otherwise, the -// message is simply printed to stderr. In either case, the program -// then exits with status 1. -void DeathTestAbort(const String& message) { - // On a POSIX system, this function may be called from a threadsafe-style - // death test child process, which operates on a very small stack. Use - // the heap for any additional non-minuscule memory requirements. - const InternalRunDeathTestFlag* const flag = - GetUnitTestImpl()->internal_run_death_test_flag(); - if (flag != NULL) { - FILE* parent = posix::FDOpen(flag->write_fd(), "w"); - fputc(kDeathTestInternalError, parent); - fprintf(parent, "%s", message.c_str()); - fflush(parent); - _exit(1); - } else { - fprintf(stderr, "%s", message.c_str()); - fflush(stderr); - abort(); - } -} - -// A replacement for CHECK that calls DeathTestAbort if the assertion -// fails. -#define GTEST_DEATH_TEST_CHECK_(expression) \ - do { \ - if (!::testing::internal::IsTrue(expression)) { \ - DeathTestAbort(::testing::internal::String::Format( \ - "CHECK failed: File %s, line %d: %s", \ - __FILE__, __LINE__, #expression)); \ - } \ - } while (::testing::internal::AlwaysFalse()) - -// This macro is similar to GTEST_DEATH_TEST_CHECK_, but it is meant for -// evaluating any system call that fulfills two conditions: it must return -// -1 on failure, and set errno to EINTR when it is interrupted and -// should be tried again. The macro expands to a loop that repeatedly -// evaluates the expression as long as it evaluates to -1 and sets -// errno to EINTR. If the expression evaluates to -1 but errno is -// something other than EINTR, DeathTestAbort is called. -#define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \ - do { \ - int gtest_retval; \ - do { \ - gtest_retval = (expression); \ - } while (gtest_retval == -1 && errno == EINTR); \ - if (gtest_retval == -1) { \ - DeathTestAbort(::testing::internal::String::Format( \ - "CHECK failed: File %s, line %d: %s != -1", \ - __FILE__, __LINE__, #expression)); \ - } \ - } while (::testing::internal::AlwaysFalse()) - -// Returns the message describing the last system error in errno. -String GetLastErrnoDescription() { - return String(errno == 0 ? "" : posix::StrError(errno)); -} - -// This is called from a death test parent process to read a failure -// message from the death test child process and log it with the FATAL -// severity. On Windows, the message is read from a pipe handle. On other -// platforms, it is read from a file descriptor. -static void FailFromInternalError(int fd) { - Message error; - char buffer[256]; - int num_read; - - do { - while ((num_read = posix::Read(fd, buffer, 255)) > 0) { - buffer[num_read] = '\0'; - error << buffer; - } - } while (num_read == -1 && errno == EINTR); - - if (num_read == 0) { - GTEST_LOG_(FATAL) << error.GetString(); - } else { - const int last_error = errno; - GTEST_LOG_(FATAL) << "Error while reading death test internal: " - << GetLastErrnoDescription() << " [" << last_error << "]"; - } -} - -// Death test constructor. Increments the running death test count -// for the current test. -DeathTest::DeathTest() { - TestInfo* const info = GetUnitTestImpl()->current_test_info(); - if (info == NULL) { - DeathTestAbort("Cannot run a death test outside of a TEST or " - "TEST_F construct"); - } -} - -// Creates and returns a death test by dispatching to the current -// death test factory. -bool DeathTest::Create(const char* statement, const RE* regex, - const char* file, int line, DeathTest** test) { - return GetUnitTestImpl()->death_test_factory()->Create( - statement, regex, file, line, test); -} - -const char* DeathTest::LastMessage() { - return last_death_test_message_.c_str(); -} - -void DeathTest::set_last_death_test_message(const String& message) { - last_death_test_message_ = message; -} - -String DeathTest::last_death_test_message_; - -// Provides cross platform implementation for some death functionality. -class DeathTestImpl : public DeathTest { - protected: - DeathTestImpl(const char* a_statement, const RE* a_regex) - : statement_(a_statement), - regex_(a_regex), - spawned_(false), - status_(-1), - outcome_(IN_PROGRESS), - read_fd_(-1), - write_fd_(-1) {} - - // read_fd_ is expected to be closed and cleared by a derived class. - ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); } - - void Abort(AbortReason reason); - virtual bool Passed(bool status_ok); - - const char* statement() const { return statement_; } - const RE* regex() const { return regex_; } - bool spawned() const { return spawned_; } - void set_spawned(bool is_spawned) { spawned_ = is_spawned; } - int status() const { return status_; } - void set_status(int a_status) { status_ = a_status; } - DeathTestOutcome outcome() const { return outcome_; } - void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outcome; } - int read_fd() const { return read_fd_; } - void set_read_fd(int fd) { read_fd_ = fd; } - int write_fd() const { return write_fd_; } - void set_write_fd(int fd) { write_fd_ = fd; } - - // Called in the parent process only. Reads the result code of the death - // test child process via a pipe, interprets it to set the outcome_ - // member, and closes read_fd_. Outputs diagnostics and terminates in - // case of unexpected codes. - void ReadAndInterpretStatusByte(); - - private: - // The textual content of the code this object is testing. This class - // doesn't own this string and should not attempt to delete it. - const char* const statement_; - // The regular expression which test output must match. DeathTestImpl - // doesn't own this object and should not attempt to delete it. - const RE* const regex_; - // True if the death test child process has been successfully spawned. - bool spawned_; - // The exit status of the child process. - int status_; - // How the death test concluded. - DeathTestOutcome outcome_; - // Descriptor to the read end of the pipe to the child process. It is - // always -1 in the child process. The child keeps its write end of the - // pipe in write_fd_. - int read_fd_; - // Descriptor to the child's write end of the pipe to the parent process. - // It is always -1 in the parent process. The parent keeps its end of the - // pipe in read_fd_. - int write_fd_; -}; - -// Called in the parent process only. Reads the result code of the death -// test child process via a pipe, interprets it to set the outcome_ -// member, and closes read_fd_. Outputs diagnostics and terminates in -// case of unexpected codes. -void DeathTestImpl::ReadAndInterpretStatusByte() { - char flag; - int bytes_read; - - // The read() here blocks until data is available (signifying the - // failure of the death test) or until the pipe is closed (signifying - // its success), so it's okay to call this in the parent before - // the child process has exited. - do { - bytes_read = posix::Read(read_fd(), &flag, 1); - } while (bytes_read == -1 && errno == EINTR); - - if (bytes_read == 0) { - set_outcome(DIED); - } else if (bytes_read == 1) { - switch (flag) { - case kDeathTestReturned: - set_outcome(RETURNED); - break; - case kDeathTestLived: - set_outcome(LIVED); - break; - case kDeathTestInternalError: - FailFromInternalError(read_fd()); // Does not return. - break; - default: - GTEST_LOG_(FATAL) << "Death test child process reported " - << "unexpected status byte (" - << static_cast(flag) << ")"; - } - } else { - GTEST_LOG_(FATAL) << "Read from death test child process failed: " - << GetLastErrnoDescription(); - } - GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd())); - set_read_fd(-1); -} - -// Signals that the death test code which should have exited, didn't. -// Should be called only in a death test child process. -// Writes a status byte to the child's status file descriptor, then -// calls _exit(1). -void DeathTestImpl::Abort(AbortReason reason) { - // The parent process considers the death test to be a failure if - // it finds any data in our pipe. So, here we write a single flag byte - // to the pipe, then exit. - const char status_ch = - reason == TEST_DID_NOT_DIE ? kDeathTestLived : kDeathTestReturned; - GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1)); - GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(write_fd())); - _exit(1); // Exits w/o any normal exit hooks (we were supposed to crash) -} - -// Assesses the success or failure of a death test, using both private -// members which have previously been set, and one argument: -// -// Private data members: -// outcome: An enumeration describing how the death test -// concluded: DIED, LIVED, or RETURNED. The death test fails -// in the latter two cases. -// status: The exit status of the child process. On *nix, it is in the -// in the format specified by wait(2). On Windows, this is the -// value supplied to the ExitProcess() API or a numeric code -// of the exception that terminated the program. -// regex: A regular expression object to be applied to -// the test's captured standard error output; the death test -// fails if it does not match. -// -// Argument: -// status_ok: true if exit_status is acceptable in the context of -// this particular death test, which fails if it is false -// -// Returns true iff all of the above conditions are met. Otherwise, the -// first failing condition, in the order given above, is the one that is -// reported. Also sets the last death test message string. -bool DeathTestImpl::Passed(bool status_ok) { - if (!spawned()) - return false; - - const String error_message = GetCapturedStderr(); - - bool success = false; - Message buffer; - - buffer << "Death test: " << statement() << "\n"; - switch (outcome()) { - case LIVED: - buffer << " Result: failed to die.\n" - << " Error msg: " << error_message; - break; - case RETURNED: - buffer << " Result: illegal return in test statement.\n" - << " Error msg: " << error_message; - break; - case DIED: - if (status_ok) { - const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); - if (matched) { - success = true; - } else { - buffer << " Result: died but not with expected error.\n" - << " Expected: " << regex()->pattern() << "\n" - << "Actual msg: " << error_message; - } - } else { - buffer << " Result: died but not with expected exit code:\n" - << " " << ExitSummary(status()) << "\n"; - } - break; - case IN_PROGRESS: - default: - GTEST_LOG_(FATAL) - << "DeathTest::Passed somehow called before conclusion of test"; - } - - DeathTest::set_last_death_test_message(buffer.GetString()); - return success; -} - -#if GTEST_OS_WINDOWS -// WindowsDeathTest implements death tests on Windows. Due to the -// specifics of starting new processes on Windows, death tests there are -// always threadsafe, and Google Test considers the -// --gtest_death_test_style=fast setting to be equivalent to -// --gtest_death_test_style=threadsafe there. -// -// A few implementation notes: Like the Linux version, the Windows -// implementation uses pipes for child-to-parent communication. But due to -// the specifics of pipes on Windows, some extra steps are required: -// -// 1. The parent creates a communication pipe and stores handles to both -// ends of it. -// 2. The parent starts the child and provides it with the information -// necessary to acquire the handle to the write end of the pipe. -// 3. The child acquires the write end of the pipe and signals the parent -// using a Windows event. -// 4. Now the parent can release the write end of the pipe on its side. If -// this is done before step 3, the object's reference count goes down to -// 0 and it is destroyed, preventing the child from acquiring it. The -// parent now has to release it, or read operations on the read end of -// the pipe will not return when the child terminates. -// 5. The parent reads child's output through the pipe (outcome code and -// any possible error messages) from the pipe, and its stderr and then -// determines whether to fail the test. -// -// Note: to distinguish Win32 API calls from the local method and function -// calls, the former are explicitly resolved in the global namespace. -// -class WindowsDeathTest : public DeathTestImpl { - public: - WindowsDeathTest(const char* statement, - const RE* regex, - const char* file, - int line) - : DeathTestImpl(statement, regex), file_(file), line_(line) {} - - // All of these virtual functions are inherited from DeathTest. - virtual int Wait(); - virtual TestRole AssumeRole(); - - private: - // The name of the file in which the death test is located. - const char* const file_; - // The line number on which the death test is located. - const int line_; - // Handle to the write end of the pipe to the child process. - AutoHandle write_handle_; - // Child process handle. - AutoHandle child_handle_; - // Event the child process uses to signal the parent that it has - // acquired the handle to the write end of the pipe. After seeing this - // event the parent can release its own handles to make sure its - // ReadFile() calls return when the child terminates. - AutoHandle event_handle_; -}; - -// Waits for the child in a death test to exit, returning its exit -// status, or 0 if no child process exists. As a side effect, sets the -// outcome data member. -int WindowsDeathTest::Wait() { - if (!spawned()) - return 0; - - // Wait until the child either signals that it has acquired the write end - // of the pipe or it dies. - const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() }; - switch (::WaitForMultipleObjects(2, - wait_handles, - FALSE, // Waits for any of the handles. - INFINITE)) { - case WAIT_OBJECT_0: - case WAIT_OBJECT_0 + 1: - break; - default: - GTEST_DEATH_TEST_CHECK_(false); // Should not get here. - } - - // The child has acquired the write end of the pipe or exited. - // We release the handle on our side and continue. - write_handle_.Reset(); - event_handle_.Reset(); - - ReadAndInterpretStatusByte(); - - // Waits for the child process to exit if it haven't already. This - // returns immediately if the child has already exited, regardless of - // whether previous calls to WaitForMultipleObjects synchronized on this - // handle or not. - GTEST_DEATH_TEST_CHECK_( - WAIT_OBJECT_0 == ::WaitForSingleObject(child_handle_.Get(), - INFINITE)); - DWORD status; - GTEST_DEATH_TEST_CHECK_(::GetExitCodeProcess(child_handle_.Get(), &status) - != FALSE); - child_handle_.Reset(); - set_status(static_cast(status)); - return this->status(); -} - -// The AssumeRole process for a Windows death test. It creates a child -// process with the same executable as the current process to run the -// death test. The child process is given the --gtest_filter and -// --gtest_internal_run_death_test flags such that it knows to run the -// current death test only. -DeathTest::TestRole WindowsDeathTest::AssumeRole() { - const UnitTestImpl* const impl = GetUnitTestImpl(); - const InternalRunDeathTestFlag* const flag = - impl->internal_run_death_test_flag(); - const TestInfo* const info = impl->current_test_info(); - const int death_test_index = info->result()->death_test_count(); - - if (flag != NULL) { - // ParseInternalRunDeathTestFlag() has performed all the necessary - // processing. - set_write_fd(flag->write_fd()); - return EXECUTE_TEST; - } - - // WindowsDeathTest uses an anonymous pipe to communicate results of - // a death test. - SECURITY_ATTRIBUTES handles_are_inheritable = { - sizeof(SECURITY_ATTRIBUTES), NULL, TRUE }; - HANDLE read_handle, write_handle; - GTEST_DEATH_TEST_CHECK_( - ::CreatePipe(&read_handle, &write_handle, &handles_are_inheritable, - 0) // Default buffer size. - != FALSE); - set_read_fd(::_open_osfhandle(reinterpret_cast(read_handle), - O_RDONLY)); - write_handle_.Reset(write_handle); - event_handle_.Reset(::CreateEvent( - &handles_are_inheritable, - TRUE, // The event will automatically reset to non-signaled state. - FALSE, // The initial state is non-signalled. - NULL)); // The even is unnamed. - GTEST_DEATH_TEST_CHECK_(event_handle_.Get() != NULL); - const String filter_flag = String::Format("--%s%s=%s.%s", - GTEST_FLAG_PREFIX_, kFilterFlag, - info->test_case_name(), - info->name()); - const String internal_flag = String::Format( - "--%s%s=%s|%d|%d|%u|%Iu|%Iu", - GTEST_FLAG_PREFIX_, - kInternalRunDeathTestFlag, - file_, line_, - death_test_index, - static_cast(::GetCurrentProcessId()), - // size_t has the same with as pointers on both 32-bit and 64-bit - // Windows platforms. - // See http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx. - reinterpret_cast(write_handle), - reinterpret_cast(event_handle_.Get())); - - char executable_path[_MAX_PATH + 1]; // NOLINT - GTEST_DEATH_TEST_CHECK_( - _MAX_PATH + 1 != ::GetModuleFileNameA(NULL, - executable_path, - _MAX_PATH)); - - String command_line = String::Format("%s %s \"%s\"", - ::GetCommandLineA(), - filter_flag.c_str(), - internal_flag.c_str()); - - DeathTest::set_last_death_test_message(""); - - CaptureStderr(); - // Flush the log buffers since the log streams are shared with the child. - FlushInfoLog(); - - // The child process will share the standard handles with the parent. - STARTUPINFOA startup_info; - memset(&startup_info, 0, sizeof(STARTUPINFO)); - startup_info.dwFlags = STARTF_USESTDHANDLES; - startup_info.hStdInput = ::GetStdHandle(STD_INPUT_HANDLE); - startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); - startup_info.hStdError = ::GetStdHandle(STD_ERROR_HANDLE); - - PROCESS_INFORMATION process_info; - GTEST_DEATH_TEST_CHECK_(::CreateProcessA( - executable_path, - const_cast(command_line.c_str()), - NULL, // Retuned process handle is not inheritable. - NULL, // Retuned thread handle is not inheritable. - TRUE, // Child inherits all inheritable handles (for write_handle_). - 0x0, // Default creation flags. - NULL, // Inherit the parent's environment. - UnitTest::GetInstance()->original_working_dir(), - &startup_info, - &process_info) != FALSE); - child_handle_.Reset(process_info.hProcess); - ::CloseHandle(process_info.hThread); - set_spawned(true); - return OVERSEE_TEST; -} -#else // We are not on Windows. - -// ForkingDeathTest provides implementations for most of the abstract -// methods of the DeathTest interface. Only the AssumeRole method is -// left undefined. -class ForkingDeathTest : public DeathTestImpl { - public: - ForkingDeathTest(const char* statement, const RE* regex); - - // All of these virtual functions are inherited from DeathTest. - virtual int Wait(); - - protected: - void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } - - private: - // PID of child process during death test; 0 in the child process itself. - pid_t child_pid_; -}; - -// Constructs a ForkingDeathTest. -ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex) - : DeathTestImpl(a_statement, a_regex), - child_pid_(-1) {} - -// Waits for the child in a death test to exit, returning its exit -// status, or 0 if no child process exists. As a side effect, sets the -// outcome data member. -int ForkingDeathTest::Wait() { - if (!spawned()) - return 0; - - ReadAndInterpretStatusByte(); - - int status_value; - GTEST_DEATH_TEST_CHECK_SYSCALL_(waitpid(child_pid_, &status_value, 0)); - set_status(status_value); - return status_value; -} - -// A concrete death test class that forks, then immediately runs the test -// in the child process. -class NoExecDeathTest : public ForkingDeathTest { - public: - NoExecDeathTest(const char* a_statement, const RE* a_regex) : - ForkingDeathTest(a_statement, a_regex) { } - virtual TestRole AssumeRole(); -}; - -// The AssumeRole process for a fork-and-run death test. It implements a -// straightforward fork, with a simple pipe to transmit the status byte. -DeathTest::TestRole NoExecDeathTest::AssumeRole() { - const size_t thread_count = GetThreadCount(); - if (thread_count != 1) { - GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count); - } - - int pipe_fd[2]; - GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); - - DeathTest::set_last_death_test_message(""); - CaptureStderr(); - // When we fork the process below, the log file buffers are copied, but the - // file descriptors are shared. We flush all log files here so that closing - // the file descriptors in the child process doesn't throw off the - // synchronization between descriptors and buffers in the parent process. - // This is as close to the fork as possible to avoid a race condition in case - // there are multiple threads running before the death test, and another - // thread writes to the log file. - FlushInfoLog(); - - const pid_t child_pid = fork(); - GTEST_DEATH_TEST_CHECK_(child_pid != -1); - set_child_pid(child_pid); - if (child_pid == 0) { - GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0])); - set_write_fd(pipe_fd[1]); - // Redirects all logging to stderr in the child process to prevent - // concurrent writes to the log files. We capture stderr in the parent - // process and append the child process' output to a log. - LogToStderr(); - // Event forwarding to the listeners of event listener API mush be shut - // down in death test subprocesses. - GetUnitTestImpl()->listeners()->SuppressEventForwarding(); - return EXECUTE_TEST; - } else { - GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); - set_read_fd(pipe_fd[0]); - set_spawned(true); - return OVERSEE_TEST; - } -} - -// A concrete death test class that forks and re-executes the main -// program from the beginning, with command-line flags set that cause -// only this specific death test to be run. -class ExecDeathTest : public ForkingDeathTest { - public: - ExecDeathTest(const char* a_statement, const RE* a_regex, - const char* file, int line) : - ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { } - virtual TestRole AssumeRole(); - private: - // The name of the file in which the death test is located. - const char* const file_; - // The line number on which the death test is located. - const int line_; -}; - -// Utility class for accumulating command-line arguments. -class Arguments { - public: - Arguments() { - args_.push_back(NULL); - } - - ~Arguments() { - for (std::vector::iterator i = args_.begin(); i != args_.end(); - ++i) { - free(*i); - } - } - void AddArgument(const char* argument) { - args_.insert(args_.end() - 1, posix::StrDup(argument)); - } - - template - void AddArguments(const ::std::vector& arguments) { - for (typename ::std::vector::const_iterator i = arguments.begin(); - i != arguments.end(); - ++i) { - args_.insert(args_.end() - 1, posix::StrDup(i->c_str())); - } - } - char* const* Argv() { - return &args_[0]; - } - private: - std::vector args_; -}; - -// A struct that encompasses the arguments to the child process of a -// threadsafe-style death test process. -struct ExecDeathTestArgs { - char* const* argv; // Command-line arguments for the child's call to exec - int close_fd; // File descriptor to close; the read end of a pipe -}; - -#if GTEST_OS_MAC -inline char** GetEnviron() { - // When Google Test is built as a framework on MacOS X, the environ variable - // is unavailable. Apple's documentation (man environ) recommends using - // _NSGetEnviron() instead. - return *_NSGetEnviron(); -} -#else -// Some POSIX platforms expect you to declare environ. extern "C" makes -// it reside in the global namespace. -extern "C" char** environ; -inline char** GetEnviron() { return environ; } -#endif // GTEST_OS_MAC - -// The main function for a threadsafe-style death test child process. -// This function is called in a clone()-ed process and thus must avoid -// any potentially unsafe operations like malloc or libc functions. -static int ExecDeathTestChildMain(void* child_arg) { - ExecDeathTestArgs* const args = static_cast(child_arg); - GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd)); - - // We need to execute the test program in the same environment where - // it was originally invoked. Therefore we change to the original - // working directory first. - const char* const original_dir = - UnitTest::GetInstance()->original_working_dir(); - // We can safely call chdir() as it's a direct system call. - if (chdir(original_dir) != 0) { - DeathTestAbort(String::Format("chdir(\"%s\") failed: %s", - original_dir, - GetLastErrnoDescription().c_str())); - return EXIT_FAILURE; - } - - // We can safely call execve() as it's a direct system call. We - // cannot use execvp() as it's a libc function and thus potentially - // unsafe. Since execve() doesn't search the PATH, the user must - // invoke the test program via a valid path that contains at least - // one path separator. - execve(args->argv[0], args->argv, GetEnviron()); - DeathTestAbort(String::Format("execve(%s, ...) in %s failed: %s", - args->argv[0], - original_dir, - GetLastErrnoDescription().c_str())); - return EXIT_FAILURE; -} - -// Two utility routines that together determine the direction the stack -// grows. -// This could be accomplished more elegantly by a single recursive -// function, but we want to guard against the unlikely possibility of -// a smart compiler optimizing the recursion away. -bool StackLowerThanAddress(const void* ptr) { - int dummy; - return &dummy < ptr; -} - -bool StackGrowsDown() { - int dummy; - return StackLowerThanAddress(&dummy); -} - -// A threadsafe implementation of fork(2) for threadsafe-style death tests -// that uses clone(2). It dies with an error message if anything goes -// wrong. -static pid_t ExecDeathTestFork(char* const* argv, int close_fd) { - ExecDeathTestArgs args = { argv, close_fd }; - pid_t child_pid = -1; - -#if GTEST_HAS_CLONE - const bool use_fork = GTEST_FLAG(death_test_use_fork); - - if (!use_fork) { - static const bool stack_grows_down = StackGrowsDown(); - const size_t stack_size = getpagesize(); - // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead. - void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, - MAP_ANON | MAP_PRIVATE, -1, 0); - GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED); - void* const stack_top = - static_cast(stack) + (stack_grows_down ? stack_size : 0); - - child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args); - - GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1); - } -#else - const bool use_fork = true; -#endif // GTEST_HAS_CLONE - - if (use_fork && (child_pid = fork()) == 0) { - ExecDeathTestChildMain(&args); - _exit(0); - } - - GTEST_DEATH_TEST_CHECK_(child_pid != -1); - return child_pid; -} - -// The AssumeRole process for a fork-and-exec death test. It re-executes the -// main program from the beginning, setting the --gtest_filter -// and --gtest_internal_run_death_test flags to cause only the current -// death test to be re-run. -DeathTest::TestRole ExecDeathTest::AssumeRole() { - const UnitTestImpl* const impl = GetUnitTestImpl(); - const InternalRunDeathTestFlag* const flag = - impl->internal_run_death_test_flag(); - const TestInfo* const info = impl->current_test_info(); - const int death_test_index = info->result()->death_test_count(); - - if (flag != NULL) { - set_write_fd(flag->write_fd()); - return EXECUTE_TEST; - } - - int pipe_fd[2]; - GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); - // Clear the close-on-exec flag on the write end of the pipe, lest - // it be closed when the child process does an exec: - GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1); - - const String filter_flag = - String::Format("--%s%s=%s.%s", - GTEST_FLAG_PREFIX_, kFilterFlag, - info->test_case_name(), info->name()); - const String internal_flag = - String::Format("--%s%s=%s|%d|%d|%d", - GTEST_FLAG_PREFIX_, kInternalRunDeathTestFlag, - file_, line_, death_test_index, pipe_fd[1]); - Arguments args; - args.AddArguments(GetArgvs()); - args.AddArgument(filter_flag.c_str()); - args.AddArgument(internal_flag.c_str()); - - DeathTest::set_last_death_test_message(""); - - CaptureStderr(); - // See the comment in NoExecDeathTest::AssumeRole for why the next line - // is necessary. - FlushInfoLog(); - - const pid_t child_pid = ExecDeathTestFork(args.Argv(), pipe_fd[0]); - GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); - set_child_pid(child_pid); - set_read_fd(pipe_fd[0]); - set_spawned(true); - return OVERSEE_TEST; -} - -#endif // !GTEST_OS_WINDOWS - -// Creates a concrete DeathTest-derived class that depends on the -// --gtest_death_test_style flag, and sets the pointer pointed to -// by the "test" argument to its address. If the test should be -// skipped, sets that pointer to NULL. Returns true, unless the -// flag is set to an invalid value. -bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, - const char* file, int line, - DeathTest** test) { - UnitTestImpl* const impl = GetUnitTestImpl(); - const InternalRunDeathTestFlag* const flag = - impl->internal_run_death_test_flag(); - const int death_test_index = impl->current_test_info() - ->increment_death_test_count(); - - if (flag != NULL) { - if (death_test_index > flag->index()) { - DeathTest::set_last_death_test_message(String::Format( - "Death test count (%d) somehow exceeded expected maximum (%d)", - death_test_index, flag->index())); - return false; - } - - if (!(flag->file() == file && flag->line() == line && - flag->index() == death_test_index)) { - *test = NULL; - return true; - } - } - -#if GTEST_OS_WINDOWS - if (GTEST_FLAG(death_test_style) == "threadsafe" || - GTEST_FLAG(death_test_style) == "fast") { - *test = new WindowsDeathTest(statement, regex, file, line); - } -#else - if (GTEST_FLAG(death_test_style) == "threadsafe") { - *test = new ExecDeathTest(statement, regex, file, line); - } else if (GTEST_FLAG(death_test_style) == "fast") { - *test = new NoExecDeathTest(statement, regex); - } -#endif // GTEST_OS_WINDOWS - else { // NOLINT - this is more readable than unbalanced brackets inside #if. - DeathTest::set_last_death_test_message(String::Format( - "Unknown death test style \"%s\" encountered", - GTEST_FLAG(death_test_style).c_str())); - return false; - } - - return true; -} - -// Splits a given string on a given delimiter, populating a given -// vector with the fields. GTEST_HAS_DEATH_TEST implies that we have -// ::std::string, so we can use it here. -static void SplitString(const ::std::string& str, char delimiter, - ::std::vector< ::std::string>* dest) { - ::std::vector< ::std::string> parsed; - ::std::string::size_type pos = 0; - while (::testing::internal::AlwaysTrue()) { - const ::std::string::size_type colon = str.find(delimiter, pos); - if (colon == ::std::string::npos) { - parsed.push_back(str.substr(pos)); - break; - } else { - parsed.push_back(str.substr(pos, colon - pos)); - pos = colon + 1; - } - } - dest->swap(parsed); -} - -#if GTEST_OS_WINDOWS -// Recreates the pipe and event handles from the provided parameters, -// signals the event, and returns a file descriptor wrapped around the pipe -// handle. This function is called in the child process only. -int GetStatusFileDescriptor(unsigned int parent_process_id, - size_t write_handle_as_size_t, - size_t event_handle_as_size_t) { - AutoHandle parent_process_handle(::OpenProcess(PROCESS_DUP_HANDLE, - FALSE, // Non-inheritable. - parent_process_id)); - if (parent_process_handle.Get() == INVALID_HANDLE_VALUE) { - DeathTestAbort(String::Format("Unable to open parent process %u", - parent_process_id)); - } - - // TODO(vladl@google.com): Replace the following check with a - // compile-time assertion when available. - GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t)); - - const HANDLE write_handle = - reinterpret_cast(write_handle_as_size_t); - HANDLE dup_write_handle; - - // The newly initialized handle is accessible only in in the parent - // process. To obtain one accessible within the child, we need to use - // DuplicateHandle. - if (!::DuplicateHandle(parent_process_handle.Get(), write_handle, - ::GetCurrentProcess(), &dup_write_handle, - 0x0, // Requested privileges ignored since - // DUPLICATE_SAME_ACCESS is used. - FALSE, // Request non-inheritable handler. - DUPLICATE_SAME_ACCESS)) { - DeathTestAbort(String::Format( - "Unable to duplicate the pipe handle %Iu from the parent process %u", - write_handle_as_size_t, parent_process_id)); - } - - const HANDLE event_handle = reinterpret_cast(event_handle_as_size_t); - HANDLE dup_event_handle; - - if (!::DuplicateHandle(parent_process_handle.Get(), event_handle, - ::GetCurrentProcess(), &dup_event_handle, - 0x0, - FALSE, - DUPLICATE_SAME_ACCESS)) { - DeathTestAbort(String::Format( - "Unable to duplicate the event handle %Iu from the parent process %u", - event_handle_as_size_t, parent_process_id)); - } - - const int write_fd = - ::_open_osfhandle(reinterpret_cast(dup_write_handle), O_APPEND); - if (write_fd == -1) { - DeathTestAbort(String::Format( - "Unable to convert pipe handle %Iu to a file descriptor", - write_handle_as_size_t)); - } - - // Signals the parent that the write end of the pipe has been acquired - // so the parent can release its own write end. - ::SetEvent(dup_event_handle); - - return write_fd; -} -#endif // GTEST_OS_WINDOWS - -// Returns a newly created InternalRunDeathTestFlag object with fields -// initialized from the GTEST_FLAG(internal_run_death_test) flag if -// the flag is specified; otherwise returns NULL. -InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { - if (GTEST_FLAG(internal_run_death_test) == "") return NULL; - - // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we - // can use it here. - int line = -1; - int index = -1; - ::std::vector< ::std::string> fields; - SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields); - int write_fd = -1; - -#if GTEST_OS_WINDOWS - unsigned int parent_process_id = 0; - size_t write_handle_as_size_t = 0; - size_t event_handle_as_size_t = 0; - - if (fields.size() != 6 - || !ParseNaturalNumber(fields[1], &line) - || !ParseNaturalNumber(fields[2], &index) - || !ParseNaturalNumber(fields[3], &parent_process_id) - || !ParseNaturalNumber(fields[4], &write_handle_as_size_t) - || !ParseNaturalNumber(fields[5], &event_handle_as_size_t)) { - DeathTestAbort(String::Format( - "Bad --gtest_internal_run_death_test flag: %s", - GTEST_FLAG(internal_run_death_test).c_str())); - } - write_fd = GetStatusFileDescriptor(parent_process_id, - write_handle_as_size_t, - event_handle_as_size_t); -#else - if (fields.size() != 4 - || !ParseNaturalNumber(fields[1], &line) - || !ParseNaturalNumber(fields[2], &index) - || !ParseNaturalNumber(fields[3], &write_fd)) { - DeathTestAbort(String::Format( - "Bad --gtest_internal_run_death_test flag: %s", - GTEST_FLAG(internal_run_death_test).c_str())); - } -#endif // GTEST_OS_WINDOWS - return new InternalRunDeathTestFlag(fields[0], line, index, write_fd); -} - -} // namespace internal - -#endif // GTEST_HAS_DEATH_TEST - -} // namespace testing diff --git a/cpp/thirdparty/gtest-1.5.0/src/gtest-filepath.cc b/cpp/thirdparty/gtest-1.5.0/src/gtest-filepath.cc deleted file mode 100644 index c1ef9188a..000000000 --- a/cpp/thirdparty/gtest-1.5.0/src/gtest-filepath.cc +++ /dev/null @@ -1,380 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: keith.ray@gmail.com (Keith Ray) - -#include -#include - -#include - -#if GTEST_OS_WINDOWS_MOBILE -#include -#elif GTEST_OS_WINDOWS -#include -#include -#elif GTEST_OS_SYMBIAN -// Symbian OpenC has PATH_MAX in sys/syslimits.h -#include -#else -#include -#include // Some Linux distributions define PATH_MAX here. -#endif // GTEST_OS_WINDOWS_MOBILE - -#if GTEST_OS_WINDOWS -#define GTEST_PATH_MAX_ _MAX_PATH -#elif defined(PATH_MAX) -#define GTEST_PATH_MAX_ PATH_MAX -#elif defined(_XOPEN_PATH_MAX) -#define GTEST_PATH_MAX_ _XOPEN_PATH_MAX -#else -#define GTEST_PATH_MAX_ _POSIX_PATH_MAX -#endif // GTEST_OS_WINDOWS - -#include - -namespace testing { -namespace internal { - -#if GTEST_OS_WINDOWS -// On Windows, '\\' is the standard path separator, but many tools and the -// Windows API also accept '/' as an alternate path separator. Unless otherwise -// noted, a file path can contain either kind of path separators, or a mixture -// of them. -const char kPathSeparator = '\\'; -const char kAlternatePathSeparator = '/'; -const char kPathSeparatorString[] = "\\"; -const char kAlternatePathSeparatorString[] = "/"; -#if GTEST_OS_WINDOWS_MOBILE -// Windows CE doesn't have a current directory. You should not use -// the current directory in tests on Windows CE, but this at least -// provides a reasonable fallback. -const char kCurrentDirectoryString[] = "\\"; -// Windows CE doesn't define INVALID_FILE_ATTRIBUTES -const DWORD kInvalidFileAttributes = 0xffffffff; -#else -const char kCurrentDirectoryString[] = ".\\"; -#endif // GTEST_OS_WINDOWS_MOBILE -#else -const char kPathSeparator = '/'; -const char kPathSeparatorString[] = "/"; -const char kCurrentDirectoryString[] = "./"; -#endif // GTEST_OS_WINDOWS - -// Returns whether the given character is a valid path separator. -static bool IsPathSeparator(char c) { -#if GTEST_HAS_ALT_PATH_SEP_ - return (c == kPathSeparator) || (c == kAlternatePathSeparator); -#else - return c == kPathSeparator; -#endif -} - -// Returns the current working directory, or "" if unsuccessful. -FilePath FilePath::GetCurrentDir() { -#if GTEST_OS_WINDOWS_MOBILE - // Windows CE doesn't have a current directory, so we just return - // something reasonable. - return FilePath(kCurrentDirectoryString); -#elif GTEST_OS_WINDOWS - char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; - return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); -#else - char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; - return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); -#endif // GTEST_OS_WINDOWS_MOBILE -} - -// Returns a copy of the FilePath with the case-insensitive extension removed. -// Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns -// FilePath("dir/file"). If a case-insensitive extension is not -// found, returns a copy of the original FilePath. -FilePath FilePath::RemoveExtension(const char* extension) const { - String dot_extension(String::Format(".%s", extension)); - if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) { - return FilePath(String(pathname_.c_str(), pathname_.length() - 4)); - } - return *this; -} - -// Returns a pointer to the last occurence of a valid path separator in -// the FilePath. On Windows, for example, both '/' and '\' are valid path -// separators. Returns NULL if no path separator was found. -const char* FilePath::FindLastPathSeparator() const { - const char* const last_sep = strrchr(c_str(), kPathSeparator); -#if GTEST_HAS_ALT_PATH_SEP_ - const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator); - // Comparing two pointers of which only one is NULL is undefined. - if (last_alt_sep != NULL && - (last_sep == NULL || last_alt_sep > last_sep)) { - return last_alt_sep; - } -#endif - return last_sep; -} - -// Returns a copy of the FilePath with the directory part removed. -// Example: FilePath("path/to/file").RemoveDirectoryName() returns -// FilePath("file"). If there is no directory part ("just_a_file"), it returns -// the FilePath unmodified. If there is no file part ("just_a_dir/") it -// returns an empty FilePath (""). -// On Windows platform, '\' is the path separator, otherwise it is '/'. -FilePath FilePath::RemoveDirectoryName() const { - const char* const last_sep = FindLastPathSeparator(); - return last_sep ? FilePath(String(last_sep + 1)) : *this; -} - -// RemoveFileName returns the directory path with the filename removed. -// Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". -// If the FilePath is "a_file" or "/a_file", RemoveFileName returns -// FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does -// not have a file, like "just/a/dir/", it returns the FilePath unmodified. -// On Windows platform, '\' is the path separator, otherwise it is '/'. -FilePath FilePath::RemoveFileName() const { - const char* const last_sep = FindLastPathSeparator(); - String dir; - if (last_sep) { - dir = String(c_str(), last_sep + 1 - c_str()); - } else { - dir = kCurrentDirectoryString; - } - return FilePath(dir); -} - -// Helper functions for naming files in a directory for xml output. - -// Given directory = "dir", base_name = "test", number = 0, -// extension = "xml", returns "dir/test.xml". If number is greater -// than zero (e.g., 12), returns "dir/test_12.xml". -// On Windows platform, uses \ as the separator rather than /. -FilePath FilePath::MakeFileName(const FilePath& directory, - const FilePath& base_name, - int number, - const char* extension) { - String file; - if (number == 0) { - file = String::Format("%s.%s", base_name.c_str(), extension); - } else { - file = String::Format("%s_%d.%s", base_name.c_str(), number, extension); - } - return ConcatPaths(directory, FilePath(file)); -} - -// Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". -// On Windows, uses \ as the separator rather than /. -FilePath FilePath::ConcatPaths(const FilePath& directory, - const FilePath& relative_path) { - if (directory.IsEmpty()) - return relative_path; - const FilePath dir(directory.RemoveTrailingPathSeparator()); - return FilePath(String::Format("%s%c%s", dir.c_str(), kPathSeparator, - relative_path.c_str())); -} - -// Returns true if pathname describes something findable in the file-system, -// either a file, directory, or whatever. -bool FilePath::FileOrDirectoryExists() const { -#if GTEST_OS_WINDOWS_MOBILE - LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); - const DWORD attributes = GetFileAttributes(unicode); - delete [] unicode; - return attributes != kInvalidFileAttributes; -#else - posix::StatStruct file_stat; - return posix::Stat(pathname_.c_str(), &file_stat) == 0; -#endif // GTEST_OS_WINDOWS_MOBILE -} - -// Returns true if pathname describes a directory in the file-system -// that exists. -bool FilePath::DirectoryExists() const { - bool result = false; -#if GTEST_OS_WINDOWS - // Don't strip off trailing separator if path is a root directory on - // Windows (like "C:\\"). - const FilePath& path(IsRootDirectory() ? *this : - RemoveTrailingPathSeparator()); -#else - const FilePath& path(*this); -#endif - -#if GTEST_OS_WINDOWS_MOBILE - LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); - const DWORD attributes = GetFileAttributes(unicode); - delete [] unicode; - if ((attributes != kInvalidFileAttributes) && - (attributes & FILE_ATTRIBUTE_DIRECTORY)) { - result = true; - } -#else - posix::StatStruct file_stat; - result = posix::Stat(path.c_str(), &file_stat) == 0 && - posix::IsDir(file_stat); -#endif // GTEST_OS_WINDOWS_MOBILE - - return result; -} - -// Returns true if pathname describes a root directory. (Windows has one -// root directory per disk drive.) -bool FilePath::IsRootDirectory() const { -#if GTEST_OS_WINDOWS - // TODO(wan@google.com): on Windows a network share like - // \\server\share can be a root directory, although it cannot be the - // current directory. Handle this properly. - return pathname_.length() == 3 && IsAbsolutePath(); -#else - return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]); -#endif -} - -// Returns true if pathname describes an absolute path. -bool FilePath::IsAbsolutePath() const { - const char* const name = pathname_.c_str(); -#if GTEST_OS_WINDOWS - return pathname_.length() >= 3 && - ((name[0] >= 'a' && name[0] <= 'z') || - (name[0] >= 'A' && name[0] <= 'Z')) && - name[1] == ':' && - IsPathSeparator(name[2]); -#else - return IsPathSeparator(name[0]); -#endif -} - -// Returns a pathname for a file that does not currently exist. The pathname -// will be directory/base_name.extension or -// directory/base_name_.extension if directory/base_name.extension -// already exists. The number will be incremented until a pathname is found -// that does not already exist. -// Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. -// There could be a race condition if two or more processes are calling this -// function at the same time -- they could both pick the same filename. -FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, - const FilePath& base_name, - const char* extension) { - FilePath full_pathname; - int number = 0; - do { - full_pathname.Set(MakeFileName(directory, base_name, number++, extension)); - } while (full_pathname.FileOrDirectoryExists()); - return full_pathname; -} - -// Returns true if FilePath ends with a path separator, which indicates that -// it is intended to represent a directory. Returns false otherwise. -// This does NOT check that a directory (or file) actually exists. -bool FilePath::IsDirectory() const { - return !pathname_.empty() && - IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]); -} - -// Create directories so that path exists. Returns true if successful or if -// the directories already exist; returns false if unable to create directories -// for any reason. -bool FilePath::CreateDirectoriesRecursively() const { - if (!this->IsDirectory()) { - return false; - } - - if (pathname_.length() == 0 || this->DirectoryExists()) { - return true; - } - - const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName()); - return parent.CreateDirectoriesRecursively() && this->CreateFolder(); -} - -// Create the directory so that path exists. Returns true if successful or -// if the directory already exists; returns false if unable to create the -// directory for any reason, including if the parent directory does not -// exist. Not named "CreateDirectory" because that's a macro on Windows. -bool FilePath::CreateFolder() const { -#if GTEST_OS_WINDOWS_MOBILE - FilePath removed_sep(this->RemoveTrailingPathSeparator()); - LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); - int result = CreateDirectory(unicode, NULL) ? 0 : -1; - delete [] unicode; -#elif GTEST_OS_WINDOWS - int result = _mkdir(pathname_.c_str()); -#else - int result = mkdir(pathname_.c_str(), 0777); -#endif // GTEST_OS_WINDOWS_MOBILE - - if (result == -1) { - return this->DirectoryExists(); // An error is OK if the directory exists. - } - return true; // No error. -} - -// If input name has a trailing separator character, remove it and return the -// name, otherwise return the name string unmodified. -// On Windows platform, uses \ as the separator, other platforms use /. -FilePath FilePath::RemoveTrailingPathSeparator() const { - return IsDirectory() - ? FilePath(String(pathname_.c_str(), pathname_.length() - 1)) - : *this; -} - -// Removes any redundant separators that might be in the pathname. -// For example, "bar///foo" becomes "bar/foo". Does not eliminate other -// redundancies that might be in a pathname involving "." or "..". -// TODO(wan@google.com): handle Windows network shares (e.g. \\server\share). -void FilePath::Normalize() { - if (pathname_.c_str() == NULL) { - pathname_ = ""; - return; - } - const char* src = pathname_.c_str(); - char* const dest = new char[pathname_.length() + 1]; - char* dest_ptr = dest; - memset(dest_ptr, 0, pathname_.length() + 1); - - while (*src != '\0') { - *dest_ptr = *src; - if (!IsPathSeparator(*src)) { - src++; - } else { -#if GTEST_HAS_ALT_PATH_SEP_ - if (*dest_ptr == kAlternatePathSeparator) { - *dest_ptr = kPathSeparator; - } -#endif - while (IsPathSeparator(*src)) - src++; - } - dest_ptr++; - } - *dest_ptr = '\0'; - pathname_ = dest; - delete[] dest; -} - -} // namespace internal -} // namespace testing diff --git a/cpp/thirdparty/gtest-1.5.0/src/gtest-internal-inl.h b/cpp/thirdparty/gtest-1.5.0/src/gtest-internal-inl.h deleted file mode 100644 index 855b21554..000000000 --- a/cpp/thirdparty/gtest-1.5.0/src/gtest-internal-inl.h +++ /dev/null @@ -1,1074 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// Utility functions and classes used by the Google C++ testing framework. -// -// Author: wan@google.com (Zhanyong Wan) -// -// This file contains purely Google Test's internal implementation. Please -// DO NOT #INCLUDE IT IN A USER PROGRAM. - -#ifndef GTEST_SRC_GTEST_INTERNAL_INL_H_ -#define GTEST_SRC_GTEST_INTERNAL_INL_H_ - -// GTEST_IMPLEMENTATION_ is defined to 1 iff the current translation unit is -// part of Google Test's implementation; otherwise it's undefined. -#if !GTEST_IMPLEMENTATION_ -// A user is trying to include this from his code - just say no. -#error "gtest-internal-inl.h is part of Google Test's internal implementation." -#error "It must not be included except by Google Test itself." -#endif // GTEST_IMPLEMENTATION_ - -#ifndef _WIN32_WCE -#include -#endif // !_WIN32_WCE -#include -#include // For strtoll/_strtoul64/malloc/free. -#include // For memmove. - -#include -#include -#include - -#include - -#if GTEST_OS_WINDOWS -#include // For DWORD. -#endif // GTEST_OS_WINDOWS - -#include // NOLINT -#include - -namespace testing { - -// Declares the flags. -// -// We don't want the users to modify this flag in the code, but want -// Google Test's own unit tests to be able to access it. Therefore we -// declare it here as opposed to in gtest.h. -GTEST_DECLARE_bool_(death_test_use_fork); - -namespace internal { - -// The value of GetTestTypeId() as seen from within the Google Test -// library. This is solely for testing GetTestTypeId(). -GTEST_API_ extern const TypeId kTestTypeIdInGoogleTest; - -// Names of the flags (needed for parsing Google Test flags). -const char kAlsoRunDisabledTestsFlag[] = "also_run_disabled_tests"; -const char kBreakOnFailureFlag[] = "break_on_failure"; -const char kCatchExceptionsFlag[] = "catch_exceptions"; -const char kColorFlag[] = "color"; -const char kFilterFlag[] = "filter"; -const char kListTestsFlag[] = "list_tests"; -const char kOutputFlag[] = "output"; -const char kPrintTimeFlag[] = "print_time"; -const char kRandomSeedFlag[] = "random_seed"; -const char kRepeatFlag[] = "repeat"; -const char kShuffleFlag[] = "shuffle"; -const char kStackTraceDepthFlag[] = "stack_trace_depth"; -const char kThrowOnFailureFlag[] = "throw_on_failure"; - -// A valid random seed must be in [1, kMaxRandomSeed]. -const int kMaxRandomSeed = 99999; - -// g_help_flag is true iff the --help flag or an equivalent form is -// specified on the command line. -GTEST_API_ extern bool g_help_flag; - -// Returns the current time in milliseconds. -GTEST_API_ TimeInMillis GetTimeInMillis(); - -// Returns true iff Google Test should use colors in the output. -GTEST_API_ bool ShouldUseColor(bool stdout_is_tty); - -// Formats the given time in milliseconds as seconds. -GTEST_API_ std::string FormatTimeInMillisAsSeconds(TimeInMillis ms); - -// Parses a string for an Int32 flag, in the form of "--flag=value". -// -// On success, stores the value of the flag in *value, and returns -// true. On failure, returns false without changing *value. -GTEST_API_ bool ParseInt32Flag( - const char* str, const char* flag, Int32* value); - -// Returns a random seed in range [1, kMaxRandomSeed] based on the -// given --gtest_random_seed flag value. -inline int GetRandomSeedFromFlag(Int32 random_seed_flag) { - const unsigned int raw_seed = (random_seed_flag == 0) ? - static_cast(GetTimeInMillis()) : - static_cast(random_seed_flag); - - // Normalizes the actual seed to range [1, kMaxRandomSeed] such that - // it's easy to type. - const int normalized_seed = - static_cast((raw_seed - 1U) % - static_cast(kMaxRandomSeed)) + 1; - return normalized_seed; -} - -// Returns the first valid random seed after 'seed'. The behavior is -// undefined if 'seed' is invalid. The seed after kMaxRandomSeed is -// considered to be 1. -inline int GetNextRandomSeed(int seed) { - GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed) - << "Invalid random seed " << seed << " - must be in [1, " - << kMaxRandomSeed << "]."; - const int next_seed = seed + 1; - return (next_seed > kMaxRandomSeed) ? 1 : next_seed; -} - -// This class saves the values of all Google Test flags in its c'tor, and -// restores them in its d'tor. -class GTestFlagSaver { - public: - // The c'tor. - GTestFlagSaver() { - also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests); - break_on_failure_ = GTEST_FLAG(break_on_failure); - catch_exceptions_ = GTEST_FLAG(catch_exceptions); - color_ = GTEST_FLAG(color); - death_test_style_ = GTEST_FLAG(death_test_style); - death_test_use_fork_ = GTEST_FLAG(death_test_use_fork); - filter_ = GTEST_FLAG(filter); - internal_run_death_test_ = GTEST_FLAG(internal_run_death_test); - list_tests_ = GTEST_FLAG(list_tests); - output_ = GTEST_FLAG(output); - print_time_ = GTEST_FLAG(print_time); - random_seed_ = GTEST_FLAG(random_seed); - repeat_ = GTEST_FLAG(repeat); - shuffle_ = GTEST_FLAG(shuffle); - stack_trace_depth_ = GTEST_FLAG(stack_trace_depth); - throw_on_failure_ = GTEST_FLAG(throw_on_failure); - } - - // The d'tor is not virtual. DO NOT INHERIT FROM THIS CLASS. - ~GTestFlagSaver() { - GTEST_FLAG(also_run_disabled_tests) = also_run_disabled_tests_; - GTEST_FLAG(break_on_failure) = break_on_failure_; - GTEST_FLAG(catch_exceptions) = catch_exceptions_; - GTEST_FLAG(color) = color_; - GTEST_FLAG(death_test_style) = death_test_style_; - GTEST_FLAG(death_test_use_fork) = death_test_use_fork_; - GTEST_FLAG(filter) = filter_; - GTEST_FLAG(internal_run_death_test) = internal_run_death_test_; - GTEST_FLAG(list_tests) = list_tests_; - GTEST_FLAG(output) = output_; - GTEST_FLAG(print_time) = print_time_; - GTEST_FLAG(random_seed) = random_seed_; - GTEST_FLAG(repeat) = repeat_; - GTEST_FLAG(shuffle) = shuffle_; - GTEST_FLAG(stack_trace_depth) = stack_trace_depth_; - GTEST_FLAG(throw_on_failure) = throw_on_failure_; - } - private: - // Fields for saving the original values of flags. - bool also_run_disabled_tests_; - bool break_on_failure_; - bool catch_exceptions_; - String color_; - String death_test_style_; - bool death_test_use_fork_; - String filter_; - String internal_run_death_test_; - bool list_tests_; - String output_; - bool print_time_; - bool pretty_; - internal::Int32 random_seed_; - internal::Int32 repeat_; - bool shuffle_; - internal::Int32 stack_trace_depth_; - bool throw_on_failure_; -} GTEST_ATTRIBUTE_UNUSED_; - -// Converts a Unicode code point to a narrow string in UTF-8 encoding. -// code_point parameter is of type UInt32 because wchar_t may not be -// wide enough to contain a code point. -// The output buffer str must containt at least 32 characters. -// The function returns the address of the output buffer. -// If the code_point is not a valid Unicode code point -// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be output -// as '(Invalid Unicode 0xXXXXXXXX)'. -GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str); - -// Converts a wide string to a narrow string in UTF-8 encoding. -// The wide string is assumed to have the following encoding: -// UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) -// UTF-32 if sizeof(wchar_t) == 4 (on Linux) -// Parameter str points to a null-terminated wide string. -// Parameter num_chars may additionally limit the number -// of wchar_t characters processed. -1 is used when the entire string -// should be processed. -// If the string contains code points that are not valid Unicode code points -// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output -// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding -// and contains invalid UTF-16 surrogate pairs, values in those pairs -// will be encoded as individual Unicode characters from Basic Normal Plane. -GTEST_API_ String WideStringToUtf8(const wchar_t* str, int num_chars); - -// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file -// if the variable is present. If a file already exists at this location, this -// function will write over it. If the variable is present, but the file cannot -// be created, prints an error and exits. -void WriteToShardStatusFileIfNeeded(); - -// Checks whether sharding is enabled by examining the relevant -// environment variable values. If the variables are present, -// but inconsistent (e.g., shard_index >= total_shards), prints -// an error and exits. If in_subprocess_for_death_test, sharding is -// disabled because it must only be applied to the original test -// process. Otherwise, we could filter out death tests we intended to execute. -GTEST_API_ bool ShouldShard(const char* total_shards_str, - const char* shard_index_str, - bool in_subprocess_for_death_test); - -// Parses the environment variable var as an Int32. If it is unset, -// returns default_val. If it is not an Int32, prints an error and -// and aborts. -GTEST_API_ Int32 Int32FromEnvOrDie(const char* env_var, Int32 default_val); - -// Given the total number of shards, the shard index, and the test id, -// returns true iff the test should be run on this shard. The test id is -// some arbitrary but unique non-negative integer assigned to each test -// method. Assumes that 0 <= shard_index < total_shards. -GTEST_API_ bool ShouldRunTestOnShard( - int total_shards, int shard_index, int test_id); - -// STL container utilities. - -// Returns the number of elements in the given container that satisfy -// the given predicate. -template -inline int CountIf(const Container& c, Predicate predicate) { - return static_cast(std::count_if(c.begin(), c.end(), predicate)); -} - -// Applies a function/functor to each element in the container. -template -void ForEach(const Container& c, Functor functor) { - std::for_each(c.begin(), c.end(), functor); -} - -// Returns the i-th element of the vector, or default_value if i is not -// in range [0, v.size()). -template -inline E GetElementOr(const std::vector& v, int i, E default_value) { - return (i < 0 || i >= static_cast(v.size())) ? default_value : v[i]; -} - -// Performs an in-place shuffle of a range of the vector's elements. -// 'begin' and 'end' are element indices as an STL-style range; -// i.e. [begin, end) are shuffled, where 'end' == size() means to -// shuffle to the end of the vector. -template -void ShuffleRange(internal::Random* random, int begin, int end, - std::vector* v) { - const int size = static_cast(v->size()); - GTEST_CHECK_(0 <= begin && begin <= size) - << "Invalid shuffle range start " << begin << ": must be in range [0, " - << size << "]."; - GTEST_CHECK_(begin <= end && end <= size) - << "Invalid shuffle range finish " << end << ": must be in range [" - << begin << ", " << size << "]."; - - // Fisher-Yates shuffle, from - // http://en.wikipedia.org/wiki/Fisher-Yates_shuffle - for (int range_width = end - begin; range_width >= 2; range_width--) { - const int last_in_range = begin + range_width - 1; - const int selected = begin + random->Generate(range_width); - std::swap((*v)[selected], (*v)[last_in_range]); - } -} - -// Performs an in-place shuffle of the vector's elements. -template -inline void Shuffle(internal::Random* random, std::vector* v) { - ShuffleRange(random, 0, static_cast(v->size()), v); -} - -// A function for deleting an object. Handy for being used as a -// functor. -template -static void Delete(T* x) { - delete x; -} - -// A predicate that checks the key of a TestProperty against a known key. -// -// TestPropertyKeyIs is copyable. -class TestPropertyKeyIs { - public: - // Constructor. - // - // TestPropertyKeyIs has NO default constructor. - explicit TestPropertyKeyIs(const char* key) - : key_(key) {} - - // Returns true iff the test name of test property matches on key_. - bool operator()(const TestProperty& test_property) const { - return String(test_property.key()).Compare(key_) == 0; - } - - private: - String key_; -}; - -class TestInfoImpl { - public: - TestInfoImpl(TestInfo* parent, const char* test_case_name, - const char* name, const char* test_case_comment, - const char* comment, TypeId fixture_class_id, - internal::TestFactoryBase* factory); - ~TestInfoImpl(); - - // Returns true if this test should run. - bool should_run() const { return should_run_; } - - // Sets the should_run member. - void set_should_run(bool should) { should_run_ = should; } - - // Returns true if this test is disabled. Disabled tests are not run. - bool is_disabled() const { return is_disabled_; } - - // Sets the is_disabled member. - void set_is_disabled(bool is) { is_disabled_ = is; } - - // Returns true if this test matches the filter specified by the user. - bool matches_filter() const { return matches_filter_; } - - // Sets the matches_filter member. - void set_matches_filter(bool matches) { matches_filter_ = matches; } - - // Returns the test case name. - const char* test_case_name() const { return test_case_name_.c_str(); } - - // Returns the test name. - const char* name() const { return name_.c_str(); } - - // Returns the test case comment. - const char* test_case_comment() const { return test_case_comment_.c_str(); } - - // Returns the test comment. - const char* comment() const { return comment_.c_str(); } - - // Returns the ID of the test fixture class. - TypeId fixture_class_id() const { return fixture_class_id_; } - - // Returns the test result. - TestResult* result() { return &result_; } - const TestResult* result() const { return &result_; } - - // Creates the test object, runs it, records its result, and then - // deletes it. - void Run(); - - // Clears the test result. - void ClearResult() { result_.Clear(); } - - // Clears the test result in the given TestInfo object. - static void ClearTestResult(TestInfo * test_info) { - test_info->impl()->ClearResult(); - } - - private: - // These fields are immutable properties of the test. - TestInfo* const parent_; // The owner of this object - const String test_case_name_; // Test case name - const String name_; // Test name - const String test_case_comment_; // Test case comment - const String comment_; // Test comment - const TypeId fixture_class_id_; // ID of the test fixture class - bool should_run_; // True iff this test should run - bool is_disabled_; // True iff this test is disabled - bool matches_filter_; // True if this test matches the - // user-specified filter. - internal::TestFactoryBase* const factory_; // The factory that creates - // the test object - - // This field is mutable and needs to be reset before running the - // test for the second time. - TestResult result_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfoImpl); -}; - -// Class UnitTestOptions. -// -// This class contains functions for processing options the user -// specifies when running the tests. It has only static members. -// -// In most cases, the user can specify an option using either an -// environment variable or a command line flag. E.g. you can set the -// test filter using either GTEST_FILTER or --gtest_filter. If both -// the variable and the flag are present, the latter overrides the -// former. -class GTEST_API_ UnitTestOptions { - public: - // Functions for processing the gtest_output flag. - - // Returns the output format, or "" for normal printed output. - static String GetOutputFormat(); - - // Returns the absolute path of the requested output file, or the - // default (test_detail.xml in the original working directory) if - // none was explicitly specified. - static String GetAbsolutePathToOutputFile(); - - // Functions for processing the gtest_filter flag. - - // Returns true iff the wildcard pattern matches the string. The - // first ':' or '\0' character in pattern marks the end of it. - // - // This recursive algorithm isn't very efficient, but is clear and - // works well enough for matching test names, which are short. - static bool PatternMatchesString(const char *pattern, const char *str); - - // Returns true iff the user-specified filter matches the test case - // name and the test name. - static bool FilterMatchesTest(const String &test_case_name, - const String &test_name); - -#if GTEST_OS_WINDOWS - // Function for supporting the gtest_catch_exception flag. - - // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the - // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. - // This function is useful as an __except condition. - static int GTestShouldProcessSEH(DWORD exception_code); -#endif // GTEST_OS_WINDOWS - - // Returns true if "name" matches the ':' separated list of glob-style - // filters in "filter". - static bool MatchesFilter(const String& name, const char* filter); -}; - -// Returns the current application's name, removing directory path if that -// is present. Used by UnitTestOptions::GetOutputFile. -GTEST_API_ FilePath GetCurrentExecutableName(); - -// The role interface for getting the OS stack trace as a string. -class OsStackTraceGetterInterface { - public: - OsStackTraceGetterInterface() {} - virtual ~OsStackTraceGetterInterface() {} - - // Returns the current OS stack trace as a String. Parameters: - // - // max_depth - the maximum number of stack frames to be included - // in the trace. - // skip_count - the number of top frames to be skipped; doesn't count - // against max_depth. - virtual String CurrentStackTrace(int max_depth, int skip_count) = 0; - - // UponLeavingGTest() should be called immediately before Google Test calls - // user code. It saves some information about the current stack that - // CurrentStackTrace() will use to find and hide Google Test stack frames. - virtual void UponLeavingGTest() = 0; - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetterInterface); -}; - -// A working implementation of the OsStackTraceGetterInterface interface. -class OsStackTraceGetter : public OsStackTraceGetterInterface { - public: - OsStackTraceGetter() : caller_frame_(NULL) {} - virtual String CurrentStackTrace(int max_depth, int skip_count); - virtual void UponLeavingGTest(); - - // This string is inserted in place of stack frames that are part of - // Google Test's implementation. - static const char* const kElidedFramesMarker; - - private: - Mutex mutex_; // protects all internal state - - // We save the stack frame below the frame that calls user code. - // We do this because the address of the frame immediately below - // the user code changes between the call to UponLeavingGTest() - // and any calls to CurrentStackTrace() from within the user code. - void* caller_frame_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetter); -}; - -// Information about a Google Test trace point. -struct TraceInfo { - const char* file; - int line; - String message; -}; - -// This is the default global test part result reporter used in UnitTestImpl. -// This class should only be used by UnitTestImpl. -class DefaultGlobalTestPartResultReporter - : public TestPartResultReporterInterface { - public: - explicit DefaultGlobalTestPartResultReporter(UnitTestImpl* unit_test); - // Implements the TestPartResultReporterInterface. Reports the test part - // result in the current test. - virtual void ReportTestPartResult(const TestPartResult& result); - - private: - UnitTestImpl* const unit_test_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultGlobalTestPartResultReporter); -}; - -// This is the default per thread test part result reporter used in -// UnitTestImpl. This class should only be used by UnitTestImpl. -class DefaultPerThreadTestPartResultReporter - : public TestPartResultReporterInterface { - public: - explicit DefaultPerThreadTestPartResultReporter(UnitTestImpl* unit_test); - // Implements the TestPartResultReporterInterface. The implementation just - // delegates to the current global test part result reporter of *unit_test_. - virtual void ReportTestPartResult(const TestPartResult& result); - - private: - UnitTestImpl* const unit_test_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultPerThreadTestPartResultReporter); -}; - -// The private implementation of the UnitTest class. We don't protect -// the methods under a mutex, as this class is not accessible by a -// user and the UnitTest class that delegates work to this class does -// proper locking. -class GTEST_API_ UnitTestImpl { - public: - explicit UnitTestImpl(UnitTest* parent); - virtual ~UnitTestImpl(); - - // There are two different ways to register your own TestPartResultReporter. - // You can register your own repoter to listen either only for test results - // from the current thread or for results from all threads. - // By default, each per-thread test result repoter just passes a new - // TestPartResult to the global test result reporter, which registers the - // test part result for the currently running test. - - // Returns the global test part result reporter. - TestPartResultReporterInterface* GetGlobalTestPartResultReporter(); - - // Sets the global test part result reporter. - void SetGlobalTestPartResultReporter( - TestPartResultReporterInterface* reporter); - - // Returns the test part result reporter for the current thread. - TestPartResultReporterInterface* GetTestPartResultReporterForCurrentThread(); - - // Sets the test part result reporter for the current thread. - void SetTestPartResultReporterForCurrentThread( - TestPartResultReporterInterface* reporter); - - // Gets the number of successful test cases. - int successful_test_case_count() const; - - // Gets the number of failed test cases. - int failed_test_case_count() const; - - // Gets the number of all test cases. - int total_test_case_count() const; - - // Gets the number of all test cases that contain at least one test - // that should run. - int test_case_to_run_count() const; - - // Gets the number of successful tests. - int successful_test_count() const; - - // Gets the number of failed tests. - int failed_test_count() const; - - // Gets the number of disabled tests. - int disabled_test_count() const; - - // Gets the number of all tests. - int total_test_count() const; - - // Gets the number of tests that should run. - int test_to_run_count() const; - - // Gets the elapsed time, in milliseconds. - TimeInMillis elapsed_time() const { return elapsed_time_; } - - // Returns true iff the unit test passed (i.e. all test cases passed). - bool Passed() const { return !Failed(); } - - // Returns true iff the unit test failed (i.e. some test case failed - // or something outside of all tests failed). - bool Failed() const { - return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed(); - } - - // Gets the i-th test case among all the test cases. i can range from 0 to - // total_test_case_count() - 1. If i is not in that range, returns NULL. - const TestCase* GetTestCase(int i) const { - const int index = GetElementOr(test_case_indices_, i, -1); - return index < 0 ? NULL : test_cases_[i]; - } - - // Gets the i-th test case among all the test cases. i can range from 0 to - // total_test_case_count() - 1. If i is not in that range, returns NULL. - TestCase* GetMutableTestCase(int i) { - const int index = GetElementOr(test_case_indices_, i, -1); - return index < 0 ? NULL : test_cases_[index]; - } - - // Provides access to the event listener list. - TestEventListeners* listeners() { return &listeners_; } - - // Returns the TestResult for the test that's currently running, or - // the TestResult for the ad hoc test if no test is running. - TestResult* current_test_result(); - - // Returns the TestResult for the ad hoc test. - const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } - - // Sets the OS stack trace getter. - // - // Does nothing if the input and the current OS stack trace getter - // are the same; otherwise, deletes the old getter and makes the - // input the current getter. - void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter); - - // Returns the current OS stack trace getter if it is not NULL; - // otherwise, creates an OsStackTraceGetter, makes it the current - // getter, and returns it. - OsStackTraceGetterInterface* os_stack_trace_getter(); - - // Returns the current OS stack trace as a String. - // - // The maximum number of stack frames to be included is specified by - // the gtest_stack_trace_depth flag. The skip_count parameter - // specifies the number of top frames to be skipped, which doesn't - // count against the number of frames to be included. - // - // For example, if Foo() calls Bar(), which in turn calls - // CurrentOsStackTraceExceptTop(1), Foo() will be included in the - // trace but Bar() and CurrentOsStackTraceExceptTop() won't. - String CurrentOsStackTraceExceptTop(int skip_count); - - // Finds and returns a TestCase with the given name. If one doesn't - // exist, creates one and returns it. - // - // Arguments: - // - // test_case_name: name of the test case - // set_up_tc: pointer to the function that sets up the test case - // tear_down_tc: pointer to the function that tears down the test case - TestCase* GetTestCase(const char* test_case_name, - const char* comment, - Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc); - - // Adds a TestInfo to the unit test. - // - // Arguments: - // - // set_up_tc: pointer to the function that sets up the test case - // tear_down_tc: pointer to the function that tears down the test case - // test_info: the TestInfo object - void AddTestInfo(Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc, - TestInfo * test_info) { - // In order to support thread-safe death tests, we need to - // remember the original working directory when the test program - // was first invoked. We cannot do this in RUN_ALL_TESTS(), as - // the user may have changed the current directory before calling - // RUN_ALL_TESTS(). Therefore we capture the current directory in - // AddTestInfo(), which is called to register a TEST or TEST_F - // before main() is reached. - if (original_working_dir_.IsEmpty()) { - original_working_dir_.Set(FilePath::GetCurrentDir()); - GTEST_CHECK_(!original_working_dir_.IsEmpty()) - << "Failed to get the current working directory."; - } - - GetTestCase(test_info->test_case_name(), - test_info->test_case_comment(), - set_up_tc, - tear_down_tc)->AddTestInfo(test_info); - } - -#if GTEST_HAS_PARAM_TEST - // Returns ParameterizedTestCaseRegistry object used to keep track of - // value-parameterized tests and instantiate and register them. - internal::ParameterizedTestCaseRegistry& parameterized_test_registry() { - return parameterized_test_registry_; - } -#endif // GTEST_HAS_PARAM_TEST - - // Sets the TestCase object for the test that's currently running. - void set_current_test_case(TestCase* a_current_test_case) { - current_test_case_ = a_current_test_case; - } - - // Sets the TestInfo object for the test that's currently running. If - // current_test_info is NULL, the assertion results will be stored in - // ad_hoc_test_result_. - void set_current_test_info(TestInfo* a_current_test_info) { - current_test_info_ = a_current_test_info; - } - - // Registers all parameterized tests defined using TEST_P and - // INSTANTIATE_TEST_P, creating regular tests for each test/parameter - // combination. This method can be called more then once; it has - // guards protecting from registering the tests more then once. - // If value-parameterized tests are disabled, RegisterParameterizedTests - // is present but does nothing. - void RegisterParameterizedTests(); - - // Runs all tests in this UnitTest object, prints the result, and - // returns 0 if all tests are successful, or 1 otherwise. If any - // exception is thrown during a test on Windows, this test is - // considered to be failed, but the rest of the tests will still be - // run. (We disable exceptions on Linux and Mac OS X, so the issue - // doesn't apply there.) - int RunAllTests(); - - // Clears the results of all tests, including the ad hoc test. - void ClearResult() { - ForEach(test_cases_, TestCase::ClearTestCaseResult); - ad_hoc_test_result_.Clear(); - } - - enum ReactionToSharding { - HONOR_SHARDING_PROTOCOL, - IGNORE_SHARDING_PROTOCOL - }; - - // Matches the full name of each test against the user-specified - // filter to decide whether the test should run, then records the - // result in each TestCase and TestInfo object. - // If shard_tests == HONOR_SHARDING_PROTOCOL, further filters tests - // based on sharding variables in the environment. - // Returns the number of tests that should run. - int FilterTests(ReactionToSharding shard_tests); - - // Prints the names of the tests matching the user-specified filter flag. - void ListTestsMatchingFilter(); - - const TestCase* current_test_case() const { return current_test_case_; } - TestInfo* current_test_info() { return current_test_info_; } - const TestInfo* current_test_info() const { return current_test_info_; } - - // Returns the vector of environments that need to be set-up/torn-down - // before/after the tests are run. - std::vector& environments() { return environments_; } - - // Getters for the per-thread Google Test trace stack. - std::vector& gtest_trace_stack() { - return *(gtest_trace_stack_.pointer()); - } - const std::vector& gtest_trace_stack() const { - return gtest_trace_stack_.get(); - } - -#if GTEST_HAS_DEATH_TEST - void InitDeathTestSubprocessControlInfo() { - internal_run_death_test_flag_.reset(ParseInternalRunDeathTestFlag()); - } - // Returns a pointer to the parsed --gtest_internal_run_death_test - // flag, or NULL if that flag was not specified. - // This information is useful only in a death test child process. - // Must not be called before a call to InitGoogleTest. - const InternalRunDeathTestFlag* internal_run_death_test_flag() const { - return internal_run_death_test_flag_.get(); - } - - // Returns a pointer to the current death test factory. - internal::DeathTestFactory* death_test_factory() { - return death_test_factory_.get(); - } - - void SuppressTestEventsIfInSubprocess(); - - friend class ReplaceDeathTestFactory; -#endif // GTEST_HAS_DEATH_TEST - - // Initializes the event listener performing XML output as specified by - // UnitTestOptions. Must not be called before InitGoogleTest. - void ConfigureXmlOutput(); - - // Performs initialization dependent upon flag values obtained in - // ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to - // ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest - // this function is also called from RunAllTests. Since this function can be - // called more than once, it has to be idempotent. - void PostFlagParsingInit(); - - // Gets the random seed used at the start of the current test iteration. - int random_seed() const { return random_seed_; } - - // Gets the random number generator. - internal::Random* random() { return &random_; } - - // Shuffles all test cases, and the tests within each test case, - // making sure that death tests are still run first. - void ShuffleTests(); - - // Restores the test cases and tests to their order before the first shuffle. - void UnshuffleTests(); - - private: - friend class ::testing::UnitTest; - - // The UnitTest object that owns this implementation object. - UnitTest* const parent_; - - // The working directory when the first TEST() or TEST_F() was - // executed. - internal::FilePath original_working_dir_; - - // The default test part result reporters. - DefaultGlobalTestPartResultReporter default_global_test_part_result_reporter_; - DefaultPerThreadTestPartResultReporter - default_per_thread_test_part_result_reporter_; - - // Points to (but doesn't own) the global test part result reporter. - TestPartResultReporterInterface* global_test_part_result_repoter_; - - // Protects read and write access to global_test_part_result_reporter_. - internal::Mutex global_test_part_result_reporter_mutex_; - - // Points to (but doesn't own) the per-thread test part result reporter. - internal::ThreadLocal - per_thread_test_part_result_reporter_; - - // The vector of environments that need to be set-up/torn-down - // before/after the tests are run. - std::vector environments_; - - // The vector of TestCases in their original order. It owns the - // elements in the vector. - std::vector test_cases_; - - // Provides a level of indirection for the test case list to allow - // easy shuffling and restoring the test case order. The i-th - // element of this vector is the index of the i-th test case in the - // shuffled order. - std::vector test_case_indices_; - -#if GTEST_HAS_PARAM_TEST - // ParameterizedTestRegistry object used to register value-parameterized - // tests. - internal::ParameterizedTestCaseRegistry parameterized_test_registry_; - - // Indicates whether RegisterParameterizedTests() has been called already. - bool parameterized_tests_registered_; -#endif // GTEST_HAS_PARAM_TEST - - // Index of the last death test case registered. Initially -1. - int last_death_test_case_; - - // This points to the TestCase for the currently running test. It - // changes as Google Test goes through one test case after another. - // When no test is running, this is set to NULL and Google Test - // stores assertion results in ad_hoc_test_result_. Initially NULL. - TestCase* current_test_case_; - - // This points to the TestInfo for the currently running test. It - // changes as Google Test goes through one test after another. When - // no test is running, this is set to NULL and Google Test stores - // assertion results in ad_hoc_test_result_. Initially NULL. - TestInfo* current_test_info_; - - // Normally, a user only writes assertions inside a TEST or TEST_F, - // or inside a function called by a TEST or TEST_F. Since Google - // Test keeps track of which test is current running, it can - // associate such an assertion with the test it belongs to. - // - // If an assertion is encountered when no TEST or TEST_F is running, - // Google Test attributes the assertion result to an imaginary "ad hoc" - // test, and records the result in ad_hoc_test_result_. - TestResult ad_hoc_test_result_; - - // The list of event listeners that can be used to track events inside - // Google Test. - TestEventListeners listeners_; - - // The OS stack trace getter. Will be deleted when the UnitTest - // object is destructed. By default, an OsStackTraceGetter is used, - // but the user can set this field to use a custom getter if that is - // desired. - OsStackTraceGetterInterface* os_stack_trace_getter_; - - // True iff PostFlagParsingInit() has been called. - bool post_flag_parse_init_performed_; - - // The random number seed used at the beginning of the test run. - int random_seed_; - - // Our random number generator. - internal::Random random_; - - // How long the test took to run, in milliseconds. - TimeInMillis elapsed_time_; - -#if GTEST_HAS_DEATH_TEST - // The decomposed components of the gtest_internal_run_death_test flag, - // parsed when RUN_ALL_TESTS is called. - internal::scoped_ptr internal_run_death_test_flag_; - internal::scoped_ptr death_test_factory_; -#endif // GTEST_HAS_DEATH_TEST - - // A per-thread stack of traces created by the SCOPED_TRACE() macro. - internal::ThreadLocal > gtest_trace_stack_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTestImpl); -}; // class UnitTestImpl - -// Convenience function for accessing the global UnitTest -// implementation object. -inline UnitTestImpl* GetUnitTestImpl() { - return UnitTest::GetInstance()->impl(); -} - -// Internal helper functions for implementing the simple regular -// expression matcher. -GTEST_API_ bool IsInSet(char ch, const char* str); -GTEST_API_ bool IsDigit(char ch); -GTEST_API_ bool IsPunct(char ch); -GTEST_API_ bool IsRepeat(char ch); -GTEST_API_ bool IsWhiteSpace(char ch); -GTEST_API_ bool IsWordChar(char ch); -GTEST_API_ bool IsValidEscape(char ch); -GTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch); -GTEST_API_ bool ValidateRegex(const char* regex); -GTEST_API_ bool MatchRegexAtHead(const char* regex, const char* str); -GTEST_API_ bool MatchRepetitionAndRegexAtHead( - bool escaped, char ch, char repeat, const char* regex, const char* str); -GTEST_API_ bool MatchRegexAnywhere(const char* regex, const char* str); - -// Parses the command line for Google Test flags, without initializing -// other parts of Google Test. -GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, char** argv); -GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv); - -#if GTEST_HAS_DEATH_TEST - -// Returns the message describing the last system error, regardless of the -// platform. -String GetLastErrnoDescription(); - -#if GTEST_OS_WINDOWS -// Provides leak-safe Windows kernel handle ownership. -class AutoHandle { - public: - AutoHandle() : handle_(INVALID_HANDLE_VALUE) {} - explicit AutoHandle(HANDLE handle) : handle_(handle) {} - - ~AutoHandle() { Reset(); } - - HANDLE Get() const { return handle_; } - void Reset() { Reset(INVALID_HANDLE_VALUE); } - void Reset(HANDLE handle) { - if (handle != handle_) { - if (handle_ != INVALID_HANDLE_VALUE) - ::CloseHandle(handle_); - handle_ = handle; - } - } - - private: - HANDLE handle_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle); -}; -#endif // GTEST_OS_WINDOWS - -// Attempts to parse a string into a positive integer pointed to by the -// number parameter. Returns true if that is possible. -// GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we can use -// it here. -template -bool ParseNaturalNumber(const ::std::string& str, Integer* number) { - // Fail fast if the given string does not begin with a digit; - // this bypasses strtoXXX's "optional leading whitespace and plus - // or minus sign" semantics, which are undesirable here. - if (str.empty() || !isdigit(str[0])) { - return false; - } - errno = 0; - - char* end; - // BiggestConvertible is the largest integer type that system-provided - // string-to-number conversion routines can return. -#if GTEST_OS_WINDOWS && !defined(__GNUC__) - // MSVC and C++ Builder define __int64 instead of the standard long long. - typedef unsigned __int64 BiggestConvertible; - const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10); -#else - typedef unsigned long long BiggestConvertible; // NOLINT - const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10); -#endif // GTEST_OS_WINDOWS && !defined(__GNUC__) - const bool parse_success = *end == '\0' && errno == 0; - - // TODO(vladl@google.com): Convert this to compile time assertion when it is - // available. - GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed)); - - const Integer result = static_cast(parsed); - if (parse_success && static_cast(result) == parsed) { - *number = result; - return true; - } - return false; -} -#endif // GTEST_HAS_DEATH_TEST - -// TestResult contains some private methods that should be hidden from -// Google Test user but are required for testing. This class allow our tests -// to access them. -// -// This class is supplied only for the purpose of testing Google Test's own -// constructs. Do not use it in user tests, either directly or indirectly. -class TestResultAccessor { - public: - static void RecordProperty(TestResult* test_result, - const TestProperty& property) { - test_result->RecordProperty(property); - } - - static void ClearTestPartResults(TestResult* test_result) { - test_result->ClearTestPartResults(); - } - - static const std::vector& test_part_results( - const TestResult& test_result) { - return test_result.test_part_results(); - } -}; - -} // namespace internal -} // namespace testing - -#endif // GTEST_SRC_GTEST_INTERNAL_INL_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/src/gtest-port.cc b/cpp/thirdparty/gtest-1.5.0/src/gtest-port.cc deleted file mode 100644 index b9504f56a..000000000 --- a/cpp/thirdparty/gtest-1.5.0/src/gtest-port.cc +++ /dev/null @@ -1,711 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#include - -#include -#include -#include - -#if GTEST_OS_WINDOWS_MOBILE -#include // For TerminateProcess() -#elif GTEST_OS_WINDOWS -#include -#include -#else -#include -#endif // GTEST_OS_WINDOWS_MOBILE - -#if GTEST_OS_MAC -#include -#include -#include -#endif // GTEST_OS_MAC - -#include -#include -#include - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -namespace testing { -namespace internal { - -#if defined(_MSC_VER) || defined(__BORLANDC__) -// MSVC and C++Builder do not provide a definition of STDERR_FILENO. -const int kStdOutFileno = 1; -const int kStdErrFileno = 2; -#else -const int kStdOutFileno = STDOUT_FILENO; -const int kStdErrFileno = STDERR_FILENO; -#endif // _MSC_VER - -#if GTEST_OS_MAC - -// Returns the number of threads running in the process, or 0 to indicate that -// we cannot detect it. -size_t GetThreadCount() { - const task_t task = mach_task_self(); - mach_msg_type_number_t thread_count; - thread_act_array_t thread_list; - const kern_return_t status = task_threads(task, &thread_list, &thread_count); - if (status == KERN_SUCCESS) { - // task_threads allocates resources in thread_list and we need to free them - // to avoid leaks. - vm_deallocate(task, - reinterpret_cast(thread_list), - sizeof(thread_t) * thread_count); - return static_cast(thread_count); - } else { - return 0; - } -} - -#else - -size_t GetThreadCount() { - // There's no portable way to detect the number of threads, so we just - // return 0 to indicate that we cannot detect it. - return 0; -} - -#endif // GTEST_OS_MAC - -#if GTEST_USES_POSIX_RE - -// Implements RE. Currently only needed for death tests. - -RE::~RE() { - if (is_valid_) { - // regfree'ing an invalid regex might crash because the content - // of the regex is undefined. Since the regex's are essentially - // the same, one cannot be valid (or invalid) without the other - // being so too. - regfree(&partial_regex_); - regfree(&full_regex_); - } - free(const_cast(pattern_)); -} - -// Returns true iff regular expression re matches the entire str. -bool RE::FullMatch(const char* str, const RE& re) { - if (!re.is_valid_) return false; - - regmatch_t match; - return regexec(&re.full_regex_, str, 1, &match, 0) == 0; -} - -// Returns true iff regular expression re matches a substring of str -// (including str itself). -bool RE::PartialMatch(const char* str, const RE& re) { - if (!re.is_valid_) return false; - - regmatch_t match; - return regexec(&re.partial_regex_, str, 1, &match, 0) == 0; -} - -// Initializes an RE from its string representation. -void RE::Init(const char* regex) { - pattern_ = posix::StrDup(regex); - - // Reserves enough bytes to hold the regular expression used for a - // full match. - const size_t full_regex_len = strlen(regex) + 10; - char* const full_pattern = new char[full_regex_len]; - - snprintf(full_pattern, full_regex_len, "^(%s)$", regex); - is_valid_ = regcomp(&full_regex_, full_pattern, REG_EXTENDED) == 0; - // We want to call regcomp(&partial_regex_, ...) even if the - // previous expression returns false. Otherwise partial_regex_ may - // not be properly initialized can may cause trouble when it's - // freed. - // - // Some implementation of POSIX regex (e.g. on at least some - // versions of Cygwin) doesn't accept the empty string as a valid - // regex. We change it to an equivalent form "()" to be safe. - if (is_valid_) { - const char* const partial_regex = (*regex == '\0') ? "()" : regex; - is_valid_ = regcomp(&partial_regex_, partial_regex, REG_EXTENDED) == 0; - } - EXPECT_TRUE(is_valid_) - << "Regular expression \"" << regex - << "\" is not a valid POSIX Extended regular expression."; - - delete[] full_pattern; -} - -#elif GTEST_USES_SIMPLE_RE - -// Returns true iff ch appears anywhere in str (excluding the -// terminating '\0' character). -bool IsInSet(char ch, const char* str) { - return ch != '\0' && strchr(str, ch) != NULL; -} - -// Returns true iff ch belongs to the given classification. Unlike -// similar functions in , these aren't affected by the -// current locale. -bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; } -bool IsPunct(char ch) { - return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); -} -bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } -bool IsWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } -bool IsWordChar(char ch) { - return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') || - ('0' <= ch && ch <= '9') || ch == '_'; -} - -// Returns true iff "\\c" is a supported escape sequence. -bool IsValidEscape(char c) { - return (IsPunct(c) || IsInSet(c, "dDfnrsStvwW")); -} - -// Returns true iff the given atom (specified by escaped and pattern) -// matches ch. The result is undefined if the atom is invalid. -bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { - if (escaped) { // "\\p" where p is pattern_char. - switch (pattern_char) { - case 'd': return IsDigit(ch); - case 'D': return !IsDigit(ch); - case 'f': return ch == '\f'; - case 'n': return ch == '\n'; - case 'r': return ch == '\r'; - case 's': return IsWhiteSpace(ch); - case 'S': return !IsWhiteSpace(ch); - case 't': return ch == '\t'; - case 'v': return ch == '\v'; - case 'w': return IsWordChar(ch); - case 'W': return !IsWordChar(ch); - } - return IsPunct(pattern_char) && pattern_char == ch; - } - - return (pattern_char == '.' && ch != '\n') || pattern_char == ch; -} - -// Helper function used by ValidateRegex() to format error messages. -String FormatRegexSyntaxError(const char* regex, int index) { - return (Message() << "Syntax error at index " << index - << " in simple regular expression \"" << regex << "\": ").GetString(); -} - -// Generates non-fatal failures and returns false if regex is invalid; -// otherwise returns true. -bool ValidateRegex(const char* regex) { - if (regex == NULL) { - // TODO(wan@google.com): fix the source file location in the - // assertion failures to match where the regex is used in user - // code. - ADD_FAILURE() << "NULL is not a valid simple regular expression."; - return false; - } - - bool is_valid = true; - - // True iff ?, *, or + can follow the previous atom. - bool prev_repeatable = false; - for (int i = 0; regex[i]; i++) { - if (regex[i] == '\\') { // An escape sequence - i++; - if (regex[i] == '\0') { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) - << "'\\' cannot appear at the end."; - return false; - } - - if (!IsValidEscape(regex[i])) { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) - << "invalid escape sequence \"\\" << regex[i] << "\"."; - is_valid = false; - } - prev_repeatable = true; - } else { // Not an escape sequence. - const char ch = regex[i]; - - if (ch == '^' && i > 0) { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i) - << "'^' can only appear at the beginning."; - is_valid = false; - } else if (ch == '$' && regex[i + 1] != '\0') { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i) - << "'$' can only appear at the end."; - is_valid = false; - } else if (IsInSet(ch, "()[]{}|")) { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i) - << "'" << ch << "' is unsupported."; - is_valid = false; - } else if (IsRepeat(ch) && !prev_repeatable) { - ADD_FAILURE() << FormatRegexSyntaxError(regex, i) - << "'" << ch << "' can only follow a repeatable token."; - is_valid = false; - } - - prev_repeatable = !IsInSet(ch, "^$?*+"); - } - } - - return is_valid; -} - -// Matches a repeated regex atom followed by a valid simple regular -// expression. The regex atom is defined as c if escaped is false, -// or \c otherwise. repeat is the repetition meta character (?, *, -// or +). The behavior is undefined if str contains too many -// characters to be indexable by size_t, in which case the test will -// probably time out anyway. We are fine with this limitation as -// std::string has it too. -bool MatchRepetitionAndRegexAtHead( - bool escaped, char c, char repeat, const char* regex, - const char* str) { - const size_t min_count = (repeat == '+') ? 1 : 0; - const size_t max_count = (repeat == '?') ? 1 : - static_cast(-1) - 1; - // We cannot call numeric_limits::max() as it conflicts with the - // max() macro on Windows. - - for (size_t i = 0; i <= max_count; ++i) { - // We know that the atom matches each of the first i characters in str. - if (i >= min_count && MatchRegexAtHead(regex, str + i)) { - // We have enough matches at the head, and the tail matches too. - // Since we only care about *whether* the pattern matches str - // (as opposed to *how* it matches), there is no need to find a - // greedy match. - return true; - } - if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i])) - return false; - } - return false; -} - -// Returns true iff regex matches a prefix of str. regex must be a -// valid simple regular expression and not start with "^", or the -// result is undefined. -bool MatchRegexAtHead(const char* regex, const char* str) { - if (*regex == '\0') // An empty regex matches a prefix of anything. - return true; - - // "$" only matches the end of a string. Note that regex being - // valid guarantees that there's nothing after "$" in it. - if (*regex == '$') - return *str == '\0'; - - // Is the first thing in regex an escape sequence? - const bool escaped = *regex == '\\'; - if (escaped) - ++regex; - if (IsRepeat(regex[1])) { - // MatchRepetitionAndRegexAtHead() calls MatchRegexAtHead(), so - // here's an indirect recursion. It terminates as the regex gets - // shorter in each recursion. - return MatchRepetitionAndRegexAtHead( - escaped, regex[0], regex[1], regex + 2, str); - } else { - // regex isn't empty, isn't "$", and doesn't start with a - // repetition. We match the first atom of regex with the first - // character of str and recurse. - return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) && - MatchRegexAtHead(regex + 1, str + 1); - } -} - -// Returns true iff regex matches any substring of str. regex must be -// a valid simple regular expression, or the result is undefined. -// -// The algorithm is recursive, but the recursion depth doesn't exceed -// the regex length, so we won't need to worry about running out of -// stack space normally. In rare cases the time complexity can be -// exponential with respect to the regex length + the string length, -// but usually it's must faster (often close to linear). -bool MatchRegexAnywhere(const char* regex, const char* str) { - if (regex == NULL || str == NULL) - return false; - - if (*regex == '^') - return MatchRegexAtHead(regex + 1, str); - - // A successful match can be anywhere in str. - do { - if (MatchRegexAtHead(regex, str)) - return true; - } while (*str++ != '\0'); - return false; -} - -// Implements the RE class. - -RE::~RE() { - free(const_cast(pattern_)); - free(const_cast(full_pattern_)); -} - -// Returns true iff regular expression re matches the entire str. -bool RE::FullMatch(const char* str, const RE& re) { - return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_, str); -} - -// Returns true iff regular expression re matches a substring of str -// (including str itself). -bool RE::PartialMatch(const char* str, const RE& re) { - return re.is_valid_ && MatchRegexAnywhere(re.pattern_, str); -} - -// Initializes an RE from its string representation. -void RE::Init(const char* regex) { - pattern_ = full_pattern_ = NULL; - if (regex != NULL) { - pattern_ = posix::StrDup(regex); - } - - is_valid_ = ValidateRegex(regex); - if (!is_valid_) { - // No need to calculate the full pattern when the regex is invalid. - return; - } - - const size_t len = strlen(regex); - // Reserves enough bytes to hold the regular expression used for a - // full match: we need space to prepend a '^', append a '$', and - // terminate the string with '\0'. - char* buffer = static_cast(malloc(len + 3)); - full_pattern_ = buffer; - - if (*regex != '^') - *buffer++ = '^'; // Makes sure full_pattern_ starts with '^'. - - // We don't use snprintf or strncpy, as they trigger a warning when - // compiled with VC++ 8.0. - memcpy(buffer, regex, len); - buffer += len; - - if (len == 0 || regex[len - 1] != '$') - *buffer++ = '$'; // Makes sure full_pattern_ ends with '$'. - - *buffer = '\0'; -} - -#endif // GTEST_USES_POSIX_RE - - -GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line) - : severity_(severity) { - const char* const marker = - severity == GTEST_INFO ? "[ INFO ]" : - severity == GTEST_WARNING ? "[WARNING]" : - severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]"; - GetStream() << ::std::endl << marker << " " - << FormatFileLocation(file, line).c_str() << ": "; -} - -// Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. -GTestLog::~GTestLog() { - GetStream() << ::std::endl; - if (severity_ == GTEST_FATAL) { - fflush(stderr); - posix::Abort(); - } -} -// Disable Microsoft deprecation warnings for POSIX functions called from -// this class (creat, dup, dup2, and close) -#ifdef _MSC_VER -#pragma warning(push) -#pragma warning(disable: 4996) -#endif // _MSC_VER - -#if GTEST_HAS_STREAM_REDIRECTION_ - -// Object that captures an output stream (stdout/stderr). -class CapturedStream { - public: - // The ctor redirects the stream to a temporary file. - CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { -#if GTEST_OS_WINDOWS - char temp_dir_path[MAX_PATH + 1] = { '\0' }; // NOLINT - char temp_file_path[MAX_PATH + 1] = { '\0' }; // NOLINT - - ::GetTempPathA(sizeof(temp_dir_path), temp_dir_path); - const UINT success = ::GetTempFileNameA(temp_dir_path, - "gtest_redir", - 0, // Generate unique file name. - temp_file_path); - GTEST_CHECK_(success != 0) - << "Unable to create a temporary file in " << temp_dir_path; - const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE); - GTEST_CHECK_(captured_fd != -1) << "Unable to open temporary file " - << temp_file_path; - filename_ = temp_file_path; -#else - // There's no guarantee that a test has write access to the - // current directory, so we create the temporary file in the /tmp - // directory instead. - char name_template[] = "/tmp/captured_stream.XXXXXX"; - const int captured_fd = mkstemp(name_template); - filename_ = name_template; -#endif // GTEST_OS_WINDOWS - fflush(NULL); - dup2(captured_fd, fd_); - close(captured_fd); - } - - ~CapturedStream() { - remove(filename_.c_str()); - } - - String GetCapturedString() { - if (uncaptured_fd_ != -1) { - // Restores the original stream. - fflush(NULL); - dup2(uncaptured_fd_, fd_); - close(uncaptured_fd_); - uncaptured_fd_ = -1; - } - - FILE* const file = posix::FOpen(filename_.c_str(), "r"); - const String content = ReadEntireFile(file); - posix::FClose(file); - return content; - } - - private: - // Reads the entire content of a file as a String. - static String ReadEntireFile(FILE* file); - - // Returns the size (in bytes) of a file. - static size_t GetFileSize(FILE* file); - - const int fd_; // A stream to capture. - int uncaptured_fd_; - // Name of the temporary file holding the stderr output. - ::std::string filename_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream); -}; - -// Returns the size (in bytes) of a file. -size_t CapturedStream::GetFileSize(FILE* file) { - fseek(file, 0, SEEK_END); - return static_cast(ftell(file)); -} - -// Reads the entire content of a file as a string. -String CapturedStream::ReadEntireFile(FILE* file) { - const size_t file_size = GetFileSize(file); - char* const buffer = new char[file_size]; - - size_t bytes_last_read = 0; // # of bytes read in the last fread() - size_t bytes_read = 0; // # of bytes read so far - - fseek(file, 0, SEEK_SET); - - // Keeps reading the file until we cannot read further or the - // pre-determined file size is reached. - do { - bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file); - bytes_read += bytes_last_read; - } while (bytes_last_read > 0 && bytes_read < file_size); - - const String content(buffer, bytes_read); - delete[] buffer; - - return content; -} - -#ifdef _MSC_VER -#pragma warning(pop) -#endif // _MSC_VER - -static CapturedStream* g_captured_stderr = NULL; -static CapturedStream* g_captured_stdout = NULL; - -// Starts capturing an output stream (stdout/stderr). -void CaptureStream(int fd, const char* stream_name, CapturedStream** stream) { - if (*stream != NULL) { - GTEST_LOG_(FATAL) << "Only one " << stream_name - << " capturer can exist at a time."; - } - *stream = new CapturedStream(fd); -} - -// Stops capturing the output stream and returns the captured string. -String GetCapturedStream(CapturedStream** captured_stream) { - const String content = (*captured_stream)->GetCapturedString(); - - delete *captured_stream; - *captured_stream = NULL; - - return content; -} - -// Starts capturing stdout. -void CaptureStdout() { - CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout); -} - -// Starts capturing stderr. -void CaptureStderr() { - CaptureStream(kStdErrFileno, "stderr", &g_captured_stderr); -} - -// Stops capturing stdout and returns the captured string. -String GetCapturedStdout() { return GetCapturedStream(&g_captured_stdout); } - -// Stops capturing stderr and returns the captured string. -String GetCapturedStderr() { return GetCapturedStream(&g_captured_stderr); } - -#endif // GTEST_HAS_STREAM_REDIRECTION_ - -#if GTEST_HAS_DEATH_TEST - -// A copy of all command line arguments. Set by InitGoogleTest(). -::std::vector g_argvs; - -// Returns the command line as a vector of strings. -const ::std::vector& GetArgvs() { return g_argvs; } - -#endif // GTEST_HAS_DEATH_TEST - -#if GTEST_OS_WINDOWS_MOBILE -namespace posix { -void Abort() { - DebugBreak(); - TerminateProcess(GetCurrentProcess(), 1); -} -} // namespace posix -#endif // GTEST_OS_WINDOWS_MOBILE - -// Returns the name of the environment variable corresponding to the -// given flag. For example, FlagToEnvVar("foo") will return -// "GTEST_FOO" in the open-source version. -static String FlagToEnvVar(const char* flag) { - const String full_flag = - (Message() << GTEST_FLAG_PREFIX_ << flag).GetString(); - - Message env_var; - for (size_t i = 0; i != full_flag.length(); i++) { - env_var << static_cast(toupper(full_flag.c_str()[i])); - } - - return env_var.GetString(); -} - -// Parses 'str' for a 32-bit signed integer. If successful, writes -// the result to *value and returns true; otherwise leaves *value -// unchanged and returns false. -bool ParseInt32(const Message& src_text, const char* str, Int32* value) { - // Parses the environment variable as a decimal integer. - char* end = NULL; - const long long_value = strtol(str, &end, 10); // NOLINT - - // Has strtol() consumed all characters in the string? - if (*end != '\0') { - // No - an invalid character was encountered. - Message msg; - msg << "WARNING: " << src_text - << " is expected to be a 32-bit integer, but actually" - << " has value \"" << str << "\".\n"; - printf("%s", msg.GetString().c_str()); - fflush(stdout); - return false; - } - - // Is the parsed value in the range of an Int32? - const Int32 result = static_cast(long_value); - if (long_value == LONG_MAX || long_value == LONG_MIN || - // The parsed value overflows as a long. (strtol() returns - // LONG_MAX or LONG_MIN when the input overflows.) - result != long_value - // The parsed value overflows as an Int32. - ) { - Message msg; - msg << "WARNING: " << src_text - << " is expected to be a 32-bit integer, but actually" - << " has value " << str << ", which overflows.\n"; - printf("%s", msg.GetString().c_str()); - fflush(stdout); - return false; - } - - *value = result; - return true; -} - -// Reads and returns the Boolean environment variable corresponding to -// the given flag; if it's not set, returns default_value. -// -// The value is considered true iff it's not "0". -bool BoolFromGTestEnv(const char* flag, bool default_value) { - const String env_var = FlagToEnvVar(flag); - const char* const string_value = posix::GetEnv(env_var.c_str()); - return string_value == NULL ? - default_value : strcmp(string_value, "0") != 0; -} - -// Reads and returns a 32-bit integer stored in the environment -// variable corresponding to the given flag; if it isn't set or -// doesn't represent a valid 32-bit integer, returns default_value. -Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { - const String env_var = FlagToEnvVar(flag); - const char* const string_value = posix::GetEnv(env_var.c_str()); - if (string_value == NULL) { - // The environment variable is not set. - return default_value; - } - - Int32 result = default_value; - if (!ParseInt32(Message() << "Environment variable " << env_var, - string_value, &result)) { - printf("The default value %s is used.\n", - (Message() << default_value).GetString().c_str()); - fflush(stdout); - return default_value; - } - - return result; -} - -// Reads and returns the string environment variable corresponding to -// the given flag; if it's not set, returns default_value. -const char* StringFromGTestEnv(const char* flag, const char* default_value) { - const String env_var = FlagToEnvVar(flag); - const char* const value = posix::GetEnv(env_var.c_str()); - return value == NULL ? default_value : value; -} - -} // namespace internal -} // namespace testing diff --git a/cpp/thirdparty/gtest-1.5.0/src/gtest-test-part.cc b/cpp/thirdparty/gtest-1.5.0/src/gtest-test-part.cc deleted file mode 100644 index 5d183a446..000000000 --- a/cpp/thirdparty/gtest-1.5.0/src/gtest-test-part.cc +++ /dev/null @@ -1,110 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: mheule@google.com (Markus Heule) -// -// The Google C++ Testing Framework (Google Test) - -#include - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -namespace testing { - -using internal::GetUnitTestImpl; - -// Gets the summary of the failure message by omitting the stack trace -// in it. -internal::String TestPartResult::ExtractSummary(const char* message) { - const char* const stack_trace = strstr(message, internal::kStackTraceMarker); - return stack_trace == NULL ? internal::String(message) : - internal::String(message, stack_trace - message); -} - -// Prints a TestPartResult object. -std::ostream& operator<<(std::ostream& os, const TestPartResult& result) { - return os - << result.file_name() << ":" << result.line_number() << ": " - << (result.type() == TestPartResult::kSuccess ? "Success" : - result.type() == TestPartResult::kFatalFailure ? "Fatal failure" : - "Non-fatal failure") << ":\n" - << result.message() << std::endl; -} - -// Appends a TestPartResult to the array. -void TestPartResultArray::Append(const TestPartResult& result) { - array_.push_back(result); -} - -// Returns the TestPartResult at the given index (0-based). -const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const { - if (index < 0 || index >= size()) { - printf("\nInvalid index (%d) into TestPartResultArray.\n", index); - internal::posix::Abort(); - } - - return array_[index]; -} - -// Returns the number of TestPartResult objects in the array. -int TestPartResultArray::size() const { - return static_cast(array_.size()); -} - -namespace internal { - -HasNewFatalFailureHelper::HasNewFatalFailureHelper() - : has_new_fatal_failure_(false), - original_reporter_(GetUnitTestImpl()-> - GetTestPartResultReporterForCurrentThread()) { - GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(this); -} - -HasNewFatalFailureHelper::~HasNewFatalFailureHelper() { - GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread( - original_reporter_); -} - -void HasNewFatalFailureHelper::ReportTestPartResult( - const TestPartResult& result) { - if (result.fatally_failed()) - has_new_fatal_failure_ = true; - original_reporter_->ReportTestPartResult(result); -} - -} // namespace internal - -} // namespace testing diff --git a/cpp/thirdparty/gtest-1.5.0/src/gtest-typed-test.cc b/cpp/thirdparty/gtest-1.5.0/src/gtest-typed-test.cc deleted file mode 100644 index 3cc4b5de2..000000000 --- a/cpp/thirdparty/gtest-1.5.0/src/gtest-typed-test.cc +++ /dev/null @@ -1,110 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#include -#include - -namespace testing { -namespace internal { - -#if GTEST_HAS_TYPED_TEST_P - -// Skips to the first non-space char in str. Returns an empty string if str -// contains only whitespace characters. -static const char* SkipSpaces(const char* str) { - while (isspace(*str)) - str++; - return str; -} - -// Verifies that registered_tests match the test names in -// defined_test_names_; returns registered_tests if successful, or -// aborts the program otherwise. -const char* TypedTestCasePState::VerifyRegisteredTestNames( - const char* file, int line, const char* registered_tests) { - typedef ::std::set::const_iterator DefinedTestIter; - registered_ = true; - - // Skip initial whitespace in registered_tests since some - // preprocessors prefix stringizied literals with whitespace. - registered_tests = SkipSpaces(registered_tests); - - Message errors; - ::std::set tests; - for (const char* names = registered_tests; names != NULL; - names = SkipComma(names)) { - const String name = GetPrefixUntilComma(names); - if (tests.count(name) != 0) { - errors << "Test " << name << " is listed more than once.\n"; - continue; - } - - bool found = false; - for (DefinedTestIter it = defined_test_names_.begin(); - it != defined_test_names_.end(); - ++it) { - if (name == *it) { - found = true; - break; - } - } - - if (found) { - tests.insert(name); - } else { - errors << "No test named " << name - << " can be found in this test case.\n"; - } - } - - for (DefinedTestIter it = defined_test_names_.begin(); - it != defined_test_names_.end(); - ++it) { - if (tests.count(*it) == 0) { - errors << "You forgot to list test " << *it << ".\n"; - } - } - - const String& errors_str = errors.GetString(); - if (errors_str != "") { - fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), - errors_str.c_str()); - fflush(stderr); - posix::Abort(); - } - - return registered_tests; -} - -#endif // GTEST_HAS_TYPED_TEST_P - -} // namespace internal -} // namespace testing diff --git a/cpp/thirdparty/gtest-1.5.0/src/gtest.cc b/cpp/thirdparty/gtest-1.5.0/src/gtest.cc deleted file mode 100644 index 342d4582b..000000000 --- a/cpp/thirdparty/gtest-1.5.0/src/gtest.cc +++ /dev/null @@ -1,4704 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// The Google C++ Testing Framework (Google Test) - -#include -#include - -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include - -#if GTEST_OS_LINUX - -// TODO(kenton@google.com): Use autoconf to detect availability of -// gettimeofday(). -#define GTEST_HAS_GETTIMEOFDAY_ 1 - -#include -#include -#include -// Declares vsnprintf(). This header is not available on Windows. -#include -#include -#include -#include -#include -#include - -#elif GTEST_OS_SYMBIAN -#define GTEST_HAS_GETTIMEOFDAY_ 1 -#include // NOLINT - -#elif GTEST_OS_ZOS -#define GTEST_HAS_GETTIMEOFDAY_ 1 -#include // NOLINT - -// On z/OS we additionally need strings.h for strcasecmp. -#include // NOLINT - -#elif GTEST_OS_WINDOWS_MOBILE // We are on Windows CE. - -#include // NOLINT - -#elif GTEST_OS_WINDOWS // We are on Windows proper. - -#include // NOLINT -#include // NOLINT -#include // NOLINT -#include // NOLINT - -#if GTEST_OS_WINDOWS_MINGW -// MinGW has gettimeofday() but not _ftime64(). -// TODO(kenton@google.com): Use autoconf to detect availability of -// gettimeofday(). -// TODO(kenton@google.com): There are other ways to get the time on -// Windows, like GetTickCount() or GetSystemTimeAsFileTime(). MinGW -// supports these. consider using them instead. -#define GTEST_HAS_GETTIMEOFDAY_ 1 -#include // NOLINT -#endif // GTEST_OS_WINDOWS_MINGW - -// cpplint thinks that the header is already included, so we want to -// silence it. -#include // NOLINT - -#else - -// Assume other platforms have gettimeofday(). -// TODO(kenton@google.com): Use autoconf to detect availability of -// gettimeofday(). -#define GTEST_HAS_GETTIMEOFDAY_ 1 - -// cpplint thinks that the header is already included, so we want to -// silence it. -#include // NOLINT -#include // NOLINT - -#endif // GTEST_OS_LINUX - -#if GTEST_HAS_EXCEPTIONS -#include -#endif - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -#if GTEST_OS_WINDOWS -#define vsnprintf _vsnprintf -#endif // GTEST_OS_WINDOWS - -namespace testing { - -using internal::CountIf; -using internal::ForEach; -using internal::GetElementOr; -using internal::Shuffle; - -// Constants. - -// A test whose test case name or test name matches this filter is -// disabled and not run. -static const char kDisableTestFilter[] = "DISABLED_*:*/DISABLED_*"; - -// A test case whose name matches this filter is considered a death -// test case and will be run before test cases whose name doesn't -// match this filter. -static const char kDeathTestCaseFilter[] = "*DeathTest:*DeathTest/*"; - -// A test filter that matches everything. -static const char kUniversalFilter[] = "*"; - -// The default output file for XML output. -static const char kDefaultOutputFile[] = "test_detail.xml"; - -// The environment variable name for the test shard index. -static const char kTestShardIndex[] = "GTEST_SHARD_INDEX"; -// The environment variable name for the total number of test shards. -static const char kTestTotalShards[] = "GTEST_TOTAL_SHARDS"; -// The environment variable name for the test shard status file. -static const char kTestShardStatusFile[] = "GTEST_SHARD_STATUS_FILE"; - -namespace internal { - -// The text used in failure messages to indicate the start of the -// stack trace. -const char kStackTraceMarker[] = "\nStack trace:\n"; - -// g_help_flag is true iff the --help flag or an equivalent form is -// specified on the command line. -bool g_help_flag = false; - -} // namespace internal - -GTEST_DEFINE_bool_( - also_run_disabled_tests, - internal::BoolFromGTestEnv("also_run_disabled_tests", false), - "Run disabled tests too, in addition to the tests normally being run."); - -GTEST_DEFINE_bool_( - break_on_failure, - internal::BoolFromGTestEnv("break_on_failure", false), - "True iff a failed assertion should be a debugger break-point."); - -GTEST_DEFINE_bool_( - catch_exceptions, - internal::BoolFromGTestEnv("catch_exceptions", false), - "True iff " GTEST_NAME_ - " should catch exceptions and treat them as test failures."); - -GTEST_DEFINE_string_( - color, - internal::StringFromGTestEnv("color", "auto"), - "Whether to use colors in the output. Valid values: yes, no, " - "and auto. 'auto' means to use colors if the output is " - "being sent to a terminal and the TERM environment variable " - "is set to xterm, xterm-color, xterm-256color, linux or cygwin."); - -GTEST_DEFINE_string_( - filter, - internal::StringFromGTestEnv("filter", kUniversalFilter), - "A colon-separated list of glob (not regex) patterns " - "for filtering the tests to run, optionally followed by a " - "'-' and a : separated list of negative patterns (tests to " - "exclude). A test is run if it matches one of the positive " - "patterns and does not match any of the negative patterns."); - -GTEST_DEFINE_bool_(list_tests, false, - "List all tests without running them."); - -GTEST_DEFINE_string_( - output, - internal::StringFromGTestEnv("output", ""), - "A format (currently must be \"xml\"), optionally followed " - "by a colon and an output file name or directory. A directory " - "is indicated by a trailing pathname separator. " - "Examples: \"xml:filename.xml\", \"xml::directoryname/\". " - "If a directory is specified, output files will be created " - "within that directory, with file-names based on the test " - "executable's name and, if necessary, made unique by adding " - "digits."); - -GTEST_DEFINE_bool_( - print_time, - internal::BoolFromGTestEnv("print_time", true), - "True iff " GTEST_NAME_ - " should display elapsed time in text output."); - -GTEST_DEFINE_int32_( - random_seed, - internal::Int32FromGTestEnv("random_seed", 0), - "Random number seed to use when shuffling test orders. Must be in range " - "[1, 99999], or 0 to use a seed based on the current time."); - -GTEST_DEFINE_int32_( - repeat, - internal::Int32FromGTestEnv("repeat", 1), - "How many times to repeat each test. Specify a negative number " - "for repeating forever. Useful for shaking out flaky tests."); - -GTEST_DEFINE_bool_( - show_internal_stack_frames, false, - "True iff " GTEST_NAME_ " should include internal stack frames when " - "printing test failure stack traces."); - -GTEST_DEFINE_bool_( - shuffle, - internal::BoolFromGTestEnv("shuffle", false), - "True iff " GTEST_NAME_ - " should randomize tests' order on every run."); - -GTEST_DEFINE_int32_( - stack_trace_depth, - internal::Int32FromGTestEnv("stack_trace_depth", kMaxStackTraceDepth), - "The maximum number of stack frames to print when an " - "assertion fails. The valid range is 0 through 100, inclusive."); - -GTEST_DEFINE_bool_( - throw_on_failure, - internal::BoolFromGTestEnv("throw_on_failure", false), - "When this flag is specified, a failed assertion will throw an exception " - "if exceptions are enabled or exit the program with a non-zero code " - "otherwise."); - -namespace internal { - -// Generates a random number from [0, range), using a Linear -// Congruential Generator (LCG). Crashes if 'range' is 0 or greater -// than kMaxRange. -UInt32 Random::Generate(UInt32 range) { - // These constants are the same as are used in glibc's rand(3). - state_ = (1103515245U*state_ + 12345U) % kMaxRange; - - GTEST_CHECK_(range > 0) - << "Cannot generate a number in the range [0, 0)."; - GTEST_CHECK_(range <= kMaxRange) - << "Generation of a number in [0, " << range << ") was requested, " - << "but this can only generate numbers in [0, " << kMaxRange << ")."; - - // Converting via modulus introduces a bit of downward bias, but - // it's simple, and a linear congruential generator isn't too good - // to begin with. - return state_ % range; -} - -// GTestIsInitialized() returns true iff the user has initialized -// Google Test. Useful for catching the user mistake of not initializing -// Google Test before calling RUN_ALL_TESTS(). -// -// A user must call testing::InitGoogleTest() to initialize Google -// Test. g_init_gtest_count is set to the number of times -// InitGoogleTest() has been called. We don't protect this variable -// under a mutex as it is only accessed in the main thread. -int g_init_gtest_count = 0; -static bool GTestIsInitialized() { return g_init_gtest_count != 0; } - -// Iterates over a vector of TestCases, keeping a running sum of the -// results of calling a given int-returning method on each. -// Returns the sum. -static int SumOverTestCaseList(const std::vector& case_list, - int (TestCase::*method)() const) { - int sum = 0; - for (size_t i = 0; i < case_list.size(); i++) { - sum += (case_list[i]->*method)(); - } - return sum; -} - -// Returns true iff the test case passed. -static bool TestCasePassed(const TestCase* test_case) { - return test_case->should_run() && test_case->Passed(); -} - -// Returns true iff the test case failed. -static bool TestCaseFailed(const TestCase* test_case) { - return test_case->should_run() && test_case->Failed(); -} - -// Returns true iff test_case contains at least one test that should -// run. -static bool ShouldRunTestCase(const TestCase* test_case) { - return test_case->should_run(); -} - -// AssertHelper constructor. -AssertHelper::AssertHelper(TestPartResult::Type type, - const char* file, - int line, - const char* message) - : data_(new AssertHelperData(type, file, line, message)) { -} - -AssertHelper::~AssertHelper() { - delete data_; -} - -// Message assignment, for assertion streaming support. -void AssertHelper::operator=(const Message& message) const { - UnitTest::GetInstance()-> - AddTestPartResult(data_->type, data_->file, data_->line, - AppendUserMessage(data_->message, message), - UnitTest::GetInstance()->impl() - ->CurrentOsStackTraceExceptTop(1) - // Skips the stack frame for this function itself. - ); // NOLINT -} - -// Mutex for linked pointers. -GTEST_DEFINE_STATIC_MUTEX_(g_linked_ptr_mutex); - -// Application pathname gotten in InitGoogleTest. -String g_executable_path; - -// Returns the current application's name, removing directory path if that -// is present. -FilePath GetCurrentExecutableName() { - FilePath result; - -#if GTEST_OS_WINDOWS - result.Set(FilePath(g_executable_path).RemoveExtension("exe")); -#else - result.Set(FilePath(g_executable_path)); -#endif // GTEST_OS_WINDOWS - - return result.RemoveDirectoryName(); -} - -// Functions for processing the gtest_output flag. - -// Returns the output format, or "" for normal printed output. -String UnitTestOptions::GetOutputFormat() { - const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); - if (gtest_output_flag == NULL) return String(""); - - const char* const colon = strchr(gtest_output_flag, ':'); - return (colon == NULL) ? - String(gtest_output_flag) : - String(gtest_output_flag, colon - gtest_output_flag); -} - -// Returns the name of the requested output file, or the default if none -// was explicitly specified. -String UnitTestOptions::GetAbsolutePathToOutputFile() { - const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); - if (gtest_output_flag == NULL) - return String(""); - - const char* const colon = strchr(gtest_output_flag, ':'); - if (colon == NULL) - return String(internal::FilePath::ConcatPaths( - internal::FilePath( - UnitTest::GetInstance()->original_working_dir()), - internal::FilePath(kDefaultOutputFile)).ToString() ); - - internal::FilePath output_name(colon + 1); - if (!output_name.IsAbsolutePath()) - // TODO(wan@google.com): on Windows \some\path is not an absolute - // path (as its meaning depends on the current drive), yet the - // following logic for turning it into an absolute path is wrong. - // Fix it. - output_name = internal::FilePath::ConcatPaths( - internal::FilePath(UnitTest::GetInstance()->original_working_dir()), - internal::FilePath(colon + 1)); - - if (!output_name.IsDirectory()) - return output_name.ToString(); - - internal::FilePath result(internal::FilePath::GenerateUniqueFileName( - output_name, internal::GetCurrentExecutableName(), - GetOutputFormat().c_str())); - return result.ToString(); -} - -// Returns true iff the wildcard pattern matches the string. The -// first ':' or '\0' character in pattern marks the end of it. -// -// This recursive algorithm isn't very efficient, but is clear and -// works well enough for matching test names, which are short. -bool UnitTestOptions::PatternMatchesString(const char *pattern, - const char *str) { - switch (*pattern) { - case '\0': - case ':': // Either ':' or '\0' marks the end of the pattern. - return *str == '\0'; - case '?': // Matches any single character. - return *str != '\0' && PatternMatchesString(pattern + 1, str + 1); - case '*': // Matches any string (possibly empty) of characters. - return (*str != '\0' && PatternMatchesString(pattern, str + 1)) || - PatternMatchesString(pattern + 1, str); - default: // Non-special character. Matches itself. - return *pattern == *str && - PatternMatchesString(pattern + 1, str + 1); - } -} - -bool UnitTestOptions::MatchesFilter(const String& name, const char* filter) { - const char *cur_pattern = filter; - for (;;) { - if (PatternMatchesString(cur_pattern, name.c_str())) { - return true; - } - - // Finds the next pattern in the filter. - cur_pattern = strchr(cur_pattern, ':'); - - // Returns if no more pattern can be found. - if (cur_pattern == NULL) { - return false; - } - - // Skips the pattern separater (the ':' character). - cur_pattern++; - } -} - -// TODO(keithray): move String function implementations to gtest-string.cc. - -// Returns true iff the user-specified filter matches the test case -// name and the test name. -bool UnitTestOptions::FilterMatchesTest(const String &test_case_name, - const String &test_name) { - const String& full_name = String::Format("%s.%s", - test_case_name.c_str(), - test_name.c_str()); - - // Split --gtest_filter at '-', if there is one, to separate into - // positive filter and negative filter portions - const char* const p = GTEST_FLAG(filter).c_str(); - const char* const dash = strchr(p, '-'); - String positive; - String negative; - if (dash == NULL) { - positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter - negative = String(""); - } else { - positive = String(p, dash - p); // Everything up to the dash - negative = String(dash+1); // Everything after the dash - if (positive.empty()) { - // Treat '-test1' as the same as '*-test1' - positive = kUniversalFilter; - } - } - - // A filter is a colon-separated list of patterns. It matches a - // test if any pattern in it matches the test. - return (MatchesFilter(full_name, positive.c_str()) && - !MatchesFilter(full_name, negative.c_str())); -} - -#if GTEST_OS_WINDOWS -// Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the -// given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. -// This function is useful as an __except condition. -int UnitTestOptions::GTestShouldProcessSEH(DWORD exception_code) { - // Google Test should handle an exception if: - // 1. the user wants it to, AND - // 2. this is not a breakpoint exception. - return (GTEST_FLAG(catch_exceptions) && - exception_code != EXCEPTION_BREAKPOINT) ? - EXCEPTION_EXECUTE_HANDLER : - EXCEPTION_CONTINUE_SEARCH; -} -#endif // GTEST_OS_WINDOWS - -} // namespace internal - -// The c'tor sets this object as the test part result reporter used by -// Google Test. The 'result' parameter specifies where to report the -// results. Intercepts only failures from the current thread. -ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( - TestPartResultArray* result) - : intercept_mode_(INTERCEPT_ONLY_CURRENT_THREAD), - result_(result) { - Init(); -} - -// The c'tor sets this object as the test part result reporter used by -// Google Test. The 'result' parameter specifies where to report the -// results. -ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( - InterceptMode intercept_mode, TestPartResultArray* result) - : intercept_mode_(intercept_mode), - result_(result) { - Init(); -} - -void ScopedFakeTestPartResultReporter::Init() { - internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); - if (intercept_mode_ == INTERCEPT_ALL_THREADS) { - old_reporter_ = impl->GetGlobalTestPartResultReporter(); - impl->SetGlobalTestPartResultReporter(this); - } else { - old_reporter_ = impl->GetTestPartResultReporterForCurrentThread(); - impl->SetTestPartResultReporterForCurrentThread(this); - } -} - -// The d'tor restores the test part result reporter used by Google Test -// before. -ScopedFakeTestPartResultReporter::~ScopedFakeTestPartResultReporter() { - internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); - if (intercept_mode_ == INTERCEPT_ALL_THREADS) { - impl->SetGlobalTestPartResultReporter(old_reporter_); - } else { - impl->SetTestPartResultReporterForCurrentThread(old_reporter_); - } -} - -// Increments the test part result count and remembers the result. -// This method is from the TestPartResultReporterInterface interface. -void ScopedFakeTestPartResultReporter::ReportTestPartResult( - const TestPartResult& result) { - result_->Append(result); -} - -namespace internal { - -// Returns the type ID of ::testing::Test. We should always call this -// instead of GetTypeId< ::testing::Test>() to get the type ID of -// testing::Test. This is to work around a suspected linker bug when -// using Google Test as a framework on Mac OS X. The bug causes -// GetTypeId< ::testing::Test>() to return different values depending -// on whether the call is from the Google Test framework itself or -// from user test code. GetTestTypeId() is guaranteed to always -// return the same value, as it always calls GetTypeId<>() from the -// gtest.cc, which is within the Google Test framework. -TypeId GetTestTypeId() { - return GetTypeId(); -} - -// The value of GetTestTypeId() as seen from within the Google Test -// library. This is solely for testing GetTestTypeId(). -extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId(); - -// This predicate-formatter checks that 'results' contains a test part -// failure of the given type and that the failure message contains the -// given substring. -AssertionResult HasOneFailure(const char* /* results_expr */, - const char* /* type_expr */, - const char* /* substr_expr */, - const TestPartResultArray& results, - TestPartResult::Type type, - const char* substr) { - const String expected(type == TestPartResult::kFatalFailure ? - "1 fatal failure" : - "1 non-fatal failure"); - Message msg; - if (results.size() != 1) { - msg << "Expected: " << expected << "\n" - << " Actual: " << results.size() << " failures"; - for (int i = 0; i < results.size(); i++) { - msg << "\n" << results.GetTestPartResult(i); - } - return AssertionFailure(msg); - } - - const TestPartResult& r = results.GetTestPartResult(0); - if (r.type() != type) { - msg << "Expected: " << expected << "\n" - << " Actual:\n" - << r; - return AssertionFailure(msg); - } - - if (strstr(r.message(), substr) == NULL) { - msg << "Expected: " << expected << " containing \"" - << substr << "\"\n" - << " Actual:\n" - << r; - return AssertionFailure(msg); - } - - return AssertionSuccess(); -} - -// The constructor of SingleFailureChecker remembers where to look up -// test part results, what type of failure we expect, and what -// substring the failure message should contain. -SingleFailureChecker:: SingleFailureChecker( - const TestPartResultArray* results, - TestPartResult::Type type, - const char* substr) - : results_(results), - type_(type), - substr_(substr) {} - -// The destructor of SingleFailureChecker verifies that the given -// TestPartResultArray contains exactly one failure that has the given -// type and contains the given substring. If that's not the case, a -// non-fatal failure will be generated. -SingleFailureChecker::~SingleFailureChecker() { - EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_.c_str()); -} - -DefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter( - UnitTestImpl* unit_test) : unit_test_(unit_test) {} - -void DefaultGlobalTestPartResultReporter::ReportTestPartResult( - const TestPartResult& result) { - unit_test_->current_test_result()->AddTestPartResult(result); - unit_test_->listeners()->repeater()->OnTestPartResult(result); -} - -DefaultPerThreadTestPartResultReporter::DefaultPerThreadTestPartResultReporter( - UnitTestImpl* unit_test) : unit_test_(unit_test) {} - -void DefaultPerThreadTestPartResultReporter::ReportTestPartResult( - const TestPartResult& result) { - unit_test_->GetGlobalTestPartResultReporter()->ReportTestPartResult(result); -} - -// Returns the global test part result reporter. -TestPartResultReporterInterface* -UnitTestImpl::GetGlobalTestPartResultReporter() { - internal::MutexLock lock(&global_test_part_result_reporter_mutex_); - return global_test_part_result_repoter_; -} - -// Sets the global test part result reporter. -void UnitTestImpl::SetGlobalTestPartResultReporter( - TestPartResultReporterInterface* reporter) { - internal::MutexLock lock(&global_test_part_result_reporter_mutex_); - global_test_part_result_repoter_ = reporter; -} - -// Returns the test part result reporter for the current thread. -TestPartResultReporterInterface* -UnitTestImpl::GetTestPartResultReporterForCurrentThread() { - return per_thread_test_part_result_reporter_.get(); -} - -// Sets the test part result reporter for the current thread. -void UnitTestImpl::SetTestPartResultReporterForCurrentThread( - TestPartResultReporterInterface* reporter) { - per_thread_test_part_result_reporter_.set(reporter); -} - -// Gets the number of successful test cases. -int UnitTestImpl::successful_test_case_count() const { - return CountIf(test_cases_, TestCasePassed); -} - -// Gets the number of failed test cases. -int UnitTestImpl::failed_test_case_count() const { - return CountIf(test_cases_, TestCaseFailed); -} - -// Gets the number of all test cases. -int UnitTestImpl::total_test_case_count() const { - return static_cast(test_cases_.size()); -} - -// Gets the number of all test cases that contain at least one test -// that should run. -int UnitTestImpl::test_case_to_run_count() const { - return CountIf(test_cases_, ShouldRunTestCase); -} - -// Gets the number of successful tests. -int UnitTestImpl::successful_test_count() const { - return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count); -} - -// Gets the number of failed tests. -int UnitTestImpl::failed_test_count() const { - return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count); -} - -// Gets the number of disabled tests. -int UnitTestImpl::disabled_test_count() const { - return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count); -} - -// Gets the number of all tests. -int UnitTestImpl::total_test_count() const { - return SumOverTestCaseList(test_cases_, &TestCase::total_test_count); -} - -// Gets the number of tests that should run. -int UnitTestImpl::test_to_run_count() const { - return SumOverTestCaseList(test_cases_, &TestCase::test_to_run_count); -} - -// Returns the current OS stack trace as a String. -// -// The maximum number of stack frames to be included is specified by -// the gtest_stack_trace_depth flag. The skip_count parameter -// specifies the number of top frames to be skipped, which doesn't -// count against the number of frames to be included. -// -// For example, if Foo() calls Bar(), which in turn calls -// CurrentOsStackTraceExceptTop(1), Foo() will be included in the -// trace but Bar() and CurrentOsStackTraceExceptTop() won't. -String UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { - (void)skip_count; - return String(""); -} - -// Returns the current time in milliseconds. -TimeInMillis GetTimeInMillis() { -#if GTEST_OS_WINDOWS_MOBILE || defined(__BORLANDC__) - // Difference between 1970-01-01 and 1601-01-01 in milliseconds. - // http://analogous.blogspot.com/2005/04/epoch.html - const TimeInMillis kJavaEpochToWinFileTimeDelta = - static_cast(116444736UL) * 100000UL; - const DWORD kTenthMicrosInMilliSecond = 10000; - - SYSTEMTIME now_systime; - FILETIME now_filetime; - ULARGE_INTEGER now_int64; - // TODO(kenton@google.com): Shouldn't this just use - // GetSystemTimeAsFileTime()? - GetSystemTime(&now_systime); - if (SystemTimeToFileTime(&now_systime, &now_filetime)) { - now_int64.LowPart = now_filetime.dwLowDateTime; - now_int64.HighPart = now_filetime.dwHighDateTime; - now_int64.QuadPart = (now_int64.QuadPart / kTenthMicrosInMilliSecond) - - kJavaEpochToWinFileTimeDelta; - return now_int64.QuadPart; - } - return 0; -#elif GTEST_OS_WINDOWS && !GTEST_HAS_GETTIMEOFDAY_ - __timeb64 now; -#ifdef _MSC_VER - // MSVC 8 deprecates _ftime64(), so we want to suppress warning 4996 - // (deprecated function) there. - // TODO(kenton@google.com): Use GetTickCount()? Or use - // SystemTimeToFileTime() -#pragma warning(push) // Saves the current warning state. -#pragma warning(disable:4996) // Temporarily disables warning 4996. - _ftime64(&now); -#pragma warning(pop) // Restores the warning state. -#else - _ftime64(&now); -#endif // _MSC_VER - return static_cast(now.time) * 1000 + now.millitm; -#elif GTEST_HAS_GETTIMEOFDAY_ - struct timeval now; - gettimeofday(&now, NULL); - return static_cast(now.tv_sec) * 1000 + now.tv_usec / 1000; -#else -#error "Don't know how to get the current time on your system." -#endif -} - -// Utilities - -// class String - -// Returns the input enclosed in double quotes if it's not NULL; -// otherwise returns "(null)". For example, "\"Hello\"" is returned -// for input "Hello". -// -// This is useful for printing a C string in the syntax of a literal. -// -// Known issue: escape sequences are not handled yet. -String String::ShowCStringQuoted(const char* c_str) { - return c_str ? String::Format("\"%s\"", c_str) : String("(null)"); -} - -// Copies at most length characters from str into a newly-allocated -// piece of memory of size length+1. The memory is allocated with new[]. -// A terminating null byte is written to the memory, and a pointer to it -// is returned. If str is NULL, NULL is returned. -static char* CloneString(const char* str, size_t length) { - if (str == NULL) { - return NULL; - } else { - char* const clone = new char[length + 1]; - posix::StrNCpy(clone, str, length); - clone[length] = '\0'; - return clone; - } -} - -// Clones a 0-terminated C string, allocating memory using new. The -// caller is responsible for deleting[] the return value. Returns the -// cloned string, or NULL if the input is NULL. -const char * String::CloneCString(const char* c_str) { - return (c_str == NULL) ? - NULL : CloneString(c_str, strlen(c_str)); -} - -#if GTEST_OS_WINDOWS_MOBILE -// Creates a UTF-16 wide string from the given ANSI string, allocating -// memory using new. The caller is responsible for deleting the return -// value using delete[]. Returns the wide string, or NULL if the -// input is NULL. -LPCWSTR String::AnsiToUtf16(const char* ansi) { - if (!ansi) return NULL; - const int length = strlen(ansi); - const int unicode_length = - MultiByteToWideChar(CP_ACP, 0, ansi, length, - NULL, 0); - WCHAR* unicode = new WCHAR[unicode_length + 1]; - MultiByteToWideChar(CP_ACP, 0, ansi, length, - unicode, unicode_length); - unicode[unicode_length] = 0; - return unicode; -} - -// Creates an ANSI string from the given wide string, allocating -// memory using new. The caller is responsible for deleting the return -// value using delete[]. Returns the ANSI string, or NULL if the -// input is NULL. -const char* String::Utf16ToAnsi(LPCWSTR utf16_str) { - if (!utf16_str) return NULL; - const int ansi_length = - WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, - NULL, 0, NULL, NULL); - char* ansi = new char[ansi_length + 1]; - WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, - ansi, ansi_length, NULL, NULL); - ansi[ansi_length] = 0; - return ansi; -} - -#endif // GTEST_OS_WINDOWS_MOBILE - -// Compares two C strings. Returns true iff they have the same content. -// -// Unlike strcmp(), this function can handle NULL argument(s). A NULL -// C string is considered different to any non-NULL C string, -// including the empty string. -bool String::CStringEquals(const char * lhs, const char * rhs) { - if ( lhs == NULL ) return rhs == NULL; - - if ( rhs == NULL ) return false; - - return strcmp(lhs, rhs) == 0; -} - -#if GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING - -// Converts an array of wide chars to a narrow string using the UTF-8 -// encoding, and streams the result to the given Message object. -static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, - Message* msg) { - // TODO(wan): consider allowing a testing::String object to - // contain '\0'. This will make it behave more like std::string, - // and will allow ToUtf8String() to return the correct encoding - // for '\0' s.t. we can get rid of the conditional here (and in - // several other places). - for (size_t i = 0; i != length; ) { // NOLINT - if (wstr[i] != L'\0') { - *msg << WideStringToUtf8(wstr + i, static_cast(length - i)); - while (i != length && wstr[i] != L'\0') - i++; - } else { - *msg << '\0'; - i++; - } - } -} - -#endif // GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING - -} // namespace internal - -#if GTEST_HAS_STD_WSTRING -// Converts the given wide string to a narrow string using the UTF-8 -// encoding, and streams the result to this Message object. -Message& Message::operator <<(const ::std::wstring& wstr) { - internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); - return *this; -} -#endif // GTEST_HAS_STD_WSTRING - -#if GTEST_HAS_GLOBAL_WSTRING -// Converts the given wide string to a narrow string using the UTF-8 -// encoding, and streams the result to this Message object. -Message& Message::operator <<(const ::wstring& wstr) { - internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); - return *this; -} -#endif // GTEST_HAS_GLOBAL_WSTRING - -namespace internal { - -// Formats a value to be used in a failure message. - -// For a char value, we print it as a C++ char literal and as an -// unsigned integer (both in decimal and in hexadecimal). -String FormatForFailureMessage(char ch) { - const unsigned int ch_as_uint = ch; - // A String object cannot contain '\0', so we print "\\0" when ch is - // '\0'. - return String::Format("'%s' (%u, 0x%X)", - ch ? String::Format("%c", ch).c_str() : "\\0", - ch_as_uint, ch_as_uint); -} - -// For a wchar_t value, we print it as a C++ wchar_t literal and as an -// unsigned integer (both in decimal and in hexidecimal). -String FormatForFailureMessage(wchar_t wchar) { - // The C++ standard doesn't specify the exact size of the wchar_t - // type. It just says that it shall have the same size as another - // integral type, called its underlying type. - // - // Therefore, in order to print a wchar_t value in the numeric form, - // we first convert it to the largest integral type (UInt64) and - // then print the converted value. - // - // We use streaming to print the value as "%llu" doesn't work - // correctly with MSVC 7.1. - const UInt64 wchar_as_uint64 = wchar; - Message msg; - // A String object cannot contain '\0', so we print "\\0" when wchar is - // L'\0'. - char buffer[32]; // CodePointToUtf8 requires a buffer that big. - msg << "L'" - << (wchar ? CodePointToUtf8(static_cast(wchar), buffer) : "\\0") - << "' (" << wchar_as_uint64 << ", 0x" << ::std::setbase(16) - << wchar_as_uint64 << ")"; - return msg.GetString(); -} - -} // namespace internal - -// AssertionResult constructors. -// Used in EXPECT_TRUE/FALSE(assertion_result). -AssertionResult::AssertionResult(const AssertionResult& other) - : success_(other.success_), - message_(other.message_.get() != NULL ? - new internal::String(*other.message_) : - static_cast(NULL)) { -} - -// Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. -AssertionResult AssertionResult::operator!() const { - AssertionResult negation(!success_); - if (message_.get() != NULL) - negation << *message_; - return negation; -} - -// Makes a successful assertion result. -AssertionResult AssertionSuccess() { - return AssertionResult(true); -} - -// Makes a failed assertion result. -AssertionResult AssertionFailure() { - return AssertionResult(false); -} - -// Makes a failed assertion result with the given failure message. -// Deprecated; use AssertionFailure() << message. -AssertionResult AssertionFailure(const Message& message) { - return AssertionFailure() << message; -} - -namespace internal { - -// Constructs and returns the message for an equality assertion -// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. -// -// The first four parameters are the expressions used in the assertion -// and their values, as strings. For example, for ASSERT_EQ(foo, bar) -// where foo is 5 and bar is 6, we have: -// -// expected_expression: "foo" -// actual_expression: "bar" -// expected_value: "5" -// actual_value: "6" -// -// The ignoring_case parameter is true iff the assertion is a -// *_STRCASEEQ*. When it's true, the string " (ignoring case)" will -// be inserted into the message. -AssertionResult EqFailure(const char* expected_expression, - const char* actual_expression, - const String& expected_value, - const String& actual_value, - bool ignoring_case) { - Message msg; - msg << "Value of: " << actual_expression; - if (actual_value != actual_expression) { - msg << "\n Actual: " << actual_value; - } - - msg << "\nExpected: " << expected_expression; - if (ignoring_case) { - msg << " (ignoring case)"; - } - if (expected_value != expected_expression) { - msg << "\nWhich is: " << expected_value; - } - - return AssertionFailure(msg); -} - -// Constructs a failure message for Boolean assertions such as EXPECT_TRUE. -String GetBoolAssertionFailureMessage(const AssertionResult& assertion_result, - const char* expression_text, - const char* actual_predicate_value, - const char* expected_predicate_value) { - const char* actual_message = assertion_result.message(); - Message msg; - msg << "Value of: " << expression_text - << "\n Actual: " << actual_predicate_value; - if (actual_message[0] != '\0') - msg << " (" << actual_message << ")"; - msg << "\nExpected: " << expected_predicate_value; - return msg.GetString(); -} - -// Helper function for implementing ASSERT_NEAR. -AssertionResult DoubleNearPredFormat(const char* expr1, - const char* expr2, - const char* abs_error_expr, - double val1, - double val2, - double abs_error) { - const double diff = fabs(val1 - val2); - if (diff <= abs_error) return AssertionSuccess(); - - // TODO(wan): do not print the value of an expression if it's - // already a literal. - Message msg; - msg << "The difference between " << expr1 << " and " << expr2 - << " is " << diff << ", which exceeds " << abs_error_expr << ", where\n" - << expr1 << " evaluates to " << val1 << ",\n" - << expr2 << " evaluates to " << val2 << ", and\n" - << abs_error_expr << " evaluates to " << abs_error << "."; - return AssertionFailure(msg); -} - - -// Helper template for implementing FloatLE() and DoubleLE(). -template -AssertionResult FloatingPointLE(const char* expr1, - const char* expr2, - RawType val1, - RawType val2) { - // Returns success if val1 is less than val2, - if (val1 < val2) { - return AssertionSuccess(); - } - - // or if val1 is almost equal to val2. - const FloatingPoint lhs(val1), rhs(val2); - if (lhs.AlmostEquals(rhs)) { - return AssertionSuccess(); - } - - // Note that the above two checks will both fail if either val1 or - // val2 is NaN, as the IEEE floating-point standard requires that - // any predicate involving a NaN must return false. - - StrStream val1_ss; - val1_ss << std::setprecision(std::numeric_limits::digits10 + 2) - << val1; - - StrStream val2_ss; - val2_ss << std::setprecision(std::numeric_limits::digits10 + 2) - << val2; - - Message msg; - msg << "Expected: (" << expr1 << ") <= (" << expr2 << ")\n" - << " Actual: " << StrStreamToString(&val1_ss) << " vs " - << StrStreamToString(&val2_ss); - - return AssertionFailure(msg); -} - -} // namespace internal - -// Asserts that val1 is less than, or almost equal to, val2. Fails -// otherwise. In particular, it fails if either val1 or val2 is NaN. -AssertionResult FloatLE(const char* expr1, const char* expr2, - float val1, float val2) { - return internal::FloatingPointLE(expr1, expr2, val1, val2); -} - -// Asserts that val1 is less than, or almost equal to, val2. Fails -// otherwise. In particular, it fails if either val1 or val2 is NaN. -AssertionResult DoubleLE(const char* expr1, const char* expr2, - double val1, double val2) { - return internal::FloatingPointLE(expr1, expr2, val1, val2); -} - -namespace internal { - -// The helper function for {ASSERT|EXPECT}_EQ with int or enum -// arguments. -AssertionResult CmpHelperEQ(const char* expected_expression, - const char* actual_expression, - BiggestInt expected, - BiggestInt actual) { - if (expected == actual) { - return AssertionSuccess(); - } - - return EqFailure(expected_expression, - actual_expression, - FormatForComparisonFailureMessage(expected, actual), - FormatForComparisonFailureMessage(actual, expected), - false); -} - -// A macro for implementing the helper functions needed to implement -// ASSERT_?? and EXPECT_?? with integer or enum arguments. It is here -// just to avoid copy-and-paste of similar code. -#define GTEST_IMPL_CMP_HELPER_(op_name, op)\ -AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ - BiggestInt val1, BiggestInt val2) {\ - if (val1 op val2) {\ - return AssertionSuccess();\ - } else {\ - Message msg;\ - msg << "Expected: (" << expr1 << ") " #op " (" << expr2\ - << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\ - << " vs " << FormatForComparisonFailureMessage(val2, val1);\ - return AssertionFailure(msg);\ - }\ -} - -// Implements the helper function for {ASSERT|EXPECT}_NE with int or -// enum arguments. -GTEST_IMPL_CMP_HELPER_(NE, !=) -// Implements the helper function for {ASSERT|EXPECT}_LE with int or -// enum arguments. -GTEST_IMPL_CMP_HELPER_(LE, <=) -// Implements the helper function for {ASSERT|EXPECT}_LT with int or -// enum arguments. -GTEST_IMPL_CMP_HELPER_(LT, < ) -// Implements the helper function for {ASSERT|EXPECT}_GE with int or -// enum arguments. -GTEST_IMPL_CMP_HELPER_(GE, >=) -// Implements the helper function for {ASSERT|EXPECT}_GT with int or -// enum arguments. -GTEST_IMPL_CMP_HELPER_(GT, > ) - -#undef GTEST_IMPL_CMP_HELPER_ - -// The helper function for {ASSERT|EXPECT}_STREQ. -AssertionResult CmpHelperSTREQ(const char* expected_expression, - const char* actual_expression, - const char* expected, - const char* actual) { - if (String::CStringEquals(expected, actual)) { - return AssertionSuccess(); - } - - return EqFailure(expected_expression, - actual_expression, - String::ShowCStringQuoted(expected), - String::ShowCStringQuoted(actual), - false); -} - -// The helper function for {ASSERT|EXPECT}_STRCASEEQ. -AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression, - const char* actual_expression, - const char* expected, - const char* actual) { - if (String::CaseInsensitiveCStringEquals(expected, actual)) { - return AssertionSuccess(); - } - - return EqFailure(expected_expression, - actual_expression, - String::ShowCStringQuoted(expected), - String::ShowCStringQuoted(actual), - true); -} - -// The helper function for {ASSERT|EXPECT}_STRNE. -AssertionResult CmpHelperSTRNE(const char* s1_expression, - const char* s2_expression, - const char* s1, - const char* s2) { - if (!String::CStringEquals(s1, s2)) { - return AssertionSuccess(); - } else { - Message msg; - msg << "Expected: (" << s1_expression << ") != (" - << s2_expression << "), actual: \"" - << s1 << "\" vs \"" << s2 << "\""; - return AssertionFailure(msg); - } -} - -// The helper function for {ASSERT|EXPECT}_STRCASENE. -AssertionResult CmpHelperSTRCASENE(const char* s1_expression, - const char* s2_expression, - const char* s1, - const char* s2) { - if (!String::CaseInsensitiveCStringEquals(s1, s2)) { - return AssertionSuccess(); - } else { - Message msg; - msg << "Expected: (" << s1_expression << ") != (" - << s2_expression << ") (ignoring case), actual: \"" - << s1 << "\" vs \"" << s2 << "\""; - return AssertionFailure(msg); - } -} - -} // namespace internal - -namespace { - -// Helper functions for implementing IsSubString() and IsNotSubstring(). - -// This group of overloaded functions return true iff needle is a -// substring of haystack. NULL is considered a substring of itself -// only. - -bool IsSubstringPred(const char* needle, const char* haystack) { - if (needle == NULL || haystack == NULL) - return needle == haystack; - - return strstr(haystack, needle) != NULL; -} - -bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) { - if (needle == NULL || haystack == NULL) - return needle == haystack; - - return wcsstr(haystack, needle) != NULL; -} - -// StringType here can be either ::std::string or ::std::wstring. -template -bool IsSubstringPred(const StringType& needle, - const StringType& haystack) { - return haystack.find(needle) != StringType::npos; -} - -// This function implements either IsSubstring() or IsNotSubstring(), -// depending on the value of the expected_to_be_substring parameter. -// StringType here can be const char*, const wchar_t*, ::std::string, -// or ::std::wstring. -template -AssertionResult IsSubstringImpl( - bool expected_to_be_substring, - const char* needle_expr, const char* haystack_expr, - const StringType& needle, const StringType& haystack) { - if (IsSubstringPred(needle, haystack) == expected_to_be_substring) - return AssertionSuccess(); - - const bool is_wide_string = sizeof(needle[0]) > 1; - const char* const begin_string_quote = is_wide_string ? "L\"" : "\""; - return AssertionFailure( - Message() - << "Value of: " << needle_expr << "\n" - << " Actual: " << begin_string_quote << needle << "\"\n" - << "Expected: " << (expected_to_be_substring ? "" : "not ") - << "a substring of " << haystack_expr << "\n" - << "Which is: " << begin_string_quote << haystack << "\""); -} - -} // namespace - -// IsSubstring() and IsNotSubstring() check whether needle is a -// substring of haystack (NULL is considered a substring of itself -// only), and return an appropriate error message when they fail. - -AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const char* needle, const char* haystack) { - return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const wchar_t* needle, const wchar_t* haystack) { - return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const char* needle, const char* haystack) { - return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const wchar_t* needle, const wchar_t* haystack) { - return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::string& needle, const ::std::string& haystack) { - return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::string& needle, const ::std::string& haystack) { - return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); -} - -#if GTEST_HAS_STD_WSTRING -AssertionResult IsSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::wstring& needle, const ::std::wstring& haystack) { - return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); -} - -AssertionResult IsNotSubstring( - const char* needle_expr, const char* haystack_expr, - const ::std::wstring& needle, const ::std::wstring& haystack) { - return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); -} -#endif // GTEST_HAS_STD_WSTRING - -namespace internal { - -#if GTEST_OS_WINDOWS - -namespace { - -// Helper function for IsHRESULT{SuccessFailure} predicates -AssertionResult HRESULTFailureHelper(const char* expr, - const char* expected, - long hr) { // NOLINT -#if GTEST_OS_WINDOWS_MOBILE - // Windows CE doesn't support FormatMessage. - const char error_text[] = ""; -#else - // Looks up the human-readable system message for the HRESULT code - // and since we're not passing any params to FormatMessage, we don't - // want inserts expanded. - const DWORD kFlags = FORMAT_MESSAGE_FROM_SYSTEM | - FORMAT_MESSAGE_IGNORE_INSERTS; - const DWORD kBufSize = 4096; // String::Format can't exceed this length. - // Gets the system's human readable message string for this HRESULT. - char error_text[kBufSize] = { '\0' }; - DWORD message_length = ::FormatMessageA(kFlags, - 0, // no source, we're asking system - hr, // the error - 0, // no line width restrictions - error_text, // output buffer - kBufSize, // buf size - NULL); // no arguments for inserts - // Trims tailing white space (FormatMessage leaves a trailing cr-lf) - for (; message_length && isspace(error_text[message_length - 1]); - --message_length) { - error_text[message_length - 1] = '\0'; - } -#endif // GTEST_OS_WINDOWS_MOBILE - - const String error_hex(String::Format("0x%08X ", hr)); - Message msg; - msg << "Expected: " << expr << " " << expected << ".\n" - << " Actual: " << error_hex << error_text << "\n"; - - return ::testing::AssertionFailure(msg); -} - -} // namespace - -AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT - if (SUCCEEDED(hr)) { - return AssertionSuccess(); - } - return HRESULTFailureHelper(expr, "succeeds", hr); -} - -AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT - if (FAILED(hr)) { - return AssertionSuccess(); - } - return HRESULTFailureHelper(expr, "fails", hr); -} - -#endif // GTEST_OS_WINDOWS - -// Utility functions for encoding Unicode text (wide strings) in -// UTF-8. - -// A Unicode code-point can have upto 21 bits, and is encoded in UTF-8 -// like this: -// -// Code-point length Encoding -// 0 - 7 bits 0xxxxxxx -// 8 - 11 bits 110xxxxx 10xxxxxx -// 12 - 16 bits 1110xxxx 10xxxxxx 10xxxxxx -// 17 - 21 bits 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx - -// The maximum code-point a one-byte UTF-8 sequence can represent. -const UInt32 kMaxCodePoint1 = (static_cast(1) << 7) - 1; - -// The maximum code-point a two-byte UTF-8 sequence can represent. -const UInt32 kMaxCodePoint2 = (static_cast(1) << (5 + 6)) - 1; - -// The maximum code-point a three-byte UTF-8 sequence can represent. -const UInt32 kMaxCodePoint3 = (static_cast(1) << (4 + 2*6)) - 1; - -// The maximum code-point a four-byte UTF-8 sequence can represent. -const UInt32 kMaxCodePoint4 = (static_cast(1) << (3 + 3*6)) - 1; - -// Chops off the n lowest bits from a bit pattern. Returns the n -// lowest bits. As a side effect, the original bit pattern will be -// shifted to the right by n bits. -inline UInt32 ChopLowBits(UInt32* bits, int n) { - const UInt32 low_bits = *bits & ((static_cast(1) << n) - 1); - *bits >>= n; - return low_bits; -} - -// Converts a Unicode code point to a narrow string in UTF-8 encoding. -// code_point parameter is of type UInt32 because wchar_t may not be -// wide enough to contain a code point. -// The output buffer str must containt at least 32 characters. -// The function returns the address of the output buffer. -// If the code_point is not a valid Unicode code point -// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be output -// as '(Invalid Unicode 0xXXXXXXXX)'. -char* CodePointToUtf8(UInt32 code_point, char* str) { - if (code_point <= kMaxCodePoint1) { - str[1] = '\0'; - str[0] = static_cast(code_point); // 0xxxxxxx - } else if (code_point <= kMaxCodePoint2) { - str[2] = '\0'; - str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[0] = static_cast(0xC0 | code_point); // 110xxxxx - } else if (code_point <= kMaxCodePoint3) { - str[3] = '\0'; - str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[0] = static_cast(0xE0 | code_point); // 1110xxxx - } else if (code_point <= kMaxCodePoint4) { - str[4] = '\0'; - str[3] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx - str[0] = static_cast(0xF0 | code_point); // 11110xxx - } else { - // The longest string String::Format can produce when invoked - // with these parameters is 28 character long (not including - // the terminating nul character). We are asking for 32 character - // buffer just in case. This is also enough for strncpy to - // null-terminate the destination string. - posix::StrNCpy( - str, String::Format("(Invalid Unicode 0x%X)", code_point).c_str(), 32); - str[31] = '\0'; // Makes sure no change in the format to strncpy leaves - // the result unterminated. - } - return str; -} - -// The following two functions only make sense if the the system -// uses UTF-16 for wide string encoding. All supported systems -// with 16 bit wchar_t (Windows, Cygwin, Symbian OS) do use UTF-16. - -// Determines if the arguments constitute UTF-16 surrogate pair -// and thus should be combined into a single Unicode code point -// using CreateCodePointFromUtf16SurrogatePair. -inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { - return sizeof(wchar_t) == 2 && - (first & 0xFC00) == 0xD800 && (second & 0xFC00) == 0xDC00; -} - -// Creates a Unicode code point from UTF16 surrogate pair. -inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, - wchar_t second) { - const UInt32 mask = (1 << 10) - 1; - return (sizeof(wchar_t) == 2) ? - (((first & mask) << 10) | (second & mask)) + 0x10000 : - // This function should not be called when the condition is - // false, but we provide a sensible default in case it is. - static_cast(first); -} - -// Converts a wide string to a narrow string in UTF-8 encoding. -// The wide string is assumed to have the following encoding: -// UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) -// UTF-32 if sizeof(wchar_t) == 4 (on Linux) -// Parameter str points to a null-terminated wide string. -// Parameter num_chars may additionally limit the number -// of wchar_t characters processed. -1 is used when the entire string -// should be processed. -// If the string contains code points that are not valid Unicode code points -// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output -// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding -// and contains invalid UTF-16 surrogate pairs, values in those pairs -// will be encoded as individual Unicode characters from Basic Normal Plane. -String WideStringToUtf8(const wchar_t* str, int num_chars) { - if (num_chars == -1) - num_chars = static_cast(wcslen(str)); - - StrStream stream; - for (int i = 0; i < num_chars; ++i) { - UInt32 unicode_code_point; - - if (str[i] == L'\0') { - break; - } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) { - unicode_code_point = CreateCodePointFromUtf16SurrogatePair(str[i], - str[i + 1]); - i++; - } else { - unicode_code_point = static_cast(str[i]); - } - - char buffer[32]; // CodePointToUtf8 requires a buffer this big. - stream << CodePointToUtf8(unicode_code_point, buffer); - } - return StrStreamToString(&stream); -} - -// Converts a wide C string to a String using the UTF-8 encoding. -// NULL will be converted to "(null)". -String String::ShowWideCString(const wchar_t * wide_c_str) { - if (wide_c_str == NULL) return String("(null)"); - - return String(internal::WideStringToUtf8(wide_c_str, -1).c_str()); -} - -// Similar to ShowWideCString(), except that this function encloses -// the converted string in double quotes. -String String::ShowWideCStringQuoted(const wchar_t* wide_c_str) { - if (wide_c_str == NULL) return String("(null)"); - - return String::Format("L\"%s\"", - String::ShowWideCString(wide_c_str).c_str()); -} - -// Compares two wide C strings. Returns true iff they have the same -// content. -// -// Unlike wcscmp(), this function can handle NULL argument(s). A NULL -// C string is considered different to any non-NULL C string, -// including the empty string. -bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) { - if (lhs == NULL) return rhs == NULL; - - if (rhs == NULL) return false; - - return wcscmp(lhs, rhs) == 0; -} - -// Helper function for *_STREQ on wide strings. -AssertionResult CmpHelperSTREQ(const char* expected_expression, - const char* actual_expression, - const wchar_t* expected, - const wchar_t* actual) { - if (String::WideCStringEquals(expected, actual)) { - return AssertionSuccess(); - } - - return EqFailure(expected_expression, - actual_expression, - String::ShowWideCStringQuoted(expected), - String::ShowWideCStringQuoted(actual), - false); -} - -// Helper function for *_STRNE on wide strings. -AssertionResult CmpHelperSTRNE(const char* s1_expression, - const char* s2_expression, - const wchar_t* s1, - const wchar_t* s2) { - if (!String::WideCStringEquals(s1, s2)) { - return AssertionSuccess(); - } - - Message msg; - msg << "Expected: (" << s1_expression << ") != (" - << s2_expression << "), actual: " - << String::ShowWideCStringQuoted(s1) - << " vs " << String::ShowWideCStringQuoted(s2); - return AssertionFailure(msg); -} - -// Compares two C strings, ignoring case. Returns true iff they have -// the same content. -// -// Unlike strcasecmp(), this function can handle NULL argument(s). A -// NULL C string is considered different to any non-NULL C string, -// including the empty string. -bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) { - if (lhs == NULL) - return rhs == NULL; - if (rhs == NULL) - return false; - return posix::StrCaseCmp(lhs, rhs) == 0; -} - - // Compares two wide C strings, ignoring case. Returns true iff they - // have the same content. - // - // Unlike wcscasecmp(), this function can handle NULL argument(s). - // A NULL C string is considered different to any non-NULL wide C string, - // including the empty string. - // NB: The implementations on different platforms slightly differ. - // On windows, this method uses _wcsicmp which compares according to LC_CTYPE - // environment variable. On GNU platform this method uses wcscasecmp - // which compares according to LC_CTYPE category of the current locale. - // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the - // current locale. -bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs, - const wchar_t* rhs) { - if ( lhs == NULL ) return rhs == NULL; - - if ( rhs == NULL ) return false; - -#if GTEST_OS_WINDOWS - return _wcsicmp(lhs, rhs) == 0; -#elif GTEST_OS_LINUX - return wcscasecmp(lhs, rhs) == 0; -#else - // Mac OS X and Cygwin don't define wcscasecmp. Other unknown OSes - // may not define it either. - wint_t left, right; - do { - left = towlower(*lhs++); - right = towlower(*rhs++); - } while (left && left == right); - return left == right; -#endif // OS selector -} - -// Compares this with another String. -// Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0 -// if this is greater than rhs. -int String::Compare(const String & rhs) const { - const char* const lhs_c_str = c_str(); - const char* const rhs_c_str = rhs.c_str(); - - if (lhs_c_str == NULL) { - return rhs_c_str == NULL ? 0 : -1; // NULL < anything except NULL - } else if (rhs_c_str == NULL) { - return 1; - } - - const size_t shorter_str_len = - length() <= rhs.length() ? length() : rhs.length(); - for (size_t i = 0; i != shorter_str_len; i++) { - if (lhs_c_str[i] < rhs_c_str[i]) { - return -1; - } else if (lhs_c_str[i] > rhs_c_str[i]) { - return 1; - } - } - return (length() < rhs.length()) ? -1 : - (length() > rhs.length()) ? 1 : 0; -} - -// Returns true iff this String ends with the given suffix. *Any* -// String is considered to end with a NULL or empty suffix. -bool String::EndsWith(const char* suffix) const { - if (suffix == NULL || CStringEquals(suffix, "")) return true; - - if (c_str() == NULL) return false; - - const size_t this_len = strlen(c_str()); - const size_t suffix_len = strlen(suffix); - return (this_len >= suffix_len) && - CStringEquals(c_str() + this_len - suffix_len, suffix); -} - -// Returns true iff this String ends with the given suffix, ignoring case. -// Any String is considered to end with a NULL or empty suffix. -bool String::EndsWithCaseInsensitive(const char* suffix) const { - if (suffix == NULL || CStringEquals(suffix, "")) return true; - - if (c_str() == NULL) return false; - - const size_t this_len = strlen(c_str()); - const size_t suffix_len = strlen(suffix); - return (this_len >= suffix_len) && - CaseInsensitiveCStringEquals(c_str() + this_len - suffix_len, suffix); -} - -// Formats a list of arguments to a String, using the same format -// spec string as for printf. -// -// We do not use the StringPrintf class as it is not universally -// available. -// -// The result is limited to 4096 characters (including the tailing 0). -// If 4096 characters are not enough to format the input, or if -// there's an error, "" is -// returned. -String String::Format(const char * format, ...) { - va_list args; - va_start(args, format); - - char buffer[4096]; - const int kBufferSize = sizeof(buffer)/sizeof(buffer[0]); - - // MSVC 8 deprecates vsnprintf(), so we want to suppress warning - // 4996 (deprecated function) there. -#ifdef _MSC_VER // We are using MSVC. -#pragma warning(push) // Saves the current warning state. -#pragma warning(disable:4996) // Temporarily disables warning 4996. - const int size = vsnprintf(buffer, kBufferSize, format, args); -#pragma warning(pop) // Restores the warning state. -#else // We are not using MSVC. - const int size = vsnprintf(buffer, kBufferSize, format, args); -#endif // _MSC_VER - va_end(args); - - // vsnprintf()'s behavior is not portable. When the buffer is not - // big enough, it returns a negative value in MSVC, and returns the - // needed buffer size on Linux. When there is an output error, it - // always returns a negative value. For simplicity, we lump the two - // error cases together. - if (size < 0 || size >= kBufferSize) { - return String(""); - } else { - return String(buffer, size); - } -} - -// Converts the buffer in a StrStream to a String, converting NUL -// bytes to "\\0" along the way. -String StrStreamToString(StrStream* ss) { - const ::std::string& str = ss->str(); - const char* const start = str.c_str(); - const char* const end = start + str.length(); - - // We need to use a helper StrStream to do this transformation - // because String doesn't support push_back(). - StrStream helper; - for (const char* ch = start; ch != end; ++ch) { - if (*ch == '\0') { - helper << "\\0"; // Replaces NUL with "\\0"; - } else { - helper.put(*ch); - } - } - - return String(helper.str().c_str()); -} - -// Appends the user-supplied message to the Google-Test-generated message. -String AppendUserMessage(const String& gtest_msg, - const Message& user_msg) { - // Appends the user message if it's non-empty. - const String user_msg_string = user_msg.GetString(); - if (user_msg_string.empty()) { - return gtest_msg; - } - - Message msg; - msg << gtest_msg << "\n" << user_msg_string; - - return msg.GetString(); -} - -} // namespace internal - -// class TestResult - -// Creates an empty TestResult. -TestResult::TestResult() - : death_test_count_(0), - elapsed_time_(0) { -} - -// D'tor. -TestResult::~TestResult() { -} - -// Returns the i-th test part result among all the results. i can -// range from 0 to total_part_count() - 1. If i is not in that range, -// aborts the program. -const TestPartResult& TestResult::GetTestPartResult(int i) const { - if (i < 0 || i >= total_part_count()) - internal::posix::Abort(); - return test_part_results_.at(i); -} - -// Returns the i-th test property. i can range from 0 to -// test_property_count() - 1. If i is not in that range, aborts the -// program. -const TestProperty& TestResult::GetTestProperty(int i) const { - if (i < 0 || i >= test_property_count()) - internal::posix::Abort(); - return test_properties_.at(i); -} - -// Clears the test part results. -void TestResult::ClearTestPartResults() { - test_part_results_.clear(); -} - -// Adds a test part result to the list. -void TestResult::AddTestPartResult(const TestPartResult& test_part_result) { - test_part_results_.push_back(test_part_result); -} - -// Adds a test property to the list. If a property with the same key as the -// supplied property is already represented, the value of this test_property -// replaces the old value for that key. -void TestResult::RecordProperty(const TestProperty& test_property) { - if (!ValidateTestProperty(test_property)) { - return; - } - internal::MutexLock lock(&test_properites_mutex_); - const std::vector::iterator property_with_matching_key = - std::find_if(test_properties_.begin(), test_properties_.end(), - internal::TestPropertyKeyIs(test_property.key())); - if (property_with_matching_key == test_properties_.end()) { - test_properties_.push_back(test_property); - return; - } - property_with_matching_key->SetValue(test_property.value()); -} - -// Adds a failure if the key is a reserved attribute of Google Test -// testcase tags. Returns true if the property is valid. -bool TestResult::ValidateTestProperty(const TestProperty& test_property) { - internal::String key(test_property.key()); - if (key == "name" || key == "status" || key == "time" || key == "classname") { - ADD_FAILURE() - << "Reserved key used in RecordProperty(): " - << key - << " ('name', 'status', 'time', and 'classname' are reserved by " - << GTEST_NAME_ << ")"; - return false; - } - return true; -} - -// Clears the object. -void TestResult::Clear() { - test_part_results_.clear(); - test_properties_.clear(); - death_test_count_ = 0; - elapsed_time_ = 0; -} - -// Returns true iff the test failed. -bool TestResult::Failed() const { - for (int i = 0; i < total_part_count(); ++i) { - if (GetTestPartResult(i).failed()) - return true; - } - return false; -} - -// Returns true iff the test part fatally failed. -static bool TestPartFatallyFailed(const TestPartResult& result) { - return result.fatally_failed(); -} - -// Returns true iff the test fatally failed. -bool TestResult::HasFatalFailure() const { - return CountIf(test_part_results_, TestPartFatallyFailed) > 0; -} - -// Returns true iff the test part non-fatally failed. -static bool TestPartNonfatallyFailed(const TestPartResult& result) { - return result.nonfatally_failed(); -} - -// Returns true iff the test has a non-fatal failure. -bool TestResult::HasNonfatalFailure() const { - return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0; -} - -// Gets the number of all test parts. This is the sum of the number -// of successful test parts and the number of failed test parts. -int TestResult::total_part_count() const { - return static_cast(test_part_results_.size()); -} - -// Returns the number of the test properties. -int TestResult::test_property_count() const { - return static_cast(test_properties_.size()); -} - -// class Test - -// Creates a Test object. - -// The c'tor saves the values of all Google Test flags. -Test::Test() - : gtest_flag_saver_(new internal::GTestFlagSaver) { -} - -// The d'tor restores the values of all Google Test flags. -Test::~Test() { - delete gtest_flag_saver_; -} - -// Sets up the test fixture. -// -// A sub-class may override this. -void Test::SetUp() { -} - -// Tears down the test fixture. -// -// A sub-class may override this. -void Test::TearDown() { -} - -// Allows user supplied key value pairs to be recorded for later output. -void Test::RecordProperty(const char* key, const char* value) { - UnitTest::GetInstance()->RecordPropertyForCurrentTest(key, value); -} - -// Allows user supplied key value pairs to be recorded for later output. -void Test::RecordProperty(const char* key, int value) { - Message value_message; - value_message << value; - RecordProperty(key, value_message.GetString().c_str()); -} - -namespace internal { - -void ReportFailureInUnknownLocation(TestPartResult::Type result_type, - const String& message) { - // This function is a friend of UnitTest and as such has access to - // AddTestPartResult. - UnitTest::GetInstance()->AddTestPartResult( - result_type, - NULL, // No info about the source file where the exception occurred. - -1, // We have no info on which line caused the exception. - message, - String()); // No stack trace, either. -} - -} // namespace internal - -#if GTEST_OS_WINDOWS -// We are on Windows. - -// Adds an "exception thrown" fatal failure to the current test. -static void AddExceptionThrownFailure(DWORD exception_code, - const char* location) { - Message message; - message << "Exception thrown with code 0x" << std::setbase(16) << - exception_code << std::setbase(10) << " in " << location << "."; - - internal::ReportFailureInUnknownLocation(TestPartResult::kFatalFailure, - message.GetString()); -} - -#endif // GTEST_OS_WINDOWS - -// Google Test requires all tests in the same test case to use the same test -// fixture class. This function checks if the current test has the -// same fixture class as the first test in the current test case. If -// yes, it returns true; otherwise it generates a Google Test failure and -// returns false. -bool Test::HasSameFixtureClass() { - internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); - const TestCase* const test_case = impl->current_test_case(); - - // Info about the first test in the current test case. - const internal::TestInfoImpl* const first_test_info = - test_case->test_info_list()[0]->impl(); - const internal::TypeId first_fixture_id = first_test_info->fixture_class_id(); - const char* const first_test_name = first_test_info->name(); - - // Info about the current test. - const internal::TestInfoImpl* const this_test_info = - impl->current_test_info()->impl(); - const internal::TypeId this_fixture_id = this_test_info->fixture_class_id(); - const char* const this_test_name = this_test_info->name(); - - if (this_fixture_id != first_fixture_id) { - // Is the first test defined using TEST? - const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId(); - // Is this test defined using TEST? - const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId(); - - if (first_is_TEST || this_is_TEST) { - // The user mixed TEST and TEST_F in this test case - we'll tell - // him/her how to fix it. - - // Gets the name of the TEST and the name of the TEST_F. Note - // that first_is_TEST and this_is_TEST cannot both be true, as - // the fixture IDs are different for the two tests. - const char* const TEST_name = - first_is_TEST ? first_test_name : this_test_name; - const char* const TEST_F_name = - first_is_TEST ? this_test_name : first_test_name; - - ADD_FAILURE() - << "All tests in the same test case must use the same test fixture\n" - << "class, so mixing TEST_F and TEST in the same test case is\n" - << "illegal. In test case " << this_test_info->test_case_name() - << ",\n" - << "test " << TEST_F_name << " is defined using TEST_F but\n" - << "test " << TEST_name << " is defined using TEST. You probably\n" - << "want to change the TEST to TEST_F or move it to another test\n" - << "case."; - } else { - // The user defined two fixture classes with the same name in - // two namespaces - we'll tell him/her how to fix it. - ADD_FAILURE() - << "All tests in the same test case must use the same test fixture\n" - << "class. However, in test case " - << this_test_info->test_case_name() << ",\n" - << "you defined test " << first_test_name - << " and test " << this_test_name << "\n" - << "using two different test fixture classes. This can happen if\n" - << "the two classes are from different namespaces or translation\n" - << "units and have the same name. You should probably rename one\n" - << "of the classes to put the tests into different test cases."; - } - return false; - } - - return true; -} - -// Runs the test and updates the test result. -void Test::Run() { - if (!HasSameFixtureClass()) return; - - internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); -#if GTEST_HAS_SEH - // Catch SEH-style exceptions. - impl->os_stack_trace_getter()->UponLeavingGTest(); - __try { - SetUp(); - } __except(internal::UnitTestOptions::GTestShouldProcessSEH( - GetExceptionCode())) { - AddExceptionThrownFailure(GetExceptionCode(), "SetUp()"); - } - - // We will run the test only if SetUp() had no fatal failure. - if (!HasFatalFailure()) { - impl->os_stack_trace_getter()->UponLeavingGTest(); - __try { - TestBody(); - } __except(internal::UnitTestOptions::GTestShouldProcessSEH( - GetExceptionCode())) { - AddExceptionThrownFailure(GetExceptionCode(), "the test body"); - } - } - - // However, we want to clean up as much as possible. Hence we will - // always call TearDown(), even if SetUp() or the test body has - // failed. - impl->os_stack_trace_getter()->UponLeavingGTest(); - __try { - TearDown(); - } __except(internal::UnitTestOptions::GTestShouldProcessSEH( - GetExceptionCode())) { - AddExceptionThrownFailure(GetExceptionCode(), "TearDown()"); - } - -#else // We are on a compiler or platform that doesn't support SEH. - impl->os_stack_trace_getter()->UponLeavingGTest(); - SetUp(); - - // We will run the test only if SetUp() was successful. - if (!HasFatalFailure()) { - impl->os_stack_trace_getter()->UponLeavingGTest(); - TestBody(); - } - - // However, we want to clean up as much as possible. Hence we will - // always call TearDown(), even if SetUp() or the test body has - // failed. - impl->os_stack_trace_getter()->UponLeavingGTest(); - TearDown(); -#endif // GTEST_HAS_SEH -} - - -// Returns true iff the current test has a fatal failure. -bool Test::HasFatalFailure() { - return internal::GetUnitTestImpl()->current_test_result()->HasFatalFailure(); -} - -// Returns true iff the current test has a non-fatal failure. -bool Test::HasNonfatalFailure() { - return internal::GetUnitTestImpl()->current_test_result()-> - HasNonfatalFailure(); -} - -// class TestInfo - -// Constructs a TestInfo object. It assumes ownership of the test factory -// object via impl_. -TestInfo::TestInfo(const char* a_test_case_name, - const char* a_name, - const char* a_test_case_comment, - const char* a_comment, - internal::TypeId fixture_class_id, - internal::TestFactoryBase* factory) { - impl_ = new internal::TestInfoImpl(this, a_test_case_name, a_name, - a_test_case_comment, a_comment, - fixture_class_id, factory); -} - -// Destructs a TestInfo object. -TestInfo::~TestInfo() { - delete impl_; -} - -namespace internal { - -// Creates a new TestInfo object and registers it with Google Test; -// returns the created object. -// -// Arguments: -// -// test_case_name: name of the test case -// name: name of the test -// test_case_comment: a comment on the test case that will be included in -// the test output -// comment: a comment on the test that will be included in the -// test output -// fixture_class_id: ID of the test fixture class -// set_up_tc: pointer to the function that sets up the test case -// tear_down_tc: pointer to the function that tears down the test case -// factory: pointer to the factory that creates a test object. -// The newly created TestInfo instance will assume -// ownership of the factory object. -TestInfo* MakeAndRegisterTestInfo( - const char* test_case_name, const char* name, - const char* test_case_comment, const char* comment, - TypeId fixture_class_id, - SetUpTestCaseFunc set_up_tc, - TearDownTestCaseFunc tear_down_tc, - TestFactoryBase* factory) { - TestInfo* const test_info = - new TestInfo(test_case_name, name, test_case_comment, comment, - fixture_class_id, factory); - GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info); - return test_info; -} - -#if GTEST_HAS_PARAM_TEST -void ReportInvalidTestCaseType(const char* test_case_name, - const char* file, int line) { - Message errors; - errors - << "Attempted redefinition of test case " << test_case_name << ".\n" - << "All tests in the same test case must use the same test fixture\n" - << "class. However, in test case " << test_case_name << ", you tried\n" - << "to define a test using a fixture class different from the one\n" - << "used earlier. This can happen if the two fixture classes are\n" - << "from different namespaces and have the same name. You should\n" - << "probably rename one of the classes to put the tests into different\n" - << "test cases."; - - fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), - errors.GetString().c_str()); -} -#endif // GTEST_HAS_PARAM_TEST - -} // namespace internal - -// Returns the test case name. -const char* TestInfo::test_case_name() const { - return impl_->test_case_name(); -} - -// Returns the test name. -const char* TestInfo::name() const { - return impl_->name(); -} - -// Returns the test case comment. -const char* TestInfo::test_case_comment() const { - return impl_->test_case_comment(); -} - -// Returns the test comment. -const char* TestInfo::comment() const { - return impl_->comment(); -} - -// Returns true if this test should run. -bool TestInfo::should_run() const { return impl_->should_run(); } - -// Returns true if this test matches the user-specified filter. -bool TestInfo::matches_filter() const { return impl_->matches_filter(); } - -// Returns the result of the test. -const TestResult* TestInfo::result() const { return impl_->result(); } - -// Increments the number of death tests encountered in this test so -// far. -int TestInfo::increment_death_test_count() { - return impl_->result()->increment_death_test_count(); -} - -namespace { - -// A predicate that checks the test name of a TestInfo against a known -// value. -// -// This is used for implementation of the TestCase class only. We put -// it in the anonymous namespace to prevent polluting the outer -// namespace. -// -// TestNameIs is copyable. -class TestNameIs { - public: - // Constructor. - // - // TestNameIs has NO default constructor. - explicit TestNameIs(const char* name) - : name_(name) {} - - // Returns true iff the test name of test_info matches name_. - bool operator()(const TestInfo * test_info) const { - return test_info && internal::String(test_info->name()).Compare(name_) == 0; - } - - private: - internal::String name_; -}; - -} // namespace - -namespace internal { - -// This method expands all parameterized tests registered with macros TEST_P -// and INSTANTIATE_TEST_CASE_P into regular tests and registers those. -// This will be done just once during the program runtime. -void UnitTestImpl::RegisterParameterizedTests() { -#if GTEST_HAS_PARAM_TEST - if (!parameterized_tests_registered_) { - parameterized_test_registry_.RegisterTests(); - parameterized_tests_registered_ = true; - } -#endif -} - -// Creates the test object, runs it, records its result, and then -// deletes it. -void TestInfoImpl::Run() { - if (!should_run_) return; - - // Tells UnitTest where to store test result. - UnitTestImpl* const impl = internal::GetUnitTestImpl(); - impl->set_current_test_info(parent_); - - TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); - - // Notifies the unit test event listeners that a test is about to start. - repeater->OnTestStart(*parent_); - - const TimeInMillis start = GetTimeInMillis(); - - impl->os_stack_trace_getter()->UponLeavingGTest(); -#if GTEST_HAS_SEH - // Catch SEH-style exceptions. - Test* test = NULL; - - __try { - // Creates the test object. - test = factory_->CreateTest(); - } __except(internal::UnitTestOptions::GTestShouldProcessSEH( - GetExceptionCode())) { - AddExceptionThrownFailure(GetExceptionCode(), - "the test fixture's constructor"); - return; - } -#else // We are on a compiler or platform that doesn't support SEH. - - // TODO(wan): If test->Run() throws, test won't be deleted. This is - // not a problem now as we don't use exceptions. If we were to - // enable exceptions, we should revise the following to be - // exception-safe. - - // Creates the test object. - Test* test = factory_->CreateTest(); -#endif // GTEST_HAS_SEH - - // Runs the test only if the constructor of the test fixture didn't - // generate a fatal failure. - if (!Test::HasFatalFailure()) { - test->Run(); - } - - // Deletes the test object. - impl->os_stack_trace_getter()->UponLeavingGTest(); - delete test; - test = NULL; - - result_.set_elapsed_time(GetTimeInMillis() - start); - - // Notifies the unit test event listener that a test has just finished. - repeater->OnTestEnd(*parent_); - - // Tells UnitTest to stop associating assertion results to this - // test. - impl->set_current_test_info(NULL); -} - -} // namespace internal - -// class TestCase - -// Gets the number of successful tests in this test case. -int TestCase::successful_test_count() const { - return CountIf(test_info_list_, TestPassed); -} - -// Gets the number of failed tests in this test case. -int TestCase::failed_test_count() const { - return CountIf(test_info_list_, TestFailed); -} - -int TestCase::disabled_test_count() const { - return CountIf(test_info_list_, TestDisabled); -} - -// Get the number of tests in this test case that should run. -int TestCase::test_to_run_count() const { - return CountIf(test_info_list_, ShouldRunTest); -} - -// Gets the number of all tests. -int TestCase::total_test_count() const { - return static_cast(test_info_list_.size()); -} - -// Creates a TestCase with the given name. -// -// Arguments: -// -// name: name of the test case -// set_up_tc: pointer to the function that sets up the test case -// tear_down_tc: pointer to the function that tears down the test case -TestCase::TestCase(const char* a_name, const char* a_comment, - Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc) - : name_(a_name), - comment_(a_comment), - set_up_tc_(set_up_tc), - tear_down_tc_(tear_down_tc), - should_run_(false), - elapsed_time_(0) { -} - -// Destructor of TestCase. -TestCase::~TestCase() { - // Deletes every Test in the collection. - ForEach(test_info_list_, internal::Delete); -} - -// Returns the i-th test among all the tests. i can range from 0 to -// total_test_count() - 1. If i is not in that range, returns NULL. -const TestInfo* TestCase::GetTestInfo(int i) const { - const int index = GetElementOr(test_indices_, i, -1); - return index < 0 ? NULL : test_info_list_[index]; -} - -// Returns the i-th test among all the tests. i can range from 0 to -// total_test_count() - 1. If i is not in that range, returns NULL. -TestInfo* TestCase::GetMutableTestInfo(int i) { - const int index = GetElementOr(test_indices_, i, -1); - return index < 0 ? NULL : test_info_list_[index]; -} - -// Adds a test to this test case. Will delete the test upon -// destruction of the TestCase object. -void TestCase::AddTestInfo(TestInfo * test_info) { - test_info_list_.push_back(test_info); - test_indices_.push_back(static_cast(test_indices_.size())); -} - -// Runs every test in this TestCase. -void TestCase::Run() { - if (!should_run_) return; - - internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); - impl->set_current_test_case(this); - - TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); - - repeater->OnTestCaseStart(*this); - impl->os_stack_trace_getter()->UponLeavingGTest(); - set_up_tc_(); - - const internal::TimeInMillis start = internal::GetTimeInMillis(); - for (int i = 0; i < total_test_count(); i++) { - GetMutableTestInfo(i)->impl()->Run(); - } - elapsed_time_ = internal::GetTimeInMillis() - start; - - impl->os_stack_trace_getter()->UponLeavingGTest(); - tear_down_tc_(); - repeater->OnTestCaseEnd(*this); - impl->set_current_test_case(NULL); -} - -// Clears the results of all tests in this test case. -void TestCase::ClearResult() { - ForEach(test_info_list_, internal::TestInfoImpl::ClearTestResult); -} - -// Returns true iff test passed. -bool TestCase::TestPassed(const TestInfo * test_info) { - const internal::TestInfoImpl* const impl = test_info->impl(); - return impl->should_run() && impl->result()->Passed(); -} - -// Returns true iff test failed. -bool TestCase::TestFailed(const TestInfo * test_info) { - const internal::TestInfoImpl* const impl = test_info->impl(); - return impl->should_run() && impl->result()->Failed(); -} - -// Returns true iff test is disabled. -bool TestCase::TestDisabled(const TestInfo * test_info) { - return test_info->impl()->is_disabled(); -} - -// Returns true if the given test should run. -bool TestCase::ShouldRunTest(const TestInfo *test_info) { - return test_info->impl()->should_run(); -} - -// Shuffles the tests in this test case. -void TestCase::ShuffleTests(internal::Random* random) { - Shuffle(random, &test_indices_); -} - -// Restores the test order to before the first shuffle. -void TestCase::UnshuffleTests() { - for (size_t i = 0; i < test_indices_.size(); i++) { - test_indices_[i] = static_cast(i); - } -} - -// Formats a countable noun. Depending on its quantity, either the -// singular form or the plural form is used. e.g. -// -// FormatCountableNoun(1, "formula", "formuli") returns "1 formula". -// FormatCountableNoun(5, "book", "books") returns "5 books". -static internal::String FormatCountableNoun(int count, - const char * singular_form, - const char * plural_form) { - return internal::String::Format("%d %s", count, - count == 1 ? singular_form : plural_form); -} - -// Formats the count of tests. -static internal::String FormatTestCount(int test_count) { - return FormatCountableNoun(test_count, "test", "tests"); -} - -// Formats the count of test cases. -static internal::String FormatTestCaseCount(int test_case_count) { - return FormatCountableNoun(test_case_count, "test case", "test cases"); -} - -// Converts a TestPartResult::Type enum to human-friendly string -// representation. Both kNonFatalFailure and kFatalFailure are translated -// to "Failure", as the user usually doesn't care about the difference -// between the two when viewing the test result. -static const char * TestPartResultTypeToString(TestPartResult::Type type) { - switch (type) { - case TestPartResult::kSuccess: - return "Success"; - - case TestPartResult::kNonFatalFailure: - case TestPartResult::kFatalFailure: -#ifdef _MSC_VER - return "error: "; -#else - return "Failure\n"; -#endif - } - - return "Unknown result type"; -} - -// Prints a TestPartResult to a String. -static internal::String PrintTestPartResultToString( - const TestPartResult& test_part_result) { - return (Message() - << internal::FormatFileLocation(test_part_result.file_name(), - test_part_result.line_number()) - << " " << TestPartResultTypeToString(test_part_result.type()) - << test_part_result.message()).GetString(); -} - -// Prints a TestPartResult. -static void PrintTestPartResult(const TestPartResult& test_part_result) { - const internal::String& result = - PrintTestPartResultToString(test_part_result); - printf("%s\n", result.c_str()); - fflush(stdout); - // If the test program runs in Visual Studio or a debugger, the - // following statements add the test part result message to the Output - // window such that the user can double-click on it to jump to the - // corresponding source code location; otherwise they do nothing. -#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE - // We don't call OutputDebugString*() on Windows Mobile, as printing - // to stdout is done by OutputDebugString() there already - we don't - // want the same message printed twice. - ::OutputDebugStringA(result.c_str()); - ::OutputDebugStringA("\n"); -#endif -} - -// class PrettyUnitTestResultPrinter - -namespace internal { - -enum GTestColor { - COLOR_DEFAULT, - COLOR_RED, - COLOR_GREEN, - COLOR_YELLOW -}; - -#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE - -// Returns the character attribute for the given color. -WORD GetColorAttribute(GTestColor color) { - switch (color) { - case COLOR_RED: return FOREGROUND_RED; - case COLOR_GREEN: return FOREGROUND_GREEN; - case COLOR_YELLOW: return FOREGROUND_RED | FOREGROUND_GREEN; - default: return 0; - } -} - -#else - -// Returns the ANSI color code for the given color. COLOR_DEFAULT is -// an invalid input. -const char* GetAnsiColorCode(GTestColor color) { - switch (color) { - case COLOR_RED: return "1"; - case COLOR_GREEN: return "2"; - case COLOR_YELLOW: return "3"; - default: return NULL; - }; -} - -#endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE - -// Returns true iff Google Test should use colors in the output. -bool ShouldUseColor(bool stdout_is_tty) { - const char* const gtest_color = GTEST_FLAG(color).c_str(); - - if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { -#if GTEST_OS_WINDOWS - // On Windows the TERM variable is usually not set, but the - // console there does support colors. - return stdout_is_tty; -#else - // On non-Windows platforms, we rely on the TERM variable. - const char* const term = posix::GetEnv("TERM"); - const bool term_supports_color = - String::CStringEquals(term, "xterm") || - String::CStringEquals(term, "xterm-color") || - String::CStringEquals(term, "xterm-256color") || - String::CStringEquals(term, "linux") || - String::CStringEquals(term, "cygwin"); - return stdout_is_tty && term_supports_color; -#endif // GTEST_OS_WINDOWS - } - - return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || - String::CaseInsensitiveCStringEquals(gtest_color, "true") || - String::CaseInsensitiveCStringEquals(gtest_color, "t") || - String::CStringEquals(gtest_color, "1"); - // We take "yes", "true", "t", and "1" as meaning "yes". If the - // value is neither one of these nor "auto", we treat it as "no" to - // be conservative. -} - -// Helpers for printing colored strings to stdout. Note that on Windows, we -// cannot simply emit special characters and have the terminal change colors. -// This routine must actually emit the characters rather than return a string -// that would be colored when printed, as can be done on Linux. -void ColoredPrintf(GTestColor color, const char* fmt, ...) { - va_list args; - va_start(args, fmt); - -#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS - const bool use_color = false; -#else - static const bool in_color_mode = - ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); - const bool use_color = in_color_mode && (color != COLOR_DEFAULT); -#endif // GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS - // The '!= 0' comparison is necessary to satisfy MSVC 7.1. - - if (!use_color) { - vprintf(fmt, args); - va_end(args); - return; - } - -#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE - const HANDLE stdout_handle = GetStdHandle(STD_OUTPUT_HANDLE); - - // Gets the current text color. - CONSOLE_SCREEN_BUFFER_INFO buffer_info; - GetConsoleScreenBufferInfo(stdout_handle, &buffer_info); - const WORD old_color_attrs = buffer_info.wAttributes; - - // We need to flush the stream buffers into the console before each - // SetConsoleTextAttribute call lest it affect the text that is already - // printed but has not yet reached the console. - fflush(stdout); - SetConsoleTextAttribute(stdout_handle, - GetColorAttribute(color) | FOREGROUND_INTENSITY); - vprintf(fmt, args); - - fflush(stdout); - // Restores the text color. - SetConsoleTextAttribute(stdout_handle, old_color_attrs); -#else - printf("\033[0;3%sm", GetAnsiColorCode(color)); - vprintf(fmt, args); - printf("\033[m"); // Resets the terminal to default. -#endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE - va_end(args); -} - -// This class implements the TestEventListener interface. -// -// Class PrettyUnitTestResultPrinter is copyable. -class PrettyUnitTestResultPrinter : public TestEventListener { - public: - PrettyUnitTestResultPrinter() {} - static void PrintTestName(const char * test_case, const char * test) { - printf("%s.%s", test_case, test); - } - - // The following methods override what's in the TestEventListener class. - virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} - virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); - virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); - virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} - virtual void OnTestCaseStart(const TestCase& test_case); - virtual void OnTestStart(const TestInfo& test_info); - virtual void OnTestPartResult(const TestPartResult& result); - virtual void OnTestEnd(const TestInfo& test_info); - virtual void OnTestCaseEnd(const TestCase& test_case); - virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); - virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} - virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); - virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} - - private: - static void PrintFailedTests(const UnitTest& unit_test); - - internal::String test_case_name_; -}; - - // Fired before each iteration of tests starts. -void PrettyUnitTestResultPrinter::OnTestIterationStart( - const UnitTest& unit_test, int iteration) { - if (GTEST_FLAG(repeat) != 1) - printf("\nRepeating all tests (iteration %d) . . .\n\n", iteration + 1); - - const char* const filter = GTEST_FLAG(filter).c_str(); - - // Prints the filter if it's not *. This reminds the user that some - // tests may be skipped. - if (!internal::String::CStringEquals(filter, kUniversalFilter)) { - ColoredPrintf(COLOR_YELLOW, - "Note: %s filter = %s\n", GTEST_NAME_, filter); - } - - if (internal::ShouldShard(kTestTotalShards, kTestShardIndex, false)) { - ColoredPrintf(COLOR_YELLOW, - "Note: This is test shard %s of %s.\n", - internal::posix::GetEnv(kTestShardIndex), - internal::posix::GetEnv(kTestTotalShards)); - } - - if (GTEST_FLAG(shuffle)) { - ColoredPrintf(COLOR_YELLOW, - "Note: Randomizing tests' orders with a seed of %d .\n", - unit_test.random_seed()); - } - - ColoredPrintf(COLOR_GREEN, "[==========] "); - printf("Running %s from %s.\n", - FormatTestCount(unit_test.test_to_run_count()).c_str(), - FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart( - const UnitTest& /*unit_test*/) { - ColoredPrintf(COLOR_GREEN, "[----------] "); - printf("Global test environment set-up.\n"); - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) { - test_case_name_ = test_case.name(); - const internal::String counts = - FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); - ColoredPrintf(COLOR_GREEN, "[----------] "); - printf("%s from %s", counts.c_str(), test_case_name_.c_str()); - if (test_case.comment()[0] == '\0') { - printf("\n"); - } else { - printf(", where %s\n", test_case.comment()); - } - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) { - ColoredPrintf(COLOR_GREEN, "[ RUN ] "); - PrintTestName(test_case_name_.c_str(), test_info.name()); - if (test_info.comment()[0] == '\0') { - printf("\n"); - } else { - printf(", where %s\n", test_info.comment()); - } - fflush(stdout); -} - -// Called after an assertion failure. -void PrettyUnitTestResultPrinter::OnTestPartResult( - const TestPartResult& result) { - // If the test part succeeded, we don't need to do anything. - if (result.type() == TestPartResult::kSuccess) - return; - - // Print failure message from the assertion (e.g. expected this and got that). - PrintTestPartResult(result); - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) { - if (test_info.result()->Passed()) { - ColoredPrintf(COLOR_GREEN, "[ OK ] "); - } else { - ColoredPrintf(COLOR_RED, "[ FAILED ] "); - } - PrintTestName(test_case_name_.c_str(), test_info.name()); - if (GTEST_FLAG(print_time)) { - printf(" (%s ms)\n", internal::StreamableToString( - test_info.result()->elapsed_time()).c_str()); - } else { - printf("\n"); - } - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) { - if (!GTEST_FLAG(print_time)) return; - - test_case_name_ = test_case.name(); - const internal::String counts = - FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); - ColoredPrintf(COLOR_GREEN, "[----------] "); - printf("%s from %s (%s ms total)\n\n", - counts.c_str(), test_case_name_.c_str(), - internal::StreamableToString(test_case.elapsed_time()).c_str()); - fflush(stdout); -} - -void PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart( - const UnitTest& /*unit_test*/) { - ColoredPrintf(COLOR_GREEN, "[----------] "); - printf("Global test environment tear-down\n"); - fflush(stdout); -} - -// Internal helper for printing the list of failed tests. -void PrettyUnitTestResultPrinter::PrintFailedTests(const UnitTest& unit_test) { - const int failed_test_count = unit_test.failed_test_count(); - if (failed_test_count == 0) { - return; - } - - for (int i = 0; i < unit_test.total_test_case_count(); ++i) { - const TestCase& test_case = *unit_test.GetTestCase(i); - if (!test_case.should_run() || (test_case.failed_test_count() == 0)) { - continue; - } - for (int j = 0; j < test_case.total_test_count(); ++j) { - const TestInfo& test_info = *test_case.GetTestInfo(j); - if (!test_info.should_run() || test_info.result()->Passed()) { - continue; - } - ColoredPrintf(COLOR_RED, "[ FAILED ] "); - printf("%s.%s", test_case.name(), test_info.name()); - if (test_case.comment()[0] != '\0' || - test_info.comment()[0] != '\0') { - printf(", where %s", test_case.comment()); - if (test_case.comment()[0] != '\0' && - test_info.comment()[0] != '\0') { - printf(" and "); - } - } - printf("%s\n", test_info.comment()); - } - } -} - - void PrettyUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, - int /*iteration*/) { - ColoredPrintf(COLOR_GREEN, "[==========] "); - printf("%s from %s ran.", - FormatTestCount(unit_test.test_to_run_count()).c_str(), - FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); - if (GTEST_FLAG(print_time)) { - printf(" (%s ms total)", - internal::StreamableToString(unit_test.elapsed_time()).c_str()); - } - printf("\n"); - ColoredPrintf(COLOR_GREEN, "[ PASSED ] "); - printf("%s.\n", FormatTestCount(unit_test.successful_test_count()).c_str()); - - int num_failures = unit_test.failed_test_count(); - if (!unit_test.Passed()) { - const int failed_test_count = unit_test.failed_test_count(); - ColoredPrintf(COLOR_RED, "[ FAILED ] "); - printf("%s, listed below:\n", FormatTestCount(failed_test_count).c_str()); - PrintFailedTests(unit_test); - printf("\n%2d FAILED %s\n", num_failures, - num_failures == 1 ? "TEST" : "TESTS"); - } - - int num_disabled = unit_test.disabled_test_count(); - if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) { - if (!num_failures) { - printf("\n"); // Add a spacer if no FAILURE banner is displayed. - } - ColoredPrintf(COLOR_YELLOW, - " YOU HAVE %d DISABLED %s\n\n", - num_disabled, - num_disabled == 1 ? "TEST" : "TESTS"); - } - // Ensure that Google Test output is printed before, e.g., heapchecker output. - fflush(stdout); -} - -// End PrettyUnitTestResultPrinter - -// class TestEventRepeater -// -// This class forwards events to other event listeners. -class TestEventRepeater : public TestEventListener { - public: - TestEventRepeater() : forwarding_enabled_(true) {} - virtual ~TestEventRepeater(); - void Append(TestEventListener *listener); - TestEventListener* Release(TestEventListener* listener); - - // Controls whether events will be forwarded to listeners_. Set to false - // in death test child processes. - bool forwarding_enabled() const { return forwarding_enabled_; } - void set_forwarding_enabled(bool enable) { forwarding_enabled_ = enable; } - - virtual void OnTestProgramStart(const UnitTest& unit_test); - virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); - virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); - virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test); - virtual void OnTestCaseStart(const TestCase& test_case); - virtual void OnTestStart(const TestInfo& test_info); - virtual void OnTestPartResult(const TestPartResult& result); - virtual void OnTestEnd(const TestInfo& test_info); - virtual void OnTestCaseEnd(const TestCase& test_case); - virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); - virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test); - virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); - virtual void OnTestProgramEnd(const UnitTest& unit_test); - - private: - // Controls whether events will be forwarded to listeners_. Set to false - // in death test child processes. - bool forwarding_enabled_; - // The list of listeners that receive events. - std::vector listeners_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventRepeater); -}; - -TestEventRepeater::~TestEventRepeater() { - ForEach(listeners_, Delete); -} - -void TestEventRepeater::Append(TestEventListener *listener) { - listeners_.push_back(listener); -} - -// TODO(vladl@google.com): Factor the search functionality into Vector::Find. -TestEventListener* TestEventRepeater::Release(TestEventListener *listener) { - for (size_t i = 0; i < listeners_.size(); ++i) { - if (listeners_[i] == listener) { - listeners_.erase(listeners_.begin() + i); - return listener; - } - } - - return NULL; -} - -// Since most methods are very similar, use macros to reduce boilerplate. -// This defines a member that forwards the call to all listeners. -#define GTEST_REPEATER_METHOD_(Name, Type) \ -void TestEventRepeater::Name(const Type& parameter) { \ - if (forwarding_enabled_) { \ - for (size_t i = 0; i < listeners_.size(); i++) { \ - listeners_[i]->Name(parameter); \ - } \ - } \ -} -// This defines a member that forwards the call to all listeners in reverse -// order. -#define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \ -void TestEventRepeater::Name(const Type& parameter) { \ - if (forwarding_enabled_) { \ - for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { \ - listeners_[i]->Name(parameter); \ - } \ - } \ -} - -GTEST_REPEATER_METHOD_(OnTestProgramStart, UnitTest) -GTEST_REPEATER_METHOD_(OnEnvironmentsSetUpStart, UnitTest) -GTEST_REPEATER_METHOD_(OnTestCaseStart, TestCase) -GTEST_REPEATER_METHOD_(OnTestStart, TestInfo) -GTEST_REPEATER_METHOD_(OnTestPartResult, TestPartResult) -GTEST_REPEATER_METHOD_(OnEnvironmentsTearDownStart, UnitTest) -GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsSetUpEnd, UnitTest) -GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsTearDownEnd, UnitTest) -GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo) -GTEST_REVERSE_REPEATER_METHOD_(OnTestCaseEnd, TestCase) -GTEST_REVERSE_REPEATER_METHOD_(OnTestProgramEnd, UnitTest) - -#undef GTEST_REPEATER_METHOD_ -#undef GTEST_REVERSE_REPEATER_METHOD_ - -void TestEventRepeater::OnTestIterationStart(const UnitTest& unit_test, - int iteration) { - if (forwarding_enabled_) { - for (size_t i = 0; i < listeners_.size(); i++) { - listeners_[i]->OnTestIterationStart(unit_test, iteration); - } - } -} - -void TestEventRepeater::OnTestIterationEnd(const UnitTest& unit_test, - int iteration) { - if (forwarding_enabled_) { - for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { - listeners_[i]->OnTestIterationEnd(unit_test, iteration); - } - } -} - -// End TestEventRepeater - -// This class generates an XML output file. -class XmlUnitTestResultPrinter : public EmptyTestEventListener { - public: - explicit XmlUnitTestResultPrinter(const char* output_file); - - virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); - - private: - // Is c a whitespace character that is normalized to a space character - // when it appears in an XML attribute value? - static bool IsNormalizableWhitespace(char c) { - return c == 0x9 || c == 0xA || c == 0xD; - } - - // May c appear in a well-formed XML document? - static bool IsValidXmlCharacter(char c) { - return IsNormalizableWhitespace(c) || c >= 0x20; - } - - // Returns an XML-escaped copy of the input string str. If - // is_attribute is true, the text is meant to appear as an attribute - // value, and normalizable whitespace is preserved by replacing it - // with character references. - static String EscapeXml(const char* str, bool is_attribute); - - // Returns the given string with all characters invalid in XML removed. - static String RemoveInvalidXmlCharacters(const char* str); - - // Convenience wrapper around EscapeXml when str is an attribute value. - static String EscapeXmlAttribute(const char* str) { - return EscapeXml(str, true); - } - - // Convenience wrapper around EscapeXml when str is not an attribute value. - static String EscapeXmlText(const char* str) { return EscapeXml(str, false); } - - // Streams an XML CDATA section, escaping invalid CDATA sequences as needed. - static void OutputXmlCDataSection(::std::ostream* stream, const char* data); - - // Streams an XML representation of a TestInfo object. - static void OutputXmlTestInfo(::std::ostream* stream, - const char* test_case_name, - const TestInfo& test_info); - - // Prints an XML representation of a TestCase object - static void PrintXmlTestCase(FILE* out, const TestCase& test_case); - - // Prints an XML summary of unit_test to output stream out. - static void PrintXmlUnitTest(FILE* out, const UnitTest& unit_test); - - // Produces a string representing the test properties in a result as space - // delimited XML attributes based on the property key="value" pairs. - // When the String is not empty, it includes a space at the beginning, - // to delimit this attribute from prior attributes. - static String TestPropertiesAsXmlAttributes(const TestResult& result); - - // The output file. - const String output_file_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(XmlUnitTestResultPrinter); -}; - -// Creates a new XmlUnitTestResultPrinter. -XmlUnitTestResultPrinter::XmlUnitTestResultPrinter(const char* output_file) - : output_file_(output_file) { - if (output_file_.c_str() == NULL || output_file_.empty()) { - fprintf(stderr, "XML output file may not be null\n"); - fflush(stderr); - exit(EXIT_FAILURE); - } -} - -// Called after the unit test ends. -void XmlUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, - int /*iteration*/) { - FILE* xmlout = NULL; - FilePath output_file(output_file_); - FilePath output_dir(output_file.RemoveFileName()); - - if (output_dir.CreateDirectoriesRecursively()) { - xmlout = posix::FOpen(output_file_.c_str(), "w"); - } - if (xmlout == NULL) { - // TODO(wan): report the reason of the failure. - // - // We don't do it for now as: - // - // 1. There is no urgent need for it. - // 2. It's a bit involved to make the errno variable thread-safe on - // all three operating systems (Linux, Windows, and Mac OS). - // 3. To interpret the meaning of errno in a thread-safe way, - // we need the strerror_r() function, which is not available on - // Windows. - fprintf(stderr, - "Unable to open file \"%s\"\n", - output_file_.c_str()); - fflush(stderr); - exit(EXIT_FAILURE); - } - PrintXmlUnitTest(xmlout, unit_test); - fclose(xmlout); -} - -// Returns an XML-escaped copy of the input string str. If is_attribute -// is true, the text is meant to appear as an attribute value, and -// normalizable whitespace is preserved by replacing it with character -// references. -// -// Invalid XML characters in str, if any, are stripped from the output. -// It is expected that most, if not all, of the text processed by this -// module will consist of ordinary English text. -// If this module is ever modified to produce version 1.1 XML output, -// most invalid characters can be retained using character references. -// TODO(wan): It might be nice to have a minimally invasive, human-readable -// escaping scheme for invalid characters, rather than dropping them. -String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_attribute) { - Message m; - - if (str != NULL) { - for (const char* src = str; *src; ++src) { - switch (*src) { - case '<': - m << "<"; - break; - case '>': - m << ">"; - break; - case '&': - m << "&"; - break; - case '\'': - if (is_attribute) - m << "'"; - else - m << '\''; - break; - case '"': - if (is_attribute) - m << """; - else - m << '"'; - break; - default: - if (IsValidXmlCharacter(*src)) { - if (is_attribute && IsNormalizableWhitespace(*src)) - m << String::Format("&#x%02X;", unsigned(*src)); - else - m << *src; - } - break; - } - } - } - - return m.GetString(); -} - -// Returns the given string with all characters invalid in XML removed. -// Currently invalid characters are dropped from the string. An -// alternative is to replace them with certain characters such as . or ?. -String XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters(const char* str) { - char* const output = new char[strlen(str) + 1]; - char* appender = output; - for (char ch = *str; ch != '\0'; ch = *++str) - if (IsValidXmlCharacter(ch)) - *appender++ = ch; - *appender = '\0'; - - String ret_value(output); - delete[] output; - return ret_value; -} - -// The following routines generate an XML representation of a UnitTest -// object. -// -// This is how Google Test concepts map to the DTD: -// -// <-- corresponds to a UnitTest object -// <-- corresponds to a TestCase object -// <-- corresponds to a TestInfo object -// ... -// ... -// ... -// <-- individual assertion failures -// -// -// - -// Formats the given time in milliseconds as seconds. -std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { - ::std::stringstream ss; - ss << ms/1000.0; - return ss.str(); -} - -// Streams an XML CDATA section, escaping invalid CDATA sequences as needed. -void XmlUnitTestResultPrinter::OutputXmlCDataSection(::std::ostream* stream, - const char* data) { - const char* segment = data; - *stream << ""); - if (next_segment != NULL) { - stream->write( - segment, static_cast(next_segment - segment)); - *stream << "]]>]]>"); - } else { - *stream << segment; - break; - } - } - *stream << "]]>"; -} - -// Prints an XML representation of a TestInfo object. -// TODO(wan): There is also value in printing properties with the plain printer. -void XmlUnitTestResultPrinter::OutputXmlTestInfo(::std::ostream* stream, - const char* test_case_name, - const TestInfo& test_info) { - const TestResult& result = *test_info.result(); - *stream << " \n"; - *stream << " "; - const String message = RemoveInvalidXmlCharacters(String::Format( - "%s:%d\n%s", - part.file_name(), part.line_number(), - part.message()).c_str()); - OutputXmlCDataSection(stream, message.c_str()); - *stream << "\n"; - } - } - - if (failures == 0) - *stream << " />\n"; - else - *stream << " \n"; -} - -// Prints an XML representation of a TestCase object -void XmlUnitTestResultPrinter::PrintXmlTestCase(FILE* out, - const TestCase& test_case) { - fprintf(out, - " \n", - FormatTimeInMillisAsSeconds(test_case.elapsed_time()).c_str()); - for (int i = 0; i < test_case.total_test_count(); ++i) { - StrStream stream; - OutputXmlTestInfo(&stream, test_case.name(), *test_case.GetTestInfo(i)); - fprintf(out, "%s", StrStreamToString(&stream).c_str()); - } - fprintf(out, " \n"); -} - -// Prints an XML summary of unit_test to output stream out. -void XmlUnitTestResultPrinter::PrintXmlUnitTest(FILE* out, - const UnitTest& unit_test) { - fprintf(out, "\n"); - fprintf(out, - "\n"); - for (int i = 0; i < unit_test.total_test_case_count(); ++i) - PrintXmlTestCase(out, *unit_test.GetTestCase(i)); - fprintf(out, "\n"); -} - -// Produces a string representing the test properties in a result as space -// delimited XML attributes based on the property key="value" pairs. -String XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( - const TestResult& result) { - Message attributes; - for (int i = 0; i < result.test_property_count(); ++i) { - const TestProperty& property = result.GetTestProperty(i); - attributes << " " << property.key() << "=" - << "\"" << EscapeXmlAttribute(property.value()) << "\""; - } - return attributes.GetString(); -} - -// End XmlUnitTestResultPrinter - -// Class ScopedTrace - -// Pushes the given source file location and message onto a per-thread -// trace stack maintained by Google Test. -// L < UnitTest::mutex_ -ScopedTrace::ScopedTrace(const char* file, int line, const Message& message) { - TraceInfo trace; - trace.file = file; - trace.line = line; - trace.message = message.GetString(); - - UnitTest::GetInstance()->PushGTestTrace(trace); -} - -// Pops the info pushed by the c'tor. -// L < UnitTest::mutex_ -ScopedTrace::~ScopedTrace() { - UnitTest::GetInstance()->PopGTestTrace(); -} - - -// class OsStackTraceGetter - -// Returns the current OS stack trace as a String. Parameters: -// -// max_depth - the maximum number of stack frames to be included -// in the trace. -// skip_count - the number of top frames to be skipped; doesn't count -// against max_depth. -// -// L < mutex_ -// We use "L < mutex_" to denote that the function may acquire mutex_. -String OsStackTraceGetter::CurrentStackTrace(int, int) { - return String(""); -} - -// L < mutex_ -void OsStackTraceGetter::UponLeavingGTest() { -} - -const char* const -OsStackTraceGetter::kElidedFramesMarker = - "... " GTEST_NAME_ " internal frames ..."; - -} // namespace internal - -// class TestEventListeners - -TestEventListeners::TestEventListeners() - : repeater_(new internal::TestEventRepeater()), - default_result_printer_(NULL), - default_xml_generator_(NULL) { -} - -TestEventListeners::~TestEventListeners() { delete repeater_; } - -// Returns the standard listener responsible for the default console -// output. Can be removed from the listeners list to shut down default -// console output. Note that removing this object from the listener list -// with Release transfers its ownership to the user. -void TestEventListeners::Append(TestEventListener* listener) { - repeater_->Append(listener); -} - -// Removes the given event listener from the list and returns it. It then -// becomes the caller's responsibility to delete the listener. Returns -// NULL if the listener is not found in the list. -TestEventListener* TestEventListeners::Release(TestEventListener* listener) { - if (listener == default_result_printer_) - default_result_printer_ = NULL; - else if (listener == default_xml_generator_) - default_xml_generator_ = NULL; - return repeater_->Release(listener); -} - -// Returns repeater that broadcasts the TestEventListener events to all -// subscribers. -TestEventListener* TestEventListeners::repeater() { return repeater_; } - -// Sets the default_result_printer attribute to the provided listener. -// The listener is also added to the listener list and previous -// default_result_printer is removed from it and deleted. The listener can -// also be NULL in which case it will not be added to the list. Does -// nothing if the previous and the current listener objects are the same. -void TestEventListeners::SetDefaultResultPrinter(TestEventListener* listener) { - if (default_result_printer_ != listener) { - // It is an error to pass this method a listener that is already in the - // list. - delete Release(default_result_printer_); - default_result_printer_ = listener; - if (listener != NULL) - Append(listener); - } -} - -// Sets the default_xml_generator attribute to the provided listener. The -// listener is also added to the listener list and previous -// default_xml_generator is removed from it and deleted. The listener can -// also be NULL in which case it will not be added to the list. Does -// nothing if the previous and the current listener objects are the same. -void TestEventListeners::SetDefaultXmlGenerator(TestEventListener* listener) { - if (default_xml_generator_ != listener) { - // It is an error to pass this method a listener that is already in the - // list. - delete Release(default_xml_generator_); - default_xml_generator_ = listener; - if (listener != NULL) - Append(listener); - } -} - -// Controls whether events will be forwarded by the repeater to the -// listeners in the list. -bool TestEventListeners::EventForwardingEnabled() const { - return repeater_->forwarding_enabled(); -} - -void TestEventListeners::SuppressEventForwarding() { - repeater_->set_forwarding_enabled(false); -} - -// class UnitTest - -// Gets the singleton UnitTest object. The first time this method is -// called, a UnitTest object is constructed and returned. Consecutive -// calls will return the same object. -// -// We don't protect this under mutex_ as a user is not supposed to -// call this before main() starts, from which point on the return -// value will never change. -UnitTest * UnitTest::GetInstance() { - // When compiled with MSVC 7.1 in optimized mode, destroying the - // UnitTest object upon exiting the program messes up the exit code, - // causing successful tests to appear failed. We have to use a - // different implementation in this case to bypass the compiler bug. - // This implementation makes the compiler happy, at the cost of - // leaking the UnitTest object. - - // CodeGear C++Builder insists on a public destructor for the - // default implementation. Use this implementation to keep good OO - // design with private destructor. - -#if (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) - static UnitTest* const instance = new UnitTest; - return instance; -#else - static UnitTest instance; - return &instance; -#endif // (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) -} - -// Gets the number of successful test cases. -int UnitTest::successful_test_case_count() const { - return impl()->successful_test_case_count(); -} - -// Gets the number of failed test cases. -int UnitTest::failed_test_case_count() const { - return impl()->failed_test_case_count(); -} - -// Gets the number of all test cases. -int UnitTest::total_test_case_count() const { - return impl()->total_test_case_count(); -} - -// Gets the number of all test cases that contain at least one test -// that should run. -int UnitTest::test_case_to_run_count() const { - return impl()->test_case_to_run_count(); -} - -// Gets the number of successful tests. -int UnitTest::successful_test_count() const { - return impl()->successful_test_count(); -} - -// Gets the number of failed tests. -int UnitTest::failed_test_count() const { return impl()->failed_test_count(); } - -// Gets the number of disabled tests. -int UnitTest::disabled_test_count() const { - return impl()->disabled_test_count(); -} - -// Gets the number of all tests. -int UnitTest::total_test_count() const { return impl()->total_test_count(); } - -// Gets the number of tests that should run. -int UnitTest::test_to_run_count() const { return impl()->test_to_run_count(); } - -// Gets the elapsed time, in milliseconds. -internal::TimeInMillis UnitTest::elapsed_time() const { - return impl()->elapsed_time(); -} - -// Returns true iff the unit test passed (i.e. all test cases passed). -bool UnitTest::Passed() const { return impl()->Passed(); } - -// Returns true iff the unit test failed (i.e. some test case failed -// or something outside of all tests failed). -bool UnitTest::Failed() const { return impl()->Failed(); } - -// Gets the i-th test case among all the test cases. i can range from 0 to -// total_test_case_count() - 1. If i is not in that range, returns NULL. -const TestCase* UnitTest::GetTestCase(int i) const { - return impl()->GetTestCase(i); -} - -// Gets the i-th test case among all the test cases. i can range from 0 to -// total_test_case_count() - 1. If i is not in that range, returns NULL. -TestCase* UnitTest::GetMutableTestCase(int i) { - return impl()->GetMutableTestCase(i); -} - -// Returns the list of event listeners that can be used to track events -// inside Google Test. -TestEventListeners& UnitTest::listeners() { - return *impl()->listeners(); -} - -// Registers and returns a global test environment. When a test -// program is run, all global test environments will be set-up in the -// order they were registered. After all tests in the program have -// finished, all global test environments will be torn-down in the -// *reverse* order they were registered. -// -// The UnitTest object takes ownership of the given environment. -// -// We don't protect this under mutex_, as we only support calling it -// from the main thread. -Environment* UnitTest::AddEnvironment(Environment* env) { - if (env == NULL) { - return NULL; - } - - impl_->environments().push_back(env); - return env; -} - -#if GTEST_HAS_EXCEPTIONS -// A failed Google Test assertion will throw an exception of this type -// when exceptions are enabled. We derive it from std::runtime_error, -// which is for errors presumably detectable only at run time. Since -// std::runtime_error inherits from std::exception, many testing -// frameworks know how to extract and print the message inside it. -class GoogleTestFailureException : public ::std::runtime_error { - public: - explicit GoogleTestFailureException(const TestPartResult& failure) - : ::std::runtime_error(PrintTestPartResultToString(failure).c_str()) {} -}; -#endif - -// Adds a TestPartResult to the current TestResult object. All Google Test -// assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) eventually call -// this to report their results. The user code should use the -// assertion macros instead of calling this directly. -// L < mutex_ -void UnitTest::AddTestPartResult(TestPartResult::Type result_type, - const char* file_name, - int line_number, - const internal::String& message, - const internal::String& os_stack_trace) { - Message msg; - msg << message; - - internal::MutexLock lock(&mutex_); - if (impl_->gtest_trace_stack().size() > 0) { - msg << "\n" << GTEST_NAME_ << " trace:"; - - for (int i = static_cast(impl_->gtest_trace_stack().size()); - i > 0; --i) { - const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1]; - msg << "\n" << internal::FormatFileLocation(trace.file, trace.line) - << " " << trace.message; - } - } - - if (os_stack_trace.c_str() != NULL && !os_stack_trace.empty()) { - msg << internal::kStackTraceMarker << os_stack_trace; - } - - const TestPartResult result = - TestPartResult(result_type, file_name, line_number, - msg.GetString().c_str()); - impl_->GetTestPartResultReporterForCurrentThread()-> - ReportTestPartResult(result); - - if (result_type != TestPartResult::kSuccess) { - // gtest_break_on_failure takes precedence over - // gtest_throw_on_failure. This allows a user to set the latter - // in the code (perhaps in order to use Google Test assertions - // with another testing framework) and specify the former on the - // command line for debugging. - if (GTEST_FLAG(break_on_failure)) { -#if GTEST_OS_WINDOWS - // Using DebugBreak on Windows allows gtest to still break into a debugger - // when a failure happens and both the --gtest_break_on_failure and - // the --gtest_catch_exceptions flags are specified. - DebugBreak(); -#else - *static_cast(NULL) = 1; -#endif // GTEST_OS_WINDOWS - } else if (GTEST_FLAG(throw_on_failure)) { -#if GTEST_HAS_EXCEPTIONS - throw GoogleTestFailureException(result); -#else - // We cannot call abort() as it generates a pop-up in debug mode - // that cannot be suppressed in VC 7.1 or below. - exit(1); -#endif - } - } -} - -// Creates and adds a property to the current TestResult. If a property matching -// the supplied value already exists, updates its value instead. -void UnitTest::RecordPropertyForCurrentTest(const char* key, - const char* value) { - const TestProperty test_property(key, value); - impl_->current_test_result()->RecordProperty(test_property); -} - -// Runs all tests in this UnitTest object and prints the result. -// Returns 0 if successful, or 1 otherwise. -// -// We don't protect this under mutex_, as we only support calling it -// from the main thread. -int UnitTest::Run() { -#if GTEST_HAS_SEH - // Catch SEH-style exceptions. - - const bool in_death_test_child_process = - internal::GTEST_FLAG(internal_run_death_test).length() > 0; - - // Either the user wants Google Test to catch exceptions thrown by the - // tests or this is executing in the context of death test child - // process. In either case the user does not want to see pop-up dialogs - // about crashes - they are expected.. - if (GTEST_FLAG(catch_exceptions) || in_death_test_child_process) { -#if !GTEST_OS_WINDOWS_MOBILE - // SetErrorMode doesn't exist on CE. - SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOALIGNMENTFAULTEXCEPT | - SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX); -#endif // !GTEST_OS_WINDOWS_MOBILE - -#if (defined(_MSC_VER) || GTEST_OS_WINDOWS_MINGW) && !GTEST_OS_WINDOWS_MOBILE - // Death test children can be terminated with _abort(). On Windows, - // _abort() can show a dialog with a warning message. This forces the - // abort message to go to stderr instead. - _set_error_mode(_OUT_TO_STDERR); -#endif - -#if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE - // In the debug version, Visual Studio pops up a separate dialog - // offering a choice to debug the aborted program. We need to suppress - // this dialog or it will pop up for every EXPECT/ASSERT_DEATH statement - // executed. Google Test will notify the user of any unexpected - // failure via stderr. - // - // VC++ doesn't define _set_abort_behavior() prior to the version 8.0. - // Users of prior VC versions shall suffer the agony and pain of - // clicking through the countless debug dialogs. - // TODO(vladl@google.com): find a way to suppress the abort dialog() in the - // debug mode when compiled with VC 7.1 or lower. - if (!GTEST_FLAG(break_on_failure)) - _set_abort_behavior( - 0x0, // Clear the following flags: - _WRITE_ABORT_MSG | _CALL_REPORTFAULT); // pop-up window, core dump. -#endif - } - - __try { - return impl_->RunAllTests(); - } __except(internal::UnitTestOptions::GTestShouldProcessSEH( - GetExceptionCode())) { - printf("Exception thrown with code 0x%x.\nFAIL\n", GetExceptionCode()); - fflush(stdout); - return 1; - } - -#else // We are on a compiler or platform that doesn't support SEH. - - return impl_->RunAllTests(); -#endif // GTEST_HAS_SEH -} - -// Returns the working directory when the first TEST() or TEST_F() was -// executed. -const char* UnitTest::original_working_dir() const { - return impl_->original_working_dir_.c_str(); -} - -// Returns the TestCase object for the test that's currently running, -// or NULL if no test is running. -// L < mutex_ -const TestCase* UnitTest::current_test_case() const { - internal::MutexLock lock(&mutex_); - return impl_->current_test_case(); -} - -// Returns the TestInfo object for the test that's currently running, -// or NULL if no test is running. -// L < mutex_ -const TestInfo* UnitTest::current_test_info() const { - internal::MutexLock lock(&mutex_); - return impl_->current_test_info(); -} - -// Returns the random seed used at the start of the current test run. -int UnitTest::random_seed() const { return impl_->random_seed(); } - -#if GTEST_HAS_PARAM_TEST -// Returns ParameterizedTestCaseRegistry object used to keep track of -// value-parameterized tests and instantiate and register them. -// L < mutex_ -internal::ParameterizedTestCaseRegistry& - UnitTest::parameterized_test_registry() { - return impl_->parameterized_test_registry(); -} -#endif // GTEST_HAS_PARAM_TEST - -// Creates an empty UnitTest. -UnitTest::UnitTest() { - impl_ = new internal::UnitTestImpl(this); -} - -// Destructor of UnitTest. -UnitTest::~UnitTest() { - delete impl_; -} - -// Pushes a trace defined by SCOPED_TRACE() on to the per-thread -// Google Test trace stack. -// L < mutex_ -void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) { - internal::MutexLock lock(&mutex_); - impl_->gtest_trace_stack().push_back(trace); -} - -// Pops a trace from the per-thread Google Test trace stack. -// L < mutex_ -void UnitTest::PopGTestTrace() { - internal::MutexLock lock(&mutex_); - impl_->gtest_trace_stack().pop_back(); -} - -namespace internal { - -UnitTestImpl::UnitTestImpl(UnitTest* parent) - : parent_(parent), -#ifdef _MSC_VER -#pragma warning(push) // Saves the current warning state. -#pragma warning(disable:4355) // Temporarily disables warning 4355 - // (using this in initializer). - default_global_test_part_result_reporter_(this), - default_per_thread_test_part_result_reporter_(this), -#pragma warning(pop) // Restores the warning state again. -#else - default_global_test_part_result_reporter_(this), - default_per_thread_test_part_result_reporter_(this), -#endif // _MSC_VER - global_test_part_result_repoter_( - &default_global_test_part_result_reporter_), - per_thread_test_part_result_reporter_( - &default_per_thread_test_part_result_reporter_), -#if GTEST_HAS_PARAM_TEST - parameterized_test_registry_(), - parameterized_tests_registered_(false), -#endif // GTEST_HAS_PARAM_TEST - last_death_test_case_(-1), - current_test_case_(NULL), - current_test_info_(NULL), - ad_hoc_test_result_(), - os_stack_trace_getter_(NULL), - post_flag_parse_init_performed_(false), - random_seed_(0), // Will be overridden by the flag before first use. - random_(0), // Will be reseeded before first use. -#if GTEST_HAS_DEATH_TEST - elapsed_time_(0), - internal_run_death_test_flag_(NULL), - death_test_factory_(new DefaultDeathTestFactory) { -#else - elapsed_time_(0) { -#endif // GTEST_HAS_DEATH_TEST - listeners()->SetDefaultResultPrinter(new PrettyUnitTestResultPrinter); -} - -UnitTestImpl::~UnitTestImpl() { - // Deletes every TestCase. - ForEach(test_cases_, internal::Delete); - - // Deletes every Environment. - ForEach(environments_, internal::Delete); - - delete os_stack_trace_getter_; -} - -#if GTEST_HAS_DEATH_TEST -// Disables event forwarding if the control is currently in a death test -// subprocess. Must not be called before InitGoogleTest. -void UnitTestImpl::SuppressTestEventsIfInSubprocess() { - if (internal_run_death_test_flag_.get() != NULL) - listeners()->SuppressEventForwarding(); -} -#endif // GTEST_HAS_DEATH_TEST - -// Initializes event listeners performing XML output as specified by -// UnitTestOptions. Must not be called before InitGoogleTest. -void UnitTestImpl::ConfigureXmlOutput() { - const String& output_format = UnitTestOptions::GetOutputFormat(); - if (output_format == "xml") { - listeners()->SetDefaultXmlGenerator(new XmlUnitTestResultPrinter( - UnitTestOptions::GetAbsolutePathToOutputFile().c_str())); - } else if (output_format != "") { - printf("WARNING: unrecognized output format \"%s\" ignored.\n", - output_format.c_str()); - fflush(stdout); - } -} - -// Performs initialization dependent upon flag values obtained in -// ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to -// ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest -// this function is also called from RunAllTests. Since this function can be -// called more than once, it has to be idempotent. -void UnitTestImpl::PostFlagParsingInit() { - // Ensures that this function does not execute more than once. - if (!post_flag_parse_init_performed_) { - post_flag_parse_init_performed_ = true; - -#if GTEST_HAS_DEATH_TEST - InitDeathTestSubprocessControlInfo(); - SuppressTestEventsIfInSubprocess(); -#endif // GTEST_HAS_DEATH_TEST - - // Registers parameterized tests. This makes parameterized tests - // available to the UnitTest reflection API without running - // RUN_ALL_TESTS. - RegisterParameterizedTests(); - - // Configures listeners for XML output. This makes it possible for users - // to shut down the default XML output before invoking RUN_ALL_TESTS. - ConfigureXmlOutput(); - } -} - -// A predicate that checks the name of a TestCase against a known -// value. -// -// This is used for implementation of the UnitTest class only. We put -// it in the anonymous namespace to prevent polluting the outer -// namespace. -// -// TestCaseNameIs is copyable. -class TestCaseNameIs { - public: - // Constructor. - explicit TestCaseNameIs(const String& name) - : name_(name) {} - - // Returns true iff the name of test_case matches name_. - bool operator()(const TestCase* test_case) const { - return test_case != NULL && strcmp(test_case->name(), name_.c_str()) == 0; - } - - private: - String name_; -}; - -// Finds and returns a TestCase with the given name. If one doesn't -// exist, creates one and returns it. It's the CALLER'S -// RESPONSIBILITY to ensure that this function is only called WHEN THE -// TESTS ARE NOT SHUFFLED. -// -// Arguments: -// -// test_case_name: name of the test case -// set_up_tc: pointer to the function that sets up the test case -// tear_down_tc: pointer to the function that tears down the test case -TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, - const char* comment, - Test::SetUpTestCaseFunc set_up_tc, - Test::TearDownTestCaseFunc tear_down_tc) { - // Can we find a TestCase with the given name? - const std::vector::const_iterator test_case = - std::find_if(test_cases_.begin(), test_cases_.end(), - TestCaseNameIs(test_case_name)); - - if (test_case != test_cases_.end()) - return *test_case; - - // No. Let's create one. - TestCase* const new_test_case = - new TestCase(test_case_name, comment, set_up_tc, tear_down_tc); - - // Is this a death test case? - if (internal::UnitTestOptions::MatchesFilter(String(test_case_name), - kDeathTestCaseFilter)) { - // Yes. Inserts the test case after the last death test case - // defined so far. This only works when the test cases haven't - // been shuffled. Otherwise we may end up running a death test - // after a non-death test. - ++last_death_test_case_; - test_cases_.insert(test_cases_.begin() + last_death_test_case_, - new_test_case); - } else { - // No. Appends to the end of the list. - test_cases_.push_back(new_test_case); - } - - test_case_indices_.push_back(static_cast(test_case_indices_.size())); - return new_test_case; -} - -// Helpers for setting up / tearing down the given environment. They -// are for use in the ForEach() function. -static void SetUpEnvironment(Environment* env) { env->SetUp(); } -static void TearDownEnvironment(Environment* env) { env->TearDown(); } - -// Runs all tests in this UnitTest object, prints the result, and -// returns 0 if all tests are successful, or 1 otherwise. If any -// exception is thrown during a test on Windows, this test is -// considered to be failed, but the rest of the tests will still be -// run. (We disable exceptions on Linux and Mac OS X, so the issue -// doesn't apply there.) -// When parameterized tests are enabled, it expands and registers -// parameterized tests first in RegisterParameterizedTests(). -// All other functions called from RunAllTests() may safely assume that -// parameterized tests are ready to be counted and run. -int UnitTestImpl::RunAllTests() { - // Makes sure InitGoogleTest() was called. - if (!GTestIsInitialized()) { - printf("%s", - "\nThis test program did NOT call ::testing::InitGoogleTest " - "before calling RUN_ALL_TESTS(). Please fix it.\n"); - return 1; - } - - // Do not run any test if the --help flag was specified. - if (g_help_flag) - return 0; - - // Repeats the call to the post-flag parsing initialization in case the - // user didn't call InitGoogleTest. - PostFlagParsingInit(); - - // Even if sharding is not on, test runners may want to use the - // GTEST_SHARD_STATUS_FILE to query whether the test supports the sharding - // protocol. - internal::WriteToShardStatusFileIfNeeded(); - - // True iff we are in a subprocess for running a thread-safe-style - // death test. - bool in_subprocess_for_death_test = false; - -#if GTEST_HAS_DEATH_TEST - in_subprocess_for_death_test = (internal_run_death_test_flag_.get() != NULL); -#endif // GTEST_HAS_DEATH_TEST - - const bool should_shard = ShouldShard(kTestTotalShards, kTestShardIndex, - in_subprocess_for_death_test); - - // Compares the full test names with the filter to decide which - // tests to run. - const bool has_tests_to_run = FilterTests(should_shard - ? HONOR_SHARDING_PROTOCOL - : IGNORE_SHARDING_PROTOCOL) > 0; - - // Lists the tests and exits if the --gtest_list_tests flag was specified. - if (GTEST_FLAG(list_tests)) { - // This must be called *after* FilterTests() has been called. - ListTestsMatchingFilter(); - return 0; - } - - random_seed_ = GTEST_FLAG(shuffle) ? - GetRandomSeedFromFlag(GTEST_FLAG(random_seed)) : 0; - - // True iff at least one test has failed. - bool failed = false; - - TestEventListener* repeater = listeners()->repeater(); - - repeater->OnTestProgramStart(*parent_); - - // How many times to repeat the tests? We don't want to repeat them - // when we are inside the subprocess of a death test. - const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); - // Repeats forever if the repeat count is negative. - const bool forever = repeat < 0; - for (int i = 0; forever || i != repeat; i++) { - ClearResult(); - - const TimeInMillis start = GetTimeInMillis(); - - // Shuffles test cases and tests if requested. - if (has_tests_to_run && GTEST_FLAG(shuffle)) { - random()->Reseed(random_seed_); - // This should be done before calling OnTestIterationStart(), - // such that a test event listener can see the actual test order - // in the event. - ShuffleTests(); - } - - // Tells the unit test event listeners that the tests are about to start. - repeater->OnTestIterationStart(*parent_, i); - - // Runs each test case if there is at least one test to run. - if (has_tests_to_run) { - // Sets up all environments beforehand. - repeater->OnEnvironmentsSetUpStart(*parent_); - ForEach(environments_, SetUpEnvironment); - repeater->OnEnvironmentsSetUpEnd(*parent_); - - // Runs the tests only if there was no fatal failure during global - // set-up. - if (!Test::HasFatalFailure()) { - for (int test_index = 0; test_index < total_test_case_count(); - test_index++) { - GetMutableTestCase(test_index)->Run(); - } - } - - // Tears down all environments in reverse order afterwards. - repeater->OnEnvironmentsTearDownStart(*parent_); - std::for_each(environments_.rbegin(), environments_.rend(), - TearDownEnvironment); - repeater->OnEnvironmentsTearDownEnd(*parent_); - } - - elapsed_time_ = GetTimeInMillis() - start; - - // Tells the unit test event listener that the tests have just finished. - repeater->OnTestIterationEnd(*parent_, i); - - // Gets the result and clears it. - if (!Passed()) { - failed = true; - } - - // Restores the original test order after the iteration. This - // allows the user to quickly repro a failure that happens in the - // N-th iteration without repeating the first (N - 1) iterations. - // This is not enclosed in "if (GTEST_FLAG(shuffle)) { ... }", in - // case the user somehow changes the value of the flag somewhere - // (it's always safe to unshuffle the tests). - UnshuffleTests(); - - if (GTEST_FLAG(shuffle)) { - // Picks a new random seed for each iteration. - random_seed_ = GetNextRandomSeed(random_seed_); - } - } - - repeater->OnTestProgramEnd(*parent_); - - // Returns 0 if all tests passed, or 1 other wise. - return failed ? 1 : 0; -} - -// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file -// if the variable is present. If a file already exists at this location, this -// function will write over it. If the variable is present, but the file cannot -// be created, prints an error and exits. -void WriteToShardStatusFileIfNeeded() { - const char* const test_shard_file = posix::GetEnv(kTestShardStatusFile); - if (test_shard_file != NULL) { - FILE* const file = posix::FOpen(test_shard_file, "w"); - if (file == NULL) { - ColoredPrintf(COLOR_RED, - "Could not write to the test shard status file \"%s\" " - "specified by the %s environment variable.\n", - test_shard_file, kTestShardStatusFile); - fflush(stdout); - exit(EXIT_FAILURE); - } - fclose(file); - } -} - -// Checks whether sharding is enabled by examining the relevant -// environment variable values. If the variables are present, -// but inconsistent (i.e., shard_index >= total_shards), prints -// an error and exits. If in_subprocess_for_death_test, sharding is -// disabled because it must only be applied to the original test -// process. Otherwise, we could filter out death tests we intended to execute. -bool ShouldShard(const char* total_shards_env, - const char* shard_index_env, - bool in_subprocess_for_death_test) { - if (in_subprocess_for_death_test) { - return false; - } - - const Int32 total_shards = Int32FromEnvOrDie(total_shards_env, -1); - const Int32 shard_index = Int32FromEnvOrDie(shard_index_env, -1); - - if (total_shards == -1 && shard_index == -1) { - return false; - } else if (total_shards == -1 && shard_index != -1) { - const Message msg = Message() - << "Invalid environment variables: you have " - << kTestShardIndex << " = " << shard_index - << ", but have left " << kTestTotalShards << " unset.\n"; - ColoredPrintf(COLOR_RED, msg.GetString().c_str()); - fflush(stdout); - exit(EXIT_FAILURE); - } else if (total_shards != -1 && shard_index == -1) { - const Message msg = Message() - << "Invalid environment variables: you have " - << kTestTotalShards << " = " << total_shards - << ", but have left " << kTestShardIndex << " unset.\n"; - ColoredPrintf(COLOR_RED, msg.GetString().c_str()); - fflush(stdout); - exit(EXIT_FAILURE); - } else if (shard_index < 0 || shard_index >= total_shards) { - const Message msg = Message() - << "Invalid environment variables: we require 0 <= " - << kTestShardIndex << " < " << kTestTotalShards - << ", but you have " << kTestShardIndex << "=" << shard_index - << ", " << kTestTotalShards << "=" << total_shards << ".\n"; - ColoredPrintf(COLOR_RED, msg.GetString().c_str()); - fflush(stdout); - exit(EXIT_FAILURE); - } - - return total_shards > 1; -} - -// Parses the environment variable var as an Int32. If it is unset, -// returns default_val. If it is not an Int32, prints an error -// and aborts. -Int32 Int32FromEnvOrDie(const char* const var, Int32 default_val) { - const char* str_val = posix::GetEnv(var); - if (str_val == NULL) { - return default_val; - } - - Int32 result; - if (!ParseInt32(Message() << "The value of environment variable " << var, - str_val, &result)) { - exit(EXIT_FAILURE); - } - return result; -} - -// Given the total number of shards, the shard index, and the test id, -// returns true iff the test should be run on this shard. The test id is -// some arbitrary but unique non-negative integer assigned to each test -// method. Assumes that 0 <= shard_index < total_shards. -bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_id) { - return (test_id % total_shards) == shard_index; -} - -// Compares the name of each test with the user-specified filter to -// decide whether the test should be run, then records the result in -// each TestCase and TestInfo object. -// If shard_tests == true, further filters tests based on sharding -// variables in the environment - see -// http://code.google.com/p/googletest/wiki/GoogleTestAdvancedGuide. -// Returns the number of tests that should run. -int UnitTestImpl::FilterTests(ReactionToSharding shard_tests) { - const Int32 total_shards = shard_tests == HONOR_SHARDING_PROTOCOL ? - Int32FromEnvOrDie(kTestTotalShards, -1) : -1; - const Int32 shard_index = shard_tests == HONOR_SHARDING_PROTOCOL ? - Int32FromEnvOrDie(kTestShardIndex, -1) : -1; - - // num_runnable_tests are the number of tests that will - // run across all shards (i.e., match filter and are not disabled). - // num_selected_tests are the number of tests to be run on - // this shard. - int num_runnable_tests = 0; - int num_selected_tests = 0; - for (size_t i = 0; i < test_cases_.size(); i++) { - TestCase* const test_case = test_cases_[i]; - const String &test_case_name = test_case->name(); - test_case->set_should_run(false); - - for (size_t j = 0; j < test_case->test_info_list().size(); j++) { - TestInfo* const test_info = test_case->test_info_list()[j]; - const String test_name(test_info->name()); - // A test is disabled if test case name or test name matches - // kDisableTestFilter. - const bool is_disabled = - internal::UnitTestOptions::MatchesFilter(test_case_name, - kDisableTestFilter) || - internal::UnitTestOptions::MatchesFilter(test_name, - kDisableTestFilter); - test_info->impl()->set_is_disabled(is_disabled); - - const bool matches_filter = - internal::UnitTestOptions::FilterMatchesTest(test_case_name, - test_name); - test_info->impl()->set_matches_filter(matches_filter); - - const bool is_runnable = - (GTEST_FLAG(also_run_disabled_tests) || !is_disabled) && - matches_filter; - - const bool is_selected = is_runnable && - (shard_tests == IGNORE_SHARDING_PROTOCOL || - ShouldRunTestOnShard(total_shards, shard_index, - num_runnable_tests)); - - num_runnable_tests += is_runnable; - num_selected_tests += is_selected; - - test_info->impl()->set_should_run(is_selected); - test_case->set_should_run(test_case->should_run() || is_selected); - } - } - return num_selected_tests; -} - -// Prints the names of the tests matching the user-specified filter flag. -void UnitTestImpl::ListTestsMatchingFilter() { - for (size_t i = 0; i < test_cases_.size(); i++) { - const TestCase* const test_case = test_cases_[i]; - bool printed_test_case_name = false; - - for (size_t j = 0; j < test_case->test_info_list().size(); j++) { - const TestInfo* const test_info = - test_case->test_info_list()[j]; - if (test_info->matches_filter()) { - if (!printed_test_case_name) { - printed_test_case_name = true; - printf("%s.\n", test_case->name()); - } - printf(" %s\n", test_info->name()); - } - } - } - fflush(stdout); -} - -// Sets the OS stack trace getter. -// -// Does nothing if the input and the current OS stack trace getter are -// the same; otherwise, deletes the old getter and makes the input the -// current getter. -void UnitTestImpl::set_os_stack_trace_getter( - OsStackTraceGetterInterface* getter) { - if (os_stack_trace_getter_ != getter) { - delete os_stack_trace_getter_; - os_stack_trace_getter_ = getter; - } -} - -// Returns the current OS stack trace getter if it is not NULL; -// otherwise, creates an OsStackTraceGetter, makes it the current -// getter, and returns it. -OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { - if (os_stack_trace_getter_ == NULL) { - os_stack_trace_getter_ = new OsStackTraceGetter; - } - - return os_stack_trace_getter_; -} - -// Returns the TestResult for the test that's currently running, or -// the TestResult for the ad hoc test if no test is running. -TestResult* UnitTestImpl::current_test_result() { - return current_test_info_ ? - current_test_info_->impl()->result() : &ad_hoc_test_result_; -} - -// Shuffles all test cases, and the tests within each test case, -// making sure that death tests are still run first. -void UnitTestImpl::ShuffleTests() { - // Shuffles the death test cases. - ShuffleRange(random(), 0, last_death_test_case_ + 1, &test_case_indices_); - - // Shuffles the non-death test cases. - ShuffleRange(random(), last_death_test_case_ + 1, - static_cast(test_cases_.size()), &test_case_indices_); - - // Shuffles the tests inside each test case. - for (size_t i = 0; i < test_cases_.size(); i++) { - test_cases_[i]->ShuffleTests(random()); - } -} - -// Restores the test cases and tests to their order before the first shuffle. -void UnitTestImpl::UnshuffleTests() { - for (size_t i = 0; i < test_cases_.size(); i++) { - // Unshuffles the tests in each test case. - test_cases_[i]->UnshuffleTests(); - // Resets the index of each test case. - test_case_indices_[i] = static_cast(i); - } -} - -// TestInfoImpl constructor. The new instance assumes ownership of the test -// factory object. -TestInfoImpl::TestInfoImpl(TestInfo* parent, - const char* a_test_case_name, - const char* a_name, - const char* a_test_case_comment, - const char* a_comment, - TypeId a_fixture_class_id, - internal::TestFactoryBase* factory) : - parent_(parent), - test_case_name_(String(a_test_case_name)), - name_(String(a_name)), - test_case_comment_(String(a_test_case_comment)), - comment_(String(a_comment)), - fixture_class_id_(a_fixture_class_id), - should_run_(false), - is_disabled_(false), - matches_filter_(false), - factory_(factory) { -} - -// TestInfoImpl destructor. -TestInfoImpl::~TestInfoImpl() { - delete factory_; -} - -// Returns the current OS stack trace as a String. -// -// The maximum number of stack frames to be included is specified by -// the gtest_stack_trace_depth flag. The skip_count parameter -// specifies the number of top frames to be skipped, which doesn't -// count against the number of frames to be included. -// -// For example, if Foo() calls Bar(), which in turn calls -// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in -// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. -String GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, - int skip_count) { - // We pass skip_count + 1 to skip this wrapper function in addition - // to what the user really wants to skip. - return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1); -} - -// Used by the GTEST_HIDE_UNREACHABLE_CODE_ macro to suppress unreachable -// code warnings. -namespace { -class ClassUniqueToAlwaysTrue {}; -} - -bool IsTrue(bool condition) { return condition; } - -bool AlwaysTrue() { -#if GTEST_HAS_EXCEPTIONS - // This condition is always false so AlwaysTrue() never actually throws, - // but it makes the compiler think that it may throw. - if (IsTrue(false)) - throw ClassUniqueToAlwaysTrue(); -#endif // GTEST_HAS_EXCEPTIONS - return true; -} - -// If *pstr starts with the given prefix, modifies *pstr to be right -// past the prefix and returns true; otherwise leaves *pstr unchanged -// and returns false. None of pstr, *pstr, and prefix can be NULL. -bool SkipPrefix(const char* prefix, const char** pstr) { - const size_t prefix_len = strlen(prefix); - if (strncmp(*pstr, prefix, prefix_len) == 0) { - *pstr += prefix_len; - return true; - } - return false; -} - -// Parses a string as a command line flag. The string should have -// the format "--flag=value". When def_optional is true, the "=value" -// part can be omitted. -// -// Returns the value of the flag, or NULL if the parsing failed. -const char* ParseFlagValue(const char* str, - const char* flag, - bool def_optional) { - // str and flag must not be NULL. - if (str == NULL || flag == NULL) return NULL; - - // The flag must start with "--" followed by GTEST_FLAG_PREFIX_. - const String flag_str = String::Format("--%s%s", GTEST_FLAG_PREFIX_, flag); - const size_t flag_len = flag_str.length(); - if (strncmp(str, flag_str.c_str(), flag_len) != 0) return NULL; - - // Skips the flag name. - const char* flag_end = str + flag_len; - - // When def_optional is true, it's OK to not have a "=value" part. - if (def_optional && (flag_end[0] == '\0')) { - return flag_end; - } - - // If def_optional is true and there are more characters after the - // flag name, or if def_optional is false, there must be a '=' after - // the flag name. - if (flag_end[0] != '=') return NULL; - - // Returns the string after "=". - return flag_end + 1; -} - -// Parses a string for a bool flag, in the form of either -// "--flag=value" or "--flag". -// -// In the former case, the value is taken as true as long as it does -// not start with '0', 'f', or 'F'. -// -// In the latter case, the value is taken as true. -// -// On success, stores the value of the flag in *value, and returns -// true. On failure, returns false without changing *value. -bool ParseBoolFlag(const char* str, const char* flag, bool* value) { - // Gets the value of the flag as a string. - const char* const value_str = ParseFlagValue(str, flag, true); - - // Aborts if the parsing failed. - if (value_str == NULL) return false; - - // Converts the string value to a bool. - *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F'); - return true; -} - -// Parses a string for an Int32 flag, in the form of -// "--flag=value". -// -// On success, stores the value of the flag in *value, and returns -// true. On failure, returns false without changing *value. -bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { - // Gets the value of the flag as a string. - const char* const value_str = ParseFlagValue(str, flag, false); - - // Aborts if the parsing failed. - if (value_str == NULL) return false; - - // Sets *value to the value of the flag. - return ParseInt32(Message() << "The value of flag --" << flag, - value_str, value); -} - -// Parses a string for a string flag, in the form of -// "--flag=value". -// -// On success, stores the value of the flag in *value, and returns -// true. On failure, returns false without changing *value. -bool ParseStringFlag(const char* str, const char* flag, String* value) { - // Gets the value of the flag as a string. - const char* const value_str = ParseFlagValue(str, flag, false); - - // Aborts if the parsing failed. - if (value_str == NULL) return false; - - // Sets *value to the value of the flag. - *value = value_str; - return true; -} - -// Determines whether a string has a prefix that Google Test uses for its -// flags, i.e., starts with GTEST_FLAG_PREFIX_ or GTEST_FLAG_PREFIX_DASH_. -// If Google Test detects that a command line flag has its prefix but is not -// recognized, it will print its help message. Flags starting with -// GTEST_INTERNAL_PREFIX_ followed by "internal_" are considered Google Test -// internal flags and do not trigger the help message. -static bool HasGoogleTestFlagPrefix(const char* str) { - return (SkipPrefix("--", &str) || - SkipPrefix("-", &str) || - SkipPrefix("/", &str)) && - !SkipPrefix(GTEST_FLAG_PREFIX_ "internal_", &str) && - (SkipPrefix(GTEST_FLAG_PREFIX_, &str) || - SkipPrefix(GTEST_FLAG_PREFIX_DASH_, &str)); -} - -// Prints a string containing code-encoded text. The following escape -// sequences can be used in the string to control the text color: -// -// @@ prints a single '@' character. -// @R changes the color to red. -// @G changes the color to green. -// @Y changes the color to yellow. -// @D changes to the default terminal text color. -// -// TODO(wan@google.com): Write tests for this once we add stdout -// capturing to Google Test. -static void PrintColorEncoded(const char* str) { - GTestColor color = COLOR_DEFAULT; // The current color. - - // Conceptually, we split the string into segments divided by escape - // sequences. Then we print one segment at a time. At the end of - // each iteration, the str pointer advances to the beginning of the - // next segment. - for (;;) { - const char* p = strchr(str, '@'); - if (p == NULL) { - ColoredPrintf(color, "%s", str); - return; - } - - ColoredPrintf(color, "%s", String(str, p - str).c_str()); - - const char ch = p[1]; - str = p + 2; - if (ch == '@') { - ColoredPrintf(color, "@"); - } else if (ch == 'D') { - color = COLOR_DEFAULT; - } else if (ch == 'R') { - color = COLOR_RED; - } else if (ch == 'G') { - color = COLOR_GREEN; - } else if (ch == 'Y') { - color = COLOR_YELLOW; - } else { - --str; - } - } -} - -static const char kColorEncodedHelpMessage[] = -"This program contains tests written using " GTEST_NAME_ ". You can use the\n" -"following command line flags to control its behavior:\n" -"\n" -"Test Selection:\n" -" @G--" GTEST_FLAG_PREFIX_ "list_tests@D\n" -" List the names of all tests instead of running them. The name of\n" -" TEST(Foo, Bar) is \"Foo.Bar\".\n" -" @G--" GTEST_FLAG_PREFIX_ "filter=@YPOSTIVE_PATTERNS" - "[@G-@YNEGATIVE_PATTERNS]@D\n" -" Run only the tests whose name matches one of the positive patterns but\n" -" none of the negative patterns. '?' matches any single character; '*'\n" -" matches any substring; ':' separates two patterns.\n" -" @G--" GTEST_FLAG_PREFIX_ "also_run_disabled_tests@D\n" -" Run all disabled tests too.\n" -"\n" -"Test Execution:\n" -" @G--" GTEST_FLAG_PREFIX_ "repeat=@Y[COUNT]@D\n" -" Run the tests repeatedly; use a negative count to repeat forever.\n" -" @G--" GTEST_FLAG_PREFIX_ "shuffle@D\n" -" Randomize tests' orders on every iteration.\n" -" @G--" GTEST_FLAG_PREFIX_ "random_seed=@Y[NUMBER]@D\n" -" Random number seed to use for shuffling test orders (between 1 and\n" -" 99999, or 0 to use a seed based on the current time).\n" -"\n" -"Test Output:\n" -" @G--" GTEST_FLAG_PREFIX_ "color=@Y(@Gyes@Y|@Gno@Y|@Gauto@Y)@D\n" -" Enable/disable colored output. The default is @Gauto@D.\n" -" -@G-" GTEST_FLAG_PREFIX_ "print_time=0@D\n" -" Don't print the elapsed time of each test.\n" -" @G--" GTEST_FLAG_PREFIX_ "output=xml@Y[@G:@YDIRECTORY_PATH@G" - GTEST_PATH_SEP_ "@Y|@G:@YFILE_PATH]@D\n" -" Generate an XML report in the given directory or with the given file\n" -" name. @YFILE_PATH@D defaults to @Gtest_details.xml@D.\n" -"\n" -"Assertion Behavior:\n" -#if GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS -" @G--" GTEST_FLAG_PREFIX_ "death_test_style=@Y(@Gfast@Y|@Gthreadsafe@Y)@D\n" -" Set the default death test style.\n" -#endif // GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS -" @G--" GTEST_FLAG_PREFIX_ "break_on_failure@D\n" -" Turn assertion failures into debugger break-points.\n" -" @G--" GTEST_FLAG_PREFIX_ "throw_on_failure@D\n" -" Turn assertion failures into C++ exceptions.\n" -#if GTEST_OS_WINDOWS -" @G--" GTEST_FLAG_PREFIX_ "catch_exceptions@D\n" -" Suppress pop-ups caused by exceptions.\n" -#endif // GTEST_OS_WINDOWS -"\n" -"Except for @G--" GTEST_FLAG_PREFIX_ "list_tests@D, you can alternatively set " - "the corresponding\n" -"environment variable of a flag (all letters in upper-case). For example, to\n" -"disable colored text output, you can either specify @G--" GTEST_FLAG_PREFIX_ - "color=no@D or set\n" -"the @G" GTEST_FLAG_PREFIX_UPPER_ "COLOR@D environment variable to @Gno@D.\n" -"\n" -"For more information, please read the " GTEST_NAME_ " documentation at\n" -"@G" GTEST_PROJECT_URL_ "@D. If you find a bug in " GTEST_NAME_ "\n" -"(not one in your own code or tests), please report it to\n" -"@G<" GTEST_DEV_EMAIL_ ">@D.\n"; - -// Parses the command line for Google Test flags, without initializing -// other parts of Google Test. The type parameter CharType can be -// instantiated to either char or wchar_t. -template -void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { - for (int i = 1; i < *argc; i++) { - const String arg_string = StreamableToString(argv[i]); - const char* const arg = arg_string.c_str(); - - using internal::ParseBoolFlag; - using internal::ParseInt32Flag; - using internal::ParseStringFlag; - - // Do we see a Google Test flag? - if (ParseBoolFlag(arg, kAlsoRunDisabledTestsFlag, - >EST_FLAG(also_run_disabled_tests)) || - ParseBoolFlag(arg, kBreakOnFailureFlag, - >EST_FLAG(break_on_failure)) || - ParseBoolFlag(arg, kCatchExceptionsFlag, - >EST_FLAG(catch_exceptions)) || - ParseStringFlag(arg, kColorFlag, >EST_FLAG(color)) || - ParseStringFlag(arg, kDeathTestStyleFlag, - >EST_FLAG(death_test_style)) || - ParseBoolFlag(arg, kDeathTestUseFork, - >EST_FLAG(death_test_use_fork)) || - ParseStringFlag(arg, kFilterFlag, >EST_FLAG(filter)) || - ParseStringFlag(arg, kInternalRunDeathTestFlag, - >EST_FLAG(internal_run_death_test)) || - ParseBoolFlag(arg, kListTestsFlag, >EST_FLAG(list_tests)) || - ParseStringFlag(arg, kOutputFlag, >EST_FLAG(output)) || - ParseBoolFlag(arg, kPrintTimeFlag, >EST_FLAG(print_time)) || - ParseInt32Flag(arg, kRandomSeedFlag, >EST_FLAG(random_seed)) || - ParseInt32Flag(arg, kRepeatFlag, >EST_FLAG(repeat)) || - ParseBoolFlag(arg, kShuffleFlag, >EST_FLAG(shuffle)) || - ParseInt32Flag(arg, kStackTraceDepthFlag, - >EST_FLAG(stack_trace_depth)) || - ParseBoolFlag(arg, kThrowOnFailureFlag, >EST_FLAG(throw_on_failure)) - ) { - // Yes. Shift the remainder of the argv list left by one. Note - // that argv has (*argc + 1) elements, the last one always being - // NULL. The following loop moves the trailing NULL element as - // well. - for (int j = i; j != *argc; j++) { - argv[j] = argv[j + 1]; - } - - // Decrements the argument count. - (*argc)--; - - // We also need to decrement the iterator as we just removed - // an element. - i--; - } else if (arg_string == "--help" || arg_string == "-h" || - arg_string == "-?" || arg_string == "/?" || - HasGoogleTestFlagPrefix(arg)) { - // Both help flag and unrecognized Google Test flags (excluding - // internal ones) trigger help display. - g_help_flag = true; - } - } - - if (g_help_flag) { - // We print the help here instead of in RUN_ALL_TESTS(), as the - // latter may not be called at all if the user is using Google - // Test with another testing framework. - PrintColorEncoded(kColorEncodedHelpMessage); - } -} - -// Parses the command line for Google Test flags, without initializing -// other parts of Google Test. -void ParseGoogleTestFlagsOnly(int* argc, char** argv) { - ParseGoogleTestFlagsOnlyImpl(argc, argv); -} -void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { - ParseGoogleTestFlagsOnlyImpl(argc, argv); -} - -// The internal implementation of InitGoogleTest(). -// -// The type parameter CharType can be instantiated to either char or -// wchar_t. -template -void InitGoogleTestImpl(int* argc, CharType** argv) { - g_init_gtest_count++; - - // We don't want to run the initialization code twice. - if (g_init_gtest_count != 1) return; - - if (*argc <= 0) return; - - internal::g_executable_path = internal::StreamableToString(argv[0]); - -#if GTEST_HAS_DEATH_TEST - g_argvs.clear(); - for (int i = 0; i != *argc; i++) { - g_argvs.push_back(StreamableToString(argv[i])); - } -#endif // GTEST_HAS_DEATH_TEST - - ParseGoogleTestFlagsOnly(argc, argv); - GetUnitTestImpl()->PostFlagParsingInit(); -} - -} // namespace internal - -// Initializes Google Test. This must be called before calling -// RUN_ALL_TESTS(). In particular, it parses a command line for the -// flags that Google Test recognizes. Whenever a Google Test flag is -// seen, it is removed from argv, and *argc is decremented. -// -// No value is returned. Instead, the Google Test flag variables are -// updated. -// -// Calling the function for the second time has no user-visible effect. -void InitGoogleTest(int* argc, char** argv) { - internal::InitGoogleTestImpl(argc, argv); -} - -// This overloaded version can be used in Windows programs compiled in -// UNICODE mode. -void InitGoogleTest(int* argc, wchar_t** argv) { - internal::InitGoogleTestImpl(argc, argv); -} - -} // namespace testing diff --git a/cpp/thirdparty/gtest-1.5.0/src/gtest_main.cc b/cpp/thirdparty/gtest-1.5.0/src/gtest_main.cc deleted file mode 100644 index d20c02fdf..000000000 --- a/cpp/thirdparty/gtest-1.5.0/src/gtest_main.cc +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -#include - -#include - -int main(int argc, char **argv) { - std::cout << "Running main() from gtest_main.cc\n"; - - testing::InitGoogleTest(&argc, argv); - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/.gitignore b/cpp/thirdparty/gtest-1.5.0/test/.gitignore deleted file mode 100644 index e49a737d5..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/.deps diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-death-test_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-death-test_test.cc deleted file mode 100644 index ed5b53b71..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-death-test_test.cc +++ /dev/null @@ -1,1230 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// Tests for death tests. - -#include -#include -#include - -using testing::internal::AlwaysFalse; -using testing::internal::AlwaysTrue; - -#if GTEST_HAS_DEATH_TEST - -#if GTEST_OS_WINDOWS -#include // For chdir(). -#else -#include -#include // For waitpid. -#include // For std::numeric_limits. -#endif // GTEST_OS_WINDOWS - -#include -#include -#include - -#include - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -namespace posix = ::testing::internal::posix; - -using testing::Message; -using testing::internal::DeathTest; -using testing::internal::DeathTestFactory; -using testing::internal::FilePath; -using testing::internal::GetLastErrnoDescription; -using testing::internal::GetUnitTestImpl; -using testing::internal::ParseNaturalNumber; -using testing::internal::String; - -namespace testing { -namespace internal { - -// A helper class whose objects replace the death test factory for a -// single UnitTest object during their lifetimes. -class ReplaceDeathTestFactory { - public: - explicit ReplaceDeathTestFactory(DeathTestFactory* new_factory) - : unit_test_impl_(GetUnitTestImpl()) { - old_factory_ = unit_test_impl_->death_test_factory_.release(); - unit_test_impl_->death_test_factory_.reset(new_factory); - } - - ~ReplaceDeathTestFactory() { - unit_test_impl_->death_test_factory_.release(); - unit_test_impl_->death_test_factory_.reset(old_factory_); - } - private: - // Prevents copying ReplaceDeathTestFactory objects. - ReplaceDeathTestFactory(const ReplaceDeathTestFactory&); - void operator=(const ReplaceDeathTestFactory&); - - UnitTestImpl* unit_test_impl_; - DeathTestFactory* old_factory_; -}; - -} // namespace internal -} // namespace testing - -void DieInside(const char* function) { - fprintf(stderr, "death inside %s().", function); - fflush(stderr); - // We call _exit() instead of exit(), as the former is a direct - // system call and thus safer in the presence of threads. exit() - // will invoke user-defined exit-hooks, which may do dangerous - // things that conflict with death tests. - // - // Some compilers can recognize that _exit() never returns and issue the - // 'unreachable code' warning for code following this function, unless - // fooled by a fake condition. - if (AlwaysTrue()) - _exit(1); -} - -// Tests that death tests work. - -class TestForDeathTest : public testing::Test { - protected: - TestForDeathTest() : original_dir_(FilePath::GetCurrentDir()) {} - - virtual ~TestForDeathTest() { - posix::ChDir(original_dir_.c_str()); - } - - // A static member function that's expected to die. - static void StaticMemberFunction() { DieInside("StaticMemberFunction"); } - - // A method of the test fixture that may die. - void MemberFunction() { - if (should_die_) - DieInside("MemberFunction"); - } - - // True iff MemberFunction() should die. - bool should_die_; - const FilePath original_dir_; -}; - -// A class with a member function that may die. -class MayDie { - public: - explicit MayDie(bool should_die) : should_die_(should_die) {} - - // A member function that may die. - void MemberFunction() const { - if (should_die_) - DieInside("MayDie::MemberFunction"); - } - - private: - // True iff MemberFunction() should die. - bool should_die_; -}; - -// A global function that's expected to die. -void GlobalFunction() { DieInside("GlobalFunction"); } - -// A non-void function that's expected to die. -int NonVoidFunction() { - DieInside("NonVoidFunction"); - return 1; -} - -// A unary function that may die. -void DieIf(bool should_die) { - if (should_die) - DieInside("DieIf"); -} - -// A binary function that may die. -bool DieIfLessThan(int x, int y) { - if (x < y) { - DieInside("DieIfLessThan"); - } - return true; -} - -// Tests that ASSERT_DEATH can be used outside a TEST, TEST_F, or test fixture. -void DeathTestSubroutine() { - EXPECT_DEATH(GlobalFunction(), "death.*GlobalFunction"); - ASSERT_DEATH(GlobalFunction(), "death.*GlobalFunction"); -} - -// Death in dbg, not opt. -int DieInDebugElse12(int* sideeffect) { - if (sideeffect) *sideeffect = 12; -#ifndef NDEBUG - DieInside("DieInDebugElse12"); -#endif // NDEBUG - return 12; -} - -#if GTEST_OS_WINDOWS - -// Tests the ExitedWithCode predicate. -TEST(ExitStatusPredicateTest, ExitedWithCode) { - // On Windows, the process's exit code is the same as its exit status, - // so the predicate just compares the its input with its parameter. - EXPECT_TRUE(testing::ExitedWithCode(0)(0)); - EXPECT_TRUE(testing::ExitedWithCode(1)(1)); - EXPECT_TRUE(testing::ExitedWithCode(42)(42)); - EXPECT_FALSE(testing::ExitedWithCode(0)(1)); - EXPECT_FALSE(testing::ExitedWithCode(1)(0)); -} - -#else - -// Returns the exit status of a process that calls _exit(2) with a -// given exit code. This is a helper function for the -// ExitStatusPredicateTest test suite. -static int NormalExitStatus(int exit_code) { - pid_t child_pid = fork(); - if (child_pid == 0) { - _exit(exit_code); - } - int status; - waitpid(child_pid, &status, 0); - return status; -} - -// Returns the exit status of a process that raises a given signal. -// If the signal does not cause the process to die, then it returns -// instead the exit status of a process that exits normally with exit -// code 1. This is a helper function for the ExitStatusPredicateTest -// test suite. -static int KilledExitStatus(int signum) { - pid_t child_pid = fork(); - if (child_pid == 0) { - raise(signum); - _exit(1); - } - int status; - waitpid(child_pid, &status, 0); - return status; -} - -// Tests the ExitedWithCode predicate. -TEST(ExitStatusPredicateTest, ExitedWithCode) { - const int status0 = NormalExitStatus(0); - const int status1 = NormalExitStatus(1); - const int status42 = NormalExitStatus(42); - const testing::ExitedWithCode pred0(0); - const testing::ExitedWithCode pred1(1); - const testing::ExitedWithCode pred42(42); - EXPECT_PRED1(pred0, status0); - EXPECT_PRED1(pred1, status1); - EXPECT_PRED1(pred42, status42); - EXPECT_FALSE(pred0(status1)); - EXPECT_FALSE(pred42(status0)); - EXPECT_FALSE(pred1(status42)); -} - -// Tests the KilledBySignal predicate. -TEST(ExitStatusPredicateTest, KilledBySignal) { - const int status_segv = KilledExitStatus(SIGSEGV); - const int status_kill = KilledExitStatus(SIGKILL); - const testing::KilledBySignal pred_segv(SIGSEGV); - const testing::KilledBySignal pred_kill(SIGKILL); - EXPECT_PRED1(pred_segv, status_segv); - EXPECT_PRED1(pred_kill, status_kill); - EXPECT_FALSE(pred_segv(status_kill)); - EXPECT_FALSE(pred_kill(status_segv)); -} - -#endif // GTEST_OS_WINDOWS - -// Tests that the death test macros expand to code which may or may not -// be followed by operator<<, and that in either case the complete text -// comprises only a single C++ statement. -TEST_F(TestForDeathTest, SingleStatement) { - if (AlwaysFalse()) - // This would fail if executed; this is a compilation test only - ASSERT_DEATH(return, ""); - - if (AlwaysTrue()) - EXPECT_DEATH(_exit(1), ""); - else - // This empty "else" branch is meant to ensure that EXPECT_DEATH - // doesn't expand into an "if" statement without an "else" - ; - - if (AlwaysFalse()) - ASSERT_DEATH(return, "") << "did not die"; - - if (AlwaysFalse()) - ; - else - EXPECT_DEATH(_exit(1), "") << 1 << 2 << 3; -} - -void DieWithEmbeddedNul() { - fprintf(stderr, "Hello%cmy null world.\n", '\0'); - fflush(stderr); - _exit(1); -} - -#if GTEST_USES_PCRE -// Tests that EXPECT_DEATH and ASSERT_DEATH work when the error -// message has a NUL character in it. -TEST_F(TestForDeathTest, EmbeddedNulInMessage) { - // TODO(wan@google.com): doesn't support matching strings - // with embedded NUL characters - find a way to workaround it. - EXPECT_DEATH(DieWithEmbeddedNul(), "my null world"); - ASSERT_DEATH(DieWithEmbeddedNul(), "my null world"); -} -#endif // GTEST_USES_PCRE - -// Tests that death test macros expand to code which interacts well with switch -// statements. -TEST_F(TestForDeathTest, SwitchStatement) { -// Microsoft compiler usually complains about switch statements without -// case labels. We suppress that warning for this test. -#ifdef _MSC_VER -#pragma warning(push) -#pragma warning(disable: 4065) -#endif // _MSC_VER - - switch (0) - default: - ASSERT_DEATH(_exit(1), "") << "exit in default switch handler"; - - switch (0) - case 0: - EXPECT_DEATH(_exit(1), "") << "exit in switch case"; - -#ifdef _MSC_VER -#pragma warning(pop) -#endif // _MSC_VER -} - -// Tests that a static member function can be used in a "fast" style -// death test. -TEST_F(TestForDeathTest, StaticMemberFunctionFastStyle) { - testing::GTEST_FLAG(death_test_style) = "fast"; - ASSERT_DEATH(StaticMemberFunction(), "death.*StaticMember"); -} - -// Tests that a method of the test fixture can be used in a "fast" -// style death test. -TEST_F(TestForDeathTest, MemberFunctionFastStyle) { - testing::GTEST_FLAG(death_test_style) = "fast"; - should_die_ = true; - EXPECT_DEATH(MemberFunction(), "inside.*MemberFunction"); -} - -void ChangeToRootDir() { posix::ChDir(GTEST_PATH_SEP_); } - -// Tests that death tests work even if the current directory has been -// changed. -TEST_F(TestForDeathTest, FastDeathTestInChangedDir) { - testing::GTEST_FLAG(death_test_style) = "fast"; - - ChangeToRootDir(); - EXPECT_EXIT(_exit(1), testing::ExitedWithCode(1), ""); - - ChangeToRootDir(); - ASSERT_DEATH(_exit(1), ""); -} - -// Repeats a representative sample of death tests in the "threadsafe" style: - -TEST_F(TestForDeathTest, StaticMemberFunctionThreadsafeStyle) { - testing::GTEST_FLAG(death_test_style) = "threadsafe"; - ASSERT_DEATH(StaticMemberFunction(), "death.*StaticMember"); -} - -TEST_F(TestForDeathTest, MemberFunctionThreadsafeStyle) { - testing::GTEST_FLAG(death_test_style) = "threadsafe"; - should_die_ = true; - EXPECT_DEATH(MemberFunction(), "inside.*MemberFunction"); -} - -TEST_F(TestForDeathTest, ThreadsafeDeathTestInLoop) { - testing::GTEST_FLAG(death_test_style) = "threadsafe"; - - for (int i = 0; i < 3; ++i) - EXPECT_EXIT(_exit(i), testing::ExitedWithCode(i), "") << ": i = " << i; -} - -TEST_F(TestForDeathTest, ThreadsafeDeathTestInChangedDir) { - testing::GTEST_FLAG(death_test_style) = "threadsafe"; - - ChangeToRootDir(); - EXPECT_EXIT(_exit(1), testing::ExitedWithCode(1), ""); - - ChangeToRootDir(); - ASSERT_DEATH(_exit(1), ""); -} - -TEST_F(TestForDeathTest, MixedStyles) { - testing::GTEST_FLAG(death_test_style) = "threadsafe"; - EXPECT_DEATH(_exit(1), ""); - testing::GTEST_FLAG(death_test_style) = "fast"; - EXPECT_DEATH(_exit(1), ""); -} - -namespace { - -bool pthread_flag; - -void SetPthreadFlag() { - pthread_flag = true; -} - -} // namespace - -#if GTEST_HAS_CLONE && GTEST_HAS_PTHREAD - -TEST_F(TestForDeathTest, DoesNotExecuteAtforkHooks) { - if (!testing::GTEST_FLAG(death_test_use_fork)) { - testing::GTEST_FLAG(death_test_style) = "threadsafe"; - pthread_flag = false; - ASSERT_EQ(0, pthread_atfork(&SetPthreadFlag, NULL, NULL)); - ASSERT_DEATH(_exit(1), ""); - ASSERT_FALSE(pthread_flag); - } -} - -#endif // GTEST_HAS_CLONE && GTEST_HAS_PTHREAD - -// Tests that a method of another class can be used in a death test. -TEST_F(TestForDeathTest, MethodOfAnotherClass) { - const MayDie x(true); - ASSERT_DEATH(x.MemberFunction(), "MayDie\\:\\:MemberFunction"); -} - -// Tests that a global function can be used in a death test. -TEST_F(TestForDeathTest, GlobalFunction) { - EXPECT_DEATH(GlobalFunction(), "GlobalFunction"); -} - -// Tests that any value convertible to an RE works as a second -// argument to EXPECT_DEATH. -TEST_F(TestForDeathTest, AcceptsAnythingConvertibleToRE) { - static const char regex_c_str[] = "GlobalFunction"; - EXPECT_DEATH(GlobalFunction(), regex_c_str); - - const testing::internal::RE regex(regex_c_str); - EXPECT_DEATH(GlobalFunction(), regex); - -#if GTEST_HAS_GLOBAL_STRING - const string regex_str(regex_c_str); - EXPECT_DEATH(GlobalFunction(), regex_str); -#endif // GTEST_HAS_GLOBAL_STRING - - const ::std::string regex_std_str(regex_c_str); - EXPECT_DEATH(GlobalFunction(), regex_std_str); -} - -// Tests that a non-void function can be used in a death test. -TEST_F(TestForDeathTest, NonVoidFunction) { - ASSERT_DEATH(NonVoidFunction(), "NonVoidFunction"); -} - -// Tests that functions that take parameter(s) can be used in a death test. -TEST_F(TestForDeathTest, FunctionWithParameter) { - EXPECT_DEATH(DieIf(true), "DieIf\\(\\)"); - EXPECT_DEATH(DieIfLessThan(2, 3), "DieIfLessThan"); -} - -// Tests that ASSERT_DEATH can be used outside a TEST, TEST_F, or test fixture. -TEST_F(TestForDeathTest, OutsideFixture) { - DeathTestSubroutine(); -} - -// Tests that death tests can be done inside a loop. -TEST_F(TestForDeathTest, InsideLoop) { - for (int i = 0; i < 5; i++) { - EXPECT_DEATH(DieIfLessThan(-1, i), "DieIfLessThan") << "where i == " << i; - } -} - -// Tests that a compound statement can be used in a death test. -TEST_F(TestForDeathTest, CompoundStatement) { - EXPECT_DEATH({ // NOLINT - const int x = 2; - const int y = x + 1; - DieIfLessThan(x, y); - }, - "DieIfLessThan"); -} - -// Tests that code that doesn't die causes a death test to fail. -TEST_F(TestForDeathTest, DoesNotDie) { - EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(DieIf(false), "DieIf"), - "failed to die"); -} - -// Tests that a death test fails when the error message isn't expected. -TEST_F(TestForDeathTest, ErrorMessageMismatch) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_DEATH(DieIf(true), "DieIfLessThan") << "End of death test message."; - }, "died but not with expected error"); -} - -// On exit, *aborted will be true iff the EXPECT_DEATH() statement -// aborted the function. -void ExpectDeathTestHelper(bool* aborted) { - *aborted = true; - EXPECT_DEATH(DieIf(false), "DieIf"); // This assertion should fail. - *aborted = false; -} - -// Tests that EXPECT_DEATH doesn't abort the test on failure. -TEST_F(TestForDeathTest, EXPECT_DEATH) { - bool aborted = true; - EXPECT_NONFATAL_FAILURE(ExpectDeathTestHelper(&aborted), - "failed to die"); - EXPECT_FALSE(aborted); -} - -// Tests that ASSERT_DEATH does abort the test on failure. -TEST_F(TestForDeathTest, ASSERT_DEATH) { - static bool aborted; - EXPECT_FATAL_FAILURE({ // NOLINT - aborted = true; - ASSERT_DEATH(DieIf(false), "DieIf"); // This assertion should fail. - aborted = false; - }, "failed to die"); - EXPECT_TRUE(aborted); -} - -// Tests that EXPECT_DEATH evaluates the arguments exactly once. -TEST_F(TestForDeathTest, SingleEvaluation) { - int x = 3; - EXPECT_DEATH(DieIf((++x) == 4), "DieIf"); - - const char* regex = "DieIf"; - const char* regex_save = regex; - EXPECT_DEATH(DieIfLessThan(3, 4), regex++); - EXPECT_EQ(regex_save + 1, regex); -} - -// Tests that run-away death tests are reported as failures. -TEST_F(TestForDeathTest, Runaway) { - EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(static_cast(0), "Foo"), - "failed to die."); - - EXPECT_FATAL_FAILURE(ASSERT_DEATH(return, "Bar"), - "illegal return in test statement."); -} - - -// Tests that EXPECT_DEBUG_DEATH works as expected, -// that is, in debug mode, it: -// 1. Asserts on death. -// 2. Has no side effect. -// -// And in opt mode, it: -// 1. Has side effects but does not assert. -TEST_F(TestForDeathTest, TestExpectDebugDeath) { - int sideeffect = 0; - - EXPECT_DEBUG_DEATH(DieInDebugElse12(&sideeffect), - "death.*DieInDebugElse12"); - -#ifdef NDEBUG - // Checks that the assignment occurs in opt mode (sideeffect). - EXPECT_EQ(12, sideeffect); -#else - // Checks that the assignment does not occur in dbg mode (no sideeffect). - EXPECT_EQ(0, sideeffect); -#endif -} - -// Tests that ASSERT_DEBUG_DEATH works as expected -// In debug mode: -// 1. Asserts on debug death. -// 2. Has no side effect. -// -// In opt mode: -// 1. Has side effects and returns the expected value (12). -TEST_F(TestForDeathTest, TestAssertDebugDeath) { - int sideeffect = 0; - - ASSERT_DEBUG_DEATH({ // NOLINT - // Tests that the return value is 12 in opt mode. - EXPECT_EQ(12, DieInDebugElse12(&sideeffect)); - // Tests that the side effect occurred in opt mode. - EXPECT_EQ(12, sideeffect); - }, "death.*DieInDebugElse12"); - -#ifdef NDEBUG - // Checks that the assignment occurs in opt mode (sideeffect). - EXPECT_EQ(12, sideeffect); -#else - // Checks that the assignment does not occur in dbg mode (no sideeffect). - EXPECT_EQ(0, sideeffect); -#endif -} - -#ifndef NDEBUG - -void ExpectDebugDeathHelper(bool* aborted) { - *aborted = true; - EXPECT_DEBUG_DEATH(return, "") << "This is expected to fail."; - *aborted = false; -} - -#if GTEST_OS_WINDOWS -TEST(PopUpDeathTest, DoesNotShowPopUpOnAbort) { - printf("This test should be considered failing if it shows " - "any pop-up dialogs.\n"); - fflush(stdout); - - EXPECT_DEATH({ - testing::GTEST_FLAG(catch_exceptions) = false; - abort(); - }, ""); -} - -TEST(PopUpDeathTest, DoesNotShowPopUpOnThrow) { - printf("This test should be considered failing if it shows " - "any pop-up dialogs.\n"); - fflush(stdout); - - EXPECT_DEATH({ - testing::GTEST_FLAG(catch_exceptions) = false; - throw 1; - }, ""); -} -#endif // GTEST_OS_WINDOWS - -// Tests that EXPECT_DEBUG_DEATH in debug mode does not abort -// the function. -TEST_F(TestForDeathTest, ExpectDebugDeathDoesNotAbort) { - bool aborted = true; - EXPECT_NONFATAL_FAILURE(ExpectDebugDeathHelper(&aborted), ""); - EXPECT_FALSE(aborted); -} - -void AssertDebugDeathHelper(bool* aborted) { - *aborted = true; - ASSERT_DEBUG_DEATH(return, "") << "This is expected to fail."; - *aborted = false; -} - -// Tests that ASSERT_DEBUG_DEATH in debug mode aborts the function on -// failure. -TEST_F(TestForDeathTest, AssertDebugDeathAborts) { - static bool aborted; - aborted = false; - EXPECT_FATAL_FAILURE(AssertDebugDeathHelper(&aborted), ""); - EXPECT_TRUE(aborted); -} - -#endif // _NDEBUG - -// Tests the *_EXIT family of macros, using a variety of predicates. -static void TestExitMacros() { - EXPECT_EXIT(_exit(1), testing::ExitedWithCode(1), ""); - ASSERT_EXIT(_exit(42), testing::ExitedWithCode(42), ""); - -#if GTEST_OS_WINDOWS - // Of all signals effects on the process exit code, only those of SIGABRT - // are documented on Windows. - // See http://msdn.microsoft.com/en-us/library/dwwzkt4c(VS.71).aspx. - EXPECT_EXIT(raise(SIGABRT), testing::ExitedWithCode(3), ""); -#else - EXPECT_EXIT(raise(SIGKILL), testing::KilledBySignal(SIGKILL), "") << "foo"; - ASSERT_EXIT(raise(SIGUSR2), testing::KilledBySignal(SIGUSR2), "") << "bar"; - - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_EXIT(_exit(0), testing::KilledBySignal(SIGSEGV), "") - << "This failure is expected, too."; - }, "This failure is expected, too."); -#endif // GTEST_OS_WINDOWS - - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_EXIT(raise(SIGSEGV), testing::ExitedWithCode(0), "") - << "This failure is expected."; - }, "This failure is expected."); -} - -TEST_F(TestForDeathTest, ExitMacros) { - TestExitMacros(); -} - -TEST_F(TestForDeathTest, ExitMacrosUsingFork) { - testing::GTEST_FLAG(death_test_use_fork) = true; - TestExitMacros(); -} - -TEST_F(TestForDeathTest, InvalidStyle) { - testing::GTEST_FLAG(death_test_style) = "rococo"; - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_DEATH(_exit(0), "") << "This failure is expected."; - }, "This failure is expected."); -} - -// A DeathTestFactory that returns MockDeathTests. -class MockDeathTestFactory : public DeathTestFactory { - public: - MockDeathTestFactory(); - virtual bool Create(const char* statement, - const ::testing::internal::RE* regex, - const char* file, int line, DeathTest** test); - - // Sets the parameters for subsequent calls to Create. - void SetParameters(bool create, DeathTest::TestRole role, - int status, bool passed); - - // Accessors. - int AssumeRoleCalls() const { return assume_role_calls_; } - int WaitCalls() const { return wait_calls_; } - int PassedCalls() const { return passed_args_.size(); } - bool PassedArgument(int n) const { return passed_args_[n]; } - int AbortCalls() const { return abort_args_.size(); } - DeathTest::AbortReason AbortArgument(int n) const { - return abort_args_[n]; - } - bool TestDeleted() const { return test_deleted_; } - - private: - friend class MockDeathTest; - // If true, Create will return a MockDeathTest; otherwise it returns - // NULL. - bool create_; - // The value a MockDeathTest will return from its AssumeRole method. - DeathTest::TestRole role_; - // The value a MockDeathTest will return from its Wait method. - int status_; - // The value a MockDeathTest will return from its Passed method. - bool passed_; - - // Number of times AssumeRole was called. - int assume_role_calls_; - // Number of times Wait was called. - int wait_calls_; - // The arguments to the calls to Passed since the last call to - // SetParameters. - std::vector passed_args_; - // The arguments to the calls to Abort since the last call to - // SetParameters. - std::vector abort_args_; - // True if the last MockDeathTest returned by Create has been - // deleted. - bool test_deleted_; -}; - - -// A DeathTest implementation useful in testing. It returns values set -// at its creation from its various inherited DeathTest methods, and -// reports calls to those methods to its parent MockDeathTestFactory -// object. -class MockDeathTest : public DeathTest { - public: - MockDeathTest(MockDeathTestFactory *parent, - TestRole role, int status, bool passed) : - parent_(parent), role_(role), status_(status), passed_(passed) { - } - virtual ~MockDeathTest() { - parent_->test_deleted_ = true; - } - virtual TestRole AssumeRole() { - ++parent_->assume_role_calls_; - return role_; - } - virtual int Wait() { - ++parent_->wait_calls_; - return status_; - } - virtual bool Passed(bool exit_status_ok) { - parent_->passed_args_.push_back(exit_status_ok); - return passed_; - } - virtual void Abort(AbortReason reason) { - parent_->abort_args_.push_back(reason); - } - private: - MockDeathTestFactory* const parent_; - const TestRole role_; - const int status_; - const bool passed_; -}; - - -// MockDeathTestFactory constructor. -MockDeathTestFactory::MockDeathTestFactory() - : create_(true), - role_(DeathTest::OVERSEE_TEST), - status_(0), - passed_(true), - assume_role_calls_(0), - wait_calls_(0), - passed_args_(), - abort_args_() { -} - - -// Sets the parameters for subsequent calls to Create. -void MockDeathTestFactory::SetParameters(bool create, - DeathTest::TestRole role, - int status, bool passed) { - create_ = create; - role_ = role; - status_ = status; - passed_ = passed; - - assume_role_calls_ = 0; - wait_calls_ = 0; - passed_args_.clear(); - abort_args_.clear(); -} - - -// Sets test to NULL (if create_ is false) or to the address of a new -// MockDeathTest object with parameters taken from the last call -// to SetParameters (if create_ is true). Always returns true. -bool MockDeathTestFactory::Create(const char* /*statement*/, - const ::testing::internal::RE* /*regex*/, - const char* /*file*/, - int /*line*/, - DeathTest** test) { - test_deleted_ = false; - if (create_) { - *test = new MockDeathTest(this, role_, status_, passed_); - } else { - *test = NULL; - } - return true; -} - -// A test fixture for testing the logic of the GTEST_DEATH_TEST_ macro. -// It installs a MockDeathTestFactory that is used for the duration -// of the test case. -class MacroLogicDeathTest : public testing::Test { - protected: - static testing::internal::ReplaceDeathTestFactory* replacer_; - static MockDeathTestFactory* factory_; - - static void SetUpTestCase() { - factory_ = new MockDeathTestFactory; - replacer_ = new testing::internal::ReplaceDeathTestFactory(factory_); - } - - static void TearDownTestCase() { - delete replacer_; - replacer_ = NULL; - delete factory_; - factory_ = NULL; - } - - // Runs a death test that breaks the rules by returning. Such a death - // test cannot be run directly from a test routine that uses a - // MockDeathTest, or the remainder of the routine will not be executed. - static void RunReturningDeathTest(bool* flag) { - ASSERT_DEATH({ // NOLINT - *flag = true; - return; - }, ""); - } -}; - -testing::internal::ReplaceDeathTestFactory* MacroLogicDeathTest::replacer_ - = NULL; -MockDeathTestFactory* MacroLogicDeathTest::factory_ = NULL; - - -// Test that nothing happens when the factory doesn't return a DeathTest: -TEST_F(MacroLogicDeathTest, NothingHappens) { - bool flag = false; - factory_->SetParameters(false, DeathTest::OVERSEE_TEST, 0, true); - EXPECT_DEATH(flag = true, ""); - EXPECT_FALSE(flag); - EXPECT_EQ(0, factory_->AssumeRoleCalls()); - EXPECT_EQ(0, factory_->WaitCalls()); - EXPECT_EQ(0, factory_->PassedCalls()); - EXPECT_EQ(0, factory_->AbortCalls()); - EXPECT_FALSE(factory_->TestDeleted()); -} - -// Test that the parent process doesn't run the death test code, -// and that the Passed method returns false when the (simulated) -// child process exits with status 0: -TEST_F(MacroLogicDeathTest, ChildExitsSuccessfully) { - bool flag = false; - factory_->SetParameters(true, DeathTest::OVERSEE_TEST, 0, true); - EXPECT_DEATH(flag = true, ""); - EXPECT_FALSE(flag); - EXPECT_EQ(1, factory_->AssumeRoleCalls()); - EXPECT_EQ(1, factory_->WaitCalls()); - ASSERT_EQ(1, factory_->PassedCalls()); - EXPECT_FALSE(factory_->PassedArgument(0)); - EXPECT_EQ(0, factory_->AbortCalls()); - EXPECT_TRUE(factory_->TestDeleted()); -} - -// Tests that the Passed method was given the argument "true" when -// the (simulated) child process exits with status 1: -TEST_F(MacroLogicDeathTest, ChildExitsUnsuccessfully) { - bool flag = false; - factory_->SetParameters(true, DeathTest::OVERSEE_TEST, 1, true); - EXPECT_DEATH(flag = true, ""); - EXPECT_FALSE(flag); - EXPECT_EQ(1, factory_->AssumeRoleCalls()); - EXPECT_EQ(1, factory_->WaitCalls()); - ASSERT_EQ(1, factory_->PassedCalls()); - EXPECT_TRUE(factory_->PassedArgument(0)); - EXPECT_EQ(0, factory_->AbortCalls()); - EXPECT_TRUE(factory_->TestDeleted()); -} - -// Tests that the (simulated) child process executes the death test -// code, and is aborted with the correct AbortReason if it -// executes a return statement. -TEST_F(MacroLogicDeathTest, ChildPerformsReturn) { - bool flag = false; - factory_->SetParameters(true, DeathTest::EXECUTE_TEST, 0, true); - RunReturningDeathTest(&flag); - EXPECT_TRUE(flag); - EXPECT_EQ(1, factory_->AssumeRoleCalls()); - EXPECT_EQ(0, factory_->WaitCalls()); - EXPECT_EQ(0, factory_->PassedCalls()); - EXPECT_EQ(1, factory_->AbortCalls()); - EXPECT_EQ(DeathTest::TEST_ENCOUNTERED_RETURN_STATEMENT, - factory_->AbortArgument(0)); - EXPECT_TRUE(factory_->TestDeleted()); -} - -// Tests that the (simulated) child process is aborted with the -// correct AbortReason if it does not die. -TEST_F(MacroLogicDeathTest, ChildDoesNotDie) { - bool flag = false; - factory_->SetParameters(true, DeathTest::EXECUTE_TEST, 0, true); - EXPECT_DEATH(flag = true, ""); - EXPECT_TRUE(flag); - EXPECT_EQ(1, factory_->AssumeRoleCalls()); - EXPECT_EQ(0, factory_->WaitCalls()); - EXPECT_EQ(0, factory_->PassedCalls()); - // This time there are two calls to Abort: one since the test didn't - // die, and another from the ReturnSentinel when it's destroyed. The - // sentinel normally isn't destroyed if a test doesn't die, since - // _exit(2) is called in that case by ForkingDeathTest, but not by - // our MockDeathTest. - ASSERT_EQ(2, factory_->AbortCalls()); - EXPECT_EQ(DeathTest::TEST_DID_NOT_DIE, - factory_->AbortArgument(0)); - EXPECT_EQ(DeathTest::TEST_ENCOUNTERED_RETURN_STATEMENT, - factory_->AbortArgument(1)); - EXPECT_TRUE(factory_->TestDeleted()); -} - -// Tests that a successful death test does not register a successful -// test part. -TEST(SuccessRegistrationDeathTest, NoSuccessPart) { - EXPECT_DEATH(_exit(1), ""); - EXPECT_EQ(0, GetUnitTestImpl()->current_test_result()->total_part_count()); -} - -TEST(StreamingAssertionsDeathTest, DeathTest) { - EXPECT_DEATH(_exit(1), "") << "unexpected failure"; - ASSERT_DEATH(_exit(1), "") << "unexpected failure"; - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_DEATH(_exit(0), "") << "expected failure"; - }, "expected failure"); - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_DEATH(_exit(0), "") << "expected failure"; - }, "expected failure"); -} - -// Tests that GetLastErrnoDescription returns an empty string when the -// last error is 0 and non-empty string when it is non-zero. -TEST(GetLastErrnoDescription, GetLastErrnoDescriptionWorks) { - errno = ENOENT; - EXPECT_STRNE("", GetLastErrnoDescription().c_str()); - errno = 0; - EXPECT_STREQ("", GetLastErrnoDescription().c_str()); -} - -#if GTEST_OS_WINDOWS -TEST(AutoHandleTest, AutoHandleWorks) { - HANDLE handle = ::CreateEvent(NULL, FALSE, FALSE, NULL); - ASSERT_NE(INVALID_HANDLE_VALUE, handle); - - // Tests that the AutoHandle is correctly initialized with a handle. - testing::internal::AutoHandle auto_handle(handle); - EXPECT_EQ(handle, auto_handle.Get()); - - // Tests that Reset assigns INVALID_HANDLE_VALUE. - // Note that this cannot verify whether the original handle is closed. - auto_handle.Reset(); - EXPECT_EQ(INVALID_HANDLE_VALUE, auto_handle.Get()); - - // Tests that Reset assigns the new handle. - // Note that this cannot verify whether the original handle is closed. - handle = ::CreateEvent(NULL, FALSE, FALSE, NULL); - ASSERT_NE(INVALID_HANDLE_VALUE, handle); - auto_handle.Reset(handle); - EXPECT_EQ(handle, auto_handle.Get()); - - // Tests that AutoHandle contains INVALID_HANDLE_VALUE by default. - testing::internal::AutoHandle auto_handle2; - EXPECT_EQ(INVALID_HANDLE_VALUE, auto_handle2.Get()); -} -#endif // GTEST_OS_WINDOWS - -#if GTEST_OS_WINDOWS -typedef unsigned __int64 BiggestParsable; -typedef signed __int64 BiggestSignedParsable; -const BiggestParsable kBiggestParsableMax = ULLONG_MAX; -const BiggestParsable kBiggestSignedParsableMax = LLONG_MAX; -#else -typedef unsigned long long BiggestParsable; -typedef signed long long BiggestSignedParsable; -const BiggestParsable kBiggestParsableMax = - ::std::numeric_limits::max(); -const BiggestSignedParsable kBiggestSignedParsableMax = - ::std::numeric_limits::max(); -#endif // GTEST_OS_WINDOWS - -TEST(ParseNaturalNumberTest, RejectsInvalidFormat) { - BiggestParsable result = 0; - - // Rejects non-numbers. - EXPECT_FALSE(ParseNaturalNumber(String("non-number string"), &result)); - - // Rejects numbers with whitespace prefix. - EXPECT_FALSE(ParseNaturalNumber(String(" 123"), &result)); - - // Rejects negative numbers. - EXPECT_FALSE(ParseNaturalNumber(String("-123"), &result)); - - // Rejects numbers starting with a plus sign. - EXPECT_FALSE(ParseNaturalNumber(String("+123"), &result)); - errno = 0; -} - -TEST(ParseNaturalNumberTest, RejectsOverflownNumbers) { - BiggestParsable result = 0; - - EXPECT_FALSE(ParseNaturalNumber(String("99999999999999999999999"), &result)); - - signed char char_result = 0; - EXPECT_FALSE(ParseNaturalNumber(String("200"), &char_result)); - errno = 0; -} - -TEST(ParseNaturalNumberTest, AcceptsValidNumbers) { - BiggestParsable result = 0; - - result = 0; - ASSERT_TRUE(ParseNaturalNumber(String("123"), &result)); - EXPECT_EQ(123U, result); - - // Check 0 as an edge case. - result = 1; - ASSERT_TRUE(ParseNaturalNumber(String("0"), &result)); - EXPECT_EQ(0U, result); - - result = 1; - ASSERT_TRUE(ParseNaturalNumber(String("00000"), &result)); - EXPECT_EQ(0U, result); -} - -TEST(ParseNaturalNumberTest, AcceptsTypeLimits) { - Message msg; - msg << kBiggestParsableMax; - - BiggestParsable result = 0; - EXPECT_TRUE(ParseNaturalNumber(msg.GetString(), &result)); - EXPECT_EQ(kBiggestParsableMax, result); - - Message msg2; - msg2 << kBiggestSignedParsableMax; - - BiggestSignedParsable signed_result = 0; - EXPECT_TRUE(ParseNaturalNumber(msg2.GetString(), &signed_result)); - EXPECT_EQ(kBiggestSignedParsableMax, signed_result); - - Message msg3; - msg3 << INT_MAX; - - int int_result = 0; - EXPECT_TRUE(ParseNaturalNumber(msg3.GetString(), &int_result)); - EXPECT_EQ(INT_MAX, int_result); - - Message msg4; - msg4 << UINT_MAX; - - unsigned int uint_result = 0; - EXPECT_TRUE(ParseNaturalNumber(msg4.GetString(), &uint_result)); - EXPECT_EQ(UINT_MAX, uint_result); -} - -TEST(ParseNaturalNumberTest, WorksForShorterIntegers) { - short short_result = 0; - ASSERT_TRUE(ParseNaturalNumber(String("123"), &short_result)); - EXPECT_EQ(123, short_result); - - signed char char_result = 0; - ASSERT_TRUE(ParseNaturalNumber(String("123"), &char_result)); - EXPECT_EQ(123, char_result); -} - -#if GTEST_OS_WINDOWS -TEST(EnvironmentTest, HandleFitsIntoSizeT) { - // TODO(vladl@google.com): Remove this test after this condition is verified - // in a static assertion in gtest-death-test.cc in the function - // GetStatusFileDescriptor. - ASSERT_TRUE(sizeof(HANDLE) <= sizeof(size_t)); -} -#endif // GTEST_OS_WINDOWS - -// Tests that EXPECT_DEATH_IF_SUPPORTED/ASSERT_DEATH_IF_SUPPORTED trigger -// failures when death tests are available on the system. -TEST(ConditionalDeathMacrosDeathTest, ExpectsDeathWhenDeathTestsAvailable) { - EXPECT_DEATH_IF_SUPPORTED(DieInside("CondDeathTestExpectMacro"), - "death inside CondDeathTestExpectMacro"); - ASSERT_DEATH_IF_SUPPORTED(DieInside("CondDeathTestAssertMacro"), - "death inside CondDeathTestAssertMacro"); - - // Empty statement will not crash, which must trigger a failure. - EXPECT_NONFATAL_FAILURE(EXPECT_DEATH_IF_SUPPORTED(;, ""), ""); - EXPECT_FATAL_FAILURE(ASSERT_DEATH_IF_SUPPORTED(;, ""), ""); -} - -#else - -using testing::internal::CaptureStderr; -using testing::internal::GetCapturedStderr; -using testing::internal::String; - -// Tests that EXPECT_DEATH_IF_SUPPORTED/ASSERT_DEATH_IF_SUPPORTED are still -// defined but do not trigger failures when death tests are not available on -// the system. -TEST(ConditionalDeathMacrosTest, WarnsWhenDeathTestsNotAvailable) { - // Empty statement will not crash, but that should not trigger a failure - // when death tests are not supported. - CaptureStderr(); - EXPECT_DEATH_IF_SUPPORTED(;, ""); - String output = GetCapturedStderr(); - ASSERT_TRUE(NULL != strstr(output.c_str(), - "Death tests are not supported on this platform")); - ASSERT_TRUE(NULL != strstr(output.c_str(), ";")); - - // The streamed message should not be printed as there is no test failure. - CaptureStderr(); - EXPECT_DEATH_IF_SUPPORTED(;, "") << "streamed message"; - output = GetCapturedStderr(); - ASSERT_TRUE(NULL == strstr(output.c_str(), "streamed message")); - - CaptureStderr(); - ASSERT_DEATH_IF_SUPPORTED(;, ""); // NOLINT - output = GetCapturedStderr(); - ASSERT_TRUE(NULL != strstr(output.c_str(), - "Death tests are not supported on this platform")); - ASSERT_TRUE(NULL != strstr(output.c_str(), ";")); - - CaptureStderr(); - ASSERT_DEATH_IF_SUPPORTED(;, "") << "streamed message"; // NOLINT - output = GetCapturedStderr(); - ASSERT_TRUE(NULL == strstr(output.c_str(), "streamed message")); -} - -void FuncWithAssert(int* n) { - ASSERT_DEATH_IF_SUPPORTED(return;, ""); - (*n)++; -} - -// Tests that ASSERT_DEATH_IF_SUPPORTED does not return from the current -// function (as ASSERT_DEATH does) if death tests are not supported. -TEST(ConditionalDeathMacrosTest, AssertDeatDoesNotReturnhIfUnsupported) { - int n = 0; - FuncWithAssert(&n); - EXPECT_EQ(1, n); -} -#endif // GTEST_HAS_DEATH_TEST - -// Tests that the death test macros expand to code which may or may not -// be followed by operator<<, and that in either case the complete text -// comprises only a single C++ statement. -// -// The syntax should work whether death tests are available or not. -TEST(ConditionalDeathMacrosSyntaxDeathTest, SingleStatement) { - if (AlwaysFalse()) - // This would fail if executed; this is a compilation test only - ASSERT_DEATH_IF_SUPPORTED(return, ""); - - if (AlwaysTrue()) - EXPECT_DEATH_IF_SUPPORTED(_exit(1), ""); - else - // This empty "else" branch is meant to ensure that EXPECT_DEATH - // doesn't expand into an "if" statement without an "else" - ; // NOLINT - - if (AlwaysFalse()) - ASSERT_DEATH_IF_SUPPORTED(return, "") << "did not die"; - - if (AlwaysFalse()) - ; // NOLINT - else - EXPECT_DEATH_IF_SUPPORTED(_exit(1), "") << 1 << 2 << 3; -} - -// Tests that conditional death test macros expand to code which interacts -// well with switch statements. -TEST(ConditionalDeathMacrosSyntaxDeathTest, SwitchStatement) { -// Microsoft compiler usually complains about switch statements without -// case labels. We suppress that warning for this test. -#ifdef _MSC_VER -#pragma warning(push) -#pragma warning(disable: 4065) -#endif // _MSC_VER - - switch (0) - default: - ASSERT_DEATH_IF_SUPPORTED(_exit(1), "") - << "exit in default switch handler"; - - switch (0) - case 0: - EXPECT_DEATH_IF_SUPPORTED(_exit(1), "") << "exit in switch case"; - -#ifdef _MSC_VER -#pragma warning(pop) -#endif // _MSC_VER -} - -// Tests that a test case whose name ends with "DeathTest" works fine -// on Windows. -TEST(NotADeathTest, Test) { - SUCCEED(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-filepath_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-filepath_test.cc deleted file mode 100644 index 625028275..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-filepath_test.cc +++ /dev/null @@ -1,690 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: keith.ray@gmail.com (Keith Ray) -// -// Google Test filepath utilities -// -// This file tests classes and functions used internally by -// Google Test. They are subject to change without notice. -// -// This file is #included from gtest_unittest.cc, to avoid changing -// build or make-files for some existing Google Test clients. Do not -// #include this file anywhere else! - -#include -#include - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -#if GTEST_OS_WINDOWS_MOBILE -#include // NOLINT -#elif GTEST_OS_WINDOWS -#include // NOLINT -#endif // GTEST_OS_WINDOWS_MOBILE - -namespace testing { -namespace internal { -namespace { - -#if GTEST_OS_WINDOWS_MOBILE -// TODO(wan@google.com): Move these to the POSIX adapter section in -// gtest-port.h. - -// Windows CE doesn't have the remove C function. -int remove(const char* path) { - LPCWSTR wpath = String::AnsiToUtf16(path); - int ret = DeleteFile(wpath) ? 0 : -1; - delete [] wpath; - return ret; -} -// Windows CE doesn't have the _rmdir C function. -int _rmdir(const char* path) { - FilePath filepath(path); - LPCWSTR wpath = String::AnsiToUtf16( - filepath.RemoveTrailingPathSeparator().c_str()); - int ret = RemoveDirectory(wpath) ? 0 : -1; - delete [] wpath; - return ret; -} - -#else - -TEST(GetCurrentDirTest, ReturnsCurrentDir) { - const FilePath original_dir = FilePath::GetCurrentDir(); - EXPECT_FALSE(original_dir.IsEmpty()); - - posix::ChDir(GTEST_PATH_SEP_); - const FilePath cwd = FilePath::GetCurrentDir(); - posix::ChDir(original_dir.c_str()); - -#if GTEST_OS_WINDOWS - // Skips the ":". - const char* const cwd_without_drive = strchr(cwd.c_str(), ':'); - ASSERT_TRUE(cwd_without_drive != NULL); - EXPECT_STREQ(GTEST_PATH_SEP_, cwd_without_drive + 1); -#else - EXPECT_STREQ(GTEST_PATH_SEP_, cwd.c_str()); -#endif -} - -#endif // GTEST_OS_WINDOWS_MOBILE - -TEST(IsEmptyTest, ReturnsTrueForEmptyPath) { - EXPECT_TRUE(FilePath("").IsEmpty()); - EXPECT_TRUE(FilePath(NULL).IsEmpty()); -} - -TEST(IsEmptyTest, ReturnsFalseForNonEmptyPath) { - EXPECT_FALSE(FilePath("a").IsEmpty()); - EXPECT_FALSE(FilePath(".").IsEmpty()); - EXPECT_FALSE(FilePath("a/b").IsEmpty()); - EXPECT_FALSE(FilePath("a\\b\\").IsEmpty()); -} - -// RemoveDirectoryName "" -> "" -TEST(RemoveDirectoryNameTest, WhenEmptyName) { - EXPECT_STREQ("", FilePath("").RemoveDirectoryName().c_str()); -} - -// RemoveDirectoryName "afile" -> "afile" -TEST(RemoveDirectoryNameTest, ButNoDirectory) { - EXPECT_STREQ("afile", - FilePath("afile").RemoveDirectoryName().c_str()); -} - -// RemoveDirectoryName "/afile" -> "afile" -TEST(RemoveDirectoryNameTest, RootFileShouldGiveFileName) { - EXPECT_STREQ("afile", - FilePath(GTEST_PATH_SEP_ "afile").RemoveDirectoryName().c_str()); -} - -// RemoveDirectoryName "adir/" -> "" -TEST(RemoveDirectoryNameTest, WhereThereIsNoFileName) { - EXPECT_STREQ("", - FilePath("adir" GTEST_PATH_SEP_).RemoveDirectoryName().c_str()); -} - -// RemoveDirectoryName "adir/afile" -> "afile" -TEST(RemoveDirectoryNameTest, ShouldGiveFileName) { - EXPECT_STREQ("afile", - FilePath("adir" GTEST_PATH_SEP_ "afile").RemoveDirectoryName().c_str()); -} - -// RemoveDirectoryName "adir/subdir/afile" -> "afile" -TEST(RemoveDirectoryNameTest, ShouldAlsoGiveFileName) { - EXPECT_STREQ("afile", - FilePath("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_ "afile") - .RemoveDirectoryName().c_str()); -} - -#if GTEST_HAS_ALT_PATH_SEP_ - -// Tests that RemoveDirectoryName() works with the alternate separator -// on Windows. - -// RemoveDirectoryName("/afile") -> "afile" -TEST(RemoveDirectoryNameTest, RootFileShouldGiveFileNameForAlternateSeparator) { - EXPECT_STREQ("afile", - FilePath("/afile").RemoveDirectoryName().c_str()); -} - -// RemoveDirectoryName("adir/") -> "" -TEST(RemoveDirectoryNameTest, WhereThereIsNoFileNameForAlternateSeparator) { - EXPECT_STREQ("", - FilePath("adir/").RemoveDirectoryName().c_str()); -} - -// RemoveDirectoryName("adir/afile") -> "afile" -TEST(RemoveDirectoryNameTest, ShouldGiveFileNameForAlternateSeparator) { - EXPECT_STREQ("afile", - FilePath("adir/afile").RemoveDirectoryName().c_str()); -} - -// RemoveDirectoryName("adir/subdir/afile") -> "afile" -TEST(RemoveDirectoryNameTest, ShouldAlsoGiveFileNameForAlternateSeparator) { - EXPECT_STREQ("afile", - FilePath("adir/subdir/afile").RemoveDirectoryName().c_str()); -} - -#endif - -// RemoveFileName "" -> "./" -TEST(RemoveFileNameTest, EmptyName) { -#if GTEST_OS_WINDOWS_MOBILE - // On Windows CE, we use the root as the current directory. - EXPECT_STREQ(GTEST_PATH_SEP_, - FilePath("").RemoveFileName().c_str()); -#else - EXPECT_STREQ("." GTEST_PATH_SEP_, - FilePath("").RemoveFileName().c_str()); -#endif -} - -// RemoveFileName "adir/" -> "adir/" -TEST(RemoveFileNameTest, ButNoFile) { - EXPECT_STREQ("adir" GTEST_PATH_SEP_, - FilePath("adir" GTEST_PATH_SEP_).RemoveFileName().c_str()); -} - -// RemoveFileName "adir/afile" -> "adir/" -TEST(RemoveFileNameTest, GivesDirName) { - EXPECT_STREQ("adir" GTEST_PATH_SEP_, - FilePath("adir" GTEST_PATH_SEP_ "afile") - .RemoveFileName().c_str()); -} - -// RemoveFileName "adir/subdir/afile" -> "adir/subdir/" -TEST(RemoveFileNameTest, GivesDirAndSubDirName) { - EXPECT_STREQ("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_, - FilePath("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_ "afile") - .RemoveFileName().c_str()); -} - -// RemoveFileName "/afile" -> "/" -TEST(RemoveFileNameTest, GivesRootDir) { - EXPECT_STREQ(GTEST_PATH_SEP_, - FilePath(GTEST_PATH_SEP_ "afile").RemoveFileName().c_str()); -} - -#if GTEST_HAS_ALT_PATH_SEP_ - -// Tests that RemoveFileName() works with the alternate separator on -// Windows. - -// RemoveFileName("adir/") -> "adir/" -TEST(RemoveFileNameTest, ButNoFileForAlternateSeparator) { - EXPECT_STREQ("adir" GTEST_PATH_SEP_, - FilePath("adir/").RemoveFileName().c_str()); -} - -// RemoveFileName("adir/afile") -> "adir/" -TEST(RemoveFileNameTest, GivesDirNameForAlternateSeparator) { - EXPECT_STREQ("adir" GTEST_PATH_SEP_, - FilePath("adir/afile").RemoveFileName().c_str()); -} - -// RemoveFileName("adir/subdir/afile") -> "adir/subdir/" -TEST(RemoveFileNameTest, GivesDirAndSubDirNameForAlternateSeparator) { - EXPECT_STREQ("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_, - FilePath("adir/subdir/afile").RemoveFileName().c_str()); -} - -// RemoveFileName("/afile") -> "\" -TEST(RemoveFileNameTest, GivesRootDirForAlternateSeparator) { - EXPECT_STREQ(GTEST_PATH_SEP_, - FilePath("/afile").RemoveFileName().c_str()); -} - -#endif - -TEST(MakeFileNameTest, GenerateWhenNumberIsZero) { - FilePath actual = FilePath::MakeFileName(FilePath("foo"), FilePath("bar"), - 0, "xml"); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.c_str()); -} - -TEST(MakeFileNameTest, GenerateFileNameNumberGtZero) { - FilePath actual = FilePath::MakeFileName(FilePath("foo"), FilePath("bar"), - 12, "xml"); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar_12.xml", actual.c_str()); -} - -TEST(MakeFileNameTest, GenerateFileNameWithSlashNumberIsZero) { - FilePath actual = FilePath::MakeFileName(FilePath("foo" GTEST_PATH_SEP_), - FilePath("bar"), 0, "xml"); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.c_str()); -} - -TEST(MakeFileNameTest, GenerateFileNameWithSlashNumberGtZero) { - FilePath actual = FilePath::MakeFileName(FilePath("foo" GTEST_PATH_SEP_), - FilePath("bar"), 12, "xml"); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar_12.xml", actual.c_str()); -} - -TEST(MakeFileNameTest, GenerateWhenNumberIsZeroAndDirIsEmpty) { - FilePath actual = FilePath::MakeFileName(FilePath(""), FilePath("bar"), - 0, "xml"); - EXPECT_STREQ("bar.xml", actual.c_str()); -} - -TEST(MakeFileNameTest, GenerateWhenNumberIsNotZeroAndDirIsEmpty) { - FilePath actual = FilePath::MakeFileName(FilePath(""), FilePath("bar"), - 14, "xml"); - EXPECT_STREQ("bar_14.xml", actual.c_str()); -} - -TEST(ConcatPathsTest, WorksWhenDirDoesNotEndWithPathSep) { - FilePath actual = FilePath::ConcatPaths(FilePath("foo"), - FilePath("bar.xml")); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.c_str()); -} - -TEST(ConcatPathsTest, WorksWhenPath1EndsWithPathSep) { - FilePath actual = FilePath::ConcatPaths(FilePath("foo" GTEST_PATH_SEP_), - FilePath("bar.xml")); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.c_str()); -} - -TEST(ConcatPathsTest, Path1BeingEmpty) { - FilePath actual = FilePath::ConcatPaths(FilePath(""), - FilePath("bar.xml")); - EXPECT_STREQ("bar.xml", actual.c_str()); -} - -TEST(ConcatPathsTest, Path2BeingEmpty) { - FilePath actual = FilePath::ConcatPaths(FilePath("foo"), - FilePath("")); - EXPECT_STREQ("foo" GTEST_PATH_SEP_, actual.c_str()); -} - -TEST(ConcatPathsTest, BothPathBeingEmpty) { - FilePath actual = FilePath::ConcatPaths(FilePath(""), - FilePath("")); - EXPECT_STREQ("", actual.c_str()); -} - -TEST(ConcatPathsTest, Path1ContainsPathSep) { - FilePath actual = FilePath::ConcatPaths(FilePath("foo" GTEST_PATH_SEP_ "bar"), - FilePath("foobar.xml")); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_ "foobar.xml", - actual.c_str()); -} - -TEST(ConcatPathsTest, Path2ContainsPathSep) { - FilePath actual = FilePath::ConcatPaths( - FilePath("foo" GTEST_PATH_SEP_), - FilePath("bar" GTEST_PATH_SEP_ "bar.xml")); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_ "bar.xml", - actual.c_str()); -} - -TEST(ConcatPathsTest, Path2EndsWithPathSep) { - FilePath actual = FilePath::ConcatPaths(FilePath("foo"), - FilePath("bar" GTEST_PATH_SEP_)); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_, actual.c_str()); -} - -// RemoveTrailingPathSeparator "" -> "" -TEST(RemoveTrailingPathSeparatorTest, EmptyString) { - EXPECT_STREQ("", - FilePath("").RemoveTrailingPathSeparator().c_str()); -} - -// RemoveTrailingPathSeparator "foo" -> "foo" -TEST(RemoveTrailingPathSeparatorTest, FileNoSlashString) { - EXPECT_STREQ("foo", - FilePath("foo").RemoveTrailingPathSeparator().c_str()); -} - -// RemoveTrailingPathSeparator "foo/" -> "foo" -TEST(RemoveTrailingPathSeparatorTest, ShouldRemoveTrailingSeparator) { - EXPECT_STREQ( - "foo", - FilePath("foo" GTEST_PATH_SEP_).RemoveTrailingPathSeparator().c_str()); -#if GTEST_HAS_ALT_PATH_SEP_ - EXPECT_STREQ("foo", - FilePath("foo/").RemoveTrailingPathSeparator().c_str()); -#endif -} - -// RemoveTrailingPathSeparator "foo/bar/" -> "foo/bar/" -TEST(RemoveTrailingPathSeparatorTest, ShouldRemoveLastSeparator) { - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar", - FilePath("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_) - .RemoveTrailingPathSeparator().c_str()); -} - -// RemoveTrailingPathSeparator "foo/bar" -> "foo/bar" -TEST(RemoveTrailingPathSeparatorTest, ShouldReturnUnmodified) { - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar", - FilePath("foo" GTEST_PATH_SEP_ "bar") - .RemoveTrailingPathSeparator().c_str()); -} - -TEST(DirectoryTest, RootDirectoryExists) { -#if GTEST_OS_WINDOWS // We are on Windows. - char current_drive[_MAX_PATH]; // NOLINT - current_drive[0] = static_cast(_getdrive() + 'A' - 1); - current_drive[1] = ':'; - current_drive[2] = '\\'; - current_drive[3] = '\0'; - EXPECT_TRUE(FilePath(current_drive).DirectoryExists()); -#else - EXPECT_TRUE(FilePath("/").DirectoryExists()); -#endif // GTEST_OS_WINDOWS -} - -#if GTEST_OS_WINDOWS -TEST(DirectoryTest, RootOfWrongDriveDoesNotExists) { - const int saved_drive_ = _getdrive(); - // Find a drive that doesn't exist. Start with 'Z' to avoid common ones. - for (char drive = 'Z'; drive >= 'A'; drive--) - if (_chdrive(drive - 'A' + 1) == -1) { - char non_drive[_MAX_PATH]; // NOLINT - non_drive[0] = drive; - non_drive[1] = ':'; - non_drive[2] = '\\'; - non_drive[3] = '\0'; - EXPECT_FALSE(FilePath(non_drive).DirectoryExists()); - break; - } - _chdrive(saved_drive_); -} -#endif // GTEST_OS_WINDOWS - -#if !GTEST_OS_WINDOWS_MOBILE -// Windows CE _does_ consider an empty directory to exist. -TEST(DirectoryTest, EmptyPathDirectoryDoesNotExist) { - EXPECT_FALSE(FilePath("").DirectoryExists()); -} -#endif // !GTEST_OS_WINDOWS_MOBILE - -TEST(DirectoryTest, CurrentDirectoryExists) { -#if GTEST_OS_WINDOWS // We are on Windows. -#ifndef _WIN32_CE // Windows CE doesn't have a current directory. - EXPECT_TRUE(FilePath(".").DirectoryExists()); - EXPECT_TRUE(FilePath(".\\").DirectoryExists()); -#endif // _WIN32_CE -#else - EXPECT_TRUE(FilePath(".").DirectoryExists()); - EXPECT_TRUE(FilePath("./").DirectoryExists()); -#endif // GTEST_OS_WINDOWS -} - -TEST(NormalizeTest, NullStringsEqualEmptyDirectory) { - EXPECT_STREQ("", FilePath(NULL).c_str()); - EXPECT_STREQ("", FilePath(String(NULL)).c_str()); -} - -// "foo/bar" == foo//bar" == "foo///bar" -TEST(NormalizeTest, MultipleConsecutiveSepaparatorsInMidstring) { - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar", - FilePath("foo" GTEST_PATH_SEP_ "bar").c_str()); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar", - FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_ "bar").c_str()); - EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar", - FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_ - GTEST_PATH_SEP_ "bar").c_str()); -} - -// "/bar" == //bar" == "///bar" -TEST(NormalizeTest, MultipleConsecutiveSepaparatorsAtStringStart) { - EXPECT_STREQ(GTEST_PATH_SEP_ "bar", - FilePath(GTEST_PATH_SEP_ "bar").c_str()); - EXPECT_STREQ(GTEST_PATH_SEP_ "bar", - FilePath(GTEST_PATH_SEP_ GTEST_PATH_SEP_ "bar").c_str()); - EXPECT_STREQ(GTEST_PATH_SEP_ "bar", - FilePath(GTEST_PATH_SEP_ GTEST_PATH_SEP_ GTEST_PATH_SEP_ "bar").c_str()); -} - -// "foo/" == foo//" == "foo///" -TEST(NormalizeTest, MultipleConsecutiveSepaparatorsAtStringEnd) { - EXPECT_STREQ("foo" GTEST_PATH_SEP_, - FilePath("foo" GTEST_PATH_SEP_).c_str()); - EXPECT_STREQ("foo" GTEST_PATH_SEP_, - FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_).c_str()); - EXPECT_STREQ("foo" GTEST_PATH_SEP_, - FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_ GTEST_PATH_SEP_).c_str()); -} - -#if GTEST_HAS_ALT_PATH_SEP_ - -// Tests that separators at the end of the string are normalized -// regardless of their combination (e.g. "foo\" =="foo/\" == -// "foo\\/"). -TEST(NormalizeTest, MixAlternateSeparatorAtStringEnd) { - EXPECT_STREQ("foo" GTEST_PATH_SEP_, - FilePath("foo/").c_str()); - EXPECT_STREQ("foo" GTEST_PATH_SEP_, - FilePath("foo" GTEST_PATH_SEP_ "/").c_str()); - EXPECT_STREQ("foo" GTEST_PATH_SEP_, - FilePath("foo//" GTEST_PATH_SEP_).c_str()); -} - -#endif - -TEST(AssignmentOperatorTest, DefaultAssignedToNonDefault) { - FilePath default_path; - FilePath non_default_path("path"); - non_default_path = default_path; - EXPECT_STREQ("", non_default_path.c_str()); - EXPECT_STREQ("", default_path.c_str()); // RHS var is unchanged. -} - -TEST(AssignmentOperatorTest, NonDefaultAssignedToDefault) { - FilePath non_default_path("path"); - FilePath default_path; - default_path = non_default_path; - EXPECT_STREQ("path", default_path.c_str()); - EXPECT_STREQ("path", non_default_path.c_str()); // RHS var is unchanged. -} - -TEST(AssignmentOperatorTest, ConstAssignedToNonConst) { - const FilePath const_default_path("const_path"); - FilePath non_default_path("path"); - non_default_path = const_default_path; - EXPECT_STREQ("const_path", non_default_path.c_str()); -} - -class DirectoryCreationTest : public Test { - protected: - virtual void SetUp() { - testdata_path_.Set(FilePath(String::Format("%s%s%s", - TempDir().c_str(), GetCurrentExecutableName().c_str(), - "_directory_creation" GTEST_PATH_SEP_ "test" GTEST_PATH_SEP_))); - testdata_file_.Set(testdata_path_.RemoveTrailingPathSeparator()); - - unique_file0_.Set(FilePath::MakeFileName(testdata_path_, FilePath("unique"), - 0, "txt")); - unique_file1_.Set(FilePath::MakeFileName(testdata_path_, FilePath("unique"), - 1, "txt")); - - remove(testdata_file_.c_str()); - remove(unique_file0_.c_str()); - remove(unique_file1_.c_str()); - posix::RmDir(testdata_path_.c_str()); - } - - virtual void TearDown() { - remove(testdata_file_.c_str()); - remove(unique_file0_.c_str()); - remove(unique_file1_.c_str()); - posix::RmDir(testdata_path_.c_str()); - } - - String TempDir() const { -#if GTEST_OS_WINDOWS_MOBILE - return String("\\temp\\"); -#elif GTEST_OS_WINDOWS - const char* temp_dir = posix::GetEnv("TEMP"); - if (temp_dir == NULL || temp_dir[0] == '\0') - return String("\\temp\\"); - else if (String(temp_dir).EndsWith("\\")) - return String(temp_dir); - else - return String::Format("%s\\", temp_dir); -#else - return String("/tmp/"); -#endif // GTEST_OS_WINDOWS_MOBILE - } - - void CreateTextFile(const char* filename) { - FILE* f = posix::FOpen(filename, "w"); - fprintf(f, "text\n"); - fclose(f); - } - - // Strings representing a directory and a file, with identical paths - // except for the trailing separator character that distinquishes - // a directory named 'test' from a file named 'test'. Example names: - FilePath testdata_path_; // "/tmp/directory_creation/test/" - FilePath testdata_file_; // "/tmp/directory_creation/test" - FilePath unique_file0_; // "/tmp/directory_creation/test/unique.txt" - FilePath unique_file1_; // "/tmp/directory_creation/test/unique_1.txt" -}; - -TEST_F(DirectoryCreationTest, CreateDirectoriesRecursively) { - EXPECT_FALSE(testdata_path_.DirectoryExists()) << testdata_path_.c_str(); - EXPECT_TRUE(testdata_path_.CreateDirectoriesRecursively()); - EXPECT_TRUE(testdata_path_.DirectoryExists()); -} - -TEST_F(DirectoryCreationTest, CreateDirectoriesForAlreadyExistingPath) { - EXPECT_FALSE(testdata_path_.DirectoryExists()) << testdata_path_.c_str(); - EXPECT_TRUE(testdata_path_.CreateDirectoriesRecursively()); - // Call 'create' again... should still succeed. - EXPECT_TRUE(testdata_path_.CreateDirectoriesRecursively()); -} - -TEST_F(DirectoryCreationTest, CreateDirectoriesAndUniqueFilename) { - FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_, - FilePath("unique"), "txt")); - EXPECT_STREQ(unique_file0_.c_str(), file_path.c_str()); - EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there - - testdata_path_.CreateDirectoriesRecursively(); - EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there - CreateTextFile(file_path.c_str()); - EXPECT_TRUE(file_path.FileOrDirectoryExists()); - - FilePath file_path2(FilePath::GenerateUniqueFileName(testdata_path_, - FilePath("unique"), "txt")); - EXPECT_STREQ(unique_file1_.c_str(), file_path2.c_str()); - EXPECT_FALSE(file_path2.FileOrDirectoryExists()); // file not there - CreateTextFile(file_path2.c_str()); - EXPECT_TRUE(file_path2.FileOrDirectoryExists()); -} - -TEST_F(DirectoryCreationTest, CreateDirectoriesFail) { - // force a failure by putting a file where we will try to create a directory. - CreateTextFile(testdata_file_.c_str()); - EXPECT_TRUE(testdata_file_.FileOrDirectoryExists()); - EXPECT_FALSE(testdata_file_.DirectoryExists()); - EXPECT_FALSE(testdata_file_.CreateDirectoriesRecursively()); -} - -TEST(NoDirectoryCreationTest, CreateNoDirectoriesForDefaultXmlFile) { - const FilePath test_detail_xml("test_detail.xml"); - EXPECT_FALSE(test_detail_xml.CreateDirectoriesRecursively()); -} - -TEST(FilePathTest, DefaultConstructor) { - FilePath fp; - EXPECT_STREQ("", fp.c_str()); -} - -TEST(FilePathTest, CharAndCopyConstructors) { - const FilePath fp("spicy"); - EXPECT_STREQ("spicy", fp.c_str()); - - const FilePath fp_copy(fp); - EXPECT_STREQ("spicy", fp_copy.c_str()); -} - -TEST(FilePathTest, StringConstructor) { - const FilePath fp(String("cider")); - EXPECT_STREQ("cider", fp.c_str()); -} - -TEST(FilePathTest, Set) { - const FilePath apple("apple"); - FilePath mac("mac"); - mac.Set(apple); // Implement Set() since overloading operator= is forbidden. - EXPECT_STREQ("apple", mac.c_str()); - EXPECT_STREQ("apple", apple.c_str()); -} - -TEST(FilePathTest, ToString) { - const FilePath file("drink"); - String str(file.ToString()); - EXPECT_STREQ("drink", str.c_str()); -} - -TEST(FilePathTest, RemoveExtension) { - EXPECT_STREQ("app", FilePath("app.exe").RemoveExtension("exe").c_str()); - EXPECT_STREQ("APP", FilePath("APP.EXE").RemoveExtension("exe").c_str()); -} - -TEST(FilePathTest, RemoveExtensionWhenThereIsNoExtension) { - EXPECT_STREQ("app", FilePath("app").RemoveExtension("exe").c_str()); -} - -TEST(FilePathTest, IsDirectory) { - EXPECT_FALSE(FilePath("cola").IsDirectory()); - EXPECT_TRUE(FilePath("koala" GTEST_PATH_SEP_).IsDirectory()); -#if GTEST_HAS_ALT_PATH_SEP_ - EXPECT_TRUE(FilePath("koala/").IsDirectory()); -#endif -} - -TEST(FilePathTest, IsAbsolutePath) { - EXPECT_FALSE(FilePath("is" GTEST_PATH_SEP_ "relative").IsAbsolutePath()); - EXPECT_FALSE(FilePath("").IsAbsolutePath()); -#if GTEST_OS_WINDOWS - EXPECT_TRUE(FilePath("c:\\" GTEST_PATH_SEP_ "is_not" - GTEST_PATH_SEP_ "relative").IsAbsolutePath()); - EXPECT_FALSE(FilePath("c:foo" GTEST_PATH_SEP_ "bar").IsAbsolutePath()); - EXPECT_TRUE(FilePath("c:/" GTEST_PATH_SEP_ "is_not" - GTEST_PATH_SEP_ "relative").IsAbsolutePath()); -#else - EXPECT_TRUE(FilePath(GTEST_PATH_SEP_ "is_not" GTEST_PATH_SEP_ "relative") - .IsAbsolutePath()); -#endif // GTEST_OS_WINDOWS -} - -TEST(FilePathTest, IsRootDirectory) { -#if GTEST_OS_WINDOWS - EXPECT_TRUE(FilePath("a:\\").IsRootDirectory()); - EXPECT_TRUE(FilePath("Z:/").IsRootDirectory()); - EXPECT_TRUE(FilePath("e://").IsRootDirectory()); - EXPECT_FALSE(FilePath("").IsRootDirectory()); - EXPECT_FALSE(FilePath("b:").IsRootDirectory()); - EXPECT_FALSE(FilePath("b:a").IsRootDirectory()); - EXPECT_FALSE(FilePath("8:/").IsRootDirectory()); - EXPECT_FALSE(FilePath("c|/").IsRootDirectory()); -#else - EXPECT_TRUE(FilePath("/").IsRootDirectory()); - EXPECT_TRUE(FilePath("//").IsRootDirectory()); - EXPECT_FALSE(FilePath("").IsRootDirectory()); - EXPECT_FALSE(FilePath("\\").IsRootDirectory()); - EXPECT_FALSE(FilePath("/x").IsRootDirectory()); -#endif -} - -} // namespace -} // namespace internal -} // namespace testing diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-linked_ptr_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-linked_ptr_test.cc deleted file mode 100644 index eae82296c..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-linked_ptr_test.cc +++ /dev/null @@ -1,154 +0,0 @@ -// Copyright 2003, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: Dan Egnor (egnor@google.com) -// Ported to Windows: Vadim Berman (vadimb@google.com) - -#include - -#include -#include - -namespace { - -using testing::Message; -using testing::internal::linked_ptr; - -int num; -Message* history = NULL; - -// Class which tracks allocation/deallocation -class A { - public: - A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; } - virtual ~A() { *history << "A" << mynum << " dtor\n"; } - virtual void Use() { *history << "A" << mynum << " use\n"; } - protected: - int mynum; -}; - -// Subclass -class B : public A { - public: - B() { *history << "B" << mynum << " ctor\n"; } - ~B() { *history << "B" << mynum << " dtor\n"; } - virtual void Use() { *history << "B" << mynum << " use\n"; } -}; - -class LinkedPtrTest : public testing::Test { - public: - LinkedPtrTest() { - num = 0; - history = new Message; - } - - virtual ~LinkedPtrTest() { - delete history; - history = NULL; - } -}; - -TEST_F(LinkedPtrTest, GeneralTest) { - { - linked_ptr a0, a1, a2; - a0 = a0; - a1 = a2; - ASSERT_EQ(a0.get(), static_cast(NULL)); - ASSERT_EQ(a1.get(), static_cast(NULL)); - ASSERT_EQ(a2.get(), static_cast(NULL)); - ASSERT_TRUE(a0 == NULL); - ASSERT_TRUE(a1 == NULL); - ASSERT_TRUE(a2 == NULL); - - { - linked_ptr a3(new A); - a0 = a3; - ASSERT_TRUE(a0 == a3); - ASSERT_TRUE(a0 != NULL); - ASSERT_TRUE(a0.get() == a3); - ASSERT_TRUE(a0 == a3.get()); - linked_ptr a4(a0); - a1 = a4; - linked_ptr a5(new A); - ASSERT_TRUE(a5.get() != a3); - ASSERT_TRUE(a5 != a3.get()); - a2 = a5; - linked_ptr b0(new B); - linked_ptr a6(b0); - ASSERT_TRUE(b0 == a6); - ASSERT_TRUE(a6 == b0); - ASSERT_TRUE(b0 != NULL); - a5 = b0; - a5 = b0; - a3->Use(); - a4->Use(); - a5->Use(); - a6->Use(); - b0->Use(); - (*b0).Use(); - b0.get()->Use(); - } - - a0->Use(); - a1->Use(); - a2->Use(); - - a1 = a2; - a2.reset(new A); - a0.reset(); - - linked_ptr a7; - } - - ASSERT_STREQ( - "A0 ctor\n" - "A1 ctor\n" - "A2 ctor\n" - "B2 ctor\n" - "A0 use\n" - "A0 use\n" - "B2 use\n" - "B2 use\n" - "B2 use\n" - "B2 use\n" - "B2 use\n" - "B2 dtor\n" - "A2 dtor\n" - "A0 use\n" - "A0 use\n" - "A1 use\n" - "A3 ctor\n" - "A0 dtor\n" - "A3 dtor\n" - "A1 dtor\n", - history->GetString().c_str() - ); -} - -} // Unnamed namespace diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-listener_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-listener_test.cc deleted file mode 100644 index c9be39a87..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-listener_test.cc +++ /dev/null @@ -1,313 +0,0 @@ -// Copyright 2009 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) -// -// The Google C++ Testing Framework (Google Test) -// -// This file verifies Google Test event listeners receive events at the -// right times. - -#include -#include - -using ::testing::AddGlobalTestEnvironment; -using ::testing::Environment; -using ::testing::InitGoogleTest; -using ::testing::Test; -using ::testing::TestCase; -using ::testing::TestEventListener; -using ::testing::TestInfo; -using ::testing::TestPartResult; -using ::testing::UnitTest; -using ::testing::internal::String; - -// Used by tests to register their events. -std::vector* g_events = NULL; - -namespace testing { -namespace internal { - -class EventRecordingListener : public TestEventListener { - public: - EventRecordingListener(const char* name) : name_(name) {} - - protected: - virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) { - g_events->push_back(GetFullMethodName("OnTestProgramStart")); - } - - virtual void OnTestIterationStart(const UnitTest& /*unit_test*/, - int iteration) { - Message message; - message << GetFullMethodName("OnTestIterationStart") - << "(" << iteration << ")"; - g_events->push_back(message.GetString()); - } - - virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) { - g_events->push_back(GetFullMethodName("OnEnvironmentsSetUpStart")); - } - - virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) { - g_events->push_back(GetFullMethodName("OnEnvironmentsSetUpEnd")); - } - - virtual void OnTestCaseStart(const TestCase& /*test_case*/) { - g_events->push_back(GetFullMethodName("OnTestCaseStart")); - } - - virtual void OnTestStart(const TestInfo& /*test_info*/) { - g_events->push_back(GetFullMethodName("OnTestStart")); - } - - virtual void OnTestPartResult(const TestPartResult& /*test_part_result*/) { - g_events->push_back(GetFullMethodName("OnTestPartResult")); - } - - virtual void OnTestEnd(const TestInfo& /*test_info*/) { - g_events->push_back(GetFullMethodName("OnTestEnd")); - } - - virtual void OnTestCaseEnd(const TestCase& /*test_case*/) { - g_events->push_back(GetFullMethodName("OnTestCaseEnd")); - } - - virtual void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) { - g_events->push_back(GetFullMethodName("OnEnvironmentsTearDownStart")); - } - - virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) { - g_events->push_back(GetFullMethodName("OnEnvironmentsTearDownEnd")); - } - - virtual void OnTestIterationEnd(const UnitTest& /*unit_test*/, - int iteration) { - Message message; - message << GetFullMethodName("OnTestIterationEnd") - << "(" << iteration << ")"; - g_events->push_back(message.GetString()); - } - - virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) { - g_events->push_back(GetFullMethodName("OnTestProgramEnd")); - } - - private: - String GetFullMethodName(const char* name) { - Message message; - message << name_ << "." << name; - return message.GetString(); - } - - String name_; -}; - -class EnvironmentInvocationCatcher : public Environment { - protected: - virtual void SetUp() { - g_events->push_back(String("Environment::SetUp")); - } - - virtual void TearDown() { - g_events->push_back(String("Environment::TearDown")); - } -}; - -class ListenerTest : public Test { - protected: - static void SetUpTestCase() { - g_events->push_back(String("ListenerTest::SetUpTestCase")); - } - - static void TearDownTestCase() { - g_events->push_back(String("ListenerTest::TearDownTestCase")); - } - - virtual void SetUp() { - g_events->push_back(String("ListenerTest::SetUp")); - } - - virtual void TearDown() { - g_events->push_back(String("ListenerTest::TearDown")); - } -}; - -TEST_F(ListenerTest, DoesFoo) { - // Test execution order within a test case is not guaranteed so we are not - // recording the test name. - g_events->push_back(String("ListenerTest::* Test Body")); - SUCCEED(); // Triggers OnTestPartResult. -} - -TEST_F(ListenerTest, DoesBar) { - g_events->push_back(String("ListenerTest::* Test Body")); - SUCCEED(); // Triggers OnTestPartResult. -} - -} // namespace internal - -} // namespace testing - -using ::testing::internal::EnvironmentInvocationCatcher; -using ::testing::internal::EventRecordingListener; - -void VerifyResults(const std::vector& data, - const char* const* expected_data, - int expected_data_size) { - const int actual_size = data.size(); - // If the following assertion fails, a new entry will be appended to - // data. Hence we save data.size() first. - EXPECT_EQ(expected_data_size, actual_size); - - // Compares the common prefix. - const int shorter_size = expected_data_size <= actual_size ? - expected_data_size : actual_size; - int i = 0; - for (; i < shorter_size; ++i) { - ASSERT_STREQ(expected_data[i], data[i].c_str()) - << "at position " << i; - } - - // Prints extra elements in the actual data. - for (; i < actual_size; ++i) { - printf(" Actual event #%d: %s\n", i, data[i].c_str()); - } -} - -int main(int argc, char **argv) { - std::vector events; - g_events = &events; - InitGoogleTest(&argc, argv); - - UnitTest::GetInstance()->listeners().Append( - new EventRecordingListener("1st")); - UnitTest::GetInstance()->listeners().Append( - new EventRecordingListener("2nd")); - - AddGlobalTestEnvironment(new EnvironmentInvocationCatcher); - - GTEST_CHECK_(events.size() == 0) - << "AddGlobalTestEnvironment should not generate any events itself."; - - ::testing::GTEST_FLAG(repeat) = 2; - int ret_val = RUN_ALL_TESTS(); - - const char* const expected_events[] = { - "1st.OnTestProgramStart", - "2nd.OnTestProgramStart", - "1st.OnTestIterationStart(0)", - "2nd.OnTestIterationStart(0)", - "1st.OnEnvironmentsSetUpStart", - "2nd.OnEnvironmentsSetUpStart", - "Environment::SetUp", - "2nd.OnEnvironmentsSetUpEnd", - "1st.OnEnvironmentsSetUpEnd", - "1st.OnTestCaseStart", - "2nd.OnTestCaseStart", - "ListenerTest::SetUpTestCase", - "1st.OnTestStart", - "2nd.OnTestStart", - "ListenerTest::SetUp", - "ListenerTest::* Test Body", - "1st.OnTestPartResult", - "2nd.OnTestPartResult", - "ListenerTest::TearDown", - "2nd.OnTestEnd", - "1st.OnTestEnd", - "1st.OnTestStart", - "2nd.OnTestStart", - "ListenerTest::SetUp", - "ListenerTest::* Test Body", - "1st.OnTestPartResult", - "2nd.OnTestPartResult", - "ListenerTest::TearDown", - "2nd.OnTestEnd", - "1st.OnTestEnd", - "ListenerTest::TearDownTestCase", - "2nd.OnTestCaseEnd", - "1st.OnTestCaseEnd", - "1st.OnEnvironmentsTearDownStart", - "2nd.OnEnvironmentsTearDownStart", - "Environment::TearDown", - "2nd.OnEnvironmentsTearDownEnd", - "1st.OnEnvironmentsTearDownEnd", - "2nd.OnTestIterationEnd(0)", - "1st.OnTestIterationEnd(0)", - "1st.OnTestIterationStart(1)", - "2nd.OnTestIterationStart(1)", - "1st.OnEnvironmentsSetUpStart", - "2nd.OnEnvironmentsSetUpStart", - "Environment::SetUp", - "2nd.OnEnvironmentsSetUpEnd", - "1st.OnEnvironmentsSetUpEnd", - "1st.OnTestCaseStart", - "2nd.OnTestCaseStart", - "ListenerTest::SetUpTestCase", - "1st.OnTestStart", - "2nd.OnTestStart", - "ListenerTest::SetUp", - "ListenerTest::* Test Body", - "1st.OnTestPartResult", - "2nd.OnTestPartResult", - "ListenerTest::TearDown", - "2nd.OnTestEnd", - "1st.OnTestEnd", - "1st.OnTestStart", - "2nd.OnTestStart", - "ListenerTest::SetUp", - "ListenerTest::* Test Body", - "1st.OnTestPartResult", - "2nd.OnTestPartResult", - "ListenerTest::TearDown", - "2nd.OnTestEnd", - "1st.OnTestEnd", - "ListenerTest::TearDownTestCase", - "2nd.OnTestCaseEnd", - "1st.OnTestCaseEnd", - "1st.OnEnvironmentsTearDownStart", - "2nd.OnEnvironmentsTearDownStart", - "Environment::TearDown", - "2nd.OnEnvironmentsTearDownEnd", - "1st.OnEnvironmentsTearDownEnd", - "2nd.OnTestIterationEnd(1)", - "1st.OnTestIterationEnd(1)", - "2nd.OnTestProgramEnd", - "1st.OnTestProgramEnd" - }; - VerifyResults(events, - expected_events, - sizeof(expected_events)/sizeof(expected_events[0])); - - // We need to check manually for ad hoc test failures that happen after - // RUN_ALL_TESTS finishes. - if (UnitTest::GetInstance()->Failed()) - ret_val = 1; - - return ret_val; -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-message_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-message_test.cc deleted file mode 100644 index e42b03447..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-message_test.cc +++ /dev/null @@ -1,167 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// Tests for the Message class. - -#include - -#include - -namespace { - -using ::testing::Message; -using ::testing::internal::StrStream; - -// A helper function that turns a Message into a C string. -const char* ToCString(const Message& msg) { - static testing::internal::String result; - result = msg.GetString(); - return result.c_str(); -} - -// Tests the testing::Message class - -// Tests the default constructor. -TEST(MessageTest, DefaultConstructor) { - const Message msg; - EXPECT_STREQ("", ToCString(msg)); -} - -// Tests the copy constructor. -TEST(MessageTest, CopyConstructor) { - const Message msg1("Hello"); - const Message msg2(msg1); - EXPECT_STREQ("Hello", ToCString(msg2)); -} - -// Tests constructing a Message from a C-string. -TEST(MessageTest, ConstructsFromCString) { - Message msg("Hello"); - EXPECT_STREQ("Hello", ToCString(msg)); -} - -// Tests streaming a float. -TEST(MessageTest, StreamsFloat) { - const char* const s = ToCString(Message() << 1.23456F << " " << 2.34567F); - // Both numbers should be printed with enough precision. - EXPECT_PRED_FORMAT2(testing::IsSubstring, "1.234560", s); - EXPECT_PRED_FORMAT2(testing::IsSubstring, " 2.345669", s); -} - -// Tests streaming a double. -TEST(MessageTest, StreamsDouble) { - const char* const s = ToCString(Message() << 1260570880.4555497 << " " - << 1260572265.1954534); - // Both numbers should be printed with enough precision. - EXPECT_PRED_FORMAT2(testing::IsSubstring, "1260570880.45", s); - EXPECT_PRED_FORMAT2(testing::IsSubstring, " 1260572265.19", s); -} - -// Tests streaming a non-char pointer. -TEST(MessageTest, StreamsPointer) { - int n = 0; - int* p = &n; - EXPECT_STRNE("(null)", ToCString(Message() << p)); -} - -// Tests streaming a NULL non-char pointer. -TEST(MessageTest, StreamsNullPointer) { - int* p = NULL; - EXPECT_STREQ("(null)", ToCString(Message() << p)); -} - -// Tests streaming a C string. -TEST(MessageTest, StreamsCString) { - EXPECT_STREQ("Foo", ToCString(Message() << "Foo")); -} - -// Tests streaming a NULL C string. -TEST(MessageTest, StreamsNullCString) { - char* p = NULL; - EXPECT_STREQ("(null)", ToCString(Message() << p)); -} - -// Tests streaming std::string. -TEST(MessageTest, StreamsString) { - const ::std::string str("Hello"); - EXPECT_STREQ("Hello", ToCString(Message() << str)); -} - -// Tests that we can output strings containing embedded NULs. -TEST(MessageTest, StreamsStringWithEmbeddedNUL) { - const char char_array_with_nul[] = - "Here's a NUL\0 and some more string"; - const ::std::string string_with_nul(char_array_with_nul, - sizeof(char_array_with_nul) - 1); - EXPECT_STREQ("Here's a NUL\\0 and some more string", - ToCString(Message() << string_with_nul)); -} - -// Tests streaming a NUL char. -TEST(MessageTest, StreamsNULChar) { - EXPECT_STREQ("\\0", ToCString(Message() << '\0')); -} - -// Tests streaming int. -TEST(MessageTest, StreamsInt) { - EXPECT_STREQ("123", ToCString(Message() << 123)); -} - -// Tests that basic IO manipulators (endl, ends, and flush) can be -// streamed to Message. -TEST(MessageTest, StreamsBasicIoManip) { - EXPECT_STREQ("Line 1.\nA NUL char \\0 in line 2.", - ToCString(Message() << "Line 1." << std::endl - << "A NUL char " << std::ends << std::flush - << " in line 2.")); -} - -// Tests Message::GetString() -TEST(MessageTest, GetString) { - Message msg; - msg << 1 << " lamb"; - EXPECT_STREQ("1 lamb", msg.GetString().c_str()); -} - -// Tests streaming a Message object to an ostream. -TEST(MessageTest, StreamsToOStream) { - Message msg("Hello"); - StrStream ss; - ss << msg; - EXPECT_STREQ("Hello", testing::internal::StrStreamToString(&ss).c_str()); -} - -// Tests that a Message object doesn't take up too much stack space. -TEST(MessageTest, DoesNotTakeUpMuchStackSpace) { - EXPECT_LE(sizeof(Message), 16U); -} - -} // namespace diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-options_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-options_test.cc deleted file mode 100644 index 2e2cbc92e..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-options_test.cc +++ /dev/null @@ -1,212 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: keith.ray@gmail.com (Keith Ray) -// -// Google Test UnitTestOptions tests -// -// This file tests classes and functions used internally by -// Google Test. They are subject to change without notice. -// -// This file is #included from gtest.cc, to avoid changing build or -// make-files on Windows and other platforms. Do not #include this file -// anywhere else! - -#include - -#if GTEST_OS_WINDOWS_MOBILE -#include -#elif GTEST_OS_WINDOWS -#include -#endif // GTEST_OS_WINDOWS_MOBILE - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -namespace testing { -namespace internal { -namespace { - -// Turns the given relative path into an absolute path. -FilePath GetAbsolutePathOf(const FilePath& relative_path) { - return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path); -} - -// Testing UnitTestOptions::GetOutputFormat/GetOutputFile. - -TEST(XmlOutputTest, GetOutputFormatDefault) { - GTEST_FLAG(output) = ""; - EXPECT_STREQ("", UnitTestOptions::GetOutputFormat().c_str()); -} - -TEST(XmlOutputTest, GetOutputFormat) { - GTEST_FLAG(output) = "xml:filename"; - EXPECT_STREQ("xml", UnitTestOptions::GetOutputFormat().c_str()); -} - -TEST(XmlOutputTest, GetOutputFileDefault) { - GTEST_FLAG(output) = ""; - EXPECT_STREQ(GetAbsolutePathOf(FilePath("test_detail.xml")).c_str(), - UnitTestOptions::GetAbsolutePathToOutputFile().c_str()); -} - -TEST(XmlOutputTest, GetOutputFileSingleFile) { - GTEST_FLAG(output) = "xml:filename.abc"; - EXPECT_STREQ(GetAbsolutePathOf(FilePath("filename.abc")).c_str(), - UnitTestOptions::GetAbsolutePathToOutputFile().c_str()); -} - -TEST(XmlOutputTest, GetOutputFileFromDirectoryPath) { - GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_; - const std::string expected_output_file = - GetAbsolutePathOf( - FilePath(std::string("path") + GTEST_PATH_SEP_ + - GetCurrentExecutableName().c_str() + ".xml")).c_str(); - const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); -#if GTEST_OS_WINDOWS - EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str()); -#else - EXPECT_EQ(expected_output_file, output_file.c_str()); -#endif -} - -TEST(OutputFileHelpersTest, GetCurrentExecutableName) { - const std::string exe_str = GetCurrentExecutableName().c_str(); -#if GTEST_OS_WINDOWS - const bool success = - _strcmpi("gtest-options_test", exe_str.c_str()) == 0 || - _strcmpi("gtest-options-ex_test", exe_str.c_str()) == 0 || - _strcmpi("gtest_all_test", exe_str.c_str()) == 0 || - _strcmpi("gtest_dll_test", exe_str.c_str()) == 0; -#else - // TODO(wan@google.com): remove the hard-coded "lt-" prefix when - // Chandler Carruth's libtool replacement is ready. - const bool success = - exe_str == "gtest-options_test" || - exe_str == "gtest_all_test" || - exe_str == "lt-gtest_all_test" || - exe_str == "gtest_dll_test"; -#endif // GTEST_OS_WINDOWS - if (!success) - FAIL() << "GetCurrentExecutableName() returns " << exe_str; -} - -class XmlOutputChangeDirTest : public Test { - protected: - virtual void SetUp() { - original_working_dir_ = FilePath::GetCurrentDir(); - posix::ChDir(".."); - // This will make the test fail if run from the root directory. - EXPECT_STRNE(original_working_dir_.c_str(), - FilePath::GetCurrentDir().c_str()); - } - - virtual void TearDown() { - posix::ChDir(original_working_dir_.c_str()); - } - - FilePath original_working_dir_; -}; - -TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithDefault) { - GTEST_FLAG(output) = ""; - EXPECT_STREQ(FilePath::ConcatPaths(original_working_dir_, - FilePath("test_detail.xml")).c_str(), - UnitTestOptions::GetAbsolutePathToOutputFile().c_str()); -} - -TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithDefaultXML) { - GTEST_FLAG(output) = "xml"; - EXPECT_STREQ(FilePath::ConcatPaths(original_working_dir_, - FilePath("test_detail.xml")).c_str(), - UnitTestOptions::GetAbsolutePathToOutputFile().c_str()); -} - -TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithRelativeFile) { - GTEST_FLAG(output) = "xml:filename.abc"; - EXPECT_STREQ(FilePath::ConcatPaths(original_working_dir_, - FilePath("filename.abc")).c_str(), - UnitTestOptions::GetAbsolutePathToOutputFile().c_str()); -} - -TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithRelativePath) { - GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_; - const std::string expected_output_file = - FilePath::ConcatPaths( - original_working_dir_, - FilePath(std::string("path") + GTEST_PATH_SEP_ + - GetCurrentExecutableName().c_str() + ".xml")).c_str(); - const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); -#if GTEST_OS_WINDOWS - EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str()); -#else - EXPECT_EQ(expected_output_file, output_file.c_str()); -#endif -} - -TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithAbsoluteFile) { -#if GTEST_OS_WINDOWS - GTEST_FLAG(output) = "xml:c:\\tmp\\filename.abc"; - EXPECT_STREQ(FilePath("c:\\tmp\\filename.abc").c_str(), - UnitTestOptions::GetAbsolutePathToOutputFile().c_str()); -#else - GTEST_FLAG(output) ="xml:/tmp/filename.abc"; - EXPECT_STREQ(FilePath("/tmp/filename.abc").c_str(), - UnitTestOptions::GetAbsolutePathToOutputFile().c_str()); -#endif -} - -TEST_F(XmlOutputChangeDirTest, PreserveOriginalWorkingDirWithAbsolutePath) { -#if GTEST_OS_WINDOWS - const std::string path = "c:\\tmp\\"; -#else - const std::string path = "/tmp/"; -#endif - - GTEST_FLAG(output) = "xml:" + path; - const std::string expected_output_file = - path + GetCurrentExecutableName().c_str() + ".xml"; - const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); - -#if GTEST_OS_WINDOWS - EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str()); -#else - EXPECT_EQ(expected_output_file, output_file.c_str()); -#endif -} - -} // namespace -} // namespace internal -} // namespace testing diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-param-test2_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-param-test2_test.cc deleted file mode 100644 index ccb6cfac9..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-param-test2_test.cc +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) -// -// Tests for Google Test itself. This verifies that the basic constructs of -// Google Test work. - -#include - -#include "test/gtest-param-test_test.h" - -#if GTEST_HAS_PARAM_TEST - -using ::testing::Values; -using ::testing::internal::ParamGenerator; - -// Tests that generators defined in a different translation unit -// are functional. The test using extern_gen is defined -// in gtest-param-test_test.cc. -ParamGenerator extern_gen = Values(33); - -// Tests that a parameterized test case can be defined in one translation unit -// and instantiated in another. The test is defined in gtest-param-test_test.cc -// and ExternalInstantiationTest fixture class is defined in -// gtest-param-test_test.h. -INSTANTIATE_TEST_CASE_P(MultiplesOf33, - ExternalInstantiationTest, - Values(33, 66)); - -// Tests that a parameterized test case can be instantiated -// in multiple translation units. Another instantiation is defined -// in gtest-param-test_test.cc and InstantiationInMultipleTranslaionUnitsTest -// fixture is defined in gtest-param-test_test.h -INSTANTIATE_TEST_CASE_P(Sequence2, - InstantiationInMultipleTranslaionUnitsTest, - Values(42*3, 42*4, 42*5)); - -#endif // GTEST_HAS_PARAM_TEST diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-param-test_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-param-test_test.cc deleted file mode 100644 index d0a0e735c..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-param-test_test.cc +++ /dev/null @@ -1,835 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) -// -// Tests for Google Test itself. This file verifies that the parameter -// generators objects produce correct parameter sequences and that -// Google Test runtime instantiates correct tests from those sequences. - -#include - -#if GTEST_HAS_PARAM_TEST - -#include -#include -#include -#include -#include -#include - -// To include gtest-internal-inl.h. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" // for UnitTestOptions -#undef GTEST_IMPLEMENTATION_ - -#include "test/gtest-param-test_test.h" - -using ::std::vector; -using ::std::sort; - -using ::testing::AddGlobalTestEnvironment; -using ::testing::Bool; -using ::testing::Message; -using ::testing::Range; -using ::testing::TestWithParam; -using ::testing::Values; -using ::testing::ValuesIn; - -#if GTEST_HAS_COMBINE -using ::testing::Combine; -using ::std::tr1::get; -using ::std::tr1::make_tuple; -using ::std::tr1::tuple; -#endif // GTEST_HAS_COMBINE - -using ::testing::internal::ParamGenerator; -using ::testing::internal::UnitTestOptions; - -// Prints a value to a string. -// -// TODO(wan@google.com): remove PrintValue() when we move matchers and -// EXPECT_THAT() from Google Mock to Google Test. At that time, we -// can write EXPECT_THAT(x, Eq(y)) to compare two tuples x and y, as -// EXPECT_THAT() and the matchers know how to print tuples. -template -::std::string PrintValue(const T& value) { - ::std::stringstream stream; - stream << value; - return stream.str(); -} - -#if GTEST_HAS_COMBINE - -// These overloads allow printing tuples in our tests. We cannot -// define an operator<< for tuples, as that definition needs to be in -// the std namespace in order to be picked up by Google Test via -// Argument-Dependent Lookup, yet defining anything in the std -// namespace in non-STL code is undefined behavior. - -template -::std::string PrintValue(const tuple& value) { - ::std::stringstream stream; - stream << "(" << get<0>(value) << ", " << get<1>(value) << ")"; - return stream.str(); -} - -template -::std::string PrintValue(const tuple& value) { - ::std::stringstream stream; - stream << "(" << get<0>(value) << ", " << get<1>(value) - << ", "<< get<2>(value) << ")"; - return stream.str(); -} - -template -::std::string PrintValue( - const tuple& value) { - ::std::stringstream stream; - stream << "(" << get<0>(value) << ", " << get<1>(value) - << ", "<< get<2>(value) << ", " << get<3>(value) - << ", "<< get<4>(value) << ", " << get<5>(value) - << ", "<< get<6>(value) << ", " << get<7>(value) - << ", "<< get<8>(value) << ", " << get<9>(value) << ")"; - return stream.str(); -} - -#endif // GTEST_HAS_COMBINE - -// Verifies that a sequence generated by the generator and accessed -// via the iterator object matches the expected one using Google Test -// assertions. -template -void VerifyGenerator(const ParamGenerator& generator, - const T (&expected_values)[N]) { - typename ParamGenerator::iterator it = generator.begin(); - for (size_t i = 0; i < N; ++i) { - ASSERT_FALSE(it == generator.end()) - << "At element " << i << " when accessing via an iterator " - << "created with the copy constructor.\n"; - // We cannot use EXPECT_EQ() here as the values may be tuples, - // which don't support <<. - EXPECT_TRUE(expected_values[i] == *it) - << "where i is " << i - << ", expected_values[i] is " << PrintValue(expected_values[i]) - << ", *it is " << PrintValue(*it) - << ", and 'it' is an iterator created with the copy constructor.\n"; - it++; - } - EXPECT_TRUE(it == generator.end()) - << "At the presumed end of sequence when accessing via an iterator " - << "created with the copy constructor.\n"; - - // Test the iterator assignment. The following lines verify that - // the sequence accessed via an iterator initialized via the - // assignment operator (as opposed to a copy constructor) matches - // just the same. - it = generator.begin(); - for (size_t i = 0; i < N; ++i) { - ASSERT_FALSE(it == generator.end()) - << "At element " << i << " when accessing via an iterator " - << "created with the assignment operator.\n"; - EXPECT_TRUE(expected_values[i] == *it) - << "where i is " << i - << ", expected_values[i] is " << PrintValue(expected_values[i]) - << ", *it is " << PrintValue(*it) - << ", and 'it' is an iterator created with the copy constructor.\n"; - it++; - } - EXPECT_TRUE(it == generator.end()) - << "At the presumed end of sequence when accessing via an iterator " - << "created with the assignment operator.\n"; -} - -template -void VerifyGeneratorIsEmpty(const ParamGenerator& generator) { - typename ParamGenerator::iterator it = generator.begin(); - EXPECT_TRUE(it == generator.end()); - - it = generator.begin(); - EXPECT_TRUE(it == generator.end()); -} - -// Generator tests. They test that each of the provided generator functions -// generates an expected sequence of values. The general test pattern -// instantiates a generator using one of the generator functions, -// checks the sequence produced by the generator using its iterator API, -// and then resets the iterator back to the beginning of the sequence -// and checks the sequence again. - -// Tests that iterators produced by generator functions conform to the -// ForwardIterator concept. -TEST(IteratorTest, ParamIteratorConformsToForwardIteratorConcept) { - const ParamGenerator gen = Range(0, 10); - ParamGenerator::iterator it = gen.begin(); - - // Verifies that iterator initialization works as expected. - ParamGenerator::iterator it2 = it; - EXPECT_TRUE(*it == *it2) << "Initialized iterators must point to the " - << "element same as its source points to"; - - // Verifies that iterator assignment works as expected. - it++; - EXPECT_FALSE(*it == *it2); - it2 = it; - EXPECT_TRUE(*it == *it2) << "Assigned iterators must point to the " - << "element same as its source points to"; - - // Verifies that prefix operator++() returns *this. - EXPECT_EQ(&it, &(++it)) << "Result of the prefix operator++ must be " - << "refer to the original object"; - - // Verifies that the result of the postfix operator++ points to the value - // pointed to by the original iterator. - int original_value = *it; // Have to compute it outside of macro call to be - // unaffected by the parameter evaluation order. - EXPECT_EQ(original_value, *(it++)); - - // Verifies that prefix and postfix operator++() advance an iterator - // all the same. - it2 = it; - it++; - ++it2; - EXPECT_TRUE(*it == *it2); -} - -// Tests that Range() generates the expected sequence. -TEST(RangeTest, IntRangeWithDefaultStep) { - const ParamGenerator gen = Range(0, 3); - const int expected_values[] = {0, 1, 2}; - VerifyGenerator(gen, expected_values); -} - -// Edge case. Tests that Range() generates the single element sequence -// as expected when provided with range limits that are equal. -TEST(RangeTest, IntRangeSingleValue) { - const ParamGenerator gen = Range(0, 1); - const int expected_values[] = {0}; - VerifyGenerator(gen, expected_values); -} - -// Edge case. Tests that Range() with generates empty sequence when -// supplied with an empty range. -TEST(RangeTest, IntRangeEmpty) { - const ParamGenerator gen = Range(0, 0); - VerifyGeneratorIsEmpty(gen); -} - -// Tests that Range() with custom step (greater then one) generates -// the expected sequence. -TEST(RangeTest, IntRangeWithCustomStep) { - const ParamGenerator gen = Range(0, 9, 3); - const int expected_values[] = {0, 3, 6}; - VerifyGenerator(gen, expected_values); -} - -// Tests that Range() with custom step (greater then one) generates -// the expected sequence when the last element does not fall on the -// upper range limit. Sequences generated by Range() must not have -// elements beyond the range limits. -TEST(RangeTest, IntRangeWithCustomStepOverUpperBound) { - const ParamGenerator gen = Range(0, 4, 3); - const int expected_values[] = {0, 3}; - VerifyGenerator(gen, expected_values); -} - -// Verifies that Range works with user-defined types that define -// copy constructor, operator=(), operator+(), and operator<(). -class DogAdder { - public: - explicit DogAdder(const char* a_value) : value_(a_value) {} - DogAdder(const DogAdder& other) : value_(other.value_.c_str()) {} - - DogAdder operator=(const DogAdder& other) { - if (this != &other) - value_ = other.value_; - return *this; - } - DogAdder operator+(const DogAdder& other) const { - Message msg; - msg << value_.c_str() << other.value_.c_str(); - return DogAdder(msg.GetString().c_str()); - } - bool operator<(const DogAdder& other) const { - return value_ < other.value_; - } - const ::testing::internal::String& value() const { return value_; } - - private: - ::testing::internal::String value_; -}; - -TEST(RangeTest, WorksWithACustomType) { - const ParamGenerator gen = - Range(DogAdder("cat"), DogAdder("catdogdog"), DogAdder("dog")); - ParamGenerator::iterator it = gen.begin(); - - ASSERT_FALSE(it == gen.end()); - EXPECT_STREQ("cat", it->value().c_str()); - - ASSERT_FALSE(++it == gen.end()); - EXPECT_STREQ("catdog", it->value().c_str()); - - EXPECT_TRUE(++it == gen.end()); -} - -class IntWrapper { - public: - explicit IntWrapper(int a_value) : value_(a_value) {} - IntWrapper(const IntWrapper& other) : value_(other.value_) {} - - IntWrapper operator=(const IntWrapper& other) { - value_ = other.value_; - return *this; - } - // operator+() adds a different type. - IntWrapper operator+(int other) const { return IntWrapper(value_ + other); } - bool operator<(const IntWrapper& other) const { - return value_ < other.value_; - } - int value() const { return value_; } - - private: - int value_; -}; - -TEST(RangeTest, WorksWithACustomTypeWithDifferentIncrementType) { - const ParamGenerator gen = Range(IntWrapper(0), IntWrapper(2)); - ParamGenerator::iterator it = gen.begin(); - - ASSERT_FALSE(it == gen.end()); - EXPECT_EQ(0, it->value()); - - ASSERT_FALSE(++it == gen.end()); - EXPECT_EQ(1, it->value()); - - EXPECT_TRUE(++it == gen.end()); -} - -// Tests that ValuesIn() with an array parameter generates -// the expected sequence. -TEST(ValuesInTest, ValuesInArray) { - int array[] = {3, 5, 8}; - const ParamGenerator gen = ValuesIn(array); - VerifyGenerator(gen, array); -} - -// Tests that ValuesIn() with a const array parameter generates -// the expected sequence. -TEST(ValuesInTest, ValuesInConstArray) { - const int array[] = {3, 5, 8}; - const ParamGenerator gen = ValuesIn(array); - VerifyGenerator(gen, array); -} - -// Edge case. Tests that ValuesIn() with an array parameter containing a -// single element generates the single element sequence. -TEST(ValuesInTest, ValuesInSingleElementArray) { - int array[] = {42}; - const ParamGenerator gen = ValuesIn(array); - VerifyGenerator(gen, array); -} - -// Tests that ValuesIn() generates the expected sequence for an STL -// container (vector). -TEST(ValuesInTest, ValuesInVector) { - typedef ::std::vector ContainerType; - ContainerType values; - values.push_back(3); - values.push_back(5); - values.push_back(8); - const ParamGenerator gen = ValuesIn(values); - - const int expected_values[] = {3, 5, 8}; - VerifyGenerator(gen, expected_values); -} - -// Tests that ValuesIn() generates the expected sequence. -TEST(ValuesInTest, ValuesInIteratorRange) { - typedef ::std::vector ContainerType; - ContainerType values; - values.push_back(3); - values.push_back(5); - values.push_back(8); - const ParamGenerator gen = ValuesIn(values.begin(), values.end()); - - const int expected_values[] = {3, 5, 8}; - VerifyGenerator(gen, expected_values); -} - -// Edge case. Tests that ValuesIn() provided with an iterator range specifying a -// single value generates a single-element sequence. -TEST(ValuesInTest, ValuesInSingleElementIteratorRange) { - typedef ::std::vector ContainerType; - ContainerType values; - values.push_back(42); - const ParamGenerator gen = ValuesIn(values.begin(), values.end()); - - const int expected_values[] = {42}; - VerifyGenerator(gen, expected_values); -} - -// Edge case. Tests that ValuesIn() provided with an empty iterator range -// generates an empty sequence. -TEST(ValuesInTest, ValuesInEmptyIteratorRange) { - typedef ::std::vector ContainerType; - ContainerType values; - const ParamGenerator gen = ValuesIn(values.begin(), values.end()); - - VerifyGeneratorIsEmpty(gen); -} - -// Tests that the Values() generates the expected sequence. -TEST(ValuesTest, ValuesWorks) { - const ParamGenerator gen = Values(3, 5, 8); - - const int expected_values[] = {3, 5, 8}; - VerifyGenerator(gen, expected_values); -} - -// Tests that Values() generates the expected sequences from elements of -// different types convertible to ParamGenerator's parameter type. -TEST(ValuesTest, ValuesWorksForValuesOfCompatibleTypes) { - const ParamGenerator gen = Values(3, 5.0f, 8.0); - - const double expected_values[] = {3.0, 5.0, 8.0}; - VerifyGenerator(gen, expected_values); -} - -TEST(ValuesTest, ValuesWorksForMaxLengthList) { - const ParamGenerator gen = Values( - 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, - 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, - 210, 220, 230, 240, 250, 260, 270, 280, 290, 300, - 310, 320, 330, 340, 350, 360, 370, 380, 390, 400, - 410, 420, 430, 440, 450, 460, 470, 480, 490, 500); - - const int expected_values[] = { - 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, - 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, - 210, 220, 230, 240, 250, 260, 270, 280, 290, 300, - 310, 320, 330, 340, 350, 360, 370, 380, 390, 400, - 410, 420, 430, 440, 450, 460, 470, 480, 490, 500}; - VerifyGenerator(gen, expected_values); -} - -// Edge case test. Tests that single-parameter Values() generates the sequence -// with the single value. -TEST(ValuesTest, ValuesWithSingleParameter) { - const ParamGenerator gen = Values(42); - - const int expected_values[] = {42}; - VerifyGenerator(gen, expected_values); -} - -// Tests that Bool() generates sequence (false, true). -TEST(BoolTest, BoolWorks) { - const ParamGenerator gen = Bool(); - - const bool expected_values[] = {false, true}; - VerifyGenerator(gen, expected_values); -} - -#if GTEST_HAS_COMBINE - -// Tests that Combine() with two parameters generates the expected sequence. -TEST(CombineTest, CombineWithTwoParameters) { - const char* foo = "foo"; - const char* bar = "bar"; - const ParamGenerator > gen = - Combine(Values(foo, bar), Values(3, 4)); - - tuple expected_values[] = { - make_tuple(foo, 3), make_tuple(foo, 4), - make_tuple(bar, 3), make_tuple(bar, 4)}; - VerifyGenerator(gen, expected_values); -} - -// Tests that Combine() with three parameters generates the expected sequence. -TEST(CombineTest, CombineWithThreeParameters) { - const ParamGenerator > gen = Combine(Values(0, 1), - Values(3, 4), - Values(5, 6)); - tuple expected_values[] = { - make_tuple(0, 3, 5), make_tuple(0, 3, 6), - make_tuple(0, 4, 5), make_tuple(0, 4, 6), - make_tuple(1, 3, 5), make_tuple(1, 3, 6), - make_tuple(1, 4, 5), make_tuple(1, 4, 6)}; - VerifyGenerator(gen, expected_values); -} - -// Tests that the Combine() with the first parameter generating a single value -// sequence generates a sequence with the number of elements equal to the -// number of elements in the sequence generated by the second parameter. -TEST(CombineTest, CombineWithFirstParameterSingleValue) { - const ParamGenerator > gen = Combine(Values(42), - Values(0, 1)); - - tuple expected_values[] = {make_tuple(42, 0), make_tuple(42, 1)}; - VerifyGenerator(gen, expected_values); -} - -// Tests that the Combine() with the second parameter generating a single value -// sequence generates a sequence with the number of elements equal to the -// number of elements in the sequence generated by the first parameter. -TEST(CombineTest, CombineWithSecondParameterSingleValue) { - const ParamGenerator > gen = Combine(Values(0, 1), - Values(42)); - - tuple expected_values[] = {make_tuple(0, 42), make_tuple(1, 42)}; - VerifyGenerator(gen, expected_values); -} - -// Tests that when the first parameter produces an empty sequence, -// Combine() produces an empty sequence, too. -TEST(CombineTest, CombineWithFirstParameterEmptyRange) { - const ParamGenerator > gen = Combine(Range(0, 0), - Values(0, 1)); - VerifyGeneratorIsEmpty(gen); -} - -// Tests that when the second parameter produces an empty sequence, -// Combine() produces an empty sequence, too. -TEST(CombineTest, CombineWithSecondParameterEmptyRange) { - const ParamGenerator > gen = Combine(Values(0, 1), - Range(1, 1)); - VerifyGeneratorIsEmpty(gen); -} - -// Edge case. Tests that combine works with the maximum number -// of parameters supported by Google Test (currently 10). -TEST(CombineTest, CombineWithMaxNumberOfParameters) { - const char* foo = "foo"; - const char* bar = "bar"; - const ParamGenerator > gen = Combine(Values(foo, bar), - Values(1), Values(2), - Values(3), Values(4), - Values(5), Values(6), - Values(7), Values(8), - Values(9)); - - tuple - expected_values[] = {make_tuple(foo, 1, 2, 3, 4, 5, 6, 7, 8, 9), - make_tuple(bar, 1, 2, 3, 4, 5, 6, 7, 8, 9)}; - VerifyGenerator(gen, expected_values); -} - -#endif // GTEST_HAS_COMBINE - -// Tests that an generator produces correct sequence after being -// assigned from another generator. -TEST(ParamGeneratorTest, AssignmentWorks) { - ParamGenerator gen = Values(1, 2); - const ParamGenerator gen2 = Values(3, 4); - gen = gen2; - - const int expected_values[] = {3, 4}; - VerifyGenerator(gen, expected_values); -} - -// This test verifies that the tests are expanded and run as specified: -// one test per element from the sequence produced by the generator -// specified in INSTANTIATE_TEST_CASE_P. It also verifies that the test's -// fixture constructor, SetUp(), and TearDown() have run and have been -// supplied with the correct parameters. - -// The use of environment object allows detection of the case where no test -// case functionality is run at all. In this case TestCaseTearDown will not -// be able to detect missing tests, naturally. -template -class TestGenerationEnvironment : public ::testing::Environment { - public: - static TestGenerationEnvironment* Instance() { - static TestGenerationEnvironment* instance = new TestGenerationEnvironment; - return instance; - } - - void FixtureConstructorExecuted() { fixture_constructor_count_++; } - void SetUpExecuted() { set_up_count_++; } - void TearDownExecuted() { tear_down_count_++; } - void TestBodyExecuted() { test_body_count_++; } - - virtual void TearDown() { - // If all MultipleTestGenerationTest tests have been de-selected - // by the filter flag, the following checks make no sense. - bool perform_check = false; - - for (int i = 0; i < kExpectedCalls; ++i) { - Message msg; - msg << "TestsExpandedAndRun/" << i; - if (UnitTestOptions::FilterMatchesTest( - "TestExpansionModule/MultipleTestGenerationTest", - msg.GetString().c_str())) { - perform_check = true; - } - } - if (perform_check) { - EXPECT_EQ(kExpectedCalls, fixture_constructor_count_) - << "Fixture constructor of ParamTestGenerationTest test case " - << "has not been run as expected."; - EXPECT_EQ(kExpectedCalls, set_up_count_) - << "Fixture SetUp method of ParamTestGenerationTest test case " - << "has not been run as expected."; - EXPECT_EQ(kExpectedCalls, tear_down_count_) - << "Fixture TearDown method of ParamTestGenerationTest test case " - << "has not been run as expected."; - EXPECT_EQ(kExpectedCalls, test_body_count_) - << "Test in ParamTestGenerationTest test case " - << "has not been run as expected."; - } - } - private: - TestGenerationEnvironment() : fixture_constructor_count_(0), set_up_count_(0), - tear_down_count_(0), test_body_count_(0) {} - - int fixture_constructor_count_; - int set_up_count_; - int tear_down_count_; - int test_body_count_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestGenerationEnvironment); -}; - -const int test_generation_params[] = {36, 42, 72}; - -class TestGenerationTest : public TestWithParam { - public: - enum { - PARAMETER_COUNT = - sizeof(test_generation_params)/sizeof(test_generation_params[0]) - }; - - typedef TestGenerationEnvironment Environment; - - TestGenerationTest() { - Environment::Instance()->FixtureConstructorExecuted(); - current_parameter_ = GetParam(); - } - virtual void SetUp() { - Environment::Instance()->SetUpExecuted(); - EXPECT_EQ(current_parameter_, GetParam()); - } - virtual void TearDown() { - Environment::Instance()->TearDownExecuted(); - EXPECT_EQ(current_parameter_, GetParam()); - } - - static void SetUpTestCase() { - bool all_tests_in_test_case_selected = true; - - for (int i = 0; i < PARAMETER_COUNT; ++i) { - Message test_name; - test_name << "TestsExpandedAndRun/" << i; - if ( !UnitTestOptions::FilterMatchesTest( - "TestExpansionModule/MultipleTestGenerationTest", - test_name.GetString())) { - all_tests_in_test_case_selected = false; - } - } - EXPECT_TRUE(all_tests_in_test_case_selected) - << "When running the TestGenerationTest test case all of its tests\n" - << "must be selected by the filter flag for the test case to pass.\n" - << "If not all of them are enabled, we can't reliably conclude\n" - << "that the correct number of tests have been generated."; - - collected_parameters_.clear(); - } - - static void TearDownTestCase() { - vector expected_values(test_generation_params, - test_generation_params + PARAMETER_COUNT); - // Test execution order is not guaranteed by Google Test, - // so the order of values in collected_parameters_ can be - // different and we have to sort to compare. - sort(expected_values.begin(), expected_values.end()); - sort(collected_parameters_.begin(), collected_parameters_.end()); - - EXPECT_TRUE(collected_parameters_ == expected_values); - } - protected: - int current_parameter_; - static vector collected_parameters_; - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(TestGenerationTest); -}; -vector TestGenerationTest::collected_parameters_; - -TEST_P(TestGenerationTest, TestsExpandedAndRun) { - Environment::Instance()->TestBodyExecuted(); - EXPECT_EQ(current_parameter_, GetParam()); - collected_parameters_.push_back(GetParam()); -} -INSTANTIATE_TEST_CASE_P(TestExpansionModule, TestGenerationTest, - ValuesIn(test_generation_params)); - -// This test verifies that the element sequence (third parameter of -// INSTANTIATE_TEST_CASE_P) is evaluated in InitGoogleTest() and neither at -// the call site of INSTANTIATE_TEST_CASE_P nor in RUN_ALL_TESTS(). For -// that, we declare param_value_ to be a static member of -// GeneratorEvaluationTest and initialize it to 0. We set it to 1 in -// main(), just before invocation of InitGoogleTest(). After calling -// InitGoogleTest(), we set the value to 2. If the sequence is evaluated -// before or after InitGoogleTest, INSTANTIATE_TEST_CASE_P will create a -// test with parameter other than 1, and the test body will fail the -// assertion. -class GeneratorEvaluationTest : public TestWithParam { - public: - static int param_value() { return param_value_; } - static void set_param_value(int param_value) { param_value_ = param_value; } - - private: - static int param_value_; -}; -int GeneratorEvaluationTest::param_value_ = 0; - -TEST_P(GeneratorEvaluationTest, GeneratorsEvaluatedInMain) { - EXPECT_EQ(1, GetParam()); -} -INSTANTIATE_TEST_CASE_P(GenEvalModule, - GeneratorEvaluationTest, - Values(GeneratorEvaluationTest::param_value())); - -// Tests that generators defined in a different translation unit are -// functional. Generator extern_gen is defined in gtest-param-test_test2.cc. -extern ParamGenerator extern_gen; -class ExternalGeneratorTest : public TestWithParam {}; -TEST_P(ExternalGeneratorTest, ExternalGenerator) { - // Sequence produced by extern_gen contains only a single value - // which we verify here. - EXPECT_EQ(GetParam(), 33); -} -INSTANTIATE_TEST_CASE_P(ExternalGeneratorModule, - ExternalGeneratorTest, - extern_gen); - -// Tests that a parameterized test case can be defined in one translation -// unit and instantiated in another. This test will be instantiated in -// gtest-param-test_test2.cc. ExternalInstantiationTest fixture class is -// defined in gtest-param-test_test.h. -TEST_P(ExternalInstantiationTest, IsMultipleOf33) { - EXPECT_EQ(0, GetParam() % 33); -} - -// Tests that a parameterized test case can be instantiated with multiple -// generators. -class MultipleInstantiationTest : public TestWithParam {}; -TEST_P(MultipleInstantiationTest, AllowsMultipleInstances) { -} -INSTANTIATE_TEST_CASE_P(Sequence1, MultipleInstantiationTest, Values(1, 2)); -INSTANTIATE_TEST_CASE_P(Sequence2, MultipleInstantiationTest, Range(3, 5)); - -// Tests that a parameterized test case can be instantiated -// in multiple translation units. This test will be instantiated -// here and in gtest-param-test_test2.cc. -// InstantiationInMultipleTranslationUnitsTest fixture class -// is defined in gtest-param-test_test.h. -TEST_P(InstantiationInMultipleTranslaionUnitsTest, IsMultipleOf42) { - EXPECT_EQ(0, GetParam() % 42); -} -INSTANTIATE_TEST_CASE_P(Sequence1, - InstantiationInMultipleTranslaionUnitsTest, - Values(42, 42*2)); - -// Tests that each iteration of parameterized test runs in a separate test -// object. -class SeparateInstanceTest : public TestWithParam { - public: - SeparateInstanceTest() : count_(0) {} - - static void TearDownTestCase() { - EXPECT_GE(global_count_, 2) - << "If some (but not all) SeparateInstanceTest tests have been " - << "filtered out this test will fail. Make sure that all " - << "GeneratorEvaluationTest are selected or de-selected together " - << "by the test filter."; - } - - protected: - int count_; - static int global_count_; -}; -int SeparateInstanceTest::global_count_ = 0; - -TEST_P(SeparateInstanceTest, TestsRunInSeparateInstances) { - EXPECT_EQ(0, count_++); - global_count_++; -} -INSTANTIATE_TEST_CASE_P(FourElemSequence, SeparateInstanceTest, Range(1, 4)); - -// Tests that all instantiations of a test have named appropriately. Test -// defined with TEST_P(TestCaseName, TestName) and instantiated with -// INSTANTIATE_TEST_CASE_P(SequenceName, TestCaseName, generator) must be named -// SequenceName/TestCaseName.TestName/i, where i is the 0-based index of the -// sequence element used to instantiate the test. -class NamingTest : public TestWithParam {}; - -TEST_P(NamingTest, TestsAreNamedAppropriately) { - const ::testing::TestInfo* const test_info = - ::testing::UnitTest::GetInstance()->current_test_info(); - - EXPECT_STREQ("ZeroToFiveSequence/NamingTest", test_info->test_case_name()); - - Message msg; - msg << "TestsAreNamedAppropriately/" << GetParam(); - EXPECT_STREQ(msg.GetString().c_str(), test_info->name()); -} - -INSTANTIATE_TEST_CASE_P(ZeroToFiveSequence, NamingTest, Range(0, 5)); - -#endif // GTEST_HAS_PARAM_TEST - -TEST(CompileTest, CombineIsDefinedOnlyWhenGtestHasParamTestIsDefined) { -#if GTEST_HAS_COMBINE && !GTEST_HAS_PARAM_TEST - FAIL() << "GTEST_HAS_COMBINE is defined while GTEST_HAS_PARAM_TEST is not\n" -#endif -} - -int main(int argc, char **argv) { -#if GTEST_HAS_PARAM_TEST - // Used in TestGenerationTest test case. - AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance()); - // Used in GeneratorEvaluationTest test case. Tests that the updated value - // will be picked up for instantiating tests in GeneratorEvaluationTest. - GeneratorEvaluationTest::set_param_value(1); -#endif // GTEST_HAS_PARAM_TEST - - ::testing::InitGoogleTest(&argc, argv); - -#if GTEST_HAS_PARAM_TEST - // Used in GeneratorEvaluationTest test case. Tests that value updated - // here will NOT be used for instantiating tests in - // GeneratorEvaluationTest. - GeneratorEvaluationTest::set_param_value(2); -#endif // GTEST_HAS_PARAM_TEST - - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-param-test_test.h b/cpp/thirdparty/gtest-1.5.0/test/gtest-param-test_test.h deleted file mode 100644 index b7f949361..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-param-test_test.h +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: vladl@google.com (Vlad Losev) -// -// The Google C++ Testing Framework (Google Test) -// -// This header file provides classes and functions used internally -// for testing Google Test itself. - -#ifndef GTEST_TEST_GTEST_PARAM_TEST_TEST_H_ -#define GTEST_TEST_GTEST_PARAM_TEST_TEST_H_ - -#include - -#if GTEST_HAS_PARAM_TEST - -// Test fixture for testing definition and instantiation of a test -// in separate translation units. -class ExternalInstantiationTest : public ::testing::TestWithParam {}; - -// Test fixture for testing instantiation of a test in multiple -// translation units. -class InstantiationInMultipleTranslaionUnitsTest - : public ::testing::TestWithParam {}; - -#endif // GTEST_HAS_PARAM_TEST - -#endif // GTEST_TEST_GTEST_PARAM_TEST_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-port_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-port_test.cc deleted file mode 100644 index 37258602f..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-port_test.cc +++ /dev/null @@ -1,1018 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Authors: vladl@google.com (Vlad Losev), wan@google.com (Zhanyong Wan) -// -// This file tests the internal cross-platform support utilities. - -#include - -#include - -#if GTEST_OS_MAC -#include -#endif // GTEST_OS_MAC - -#include // For std::pair and std::make_pair. - -#include -#include - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -using std::make_pair; -using std::pair; - -namespace testing { -namespace internal { - -// Tests that the element_type typedef is available in scoped_ptr and refers -// to the parameter type. -TEST(ScopedPtrTest, DefinesElementType) { - StaticAssertTypeEq::element_type>(); -} - -// TODO(vladl@google.com): Implement THE REST of scoped_ptr tests. - -TEST(GtestCheckSyntaxTest, BehavesLikeASingleStatement) { - if (AlwaysFalse()) - GTEST_CHECK_(false) << "This should never be executed; " - "It's a compilation test only."; - - if (AlwaysTrue()) - GTEST_CHECK_(true); - else - ; // NOLINT - - if (AlwaysFalse()) - ; // NOLINT - else - GTEST_CHECK_(true) << ""; -} - -TEST(GtestCheckSyntaxTest, WorksWithSwitch) { - switch (0) { - case 1: - break; - default: - GTEST_CHECK_(true); - } - - switch(0) - case 0: - GTEST_CHECK_(true) << "Check failed in switch case"; -} - -#if GTEST_OS_MAC -void* ThreadFunc(void* data) { - pthread_mutex_t* mutex = static_cast(data); - pthread_mutex_lock(mutex); - pthread_mutex_unlock(mutex); - return NULL; -} - -TEST(GetThreadCountTest, ReturnsCorrectValue) { - EXPECT_EQ(1U, GetThreadCount()); - pthread_mutex_t mutex; - pthread_attr_t attr; - pthread_t thread_id; - - // TODO(vladl@google.com): turn mutex into internal::Mutex for automatic - // destruction. - pthread_mutex_init(&mutex, NULL); - pthread_mutex_lock(&mutex); - ASSERT_EQ(0, pthread_attr_init(&attr)); - ASSERT_EQ(0, pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE)); - - const int status = pthread_create(&thread_id, &attr, &ThreadFunc, &mutex); - ASSERT_EQ(0, pthread_attr_destroy(&attr)); - ASSERT_EQ(0, status); - EXPECT_EQ(2U, GetThreadCount()); - pthread_mutex_unlock(&mutex); - - void* dummy; - ASSERT_EQ(0, pthread_join(thread_id, &dummy)); - - // MacOS X may not immediately report the updated thread count after - // joining a thread, causing flakiness in this test. To counter that, we - // wait for up to .5 seconds for the OS to report the correct value. - for (int i = 0; i < 5; ++i) { - if (GetThreadCount() == 1) - break; - - SleepMilliseconds(100); - } - EXPECT_EQ(1U, GetThreadCount()); - pthread_mutex_destroy(&mutex); -} -#else -TEST(GetThreadCountTest, ReturnsZeroWhenUnableToCountThreads) { - EXPECT_EQ(0U, GetThreadCount()); -} -#endif // GTEST_OS_MAC - -TEST(GtestCheckDeathTest, DiesWithCorrectOutputOnFailure) { - const bool a_false_condition = false; - const char regex[] = -#ifdef _MSC_VER - "gtest-port_test\\.cc\\(\\d+\\):" -#else - "gtest-port_test\\.cc:[0-9]+" -#endif // _MSC_VER - ".*a_false_condition.*Extra info.*"; - - EXPECT_DEATH_IF_SUPPORTED(GTEST_CHECK_(a_false_condition) << "Extra info", - regex); -} - -#if GTEST_HAS_DEATH_TEST - -TEST(GtestCheckDeathTest, LivesSilentlyOnSuccess) { - EXPECT_EXIT({ - GTEST_CHECK_(true) << "Extra info"; - ::std::cerr << "Success\n"; - exit(0); }, - ::testing::ExitedWithCode(0), "Success"); -} - -#endif // GTEST_HAS_DEATH_TEST - -#if GTEST_USES_POSIX_RE - -#if GTEST_HAS_TYPED_TEST - -template -class RETest : public ::testing::Test {}; - -// Defines StringTypes as the list of all string types that class RE -// supports. -typedef testing::Types< - ::std::string, -#if GTEST_HAS_GLOBAL_STRING - ::string, -#endif // GTEST_HAS_GLOBAL_STRING - const char*> StringTypes; - -TYPED_TEST_CASE(RETest, StringTypes); - -// Tests RE's implicit constructors. -TYPED_TEST(RETest, ImplicitConstructorWorks) { - const RE empty(TypeParam("")); - EXPECT_STREQ("", empty.pattern()); - - const RE simple(TypeParam("hello")); - EXPECT_STREQ("hello", simple.pattern()); - - const RE normal(TypeParam(".*(\\w+)")); - EXPECT_STREQ(".*(\\w+)", normal.pattern()); -} - -// Tests that RE's constructors reject invalid regular expressions. -TYPED_TEST(RETest, RejectsInvalidRegex) { - EXPECT_NONFATAL_FAILURE({ - const RE invalid(TypeParam("?")); - }, "\"?\" is not a valid POSIX Extended regular expression."); -} - -// Tests RE::FullMatch(). -TYPED_TEST(RETest, FullMatchWorks) { - const RE empty(TypeParam("")); - EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty)); - EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty)); - - const RE re(TypeParam("a.*z")); - EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re)); - EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re)); - EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re)); - EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re)); -} - -// Tests RE::PartialMatch(). -TYPED_TEST(RETest, PartialMatchWorks) { - const RE empty(TypeParam("")); - EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty)); - EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty)); - - const RE re(TypeParam("a.*z")); - EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re)); - EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re)); - EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re)); - EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re)); - EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re)); -} - -#endif // GTEST_HAS_TYPED_TEST - -#elif GTEST_USES_SIMPLE_RE - -TEST(IsInSetTest, NulCharIsNotInAnySet) { - EXPECT_FALSE(IsInSet('\0', "")); - EXPECT_FALSE(IsInSet('\0', "\0")); - EXPECT_FALSE(IsInSet('\0', "a")); -} - -TEST(IsInSetTest, WorksForNonNulChars) { - EXPECT_FALSE(IsInSet('a', "Ab")); - EXPECT_FALSE(IsInSet('c', "")); - - EXPECT_TRUE(IsInSet('b', "bcd")); - EXPECT_TRUE(IsInSet('b', "ab")); -} - -TEST(IsDigitTest, IsFalseForNonDigit) { - EXPECT_FALSE(IsDigit('\0')); - EXPECT_FALSE(IsDigit(' ')); - EXPECT_FALSE(IsDigit('+')); - EXPECT_FALSE(IsDigit('-')); - EXPECT_FALSE(IsDigit('.')); - EXPECT_FALSE(IsDigit('a')); -} - -TEST(IsDigitTest, IsTrueForDigit) { - EXPECT_TRUE(IsDigit('0')); - EXPECT_TRUE(IsDigit('1')); - EXPECT_TRUE(IsDigit('5')); - EXPECT_TRUE(IsDigit('9')); -} - -TEST(IsPunctTest, IsFalseForNonPunct) { - EXPECT_FALSE(IsPunct('\0')); - EXPECT_FALSE(IsPunct(' ')); - EXPECT_FALSE(IsPunct('\n')); - EXPECT_FALSE(IsPunct('a')); - EXPECT_FALSE(IsPunct('0')); -} - -TEST(IsPunctTest, IsTrueForPunct) { - for (const char* p = "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"; *p; p++) { - EXPECT_PRED1(IsPunct, *p); - } -} - -TEST(IsRepeatTest, IsFalseForNonRepeatChar) { - EXPECT_FALSE(IsRepeat('\0')); - EXPECT_FALSE(IsRepeat(' ')); - EXPECT_FALSE(IsRepeat('a')); - EXPECT_FALSE(IsRepeat('1')); - EXPECT_FALSE(IsRepeat('-')); -} - -TEST(IsRepeatTest, IsTrueForRepeatChar) { - EXPECT_TRUE(IsRepeat('?')); - EXPECT_TRUE(IsRepeat('*')); - EXPECT_TRUE(IsRepeat('+')); -} - -TEST(IsWhiteSpaceTest, IsFalseForNonWhiteSpace) { - EXPECT_FALSE(IsWhiteSpace('\0')); - EXPECT_FALSE(IsWhiteSpace('a')); - EXPECT_FALSE(IsWhiteSpace('1')); - EXPECT_FALSE(IsWhiteSpace('+')); - EXPECT_FALSE(IsWhiteSpace('_')); -} - -TEST(IsWhiteSpaceTest, IsTrueForWhiteSpace) { - EXPECT_TRUE(IsWhiteSpace(' ')); - EXPECT_TRUE(IsWhiteSpace('\n')); - EXPECT_TRUE(IsWhiteSpace('\r')); - EXPECT_TRUE(IsWhiteSpace('\t')); - EXPECT_TRUE(IsWhiteSpace('\v')); - EXPECT_TRUE(IsWhiteSpace('\f')); -} - -TEST(IsWordCharTest, IsFalseForNonWordChar) { - EXPECT_FALSE(IsWordChar('\0')); - EXPECT_FALSE(IsWordChar('+')); - EXPECT_FALSE(IsWordChar('.')); - EXPECT_FALSE(IsWordChar(' ')); - EXPECT_FALSE(IsWordChar('\n')); -} - -TEST(IsWordCharTest, IsTrueForLetter) { - EXPECT_TRUE(IsWordChar('a')); - EXPECT_TRUE(IsWordChar('b')); - EXPECT_TRUE(IsWordChar('A')); - EXPECT_TRUE(IsWordChar('Z')); -} - -TEST(IsWordCharTest, IsTrueForDigit) { - EXPECT_TRUE(IsWordChar('0')); - EXPECT_TRUE(IsWordChar('1')); - EXPECT_TRUE(IsWordChar('7')); - EXPECT_TRUE(IsWordChar('9')); -} - -TEST(IsWordCharTest, IsTrueForUnderscore) { - EXPECT_TRUE(IsWordChar('_')); -} - -TEST(IsValidEscapeTest, IsFalseForNonPrintable) { - EXPECT_FALSE(IsValidEscape('\0')); - EXPECT_FALSE(IsValidEscape('\007')); -} - -TEST(IsValidEscapeTest, IsFalseForDigit) { - EXPECT_FALSE(IsValidEscape('0')); - EXPECT_FALSE(IsValidEscape('9')); -} - -TEST(IsValidEscapeTest, IsFalseForWhiteSpace) { - EXPECT_FALSE(IsValidEscape(' ')); - EXPECT_FALSE(IsValidEscape('\n')); -} - -TEST(IsValidEscapeTest, IsFalseForSomeLetter) { - EXPECT_FALSE(IsValidEscape('a')); - EXPECT_FALSE(IsValidEscape('Z')); -} - -TEST(IsValidEscapeTest, IsTrueForPunct) { - EXPECT_TRUE(IsValidEscape('.')); - EXPECT_TRUE(IsValidEscape('-')); - EXPECT_TRUE(IsValidEscape('^')); - EXPECT_TRUE(IsValidEscape('$')); - EXPECT_TRUE(IsValidEscape('(')); - EXPECT_TRUE(IsValidEscape(']')); - EXPECT_TRUE(IsValidEscape('{')); - EXPECT_TRUE(IsValidEscape('|')); -} - -TEST(IsValidEscapeTest, IsTrueForSomeLetter) { - EXPECT_TRUE(IsValidEscape('d')); - EXPECT_TRUE(IsValidEscape('D')); - EXPECT_TRUE(IsValidEscape('s')); - EXPECT_TRUE(IsValidEscape('S')); - EXPECT_TRUE(IsValidEscape('w')); - EXPECT_TRUE(IsValidEscape('W')); -} - -TEST(AtomMatchesCharTest, EscapedPunct) { - EXPECT_FALSE(AtomMatchesChar(true, '\\', '\0')); - EXPECT_FALSE(AtomMatchesChar(true, '\\', ' ')); - EXPECT_FALSE(AtomMatchesChar(true, '_', '.')); - EXPECT_FALSE(AtomMatchesChar(true, '.', 'a')); - - EXPECT_TRUE(AtomMatchesChar(true, '\\', '\\')); - EXPECT_TRUE(AtomMatchesChar(true, '_', '_')); - EXPECT_TRUE(AtomMatchesChar(true, '+', '+')); - EXPECT_TRUE(AtomMatchesChar(true, '.', '.')); -} - -TEST(AtomMatchesCharTest, Escaped_d) { - EXPECT_FALSE(AtomMatchesChar(true, 'd', '\0')); - EXPECT_FALSE(AtomMatchesChar(true, 'd', 'a')); - EXPECT_FALSE(AtomMatchesChar(true, 'd', '.')); - - EXPECT_TRUE(AtomMatchesChar(true, 'd', '0')); - EXPECT_TRUE(AtomMatchesChar(true, 'd', '9')); -} - -TEST(AtomMatchesCharTest, Escaped_D) { - EXPECT_FALSE(AtomMatchesChar(true, 'D', '0')); - EXPECT_FALSE(AtomMatchesChar(true, 'D', '9')); - - EXPECT_TRUE(AtomMatchesChar(true, 'D', '\0')); - EXPECT_TRUE(AtomMatchesChar(true, 'D', 'a')); - EXPECT_TRUE(AtomMatchesChar(true, 'D', '-')); -} - -TEST(AtomMatchesCharTest, Escaped_s) { - EXPECT_FALSE(AtomMatchesChar(true, 's', '\0')); - EXPECT_FALSE(AtomMatchesChar(true, 's', 'a')); - EXPECT_FALSE(AtomMatchesChar(true, 's', '.')); - EXPECT_FALSE(AtomMatchesChar(true, 's', '9')); - - EXPECT_TRUE(AtomMatchesChar(true, 's', ' ')); - EXPECT_TRUE(AtomMatchesChar(true, 's', '\n')); - EXPECT_TRUE(AtomMatchesChar(true, 's', '\t')); -} - -TEST(AtomMatchesCharTest, Escaped_S) { - EXPECT_FALSE(AtomMatchesChar(true, 'S', ' ')); - EXPECT_FALSE(AtomMatchesChar(true, 'S', '\r')); - - EXPECT_TRUE(AtomMatchesChar(true, 'S', '\0')); - EXPECT_TRUE(AtomMatchesChar(true, 'S', 'a')); - EXPECT_TRUE(AtomMatchesChar(true, 'S', '9')); -} - -TEST(AtomMatchesCharTest, Escaped_w) { - EXPECT_FALSE(AtomMatchesChar(true, 'w', '\0')); - EXPECT_FALSE(AtomMatchesChar(true, 'w', '+')); - EXPECT_FALSE(AtomMatchesChar(true, 'w', ' ')); - EXPECT_FALSE(AtomMatchesChar(true, 'w', '\n')); - - EXPECT_TRUE(AtomMatchesChar(true, 'w', '0')); - EXPECT_TRUE(AtomMatchesChar(true, 'w', 'b')); - EXPECT_TRUE(AtomMatchesChar(true, 'w', 'C')); - EXPECT_TRUE(AtomMatchesChar(true, 'w', '_')); -} - -TEST(AtomMatchesCharTest, Escaped_W) { - EXPECT_FALSE(AtomMatchesChar(true, 'W', 'A')); - EXPECT_FALSE(AtomMatchesChar(true, 'W', 'b')); - EXPECT_FALSE(AtomMatchesChar(true, 'W', '9')); - EXPECT_FALSE(AtomMatchesChar(true, 'W', '_')); - - EXPECT_TRUE(AtomMatchesChar(true, 'W', '\0')); - EXPECT_TRUE(AtomMatchesChar(true, 'W', '*')); - EXPECT_TRUE(AtomMatchesChar(true, 'W', '\n')); -} - -TEST(AtomMatchesCharTest, EscapedWhiteSpace) { - EXPECT_FALSE(AtomMatchesChar(true, 'f', '\0')); - EXPECT_FALSE(AtomMatchesChar(true, 'f', '\n')); - EXPECT_FALSE(AtomMatchesChar(true, 'n', '\0')); - EXPECT_FALSE(AtomMatchesChar(true, 'n', '\r')); - EXPECT_FALSE(AtomMatchesChar(true, 'r', '\0')); - EXPECT_FALSE(AtomMatchesChar(true, 'r', 'a')); - EXPECT_FALSE(AtomMatchesChar(true, 't', '\0')); - EXPECT_FALSE(AtomMatchesChar(true, 't', 't')); - EXPECT_FALSE(AtomMatchesChar(true, 'v', '\0')); - EXPECT_FALSE(AtomMatchesChar(true, 'v', '\f')); - - EXPECT_TRUE(AtomMatchesChar(true, 'f', '\f')); - EXPECT_TRUE(AtomMatchesChar(true, 'n', '\n')); - EXPECT_TRUE(AtomMatchesChar(true, 'r', '\r')); - EXPECT_TRUE(AtomMatchesChar(true, 't', '\t')); - EXPECT_TRUE(AtomMatchesChar(true, 'v', '\v')); -} - -TEST(AtomMatchesCharTest, UnescapedDot) { - EXPECT_FALSE(AtomMatchesChar(false, '.', '\n')); - - EXPECT_TRUE(AtomMatchesChar(false, '.', '\0')); - EXPECT_TRUE(AtomMatchesChar(false, '.', '.')); - EXPECT_TRUE(AtomMatchesChar(false, '.', 'a')); - EXPECT_TRUE(AtomMatchesChar(false, '.', ' ')); -} - -TEST(AtomMatchesCharTest, UnescapedChar) { - EXPECT_FALSE(AtomMatchesChar(false, 'a', '\0')); - EXPECT_FALSE(AtomMatchesChar(false, 'a', 'b')); - EXPECT_FALSE(AtomMatchesChar(false, '$', 'a')); - - EXPECT_TRUE(AtomMatchesChar(false, '$', '$')); - EXPECT_TRUE(AtomMatchesChar(false, '5', '5')); - EXPECT_TRUE(AtomMatchesChar(false, 'Z', 'Z')); -} - -TEST(ValidateRegexTest, GeneratesFailureAndReturnsFalseForInvalid) { - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex(NULL)), - "NULL is not a valid simple regular expression"); - EXPECT_NONFATAL_FAILURE( - ASSERT_FALSE(ValidateRegex("a\\")), - "Syntax error at index 1 in simple regular expression \"a\\\": "); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("a\\")), - "'\\' cannot appear at the end"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("\\n\\")), - "'\\' cannot appear at the end"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("\\s\\hb")), - "invalid escape sequence \"\\h\""); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("^^")), - "'^' can only appear at the beginning"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex(".*^b")), - "'^' can only appear at the beginning"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("$$")), - "'$' can only appear at the end"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("^$a")), - "'$' can only appear at the end"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("a(b")), - "'(' is unsupported"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("ab)")), - "')' is unsupported"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("[ab")), - "'[' is unsupported"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("a{2")), - "'{' is unsupported"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("?")), - "'?' can only follow a repeatable token"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("^*")), - "'*' can only follow a repeatable token"); - EXPECT_NONFATAL_FAILURE(ASSERT_FALSE(ValidateRegex("5*+")), - "'+' can only follow a repeatable token"); -} - -TEST(ValidateRegexTest, ReturnsTrueForValid) { - EXPECT_TRUE(ValidateRegex("")); - EXPECT_TRUE(ValidateRegex("a")); - EXPECT_TRUE(ValidateRegex(".*")); - EXPECT_TRUE(ValidateRegex("^a_+")); - EXPECT_TRUE(ValidateRegex("^a\\t\\&?")); - EXPECT_TRUE(ValidateRegex("09*$")); - EXPECT_TRUE(ValidateRegex("^Z$")); - EXPECT_TRUE(ValidateRegex("a\\^Z\\$\\(\\)\\|\\[\\]\\{\\}")); -} - -TEST(MatchRepetitionAndRegexAtHeadTest, WorksForZeroOrOne) { - EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "a", "ba")); - // Repeating more than once. - EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "b", "aab")); - - // Repeating zero times. - EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "b", "ba")); - // Repeating once. - EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, 'a', '?', "b", "ab")); - EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '#', '?', ".", "##")); -} - -TEST(MatchRepetitionAndRegexAtHeadTest, WorksForZeroOrMany) { - EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, '.', '*', "a$", "baab")); - - // Repeating zero times. - EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '.', '*', "b", "bc")); - // Repeating once. - EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '.', '*', "b", "abc")); - // Repeating more than once. - EXPECT_TRUE(MatchRepetitionAndRegexAtHead(true, 'w', '*', "-", "ab_1-g")); -} - -TEST(MatchRepetitionAndRegexAtHeadTest, WorksForOneOrMany) { - EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, '.', '+', "a$", "baab")); - // Repeating zero times. - EXPECT_FALSE(MatchRepetitionAndRegexAtHead(false, '.', '+', "b", "bc")); - - // Repeating once. - EXPECT_TRUE(MatchRepetitionAndRegexAtHead(false, '.', '+', "b", "abc")); - // Repeating more than once. - EXPECT_TRUE(MatchRepetitionAndRegexAtHead(true, 'w', '+', "-", "ab_1-g")); -} - -TEST(MatchRegexAtHeadTest, ReturnsTrueForEmptyRegex) { - EXPECT_TRUE(MatchRegexAtHead("", "")); - EXPECT_TRUE(MatchRegexAtHead("", "ab")); -} - -TEST(MatchRegexAtHeadTest, WorksWhenDollarIsInRegex) { - EXPECT_FALSE(MatchRegexAtHead("$", "a")); - - EXPECT_TRUE(MatchRegexAtHead("$", "")); - EXPECT_TRUE(MatchRegexAtHead("a$", "a")); -} - -TEST(MatchRegexAtHeadTest, WorksWhenRegexStartsWithEscapeSequence) { - EXPECT_FALSE(MatchRegexAtHead("\\w", "+")); - EXPECT_FALSE(MatchRegexAtHead("\\W", "ab")); - - EXPECT_TRUE(MatchRegexAtHead("\\sa", "\nab")); - EXPECT_TRUE(MatchRegexAtHead("\\d", "1a")); -} - -TEST(MatchRegexAtHeadTest, WorksWhenRegexStartsWithRepetition) { - EXPECT_FALSE(MatchRegexAtHead(".+a", "abc")); - EXPECT_FALSE(MatchRegexAtHead("a?b", "aab")); - - EXPECT_TRUE(MatchRegexAtHead(".*a", "bc12-ab")); - EXPECT_TRUE(MatchRegexAtHead("a?b", "b")); - EXPECT_TRUE(MatchRegexAtHead("a?b", "ab")); -} - -TEST(MatchRegexAtHeadTest, - WorksWhenRegexStartsWithRepetionOfEscapeSequence) { - EXPECT_FALSE(MatchRegexAtHead("\\.+a", "abc")); - EXPECT_FALSE(MatchRegexAtHead("\\s?b", " b")); - - EXPECT_TRUE(MatchRegexAtHead("\\(*a", "((((ab")); - EXPECT_TRUE(MatchRegexAtHead("\\^?b", "^b")); - EXPECT_TRUE(MatchRegexAtHead("\\\\?b", "b")); - EXPECT_TRUE(MatchRegexAtHead("\\\\?b", "\\b")); -} - -TEST(MatchRegexAtHeadTest, MatchesSequentially) { - EXPECT_FALSE(MatchRegexAtHead("ab.*c", "acabc")); - - EXPECT_TRUE(MatchRegexAtHead("ab.*c", "ab-fsc")); -} - -TEST(MatchRegexAnywhereTest, ReturnsFalseWhenStringIsNull) { - EXPECT_FALSE(MatchRegexAnywhere("", NULL)); -} - -TEST(MatchRegexAnywhereTest, WorksWhenRegexStartsWithCaret) { - EXPECT_FALSE(MatchRegexAnywhere("^a", "ba")); - EXPECT_FALSE(MatchRegexAnywhere("^$", "a")); - - EXPECT_TRUE(MatchRegexAnywhere("^a", "ab")); - EXPECT_TRUE(MatchRegexAnywhere("^", "ab")); - EXPECT_TRUE(MatchRegexAnywhere("^$", "")); -} - -TEST(MatchRegexAnywhereTest, ReturnsFalseWhenNoMatch) { - EXPECT_FALSE(MatchRegexAnywhere("a", "bcde123")); - EXPECT_FALSE(MatchRegexAnywhere("a.+a", "--aa88888888")); -} - -TEST(MatchRegexAnywhereTest, ReturnsTrueWhenMatchingPrefix) { - EXPECT_TRUE(MatchRegexAnywhere("\\w+", "ab1_ - 5")); - EXPECT_TRUE(MatchRegexAnywhere(".*=", "=")); - EXPECT_TRUE(MatchRegexAnywhere("x.*ab?.*bc", "xaaabc")); -} - -TEST(MatchRegexAnywhereTest, ReturnsTrueWhenMatchingNonPrefix) { - EXPECT_TRUE(MatchRegexAnywhere("\\w+", "$$$ ab1_ - 5")); - EXPECT_TRUE(MatchRegexAnywhere("\\.+=", "= ...=")); -} - -// Tests RE's implicit constructors. -TEST(RETest, ImplicitConstructorWorks) { - const RE empty(""); - EXPECT_STREQ("", empty.pattern()); - - const RE simple("hello"); - EXPECT_STREQ("hello", simple.pattern()); -} - -// Tests that RE's constructors reject invalid regular expressions. -TEST(RETest, RejectsInvalidRegex) { - EXPECT_NONFATAL_FAILURE({ - const RE normal(NULL); - }, "NULL is not a valid simple regular expression"); - - EXPECT_NONFATAL_FAILURE({ - const RE normal(".*(\\w+"); - }, "'(' is unsupported"); - - EXPECT_NONFATAL_FAILURE({ - const RE invalid("^?"); - }, "'?' can only follow a repeatable token"); -} - -// Tests RE::FullMatch(). -TEST(RETest, FullMatchWorks) { - const RE empty(""); - EXPECT_TRUE(RE::FullMatch("", empty)); - EXPECT_FALSE(RE::FullMatch("a", empty)); - - const RE re1("a"); - EXPECT_TRUE(RE::FullMatch("a", re1)); - - const RE re("a.*z"); - EXPECT_TRUE(RE::FullMatch("az", re)); - EXPECT_TRUE(RE::FullMatch("axyz", re)); - EXPECT_FALSE(RE::FullMatch("baz", re)); - EXPECT_FALSE(RE::FullMatch("azy", re)); -} - -// Tests RE::PartialMatch(). -TEST(RETest, PartialMatchWorks) { - const RE empty(""); - EXPECT_TRUE(RE::PartialMatch("", empty)); - EXPECT_TRUE(RE::PartialMatch("a", empty)); - - const RE re("a.*z"); - EXPECT_TRUE(RE::PartialMatch("az", re)); - EXPECT_TRUE(RE::PartialMatch("axyz", re)); - EXPECT_TRUE(RE::PartialMatch("baz", re)); - EXPECT_TRUE(RE::PartialMatch("azy", re)); - EXPECT_FALSE(RE::PartialMatch("zza", re)); -} - -#endif // GTEST_USES_POSIX_RE - -#if !GTEST_OS_WINDOWS_MOBILE - -TEST(CaptureTest, CapturesStdout) { - CaptureStdout(); - fprintf(stdout, "abc"); - EXPECT_STREQ("abc", GetCapturedStdout().c_str()); - - CaptureStdout(); - fprintf(stdout, "def%cghi", '\0'); - EXPECT_EQ(::std::string("def\0ghi", 7), ::std::string(GetCapturedStdout())); -} - -TEST(CaptureTest, CapturesStderr) { - CaptureStderr(); - fprintf(stderr, "jkl"); - EXPECT_STREQ("jkl", GetCapturedStderr().c_str()); - - CaptureStderr(); - fprintf(stderr, "jkl%cmno", '\0'); - EXPECT_EQ(::std::string("jkl\0mno", 7), ::std::string(GetCapturedStderr())); -} - -// Tests that stdout and stderr capture don't interfere with each other. -TEST(CaptureTest, CapturesStdoutAndStderr) { - CaptureStdout(); - CaptureStderr(); - fprintf(stdout, "pqr"); - fprintf(stderr, "stu"); - EXPECT_STREQ("pqr", GetCapturedStdout().c_str()); - EXPECT_STREQ("stu", GetCapturedStderr().c_str()); -} - -TEST(CaptureDeathTest, CannotReenterStdoutCapture) { - CaptureStdout(); - EXPECT_DEATH_IF_SUPPORTED(CaptureStdout();, - "Only one stdout capturer can exist at a time"); - GetCapturedStdout(); - - // We cannot test stderr capturing using death tests as they use it - // themselves. -} - -#endif // !GTEST_OS_WINDOWS_MOBILE - -TEST(ThreadLocalTest, DefaultConstructorInitializesToDefaultValues) { - ThreadLocal t1; - EXPECT_EQ(0, t1.get()); - - ThreadLocal t2; - EXPECT_TRUE(t2.get() == NULL); -} - -TEST(ThreadLocalTest, SingleParamConstructorInitializesToParam) { - ThreadLocal t1(123); - EXPECT_EQ(123, t1.get()); - - int i = 0; - ThreadLocal t2(&i); - EXPECT_EQ(&i, t2.get()); -} - -class NoDefaultContructor { - public: - explicit NoDefaultContructor(const char*) {} - NoDefaultContructor(const NoDefaultContructor&) {} -}; - -TEST(ThreadLocalTest, ValueDefaultContructorIsNotRequiredForParamVersion) { - ThreadLocal bar(NoDefaultContructor("foo")); - bar.pointer(); -} - -TEST(ThreadLocalTest, GetAndPointerReturnSameValue) { - ThreadLocal thread_local; - - EXPECT_EQ(thread_local.pointer(), &(thread_local.get())); - - // Verifies the condition still holds after calling set. - thread_local.set("foo"); - EXPECT_EQ(thread_local.pointer(), &(thread_local.get())); -} - -TEST(ThreadLocalTest, PointerAndConstPointerReturnSameValue) { - ThreadLocal thread_local; - const ThreadLocal& const_thread_local = thread_local; - - EXPECT_EQ(thread_local.pointer(), const_thread_local.pointer()); - - thread_local.set("foo"); - EXPECT_EQ(thread_local.pointer(), const_thread_local.pointer()); -} - -#if GTEST_IS_THREADSAFE - -void AddTwo(int* param) { *param += 2; } - -TEST(ThreadWithParamTest, ConstructorExecutesThreadFunc) { - int i = 40; - ThreadWithParam thread(&AddTwo, &i, NULL); - thread.Join(); - EXPECT_EQ(42, i); -} - -TEST(MutexDeathTest, AssertHeldShouldAssertWhenNotLocked) { - // AssertHeld() is flaky only in the presence of multiple threads accessing - // the lock. In this case, the test is robust. - EXPECT_DEATH_IF_SUPPORTED({ - Mutex m; - { MutexLock lock(&m); } - m.AssertHeld(); - }, - "thread .*hold"); -} - -TEST(MutexTest, AssertHeldShouldNotAssertWhenLocked) { - Mutex m; - MutexLock lock(&m); - m.AssertHeld(); -} - -class AtomicCounterWithMutex { - public: - explicit AtomicCounterWithMutex(Mutex* mutex) : - value_(0), mutex_(mutex), random_(42) {} - - void Increment() { - MutexLock lock(mutex_); - int temp = value_; - { - // Locking a mutex puts up a memory barrier, preventing reads and - // writes to value_ rearranged when observed from other threads. - // - // We cannot use Mutex and MutexLock here or rely on their memory - // barrier functionality as we are testing them here. - pthread_mutex_t memory_barrier_mutex; - GTEST_CHECK_POSIX_SUCCESS_( - pthread_mutex_init(&memory_barrier_mutex, NULL)); - GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&memory_barrier_mutex)); - - SleepMilliseconds(random_.Generate(30)); - - GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&memory_barrier_mutex)); - } - value_ = temp + 1; - } - int value() const { return value_; } - - private: - volatile int value_; - Mutex* const mutex_; // Protects value_. - Random random_; -}; - -void CountingThreadFunc(pair param) { - for (int i = 0; i < param.second; ++i) - param.first->Increment(); -} - -// Tests that the mutex only lets one thread at a time to lock it. -TEST(MutexTest, OnlyOneThreadCanLockAtATime) { - Mutex mutex; - AtomicCounterWithMutex locked_counter(&mutex); - - typedef ThreadWithParam > ThreadType; - const int kCycleCount = 20; - const int kThreadCount = 7; - scoped_ptr counting_threads[kThreadCount]; - Notification threads_can_start; - // Creates and runs kThreadCount threads that increment locked_counter - // kCycleCount times each. - for (int i = 0; i < kThreadCount; ++i) { - counting_threads[i].reset(new ThreadType(&CountingThreadFunc, - make_pair(&locked_counter, - kCycleCount), - &threads_can_start)); - } - threads_can_start.Notify(); - for (int i = 0; i < kThreadCount; ++i) - counting_threads[i]->Join(); - - // If the mutex lets more than one thread to increment the counter at a - // time, they are likely to encounter a race condition and have some - // increments overwritten, resulting in the lower then expected counter - // value. - EXPECT_EQ(kCycleCount * kThreadCount, locked_counter.value()); -} - -template -void RunFromThread(void (func)(T), T param) { - ThreadWithParam thread(func, param, NULL); - thread.Join(); -} - -void RetrieveThreadLocalValue(pair*, String*> param) { - *param.second = param.first->get(); -} - -TEST(ThreadLocalTest, ParameterizedConstructorSetsDefault) { - ThreadLocal thread_local("foo"); - EXPECT_STREQ("foo", thread_local.get().c_str()); - - thread_local.set("bar"); - EXPECT_STREQ("bar", thread_local.get().c_str()); - - String result; - RunFromThread(&RetrieveThreadLocalValue, make_pair(&thread_local, &result)); - EXPECT_STREQ("foo", result.c_str()); -} - -// DestructorTracker keeps track of whether its instances have been -// destroyed. -static std::vector g_destroyed; - -class DestructorTracker { - public: - DestructorTracker() : index_(GetNewIndex()) {} - DestructorTracker(const DestructorTracker& /* rhs */) - : index_(GetNewIndex()) {} - ~DestructorTracker() { - // We never access g_destroyed concurrently, so we don't need to - // protect the write operation under a mutex. - g_destroyed[index_] = true; - } - - private: - static int GetNewIndex() { - g_destroyed.push_back(false); - return g_destroyed.size() - 1; - } - const int index_; -}; - -typedef ThreadLocal* ThreadParam; - -void CallThreadLocalGet(ThreadParam thread_local) { - thread_local->get(); -} - -// Tests that when a ThreadLocal object dies in a thread, it destroys -// the managed object for that thread. -TEST(ThreadLocalTest, DestroysManagedObjectForOwnThreadWhenDying) { - g_destroyed.clear(); - - { - // The next line default constructs a DestructorTracker object as - // the default value of objects managed by thread_local. - ThreadLocal thread_local; - ASSERT_EQ(1U, g_destroyed.size()); - ASSERT_FALSE(g_destroyed[0]); - - // This creates another DestructorTracker object for the main thread. - thread_local.get(); - ASSERT_EQ(2U, g_destroyed.size()); - ASSERT_FALSE(g_destroyed[0]); - ASSERT_FALSE(g_destroyed[1]); - } - - // Now thread_local has died. It should have destroyed both the - // default value shared by all threads and the value for the main - // thread. - ASSERT_EQ(2U, g_destroyed.size()); - EXPECT_TRUE(g_destroyed[0]); - EXPECT_TRUE(g_destroyed[1]); - - g_destroyed.clear(); -} - -// Tests that when a thread exits, the thread-local object for that -// thread is destroyed. -TEST(ThreadLocalTest, DestroysManagedObjectAtThreadExit) { - g_destroyed.clear(); - - { - // The next line default constructs a DestructorTracker object as - // the default value of objects managed by thread_local. - ThreadLocal thread_local; - ASSERT_EQ(1U, g_destroyed.size()); - ASSERT_FALSE(g_destroyed[0]); - - // This creates another DestructorTracker object in the new thread. - ThreadWithParam thread( - &CallThreadLocalGet, &thread_local, NULL); - thread.Join(); - - // Now the new thread has exited. The per-thread object for it - // should have been destroyed. - ASSERT_EQ(2U, g_destroyed.size()); - ASSERT_FALSE(g_destroyed[0]); - ASSERT_TRUE(g_destroyed[1]); - } - - // Now thread_local has died. The default value should have been - // destroyed too. - ASSERT_EQ(2U, g_destroyed.size()); - EXPECT_TRUE(g_destroyed[0]); - EXPECT_TRUE(g_destroyed[1]); - - g_destroyed.clear(); -} - -TEST(ThreadLocalTest, ThreadLocalMutationsAffectOnlyCurrentThread) { - ThreadLocal thread_local; - thread_local.set("Foo"); - EXPECT_STREQ("Foo", thread_local.get().c_str()); - - String result; - RunFromThread(&RetrieveThreadLocalValue, make_pair(&thread_local, &result)); - EXPECT_TRUE(result.c_str() == NULL); -} - -#endif // GTEST_IS_THREADSAFE - -} // namespace internal -} // namespace testing diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-test-part_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-test-part_test.cc deleted file mode 100644 index 5a3e9196a..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-test-part_test.cc +++ /dev/null @@ -1,208 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: mheule@google.com (Markus Heule) -// - -#include - -#include - -using testing::Message; -using testing::Test; -using testing::TestPartResult; -using testing::TestPartResultArray; - -namespace { - -// Tests the TestPartResult class. - -// The test fixture for testing TestPartResult. -class TestPartResultTest : public Test { - protected: - TestPartResultTest() - : r1_(TestPartResult::kSuccess, "foo/bar.cc", 10, "Success!"), - r2_(TestPartResult::kNonFatalFailure, "foo/bar.cc", -1, "Failure!"), - r3_(TestPartResult::kFatalFailure, NULL, -1, "Failure!") {} - - TestPartResult r1_, r2_, r3_; -}; - - -TEST_F(TestPartResultTest, ConstructorWorks) { - Message message; - message << "something is terribly wrong"; - message << static_cast(testing::internal::kStackTraceMarker); - message << "some unimportant stack trace"; - - const TestPartResult result(TestPartResult::kNonFatalFailure, - "some_file.cc", - 42, - message.GetString().c_str()); - - EXPECT_EQ(TestPartResult::kNonFatalFailure, result.type()); - EXPECT_STREQ("some_file.cc", result.file_name()); - EXPECT_EQ(42, result.line_number()); - EXPECT_STREQ(message.GetString().c_str(), result.message()); - EXPECT_STREQ("something is terribly wrong", result.summary()); -} - -TEST_F(TestPartResultTest, ResultAccessorsWork) { - const TestPartResult success(TestPartResult::kSuccess, - "file.cc", - 42, - "message"); - EXPECT_TRUE(success.passed()); - EXPECT_FALSE(success.failed()); - EXPECT_FALSE(success.nonfatally_failed()); - EXPECT_FALSE(success.fatally_failed()); - - const TestPartResult nonfatal_failure(TestPartResult::kNonFatalFailure, - "file.cc", - 42, - "message"); - EXPECT_FALSE(nonfatal_failure.passed()); - EXPECT_TRUE(nonfatal_failure.failed()); - EXPECT_TRUE(nonfatal_failure.nonfatally_failed()); - EXPECT_FALSE(nonfatal_failure.fatally_failed()); - - const TestPartResult fatal_failure(TestPartResult::kFatalFailure, - "file.cc", - 42, - "message"); - EXPECT_FALSE(fatal_failure.passed()); - EXPECT_TRUE(fatal_failure.failed()); - EXPECT_FALSE(fatal_failure.nonfatally_failed()); - EXPECT_TRUE(fatal_failure.fatally_failed()); -} - -// Tests TestPartResult::type(). -TEST_F(TestPartResultTest, type) { - EXPECT_EQ(TestPartResult::kSuccess, r1_.type()); - EXPECT_EQ(TestPartResult::kNonFatalFailure, r2_.type()); - EXPECT_EQ(TestPartResult::kFatalFailure, r3_.type()); -} - -// Tests TestPartResult::file_name(). -TEST_F(TestPartResultTest, file_name) { - EXPECT_STREQ("foo/bar.cc", r1_.file_name()); - EXPECT_STREQ(NULL, r3_.file_name()); -} - -// Tests TestPartResult::line_number(). -TEST_F(TestPartResultTest, line_number) { - EXPECT_EQ(10, r1_.line_number()); - EXPECT_EQ(-1, r2_.line_number()); -} - -// Tests TestPartResult::message(). -TEST_F(TestPartResultTest, message) { - EXPECT_STREQ("Success!", r1_.message()); -} - -// Tests TestPartResult::passed(). -TEST_F(TestPartResultTest, Passed) { - EXPECT_TRUE(r1_.passed()); - EXPECT_FALSE(r2_.passed()); - EXPECT_FALSE(r3_.passed()); -} - -// Tests TestPartResult::failed(). -TEST_F(TestPartResultTest, Failed) { - EXPECT_FALSE(r1_.failed()); - EXPECT_TRUE(r2_.failed()); - EXPECT_TRUE(r3_.failed()); -} - -// Tests TestPartResult::fatally_failed(). -TEST_F(TestPartResultTest, FatallyFailed) { - EXPECT_FALSE(r1_.fatally_failed()); - EXPECT_FALSE(r2_.fatally_failed()); - EXPECT_TRUE(r3_.fatally_failed()); -} - -// Tests TestPartResult::nonfatally_failed(). -TEST_F(TestPartResultTest, NonfatallyFailed) { - EXPECT_FALSE(r1_.nonfatally_failed()); - EXPECT_TRUE(r2_.nonfatally_failed()); - EXPECT_FALSE(r3_.nonfatally_failed()); -} - -// Tests the TestPartResultArray class. - -class TestPartResultArrayTest : public Test { - protected: - TestPartResultArrayTest() - : r1_(TestPartResult::kNonFatalFailure, "foo/bar.cc", -1, "Failure 1"), - r2_(TestPartResult::kFatalFailure, "foo/bar.cc", -1, "Failure 2") {} - - const TestPartResult r1_, r2_; -}; - -// Tests that TestPartResultArray initially has size 0. -TEST_F(TestPartResultArrayTest, InitialSizeIsZero) { - TestPartResultArray results; - EXPECT_EQ(0, results.size()); -} - -// Tests that TestPartResultArray contains the given TestPartResult -// after one Append() operation. -TEST_F(TestPartResultArrayTest, ContainsGivenResultAfterAppend) { - TestPartResultArray results; - results.Append(r1_); - EXPECT_EQ(1, results.size()); - EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message()); -} - -// Tests that TestPartResultArray contains the given TestPartResults -// after two Append() operations. -TEST_F(TestPartResultArrayTest, ContainsGivenResultsAfterTwoAppends) { - TestPartResultArray results; - results.Append(r1_); - results.Append(r2_); - EXPECT_EQ(2, results.size()); - EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message()); - EXPECT_STREQ("Failure 2", results.GetTestPartResult(1).message()); -} - -typedef TestPartResultArrayTest TestPartResultArrayDeathTest; - -// Tests that the program dies when GetTestPartResult() is called with -// an invalid index. -TEST_F(TestPartResultArrayDeathTest, DiesWhenIndexIsOutOfBound) { - TestPartResultArray results; - results.Append(r1_); - - EXPECT_DEATH_IF_SUPPORTED(results.GetTestPartResult(-1), ""); - EXPECT_DEATH_IF_SUPPORTED(results.GetTestPartResult(1), ""); -} - -// TODO(mheule@google.com): Add a test for the class HasNewFatalFailureHelper. - -} // namespace diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-tuple_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-tuple_test.cc deleted file mode 100644 index 532f70b3d..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-tuple_test.cc +++ /dev/null @@ -1,320 +0,0 @@ -// Copyright 2007, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#include -#include -#include - -namespace { - -using ::std::tr1::get; -using ::std::tr1::make_tuple; -using ::std::tr1::tuple; -using ::std::tr1::tuple_element; -using ::std::tr1::tuple_size; -using ::testing::StaticAssertTypeEq; - -// Tests that tuple_element >::type returns TK. -TEST(tuple_element_Test, ReturnsElementType) { - StaticAssertTypeEq >::type>(); - StaticAssertTypeEq >::type>(); - StaticAssertTypeEq >::type>(); -} - -// Tests that tuple_size::value gives the number of fields in tuple -// type T. -TEST(tuple_size_Test, ReturnsNumberOfFields) { - EXPECT_EQ(0, +tuple_size >::value); - EXPECT_EQ(1, +tuple_size >::value); - EXPECT_EQ(1, +tuple_size >::value); - EXPECT_EQ(1, +(tuple_size > >::value)); - EXPECT_EQ(2, +(tuple_size >::value)); - EXPECT_EQ(3, +(tuple_size >::value)); -} - -// Tests comparing a tuple with itself. -TEST(ComparisonTest, ComparesWithSelf) { - const tuple a(5, 'a', false); - - EXPECT_TRUE(a == a); - EXPECT_FALSE(a != a); -} - -// Tests comparing two tuples with the same value. -TEST(ComparisonTest, ComparesEqualTuples) { - const tuple a(5, true), b(5, true); - - EXPECT_TRUE(a == b); - EXPECT_FALSE(a != b); -} - -// Tests comparing two different tuples that have no reference fields. -TEST(ComparisonTest, ComparesUnequalTuplesWithoutReferenceFields) { - typedef tuple FooTuple; - - const FooTuple a(0, 'x'); - const FooTuple b(1, 'a'); - - EXPECT_TRUE(a != b); - EXPECT_FALSE(a == b); - - const FooTuple c(1, 'b'); - - EXPECT_TRUE(b != c); - EXPECT_FALSE(b == c); -} - -// Tests comparing two different tuples that have reference fields. -TEST(ComparisonTest, ComparesUnequalTuplesWithReferenceFields) { - typedef tuple FooTuple; - - int i = 5; - const char ch = 'a'; - const FooTuple a(i, ch); - - int j = 6; - const FooTuple b(j, ch); - - EXPECT_TRUE(a != b); - EXPECT_FALSE(a == b); - - j = 5; - const char ch2 = 'b'; - const FooTuple c(j, ch2); - - EXPECT_TRUE(b != c); - EXPECT_FALSE(b == c); -} - -// Tests that a tuple field with a reference type is an alias of the -// variable it's supposed to reference. -TEST(ReferenceFieldTest, IsAliasOfReferencedVariable) { - int n = 0; - tuple t(true, n); - - n = 1; - EXPECT_EQ(n, get<1>(t)) - << "Changing a underlying variable should update the reference field."; - - // Makes sure that the implementation doesn't do anything funny with - // the & operator for the return type of get<>(). - EXPECT_EQ(&n, &(get<1>(t))) - << "The address of a reference field should equal the address of " - << "the underlying variable."; - - get<1>(t) = 2; - EXPECT_EQ(2, n) - << "Changing a reference field should update the underlying variable."; -} - -// Tests that tuple's default constructor default initializes each field. -// This test needs to compile without generating warnings. -TEST(TupleConstructorTest, DefaultConstructorDefaultInitializesEachField) { - // The TR1 report requires that tuple's default constructor default - // initializes each field, even if it's a primitive type. If the - // implementation forgets to do this, this test will catch it by - // generating warnings about using uninitialized variables (assuming - // a decent compiler). - - tuple<> empty; - - tuple a1, b1; - b1 = a1; - EXPECT_EQ(0, get<0>(b1)); - - tuple a2, b2; - b2 = a2; - EXPECT_EQ(0, get<0>(b2)); - EXPECT_EQ(0.0, get<1>(b2)); - - tuple a3, b3; - b3 = a3; - EXPECT_EQ(0.0, get<0>(b3)); - EXPECT_EQ('\0', get<1>(b3)); - EXPECT_TRUE(get<2>(b3) == NULL); - - tuple a10, b10; - b10 = a10; - EXPECT_EQ(0, get<0>(b10)); - EXPECT_EQ(0, get<1>(b10)); - EXPECT_EQ(0, get<2>(b10)); - EXPECT_EQ(0, get<3>(b10)); - EXPECT_EQ(0, get<4>(b10)); - EXPECT_EQ(0, get<5>(b10)); - EXPECT_EQ(0, get<6>(b10)); - EXPECT_EQ(0, get<7>(b10)); - EXPECT_EQ(0, get<8>(b10)); - EXPECT_EQ(0, get<9>(b10)); -} - -// Tests constructing a tuple from its fields. -TEST(TupleConstructorTest, ConstructsFromFields) { - int n = 1; - // Reference field. - tuple a(n); - EXPECT_EQ(&n, &(get<0>(a))); - - // Non-reference fields. - tuple b(5, 'a'); - EXPECT_EQ(5, get<0>(b)); - EXPECT_EQ('a', get<1>(b)); - - // Const reference field. - const int m = 2; - tuple c(true, m); - EXPECT_TRUE(get<0>(c)); - EXPECT_EQ(&m, &(get<1>(c))); -} - -// Tests tuple's copy constructor. -TEST(TupleConstructorTest, CopyConstructor) { - tuple a(0.0, true); - tuple b(a); - - EXPECT_DOUBLE_EQ(0.0, get<0>(b)); - EXPECT_TRUE(get<1>(b)); -} - -// Tests constructing a tuple from another tuple that has a compatible -// but different type. -TEST(TupleConstructorTest, ConstructsFromDifferentTupleType) { - tuple a(0, 1, 'a'); - tuple b(a); - - EXPECT_DOUBLE_EQ(0.0, get<0>(b)); - EXPECT_EQ(1, get<1>(b)); - EXPECT_EQ('a', get<2>(b)); -} - -// Tests constructing a 2-tuple from an std::pair. -TEST(TupleConstructorTest, ConstructsFromPair) { - ::std::pair a(1, 'a'); - tuple b(a); - tuple c(a); -} - -// Tests assigning a tuple to another tuple with the same type. -TEST(TupleAssignmentTest, AssignsToSameTupleType) { - const tuple a(5, 7L); - tuple b; - b = a; - EXPECT_EQ(5, get<0>(b)); - EXPECT_EQ(7L, get<1>(b)); -} - -// Tests assigning a tuple to another tuple with a different but -// compatible type. -TEST(TupleAssignmentTest, AssignsToDifferentTupleType) { - const tuple a(1, 7L, true); - tuple b; - b = a; - EXPECT_EQ(1L, get<0>(b)); - EXPECT_EQ(7, get<1>(b)); - EXPECT_TRUE(get<2>(b)); -} - -// Tests assigning an std::pair to a 2-tuple. -TEST(TupleAssignmentTest, AssignsFromPair) { - const ::std::pair a(5, true); - tuple b; - b = a; - EXPECT_EQ(5, get<0>(b)); - EXPECT_TRUE(get<1>(b)); - - tuple c; - c = a; - EXPECT_EQ(5L, get<0>(c)); - EXPECT_TRUE(get<1>(c)); -} - -// A fixture for testing big tuples. -class BigTupleTest : public testing::Test { - protected: - typedef tuple BigTuple; - - BigTupleTest() : - a_(1, 0, 0, 0, 0, 0, 0, 0, 0, 2), - b_(1, 0, 0, 0, 0, 0, 0, 0, 0, 3) {} - - BigTuple a_, b_; -}; - -// Tests constructing big tuples. -TEST_F(BigTupleTest, Construction) { - BigTuple a; - BigTuple b(b_); -} - -// Tests that get(t) returns the N-th (0-based) field of tuple t. -TEST_F(BigTupleTest, get) { - EXPECT_EQ(1, get<0>(a_)); - EXPECT_EQ(2, get<9>(a_)); - - // Tests that get() works on a const tuple too. - const BigTuple a(a_); - EXPECT_EQ(1, get<0>(a)); - EXPECT_EQ(2, get<9>(a)); -} - -// Tests comparing big tuples. -TEST_F(BigTupleTest, Comparisons) { - EXPECT_TRUE(a_ == a_); - EXPECT_FALSE(a_ != a_); - - EXPECT_TRUE(a_ != b_); - EXPECT_FALSE(a_ == b_); -} - -TEST(MakeTupleTest, WorksForScalarTypes) { - tuple a; - a = make_tuple(true, 5); - EXPECT_TRUE(get<0>(a)); - EXPECT_EQ(5, get<1>(a)); - - tuple b; - b = make_tuple('a', 'b', 5); - EXPECT_EQ('a', get<0>(b)); - EXPECT_EQ('b', get<1>(b)); - EXPECT_EQ(5, get<2>(b)); -} - -TEST(MakeTupleTest, WorksForPointers) { - int a[] = { 1, 2, 3, 4 }; - const char* const str = "hi"; - int* const p = a; - - tuple t; - t = make_tuple(str, p); - EXPECT_EQ(str, get<0>(t)); - EXPECT_EQ(p, get<1>(t)); -} - -} // namespace diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test2_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test2_test.cc deleted file mode 100644 index 79a8a87dc..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test2_test.cc +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#include - -#include "test/gtest-typed-test_test.h" -#include - -#if GTEST_HAS_TYPED_TEST_P - -// Tests that the same type-parameterized test case can be -// instantiated in different translation units linked together. -// (ContainerTest is also instantiated in gtest-typed-test_test.cc.) -INSTANTIATE_TYPED_TEST_CASE_P(Vector, ContainerTest, - testing::Types >); - -#endif // GTEST_HAS_TYPED_TEST_P diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test_test.cc deleted file mode 100644 index f2c397231..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test_test.cc +++ /dev/null @@ -1,360 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#include -#include - -#include "test/gtest-typed-test_test.h" -#include - -using testing::Test; - -// Used for testing that SetUpTestCase()/TearDownTestCase(), fixture -// ctor/dtor, and SetUp()/TearDown() work correctly in typed tests and -// type-parameterized test. -template -class CommonTest : public Test { - // For some technical reason, SetUpTestCase() and TearDownTestCase() - // must be public. - public: - static void SetUpTestCase() { - shared_ = new T(5); - } - - static void TearDownTestCase() { - delete shared_; - shared_ = NULL; - } - - // This 'protected:' is optional. There's no harm in making all - // members of this fixture class template public. - protected: - // We used to use std::list here, but switched to std::vector since - // MSVC's doesn't compile cleanly with /W4. - typedef std::vector Vector; - typedef std::set IntSet; - - CommonTest() : value_(1) {} - - virtual ~CommonTest() { EXPECT_EQ(3, value_); } - - virtual void SetUp() { - EXPECT_EQ(1, value_); - value_++; - } - - virtual void TearDown() { - EXPECT_EQ(2, value_); - value_++; - } - - T value_; - static T* shared_; -}; - -template -T* CommonTest::shared_ = NULL; - -// This #ifdef block tests typed tests. -#if GTEST_HAS_TYPED_TEST - -using testing::Types; - -// Tests that SetUpTestCase()/TearDownTestCase(), fixture ctor/dtor, -// and SetUp()/TearDown() work correctly in typed tests - -typedef Types TwoTypes; -TYPED_TEST_CASE(CommonTest, TwoTypes); - -TYPED_TEST(CommonTest, ValuesAreCorrect) { - // Static members of the fixture class template can be visited via - // the TestFixture:: prefix. - EXPECT_EQ(5, *TestFixture::shared_); - - // Typedefs in the fixture class template can be visited via the - // "typename TestFixture::" prefix. - typename TestFixture::Vector empty; - EXPECT_EQ(0U, empty.size()); - - typename TestFixture::IntSet empty2; - EXPECT_EQ(0U, empty2.size()); - - // Non-static members of the fixture class must be visited via - // 'this', as required by C++ for class templates. - EXPECT_EQ(2, this->value_); -} - -// The second test makes sure shared_ is not deleted after the first -// test. -TYPED_TEST(CommonTest, ValuesAreStillCorrect) { - // Static members of the fixture class template can also be visited - // via 'this'. - ASSERT_TRUE(this->shared_ != NULL); - EXPECT_EQ(5, *this->shared_); - - // TypeParam can be used to refer to the type parameter. - EXPECT_EQ(static_cast(2), this->value_); -} - -// Tests that multiple TYPED_TEST_CASE's can be defined in the same -// translation unit. - -template -class TypedTest1 : public Test { -}; - -// Verifies that the second argument of TYPED_TEST_CASE can be a -// single type. -TYPED_TEST_CASE(TypedTest1, int); -TYPED_TEST(TypedTest1, A) {} - -template -class TypedTest2 : public Test { -}; - -// Verifies that the second argument of TYPED_TEST_CASE can be a -// Types<...> type list. -TYPED_TEST_CASE(TypedTest2, Types); - -// This also verifies that tests from different typed test cases can -// share the same name. -TYPED_TEST(TypedTest2, A) {} - -// Tests that a typed test case can be defined in a namespace. - -namespace library1 { - -template -class NumericTest : public Test { -}; - -typedef Types NumericTypes; -TYPED_TEST_CASE(NumericTest, NumericTypes); - -TYPED_TEST(NumericTest, DefaultIsZero) { - EXPECT_EQ(0, TypeParam()); -} - -} // namespace library1 - -#endif // GTEST_HAS_TYPED_TEST - -// This #ifdef block tests type-parameterized tests. -#if GTEST_HAS_TYPED_TEST_P - -using testing::Types; -using testing::internal::TypedTestCasePState; - -// Tests TypedTestCasePState. - -class TypedTestCasePStateTest : public Test { - protected: - virtual void SetUp() { - state_.AddTestName("foo.cc", 0, "FooTest", "A"); - state_.AddTestName("foo.cc", 0, "FooTest", "B"); - state_.AddTestName("foo.cc", 0, "FooTest", "C"); - } - - TypedTestCasePState state_; -}; - -TEST_F(TypedTestCasePStateTest, SucceedsForMatchingList) { - const char* tests = "A, B, C"; - EXPECT_EQ(tests, - state_.VerifyRegisteredTestNames("foo.cc", 1, tests)); -} - -// Makes sure that the order of the tests and spaces around the names -// don't matter. -TEST_F(TypedTestCasePStateTest, IgnoresOrderAndSpaces) { - const char* tests = "A,C, B"; - EXPECT_EQ(tests, - state_.VerifyRegisteredTestNames("foo.cc", 1, tests)); -} - -typedef TypedTestCasePStateTest TypedTestCasePStateDeathTest; - -TEST_F(TypedTestCasePStateDeathTest, DetectsDuplicates) { - EXPECT_DEATH_IF_SUPPORTED( - state_.VerifyRegisteredTestNames("foo.cc", 1, "A, B, A, C"), - "foo\\.cc.1.?: Test A is listed more than once\\."); -} - -TEST_F(TypedTestCasePStateDeathTest, DetectsExtraTest) { - EXPECT_DEATH_IF_SUPPORTED( - state_.VerifyRegisteredTestNames("foo.cc", 1, "A, B, C, D"), - "foo\\.cc.1.?: No test named D can be found in this test case\\."); -} - -TEST_F(TypedTestCasePStateDeathTest, DetectsMissedTest) { - EXPECT_DEATH_IF_SUPPORTED( - state_.VerifyRegisteredTestNames("foo.cc", 1, "A, C"), - "foo\\.cc.1.?: You forgot to list test B\\."); -} - -// Tests that defining a test for a parameterized test case generates -// a run-time error if the test case has been registered. -TEST_F(TypedTestCasePStateDeathTest, DetectsTestAfterRegistration) { - state_.VerifyRegisteredTestNames("foo.cc", 1, "A, B, C"); - EXPECT_DEATH_IF_SUPPORTED( - state_.AddTestName("foo.cc", 2, "FooTest", "D"), - "foo\\.cc.2.?: Test D must be defined before REGISTER_TYPED_TEST_CASE_P" - "\\(FooTest, \\.\\.\\.\\)\\."); -} - -// Tests that SetUpTestCase()/TearDownTestCase(), fixture ctor/dtor, -// and SetUp()/TearDown() work correctly in type-parameterized tests. - -template -class DerivedTest : public CommonTest { -}; - -TYPED_TEST_CASE_P(DerivedTest); - -TYPED_TEST_P(DerivedTest, ValuesAreCorrect) { - // Static members of the fixture class template can be visited via - // the TestFixture:: prefix. - EXPECT_EQ(5, *TestFixture::shared_); - - // Non-static members of the fixture class must be visited via - // 'this', as required by C++ for class templates. - EXPECT_EQ(2, this->value_); -} - -// The second test makes sure shared_ is not deleted after the first -// test. -TYPED_TEST_P(DerivedTest, ValuesAreStillCorrect) { - // Static members of the fixture class template can also be visited - // via 'this'. - ASSERT_TRUE(this->shared_ != NULL); - EXPECT_EQ(5, *this->shared_); - EXPECT_EQ(2, this->value_); -} - -REGISTER_TYPED_TEST_CASE_P(DerivedTest, - ValuesAreCorrect, ValuesAreStillCorrect); - -typedef Types MyTwoTypes; -INSTANTIATE_TYPED_TEST_CASE_P(My, DerivedTest, MyTwoTypes); - -// Tests that multiple TYPED_TEST_CASE_P's can be defined in the same -// translation unit. - -template -class TypedTestP1 : public Test { -}; - -TYPED_TEST_CASE_P(TypedTestP1); - -// For testing that the code between TYPED_TEST_CASE_P() and -// TYPED_TEST_P() is not enclosed in a namespace. -typedef int IntAfterTypedTestCaseP; - -TYPED_TEST_P(TypedTestP1, A) {} -TYPED_TEST_P(TypedTestP1, B) {} - -// For testing that the code between TYPED_TEST_P() and -// REGISTER_TYPED_TEST_CASE_P() is not enclosed in a namespace. -typedef int IntBeforeRegisterTypedTestCaseP; - -REGISTER_TYPED_TEST_CASE_P(TypedTestP1, A, B); - -template -class TypedTestP2 : public Test { -}; - -TYPED_TEST_CASE_P(TypedTestP2); - -// This also verifies that tests from different type-parameterized -// test cases can share the same name. -TYPED_TEST_P(TypedTestP2, A) {} - -REGISTER_TYPED_TEST_CASE_P(TypedTestP2, A); - -// Verifies that the code between TYPED_TEST_CASE_P() and -// REGISTER_TYPED_TEST_CASE_P() is not enclosed in a namespace. -IntAfterTypedTestCaseP after = 0; -IntBeforeRegisterTypedTestCaseP before = 0; - -// Verifies that the last argument of INSTANTIATE_TYPED_TEST_CASE_P() -// can be either a single type or a Types<...> type list. -INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP1, int); -INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP2, Types); - -// Tests that the same type-parameterized test case can be -// instantiated more than once in the same translation unit. -INSTANTIATE_TYPED_TEST_CASE_P(Double, TypedTestP2, Types); - -// Tests that the same type-parameterized test case can be -// instantiated in different translation units linked together. -// (ContainerTest is also instantiated in gtest-typed-test_test.cc.) -typedef Types, std::set > MyContainers; -INSTANTIATE_TYPED_TEST_CASE_P(My, ContainerTest, MyContainers); - -// Tests that a type-parameterized test case can be defined and -// instantiated in a namespace. - -namespace library2 { - -template -class NumericTest : public Test { -}; - -TYPED_TEST_CASE_P(NumericTest); - -TYPED_TEST_P(NumericTest, DefaultIsZero) { - EXPECT_EQ(0, TypeParam()); -} - -TYPED_TEST_P(NumericTest, ZeroIsLessThanOne) { - EXPECT_LT(TypeParam(0), TypeParam(1)); -} - -REGISTER_TYPED_TEST_CASE_P(NumericTest, - DefaultIsZero, ZeroIsLessThanOne); -typedef Types NumericTypes; -INSTANTIATE_TYPED_TEST_CASE_P(My, NumericTest, NumericTypes); - -} // namespace library2 - -#endif // GTEST_HAS_TYPED_TEST_P - -#if !defined(GTEST_HAS_TYPED_TEST) && !defined(GTEST_HAS_TYPED_TEST_P) - -// Google Test may not support type-parameterized tests with some -// compilers. If we use conditional compilation to compile out all -// code referring to the gtest_main library, MSVC linker will not link -// that library at all and consequently complain about missing entry -// point defined in that library (fatal error LNK1561: entry point -// must be defined). This dummy test keeps gtest_main linked in. -TEST(DummyTest, TypedTestsAreNotSupportedOnThisPlatform) {} - -#endif // #if !defined(GTEST_HAS_TYPED_TEST) && !defined(GTEST_HAS_TYPED_TEST_P) diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test_test.h b/cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test_test.h deleted file mode 100644 index 40dfeac6e..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-typed-test_test.h +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright 2008 Google Inc. -// All Rights Reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#ifndef GTEST_TEST_GTEST_TYPED_TEST_TEST_H_ -#define GTEST_TEST_GTEST_TYPED_TEST_TEST_H_ - -#include - -#if GTEST_HAS_TYPED_TEST_P - -using testing::Test; - -// For testing that the same type-parameterized test case can be -// instantiated in different translation units linked together. -// ContainerTest will be instantiated in both gtest-typed-test_test.cc -// and gtest-typed-test2_test.cc. - -template -class ContainerTest : public Test { -}; - -TYPED_TEST_CASE_P(ContainerTest); - -TYPED_TEST_P(ContainerTest, CanBeDefaultConstructed) { - TypeParam container; -} - -TYPED_TEST_P(ContainerTest, InitialSizeIsZero) { - TypeParam container; - EXPECT_EQ(0U, container.size()); -} - -REGISTER_TYPED_TEST_CASE_P(ContainerTest, - CanBeDefaultConstructed, InitialSizeIsZero); - -#endif // GTEST_HAS_TYPED_TEST_P - -#endif // GTEST_TEST_GTEST_TYPED_TEST_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest-unittest-api_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest-unittest-api_test.cc deleted file mode 100644 index 7e0f8f804..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest-unittest-api_test.cc +++ /dev/null @@ -1,343 +0,0 @@ -// Copyright 2009 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: vladl@google.com (Vlad Losev) -// -// The Google C++ Testing Framework (Google Test) -// -// This file contains tests verifying correctness of data provided via -// UnitTest's public methods. - -#include - -#include // For strcmp. -#include - -using ::testing::InitGoogleTest; - -namespace testing { -namespace internal { - -template -struct LessByName { - bool operator()(const T* a, const T* b) { - return strcmp(a->name(), b->name()) < 0; - } -}; - -class UnitTestHelper { - public: - // Returns the array of pointers to all test cases sorted by the test case - // name. The caller is responsible for deleting the array. - static TestCase const** const GetSortedTestCases() { - UnitTest& unit_test = *UnitTest::GetInstance(); - TestCase const** const test_cases = - new const TestCase*[unit_test.total_test_case_count()]; - - for (int i = 0; i < unit_test.total_test_case_count(); ++i) - test_cases[i] = unit_test.GetTestCase(i); - - std::sort(test_cases, - test_cases + unit_test.total_test_case_count(), - LessByName()); - return test_cases; - } - - // Returns the test case by its name. The caller doesn't own the returned - // pointer. - static const TestCase* FindTestCase(const char* name) { - UnitTest& unit_test = *UnitTest::GetInstance(); - for (int i = 0; i < unit_test.total_test_case_count(); ++i) { - const TestCase* test_case = unit_test.GetTestCase(i); - if (0 == strcmp(test_case->name(), name)) - return test_case; - } - return NULL; - } - - // Returns the array of pointers to all tests in a particular test case - // sorted by the test name. The caller is responsible for deleting the - // array. - static TestInfo const** const GetSortedTests(const TestCase* test_case) { - TestInfo const** const tests = - new const TestInfo*[test_case->total_test_count()]; - - for (int i = 0; i < test_case->total_test_count(); ++i) - tests[i] = test_case->GetTestInfo(i); - - std::sort(tests, tests + test_case->total_test_count(), - LessByName()); - return tests; - } -}; - -#if GTEST_HAS_TYPED_TEST -template class TestCaseWithCommentTest : public Test {}; -TYPED_TEST_CASE(TestCaseWithCommentTest, Types); -TYPED_TEST(TestCaseWithCommentTest, Dummy) {} - -const int kTypedTestCases = 1; -const int kTypedTests = 1; - -String GetExpectedTestCaseComment() { - Message comment; - comment << "TypeParam = " << GetTypeName().c_str(); - return comment.GetString(); -} -#else -const int kTypedTestCases = 0; -const int kTypedTests = 0; -#endif // GTEST_HAS_TYPED_TEST - -// We can only test the accessors that do not change value while tests run. -// Since tests can be run in any order, the values the accessors that track -// test execution (such as failed_test_count) can not be predicted. -TEST(ApiTest, UnitTestImmutableAccessorsWork) { - UnitTest* unit_test = UnitTest::GetInstance(); - - ASSERT_EQ(2 + kTypedTestCases, unit_test->total_test_case_count()); - EXPECT_EQ(1 + kTypedTestCases, unit_test->test_case_to_run_count()); - EXPECT_EQ(2, unit_test->disabled_test_count()); - EXPECT_EQ(5 + kTypedTests, unit_test->total_test_count()); - EXPECT_EQ(3 + kTypedTests, unit_test->test_to_run_count()); - - const TestCase** const test_cases = UnitTestHelper::GetSortedTestCases(); - - EXPECT_STREQ("ApiTest", test_cases[0]->name()); - EXPECT_STREQ("DISABLED_Test", test_cases[1]->name()); -#if GTEST_HAS_TYPED_TEST - EXPECT_STREQ("TestCaseWithCommentTest/0", test_cases[2]->name()); -#endif // GTEST_HAS_TYPED_TEST - - delete[] test_cases; - - // The following lines initiate actions to verify certain methods in - // FinalSuccessChecker::TearDown. - - // Records a test property to verify TestResult::GetTestProperty(). - RecordProperty("key", "value"); -} - -TEST(ApiTest, TestCaseImmutableAccessorsWork) { - const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); - ASSERT_TRUE(test_case != NULL); - - EXPECT_STREQ("ApiTest", test_case->name()); - EXPECT_STREQ("", test_case->comment()); - EXPECT_TRUE(test_case->should_run()); - EXPECT_EQ(1, test_case->disabled_test_count()); - EXPECT_EQ(3, test_case->test_to_run_count()); - ASSERT_EQ(4, test_case->total_test_count()); - - const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); - - EXPECT_STREQ("DISABLED_Dummy1", tests[0]->name()); - EXPECT_STREQ("ApiTest", tests[0]->test_case_name()); - EXPECT_STREQ("", tests[0]->comment()); - EXPECT_STREQ("", tests[0]->test_case_comment()); - EXPECT_FALSE(tests[0]->should_run()); - - EXPECT_STREQ("TestCaseDisabledAccessorsWork", tests[1]->name()); - EXPECT_STREQ("ApiTest", tests[1]->test_case_name()); - EXPECT_STREQ("", tests[1]->comment()); - EXPECT_STREQ("", tests[1]->test_case_comment()); - EXPECT_TRUE(tests[1]->should_run()); - - EXPECT_STREQ("TestCaseImmutableAccessorsWork", tests[2]->name()); - EXPECT_STREQ("ApiTest", tests[2]->test_case_name()); - EXPECT_STREQ("", tests[2]->comment()); - EXPECT_STREQ("", tests[2]->test_case_comment()); - EXPECT_TRUE(tests[2]->should_run()); - - EXPECT_STREQ("UnitTestImmutableAccessorsWork", tests[3]->name()); - EXPECT_STREQ("ApiTest", tests[3]->test_case_name()); - EXPECT_STREQ("", tests[3]->comment()); - EXPECT_STREQ("", tests[3]->test_case_comment()); - EXPECT_TRUE(tests[3]->should_run()); - - delete[] tests; - tests = NULL; - -#if GTEST_HAS_TYPED_TEST - test_case = UnitTestHelper::FindTestCase("TestCaseWithCommentTest/0"); - ASSERT_TRUE(test_case != NULL); - - EXPECT_STREQ("TestCaseWithCommentTest/0", test_case->name()); - EXPECT_STREQ(GetExpectedTestCaseComment().c_str(), test_case->comment()); - EXPECT_TRUE(test_case->should_run()); - EXPECT_EQ(0, test_case->disabled_test_count()); - EXPECT_EQ(1, test_case->test_to_run_count()); - ASSERT_EQ(1, test_case->total_test_count()); - - tests = UnitTestHelper::GetSortedTests(test_case); - - EXPECT_STREQ("Dummy", tests[0]->name()); - EXPECT_STREQ("TestCaseWithCommentTest/0", tests[0]->test_case_name()); - EXPECT_STREQ("", tests[0]->comment()); - EXPECT_STREQ(GetExpectedTestCaseComment().c_str(), - tests[0]->test_case_comment()); - EXPECT_TRUE(tests[0]->should_run()); - - delete[] tests; -#endif // GTEST_HAS_TYPED_TEST -} - -TEST(ApiTest, TestCaseDisabledAccessorsWork) { - const TestCase* test_case = UnitTestHelper::FindTestCase("DISABLED_Test"); - ASSERT_TRUE(test_case != NULL); - - EXPECT_STREQ("DISABLED_Test", test_case->name()); - EXPECT_STREQ("", test_case->comment()); - EXPECT_FALSE(test_case->should_run()); - EXPECT_EQ(1, test_case->disabled_test_count()); - EXPECT_EQ(0, test_case->test_to_run_count()); - ASSERT_EQ(1, test_case->total_test_count()); - - const TestInfo* const test_info = test_case->GetTestInfo(0); - EXPECT_STREQ("Dummy2", test_info->name()); - EXPECT_STREQ("DISABLED_Test", test_info->test_case_name()); - EXPECT_STREQ("", test_info->comment()); - EXPECT_STREQ("", test_info->test_case_comment()); - EXPECT_FALSE(test_info->should_run()); -} - -// These two tests are here to provide support for testing -// test_case_to_run_count, disabled_test_count, and test_to_run_count. -TEST(ApiTest, DISABLED_Dummy1) {} -TEST(DISABLED_Test, Dummy2) {} - -class FinalSuccessChecker : public Environment { - protected: - virtual void TearDown() { - UnitTest* unit_test = UnitTest::GetInstance(); - - EXPECT_EQ(1 + kTypedTestCases, unit_test->successful_test_case_count()); - EXPECT_EQ(3 + kTypedTests, unit_test->successful_test_count()); - EXPECT_EQ(0, unit_test->failed_test_case_count()); - EXPECT_EQ(0, unit_test->failed_test_count()); - EXPECT_TRUE(unit_test->Passed()); - EXPECT_FALSE(unit_test->Failed()); - ASSERT_EQ(2 + kTypedTestCases, unit_test->total_test_case_count()); - - const TestCase** const test_cases = UnitTestHelper::GetSortedTestCases(); - - EXPECT_STREQ("ApiTest", test_cases[0]->name()); - EXPECT_STREQ("", test_cases[0]->comment()); - EXPECT_TRUE(test_cases[0]->should_run()); - EXPECT_EQ(1, test_cases[0]->disabled_test_count()); - ASSERT_EQ(4, test_cases[0]->total_test_count()); - EXPECT_EQ(3, test_cases[0]->successful_test_count()); - EXPECT_EQ(0, test_cases[0]->failed_test_count()); - EXPECT_TRUE(test_cases[0]->Passed()); - EXPECT_FALSE(test_cases[0]->Failed()); - - EXPECT_STREQ("DISABLED_Test", test_cases[1]->name()); - EXPECT_STREQ("", test_cases[1]->comment()); - EXPECT_FALSE(test_cases[1]->should_run()); - EXPECT_EQ(1, test_cases[1]->disabled_test_count()); - ASSERT_EQ(1, test_cases[1]->total_test_count()); - EXPECT_EQ(0, test_cases[1]->successful_test_count()); - EXPECT_EQ(0, test_cases[1]->failed_test_count()); - -#if GTEST_HAS_TYPED_TEST - EXPECT_STREQ("TestCaseWithCommentTest/0", test_cases[2]->name()); - EXPECT_STREQ(GetExpectedTestCaseComment().c_str(), - test_cases[2]->comment()); - EXPECT_TRUE(test_cases[2]->should_run()); - EXPECT_EQ(0, test_cases[2]->disabled_test_count()); - ASSERT_EQ(1, test_cases[2]->total_test_count()); - EXPECT_EQ(1, test_cases[2]->successful_test_count()); - EXPECT_EQ(0, test_cases[2]->failed_test_count()); - EXPECT_TRUE(test_cases[2]->Passed()); - EXPECT_FALSE(test_cases[2]->Failed()); -#endif // GTEST_HAS_TYPED_TEST - - const TestCase* test_case = UnitTestHelper::FindTestCase("ApiTest"); - const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); - EXPECT_STREQ("DISABLED_Dummy1", tests[0]->name()); - EXPECT_STREQ("ApiTest", tests[0]->test_case_name()); - EXPECT_FALSE(tests[0]->should_run()); - - EXPECT_STREQ("TestCaseDisabledAccessorsWork", tests[1]->name()); - EXPECT_STREQ("ApiTest", tests[1]->test_case_name()); - EXPECT_STREQ("", tests[1]->comment()); - EXPECT_STREQ("", tests[1]->test_case_comment()); - EXPECT_TRUE(tests[1]->should_run()); - EXPECT_TRUE(tests[1]->result()->Passed()); - EXPECT_EQ(0, tests[1]->result()->test_property_count()); - - EXPECT_STREQ("TestCaseImmutableAccessorsWork", tests[2]->name()); - EXPECT_STREQ("ApiTest", tests[2]->test_case_name()); - EXPECT_STREQ("", tests[2]->comment()); - EXPECT_STREQ("", tests[2]->test_case_comment()); - EXPECT_TRUE(tests[2]->should_run()); - EXPECT_TRUE(tests[2]->result()->Passed()); - EXPECT_EQ(0, tests[2]->result()->test_property_count()); - - EXPECT_STREQ("UnitTestImmutableAccessorsWork", tests[3]->name()); - EXPECT_STREQ("ApiTest", tests[3]->test_case_name()); - EXPECT_STREQ("", tests[3]->comment()); - EXPECT_STREQ("", tests[3]->test_case_comment()); - EXPECT_TRUE(tests[3]->should_run()); - EXPECT_TRUE(tests[3]->result()->Passed()); - EXPECT_EQ(1, tests[3]->result()->test_property_count()); - const TestProperty& property = tests[3]->result()->GetTestProperty(0); - EXPECT_STREQ("key", property.key()); - EXPECT_STREQ("value", property.value()); - - delete[] tests; - -#if GTEST_HAS_TYPED_TEST - test_case = UnitTestHelper::FindTestCase("TestCaseWithCommentTest/0"); - tests = UnitTestHelper::GetSortedTests(test_case); - - EXPECT_STREQ("Dummy", tests[0]->name()); - EXPECT_STREQ("TestCaseWithCommentTest/0", tests[0]->test_case_name()); - EXPECT_STREQ("", tests[0]->comment()); - EXPECT_STREQ(GetExpectedTestCaseComment().c_str(), - tests[0]->test_case_comment()); - EXPECT_TRUE(tests[0]->should_run()); - EXPECT_TRUE(tests[0]->result()->Passed()); - EXPECT_EQ(0, tests[0]->result()->test_property_count()); - - delete[] tests; -#endif // GTEST_HAS_TYPED_TEST - delete[] test_cases; - } -}; - -} // namespace internal -} // namespace testing - -int main(int argc, char **argv) { - InitGoogleTest(&argc, argv); - - AddGlobalTestEnvironment(new testing::internal::FinalSuccessChecker()); - - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_all_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_all_test.cc deleted file mode 100644 index e1edb08e3..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_all_test.cc +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright 2009, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// Tests for Google C++ Testing Framework (Google Test) -// -// Sometimes it's desirable to build most of Google Test's own tests -// by compiling a single file. This file serves this purpose. -#include "test/gtest-filepath_test.cc" -#include "test/gtest-linked_ptr_test.cc" -#include "test/gtest-message_test.cc" -#include "test/gtest-options_test.cc" -#include "test/gtest-port_test.cc" -#include "test/gtest_pred_impl_unittest.cc" -#include "test/gtest_prod_test.cc" -#include "test/gtest-test-part_test.cc" -#include "test/gtest-typed-test_test.cc" -#include "test/gtest-typed-test2_test.cc" -#include "test/gtest_unittest.cc" -#include "test/production.cc" -#include "src/gtest_main.cc" diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_break_on_failure_unittest.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_break_on_failure_unittest.py deleted file mode 100755 index c81918331..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_break_on_failure_unittest.py +++ /dev/null @@ -1,218 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2006, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Unit test for Google Test's break-on-failure mode. - -A user can ask Google Test to seg-fault when an assertion fails, using -either the GTEST_BREAK_ON_FAILURE environment variable or the ---gtest_break_on_failure flag. This script tests such functionality -by invoking gtest_break_on_failure_unittest_ (a program written with -Google Test) with different environments and command line flags. -""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import gtest_test_utils -import os -import sys - - -# Constants. - -IS_WINDOWS = os.name == 'nt' - -# The environment variable for enabling/disabling the break-on-failure mode. -BREAK_ON_FAILURE_ENV_VAR = 'GTEST_BREAK_ON_FAILURE' - -# The command line flag for enabling/disabling the break-on-failure mode. -BREAK_ON_FAILURE_FLAG = 'gtest_break_on_failure' - -# The environment variable for enabling/disabling the throw-on-failure mode. -THROW_ON_FAILURE_ENV_VAR = 'GTEST_THROW_ON_FAILURE' - -# The environment variable for enabling/disabling the catch-exceptions mode. -CATCH_EXCEPTIONS_ENV_VAR = 'GTEST_CATCH_EXCEPTIONS' - -# Path to the gtest_break_on_failure_unittest_ program. -EXE_PATH = gtest_test_utils.GetTestExecutablePath( - 'gtest_break_on_failure_unittest_') - - -# Utilities. - - -environ = os.environ.copy() - - -def SetEnvVar(env_var, value): - """Sets an environment variable to a given value; unsets it when the - given value is None. - """ - - if value is not None: - environ[env_var] = value - elif env_var in environ: - del environ[env_var] - - -def Run(command): - """Runs a command; returns 1 if it was killed by a signal, or 0 otherwise.""" - - p = gtest_test_utils.Subprocess(command, env=environ) - if p.terminated_by_signal: - return 1 - else: - return 0 - - -# The tests. - - -class GTestBreakOnFailureUnitTest(gtest_test_utils.TestCase): - """Tests using the GTEST_BREAK_ON_FAILURE environment variable or - the --gtest_break_on_failure flag to turn assertion failures into - segmentation faults. - """ - - def RunAndVerify(self, env_var_value, flag_value, expect_seg_fault): - """Runs gtest_break_on_failure_unittest_ and verifies that it does - (or does not) have a seg-fault. - - Args: - env_var_value: value of the GTEST_BREAK_ON_FAILURE environment - variable; None if the variable should be unset. - flag_value: value of the --gtest_break_on_failure flag; - None if the flag should not be present. - expect_seg_fault: 1 if the program is expected to generate a seg-fault; - 0 otherwise. - """ - - SetEnvVar(BREAK_ON_FAILURE_ENV_VAR, env_var_value) - - if env_var_value is None: - env_var_value_msg = ' is not set' - else: - env_var_value_msg = '=' + env_var_value - - if flag_value is None: - flag = '' - elif flag_value == '0': - flag = '--%s=0' % BREAK_ON_FAILURE_FLAG - else: - flag = '--%s' % BREAK_ON_FAILURE_FLAG - - command = [EXE_PATH] - if flag: - command.append(flag) - - if expect_seg_fault: - should_or_not = 'should' - else: - should_or_not = 'should not' - - has_seg_fault = Run(command) - - SetEnvVar(BREAK_ON_FAILURE_ENV_VAR, None) - - msg = ('when %s%s, an assertion failure in "%s" %s cause a seg-fault.' % - (BREAK_ON_FAILURE_ENV_VAR, env_var_value_msg, ' '.join(command), - should_or_not)) - self.assert_(has_seg_fault == expect_seg_fault, msg) - - def testDefaultBehavior(self): - """Tests the behavior of the default mode.""" - - self.RunAndVerify(env_var_value=None, - flag_value=None, - expect_seg_fault=0) - - def testEnvVar(self): - """Tests using the GTEST_BREAK_ON_FAILURE environment variable.""" - - self.RunAndVerify(env_var_value='0', - flag_value=None, - expect_seg_fault=0) - self.RunAndVerify(env_var_value='1', - flag_value=None, - expect_seg_fault=1) - - def testFlag(self): - """Tests using the --gtest_break_on_failure flag.""" - - self.RunAndVerify(env_var_value=None, - flag_value='0', - expect_seg_fault=0) - self.RunAndVerify(env_var_value=None, - flag_value='1', - expect_seg_fault=1) - - def testFlagOverridesEnvVar(self): - """Tests that the flag overrides the environment variable.""" - - self.RunAndVerify(env_var_value='0', - flag_value='0', - expect_seg_fault=0) - self.RunAndVerify(env_var_value='0', - flag_value='1', - expect_seg_fault=1) - self.RunAndVerify(env_var_value='1', - flag_value='0', - expect_seg_fault=0) - self.RunAndVerify(env_var_value='1', - flag_value='1', - expect_seg_fault=1) - - def testBreakOnFailureOverridesThrowOnFailure(self): - """Tests that gtest_break_on_failure overrides gtest_throw_on_failure.""" - - SetEnvVar(THROW_ON_FAILURE_ENV_VAR, '1') - try: - self.RunAndVerify(env_var_value=None, - flag_value='1', - expect_seg_fault=1) - finally: - SetEnvVar(THROW_ON_FAILURE_ENV_VAR, None) - - if IS_WINDOWS: - def testCatchExceptionsDoesNotInterfere(self): - """Tests that gtest_catch_exceptions doesn't interfere.""" - - SetEnvVar(CATCH_EXCEPTIONS_ENV_VAR, '1') - try: - self.RunAndVerify(env_var_value='1', - flag_value='1', - expect_seg_fault=1) - finally: - SetEnvVar(CATCH_EXCEPTIONS_ENV_VAR, None) - - -if __name__ == '__main__': - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_break_on_failure_unittest_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_break_on_failure_unittest_.cc deleted file mode 100644 index d28d1d3da..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_break_on_failure_unittest_.cc +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Unit test for Google Test's break-on-failure mode. -// -// A user can ask Google Test to seg-fault when an assertion fails, using -// either the GTEST_BREAK_ON_FAILURE environment variable or the -// --gtest_break_on_failure flag. This file is used for testing such -// functionality. -// -// This program will be invoked from a Python unit test. It is -// expected to fail. Don't run it directly. - -#include - -#if GTEST_OS_WINDOWS -#include -#include -#endif - -namespace { - -// A test that's expected to fail. -TEST(Foo, Bar) { - EXPECT_EQ(2, 3); -} - -#if GTEST_HAS_SEH && !GTEST_OS_WINDOWS_MOBILE -// On Windows Mobile global exception handlers are not supported. -LONG WINAPI ExitWithExceptionCode( - struct _EXCEPTION_POINTERS* exception_pointers) { - exit(exception_pointers->ExceptionRecord->ExceptionCode); -} -#endif - -} // namespace - -int main(int argc, char **argv) { -#if GTEST_OS_WINDOWS - // Suppresses display of the Windows error dialog upon encountering - // a general protection fault (segment violation). - SetErrorMode(SEM_NOGPFAULTERRORBOX | SEM_FAILCRITICALERRORS); - -#if !GTEST_OS_WINDOWS_MOBILE - // The default unhandled exception filter does not always exit - // with the exception code as exit code - for example it exits with - // 0 for EXCEPTION_ACCESS_VIOLATION and 1 for EXCEPTION_BREAKPOINT - // if the application is compiled in debug mode. Thus we use our own - // filter which always exits with the exception code for unhandled - // exceptions. - SetUnhandledExceptionFilter(ExitWithExceptionCode); -#endif -#endif - - testing::InitGoogleTest(&argc, argv); - - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_color_test.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_color_test.py deleted file mode 100755 index d02a53ed8..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_color_test.py +++ /dev/null @@ -1,130 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2008, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Verifies that Google Test correctly determines whether to use colors.""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import os -import gtest_test_utils - - -IS_WINDOWS = os.name = 'nt' - -COLOR_ENV_VAR = 'GTEST_COLOR' -COLOR_FLAG = 'gtest_color' -COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_color_test_') - - -def SetEnvVar(env_var, value): - """Sets the env variable to 'value'; unsets it when 'value' is None.""" - - if value is not None: - os.environ[env_var] = value - elif env_var in os.environ: - del os.environ[env_var] - - -def UsesColor(term, color_env_var, color_flag): - """Runs gtest_color_test_ and returns its exit code.""" - - SetEnvVar('TERM', term) - SetEnvVar(COLOR_ENV_VAR, color_env_var) - - if color_flag is None: - args = [] - else: - args = ['--%s=%s' % (COLOR_FLAG, color_flag)] - p = gtest_test_utils.Subprocess([COMMAND] + args) - return not p.exited or p.exit_code - - -class GTestColorTest(gtest_test_utils.TestCase): - def testNoEnvVarNoFlag(self): - """Tests the case when there's neither GTEST_COLOR nor --gtest_color.""" - - if not IS_WINDOWS: - self.assert_(not UsesColor('dumb', None, None)) - self.assert_(not UsesColor('emacs', None, None)) - self.assert_(not UsesColor('xterm-mono', None, None)) - self.assert_(not UsesColor('unknown', None, None)) - self.assert_(not UsesColor(None, None, None)) - self.assert_(UsesColor('linux', None, None)) - self.assert_(UsesColor('cygwin', None, None)) - self.assert_(UsesColor('xterm', None, None)) - self.assert_(UsesColor('xterm-color', None, None)) - self.assert_(UsesColor('xterm-256color', None, None)) - - def testFlagOnly(self): - """Tests the case when there's --gtest_color but not GTEST_COLOR.""" - - self.assert_(not UsesColor('dumb', None, 'no')) - self.assert_(not UsesColor('xterm-color', None, 'no')) - if not IS_WINDOWS: - self.assert_(not UsesColor('emacs', None, 'auto')) - self.assert_(UsesColor('xterm', None, 'auto')) - self.assert_(UsesColor('dumb', None, 'yes')) - self.assert_(UsesColor('xterm', None, 'yes')) - - def testEnvVarOnly(self): - """Tests the case when there's GTEST_COLOR but not --gtest_color.""" - - self.assert_(not UsesColor('dumb', 'no', None)) - self.assert_(not UsesColor('xterm-color', 'no', None)) - if not IS_WINDOWS: - self.assert_(not UsesColor('dumb', 'auto', None)) - self.assert_(UsesColor('xterm-color', 'auto', None)) - self.assert_(UsesColor('dumb', 'yes', None)) - self.assert_(UsesColor('xterm-color', 'yes', None)) - - def testEnvVarAndFlag(self): - """Tests the case when there are both GTEST_COLOR and --gtest_color.""" - - self.assert_(not UsesColor('xterm-color', 'no', 'no')) - self.assert_(UsesColor('dumb', 'no', 'yes')) - self.assert_(UsesColor('xterm-color', 'no', 'auto')) - - def testAliasesOfYesAndNo(self): - """Tests using aliases in specifying --gtest_color.""" - - self.assert_(UsesColor('dumb', None, 'true')) - self.assert_(UsesColor('dumb', None, 'YES')) - self.assert_(UsesColor('dumb', None, 'T')) - self.assert_(UsesColor('dumb', None, '1')) - - self.assert_(not UsesColor('xterm', None, 'f')) - self.assert_(not UsesColor('xterm', None, 'false')) - self.assert_(not UsesColor('xterm', None, '0')) - self.assert_(not UsesColor('xterm', None, 'unknown')) - - -if __name__ == '__main__': - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_color_test_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_color_test_.cc deleted file mode 100644 index 58d377c9b..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_color_test_.cc +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// A helper program for testing how Google Test determines whether to use -// colors in the output. It prints "YES" and returns 1 if Google Test -// decides to use colors, and prints "NO" and returns 0 otherwise. - -#include - -#include - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -using testing::internal::ShouldUseColor; - -// The purpose of this is to ensure that the UnitTest singleton is -// created before main() is entered, and thus that ShouldUseColor() -// works the same way as in a real Google-Test-based test. We don't actual -// run the TEST itself. -TEST(GTestColorTest, Dummy) { -} - -int main(int argc, char** argv) { - testing::InitGoogleTest(&argc, argv); - - if (ShouldUseColor(true)) { - // Google Test decides to use colors in the output (assuming it - // goes to a TTY). - printf("YES\n"); - return 1; - } else { - // Google Test decides not to use colors in the output. - printf("NO\n"); - return 0; - } -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_env_var_test.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_env_var_test.py deleted file mode 100755 index bcc0bfd55..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_env_var_test.py +++ /dev/null @@ -1,105 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2008, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Verifies that Google Test correctly parses environment variables.""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import os -import gtest_test_utils - - -IS_WINDOWS = os.name == 'nt' -IS_LINUX = os.name == 'posix' and os.uname()[0] == 'Linux' - -COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_env_var_test_') - -environ = os.environ.copy() - - -def AssertEq(expected, actual): - if expected != actual: - print 'Expected: %s' % (expected,) - print ' Actual: %s' % (actual,) - raise AssertionError - - -def SetEnvVar(env_var, value): - """Sets the env variable to 'value'; unsets it when 'value' is None.""" - - if value is not None: - environ[env_var] = value - elif env_var in environ: - del environ[env_var] - - -def GetFlag(flag): - """Runs gtest_env_var_test_ and returns its output.""" - - args = [COMMAND] - if flag is not None: - args += [flag] - return gtest_test_utils.Subprocess(args, env=environ).output - - -def TestFlag(flag, test_val, default_val): - """Verifies that the given flag is affected by the corresponding env var.""" - - env_var = 'GTEST_' + flag.upper() - SetEnvVar(env_var, test_val) - AssertEq(test_val, GetFlag(flag)) - SetEnvVar(env_var, None) - AssertEq(default_val, GetFlag(flag)) - - -class GTestEnvVarTest(gtest_test_utils.TestCase): - def testEnvVarAffectsFlag(self): - """Tests that environment variable should affect the corresponding flag.""" - - TestFlag('break_on_failure', '1', '0') - TestFlag('color', 'yes', 'auto') - TestFlag('filter', 'FooTest.Bar', '*') - TestFlag('output', 'xml:tmp/foo.xml', '') - TestFlag('print_time', '0', '1') - TestFlag('repeat', '999', '1') - TestFlag('throw_on_failure', '1', '0') - TestFlag('death_test_style', 'threadsafe', 'fast') - - if IS_WINDOWS: - TestFlag('catch_exceptions', '1', '0') - - if IS_LINUX: - TestFlag('death_test_use_fork', '1', '0') - TestFlag('stack_trace_depth', '0', '100') - - -if __name__ == '__main__': - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_env_var_test_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_env_var_test_.cc deleted file mode 100644 index f7c78fcf3..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_env_var_test_.cc +++ /dev/null @@ -1,126 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// A helper program for testing that Google Test parses the environment -// variables correctly. - -#include - -#include - -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -using ::std::cout; - -namespace testing { - -// The purpose of this is to make the test more realistic by ensuring -// that the UnitTest singleton is created before main() is entered. -// We don't actual run the TEST itself. -TEST(GTestEnvVarTest, Dummy) { -} - -void PrintFlag(const char* flag) { - if (strcmp(flag, "break_on_failure") == 0) { - cout << GTEST_FLAG(break_on_failure); - return; - } - - if (strcmp(flag, "catch_exceptions") == 0) { - cout << GTEST_FLAG(catch_exceptions); - return; - } - - if (strcmp(flag, "color") == 0) { - cout << GTEST_FLAG(color); - return; - } - - if (strcmp(flag, "death_test_style") == 0) { - cout << GTEST_FLAG(death_test_style); - return; - } - - if (strcmp(flag, "death_test_use_fork") == 0) { - cout << GTEST_FLAG(death_test_use_fork); - return; - } - - if (strcmp(flag, "filter") == 0) { - cout << GTEST_FLAG(filter); - return; - } - - if (strcmp(flag, "output") == 0) { - cout << GTEST_FLAG(output); - return; - } - - if (strcmp(flag, "print_time") == 0) { - cout << GTEST_FLAG(print_time); - return; - } - - if (strcmp(flag, "repeat") == 0) { - cout << GTEST_FLAG(repeat); - return; - } - - if (strcmp(flag, "stack_trace_depth") == 0) { - cout << GTEST_FLAG(stack_trace_depth); - return; - } - - if (strcmp(flag, "throw_on_failure") == 0) { - cout << GTEST_FLAG(throw_on_failure); - return; - } - - cout << "Invalid flag name " << flag - << ". Valid names are break_on_failure, color, filter, etc.\n"; - exit(1); -} - -} // namespace testing - -int main(int argc, char** argv) { - testing::InitGoogleTest(&argc, argv); - - if (argc != 2) { - cout << "Usage: gtest_env_var_test_ NAME_OF_FLAG\n"; - return 1; - } - - testing::PrintFlag(argv[1]); - return 0; -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_environment_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_environment_test.cc deleted file mode 100644 index c9392614d..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_environment_test.cc +++ /dev/null @@ -1,186 +0,0 @@ -// Copyright 2007, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// Tests using global test environments. - -#include -#include -#include - -namespace testing { -GTEST_DECLARE_string_(filter); -} - -namespace { - -enum FailureType { - NO_FAILURE, NON_FATAL_FAILURE, FATAL_FAILURE -}; - -// For testing using global test environments. -class MyEnvironment : public testing::Environment { - public: - MyEnvironment() { Reset(); } - - // Depending on the value of failure_in_set_up_, SetUp() will - // generate a non-fatal failure, generate a fatal failure, or - // succeed. - virtual void SetUp() { - set_up_was_run_ = true; - - switch (failure_in_set_up_) { - case NON_FATAL_FAILURE: - ADD_FAILURE() << "Expected non-fatal failure in global set-up."; - break; - case FATAL_FAILURE: - FAIL() << "Expected fatal failure in global set-up."; - break; - default: - break; - } - } - - // Generates a non-fatal failure. - virtual void TearDown() { - tear_down_was_run_ = true; - ADD_FAILURE() << "Expected non-fatal failure in global tear-down."; - } - - // Resets the state of the environment s.t. it can be reused. - void Reset() { - failure_in_set_up_ = NO_FAILURE; - set_up_was_run_ = false; - tear_down_was_run_ = false; - } - - // We call this function to set the type of failure SetUp() should - // generate. - void set_failure_in_set_up(FailureType type) { - failure_in_set_up_ = type; - } - - // Was SetUp() run? - bool set_up_was_run() const { return set_up_was_run_; } - - // Was TearDown() run? - bool tear_down_was_run() const { return tear_down_was_run_; } - private: - FailureType failure_in_set_up_; - bool set_up_was_run_; - bool tear_down_was_run_; -}; - -// Was the TEST run? -bool test_was_run; - -// The sole purpose of this TEST is to enable us to check whether it -// was run. -TEST(FooTest, Bar) { - test_was_run = true; -} - -// Prints the message and aborts the program if condition is false. -void Check(bool condition, const char* msg) { - if (!condition) { - printf("FAILED: %s\n", msg); - abort(); - } -} - -// Runs the tests. Return true iff successful. -// -// The 'failure' parameter specifies the type of failure that should -// be generated by the global set-up. -int RunAllTests(MyEnvironment* env, FailureType failure) { - env->Reset(); - env->set_failure_in_set_up(failure); - test_was_run = false; - return RUN_ALL_TESTS(); -} - -} // namespace - -int main(int argc, char **argv) { - testing::InitGoogleTest(&argc, argv); - - // Registers a global test environment, and verifies that the - // registration function returns its argument. - MyEnvironment* const env = new MyEnvironment; - Check(testing::AddGlobalTestEnvironment(env) == env, - "AddGlobalTestEnvironment() should return its argument."); - - // Verifies that RUN_ALL_TESTS() runs the tests when the global - // set-up is successful. - Check(RunAllTests(env, NO_FAILURE) != 0, - "RUN_ALL_TESTS() should return non-zero, as the global tear-down " - "should generate a failure."); - Check(test_was_run, - "The tests should run, as the global set-up should generate no " - "failure"); - Check(env->tear_down_was_run(), - "The global tear-down should run, as the global set-up was run."); - - // Verifies that RUN_ALL_TESTS() runs the tests when the global - // set-up generates no fatal failure. - Check(RunAllTests(env, NON_FATAL_FAILURE) != 0, - "RUN_ALL_TESTS() should return non-zero, as both the global set-up " - "and the global tear-down should generate a non-fatal failure."); - Check(test_was_run, - "The tests should run, as the global set-up should generate no " - "fatal failure."); - Check(env->tear_down_was_run(), - "The global tear-down should run, as the global set-up was run."); - - // Verifies that RUN_ALL_TESTS() runs no test when the global set-up - // generates a fatal failure. - Check(RunAllTests(env, FATAL_FAILURE) != 0, - "RUN_ALL_TESTS() should return non-zero, as the global set-up " - "should generate a fatal failure."); - Check(!test_was_run, - "The tests should not run, as the global set-up should generate " - "a fatal failure."); - Check(env->tear_down_was_run(), - "The global tear-down should run, as the global set-up was run."); - - // Verifies that RUN_ALL_TESTS() doesn't do global set-up or - // tear-down when there is no test to run. - testing::GTEST_FLAG(filter) = "-*"; - Check(RunAllTests(env, NO_FAILURE) == 0, - "RUN_ALL_TESTS() should return zero, as there is no test to run."); - Check(!env->set_up_was_run(), - "The global set-up should not run, as there is no test to run."); - Check(!env->tear_down_was_run(), - "The global tear-down should not run, " - "as the global set-up was not run."); - - printf("PASS\n"); - return 0; -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_filter_unittest.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_filter_unittest.py deleted file mode 100755 index 0d1a77005..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_filter_unittest.py +++ /dev/null @@ -1,633 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2005 Google Inc. All Rights Reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Unit test for Google Test test filters. - -A user can specify which test(s) in a Google Test program to run via either -the GTEST_FILTER environment variable or the --gtest_filter flag. -This script tests such functionality by invoking -gtest_filter_unittest_ (a program written with Google Test) with different -environments and command line flags. - -Note that test sharding may also influence which tests are filtered. Therefore, -we test that here also. -""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import os -import re -import sets -import sys - -import gtest_test_utils - -# Constants. - -# Checks if this platform can pass empty environment variables to child -# processes. We set an env variable to an empty string and invoke a python -# script in a subprocess to print whether the variable is STILL in -# os.environ. We then use 'eval' to parse the child's output so that an -# exception is thrown if the input is anything other than 'True' nor 'False'. -os.environ['EMPTY_VAR'] = '' -child = gtest_test_utils.Subprocess( - [sys.executable, '-c', 'import os; print \'EMPTY_VAR\' in os.environ']) -CAN_PASS_EMPTY_ENV = eval(child.output) - - -# Check if this platform can unset environment variables in child processes. -# We set an env variable to a non-empty string, unset it, and invoke -# a python script in a subprocess to print whether the variable -# is NO LONGER in os.environ. -# We use 'eval' to parse the child's output so that an exception -# is thrown if the input is neither 'True' nor 'False'. -os.environ['UNSET_VAR'] = 'X' -del os.environ['UNSET_VAR'] -child = gtest_test_utils.Subprocess( - [sys.executable, '-c', 'import os; print \'UNSET_VAR\' not in os.environ']) -CAN_UNSET_ENV = eval(child.output) - - -# Checks if we should test with an empty filter. This doesn't -# make sense on platforms that cannot pass empty env variables (Win32) -# and on platforms that cannot unset variables (since we cannot tell -# the difference between "" and NULL -- Borland and Solaris < 5.10) -CAN_TEST_EMPTY_FILTER = (CAN_PASS_EMPTY_ENV and CAN_UNSET_ENV) - - -# The environment variable for specifying the test filters. -FILTER_ENV_VAR = 'GTEST_FILTER' - -# The environment variables for test sharding. -TOTAL_SHARDS_ENV_VAR = 'GTEST_TOTAL_SHARDS' -SHARD_INDEX_ENV_VAR = 'GTEST_SHARD_INDEX' -SHARD_STATUS_FILE_ENV_VAR = 'GTEST_SHARD_STATUS_FILE' - -# The command line flag for specifying the test filters. -FILTER_FLAG = 'gtest_filter' - -# The command line flag for including disabled tests. -ALSO_RUN_DISABED_TESTS_FLAG = 'gtest_also_run_disabled_tests' - -# Command to run the gtest_filter_unittest_ program. -COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_filter_unittest_') - -# Regex for determining whether parameterized tests are enabled in the binary. -PARAM_TEST_REGEX = re.compile(r'/ParamTest') - -# Regex for parsing test case names from Google Test's output. -TEST_CASE_REGEX = re.compile(r'^\[\-+\] \d+ tests? from (\w+(/\w+)?)') - -# Regex for parsing test names from Google Test's output. -TEST_REGEX = re.compile(r'^\[\s*RUN\s*\].*\.(\w+(/\w+)?)') - -# The command line flag to tell Google Test to output the list of tests it -# will run. -LIST_TESTS_FLAG = '--gtest_list_tests' - -# Indicates whether Google Test supports death tests. -SUPPORTS_DEATH_TESTS = 'HasDeathTest' in gtest_test_utils.Subprocess( - [COMMAND, LIST_TESTS_FLAG]).output - -# Full names of all tests in gtest_filter_unittests_. -PARAM_TESTS = [ - 'SeqP/ParamTest.TestX/0', - 'SeqP/ParamTest.TestX/1', - 'SeqP/ParamTest.TestY/0', - 'SeqP/ParamTest.TestY/1', - 'SeqQ/ParamTest.TestX/0', - 'SeqQ/ParamTest.TestX/1', - 'SeqQ/ParamTest.TestY/0', - 'SeqQ/ParamTest.TestY/1', - ] - -DISABLED_TESTS = [ - 'BarTest.DISABLED_TestFour', - 'BarTest.DISABLED_TestFive', - 'BazTest.DISABLED_TestC', - 'DISABLED_FoobarTest.Test1', - 'DISABLED_FoobarTest.DISABLED_Test2', - 'DISABLED_FoobarbazTest.TestA', - ] - -if SUPPORTS_DEATH_TESTS: - DEATH_TESTS = [ - 'HasDeathTest.Test1', - 'HasDeathTest.Test2', - ] -else: - DEATH_TESTS = [] - -# All the non-disabled tests. -ACTIVE_TESTS = [ - 'FooTest.Abc', - 'FooTest.Xyz', - - 'BarTest.TestOne', - 'BarTest.TestTwo', - 'BarTest.TestThree', - - 'BazTest.TestOne', - 'BazTest.TestA', - 'BazTest.TestB', - ] + DEATH_TESTS + PARAM_TESTS - -param_tests_present = None - -# Utilities. - -environ = os.environ.copy() - - -def SetEnvVar(env_var, value): - """Sets the env variable to 'value'; unsets it when 'value' is None.""" - - if value is not None: - environ[env_var] = value - elif env_var in environ: - del environ[env_var] - - -def RunAndReturnOutput(args = None): - """Runs the test program and returns its output.""" - - return gtest_test_utils.Subprocess([COMMAND] + (args or []), - env=environ).output - - -def RunAndExtractTestList(args = None): - """Runs the test program and returns its exit code and a list of tests run.""" - - p = gtest_test_utils.Subprocess([COMMAND] + (args or []), env=environ) - tests_run = [] - test_case = '' - test = '' - for line in p.output.split('\n'): - match = TEST_CASE_REGEX.match(line) - if match is not None: - test_case = match.group(1) - else: - match = TEST_REGEX.match(line) - if match is not None: - test = match.group(1) - tests_run.append(test_case + '.' + test) - return (tests_run, p.exit_code) - - -def InvokeWithModifiedEnv(extra_env, function, *args, **kwargs): - """Runs the given function and arguments in a modified environment.""" - try: - original_env = environ.copy() - environ.update(extra_env) - return function(*args, **kwargs) - finally: - environ.clear() - environ.update(original_env) - - -def RunWithSharding(total_shards, shard_index, command): - """Runs a test program shard and returns exit code and a list of tests run.""" - - extra_env = {SHARD_INDEX_ENV_VAR: str(shard_index), - TOTAL_SHARDS_ENV_VAR: str(total_shards)} - return InvokeWithModifiedEnv(extra_env, RunAndExtractTestList, command) - -# The unit test. - - -class GTestFilterUnitTest(gtest_test_utils.TestCase): - """Tests the env variable or the command line flag to filter tests.""" - - # Utilities. - - def AssertSetEqual(self, lhs, rhs): - """Asserts that two sets are equal.""" - - for elem in lhs: - self.assert_(elem in rhs, '%s in %s' % (elem, rhs)) - - for elem in rhs: - self.assert_(elem in lhs, '%s in %s' % (elem, lhs)) - - def AssertPartitionIsValid(self, set_var, list_of_sets): - """Asserts that list_of_sets is a valid partition of set_var.""" - - full_partition = [] - for slice_var in list_of_sets: - full_partition.extend(slice_var) - self.assertEqual(len(set_var), len(full_partition)) - self.assertEqual(sets.Set(set_var), sets.Set(full_partition)) - - def AdjustForParameterizedTests(self, tests_to_run): - """Adjust tests_to_run in case value parameterized tests are disabled.""" - - global param_tests_present - if not param_tests_present: - return list(sets.Set(tests_to_run) - sets.Set(PARAM_TESTS)) - else: - return tests_to_run - - def RunAndVerify(self, gtest_filter, tests_to_run): - """Checks that the binary runs correct set of tests for a given filter.""" - - tests_to_run = self.AdjustForParameterizedTests(tests_to_run) - - # First, tests using the environment variable. - - # Windows removes empty variables from the environment when passing it - # to a new process. This means it is impossible to pass an empty filter - # into a process using the environment variable. However, we can still - # test the case when the variable is not supplied (i.e., gtest_filter is - # None). - # pylint: disable-msg=C6403 - if CAN_TEST_EMPTY_FILTER or gtest_filter != '': - SetEnvVar(FILTER_ENV_VAR, gtest_filter) - tests_run = RunAndExtractTestList()[0] - SetEnvVar(FILTER_ENV_VAR, None) - self.AssertSetEqual(tests_run, tests_to_run) - # pylint: enable-msg=C6403 - - # Next, tests using the command line flag. - - if gtest_filter is None: - args = [] - else: - args = ['--%s=%s' % (FILTER_FLAG, gtest_filter)] - - tests_run = RunAndExtractTestList(args)[0] - self.AssertSetEqual(tests_run, tests_to_run) - - def RunAndVerifyWithSharding(self, gtest_filter, total_shards, tests_to_run, - args=None, check_exit_0=False): - """Checks that binary runs correct tests for the given filter and shard. - - Runs all shards of gtest_filter_unittest_ with the given filter, and - verifies that the right set of tests were run. The union of tests run - on each shard should be identical to tests_to_run, without duplicates. - - Args: - gtest_filter: A filter to apply to the tests. - total_shards: A total number of shards to split test run into. - tests_to_run: A set of tests expected to run. - args : Arguments to pass to the to the test binary. - check_exit_0: When set to a true value, make sure that all shards - return 0. - """ - - tests_to_run = self.AdjustForParameterizedTests(tests_to_run) - - # Windows removes empty variables from the environment when passing it - # to a new process. This means it is impossible to pass an empty filter - # into a process using the environment variable. However, we can still - # test the case when the variable is not supplied (i.e., gtest_filter is - # None). - # pylint: disable-msg=C6403 - if CAN_TEST_EMPTY_FILTER or gtest_filter != '': - SetEnvVar(FILTER_ENV_VAR, gtest_filter) - partition = [] - for i in range(0, total_shards): - (tests_run, exit_code) = RunWithSharding(total_shards, i, args) - if check_exit_0: - self.assertEqual(0, exit_code) - partition.append(tests_run) - - self.AssertPartitionIsValid(tests_to_run, partition) - SetEnvVar(FILTER_ENV_VAR, None) - # pylint: enable-msg=C6403 - - def RunAndVerifyAllowingDisabled(self, gtest_filter, tests_to_run): - """Checks that the binary runs correct set of tests for the given filter. - - Runs gtest_filter_unittest_ with the given filter, and enables - disabled tests. Verifies that the right set of tests were run. - - Args: - gtest_filter: A filter to apply to the tests. - tests_to_run: A set of tests expected to run. - """ - - tests_to_run = self.AdjustForParameterizedTests(tests_to_run) - - # Construct the command line. - args = ['--%s' % ALSO_RUN_DISABED_TESTS_FLAG] - if gtest_filter is not None: - args.append('--%s=%s' % (FILTER_FLAG, gtest_filter)) - - tests_run = RunAndExtractTestList(args)[0] - self.AssertSetEqual(tests_run, tests_to_run) - - def setUp(self): - """Sets up test case. - - Determines whether value-parameterized tests are enabled in the binary and - sets the flags accordingly. - """ - - global param_tests_present - if param_tests_present is None: - param_tests_present = PARAM_TEST_REGEX.search( - RunAndReturnOutput()) is not None - - def testDefaultBehavior(self): - """Tests the behavior of not specifying the filter.""" - - self.RunAndVerify(None, ACTIVE_TESTS) - - def testDefaultBehaviorWithShards(self): - """Tests the behavior without the filter, with sharding enabled.""" - - self.RunAndVerifyWithSharding(None, 1, ACTIVE_TESTS) - self.RunAndVerifyWithSharding(None, 2, ACTIVE_TESTS) - self.RunAndVerifyWithSharding(None, len(ACTIVE_TESTS) - 1, ACTIVE_TESTS) - self.RunAndVerifyWithSharding(None, len(ACTIVE_TESTS), ACTIVE_TESTS) - self.RunAndVerifyWithSharding(None, len(ACTIVE_TESTS) + 1, ACTIVE_TESTS) - - def testEmptyFilter(self): - """Tests an empty filter.""" - - self.RunAndVerify('', []) - self.RunAndVerifyWithSharding('', 1, []) - self.RunAndVerifyWithSharding('', 2, []) - - def testBadFilter(self): - """Tests a filter that matches nothing.""" - - self.RunAndVerify('BadFilter', []) - self.RunAndVerifyAllowingDisabled('BadFilter', []) - - def testFullName(self): - """Tests filtering by full name.""" - - self.RunAndVerify('FooTest.Xyz', ['FooTest.Xyz']) - self.RunAndVerifyAllowingDisabled('FooTest.Xyz', ['FooTest.Xyz']) - self.RunAndVerifyWithSharding('FooTest.Xyz', 5, ['FooTest.Xyz']) - - def testUniversalFilters(self): - """Tests filters that match everything.""" - - self.RunAndVerify('*', ACTIVE_TESTS) - self.RunAndVerify('*.*', ACTIVE_TESTS) - self.RunAndVerifyWithSharding('*.*', len(ACTIVE_TESTS) - 3, ACTIVE_TESTS) - self.RunAndVerifyAllowingDisabled('*', ACTIVE_TESTS + DISABLED_TESTS) - self.RunAndVerifyAllowingDisabled('*.*', ACTIVE_TESTS + DISABLED_TESTS) - - def testFilterByTestCase(self): - """Tests filtering by test case name.""" - - self.RunAndVerify('FooTest.*', ['FooTest.Abc', 'FooTest.Xyz']) - - BAZ_TESTS = ['BazTest.TestOne', 'BazTest.TestA', 'BazTest.TestB'] - self.RunAndVerify('BazTest.*', BAZ_TESTS) - self.RunAndVerifyAllowingDisabled('BazTest.*', - BAZ_TESTS + ['BazTest.DISABLED_TestC']) - - def testFilterByTest(self): - """Tests filtering by test name.""" - - self.RunAndVerify('*.TestOne', ['BarTest.TestOne', 'BazTest.TestOne']) - - def testFilterDisabledTests(self): - """Select only the disabled tests to run.""" - - self.RunAndVerify('DISABLED_FoobarTest.Test1', []) - self.RunAndVerifyAllowingDisabled('DISABLED_FoobarTest.Test1', - ['DISABLED_FoobarTest.Test1']) - - self.RunAndVerify('*DISABLED_*', []) - self.RunAndVerifyAllowingDisabled('*DISABLED_*', DISABLED_TESTS) - - self.RunAndVerify('*.DISABLED_*', []) - self.RunAndVerifyAllowingDisabled('*.DISABLED_*', [ - 'BarTest.DISABLED_TestFour', - 'BarTest.DISABLED_TestFive', - 'BazTest.DISABLED_TestC', - 'DISABLED_FoobarTest.DISABLED_Test2', - ]) - - self.RunAndVerify('DISABLED_*', []) - self.RunAndVerifyAllowingDisabled('DISABLED_*', [ - 'DISABLED_FoobarTest.Test1', - 'DISABLED_FoobarTest.DISABLED_Test2', - 'DISABLED_FoobarbazTest.TestA', - ]) - - def testWildcardInTestCaseName(self): - """Tests using wildcard in the test case name.""" - - self.RunAndVerify('*a*.*', [ - 'BarTest.TestOne', - 'BarTest.TestTwo', - 'BarTest.TestThree', - - 'BazTest.TestOne', - 'BazTest.TestA', - 'BazTest.TestB', ] + DEATH_TESTS + PARAM_TESTS) - - def testWildcardInTestName(self): - """Tests using wildcard in the test name.""" - - self.RunAndVerify('*.*A*', ['FooTest.Abc', 'BazTest.TestA']) - - def testFilterWithoutDot(self): - """Tests a filter that has no '.' in it.""" - - self.RunAndVerify('*z*', [ - 'FooTest.Xyz', - - 'BazTest.TestOne', - 'BazTest.TestA', - 'BazTest.TestB', - ]) - - def testTwoPatterns(self): - """Tests filters that consist of two patterns.""" - - self.RunAndVerify('Foo*.*:*A*', [ - 'FooTest.Abc', - 'FooTest.Xyz', - - 'BazTest.TestA', - ]) - - # An empty pattern + a non-empty one - self.RunAndVerify(':*A*', ['FooTest.Abc', 'BazTest.TestA']) - - def testThreePatterns(self): - """Tests filters that consist of three patterns.""" - - self.RunAndVerify('*oo*:*A*:*One', [ - 'FooTest.Abc', - 'FooTest.Xyz', - - 'BarTest.TestOne', - - 'BazTest.TestOne', - 'BazTest.TestA', - ]) - - # The 2nd pattern is empty. - self.RunAndVerify('*oo*::*One', [ - 'FooTest.Abc', - 'FooTest.Xyz', - - 'BarTest.TestOne', - - 'BazTest.TestOne', - ]) - - # The last 2 patterns are empty. - self.RunAndVerify('*oo*::', [ - 'FooTest.Abc', - 'FooTest.Xyz', - ]) - - def testNegativeFilters(self): - self.RunAndVerify('*-BazTest.TestOne', [ - 'FooTest.Abc', - 'FooTest.Xyz', - - 'BarTest.TestOne', - 'BarTest.TestTwo', - 'BarTest.TestThree', - - 'BazTest.TestA', - 'BazTest.TestB', - ] + DEATH_TESTS + PARAM_TESTS) - - self.RunAndVerify('*-FooTest.Abc:BazTest.*', [ - 'FooTest.Xyz', - - 'BarTest.TestOne', - 'BarTest.TestTwo', - 'BarTest.TestThree', - ] + DEATH_TESTS + PARAM_TESTS) - - self.RunAndVerify('BarTest.*-BarTest.TestOne', [ - 'BarTest.TestTwo', - 'BarTest.TestThree', - ]) - - # Tests without leading '*'. - self.RunAndVerify('-FooTest.Abc:FooTest.Xyz:BazTest.*', [ - 'BarTest.TestOne', - 'BarTest.TestTwo', - 'BarTest.TestThree', - ] + DEATH_TESTS + PARAM_TESTS) - - # Value parameterized tests. - self.RunAndVerify('*/*', PARAM_TESTS) - - # Value parameterized tests filtering by the sequence name. - self.RunAndVerify('SeqP/*', [ - 'SeqP/ParamTest.TestX/0', - 'SeqP/ParamTest.TestX/1', - 'SeqP/ParamTest.TestY/0', - 'SeqP/ParamTest.TestY/1', - ]) - - # Value parameterized tests filtering by the test name. - self.RunAndVerify('*/0', [ - 'SeqP/ParamTest.TestX/0', - 'SeqP/ParamTest.TestY/0', - 'SeqQ/ParamTest.TestX/0', - 'SeqQ/ParamTest.TestY/0', - ]) - - def testFlagOverridesEnvVar(self): - """Tests that the filter flag overrides the filtering env. variable.""" - - SetEnvVar(FILTER_ENV_VAR, 'Foo*') - args = ['--%s=%s' % (FILTER_FLAG, '*One')] - tests_run = RunAndExtractTestList(args)[0] - SetEnvVar(FILTER_ENV_VAR, None) - - self.AssertSetEqual(tests_run, ['BarTest.TestOne', 'BazTest.TestOne']) - - def testShardStatusFileIsCreated(self): - """Tests that the shard file is created if specified in the environment.""" - - shard_status_file = os.path.join(gtest_test_utils.GetTempDir(), - 'shard_status_file') - self.assert_(not os.path.exists(shard_status_file)) - - extra_env = {SHARD_STATUS_FILE_ENV_VAR: shard_status_file} - try: - InvokeWithModifiedEnv(extra_env, RunAndReturnOutput) - finally: - self.assert_(os.path.exists(shard_status_file)) - os.remove(shard_status_file) - - def testShardStatusFileIsCreatedWithListTests(self): - """Tests that the shard file is created with the "list_tests" flag.""" - - shard_status_file = os.path.join(gtest_test_utils.GetTempDir(), - 'shard_status_file2') - self.assert_(not os.path.exists(shard_status_file)) - - extra_env = {SHARD_STATUS_FILE_ENV_VAR: shard_status_file} - try: - output = InvokeWithModifiedEnv(extra_env, - RunAndReturnOutput, - [LIST_TESTS_FLAG]) - finally: - # This assertion ensures that Google Test enumerated the tests as - # opposed to running them. - self.assert_('[==========]' not in output, - 'Unexpected output during test enumeration.\n' - 'Please ensure that LIST_TESTS_FLAG is assigned the\n' - 'correct flag value for listing Google Test tests.') - - self.assert_(os.path.exists(shard_status_file)) - os.remove(shard_status_file) - - if SUPPORTS_DEATH_TESTS: - def testShardingWorksWithDeathTests(self): - """Tests integration with death tests and sharding.""" - - gtest_filter = 'HasDeathTest.*:SeqP/*' - expected_tests = [ - 'HasDeathTest.Test1', - 'HasDeathTest.Test2', - - 'SeqP/ParamTest.TestX/0', - 'SeqP/ParamTest.TestX/1', - 'SeqP/ParamTest.TestY/0', - 'SeqP/ParamTest.TestY/1', - ] - - for flag in ['--gtest_death_test_style=threadsafe', - '--gtest_death_test_style=fast']: - self.RunAndVerifyWithSharding(gtest_filter, 3, expected_tests, - check_exit_0=True, args=[flag]) - self.RunAndVerifyWithSharding(gtest_filter, 5, expected_tests, - check_exit_0=True, args=[flag]) - -if __name__ == '__main__': - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_filter_unittest_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_filter_unittest_.cc deleted file mode 100644 index 325504fe9..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_filter_unittest_.cc +++ /dev/null @@ -1,140 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Unit test for Google Test test filters. -// -// A user can specify which test(s) in a Google Test program to run via -// either the GTEST_FILTER environment variable or the --gtest_filter -// flag. This is used for testing such functionality. -// -// The program will be invoked from a Python unit test. Don't run it -// directly. - -#include - -namespace { - -// Test case FooTest. - -class FooTest : public testing::Test { -}; - -TEST_F(FooTest, Abc) { -} - -TEST_F(FooTest, Xyz) { - FAIL() << "Expected failure."; -} - -// Test case BarTest. - -TEST(BarTest, TestOne) { -} - -TEST(BarTest, TestTwo) { -} - -TEST(BarTest, TestThree) { -} - -TEST(BarTest, DISABLED_TestFour) { - FAIL() << "Expected failure."; -} - -TEST(BarTest, DISABLED_TestFive) { - FAIL() << "Expected failure."; -} - -// Test case BazTest. - -TEST(BazTest, TestOne) { - FAIL() << "Expected failure."; -} - -TEST(BazTest, TestA) { -} - -TEST(BazTest, TestB) { -} - -TEST(BazTest, DISABLED_TestC) { - FAIL() << "Expected failure."; -} - -// Test case HasDeathTest - -TEST(HasDeathTest, Test1) { - EXPECT_DEATH_IF_SUPPORTED(exit(1), ".*"); -} - -// We need at least two death tests to make sure that the all death tests -// aren't on the first shard. -TEST(HasDeathTest, Test2) { - EXPECT_DEATH_IF_SUPPORTED(exit(1), ".*"); -} - -// Test case FoobarTest - -TEST(DISABLED_FoobarTest, Test1) { - FAIL() << "Expected failure."; -} - -TEST(DISABLED_FoobarTest, DISABLED_Test2) { - FAIL() << "Expected failure."; -} - -// Test case FoobarbazTest - -TEST(DISABLED_FoobarbazTest, TestA) { - FAIL() << "Expected failure."; -} - -#if GTEST_HAS_PARAM_TEST -class ParamTest : public testing::TestWithParam { -}; - -TEST_P(ParamTest, TestX) { -} - -TEST_P(ParamTest, TestY) { -} - -INSTANTIATE_TEST_CASE_P(SeqP, ParamTest, testing::Values(1, 2)); -INSTANTIATE_TEST_CASE_P(SeqQ, ParamTest, testing::Values(5, 6)); -#endif // GTEST_HAS_PARAM_TEST - -} // namespace - -int main(int argc, char **argv) { - ::testing::InitGoogleTest(&argc, argv); - - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_help_test.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_help_test.py deleted file mode 100755 index 3cb4c48e0..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_help_test.py +++ /dev/null @@ -1,169 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2009, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Tests the --help flag of Google C++ Testing Framework. - -SYNOPSIS - gtest_help_test.py --gtest_build_dir=BUILD/DIR - # where BUILD/DIR contains the built gtest_help_test_ file. - gtest_help_test.py -""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import os -import re -import gtest_test_utils - - -IS_WINDOWS = os.name == 'nt' - -PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath('gtest_help_test_') -FLAG_PREFIX = '--gtest_' -CATCH_EXCEPTIONS_FLAG = FLAG_PREFIX + 'catch_exceptions' -DEATH_TEST_STYLE_FLAG = FLAG_PREFIX + 'death_test_style' -UNKNOWN_FLAG = FLAG_PREFIX + 'unknown_flag_for_testing' -LIST_TESTS_FLAG = FLAG_PREFIX + 'list_tests' -INCORRECT_FLAG_VARIANTS = [re.sub('^--', '-', LIST_TESTS_FLAG), - re.sub('^--', '/', LIST_TESTS_FLAG), - re.sub('_', '-', LIST_TESTS_FLAG)] -INTERNAL_FLAG_FOR_TESTING = FLAG_PREFIX + 'internal_flag_for_testing' - -SUPPORTS_DEATH_TESTS = "DeathTest" in gtest_test_utils.Subprocess( - [PROGRAM_PATH, LIST_TESTS_FLAG]).output - -# The help message must match this regex. -HELP_REGEX = re.compile( - FLAG_PREFIX + r'list_tests.*' + - FLAG_PREFIX + r'filter=.*' + - FLAG_PREFIX + r'also_run_disabled_tests.*' + - FLAG_PREFIX + r'repeat=.*' + - FLAG_PREFIX + r'shuffle.*' + - FLAG_PREFIX + r'random_seed=.*' + - FLAG_PREFIX + r'color=.*' + - FLAG_PREFIX + r'print_time.*' + - FLAG_PREFIX + r'output=.*' + - FLAG_PREFIX + r'break_on_failure.*' + - FLAG_PREFIX + r'throw_on_failure.*', - re.DOTALL) - - -def RunWithFlag(flag): - """Runs gtest_help_test_ with the given flag. - - Returns: - the exit code and the text output as a tuple. - Args: - flag: the command-line flag to pass to gtest_help_test_, or None. - """ - - if flag is None: - command = [PROGRAM_PATH] - else: - command = [PROGRAM_PATH, flag] - child = gtest_test_utils.Subprocess(command) - return child.exit_code, child.output - - -class GTestHelpTest(gtest_test_utils.TestCase): - """Tests the --help flag and its equivalent forms.""" - - def TestHelpFlag(self, flag): - """Verifies correct behavior when help flag is specified. - - The right message must be printed and the tests must - skipped when the given flag is specified. - - Args: - flag: A flag to pass to the binary or None. - """ - - exit_code, output = RunWithFlag(flag) - self.assertEquals(0, exit_code) - self.assert_(HELP_REGEX.search(output), output) - if IS_WINDOWS: - self.assert_(CATCH_EXCEPTIONS_FLAG in output, output) - else: - self.assert_(CATCH_EXCEPTIONS_FLAG not in output, output) - - if SUPPORTS_DEATH_TESTS and not IS_WINDOWS: - self.assert_(DEATH_TEST_STYLE_FLAG in output, output) - else: - self.assert_(DEATH_TEST_STYLE_FLAG not in output, output) - - def TestNonHelpFlag(self, flag): - """Verifies correct behavior when no help flag is specified. - - Verifies that when no help flag is specified, the tests are run - and the help message is not printed. - - Args: - flag: A flag to pass to the binary or None. - """ - - exit_code, output = RunWithFlag(flag) - self.assert_(exit_code != 0) - self.assert_(not HELP_REGEX.search(output), output) - - def testPrintsHelpWithFullFlag(self): - self.TestHelpFlag('--help') - - def testPrintsHelpWithShortFlag(self): - self.TestHelpFlag('-h') - - def testPrintsHelpWithQuestionFlag(self): - self.TestHelpFlag('-?') - - def testPrintsHelpWithWindowsStyleQuestionFlag(self): - self.TestHelpFlag('/?') - - def testPrintsHelpWithUnrecognizedGoogleTestFlag(self): - self.TestHelpFlag(UNKNOWN_FLAG) - - def testPrintsHelpWithIncorrectFlagStyle(self): - for incorrect_flag in INCORRECT_FLAG_VARIANTS: - self.TestHelpFlag(incorrect_flag) - - def testRunsTestsWithoutHelpFlag(self): - """Verifies that when no help flag is specified, the tests are run - and the help message is not printed.""" - - self.TestNonHelpFlag(None) - - def testRunsTestsWithGtestInternalFlag(self): - """Verifies that the tests are run and no help message is printed when - a flag starting with Google Test prefix and 'internal_' is supplied.""" - - self.TestNonHelpFlag(INTERNAL_FLAG_FOR_TESTING) - - -if __name__ == '__main__': - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_help_test_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_help_test_.cc deleted file mode 100644 index aad0d72d7..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_help_test_.cc +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright 2009, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// This program is meant to be run by gtest_help_test.py. Do not run -// it directly. - -#include - -// When a help flag is specified, this program should skip the tests -// and exit with 0; otherwise the following test will be executed, -// causing this program to exit with a non-zero code. -TEST(HelpFlagTest, ShouldNotBeRun) { - ASSERT_TRUE(false) << "Tests shouldn't be run when --help is specified."; -} - -#if GTEST_HAS_DEATH_TEST -TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {} -#endif diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_list_tests_unittest.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_list_tests_unittest.py deleted file mode 100755 index ce8c3ef05..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_list_tests_unittest.py +++ /dev/null @@ -1,177 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2006, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Unit test for Google Test's --gtest_list_tests flag. - -A user can ask Google Test to list all tests by specifying the ---gtest_list_tests flag. This script tests such functionality -by invoking gtest_list_tests_unittest_ (a program written with -Google Test) the command line flags. -""" - -__author__ = 'phanna@google.com (Patrick Hanna)' - -import gtest_test_utils - - -# Constants. - -# The command line flag for enabling/disabling listing all tests. -LIST_TESTS_FLAG = 'gtest_list_tests' - -# Path to the gtest_list_tests_unittest_ program. -EXE_PATH = gtest_test_utils.GetTestExecutablePath('gtest_list_tests_unittest_') - -# The expected output when running gtest_list_tests_unittest_ with -# --gtest_list_tests -EXPECTED_OUTPUT_NO_FILTER = """FooDeathTest. - Test1 -Foo. - Bar1 - Bar2 - DISABLED_Bar3 -Abc. - Xyz - Def -FooBar. - Baz -FooTest. - Test1 - DISABLED_Test2 - Test3 -""" - -# The expected output when running gtest_list_tests_unittest_ with -# --gtest_list_tests and --gtest_filter=Foo*. -EXPECTED_OUTPUT_FILTER_FOO = """FooDeathTest. - Test1 -Foo. - Bar1 - Bar2 - DISABLED_Bar3 -FooBar. - Baz -FooTest. - Test1 - DISABLED_Test2 - Test3 -""" - -# Utilities. - - -def Run(args): - """Runs gtest_list_tests_unittest_ and returns the list of tests printed.""" - - return gtest_test_utils.Subprocess([EXE_PATH] + args, - capture_stderr=False).output - - -# The unit test. - -class GTestListTestsUnitTest(gtest_test_utils.TestCase): - """Tests using the --gtest_list_tests flag to list all tests.""" - - def RunAndVerify(self, flag_value, expected_output, other_flag): - """Runs gtest_list_tests_unittest_ and verifies that it prints - the correct tests. - - Args: - flag_value: value of the --gtest_list_tests flag; - None if the flag should not be present. - - expected_output: the expected output after running command; - - other_flag: a different flag to be passed to command - along with gtest_list_tests; - None if the flag should not be present. - """ - - if flag_value is None: - flag = '' - flag_expression = 'not set' - elif flag_value == '0': - flag = '--%s=0' % LIST_TESTS_FLAG - flag_expression = '0' - else: - flag = '--%s' % LIST_TESTS_FLAG - flag_expression = '1' - - args = [flag] - - if other_flag is not None: - args += [other_flag] - - output = Run(args) - - msg = ('when %s is %s, the output of "%s" is "%s".' % - (LIST_TESTS_FLAG, flag_expression, ' '.join(args), output)) - - if expected_output is not None: - self.assert_(output == expected_output, msg) - else: - self.assert_(output != EXPECTED_OUTPUT_NO_FILTER, msg) - - def testDefaultBehavior(self): - """Tests the behavior of the default mode.""" - - self.RunAndVerify(flag_value=None, - expected_output=None, - other_flag=None) - - def testFlag(self): - """Tests using the --gtest_list_tests flag.""" - - self.RunAndVerify(flag_value='0', - expected_output=None, - other_flag=None) - self.RunAndVerify(flag_value='1', - expected_output=EXPECTED_OUTPUT_NO_FILTER, - other_flag=None) - - def testOverrideNonFilterFlags(self): - """Tests that --gtest_list_tests overrides the non-filter flags.""" - - self.RunAndVerify(flag_value='1', - expected_output=EXPECTED_OUTPUT_NO_FILTER, - other_flag='--gtest_break_on_failure') - - def testWithFilterFlags(self): - """Tests that --gtest_list_tests takes into account the - --gtest_filter flag.""" - - self.RunAndVerify(flag_value='1', - expected_output=EXPECTED_OUTPUT_FILTER_FOO, - other_flag='--gtest_filter=Foo*') - - -if __name__ == '__main__': - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_list_tests_unittest_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_list_tests_unittest_.cc deleted file mode 100644 index a0ed0825b..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_list_tests_unittest_.cc +++ /dev/null @@ -1,85 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: phanna@google.com (Patrick Hanna) - -// Unit test for Google Test's --gtest_list_tests flag. -// -// A user can ask Google Test to list all tests that will run -// so that when using a filter, a user will know what -// tests to look for. The tests will not be run after listing. -// -// This program will be invoked from a Python unit test. -// Don't run it directly. - -#include - -namespace { - -// Several different test cases and tests that will be listed. -TEST(Foo, Bar1) { -} - -TEST(Foo, Bar2) { -} - -TEST(Foo, DISABLED_Bar3) { -} - -TEST(Abc, Xyz) { -} - -TEST(Abc, Def) { -} - -TEST(FooBar, Baz) { -} - -class FooTest : public testing::Test { -}; - -TEST_F(FooTest, Test1) { -} - -TEST_F(FooTest, DISABLED_Test2) { -} - -TEST_F(FooTest, Test3) { -} - -TEST(FooDeathTest, Test1) { -} - -} // namespace - -int main(int argc, char **argv) { - ::testing::InitGoogleTest(&argc, argv); - - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_main_unittest.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_main_unittest.cc deleted file mode 100644 index 7a3f0adfa..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_main_unittest.cc +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#include - -// Tests that we don't have to define main() when we link to -// gtest_main instead of gtest. - -namespace { - -TEST(GTestMainTest, ShouldSucceed) { -} - -} // namespace - -// We are using the main() function defined in src/gtest_main.cc, so -// we don't define it here. diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_no_test_unittest.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_no_test_unittest.cc deleted file mode 100644 index afe2dc0c9..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_no_test_unittest.cc +++ /dev/null @@ -1,54 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// Tests that a Google Test program that has no test defined can run -// successfully. -// -// Author: wan@google.com (Zhanyong Wan) - -#include - - -int main(int argc, char **argv) { - testing::InitGoogleTest(&argc, argv); - - // An ad-hoc assertion outside of all tests. - // - // This serves two purposes: - // - // 1. It verifies that an ad-hoc assertion can be executed even if - // no test is defined. - // 2. We had a bug where the XML output won't be generated if an - // assertion is executed before RUN_ALL_TESTS() is called, even - // though --gtest_output=xml is specified. This makes sure the - // bug is fixed and doesn't regress. - EXPECT_EQ(1, 1); - - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test.py deleted file mode 100755 index 192030a20..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test.py +++ /dev/null @@ -1,327 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2008, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Tests the text output of Google C++ Testing Framework. - -SYNOPSIS - gtest_output_test.py --gtest_build_dir=BUILD/DIR --gengolden - # where BUILD/DIR contains the built gtest_output_test_ file. - gtest_output_test.py --gengolden - gtest_output_test.py -""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import os -import re -import sys -import gtest_test_utils - - -# The flag for generating the golden file -GENGOLDEN_FLAG = '--gengolden' -CATCH_EXCEPTIONS_ENV_VAR_NAME = 'GTEST_CATCH_EXCEPTIONS' - -IS_WINDOWS = os.name == 'nt' - -if IS_WINDOWS: - GOLDEN_NAME = 'gtest_output_test_golden_win.txt' -else: - GOLDEN_NAME = 'gtest_output_test_golden_lin.txt' - -PROGRAM_PATH = gtest_test_utils.GetTestExecutablePath('gtest_output_test_') - -# At least one command we exercise must not have the -# --gtest_internal_skip_environment_and_ad_hoc_tests flag. -COMMAND_LIST_TESTS = ({}, [PROGRAM_PATH, '--gtest_list_tests']) -COMMAND_WITH_COLOR = ({}, [PROGRAM_PATH, '--gtest_color=yes']) -COMMAND_WITH_TIME = ({}, [PROGRAM_PATH, - '--gtest_print_time', - '--gtest_internal_skip_environment_and_ad_hoc_tests', - '--gtest_filter=FatalFailureTest.*:LoggingTest.*']) -COMMAND_WITH_DISABLED = ( - {}, [PROGRAM_PATH, - '--gtest_also_run_disabled_tests', - '--gtest_internal_skip_environment_and_ad_hoc_tests', - '--gtest_filter=*DISABLED_*']) -COMMAND_WITH_SHARDING = ( - {'GTEST_SHARD_INDEX': '1', 'GTEST_TOTAL_SHARDS': '2'}, - [PROGRAM_PATH, - '--gtest_internal_skip_environment_and_ad_hoc_tests', - '--gtest_filter=PassingTest.*']) - -GOLDEN_PATH = os.path.join(gtest_test_utils.GetSourceDir(), GOLDEN_NAME) - - -def ToUnixLineEnding(s): - """Changes all Windows/Mac line endings in s to UNIX line endings.""" - - return s.replace('\r\n', '\n').replace('\r', '\n') - - -def RemoveLocations(test_output): - """Removes all file location info from a Google Test program's output. - - Args: - test_output: the output of a Google Test program. - - Returns: - output with all file location info (in the form of - 'DIRECTORY/FILE_NAME:LINE_NUMBER: 'or - 'DIRECTORY\\FILE_NAME(LINE_NUMBER): ') replaced by - 'FILE_NAME:#: '. - """ - - return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output) - - -def RemoveStackTraceDetails(output): - """Removes all stack traces from a Google Test program's output.""" - - # *? means "find the shortest string that matches". - return re.sub(r'Stack trace:(.|\n)*?\n\n', - 'Stack trace: (omitted)\n\n', output) - - -def RemoveStackTraces(output): - """Removes all traces of stack traces from a Google Test program's output.""" - - # *? means "find the shortest string that matches". - return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output) - - -def RemoveTime(output): - """Removes all time information from a Google Test program's output.""" - - return re.sub(r'\(\d+ ms', '(? ms', output) - - -def RemoveTypeInfoDetails(test_output): - """Removes compiler-specific type info from Google Test program's output. - - Args: - test_output: the output of a Google Test program. - - Returns: - output with type information normalized to canonical form. - """ - - # some compilers output the name of type 'unsigned int' as 'unsigned' - return re.sub(r'unsigned int', 'unsigned', test_output) - - -def RemoveTestCounts(output): - """Removes test counts from a Google Test program's output.""" - - output = re.sub(r'\d+ tests?, listed below', - '? tests, listed below', output) - output = re.sub(r'\d+ FAILED TESTS', - '? FAILED TESTS', output) - output = re.sub(r'\d+ tests? from \d+ test cases?', - '? tests from ? test cases', output) - output = re.sub(r'\d+ tests? from ([a-zA-Z_])', - r'? tests from \1', output) - return re.sub(r'\d+ tests?\.', '? tests.', output) - - -def RemoveMatchingTests(test_output, pattern): - """Removes output of specified tests from a Google Test program's output. - - This function strips not only the beginning and the end of a test but also - all output in between. - - Args: - test_output: A string containing the test output. - pattern: A regex string that matches names of test cases or - tests to remove. - - Returns: - Contents of test_output with tests whose names match pattern removed. - """ - - test_output = re.sub( - r'.*\[ RUN \] .*%s(.|\n)*?\[( FAILED | OK )\] .*%s.*\n' % ( - pattern, pattern), - '', - test_output) - return re.sub(r'.*%s.*\n' % pattern, '', test_output) - - -def NormalizeOutput(output): - """Normalizes output (the output of gtest_output_test_.exe).""" - - output = ToUnixLineEnding(output) - output = RemoveLocations(output) - output = RemoveStackTraceDetails(output) - output = RemoveTime(output) - return output - - -def GetShellCommandOutput(env_cmd): - """Runs a command in a sub-process, and returns its output in a string. - - Args: - env_cmd: The shell command. A 2-tuple where element 0 is a dict of extra - environment variables to set, and element 1 is a string with - the command and any flags. - - Returns: - A string with the command's combined standard and diagnostic output. - """ - - # Spawns cmd in a sub-process, and gets its standard I/O file objects. - # Set and save the environment properly. - environ = os.environ.copy() - environ.update(env_cmd[0]) - p = gtest_test_utils.Subprocess(env_cmd[1], env=environ) - - return p.output - - -def GetCommandOutput(env_cmd): - """Runs a command and returns its output with all file location - info stripped off. - - Args: - env_cmd: The shell command. A 2-tuple where element 0 is a dict of extra - environment variables to set, and element 1 is a string with - the command and any flags. - """ - - # Disables exception pop-ups on Windows. - environ, cmdline = env_cmd - environ = dict(environ) # Ensures we are modifying a copy. - environ[CATCH_EXCEPTIONS_ENV_VAR_NAME] = '1' - return NormalizeOutput(GetShellCommandOutput((environ, cmdline))) - - -def GetOutputOfAllCommands(): - """Returns concatenated output from several representative commands.""" - - return (GetCommandOutput(COMMAND_WITH_COLOR) + - GetCommandOutput(COMMAND_WITH_TIME) + - GetCommandOutput(COMMAND_WITH_DISABLED) + - GetCommandOutput(COMMAND_WITH_SHARDING)) - - -test_list = GetShellCommandOutput(COMMAND_LIST_TESTS) -SUPPORTS_DEATH_TESTS = 'DeathTest' in test_list -SUPPORTS_TYPED_TESTS = 'TypedTest' in test_list -SUPPORTS_THREADS = 'ExpectFailureWithThreadsTest' in test_list -SUPPORTS_STACK_TRACES = False - -CAN_GENERATE_GOLDEN_FILE = (SUPPORTS_DEATH_TESTS and - SUPPORTS_TYPED_TESTS and - SUPPORTS_THREADS) - - -class GTestOutputTest(gtest_test_utils.TestCase): - def RemoveUnsupportedTests(self, test_output): - if not SUPPORTS_DEATH_TESTS: - test_output = RemoveMatchingTests(test_output, 'DeathTest') - if not SUPPORTS_TYPED_TESTS: - test_output = RemoveMatchingTests(test_output, 'TypedTest') - test_output = RemoveMatchingTests(test_output, 'TypedDeathTest') - test_output = RemoveMatchingTests(test_output, 'TypeParamDeathTest') - if not SUPPORTS_THREADS: - test_output = RemoveMatchingTests(test_output, - 'ExpectFailureWithThreadsTest') - test_output = RemoveMatchingTests(test_output, - 'ScopedFakeTestPartResultReporterTest') - test_output = RemoveMatchingTests(test_output, - 'WorksConcurrently') - if not SUPPORTS_STACK_TRACES: - test_output = RemoveStackTraces(test_output) - - return test_output - - def testOutput(self): - output = GetOutputOfAllCommands() - - golden_file = open(GOLDEN_PATH, 'rb') - # A mis-configured source control system can cause \r appear in EOL - # sequences when we read the golden file irrespective of an operating - # system used. Therefore, we need to strip those \r's from newlines - # unconditionally. - golden = ToUnixLineEnding(golden_file.read()) - golden_file.close() - - # We want the test to pass regardless of certain features being - # supported or not. - - # We still have to remove type name specifics in all cases. - normalized_actual = RemoveTypeInfoDetails(output) - normalized_golden = RemoveTypeInfoDetails(golden) - - if CAN_GENERATE_GOLDEN_FILE: - self.assertEqual(normalized_golden, normalized_actual) - else: - normalized_actual = RemoveTestCounts(normalized_actual) - normalized_golden = RemoveTestCounts(self.RemoveUnsupportedTests( - normalized_golden)) - - # This code is very handy when debugging golden file differences: - if os.getenv('DEBUG_GTEST_OUTPUT_TEST'): - open(os.path.join( - gtest_test_utils.GetSourceDir(), - '_gtest_output_test_normalized_actual.txt'), 'wb').write( - normalized_actual) - open(os.path.join( - gtest_test_utils.GetSourceDir(), - '_gtest_output_test_normalized_golden.txt'), 'wb').write( - normalized_golden) - - self.assertEqual(normalized_golden, normalized_actual) - - -if __name__ == '__main__': - if sys.argv[1:] == [GENGOLDEN_FLAG]: - if CAN_GENERATE_GOLDEN_FILE: - output = GetOutputOfAllCommands() - golden_file = open(GOLDEN_PATH, 'wb') - golden_file.write(output) - golden_file.close() - else: - message = ( - """Unable to write a golden file when compiled in an environment -that does not support all the required features (death tests""") - if IS_WINDOWS: - message += ( - """\nand typed tests). Please check that you are using VC++ 8.0 SP1 -or higher as your compiler.""") - else: - message += """\ntyped tests, and threads). Please generate the -golden file using a binary built with those features enabled.""" - - sys.stderr.write(message) - sys.exit(1) - else: - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_.cc deleted file mode 100644 index 273e8e93e..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_.cc +++ /dev/null @@ -1,1135 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// A unit test for Google Test itself. This verifies that the basic -// constructs of Google Test work. -// -// Author: wan@google.com (Zhanyong Wan) - -#include -#include - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -#include - -#if GTEST_IS_THREADSAFE -using testing::ScopedFakeTestPartResultReporter; -using testing::TestPartResultArray; - -using testing::internal::Notification; -using testing::internal::ThreadWithParam; -#endif - -namespace posix = ::testing::internal::posix; -using testing::internal::String; -using testing::internal::scoped_ptr; - -// Tests catching fatal failures. - -// A subroutine used by the following test. -void TestEq1(int x) { - ASSERT_EQ(1, x); -} - -// This function calls a test subroutine, catches the fatal failure it -// generates, and then returns early. -void TryTestSubroutine() { - // Calls a subrountine that yields a fatal failure. - TestEq1(2); - - // Catches the fatal failure and aborts the test. - // - // The testing::Test:: prefix is necessary when calling - // HasFatalFailure() outside of a TEST, TEST_F, or test fixture. - if (testing::Test::HasFatalFailure()) return; - - // If we get here, something is wrong. - FAIL() << "This should never be reached."; -} - -TEST(PassingTest, PassingTest1) { -} - -TEST(PassingTest, PassingTest2) { -} - -// Tests catching a fatal failure in a subroutine. -TEST(FatalFailureTest, FatalFailureInSubroutine) { - printf("(expecting a failure that x should be 1)\n"); - - TryTestSubroutine(); -} - -// Tests catching a fatal failure in a nested subroutine. -TEST(FatalFailureTest, FatalFailureInNestedSubroutine) { - printf("(expecting a failure that x should be 1)\n"); - - // Calls a subrountine that yields a fatal failure. - TryTestSubroutine(); - - // Catches the fatal failure and aborts the test. - // - // When calling HasFatalFailure() inside a TEST, TEST_F, or test - // fixture, the testing::Test:: prefix is not needed. - if (HasFatalFailure()) return; - - // If we get here, something is wrong. - FAIL() << "This should never be reached."; -} - -// Tests HasFatalFailure() after a failed EXPECT check. -TEST(FatalFailureTest, NonfatalFailureInSubroutine) { - printf("(expecting a failure on false)\n"); - EXPECT_TRUE(false); // Generates a nonfatal failure - ASSERT_FALSE(HasFatalFailure()); // This should succeed. -} - -// Tests interleaving user logging and Google Test assertions. -TEST(LoggingTest, InterleavingLoggingAndAssertions) { - static const int a[4] = { - 3, 9, 2, 6 - }; - - printf("(expecting 2 failures on (3) >= (a[i]))\n"); - for (int i = 0; i < static_cast(sizeof(a)/sizeof(*a)); i++) { - printf("i == %d\n", i); - EXPECT_GE(3, a[i]); - } -} - -// Tests the SCOPED_TRACE macro. - -// A helper function for testing SCOPED_TRACE. -void SubWithoutTrace(int n) { - EXPECT_EQ(1, n); - ASSERT_EQ(2, n); -} - -// Another helper function for testing SCOPED_TRACE. -void SubWithTrace(int n) { - SCOPED_TRACE(testing::Message() << "n = " << n); - - SubWithoutTrace(n); -} - -// Tests that SCOPED_TRACE() obeys lexical scopes. -TEST(SCOPED_TRACETest, ObeysScopes) { - printf("(expected to fail)\n"); - - // There should be no trace before SCOPED_TRACE() is invoked. - ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; - - { - SCOPED_TRACE("Expected trace"); - // After SCOPED_TRACE(), a failure in the current scope should contain - // the trace. - ADD_FAILURE() << "This failure is expected, and should have a trace."; - } - - // Once the control leaves the scope of the SCOPED_TRACE(), there - // should be no trace again. - ADD_FAILURE() << "This failure is expected, and shouldn't have a trace."; -} - -// Tests that SCOPED_TRACE works inside a loop. -TEST(SCOPED_TRACETest, WorksInLoop) { - printf("(expected to fail)\n"); - - for (int i = 1; i <= 2; i++) { - SCOPED_TRACE(testing::Message() << "i = " << i); - - SubWithoutTrace(i); - } -} - -// Tests that SCOPED_TRACE works in a subroutine. -TEST(SCOPED_TRACETest, WorksInSubroutine) { - printf("(expected to fail)\n"); - - SubWithTrace(1); - SubWithTrace(2); -} - -// Tests that SCOPED_TRACE can be nested. -TEST(SCOPED_TRACETest, CanBeNested) { - printf("(expected to fail)\n"); - - SCOPED_TRACE(""); // A trace without a message. - - SubWithTrace(2); -} - -// Tests that multiple SCOPED_TRACEs can be used in the same scope. -TEST(SCOPED_TRACETest, CanBeRepeated) { - printf("(expected to fail)\n"); - - SCOPED_TRACE("A"); - ADD_FAILURE() - << "This failure is expected, and should contain trace point A."; - - SCOPED_TRACE("B"); - ADD_FAILURE() - << "This failure is expected, and should contain trace point A and B."; - - { - SCOPED_TRACE("C"); - ADD_FAILURE() << "This failure is expected, and should contain " - << "trace point A, B, and C."; - } - - SCOPED_TRACE("D"); - ADD_FAILURE() << "This failure is expected, and should contain " - << "trace point A, B, and D."; -} - -#if GTEST_IS_THREADSAFE -// Tests that SCOPED_TRACE()s can be used concurrently from multiple -// threads. Namely, an assertion should be affected by -// SCOPED_TRACE()s in its own thread only. - -// Here's the sequence of actions that happen in the test: -// -// Thread A (main) | Thread B (spawned) -// ===============================|================================ -// spawns thread B | -// -------------------------------+-------------------------------- -// waits for n1 | SCOPED_TRACE("Trace B"); -// | generates failure #1 -// | notifies n1 -// -------------------------------+-------------------------------- -// SCOPED_TRACE("Trace A"); | waits for n2 -// generates failure #2 | -// notifies n2 | -// -------------------------------|-------------------------------- -// waits for n3 | generates failure #3 -// | trace B dies -// | generates failure #4 -// | notifies n3 -// -------------------------------|-------------------------------- -// generates failure #5 | finishes -// trace A dies | -// generates failure #6 | -// -------------------------------|-------------------------------- -// waits for thread B to finish | - -struct CheckPoints { - Notification n1; - Notification n2; - Notification n3; -}; - -static void ThreadWithScopedTrace(CheckPoints* check_points) { - { - SCOPED_TRACE("Trace B"); - ADD_FAILURE() - << "Expected failure #1 (in thread B, only trace B alive)."; - check_points->n1.Notify(); - check_points->n2.WaitForNotification(); - - ADD_FAILURE() - << "Expected failure #3 (in thread B, trace A & B both alive)."; - } // Trace B dies here. - ADD_FAILURE() - << "Expected failure #4 (in thread B, only trace A alive)."; - check_points->n3.Notify(); -} - -TEST(SCOPED_TRACETest, WorksConcurrently) { - printf("(expecting 6 failures)\n"); - - CheckPoints check_points; - ThreadWithParam thread(&ThreadWithScopedTrace, - &check_points, - NULL); - check_points.n1.WaitForNotification(); - - { - SCOPED_TRACE("Trace A"); - ADD_FAILURE() - << "Expected failure #2 (in thread A, trace A & B both alive)."; - check_points.n2.Notify(); - check_points.n3.WaitForNotification(); - - ADD_FAILURE() - << "Expected failure #5 (in thread A, only trace A alive)."; - } // Trace A dies here. - ADD_FAILURE() - << "Expected failure #6 (in thread A, no trace alive)."; - thread.Join(); -} -#endif // GTEST_IS_THREADSAFE - -TEST(DisabledTestsWarningTest, - DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning) { - // This test body is intentionally empty. Its sole purpose is for - // verifying that the --gtest_also_run_disabled_tests flag - // suppresses the "YOU HAVE 12 DISABLED TESTS" warning at the end of - // the test output. -} - -// Tests using assertions outside of TEST and TEST_F. -// -// This function creates two failures intentionally. -void AdHocTest() { - printf("The non-test part of the code is expected to have 2 failures.\n\n"); - EXPECT_TRUE(false); - EXPECT_EQ(2, 3); -} - -// Runs all TESTs, all TEST_Fs, and the ad hoc test. -int RunAllTests() { - AdHocTest(); - return RUN_ALL_TESTS(); -} - -// Tests non-fatal failures in the fixture constructor. -class NonFatalFailureInFixtureConstructorTest : public testing::Test { - protected: - NonFatalFailureInFixtureConstructorTest() { - printf("(expecting 5 failures)\n"); - ADD_FAILURE() << "Expected failure #1, in the test fixture c'tor."; - } - - ~NonFatalFailureInFixtureConstructorTest() { - ADD_FAILURE() << "Expected failure #5, in the test fixture d'tor."; - } - - virtual void SetUp() { - ADD_FAILURE() << "Expected failure #2, in SetUp()."; - } - - virtual void TearDown() { - ADD_FAILURE() << "Expected failure #4, in TearDown."; - } -}; - -TEST_F(NonFatalFailureInFixtureConstructorTest, FailureInConstructor) { - ADD_FAILURE() << "Expected failure #3, in the test body."; -} - -// Tests fatal failures in the fixture constructor. -class FatalFailureInFixtureConstructorTest : public testing::Test { - protected: - FatalFailureInFixtureConstructorTest() { - printf("(expecting 2 failures)\n"); - Init(); - } - - ~FatalFailureInFixtureConstructorTest() { - ADD_FAILURE() << "Expected failure #2, in the test fixture d'tor."; - } - - virtual void SetUp() { - ADD_FAILURE() << "UNEXPECTED failure in SetUp(). " - << "We should never get here, as the test fixture c'tor " - << "had a fatal failure."; - } - - virtual void TearDown() { - ADD_FAILURE() << "UNEXPECTED failure in TearDown(). " - << "We should never get here, as the test fixture c'tor " - << "had a fatal failure."; - } - private: - void Init() { - FAIL() << "Expected failure #1, in the test fixture c'tor."; - } -}; - -TEST_F(FatalFailureInFixtureConstructorTest, FailureInConstructor) { - ADD_FAILURE() << "UNEXPECTED failure in the test body. " - << "We should never get here, as the test fixture c'tor " - << "had a fatal failure."; -} - -// Tests non-fatal failures in SetUp(). -class NonFatalFailureInSetUpTest : public testing::Test { - protected: - virtual ~NonFatalFailureInSetUpTest() { - Deinit(); - } - - virtual void SetUp() { - printf("(expecting 4 failures)\n"); - ADD_FAILURE() << "Expected failure #1, in SetUp()."; - } - - virtual void TearDown() { - FAIL() << "Expected failure #3, in TearDown()."; - } - private: - void Deinit() { - FAIL() << "Expected failure #4, in the test fixture d'tor."; - } -}; - -TEST_F(NonFatalFailureInSetUpTest, FailureInSetUp) { - FAIL() << "Expected failure #2, in the test function."; -} - -// Tests fatal failures in SetUp(). -class FatalFailureInSetUpTest : public testing::Test { - protected: - virtual ~FatalFailureInSetUpTest() { - Deinit(); - } - - virtual void SetUp() { - printf("(expecting 3 failures)\n"); - FAIL() << "Expected failure #1, in SetUp()."; - } - - virtual void TearDown() { - FAIL() << "Expected failure #2, in TearDown()."; - } - private: - void Deinit() { - FAIL() << "Expected failure #3, in the test fixture d'tor."; - } -}; - -TEST_F(FatalFailureInSetUpTest, FailureInSetUp) { - FAIL() << "UNEXPECTED failure in the test function. " - << "We should never get here, as SetUp() failed."; -} - -#if GTEST_OS_WINDOWS - -// This group of tests verifies that Google Test handles SEH and C++ -// exceptions correctly. - -// A function that throws an SEH exception. -static void ThrowSEH() { - int* p = NULL; - *p = 0; // Raises an access violation. -} - -// Tests exceptions thrown in the test fixture constructor. -class ExceptionInFixtureCtorTest : public testing::Test { - protected: - ExceptionInFixtureCtorTest() { - printf("(expecting a failure on thrown exception " - "in the test fixture's constructor)\n"); - - ThrowSEH(); - } - - virtual ~ExceptionInFixtureCtorTest() { - Deinit(); - } - - virtual void SetUp() { - FAIL() << "UNEXPECTED failure in SetUp(). " - << "We should never get here, as the test fixture c'tor threw."; - } - - virtual void TearDown() { - FAIL() << "UNEXPECTED failure in TearDown(). " - << "We should never get here, as the test fixture c'tor threw."; - } - private: - void Deinit() { - FAIL() << "UNEXPECTED failure in the d'tor. " - << "We should never get here, as the test fixture c'tor threw."; - } -}; - -TEST_F(ExceptionInFixtureCtorTest, ExceptionInFixtureCtor) { - FAIL() << "UNEXPECTED failure in the test function. " - << "We should never get here, as the test fixture c'tor threw."; -} - -// Tests exceptions thrown in SetUp(). -class ExceptionInSetUpTest : public testing::Test { - protected: - virtual ~ExceptionInSetUpTest() { - Deinit(); - } - - virtual void SetUp() { - printf("(expecting 3 failures)\n"); - - ThrowSEH(); - } - - virtual void TearDown() { - FAIL() << "Expected failure #2, in TearDown()."; - } - private: - void Deinit() { - FAIL() << "Expected failure #3, in the test fixture d'tor."; - } -}; - -TEST_F(ExceptionInSetUpTest, ExceptionInSetUp) { - FAIL() << "UNEXPECTED failure in the test function. " - << "We should never get here, as SetUp() threw."; -} - -// Tests that TearDown() and the test fixture d'tor are always called, -// even when the test function throws an exception. -class ExceptionInTestFunctionTest : public testing::Test { - protected: - virtual ~ExceptionInTestFunctionTest() { - Deinit(); - } - - virtual void TearDown() { - FAIL() << "Expected failure #2, in TearDown()."; - } - private: - void Deinit() { - FAIL() << "Expected failure #3, in the test fixture d'tor."; - } -}; - -// Tests that the test fixture d'tor is always called, even when the -// test function throws an SEH exception. -TEST_F(ExceptionInTestFunctionTest, SEH) { - printf("(expecting 3 failures)\n"); - - ThrowSEH(); -} - -#if GTEST_HAS_EXCEPTIONS - -// Tests that the test fixture d'tor is always called, even when the -// test function throws a C++ exception. We do this only when -// GTEST_HAS_EXCEPTIONS is non-zero, i.e. C++ exceptions are enabled. -TEST_F(ExceptionInTestFunctionTest, CppException) { - throw 1; -} - -// Tests exceptions thrown in TearDown(). -class ExceptionInTearDownTest : public testing::Test { - protected: - virtual ~ExceptionInTearDownTest() { - Deinit(); - } - - virtual void TearDown() { - throw 1; - } - private: - void Deinit() { - FAIL() << "Expected failure #2, in the test fixture d'tor."; - } -}; - -TEST_F(ExceptionInTearDownTest, ExceptionInTearDown) { - printf("(expecting 2 failures)\n"); -} - -#endif // GTEST_HAS_EXCEPTIONS - -#endif // GTEST_OS_WINDOWS - -#if GTEST_IS_THREADSAFE - -// A unary function that may die. -void DieIf(bool should_die) { - GTEST_CHECK_(!should_die) << " - death inside DieIf()."; -} - -// Tests running death tests in a multi-threaded context. - -// Used for coordination between the main and the spawn thread. -struct SpawnThreadNotifications { - SpawnThreadNotifications() {} - - Notification spawn_thread_started; - Notification spawn_thread_ok_to_terminate; - - private: - GTEST_DISALLOW_COPY_AND_ASSIGN_(SpawnThreadNotifications); -}; - -// The function to be executed in the thread spawn by the -// MultipleThreads test (below). -static void ThreadRoutine(SpawnThreadNotifications* notifications) { - // Signals the main thread that this thread has started. - notifications->spawn_thread_started.Notify(); - - // Waits for permission to finish from the main thread. - notifications->spawn_thread_ok_to_terminate.WaitForNotification(); -} - -// This is a death-test test, but it's not named with a DeathTest -// suffix. It starts threads which might interfere with later -// death tests, so it must run after all other death tests. -class DeathTestAndMultiThreadsTest : public testing::Test { - protected: - // Starts a thread and waits for it to begin. - virtual void SetUp() { - thread_.reset(new ThreadWithParam( - &ThreadRoutine, ¬ifications_, NULL)); - notifications_.spawn_thread_started.WaitForNotification(); - } - // Tells the thread to finish, and reaps it. - // Depending on the version of the thread library in use, - // a manager thread might still be left running that will interfere - // with later death tests. This is unfortunate, but this class - // cleans up after itself as best it can. - virtual void TearDown() { - notifications_.spawn_thread_ok_to_terminate.Notify(); - } - - private: - SpawnThreadNotifications notifications_; - scoped_ptr > thread_; -}; - -#endif // GTEST_IS_THREADSAFE - -// The MixedUpTestCaseTest test case verifies that Google Test will fail a -// test if it uses a different fixture class than what other tests in -// the same test case use. It deliberately contains two fixture -// classes with the same name but defined in different namespaces. - -// The MixedUpTestCaseWithSameTestNameTest test case verifies that -// when the user defines two tests with the same test case name AND -// same test name (but in different namespaces), the second test will -// fail. - -namespace foo { - -class MixedUpTestCaseTest : public testing::Test { -}; - -TEST_F(MixedUpTestCaseTest, FirstTestFromNamespaceFoo) {} -TEST_F(MixedUpTestCaseTest, SecondTestFromNamespaceFoo) {} - -class MixedUpTestCaseWithSameTestNameTest : public testing::Test { -}; - -TEST_F(MixedUpTestCaseWithSameTestNameTest, - TheSecondTestWithThisNameShouldFail) {} - -} // namespace foo - -namespace bar { - -class MixedUpTestCaseTest : public testing::Test { -}; - -// The following two tests are expected to fail. We rely on the -// golden file to check that Google Test generates the right error message. -TEST_F(MixedUpTestCaseTest, ThisShouldFail) {} -TEST_F(MixedUpTestCaseTest, ThisShouldFailToo) {} - -class MixedUpTestCaseWithSameTestNameTest : public testing::Test { -}; - -// Expected to fail. We rely on the golden file to check that Google Test -// generates the right error message. -TEST_F(MixedUpTestCaseWithSameTestNameTest, - TheSecondTestWithThisNameShouldFail) {} - -} // namespace bar - -// The following two test cases verify that Google Test catches the user -// error of mixing TEST and TEST_F in the same test case. The first -// test case checks the scenario where TEST_F appears before TEST, and -// the second one checks where TEST appears before TEST_F. - -class TEST_F_before_TEST_in_same_test_case : public testing::Test { -}; - -TEST_F(TEST_F_before_TEST_in_same_test_case, DefinedUsingTEST_F) {} - -// Expected to fail. We rely on the golden file to check that Google Test -// generates the right error message. -TEST(TEST_F_before_TEST_in_same_test_case, DefinedUsingTESTAndShouldFail) {} - -class TEST_before_TEST_F_in_same_test_case : public testing::Test { -}; - -TEST(TEST_before_TEST_F_in_same_test_case, DefinedUsingTEST) {} - -// Expected to fail. We rely on the golden file to check that Google Test -// generates the right error message. -TEST_F(TEST_before_TEST_F_in_same_test_case, DefinedUsingTEST_FAndShouldFail) { -} - -// Used for testing EXPECT_NONFATAL_FAILURE() and EXPECT_FATAL_FAILURE(). -int global_integer = 0; - -// Tests that EXPECT_NONFATAL_FAILURE() can reference global variables. -TEST(ExpectNonfatalFailureTest, CanReferenceGlobalVariables) { - global_integer = 0; - EXPECT_NONFATAL_FAILURE({ - EXPECT_EQ(1, global_integer) << "Expected non-fatal failure."; - }, "Expected non-fatal failure."); -} - -// Tests that EXPECT_NONFATAL_FAILURE() can reference local variables -// (static or not). -TEST(ExpectNonfatalFailureTest, CanReferenceLocalVariables) { - int m = 0; - static int n; - n = 1; - EXPECT_NONFATAL_FAILURE({ - EXPECT_EQ(m, n) << "Expected non-fatal failure."; - }, "Expected non-fatal failure."); -} - -// Tests that EXPECT_NONFATAL_FAILURE() succeeds when there is exactly -// one non-fatal failure and no fatal failure. -TEST(ExpectNonfatalFailureTest, SucceedsWhenThereIsOneNonfatalFailure) { - EXPECT_NONFATAL_FAILURE({ - ADD_FAILURE() << "Expected non-fatal failure."; - }, "Expected non-fatal failure."); -} - -// Tests that EXPECT_NONFATAL_FAILURE() fails when there is no -// non-fatal failure. -TEST(ExpectNonfatalFailureTest, FailsWhenThereIsNoNonfatalFailure) { - printf("(expecting a failure)\n"); - EXPECT_NONFATAL_FAILURE({ - }, ""); -} - -// Tests that EXPECT_NONFATAL_FAILURE() fails when there are two -// non-fatal failures. -TEST(ExpectNonfatalFailureTest, FailsWhenThereAreTwoNonfatalFailures) { - printf("(expecting a failure)\n"); - EXPECT_NONFATAL_FAILURE({ - ADD_FAILURE() << "Expected non-fatal failure 1."; - ADD_FAILURE() << "Expected non-fatal failure 2."; - }, ""); -} - -// Tests that EXPECT_NONFATAL_FAILURE() fails when there is one fatal -// failure. -TEST(ExpectNonfatalFailureTest, FailsWhenThereIsOneFatalFailure) { - printf("(expecting a failure)\n"); - EXPECT_NONFATAL_FAILURE({ - FAIL() << "Expected fatal failure."; - }, ""); -} - -// Tests that EXPECT_NONFATAL_FAILURE() fails when the statement being -// tested returns. -TEST(ExpectNonfatalFailureTest, FailsWhenStatementReturns) { - printf("(expecting a failure)\n"); - EXPECT_NONFATAL_FAILURE({ - return; - }, ""); -} - -#if GTEST_HAS_EXCEPTIONS - -// Tests that EXPECT_NONFATAL_FAILURE() fails when the statement being -// tested throws. -TEST(ExpectNonfatalFailureTest, FailsWhenStatementThrows) { - printf("(expecting a failure)\n"); - try { - EXPECT_NONFATAL_FAILURE({ - throw 0; - }, ""); - } catch(int) { // NOLINT - } -} - -#endif // GTEST_HAS_EXCEPTIONS - -// Tests that EXPECT_FATAL_FAILURE() can reference global variables. -TEST(ExpectFatalFailureTest, CanReferenceGlobalVariables) { - global_integer = 0; - EXPECT_FATAL_FAILURE({ - ASSERT_EQ(1, global_integer) << "Expected fatal failure."; - }, "Expected fatal failure."); -} - -// Tests that EXPECT_FATAL_FAILURE() can reference local static -// variables. -TEST(ExpectFatalFailureTest, CanReferenceLocalStaticVariables) { - static int n; - n = 1; - EXPECT_FATAL_FAILURE({ - ASSERT_EQ(0, n) << "Expected fatal failure."; - }, "Expected fatal failure."); -} - -// Tests that EXPECT_FATAL_FAILURE() succeeds when there is exactly -// one fatal failure and no non-fatal failure. -TEST(ExpectFatalFailureTest, SucceedsWhenThereIsOneFatalFailure) { - EXPECT_FATAL_FAILURE({ - FAIL() << "Expected fatal failure."; - }, "Expected fatal failure."); -} - -// Tests that EXPECT_FATAL_FAILURE() fails when there is no fatal -// failure. -TEST(ExpectFatalFailureTest, FailsWhenThereIsNoFatalFailure) { - printf("(expecting a failure)\n"); - EXPECT_FATAL_FAILURE({ - }, ""); -} - -// A helper for generating a fatal failure. -void FatalFailure() { - FAIL() << "Expected fatal failure."; -} - -// Tests that EXPECT_FATAL_FAILURE() fails when there are two -// fatal failures. -TEST(ExpectFatalFailureTest, FailsWhenThereAreTwoFatalFailures) { - printf("(expecting a failure)\n"); - EXPECT_FATAL_FAILURE({ - FatalFailure(); - FatalFailure(); - }, ""); -} - -// Tests that EXPECT_FATAL_FAILURE() fails when there is one non-fatal -// failure. -TEST(ExpectFatalFailureTest, FailsWhenThereIsOneNonfatalFailure) { - printf("(expecting a failure)\n"); - EXPECT_FATAL_FAILURE({ - ADD_FAILURE() << "Expected non-fatal failure."; - }, ""); -} - -// Tests that EXPECT_FATAL_FAILURE() fails when the statement being -// tested returns. -TEST(ExpectFatalFailureTest, FailsWhenStatementReturns) { - printf("(expecting a failure)\n"); - EXPECT_FATAL_FAILURE({ - return; - }, ""); -} - -#if GTEST_HAS_EXCEPTIONS - -// Tests that EXPECT_FATAL_FAILURE() fails when the statement being -// tested throws. -TEST(ExpectFatalFailureTest, FailsWhenStatementThrows) { - printf("(expecting a failure)\n"); - try { - EXPECT_FATAL_FAILURE({ - throw 0; - }, ""); - } catch(int) { // NOLINT - } -} - -#endif // GTEST_HAS_EXCEPTIONS - -// This #ifdef block tests the output of typed tests. -#if GTEST_HAS_TYPED_TEST - -template -class TypedTest : public testing::Test { -}; - -TYPED_TEST_CASE(TypedTest, testing::Types); - -TYPED_TEST(TypedTest, Success) { - EXPECT_EQ(0, TypeParam()); -} - -TYPED_TEST(TypedTest, Failure) { - EXPECT_EQ(1, TypeParam()) << "Expected failure"; -} - -#endif // GTEST_HAS_TYPED_TEST - -// This #ifdef block tests the output of type-parameterized tests. -#if GTEST_HAS_TYPED_TEST_P - -template -class TypedTestP : public testing::Test { -}; - -TYPED_TEST_CASE_P(TypedTestP); - -TYPED_TEST_P(TypedTestP, Success) { - EXPECT_EQ(0U, TypeParam()); -} - -TYPED_TEST_P(TypedTestP, Failure) { - EXPECT_EQ(1U, TypeParam()) << "Expected failure"; -} - -REGISTER_TYPED_TEST_CASE_P(TypedTestP, Success, Failure); - -typedef testing::Types UnsignedTypes; -INSTANTIATE_TYPED_TEST_CASE_P(Unsigned, TypedTestP, UnsignedTypes); - -#endif // GTEST_HAS_TYPED_TEST_P - -#if GTEST_HAS_DEATH_TEST - -// We rely on the golden file to verify that tests whose test case -// name ends with DeathTest are run first. - -TEST(ADeathTest, ShouldRunFirst) { -} - -#if GTEST_HAS_TYPED_TEST - -// We rely on the golden file to verify that typed tests whose test -// case name ends with DeathTest are run first. - -template -class ATypedDeathTest : public testing::Test { -}; - -typedef testing::Types NumericTypes; -TYPED_TEST_CASE(ATypedDeathTest, NumericTypes); - -TYPED_TEST(ATypedDeathTest, ShouldRunFirst) { -} - -#endif // GTEST_HAS_TYPED_TEST - -#if GTEST_HAS_TYPED_TEST_P - - -// We rely on the golden file to verify that type-parameterized tests -// whose test case name ends with DeathTest are run first. - -template -class ATypeParamDeathTest : public testing::Test { -}; - -TYPED_TEST_CASE_P(ATypeParamDeathTest); - -TYPED_TEST_P(ATypeParamDeathTest, ShouldRunFirst) { -} - -REGISTER_TYPED_TEST_CASE_P(ATypeParamDeathTest, ShouldRunFirst); - -INSTANTIATE_TYPED_TEST_CASE_P(My, ATypeParamDeathTest, NumericTypes); - -#endif // GTEST_HAS_TYPED_TEST_P - -#endif // GTEST_HAS_DEATH_TEST - -// Tests various failure conditions of -// EXPECT_{,NON}FATAL_FAILURE{,_ON_ALL_THREADS}. -class ExpectFailureTest : public testing::Test { - public: // Must be public and not protected due to a bug in g++ 3.4.2. - enum FailureMode { - FATAL_FAILURE, - NONFATAL_FAILURE - }; - static void AddFailure(FailureMode failure) { - if (failure == FATAL_FAILURE) { - FAIL() << "Expected fatal failure."; - } else { - ADD_FAILURE() << "Expected non-fatal failure."; - } - } -}; - -TEST_F(ExpectFailureTest, ExpectFatalFailure) { - // Expected fatal failure, but succeeds. - printf("(expecting 1 failure)\n"); - EXPECT_FATAL_FAILURE(SUCCEED(), "Expected fatal failure."); - // Expected fatal failure, but got a non-fatal failure. - printf("(expecting 1 failure)\n"); - EXPECT_FATAL_FAILURE(AddFailure(NONFATAL_FAILURE), "Expected non-fatal " - "failure."); - // Wrong message. - printf("(expecting 1 failure)\n"); - EXPECT_FATAL_FAILURE(AddFailure(FATAL_FAILURE), "Some other fatal failure " - "expected."); -} - -TEST_F(ExpectFailureTest, ExpectNonFatalFailure) { - // Expected non-fatal failure, but succeeds. - printf("(expecting 1 failure)\n"); - EXPECT_NONFATAL_FAILURE(SUCCEED(), "Expected non-fatal failure."); - // Expected non-fatal failure, but got a fatal failure. - printf("(expecting 1 failure)\n"); - EXPECT_NONFATAL_FAILURE(AddFailure(FATAL_FAILURE), "Expected fatal failure."); - // Wrong message. - printf("(expecting 1 failure)\n"); - EXPECT_NONFATAL_FAILURE(AddFailure(NONFATAL_FAILURE), "Some other non-fatal " - "failure."); -} - -#if GTEST_IS_THREADSAFE - -class ExpectFailureWithThreadsTest : public ExpectFailureTest { - protected: - static void AddFailureInOtherThread(FailureMode failure) { - ThreadWithParam thread(&AddFailure, failure, NULL); - thread.Join(); - } -}; - -TEST_F(ExpectFailureWithThreadsTest, ExpectFatalFailure) { - // We only intercept the current thread. - printf("(expecting 2 failures)\n"); - EXPECT_FATAL_FAILURE(AddFailureInOtherThread(FATAL_FAILURE), - "Expected fatal failure."); -} - -TEST_F(ExpectFailureWithThreadsTest, ExpectNonFatalFailure) { - // We only intercept the current thread. - printf("(expecting 2 failures)\n"); - EXPECT_NONFATAL_FAILURE(AddFailureInOtherThread(NONFATAL_FAILURE), - "Expected non-fatal failure."); -} - -typedef ExpectFailureWithThreadsTest ScopedFakeTestPartResultReporterTest; - -// Tests that the ScopedFakeTestPartResultReporter only catches failures from -// the current thread if it is instantiated with INTERCEPT_ONLY_CURRENT_THREAD. -TEST_F(ScopedFakeTestPartResultReporterTest, InterceptOnlyCurrentThread) { - printf("(expecting 2 failures)\n"); - TestPartResultArray results; - { - ScopedFakeTestPartResultReporter reporter( - ScopedFakeTestPartResultReporter::INTERCEPT_ONLY_CURRENT_THREAD, - &results); - AddFailureInOtherThread(FATAL_FAILURE); - AddFailureInOtherThread(NONFATAL_FAILURE); - } - // The two failures should not have been intercepted. - EXPECT_EQ(0, results.size()) << "This shouldn't fail."; -} - -#endif // GTEST_IS_THREADSAFE - -TEST_F(ExpectFailureTest, ExpectFatalFailureOnAllThreads) { - // Expected fatal failure, but succeeds. - printf("(expecting 1 failure)\n"); - EXPECT_FATAL_FAILURE_ON_ALL_THREADS(SUCCEED(), "Expected fatal failure."); - // Expected fatal failure, but got a non-fatal failure. - printf("(expecting 1 failure)\n"); - EXPECT_FATAL_FAILURE_ON_ALL_THREADS(AddFailure(NONFATAL_FAILURE), - "Expected non-fatal failure."); - // Wrong message. - printf("(expecting 1 failure)\n"); - EXPECT_FATAL_FAILURE_ON_ALL_THREADS(AddFailure(FATAL_FAILURE), - "Some other fatal failure expected."); -} - -TEST_F(ExpectFailureTest, ExpectNonFatalFailureOnAllThreads) { - // Expected non-fatal failure, but succeeds. - printf("(expecting 1 failure)\n"); - EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(SUCCEED(), "Expected non-fatal " - "failure."); - // Expected non-fatal failure, but got a fatal failure. - printf("(expecting 1 failure)\n"); - EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(AddFailure(FATAL_FAILURE), - "Expected fatal failure."); - // Wrong message. - printf("(expecting 1 failure)\n"); - EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(AddFailure(NONFATAL_FAILURE), - "Some other non-fatal failure."); -} - - -// Two test environments for testing testing::AddGlobalTestEnvironment(). - -class FooEnvironment : public testing::Environment { - public: - virtual void SetUp() { - printf("%s", "FooEnvironment::SetUp() called.\n"); - } - - virtual void TearDown() { - printf("%s", "FooEnvironment::TearDown() called.\n"); - FAIL() << "Expected fatal failure."; - } -}; - -class BarEnvironment : public testing::Environment { - public: - virtual void SetUp() { - printf("%s", "BarEnvironment::SetUp() called.\n"); - } - - virtual void TearDown() { - printf("%s", "BarEnvironment::TearDown() called.\n"); - ADD_FAILURE() << "Expected non-fatal failure."; - } -}; - -GTEST_DEFINE_bool_(internal_skip_environment_and_ad_hoc_tests, false, - "This flag causes the program to skip test environment " - "tests and ad hoc tests."); - -// The main function. -// -// The idea is to use Google Test to run all the tests we have defined (some -// of them are intended to fail), and then compare the test results -// with the "golden" file. -int main(int argc, char **argv) { - testing::GTEST_FLAG(print_time) = false; - - // We just run the tests, knowing some of them are intended to fail. - // We will use a separate Python script to compare the output of - // this program with the golden file. - - // It's hard to test InitGoogleTest() directly, as it has many - // global side effects. The following line serves as a sanity test - // for it. - testing::InitGoogleTest(&argc, argv); - if (argc >= 2 && - String(argv[1]) == "--gtest_internal_skip_environment_and_ad_hoc_tests") - GTEST_FLAG(internal_skip_environment_and_ad_hoc_tests) = true; - -#if GTEST_HAS_DEATH_TEST - if (testing::internal::GTEST_FLAG(internal_run_death_test) != "") { - // Skip the usual output capturing if we're running as the child - // process of an threadsafe-style death test. -#if GTEST_OS_WINDOWS - posix::FReopen("nul:", "w", stdout); -#else - posix::FReopen("/dev/null", "w", stdout); -#endif // GTEST_OS_WINDOWS - return RUN_ALL_TESTS(); - } -#endif // GTEST_HAS_DEATH_TEST - - if (GTEST_FLAG(internal_skip_environment_and_ad_hoc_tests)) - return RUN_ALL_TESTS(); - - // Registers two global test environments. - // The golden file verifies that they are set up in the order they - // are registered, and torn down in the reverse order. - testing::AddGlobalTestEnvironment(new FooEnvironment); - testing::AddGlobalTestEnvironment(new BarEnvironment); - - return RunAllTests(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_golden_lin.txt b/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_golden_lin.txt deleted file mode 100644 index ec60437ac..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_golden_lin.txt +++ /dev/null @@ -1,696 +0,0 @@ -The non-test part of the code is expected to have 2 failures. - -gtest_output_test_.cc:#: Failure -Value of: false - Actual: false -Expected: true -gtest_output_test_.cc:#: Failure -Value of: 3 -Expected: 2 -[==========] Running 60 tests from 25 test cases. -[----------] Global test environment set-up. -FooEnvironment::SetUp() called. -BarEnvironment::SetUp() called. -[----------] 1 test from ADeathTest -[ RUN ] ADeathTest.ShouldRunFirst -[ OK ] ADeathTest.ShouldRunFirst -[----------] 1 test from ATypedDeathTest/0, where TypeParam = int -[ RUN ] ATypedDeathTest/0.ShouldRunFirst -[ OK ] ATypedDeathTest/0.ShouldRunFirst -[----------] 1 test from ATypedDeathTest/1, where TypeParam = double -[ RUN ] ATypedDeathTest/1.ShouldRunFirst -[ OK ] ATypedDeathTest/1.ShouldRunFirst -[----------] 1 test from My/ATypeParamDeathTest/0, where TypeParam = int -[ RUN ] My/ATypeParamDeathTest/0.ShouldRunFirst -[ OK ] My/ATypeParamDeathTest/0.ShouldRunFirst -[----------] 1 test from My/ATypeParamDeathTest/1, where TypeParam = double -[ RUN ] My/ATypeParamDeathTest/1.ShouldRunFirst -[ OK ] My/ATypeParamDeathTest/1.ShouldRunFirst -[----------] 2 tests from PassingTest -[ RUN ] PassingTest.PassingTest1 -[ OK ] PassingTest.PassingTest1 -[ RUN ] PassingTest.PassingTest2 -[ OK ] PassingTest.PassingTest2 -[----------] 3 tests from FatalFailureTest -[ RUN ] FatalFailureTest.FatalFailureInSubroutine -(expecting a failure that x should be 1) -gtest_output_test_.cc:#: Failure -Value of: x - Actual: 2 -Expected: 1 -[ FAILED ] FatalFailureTest.FatalFailureInSubroutine -[ RUN ] FatalFailureTest.FatalFailureInNestedSubroutine -(expecting a failure that x should be 1) -gtest_output_test_.cc:#: Failure -Value of: x - Actual: 2 -Expected: 1 -[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine -[ RUN ] FatalFailureTest.NonfatalFailureInSubroutine -(expecting a failure on false) -gtest_output_test_.cc:#: Failure -Value of: false - Actual: false -Expected: true -[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine -[----------] 1 test from LoggingTest -[ RUN ] LoggingTest.InterleavingLoggingAndAssertions -(expecting 2 failures on (3) >= (a[i])) -i == 0 -i == 1 -gtest_output_test_.cc:#: Failure -Expected: (3) >= (a[i]), actual: 3 vs 9 -i == 2 -i == 3 -gtest_output_test_.cc:#: Failure -Expected: (3) >= (a[i]), actual: 3 vs 6 -[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions -[----------] 6 tests from SCOPED_TRACETest -[ RUN ] SCOPED_TRACETest.ObeysScopes -(expected to fail) -gtest_output_test_.cc:#: Failure -Failed -This failure is expected, and shouldn't have a trace. -gtest_output_test_.cc:#: Failure -Failed -This failure is expected, and should have a trace. -Google Test trace: -gtest_output_test_.cc:#: Expected trace -gtest_output_test_.cc:#: Failure -Failed -This failure is expected, and shouldn't have a trace. -[ FAILED ] SCOPED_TRACETest.ObeysScopes -[ RUN ] SCOPED_TRACETest.WorksInLoop -(expected to fail) -gtest_output_test_.cc:#: Failure -Value of: n - Actual: 1 -Expected: 2 -Google Test trace: -gtest_output_test_.cc:#: i = 1 -gtest_output_test_.cc:#: Failure -Value of: n - Actual: 2 -Expected: 1 -Google Test trace: -gtest_output_test_.cc:#: i = 2 -[ FAILED ] SCOPED_TRACETest.WorksInLoop -[ RUN ] SCOPED_TRACETest.WorksInSubroutine -(expected to fail) -gtest_output_test_.cc:#: Failure -Value of: n - Actual: 1 -Expected: 2 -Google Test trace: -gtest_output_test_.cc:#: n = 1 -gtest_output_test_.cc:#: Failure -Value of: n - Actual: 2 -Expected: 1 -Google Test trace: -gtest_output_test_.cc:#: n = 2 -[ FAILED ] SCOPED_TRACETest.WorksInSubroutine -[ RUN ] SCOPED_TRACETest.CanBeNested -(expected to fail) -gtest_output_test_.cc:#: Failure -Value of: n - Actual: 2 -Expected: 1 -Google Test trace: -gtest_output_test_.cc:#: n = 2 -gtest_output_test_.cc:#: -[ FAILED ] SCOPED_TRACETest.CanBeNested -[ RUN ] SCOPED_TRACETest.CanBeRepeated -(expected to fail) -gtest_output_test_.cc:#: Failure -Failed -This failure is expected, and should contain trace point A. -Google Test trace: -gtest_output_test_.cc:#: A -gtest_output_test_.cc:#: Failure -Failed -This failure is expected, and should contain trace point A and B. -Google Test trace: -gtest_output_test_.cc:#: B -gtest_output_test_.cc:#: A -gtest_output_test_.cc:#: Failure -Failed -This failure is expected, and should contain trace point A, B, and C. -Google Test trace: -gtest_output_test_.cc:#: C -gtest_output_test_.cc:#: B -gtest_output_test_.cc:#: A -gtest_output_test_.cc:#: Failure -Failed -This failure is expected, and should contain trace point A, B, and D. -Google Test trace: -gtest_output_test_.cc:#: D -gtest_output_test_.cc:#: B -gtest_output_test_.cc:#: A -[ FAILED ] SCOPED_TRACETest.CanBeRepeated -[ RUN ] SCOPED_TRACETest.WorksConcurrently -(expecting 6 failures) -gtest_output_test_.cc:#: Failure -Failed -Expected failure #1 (in thread B, only trace B alive). -Google Test trace: -gtest_output_test_.cc:#: Trace B -gtest_output_test_.cc:#: Failure -Failed -Expected failure #2 (in thread A, trace A & B both alive). -Google Test trace: -gtest_output_test_.cc:#: Trace A -gtest_output_test_.cc:#: Failure -Failed -Expected failure #3 (in thread B, trace A & B both alive). -Google Test trace: -gtest_output_test_.cc:#: Trace B -gtest_output_test_.cc:#: Failure -Failed -Expected failure #4 (in thread B, only trace A alive). -gtest_output_test_.cc:#: Failure -Failed -Expected failure #5 (in thread A, only trace A alive). -Google Test trace: -gtest_output_test_.cc:#: Trace A -gtest_output_test_.cc:#: Failure -Failed -Expected failure #6 (in thread A, no trace alive). -[ FAILED ] SCOPED_TRACETest.WorksConcurrently -[----------] 1 test from NonFatalFailureInFixtureConstructorTest -[ RUN ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor -(expecting 5 failures) -gtest_output_test_.cc:#: Failure -Failed -Expected failure #1, in the test fixture c'tor. -gtest_output_test_.cc:#: Failure -Failed -Expected failure #2, in SetUp(). -gtest_output_test_.cc:#: Failure -Failed -Expected failure #3, in the test body. -gtest_output_test_.cc:#: Failure -Failed -Expected failure #4, in TearDown. -gtest_output_test_.cc:#: Failure -Failed -Expected failure #5, in the test fixture d'tor. -[ FAILED ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor -[----------] 1 test from FatalFailureInFixtureConstructorTest -[ RUN ] FatalFailureInFixtureConstructorTest.FailureInConstructor -(expecting 2 failures) -gtest_output_test_.cc:#: Failure -Failed -Expected failure #1, in the test fixture c'tor. -gtest_output_test_.cc:#: Failure -Failed -Expected failure #2, in the test fixture d'tor. -[ FAILED ] FatalFailureInFixtureConstructorTest.FailureInConstructor -[----------] 1 test from NonFatalFailureInSetUpTest -[ RUN ] NonFatalFailureInSetUpTest.FailureInSetUp -(expecting 4 failures) -gtest_output_test_.cc:#: Failure -Failed -Expected failure #1, in SetUp(). -gtest_output_test_.cc:#: Failure -Failed -Expected failure #2, in the test function. -gtest_output_test_.cc:#: Failure -Failed -Expected failure #3, in TearDown(). -gtest_output_test_.cc:#: Failure -Failed -Expected failure #4, in the test fixture d'tor. -[ FAILED ] NonFatalFailureInSetUpTest.FailureInSetUp -[----------] 1 test from FatalFailureInSetUpTest -[ RUN ] FatalFailureInSetUpTest.FailureInSetUp -(expecting 3 failures) -gtest_output_test_.cc:#: Failure -Failed -Expected failure #1, in SetUp(). -gtest_output_test_.cc:#: Failure -Failed -Expected failure #2, in TearDown(). -gtest_output_test_.cc:#: Failure -Failed -Expected failure #3, in the test fixture d'tor. -[ FAILED ] FatalFailureInSetUpTest.FailureInSetUp -[----------] 4 tests from MixedUpTestCaseTest -[ RUN ] MixedUpTestCaseTest.FirstTestFromNamespaceFoo -[ OK ] MixedUpTestCaseTest.FirstTestFromNamespaceFoo -[ RUN ] MixedUpTestCaseTest.SecondTestFromNamespaceFoo -[ OK ] MixedUpTestCaseTest.SecondTestFromNamespaceFoo -[ RUN ] MixedUpTestCaseTest.ThisShouldFail -gtest.cc:#: Failure -Failed -All tests in the same test case must use the same test fixture -class. However, in test case MixedUpTestCaseTest, -you defined test FirstTestFromNamespaceFoo and test ThisShouldFail -using two different test fixture classes. This can happen if -the two classes are from different namespaces or translation -units and have the same name. You should probably rename one -of the classes to put the tests into different test cases. -[ FAILED ] MixedUpTestCaseTest.ThisShouldFail -[ RUN ] MixedUpTestCaseTest.ThisShouldFailToo -gtest.cc:#: Failure -Failed -All tests in the same test case must use the same test fixture -class. However, in test case MixedUpTestCaseTest, -you defined test FirstTestFromNamespaceFoo and test ThisShouldFailToo -using two different test fixture classes. This can happen if -the two classes are from different namespaces or translation -units and have the same name. You should probably rename one -of the classes to put the tests into different test cases. -[ FAILED ] MixedUpTestCaseTest.ThisShouldFailToo -[----------] 2 tests from MixedUpTestCaseWithSameTestNameTest -[ RUN ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail -[ OK ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail -[ RUN ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail -gtest.cc:#: Failure -Failed -All tests in the same test case must use the same test fixture -class. However, in test case MixedUpTestCaseWithSameTestNameTest, -you defined test TheSecondTestWithThisNameShouldFail and test TheSecondTestWithThisNameShouldFail -using two different test fixture classes. This can happen if -the two classes are from different namespaces or translation -units and have the same name. You should probably rename one -of the classes to put the tests into different test cases. -[ FAILED ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail -[----------] 2 tests from TEST_F_before_TEST_in_same_test_case -[ RUN ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTEST_F -[ OK ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTEST_F -[ RUN ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail -gtest.cc:#: Failure -Failed -All tests in the same test case must use the same test fixture -class, so mixing TEST_F and TEST in the same test case is -illegal. In test case TEST_F_before_TEST_in_same_test_case, -test DefinedUsingTEST_F is defined using TEST_F but -test DefinedUsingTESTAndShouldFail is defined using TEST. You probably -want to change the TEST to TEST_F or move it to another test -case. -[ FAILED ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail -[----------] 2 tests from TEST_before_TEST_F_in_same_test_case -[ RUN ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST -[ OK ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST -[ RUN ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail -gtest.cc:#: Failure -Failed -All tests in the same test case must use the same test fixture -class, so mixing TEST_F and TEST in the same test case is -illegal. In test case TEST_before_TEST_F_in_same_test_case, -test DefinedUsingTEST_FAndShouldFail is defined using TEST_F but -test DefinedUsingTEST is defined using TEST. You probably -want to change the TEST to TEST_F or move it to another test -case. -[ FAILED ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail -[----------] 8 tests from ExpectNonfatalFailureTest -[ RUN ] ExpectNonfatalFailureTest.CanReferenceGlobalVariables -[ OK ] ExpectNonfatalFailureTest.CanReferenceGlobalVariables -[ RUN ] ExpectNonfatalFailureTest.CanReferenceLocalVariables -[ OK ] ExpectNonfatalFailureTest.CanReferenceLocalVariables -[ RUN ] ExpectNonfatalFailureTest.SucceedsWhenThereIsOneNonfatalFailure -[ OK ] ExpectNonfatalFailureTest.SucceedsWhenThereIsOneNonfatalFailure -[ RUN ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure -(expecting a failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure - Actual: 0 failures -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure -[ RUN ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures -(expecting a failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure - Actual: 2 failures -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure 1. - -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure 2. - -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures -[ RUN ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure -(expecting a failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure - Actual: -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure -[ RUN ] ExpectNonfatalFailureTest.FailsWhenStatementReturns -(expecting a failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure - Actual: 0 failures -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementReturns -[ RUN ] ExpectNonfatalFailureTest.FailsWhenStatementThrows -(expecting a failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure - Actual: 0 failures -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementThrows -[----------] 8 tests from ExpectFatalFailureTest -[ RUN ] ExpectFatalFailureTest.CanReferenceGlobalVariables -[ OK ] ExpectFatalFailureTest.CanReferenceGlobalVariables -[ RUN ] ExpectFatalFailureTest.CanReferenceLocalStaticVariables -[ OK ] ExpectFatalFailureTest.CanReferenceLocalStaticVariables -[ RUN ] ExpectFatalFailureTest.SucceedsWhenThereIsOneFatalFailure -[ OK ] ExpectFatalFailureTest.SucceedsWhenThereIsOneFatalFailure -[ RUN ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure -(expecting a failure) -gtest.cc:#: Failure -Expected: 1 fatal failure - Actual: 0 failures -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure -[ RUN ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures -(expecting a failure) -gtest.cc:#: Failure -Expected: 1 fatal failure - Actual: 2 failures -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures -[ RUN ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure -(expecting a failure) -gtest.cc:#: Failure -Expected: 1 fatal failure - Actual: -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure. - -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure -[ RUN ] ExpectFatalFailureTest.FailsWhenStatementReturns -(expecting a failure) -gtest.cc:#: Failure -Expected: 1 fatal failure - Actual: 0 failures -[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementReturns -[ RUN ] ExpectFatalFailureTest.FailsWhenStatementThrows -(expecting a failure) -gtest.cc:#: Failure -Expected: 1 fatal failure - Actual: 0 failures -[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementThrows -[----------] 2 tests from TypedTest/0, where TypeParam = int -[ RUN ] TypedTest/0.Success -[ OK ] TypedTest/0.Success -[ RUN ] TypedTest/0.Failure -gtest_output_test_.cc:#: Failure -Value of: TypeParam() - Actual: 0 -Expected: 1 -Expected failure -[ FAILED ] TypedTest/0.Failure -[----------] 2 tests from Unsigned/TypedTestP/0, where TypeParam = unsigned char -[ RUN ] Unsigned/TypedTestP/0.Success -[ OK ] Unsigned/TypedTestP/0.Success -[ RUN ] Unsigned/TypedTestP/0.Failure -gtest_output_test_.cc:#: Failure -Value of: TypeParam() - Actual: \0 -Expected: 1U -Which is: 1 -Expected failure -[ FAILED ] Unsigned/TypedTestP/0.Failure -[----------] 2 tests from Unsigned/TypedTestP/1, where TypeParam = unsigned int -[ RUN ] Unsigned/TypedTestP/1.Success -[ OK ] Unsigned/TypedTestP/1.Success -[ RUN ] Unsigned/TypedTestP/1.Failure -gtest_output_test_.cc:#: Failure -Value of: TypeParam() - Actual: 0 -Expected: 1U -Which is: 1 -Expected failure -[ FAILED ] Unsigned/TypedTestP/1.Failure -[----------] 4 tests from ExpectFailureTest -[ RUN ] ExpectFailureTest.ExpectFatalFailure -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 fatal failure - Actual: -gtest_output_test_.cc:#: Success: -Succeeded - -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 fatal failure - Actual: -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure. - -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 fatal failure containing "Some other fatal failure expected." - Actual: -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -[ FAILED ] ExpectFailureTest.ExpectFatalFailure -[ RUN ] ExpectFailureTest.ExpectNonFatalFailure -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure - Actual: -gtest_output_test_.cc:#: Success: -Succeeded - -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure - Actual: -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure containing "Some other non-fatal failure." - Actual: -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure. - -[ FAILED ] ExpectFailureTest.ExpectNonFatalFailure -[ RUN ] ExpectFailureTest.ExpectFatalFailureOnAllThreads -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 fatal failure - Actual: -gtest_output_test_.cc:#: Success: -Succeeded - -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 fatal failure - Actual: -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure. - -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 fatal failure containing "Some other fatal failure expected." - Actual: -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -[ FAILED ] ExpectFailureTest.ExpectFatalFailureOnAllThreads -[ RUN ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure - Actual: -gtest_output_test_.cc:#: Success: -Succeeded - -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure - Actual: -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -(expecting 1 failure) -gtest.cc:#: Failure -Expected: 1 non-fatal failure containing "Some other non-fatal failure." - Actual: -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure. - -[ FAILED ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads -[----------] 2 tests from ExpectFailureWithThreadsTest -[ RUN ] ExpectFailureWithThreadsTest.ExpectFatalFailure -(expecting 2 failures) -gtest_output_test_.cc:#: Failure -Failed -Expected fatal failure. -gtest.cc:#: Failure -Expected: 1 fatal failure - Actual: 0 failures -[ FAILED ] ExpectFailureWithThreadsTest.ExpectFatalFailure -[ RUN ] ExpectFailureWithThreadsTest.ExpectNonFatalFailure -(expecting 2 failures) -gtest_output_test_.cc:#: Failure -Failed -Expected non-fatal failure. -gtest.cc:#: Failure -Expected: 1 non-fatal failure - Actual: 0 failures -[ FAILED ] ExpectFailureWithThreadsTest.ExpectNonFatalFailure -[----------] 1 test from ScopedFakeTestPartResultReporterTest -[ RUN ] ScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread -(expecting 2 failures) -gtest_output_test_.cc:#: Failure -Failed -Expected fatal failure. -gtest_output_test_.cc:#: Failure -Failed -Expected non-fatal failure. -[ FAILED ] ScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread -[----------] Global test environment tear-down -BarEnvironment::TearDown() called. -gtest_output_test_.cc:#: Failure -Failed -Expected non-fatal failure. -FooEnvironment::TearDown() called. -gtest_output_test_.cc:#: Failure -Failed -Expected fatal failure. -[==========] 60 tests from 25 test cases ran. -[ PASSED ] 21 tests. -[ FAILED ] 39 tests, listed below: -[ FAILED ] FatalFailureTest.FatalFailureInSubroutine -[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine -[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine -[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions -[ FAILED ] SCOPED_TRACETest.ObeysScopes -[ FAILED ] SCOPED_TRACETest.WorksInLoop -[ FAILED ] SCOPED_TRACETest.WorksInSubroutine -[ FAILED ] SCOPED_TRACETest.CanBeNested -[ FAILED ] SCOPED_TRACETest.CanBeRepeated -[ FAILED ] SCOPED_TRACETest.WorksConcurrently -[ FAILED ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor -[ FAILED ] FatalFailureInFixtureConstructorTest.FailureInConstructor -[ FAILED ] NonFatalFailureInSetUpTest.FailureInSetUp -[ FAILED ] FatalFailureInSetUpTest.FailureInSetUp -[ FAILED ] MixedUpTestCaseTest.ThisShouldFail -[ FAILED ] MixedUpTestCaseTest.ThisShouldFailToo -[ FAILED ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail -[ FAILED ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail -[ FAILED ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementReturns -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementThrows -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure -[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementReturns -[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementThrows -[ FAILED ] TypedTest/0.Failure, where TypeParam = int -[ FAILED ] Unsigned/TypedTestP/0.Failure, where TypeParam = unsigned char -[ FAILED ] Unsigned/TypedTestP/1.Failure, where TypeParam = unsigned int -[ FAILED ] ExpectFailureTest.ExpectFatalFailure -[ FAILED ] ExpectFailureTest.ExpectNonFatalFailure -[ FAILED ] ExpectFailureTest.ExpectFatalFailureOnAllThreads -[ FAILED ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads -[ FAILED ] ExpectFailureWithThreadsTest.ExpectFatalFailure -[ FAILED ] ExpectFailureWithThreadsTest.ExpectNonFatalFailure -[ FAILED ] ScopedFakeTestPartResultReporterTest.InterceptOnlyCurrentThread - -39 FAILED TESTS - YOU HAVE 1 DISABLED TEST - -Note: Google Test filter = FatalFailureTest.*:LoggingTest.* -[==========] Running 4 tests from 2 test cases. -[----------] Global test environment set-up. -[----------] 3 tests from FatalFailureTest -[ RUN ] FatalFailureTest.FatalFailureInSubroutine -(expecting a failure that x should be 1) -gtest_output_test_.cc:#: Failure -Value of: x - Actual: 2 -Expected: 1 -[ FAILED ] FatalFailureTest.FatalFailureInSubroutine (? ms) -[ RUN ] FatalFailureTest.FatalFailureInNestedSubroutine -(expecting a failure that x should be 1) -gtest_output_test_.cc:#: Failure -Value of: x - Actual: 2 -Expected: 1 -[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine (? ms) -[ RUN ] FatalFailureTest.NonfatalFailureInSubroutine -(expecting a failure on false) -gtest_output_test_.cc:#: Failure -Value of: false - Actual: false -Expected: true -[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine (? ms) -[----------] 3 tests from FatalFailureTest (? ms total) - -[----------] 1 test from LoggingTest -[ RUN ] LoggingTest.InterleavingLoggingAndAssertions -(expecting 2 failures on (3) >= (a[i])) -i == 0 -i == 1 -gtest_output_test_.cc:#: Failure -Expected: (3) >= (a[i]), actual: 3 vs 9 -i == 2 -i == 3 -gtest_output_test_.cc:#: Failure -Expected: (3) >= (a[i]), actual: 3 vs 6 -[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions (? ms) -[----------] 1 test from LoggingTest (? ms total) - -[----------] Global test environment tear-down -[==========] 4 tests from 2 test cases ran. (? ms total) -[ PASSED ] 0 tests. -[ FAILED ] 4 tests, listed below: -[ FAILED ] FatalFailureTest.FatalFailureInSubroutine -[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine -[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine -[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions - - 4 FAILED TESTS - YOU HAVE 1 DISABLED TEST - -Note: Google Test filter = *DISABLED_* -[==========] Running 1 test from 1 test case. -[----------] Global test environment set-up. -[----------] 1 test from DisabledTestsWarningTest -[ RUN ] DisabledTestsWarningTest.DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning -[ OK ] DisabledTestsWarningTest.DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning -[----------] Global test environment tear-down -[==========] 1 test from 1 test case ran. -[ PASSED ] 1 test. -Note: Google Test filter = PassingTest.* -Note: This is test shard 1 of 2. -[==========] Running 1 test from 1 test case. -[----------] Global test environment set-up. -[----------] 1 test from PassingTest -[ RUN ] PassingTest.PassingTest2 -[ OK ] PassingTest.PassingTest2 -[----------] Global test environment tear-down -[==========] 1 test from 1 test case ran. -[ PASSED ] 1 test. - - YOU HAVE 1 DISABLED TEST - diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_golden_win.txt b/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_golden_win.txt deleted file mode 100644 index 313c3aafc..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_output_test_golden_win.txt +++ /dev/null @@ -1,605 +0,0 @@ -The non-test part of the code is expected to have 2 failures. - -gtest_output_test_.cc:#: error: Value of: false - Actual: false -Expected: true -gtest_output_test_.cc:#: error: Value of: 3 -Expected: 2 -[==========] Running 61 tests from 27 test cases. -[----------] Global test environment set-up. -FooEnvironment::SetUp() called. -BarEnvironment::SetUp() called. -[----------] 1 test from ADeathTest -[ RUN ] ADeathTest.ShouldRunFirst -[ OK ] ADeathTest.ShouldRunFirst -[----------] 1 test from ATypedDeathTest/0, where TypeParam = int -[ RUN ] ATypedDeathTest/0.ShouldRunFirst -[ OK ] ATypedDeathTest/0.ShouldRunFirst -[----------] 1 test from ATypedDeathTest/1, where TypeParam = double -[ RUN ] ATypedDeathTest/1.ShouldRunFirst -[ OK ] ATypedDeathTest/1.ShouldRunFirst -[----------] 1 test from My/ATypeParamDeathTest/0, where TypeParam = int -[ RUN ] My/ATypeParamDeathTest/0.ShouldRunFirst -[ OK ] My/ATypeParamDeathTest/0.ShouldRunFirst -[----------] 1 test from My/ATypeParamDeathTest/1, where TypeParam = double -[ RUN ] My/ATypeParamDeathTest/1.ShouldRunFirst -[ OK ] My/ATypeParamDeathTest/1.ShouldRunFirst -[----------] 2 tests from PassingTest -[ RUN ] PassingTest.PassingTest1 -[ OK ] PassingTest.PassingTest1 -[ RUN ] PassingTest.PassingTest2 -[ OK ] PassingTest.PassingTest2 -[----------] 3 tests from FatalFailureTest -[ RUN ] FatalFailureTest.FatalFailureInSubroutine -(expecting a failure that x should be 1) -gtest_output_test_.cc:#: error: Value of: x - Actual: 2 -Expected: 1 -[ FAILED ] FatalFailureTest.FatalFailureInSubroutine -[ RUN ] FatalFailureTest.FatalFailureInNestedSubroutine -(expecting a failure that x should be 1) -gtest_output_test_.cc:#: error: Value of: x - Actual: 2 -Expected: 1 -[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine -[ RUN ] FatalFailureTest.NonfatalFailureInSubroutine -(expecting a failure on false) -gtest_output_test_.cc:#: error: Value of: false - Actual: false -Expected: true -[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine -[----------] 1 test from LoggingTest -[ RUN ] LoggingTest.InterleavingLoggingAndAssertions -(expecting 2 failures on (3) >= (a[i])) -i == 0 -i == 1 -gtest_output_test_.cc:#: error: Expected: (3) >= (a[i]), actual: 3 vs 9 -i == 2 -i == 3 -gtest_output_test_.cc:#: error: Expected: (3) >= (a[i]), actual: 3 vs 6 -[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions -[----------] 5 tests from SCOPED_TRACETest -[ RUN ] SCOPED_TRACETest.ObeysScopes -(expected to fail) -gtest_output_test_.cc:#: error: Failed -This failure is expected, and shouldn't have a trace. -gtest_output_test_.cc:#: error: Failed -This failure is expected, and should have a trace. -Google Test trace: -gtest_output_test_.cc:#: Expected trace -gtest_output_test_.cc:#: error: Failed -This failure is expected, and shouldn't have a trace. -[ FAILED ] SCOPED_TRACETest.ObeysScopes -[ RUN ] SCOPED_TRACETest.WorksInLoop -(expected to fail) -gtest_output_test_.cc:#: error: Value of: n - Actual: 1 -Expected: 2 -Google Test trace: -gtest_output_test_.cc:#: i = 1 -gtest_output_test_.cc:#: error: Value of: n - Actual: 2 -Expected: 1 -Google Test trace: -gtest_output_test_.cc:#: i = 2 -[ FAILED ] SCOPED_TRACETest.WorksInLoop -[ RUN ] SCOPED_TRACETest.WorksInSubroutine -(expected to fail) -gtest_output_test_.cc:#: error: Value of: n - Actual: 1 -Expected: 2 -Google Test trace: -gtest_output_test_.cc:#: n = 1 -gtest_output_test_.cc:#: error: Value of: n - Actual: 2 -Expected: 1 -Google Test trace: -gtest_output_test_.cc:#: n = 2 -[ FAILED ] SCOPED_TRACETest.WorksInSubroutine -[ RUN ] SCOPED_TRACETest.CanBeNested -(expected to fail) -gtest_output_test_.cc:#: error: Value of: n - Actual: 2 -Expected: 1 -Google Test trace: -gtest_output_test_.cc:#: n = 2 -gtest_output_test_.cc:#: -[ FAILED ] SCOPED_TRACETest.CanBeNested -[ RUN ] SCOPED_TRACETest.CanBeRepeated -(expected to fail) -gtest_output_test_.cc:#: error: Failed -This failure is expected, and should contain trace point A. -Google Test trace: -gtest_output_test_.cc:#: A -gtest_output_test_.cc:#: error: Failed -This failure is expected, and should contain trace point A and B. -Google Test trace: -gtest_output_test_.cc:#: B -gtest_output_test_.cc:#: A -gtest_output_test_.cc:#: error: Failed -This failure is expected, and should contain trace point A, B, and C. -Google Test trace: -gtest_output_test_.cc:#: C -gtest_output_test_.cc:#: B -gtest_output_test_.cc:#: A -gtest_output_test_.cc:#: error: Failed -This failure is expected, and should contain trace point A, B, and D. -Google Test trace: -gtest_output_test_.cc:#: D -gtest_output_test_.cc:#: B -gtest_output_test_.cc:#: A -[ FAILED ] SCOPED_TRACETest.CanBeRepeated -[----------] 1 test from NonFatalFailureInFixtureConstructorTest -[ RUN ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor -(expecting 5 failures) -gtest_output_test_.cc:#: error: Failed -Expected failure #1, in the test fixture c'tor. -gtest_output_test_.cc:#: error: Failed -Expected failure #2, in SetUp(). -gtest_output_test_.cc:#: error: Failed -Expected failure #3, in the test body. -gtest_output_test_.cc:#: error: Failed -Expected failure #4, in TearDown. -gtest_output_test_.cc:#: error: Failed -Expected failure #5, in the test fixture d'tor. -[ FAILED ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor -[----------] 1 test from FatalFailureInFixtureConstructorTest -[ RUN ] FatalFailureInFixtureConstructorTest.FailureInConstructor -(expecting 2 failures) -gtest_output_test_.cc:#: error: Failed -Expected failure #1, in the test fixture c'tor. -gtest_output_test_.cc:#: error: Failed -Expected failure #2, in the test fixture d'tor. -[ FAILED ] FatalFailureInFixtureConstructorTest.FailureInConstructor -[----------] 1 test from NonFatalFailureInSetUpTest -[ RUN ] NonFatalFailureInSetUpTest.FailureInSetUp -(expecting 4 failures) -gtest_output_test_.cc:#: error: Failed -Expected failure #1, in SetUp(). -gtest_output_test_.cc:#: error: Failed -Expected failure #2, in the test function. -gtest_output_test_.cc:#: error: Failed -Expected failure #3, in TearDown(). -gtest_output_test_.cc:#: error: Failed -Expected failure #4, in the test fixture d'tor. -[ FAILED ] NonFatalFailureInSetUpTest.FailureInSetUp -[----------] 1 test from FatalFailureInSetUpTest -[ RUN ] FatalFailureInSetUpTest.FailureInSetUp -(expecting 3 failures) -gtest_output_test_.cc:#: error: Failed -Expected failure #1, in SetUp(). -gtest_output_test_.cc:#: error: Failed -Expected failure #2, in TearDown(). -gtest_output_test_.cc:#: error: Failed -Expected failure #3, in the test fixture d'tor. -[ FAILED ] FatalFailureInSetUpTest.FailureInSetUp -[----------] 1 test from ExceptionInFixtureCtorTest -[ RUN ] ExceptionInFixtureCtorTest.ExceptionInFixtureCtor -(expecting a failure on thrown exception in the test fixture's constructor) -unknown file: error: Exception thrown with code 0xc0000005 in the test fixture's constructor. -[----------] 1 test from ExceptionInSetUpTest -[ RUN ] ExceptionInSetUpTest.ExceptionInSetUp -(expecting 3 failures) -unknown file: error: Exception thrown with code 0xc0000005 in SetUp(). -gtest_output_test_.cc:#: error: Failed -Expected failure #2, in TearDown(). -gtest_output_test_.cc:#: error: Failed -Expected failure #3, in the test fixture d'tor. -[ FAILED ] ExceptionInSetUpTest.ExceptionInSetUp -[----------] 2 tests from ExceptionInTestFunctionTest -[ RUN ] ExceptionInTestFunctionTest.SEH -(expecting 3 failures) -unknown file: error: Exception thrown with code 0xc0000005 in the test body. -gtest_output_test_.cc:#: error: Failed -Expected failure #2, in TearDown(). -gtest_output_test_.cc:#: error: Failed -Expected failure #3, in the test fixture d'tor. -[ FAILED ] ExceptionInTestFunctionTest.SEH -[ RUN ] ExceptionInTestFunctionTest.CppException -unknown file: error: Exception thrown with code 0xe06d7363 in the test body. -gtest_output_test_.cc:#: error: Failed -Expected failure #2, in TearDown(). -gtest_output_test_.cc:#: error: Failed -Expected failure #3, in the test fixture d'tor. -[ FAILED ] ExceptionInTestFunctionTest.CppException -[----------] 1 test from ExceptionInTearDownTest -[ RUN ] ExceptionInTearDownTest.ExceptionInTearDown -(expecting 2 failures) -unknown file: error: Exception thrown with code 0xe06d7363 in TearDown(). -gtest_output_test_.cc:#: error: Failed -Expected failure #2, in the test fixture d'tor. -[ FAILED ] ExceptionInTearDownTest.ExceptionInTearDown -[----------] 4 tests from MixedUpTestCaseTest -[ RUN ] MixedUpTestCaseTest.FirstTestFromNamespaceFoo -[ OK ] MixedUpTestCaseTest.FirstTestFromNamespaceFoo -[ RUN ] MixedUpTestCaseTest.SecondTestFromNamespaceFoo -[ OK ] MixedUpTestCaseTest.SecondTestFromNamespaceFoo -[ RUN ] MixedUpTestCaseTest.ThisShouldFail -gtest.cc:#: error: Failed -All tests in the same test case must use the same test fixture -class. However, in test case MixedUpTestCaseTest, -you defined test FirstTestFromNamespaceFoo and test ThisShouldFail -using two different test fixture classes. This can happen if -the two classes are from different namespaces or translation -units and have the same name. You should probably rename one -of the classes to put the tests into different test cases. -[ FAILED ] MixedUpTestCaseTest.ThisShouldFail -[ RUN ] MixedUpTestCaseTest.ThisShouldFailToo -gtest.cc:#: error: Failed -All tests in the same test case must use the same test fixture -class. However, in test case MixedUpTestCaseTest, -you defined test FirstTestFromNamespaceFoo and test ThisShouldFailToo -using two different test fixture classes. This can happen if -the two classes are from different namespaces or translation -units and have the same name. You should probably rename one -of the classes to put the tests into different test cases. -[ FAILED ] MixedUpTestCaseTest.ThisShouldFailToo -[----------] 2 tests from MixedUpTestCaseWithSameTestNameTest -[ RUN ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail -[ OK ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail -[ RUN ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail -gtest.cc:#: error: Failed -All tests in the same test case must use the same test fixture -class. However, in test case MixedUpTestCaseWithSameTestNameTest, -you defined test TheSecondTestWithThisNameShouldFail and test TheSecondTestWithThisNameShouldFail -using two different test fixture classes. This can happen if -the two classes are from different namespaces or translation -units and have the same name. You should probably rename one -of the classes to put the tests into different test cases. -[ FAILED ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail -[----------] 2 tests from TEST_F_before_TEST_in_same_test_case -[ RUN ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTEST_F -[ OK ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTEST_F -[ RUN ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail -gtest.cc:#: error: Failed -All tests in the same test case must use the same test fixture -class, so mixing TEST_F and TEST in the same test case is -illegal. In test case TEST_F_before_TEST_in_same_test_case, -test DefinedUsingTEST_F is defined using TEST_F but -test DefinedUsingTESTAndShouldFail is defined using TEST. You probably -want to change the TEST to TEST_F or move it to another test -case. -[ FAILED ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail -[----------] 2 tests from TEST_before_TEST_F_in_same_test_case -[ RUN ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST -[ OK ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST -[ RUN ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail -gtest.cc:#: error: Failed -All tests in the same test case must use the same test fixture -class, so mixing TEST_F and TEST in the same test case is -illegal. In test case TEST_before_TEST_F_in_same_test_case, -test DefinedUsingTEST_FAndShouldFail is defined using TEST_F but -test DefinedUsingTEST is defined using TEST. You probably -want to change the TEST to TEST_F or move it to another test -case. -[ FAILED ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail -[----------] 8 tests from ExpectNonfatalFailureTest -[ RUN ] ExpectNonfatalFailureTest.CanReferenceGlobalVariables -[ OK ] ExpectNonfatalFailureTest.CanReferenceGlobalVariables -[ RUN ] ExpectNonfatalFailureTest.CanReferenceLocalVariables -[ OK ] ExpectNonfatalFailureTest.CanReferenceLocalVariables -[ RUN ] ExpectNonfatalFailureTest.SucceedsWhenThereIsOneNonfatalFailure -[ OK ] ExpectNonfatalFailureTest.SucceedsWhenThereIsOneNonfatalFailure -[ RUN ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure -(expecting a failure) -gtest.cc:#: error: Expected: 1 non-fatal failure - Actual: 0 failures -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure -[ RUN ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures -(expecting a failure) -gtest.cc:#: error: Expected: 1 non-fatal failure - Actual: 2 failures -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure 1. - -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure 2. - -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures -[ RUN ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure -(expecting a failure) -gtest.cc:#: error: Expected: 1 non-fatal failure - Actual: -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure -[ RUN ] ExpectNonfatalFailureTest.FailsWhenStatementReturns -(expecting a failure) -gtest.cc:#: error: Expected: 1 non-fatal failure - Actual: 0 failures -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementReturns -[ RUN ] ExpectNonfatalFailureTest.FailsWhenStatementThrows -(expecting a failure) -gtest.cc:#: error: Expected: 1 non-fatal failure - Actual: 0 failures -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementThrows -[----------] 8 tests from ExpectFatalFailureTest -[ RUN ] ExpectFatalFailureTest.CanReferenceGlobalVariables -[ OK ] ExpectFatalFailureTest.CanReferenceGlobalVariables -[ RUN ] ExpectFatalFailureTest.CanReferenceLocalStaticVariables -[ OK ] ExpectFatalFailureTest.CanReferenceLocalStaticVariables -[ RUN ] ExpectFatalFailureTest.SucceedsWhenThereIsOneFatalFailure -[ OK ] ExpectFatalFailureTest.SucceedsWhenThereIsOneFatalFailure -[ RUN ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure -(expecting a failure) -gtest.cc:#: error: Expected: 1 fatal failure - Actual: 0 failures -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure -[ RUN ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures -(expecting a failure) -gtest.cc:#: error: Expected: 1 fatal failure - Actual: 2 failures -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures -[ RUN ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure -(expecting a failure) -gtest.cc:#: error: Expected: 1 fatal failure - Actual: -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure. - -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure -[ RUN ] ExpectFatalFailureTest.FailsWhenStatementReturns -(expecting a failure) -gtest.cc:#: error: Expected: 1 fatal failure - Actual: 0 failures -[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementReturns -[ RUN ] ExpectFatalFailureTest.FailsWhenStatementThrows -(expecting a failure) -gtest.cc:#: error: Expected: 1 fatal failure - Actual: 0 failures -[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementThrows -[----------] 2 tests from TypedTest/0, where TypeParam = int -[ RUN ] TypedTest/0.Success -[ OK ] TypedTest/0.Success -[ RUN ] TypedTest/0.Failure -gtest_output_test_.cc:#: error: Value of: TypeParam() - Actual: 0 -Expected: 1 -Expected failure -[ FAILED ] TypedTest/0.Failure -[----------] 2 tests from Unsigned/TypedTestP/0, where TypeParam = unsigned char -[ RUN ] Unsigned/TypedTestP/0.Success -[ OK ] Unsigned/TypedTestP/0.Success -[ RUN ] Unsigned/TypedTestP/0.Failure -gtest_output_test_.cc:#: error: Value of: TypeParam() - Actual: \0 -Expected: 1U -Which is: 1 -Expected failure -[ FAILED ] Unsigned/TypedTestP/0.Failure -[----------] 2 tests from Unsigned/TypedTestP/1, where TypeParam = unsigned int -[ RUN ] Unsigned/TypedTestP/1.Success -[ OK ] Unsigned/TypedTestP/1.Success -[ RUN ] Unsigned/TypedTestP/1.Failure -gtest_output_test_.cc:#: error: Value of: TypeParam() - Actual: 0 -Expected: 1U -Which is: 1 -Expected failure -[ FAILED ] Unsigned/TypedTestP/1.Failure -[----------] 4 tests from ExpectFailureTest -[ RUN ] ExpectFailureTest.ExpectFatalFailure -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 fatal failure - Actual: -gtest_output_test_.cc:#: Success: -Succeeded - -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 fatal failure - Actual: -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure. - -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 fatal failure containing "Some other fatal failure expected." - Actual: -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -[ FAILED ] ExpectFailureTest.ExpectFatalFailure -[ RUN ] ExpectFailureTest.ExpectNonFatalFailure -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 non-fatal failure - Actual: -gtest_output_test_.cc:#: Success: -Succeeded - -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 non-fatal failure - Actual: -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 non-fatal failure containing "Some other non-fatal failure." - Actual: -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure. - -[ FAILED ] ExpectFailureTest.ExpectNonFatalFailure -[ RUN ] ExpectFailureTest.ExpectFatalFailureOnAllThreads -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 fatal failure - Actual: -gtest_output_test_.cc:#: Success: -Succeeded - -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 fatal failure - Actual: -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure. - -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 fatal failure containing "Some other fatal failure expected." - Actual: -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -[ FAILED ] ExpectFailureTest.ExpectFatalFailureOnAllThreads -[ RUN ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 non-fatal failure - Actual: -gtest_output_test_.cc:#: Success: -Succeeded - -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 non-fatal failure - Actual: -gtest_output_test_.cc:#: Fatal failure: -Failed -Expected fatal failure. - -(expecting 1 failure) -gtest.cc:#: error: Expected: 1 non-fatal failure containing "Some other non-fatal failure." - Actual: -gtest_output_test_.cc:#: Non-fatal failure: -Failed -Expected non-fatal failure. - -[ FAILED ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads -[----------] Global test environment tear-down -BarEnvironment::TearDown() called. -gtest_output_test_.cc:#: error: Failed -Expected non-fatal failure. -FooEnvironment::TearDown() called. -gtest_output_test_.cc:#: error: Failed -Expected fatal failure. -[==========] 61 tests from 27 test cases ran. -[ PASSED ] 21 tests. -[ FAILED ] 40 tests, listed below: -[ FAILED ] FatalFailureTest.FatalFailureInSubroutine -[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine -[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine -[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions -[ FAILED ] SCOPED_TRACETest.ObeysScopes -[ FAILED ] SCOPED_TRACETest.WorksInLoop -[ FAILED ] SCOPED_TRACETest.WorksInSubroutine -[ FAILED ] SCOPED_TRACETest.CanBeNested -[ FAILED ] SCOPED_TRACETest.CanBeRepeated -[ FAILED ] NonFatalFailureInFixtureConstructorTest.FailureInConstructor -[ FAILED ] FatalFailureInFixtureConstructorTest.FailureInConstructor -[ FAILED ] NonFatalFailureInSetUpTest.FailureInSetUp -[ FAILED ] FatalFailureInSetUpTest.FailureInSetUp -[ FAILED ] ExceptionInFixtureCtorTest.ExceptionInFixtureCtor -[ FAILED ] ExceptionInSetUpTest.ExceptionInSetUp -[ FAILED ] ExceptionInTestFunctionTest.SEH -[ FAILED ] ExceptionInTestFunctionTest.CppException -[ FAILED ] ExceptionInTearDownTest.ExceptionInTearDown -[ FAILED ] MixedUpTestCaseTest.ThisShouldFail -[ FAILED ] MixedUpTestCaseTest.ThisShouldFailToo -[ FAILED ] MixedUpTestCaseWithSameTestNameTest.TheSecondTestWithThisNameShouldFail -[ FAILED ] TEST_F_before_TEST_in_same_test_case.DefinedUsingTESTAndShouldFail -[ FAILED ] TEST_before_TEST_F_in_same_test_case.DefinedUsingTEST_FAndShouldFail -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsNoNonfatalFailure -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereAreTwoNonfatalFailures -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenThereIsOneFatalFailure -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementReturns -[ FAILED ] ExpectNonfatalFailureTest.FailsWhenStatementThrows -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsNoFatalFailure -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereAreTwoFatalFailures -[ FAILED ] ExpectFatalFailureTest.FailsWhenThereIsOneNonfatalFailure -[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementReturns -[ FAILED ] ExpectFatalFailureTest.FailsWhenStatementThrows -[ FAILED ] TypedTest/0.Failure, where TypeParam = int -[ FAILED ] Unsigned/TypedTestP/0.Failure, where TypeParam = unsigned char -[ FAILED ] Unsigned/TypedTestP/1.Failure, where TypeParam = unsigned int -[ FAILED ] ExpectFailureTest.ExpectFatalFailure -[ FAILED ] ExpectFailureTest.ExpectNonFatalFailure -[ FAILED ] ExpectFailureTest.ExpectFatalFailureOnAllThreads -[ FAILED ] ExpectFailureTest.ExpectNonFatalFailureOnAllThreads - -40 FAILED TESTS - YOU HAVE 1 DISABLED TEST - -Note: Google Test filter = FatalFailureTest.*:LoggingTest.* -[==========] Running 4 tests from 2 test cases. -[----------] Global test environment set-up. -[----------] 3 tests from FatalFailureTest -[ RUN ] FatalFailureTest.FatalFailureInSubroutine -(expecting a failure that x should be 1) -gtest_output_test_.cc:#: error: Value of: x - Actual: 2 -Expected: 1 -[ FAILED ] FatalFailureTest.FatalFailureInSubroutine (? ms) -[ RUN ] FatalFailureTest.FatalFailureInNestedSubroutine -(expecting a failure that x should be 1) -gtest_output_test_.cc:#: error: Value of: x - Actual: 2 -Expected: 1 -[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine (? ms) -[ RUN ] FatalFailureTest.NonfatalFailureInSubroutine -(expecting a failure on false) -gtest_output_test_.cc:#: error: Value of: false - Actual: false -Expected: true -[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine (? ms) -[----------] 3 tests from FatalFailureTest (? ms total) - -[----------] 1 test from LoggingTest -[ RUN ] LoggingTest.InterleavingLoggingAndAssertions -(expecting 2 failures on (3) >= (a[i])) -i == 0 -i == 1 -gtest_output_test_.cc:#: error: Expected: (3) >= (a[i]), actual: 3 vs 9 -i == 2 -i == 3 -gtest_output_test_.cc:#: error: Expected: (3) >= (a[i]), actual: 3 vs 6 -[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions (? ms) -[----------] 1 test from LoggingTest (? ms total) - -[----------] Global test environment tear-down -[==========] 4 tests from 2 test cases ran. (? ms total) -[ PASSED ] 0 tests. -[ FAILED ] 4 tests, listed below: -[ FAILED ] FatalFailureTest.FatalFailureInSubroutine -[ FAILED ] FatalFailureTest.FatalFailureInNestedSubroutine -[ FAILED ] FatalFailureTest.NonfatalFailureInSubroutine -[ FAILED ] LoggingTest.InterleavingLoggingAndAssertions - - 4 FAILED TESTS - YOU HAVE 1 DISABLED TEST - -Note: Google Test filter = *DISABLED_* -[==========] Running 1 test from 1 test case. -[----------] Global test environment set-up. -[----------] 1 test from DisabledTestsWarningTest -[ RUN ] DisabledTestsWarningTest.DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning -[ OK ] DisabledTestsWarningTest.DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning -[----------] Global test environment tear-down -[==========] 1 test from 1 test case ran. -[ PASSED ] 1 test. -Note: Google Test filter = PassingTest.* -Note: This is test shard 1 of 2. -[==========] Running 1 test from 1 test case. -[----------] Global test environment set-up. -[----------] 1 test from PassingTest -[ RUN ] PassingTest.PassingTest2 -[ OK ] PassingTest.PassingTest2 -[----------] Global test environment tear-down -[==========] 1 test from 1 test case ran. -[ PASSED ] 1 test. - - YOU HAVE 1 DISABLED TEST - diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_pred_impl_unittest.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_pred_impl_unittest.cc deleted file mode 100644 index e7ee54b56..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_pred_impl_unittest.cc +++ /dev/null @@ -1,2432 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// This file is AUTOMATICALLY GENERATED on 10/02/2008 by command -// 'gen_gtest_pred_impl.py 5'. DO NOT EDIT BY HAND! - -// Regression test for gtest_pred_impl.h -// -// This file is generated by a script and quite long. If you intend to -// learn how Google Test works by reading its unit tests, read -// gtest_unittest.cc instead. -// -// This is intended as a regression test for the Google Test predicate -// assertions. We compile it as part of the gtest_unittest target -// only to keep the implementation tidy and compact, as it is quite -// involved to set up the stage for testing Google Test using Google -// Test itself. -// -// Currently, gtest_unittest takes ~11 seconds to run in the testing -// daemon. In the future, if it grows too large and needs much more -// time to finish, we should consider separating this file into a -// stand-alone regression test. - -#include - -#include -#include - -// A user-defined data type. -struct Bool { - explicit Bool(int val) : value(val != 0) {} - - bool operator>(int n) const { return value > Bool(n).value; } - - Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); } - - bool operator==(const Bool& rhs) const { return value == rhs.value; } - - bool value; -}; - -// Enables Bool to be used in assertions. -std::ostream& operator<<(std::ostream& os, const Bool& x) { - return os << (x.value ? "true" : "false"); -} - -// Sample functions/functors for testing unary predicate assertions. - -// A unary predicate function. -template -bool PredFunction1(T1 v1) { - return v1 > 0; -} - -// The following two functions are needed to circumvent a bug in -// gcc 2.95.3, which sometimes has problem with the above template -// function. -bool PredFunction1Int(int v1) { - return v1 > 0; -} -bool PredFunction1Bool(Bool v1) { - return v1 > 0; -} - -// A unary predicate functor. -struct PredFunctor1 { - template - bool operator()(const T1& v1) { - return v1 > 0; - } -}; - -// A unary predicate-formatter function. -template -testing::AssertionResult PredFormatFunction1(const char* e1, - const T1& v1) { - if (PredFunction1(v1)) - return testing::AssertionSuccess(); - - testing::Message msg; - msg << e1 - << " is expected to be positive, but evaluates to " - << v1 << "."; - return testing::AssertionFailure(msg); -} - -// A unary predicate-formatter functor. -struct PredFormatFunctor1 { - template - testing::AssertionResult operator()(const char* e1, - const T1& v1) const { - return PredFormatFunction1(e1, v1); - } -}; - -// Tests for {EXPECT|ASSERT}_PRED_FORMAT1. - -class Predicate1Test : public testing::Test { - protected: - virtual void SetUp() { - expected_to_finish_ = true; - finished_ = false; - n1_ = 0; - } - - virtual void TearDown() { - // Verifies that each of the predicate's arguments was evaluated - // exactly once. - EXPECT_EQ(1, n1_) << - "The predicate assertion didn't evaluate argument 2 " - "exactly once."; - - // Verifies that the control flow in the test function is expected. - if (expected_to_finish_ && !finished_) { - FAIL() << "The predicate assertion unexpactedly aborted the test."; - } else if (!expected_to_finish_ && finished_) { - FAIL() << "The failed predicate assertion didn't abort the test " - "as expected."; - } - } - - // true iff the test function is expected to run to finish. - static bool expected_to_finish_; - - // true iff the test function did run to finish. - static bool finished_; - - static int n1_; -}; - -bool Predicate1Test::expected_to_finish_; -bool Predicate1Test::finished_; -int Predicate1Test::n1_; - -typedef Predicate1Test EXPECT_PRED_FORMAT1Test; -typedef Predicate1Test ASSERT_PRED_FORMAT1Test; -typedef Predicate1Test EXPECT_PRED1Test; -typedef Predicate1Test ASSERT_PRED1Test; - -// Tests a successful EXPECT_PRED1 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED1Test, FunctionOnBuiltInTypeSuccess) { - EXPECT_PRED1(PredFunction1Int, - ++n1_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED1 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED1Test, FunctionOnUserTypeSuccess) { - EXPECT_PRED1(PredFunction1Bool, - Bool(++n1_)); - finished_ = true; -} - -// Tests a successful EXPECT_PRED1 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED1Test, FunctorOnBuiltInTypeSuccess) { - EXPECT_PRED1(PredFunctor1(), - ++n1_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED1 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED1Test, FunctorOnUserTypeSuccess) { - EXPECT_PRED1(PredFunctor1(), - Bool(++n1_)); - finished_ = true; -} - -// Tests a failed EXPECT_PRED1 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED1Test, FunctionOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED1(PredFunction1Int, - n1_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED1 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED1Test, FunctionOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED1(PredFunction1Bool, - Bool(n1_++)); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED1 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED1Test, FunctorOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED1(PredFunctor1(), - n1_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED1 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED1Test, FunctorOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED1(PredFunctor1(), - Bool(n1_++)); - finished_ = true; - }, ""); -} - -// Tests a successful ASSERT_PRED1 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED1Test, FunctionOnBuiltInTypeSuccess) { - ASSERT_PRED1(PredFunction1Int, - ++n1_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED1 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED1Test, FunctionOnUserTypeSuccess) { - ASSERT_PRED1(PredFunction1Bool, - Bool(++n1_)); - finished_ = true; -} - -// Tests a successful ASSERT_PRED1 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED1Test, FunctorOnBuiltInTypeSuccess) { - ASSERT_PRED1(PredFunctor1(), - ++n1_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED1 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED1Test, FunctorOnUserTypeSuccess) { - ASSERT_PRED1(PredFunctor1(), - Bool(++n1_)); - finished_ = true; -} - -// Tests a failed ASSERT_PRED1 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED1Test, FunctionOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED1(PredFunction1Int, - n1_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED1 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED1Test, FunctionOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED1(PredFunction1Bool, - Bool(n1_++)); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED1 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED1Test, FunctorOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED1(PredFunctor1(), - n1_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED1 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED1Test, FunctorOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED1(PredFunctor1(), - Bool(n1_++)); - finished_ = true; - }, ""); -} - -// Tests a successful EXPECT_PRED_FORMAT1 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT1Test, FunctionOnBuiltInTypeSuccess) { - EXPECT_PRED_FORMAT1(PredFormatFunction1, - ++n1_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT1 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT1Test, FunctionOnUserTypeSuccess) { - EXPECT_PRED_FORMAT1(PredFormatFunction1, - Bool(++n1_)); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT1 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT1Test, FunctorOnBuiltInTypeSuccess) { - EXPECT_PRED_FORMAT1(PredFormatFunctor1(), - ++n1_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT1 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT1Test, FunctorOnUserTypeSuccess) { - EXPECT_PRED_FORMAT1(PredFormatFunctor1(), - Bool(++n1_)); - finished_ = true; -} - -// Tests a failed EXPECT_PRED_FORMAT1 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT1Test, FunctionOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT1(PredFormatFunction1, - n1_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT1 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT1Test, FunctionOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT1(PredFormatFunction1, - Bool(n1_++)); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT1 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT1Test, FunctorOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT1(PredFormatFunctor1(), - n1_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT1 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT1Test, FunctorOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT1(PredFormatFunctor1(), - Bool(n1_++)); - finished_ = true; - }, ""); -} - -// Tests a successful ASSERT_PRED_FORMAT1 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT1Test, FunctionOnBuiltInTypeSuccess) { - ASSERT_PRED_FORMAT1(PredFormatFunction1, - ++n1_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT1 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT1Test, FunctionOnUserTypeSuccess) { - ASSERT_PRED_FORMAT1(PredFormatFunction1, - Bool(++n1_)); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT1 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT1Test, FunctorOnBuiltInTypeSuccess) { - ASSERT_PRED_FORMAT1(PredFormatFunctor1(), - ++n1_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT1 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT1Test, FunctorOnUserTypeSuccess) { - ASSERT_PRED_FORMAT1(PredFormatFunctor1(), - Bool(++n1_)); - finished_ = true; -} - -// Tests a failed ASSERT_PRED_FORMAT1 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT1Test, FunctionOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT1(PredFormatFunction1, - n1_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT1 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT1Test, FunctionOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT1(PredFormatFunction1, - Bool(n1_++)); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT1 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT1Test, FunctorOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT1(PredFormatFunctor1(), - n1_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT1 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT1Test, FunctorOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT1(PredFormatFunctor1(), - Bool(n1_++)); - finished_ = true; - }, ""); -} -// Sample functions/functors for testing binary predicate assertions. - -// A binary predicate function. -template -bool PredFunction2(T1 v1, T2 v2) { - return v1 + v2 > 0; -} - -// The following two functions are needed to circumvent a bug in -// gcc 2.95.3, which sometimes has problem with the above template -// function. -bool PredFunction2Int(int v1, int v2) { - return v1 + v2 > 0; -} -bool PredFunction2Bool(Bool v1, Bool v2) { - return v1 + v2 > 0; -} - -// A binary predicate functor. -struct PredFunctor2 { - template - bool operator()(const T1& v1, - const T2& v2) { - return v1 + v2 > 0; - } -}; - -// A binary predicate-formatter function. -template -testing::AssertionResult PredFormatFunction2(const char* e1, - const char* e2, - const T1& v1, - const T2& v2) { - if (PredFunction2(v1, v2)) - return testing::AssertionSuccess(); - - testing::Message msg; - msg << e1 << " + " << e2 - << " is expected to be positive, but evaluates to " - << v1 + v2 << "."; - return testing::AssertionFailure(msg); -} - -// A binary predicate-formatter functor. -struct PredFormatFunctor2 { - template - testing::AssertionResult operator()(const char* e1, - const char* e2, - const T1& v1, - const T2& v2) const { - return PredFormatFunction2(e1, e2, v1, v2); - } -}; - -// Tests for {EXPECT|ASSERT}_PRED_FORMAT2. - -class Predicate2Test : public testing::Test { - protected: - virtual void SetUp() { - expected_to_finish_ = true; - finished_ = false; - n1_ = n2_ = 0; - } - - virtual void TearDown() { - // Verifies that each of the predicate's arguments was evaluated - // exactly once. - EXPECT_EQ(1, n1_) << - "The predicate assertion didn't evaluate argument 2 " - "exactly once."; - EXPECT_EQ(1, n2_) << - "The predicate assertion didn't evaluate argument 3 " - "exactly once."; - - // Verifies that the control flow in the test function is expected. - if (expected_to_finish_ && !finished_) { - FAIL() << "The predicate assertion unexpactedly aborted the test."; - } else if (!expected_to_finish_ && finished_) { - FAIL() << "The failed predicate assertion didn't abort the test " - "as expected."; - } - } - - // true iff the test function is expected to run to finish. - static bool expected_to_finish_; - - // true iff the test function did run to finish. - static bool finished_; - - static int n1_; - static int n2_; -}; - -bool Predicate2Test::expected_to_finish_; -bool Predicate2Test::finished_; -int Predicate2Test::n1_; -int Predicate2Test::n2_; - -typedef Predicate2Test EXPECT_PRED_FORMAT2Test; -typedef Predicate2Test ASSERT_PRED_FORMAT2Test; -typedef Predicate2Test EXPECT_PRED2Test; -typedef Predicate2Test ASSERT_PRED2Test; - -// Tests a successful EXPECT_PRED2 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED2Test, FunctionOnBuiltInTypeSuccess) { - EXPECT_PRED2(PredFunction2Int, - ++n1_, - ++n2_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED2 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED2Test, FunctionOnUserTypeSuccess) { - EXPECT_PRED2(PredFunction2Bool, - Bool(++n1_), - Bool(++n2_)); - finished_ = true; -} - -// Tests a successful EXPECT_PRED2 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED2Test, FunctorOnBuiltInTypeSuccess) { - EXPECT_PRED2(PredFunctor2(), - ++n1_, - ++n2_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED2 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED2Test, FunctorOnUserTypeSuccess) { - EXPECT_PRED2(PredFunctor2(), - Bool(++n1_), - Bool(++n2_)); - finished_ = true; -} - -// Tests a failed EXPECT_PRED2 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED2Test, FunctionOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED2(PredFunction2Int, - n1_++, - n2_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED2 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED2Test, FunctionOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED2(PredFunction2Bool, - Bool(n1_++), - Bool(n2_++)); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED2 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED2Test, FunctorOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED2(PredFunctor2(), - n1_++, - n2_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED2 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED2Test, FunctorOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED2(PredFunctor2(), - Bool(n1_++), - Bool(n2_++)); - finished_ = true; - }, ""); -} - -// Tests a successful ASSERT_PRED2 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED2Test, FunctionOnBuiltInTypeSuccess) { - ASSERT_PRED2(PredFunction2Int, - ++n1_, - ++n2_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED2 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED2Test, FunctionOnUserTypeSuccess) { - ASSERT_PRED2(PredFunction2Bool, - Bool(++n1_), - Bool(++n2_)); - finished_ = true; -} - -// Tests a successful ASSERT_PRED2 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED2Test, FunctorOnBuiltInTypeSuccess) { - ASSERT_PRED2(PredFunctor2(), - ++n1_, - ++n2_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED2 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED2Test, FunctorOnUserTypeSuccess) { - ASSERT_PRED2(PredFunctor2(), - Bool(++n1_), - Bool(++n2_)); - finished_ = true; -} - -// Tests a failed ASSERT_PRED2 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED2Test, FunctionOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED2(PredFunction2Int, - n1_++, - n2_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED2 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED2Test, FunctionOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED2(PredFunction2Bool, - Bool(n1_++), - Bool(n2_++)); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED2 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED2Test, FunctorOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED2(PredFunctor2(), - n1_++, - n2_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED2 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED2Test, FunctorOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED2(PredFunctor2(), - Bool(n1_++), - Bool(n2_++)); - finished_ = true; - }, ""); -} - -// Tests a successful EXPECT_PRED_FORMAT2 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT2Test, FunctionOnBuiltInTypeSuccess) { - EXPECT_PRED_FORMAT2(PredFormatFunction2, - ++n1_, - ++n2_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT2 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT2Test, FunctionOnUserTypeSuccess) { - EXPECT_PRED_FORMAT2(PredFormatFunction2, - Bool(++n1_), - Bool(++n2_)); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT2 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT2Test, FunctorOnBuiltInTypeSuccess) { - EXPECT_PRED_FORMAT2(PredFormatFunctor2(), - ++n1_, - ++n2_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT2 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT2Test, FunctorOnUserTypeSuccess) { - EXPECT_PRED_FORMAT2(PredFormatFunctor2(), - Bool(++n1_), - Bool(++n2_)); - finished_ = true; -} - -// Tests a failed EXPECT_PRED_FORMAT2 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT2Test, FunctionOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT2(PredFormatFunction2, - n1_++, - n2_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT2 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT2Test, FunctionOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT2(PredFormatFunction2, - Bool(n1_++), - Bool(n2_++)); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT2 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT2Test, FunctorOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT2(PredFormatFunctor2(), - n1_++, - n2_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT2 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT2Test, FunctorOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT2(PredFormatFunctor2(), - Bool(n1_++), - Bool(n2_++)); - finished_ = true; - }, ""); -} - -// Tests a successful ASSERT_PRED_FORMAT2 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT2Test, FunctionOnBuiltInTypeSuccess) { - ASSERT_PRED_FORMAT2(PredFormatFunction2, - ++n1_, - ++n2_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT2 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT2Test, FunctionOnUserTypeSuccess) { - ASSERT_PRED_FORMAT2(PredFormatFunction2, - Bool(++n1_), - Bool(++n2_)); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT2 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT2Test, FunctorOnBuiltInTypeSuccess) { - ASSERT_PRED_FORMAT2(PredFormatFunctor2(), - ++n1_, - ++n2_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT2 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT2Test, FunctorOnUserTypeSuccess) { - ASSERT_PRED_FORMAT2(PredFormatFunctor2(), - Bool(++n1_), - Bool(++n2_)); - finished_ = true; -} - -// Tests a failed ASSERT_PRED_FORMAT2 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT2Test, FunctionOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT2(PredFormatFunction2, - n1_++, - n2_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT2 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT2Test, FunctionOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT2(PredFormatFunction2, - Bool(n1_++), - Bool(n2_++)); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT2 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT2Test, FunctorOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT2(PredFormatFunctor2(), - n1_++, - n2_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT2 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT2Test, FunctorOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT2(PredFormatFunctor2(), - Bool(n1_++), - Bool(n2_++)); - finished_ = true; - }, ""); -} -// Sample functions/functors for testing ternary predicate assertions. - -// A ternary predicate function. -template -bool PredFunction3(T1 v1, T2 v2, T3 v3) { - return v1 + v2 + v3 > 0; -} - -// The following two functions are needed to circumvent a bug in -// gcc 2.95.3, which sometimes has problem with the above template -// function. -bool PredFunction3Int(int v1, int v2, int v3) { - return v1 + v2 + v3 > 0; -} -bool PredFunction3Bool(Bool v1, Bool v2, Bool v3) { - return v1 + v2 + v3 > 0; -} - -// A ternary predicate functor. -struct PredFunctor3 { - template - bool operator()(const T1& v1, - const T2& v2, - const T3& v3) { - return v1 + v2 + v3 > 0; - } -}; - -// A ternary predicate-formatter function. -template -testing::AssertionResult PredFormatFunction3(const char* e1, - const char* e2, - const char* e3, - const T1& v1, - const T2& v2, - const T3& v3) { - if (PredFunction3(v1, v2, v3)) - return testing::AssertionSuccess(); - - testing::Message msg; - msg << e1 << " + " << e2 << " + " << e3 - << " is expected to be positive, but evaluates to " - << v1 + v2 + v3 << "."; - return testing::AssertionFailure(msg); -} - -// A ternary predicate-formatter functor. -struct PredFormatFunctor3 { - template - testing::AssertionResult operator()(const char* e1, - const char* e2, - const char* e3, - const T1& v1, - const T2& v2, - const T3& v3) const { - return PredFormatFunction3(e1, e2, e3, v1, v2, v3); - } -}; - -// Tests for {EXPECT|ASSERT}_PRED_FORMAT3. - -class Predicate3Test : public testing::Test { - protected: - virtual void SetUp() { - expected_to_finish_ = true; - finished_ = false; - n1_ = n2_ = n3_ = 0; - } - - virtual void TearDown() { - // Verifies that each of the predicate's arguments was evaluated - // exactly once. - EXPECT_EQ(1, n1_) << - "The predicate assertion didn't evaluate argument 2 " - "exactly once."; - EXPECT_EQ(1, n2_) << - "The predicate assertion didn't evaluate argument 3 " - "exactly once."; - EXPECT_EQ(1, n3_) << - "The predicate assertion didn't evaluate argument 4 " - "exactly once."; - - // Verifies that the control flow in the test function is expected. - if (expected_to_finish_ && !finished_) { - FAIL() << "The predicate assertion unexpactedly aborted the test."; - } else if (!expected_to_finish_ && finished_) { - FAIL() << "The failed predicate assertion didn't abort the test " - "as expected."; - } - } - - // true iff the test function is expected to run to finish. - static bool expected_to_finish_; - - // true iff the test function did run to finish. - static bool finished_; - - static int n1_; - static int n2_; - static int n3_; -}; - -bool Predicate3Test::expected_to_finish_; -bool Predicate3Test::finished_; -int Predicate3Test::n1_; -int Predicate3Test::n2_; -int Predicate3Test::n3_; - -typedef Predicate3Test EXPECT_PRED_FORMAT3Test; -typedef Predicate3Test ASSERT_PRED_FORMAT3Test; -typedef Predicate3Test EXPECT_PRED3Test; -typedef Predicate3Test ASSERT_PRED3Test; - -// Tests a successful EXPECT_PRED3 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED3Test, FunctionOnBuiltInTypeSuccess) { - EXPECT_PRED3(PredFunction3Int, - ++n1_, - ++n2_, - ++n3_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED3 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED3Test, FunctionOnUserTypeSuccess) { - EXPECT_PRED3(PredFunction3Bool, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_)); - finished_ = true; -} - -// Tests a successful EXPECT_PRED3 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED3Test, FunctorOnBuiltInTypeSuccess) { - EXPECT_PRED3(PredFunctor3(), - ++n1_, - ++n2_, - ++n3_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED3 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED3Test, FunctorOnUserTypeSuccess) { - EXPECT_PRED3(PredFunctor3(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_)); - finished_ = true; -} - -// Tests a failed EXPECT_PRED3 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED3Test, FunctionOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED3(PredFunction3Int, - n1_++, - n2_++, - n3_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED3 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED3Test, FunctionOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED3(PredFunction3Bool, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++)); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED3 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED3Test, FunctorOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED3(PredFunctor3(), - n1_++, - n2_++, - n3_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED3 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED3Test, FunctorOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED3(PredFunctor3(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++)); - finished_ = true; - }, ""); -} - -// Tests a successful ASSERT_PRED3 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED3Test, FunctionOnBuiltInTypeSuccess) { - ASSERT_PRED3(PredFunction3Int, - ++n1_, - ++n2_, - ++n3_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED3 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED3Test, FunctionOnUserTypeSuccess) { - ASSERT_PRED3(PredFunction3Bool, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_)); - finished_ = true; -} - -// Tests a successful ASSERT_PRED3 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED3Test, FunctorOnBuiltInTypeSuccess) { - ASSERT_PRED3(PredFunctor3(), - ++n1_, - ++n2_, - ++n3_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED3 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED3Test, FunctorOnUserTypeSuccess) { - ASSERT_PRED3(PredFunctor3(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_)); - finished_ = true; -} - -// Tests a failed ASSERT_PRED3 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED3Test, FunctionOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED3(PredFunction3Int, - n1_++, - n2_++, - n3_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED3 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED3Test, FunctionOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED3(PredFunction3Bool, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++)); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED3 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED3Test, FunctorOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED3(PredFunctor3(), - n1_++, - n2_++, - n3_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED3 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED3Test, FunctorOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED3(PredFunctor3(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++)); - finished_ = true; - }, ""); -} - -// Tests a successful EXPECT_PRED_FORMAT3 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT3Test, FunctionOnBuiltInTypeSuccess) { - EXPECT_PRED_FORMAT3(PredFormatFunction3, - ++n1_, - ++n2_, - ++n3_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT3 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT3Test, FunctionOnUserTypeSuccess) { - EXPECT_PRED_FORMAT3(PredFormatFunction3, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_)); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT3 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT3Test, FunctorOnBuiltInTypeSuccess) { - EXPECT_PRED_FORMAT3(PredFormatFunctor3(), - ++n1_, - ++n2_, - ++n3_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT3 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT3Test, FunctorOnUserTypeSuccess) { - EXPECT_PRED_FORMAT3(PredFormatFunctor3(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_)); - finished_ = true; -} - -// Tests a failed EXPECT_PRED_FORMAT3 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT3Test, FunctionOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT3(PredFormatFunction3, - n1_++, - n2_++, - n3_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT3 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT3Test, FunctionOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT3(PredFormatFunction3, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++)); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT3 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT3Test, FunctorOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT3(PredFormatFunctor3(), - n1_++, - n2_++, - n3_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT3 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT3Test, FunctorOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT3(PredFormatFunctor3(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++)); - finished_ = true; - }, ""); -} - -// Tests a successful ASSERT_PRED_FORMAT3 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT3Test, FunctionOnBuiltInTypeSuccess) { - ASSERT_PRED_FORMAT3(PredFormatFunction3, - ++n1_, - ++n2_, - ++n3_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT3 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT3Test, FunctionOnUserTypeSuccess) { - ASSERT_PRED_FORMAT3(PredFormatFunction3, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_)); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT3 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT3Test, FunctorOnBuiltInTypeSuccess) { - ASSERT_PRED_FORMAT3(PredFormatFunctor3(), - ++n1_, - ++n2_, - ++n3_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT3 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT3Test, FunctorOnUserTypeSuccess) { - ASSERT_PRED_FORMAT3(PredFormatFunctor3(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_)); - finished_ = true; -} - -// Tests a failed ASSERT_PRED_FORMAT3 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT3Test, FunctionOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT3(PredFormatFunction3, - n1_++, - n2_++, - n3_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT3 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT3Test, FunctionOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT3(PredFormatFunction3, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++)); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT3 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT3Test, FunctorOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT3(PredFormatFunctor3(), - n1_++, - n2_++, - n3_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT3 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT3Test, FunctorOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT3(PredFormatFunctor3(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++)); - finished_ = true; - }, ""); -} -// Sample functions/functors for testing 4-ary predicate assertions. - -// A 4-ary predicate function. -template -bool PredFunction4(T1 v1, T2 v2, T3 v3, T4 v4) { - return v1 + v2 + v3 + v4 > 0; -} - -// The following two functions are needed to circumvent a bug in -// gcc 2.95.3, which sometimes has problem with the above template -// function. -bool PredFunction4Int(int v1, int v2, int v3, int v4) { - return v1 + v2 + v3 + v4 > 0; -} -bool PredFunction4Bool(Bool v1, Bool v2, Bool v3, Bool v4) { - return v1 + v2 + v3 + v4 > 0; -} - -// A 4-ary predicate functor. -struct PredFunctor4 { - template - bool operator()(const T1& v1, - const T2& v2, - const T3& v3, - const T4& v4) { - return v1 + v2 + v3 + v4 > 0; - } -}; - -// A 4-ary predicate-formatter function. -template -testing::AssertionResult PredFormatFunction4(const char* e1, - const char* e2, - const char* e3, - const char* e4, - const T1& v1, - const T2& v2, - const T3& v3, - const T4& v4) { - if (PredFunction4(v1, v2, v3, v4)) - return testing::AssertionSuccess(); - - testing::Message msg; - msg << e1 << " + " << e2 << " + " << e3 << " + " << e4 - << " is expected to be positive, but evaluates to " - << v1 + v2 + v3 + v4 << "."; - return testing::AssertionFailure(msg); -} - -// A 4-ary predicate-formatter functor. -struct PredFormatFunctor4 { - template - testing::AssertionResult operator()(const char* e1, - const char* e2, - const char* e3, - const char* e4, - const T1& v1, - const T2& v2, - const T3& v3, - const T4& v4) const { - return PredFormatFunction4(e1, e2, e3, e4, v1, v2, v3, v4); - } -}; - -// Tests for {EXPECT|ASSERT}_PRED_FORMAT4. - -class Predicate4Test : public testing::Test { - protected: - virtual void SetUp() { - expected_to_finish_ = true; - finished_ = false; - n1_ = n2_ = n3_ = n4_ = 0; - } - - virtual void TearDown() { - // Verifies that each of the predicate's arguments was evaluated - // exactly once. - EXPECT_EQ(1, n1_) << - "The predicate assertion didn't evaluate argument 2 " - "exactly once."; - EXPECT_EQ(1, n2_) << - "The predicate assertion didn't evaluate argument 3 " - "exactly once."; - EXPECT_EQ(1, n3_) << - "The predicate assertion didn't evaluate argument 4 " - "exactly once."; - EXPECT_EQ(1, n4_) << - "The predicate assertion didn't evaluate argument 5 " - "exactly once."; - - // Verifies that the control flow in the test function is expected. - if (expected_to_finish_ && !finished_) { - FAIL() << "The predicate assertion unexpactedly aborted the test."; - } else if (!expected_to_finish_ && finished_) { - FAIL() << "The failed predicate assertion didn't abort the test " - "as expected."; - } - } - - // true iff the test function is expected to run to finish. - static bool expected_to_finish_; - - // true iff the test function did run to finish. - static bool finished_; - - static int n1_; - static int n2_; - static int n3_; - static int n4_; -}; - -bool Predicate4Test::expected_to_finish_; -bool Predicate4Test::finished_; -int Predicate4Test::n1_; -int Predicate4Test::n2_; -int Predicate4Test::n3_; -int Predicate4Test::n4_; - -typedef Predicate4Test EXPECT_PRED_FORMAT4Test; -typedef Predicate4Test ASSERT_PRED_FORMAT4Test; -typedef Predicate4Test EXPECT_PRED4Test; -typedef Predicate4Test ASSERT_PRED4Test; - -// Tests a successful EXPECT_PRED4 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED4Test, FunctionOnBuiltInTypeSuccess) { - EXPECT_PRED4(PredFunction4Int, - ++n1_, - ++n2_, - ++n3_, - ++n4_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED4 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED4Test, FunctionOnUserTypeSuccess) { - EXPECT_PRED4(PredFunction4Bool, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_)); - finished_ = true; -} - -// Tests a successful EXPECT_PRED4 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED4Test, FunctorOnBuiltInTypeSuccess) { - EXPECT_PRED4(PredFunctor4(), - ++n1_, - ++n2_, - ++n3_, - ++n4_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED4 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED4Test, FunctorOnUserTypeSuccess) { - EXPECT_PRED4(PredFunctor4(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_)); - finished_ = true; -} - -// Tests a failed EXPECT_PRED4 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED4Test, FunctionOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED4(PredFunction4Int, - n1_++, - n2_++, - n3_++, - n4_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED4 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED4Test, FunctionOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED4(PredFunction4Bool, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++)); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED4 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED4Test, FunctorOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED4(PredFunctor4(), - n1_++, - n2_++, - n3_++, - n4_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED4 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED4Test, FunctorOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED4(PredFunctor4(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++)); - finished_ = true; - }, ""); -} - -// Tests a successful ASSERT_PRED4 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED4Test, FunctionOnBuiltInTypeSuccess) { - ASSERT_PRED4(PredFunction4Int, - ++n1_, - ++n2_, - ++n3_, - ++n4_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED4 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED4Test, FunctionOnUserTypeSuccess) { - ASSERT_PRED4(PredFunction4Bool, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_)); - finished_ = true; -} - -// Tests a successful ASSERT_PRED4 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED4Test, FunctorOnBuiltInTypeSuccess) { - ASSERT_PRED4(PredFunctor4(), - ++n1_, - ++n2_, - ++n3_, - ++n4_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED4 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED4Test, FunctorOnUserTypeSuccess) { - ASSERT_PRED4(PredFunctor4(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_)); - finished_ = true; -} - -// Tests a failed ASSERT_PRED4 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED4Test, FunctionOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED4(PredFunction4Int, - n1_++, - n2_++, - n3_++, - n4_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED4 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED4Test, FunctionOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED4(PredFunction4Bool, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++)); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED4 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED4Test, FunctorOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED4(PredFunctor4(), - n1_++, - n2_++, - n3_++, - n4_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED4 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED4Test, FunctorOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED4(PredFunctor4(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++)); - finished_ = true; - }, ""); -} - -// Tests a successful EXPECT_PRED_FORMAT4 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT4Test, FunctionOnBuiltInTypeSuccess) { - EXPECT_PRED_FORMAT4(PredFormatFunction4, - ++n1_, - ++n2_, - ++n3_, - ++n4_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT4 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT4Test, FunctionOnUserTypeSuccess) { - EXPECT_PRED_FORMAT4(PredFormatFunction4, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_)); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT4 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT4Test, FunctorOnBuiltInTypeSuccess) { - EXPECT_PRED_FORMAT4(PredFormatFunctor4(), - ++n1_, - ++n2_, - ++n3_, - ++n4_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT4 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT4Test, FunctorOnUserTypeSuccess) { - EXPECT_PRED_FORMAT4(PredFormatFunctor4(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_)); - finished_ = true; -} - -// Tests a failed EXPECT_PRED_FORMAT4 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT4Test, FunctionOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT4(PredFormatFunction4, - n1_++, - n2_++, - n3_++, - n4_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT4 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT4Test, FunctionOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT4(PredFormatFunction4, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++)); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT4 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT4Test, FunctorOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT4(PredFormatFunctor4(), - n1_++, - n2_++, - n3_++, - n4_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT4 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT4Test, FunctorOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT4(PredFormatFunctor4(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++)); - finished_ = true; - }, ""); -} - -// Tests a successful ASSERT_PRED_FORMAT4 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT4Test, FunctionOnBuiltInTypeSuccess) { - ASSERT_PRED_FORMAT4(PredFormatFunction4, - ++n1_, - ++n2_, - ++n3_, - ++n4_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT4 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT4Test, FunctionOnUserTypeSuccess) { - ASSERT_PRED_FORMAT4(PredFormatFunction4, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_)); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT4 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT4Test, FunctorOnBuiltInTypeSuccess) { - ASSERT_PRED_FORMAT4(PredFormatFunctor4(), - ++n1_, - ++n2_, - ++n3_, - ++n4_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT4 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT4Test, FunctorOnUserTypeSuccess) { - ASSERT_PRED_FORMAT4(PredFormatFunctor4(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_)); - finished_ = true; -} - -// Tests a failed ASSERT_PRED_FORMAT4 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT4Test, FunctionOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT4(PredFormatFunction4, - n1_++, - n2_++, - n3_++, - n4_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT4 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT4Test, FunctionOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT4(PredFormatFunction4, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++)); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT4 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT4Test, FunctorOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT4(PredFormatFunctor4(), - n1_++, - n2_++, - n3_++, - n4_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT4 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT4Test, FunctorOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT4(PredFormatFunctor4(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++)); - finished_ = true; - }, ""); -} -// Sample functions/functors for testing 5-ary predicate assertions. - -// A 5-ary predicate function. -template -bool PredFunction5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) { - return v1 + v2 + v3 + v4 + v5 > 0; -} - -// The following two functions are needed to circumvent a bug in -// gcc 2.95.3, which sometimes has problem with the above template -// function. -bool PredFunction5Int(int v1, int v2, int v3, int v4, int v5) { - return v1 + v2 + v3 + v4 + v5 > 0; -} -bool PredFunction5Bool(Bool v1, Bool v2, Bool v3, Bool v4, Bool v5) { - return v1 + v2 + v3 + v4 + v5 > 0; -} - -// A 5-ary predicate functor. -struct PredFunctor5 { - template - bool operator()(const T1& v1, - const T2& v2, - const T3& v3, - const T4& v4, - const T5& v5) { - return v1 + v2 + v3 + v4 + v5 > 0; - } -}; - -// A 5-ary predicate-formatter function. -template -testing::AssertionResult PredFormatFunction5(const char* e1, - const char* e2, - const char* e3, - const char* e4, - const char* e5, - const T1& v1, - const T2& v2, - const T3& v3, - const T4& v4, - const T5& v5) { - if (PredFunction5(v1, v2, v3, v4, v5)) - return testing::AssertionSuccess(); - - testing::Message msg; - msg << e1 << " + " << e2 << " + " << e3 << " + " << e4 << " + " << e5 - << " is expected to be positive, but evaluates to " - << v1 + v2 + v3 + v4 + v5 << "."; - return testing::AssertionFailure(msg); -} - -// A 5-ary predicate-formatter functor. -struct PredFormatFunctor5 { - template - testing::AssertionResult operator()(const char* e1, - const char* e2, - const char* e3, - const char* e4, - const char* e5, - const T1& v1, - const T2& v2, - const T3& v3, - const T4& v4, - const T5& v5) const { - return PredFormatFunction5(e1, e2, e3, e4, e5, v1, v2, v3, v4, v5); - } -}; - -// Tests for {EXPECT|ASSERT}_PRED_FORMAT5. - -class Predicate5Test : public testing::Test { - protected: - virtual void SetUp() { - expected_to_finish_ = true; - finished_ = false; - n1_ = n2_ = n3_ = n4_ = n5_ = 0; - } - - virtual void TearDown() { - // Verifies that each of the predicate's arguments was evaluated - // exactly once. - EXPECT_EQ(1, n1_) << - "The predicate assertion didn't evaluate argument 2 " - "exactly once."; - EXPECT_EQ(1, n2_) << - "The predicate assertion didn't evaluate argument 3 " - "exactly once."; - EXPECT_EQ(1, n3_) << - "The predicate assertion didn't evaluate argument 4 " - "exactly once."; - EXPECT_EQ(1, n4_) << - "The predicate assertion didn't evaluate argument 5 " - "exactly once."; - EXPECT_EQ(1, n5_) << - "The predicate assertion didn't evaluate argument 6 " - "exactly once."; - - // Verifies that the control flow in the test function is expected. - if (expected_to_finish_ && !finished_) { - FAIL() << "The predicate assertion unexpactedly aborted the test."; - } else if (!expected_to_finish_ && finished_) { - FAIL() << "The failed predicate assertion didn't abort the test " - "as expected."; - } - } - - // true iff the test function is expected to run to finish. - static bool expected_to_finish_; - - // true iff the test function did run to finish. - static bool finished_; - - static int n1_; - static int n2_; - static int n3_; - static int n4_; - static int n5_; -}; - -bool Predicate5Test::expected_to_finish_; -bool Predicate5Test::finished_; -int Predicate5Test::n1_; -int Predicate5Test::n2_; -int Predicate5Test::n3_; -int Predicate5Test::n4_; -int Predicate5Test::n5_; - -typedef Predicate5Test EXPECT_PRED_FORMAT5Test; -typedef Predicate5Test ASSERT_PRED_FORMAT5Test; -typedef Predicate5Test EXPECT_PRED5Test; -typedef Predicate5Test ASSERT_PRED5Test; - -// Tests a successful EXPECT_PRED5 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED5Test, FunctionOnBuiltInTypeSuccess) { - EXPECT_PRED5(PredFunction5Int, - ++n1_, - ++n2_, - ++n3_, - ++n4_, - ++n5_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED5 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED5Test, FunctionOnUserTypeSuccess) { - EXPECT_PRED5(PredFunction5Bool, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_), - Bool(++n5_)); - finished_ = true; -} - -// Tests a successful EXPECT_PRED5 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED5Test, FunctorOnBuiltInTypeSuccess) { - EXPECT_PRED5(PredFunctor5(), - ++n1_, - ++n2_, - ++n3_, - ++n4_, - ++n5_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED5 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED5Test, FunctorOnUserTypeSuccess) { - EXPECT_PRED5(PredFunctor5(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_), - Bool(++n5_)); - finished_ = true; -} - -// Tests a failed EXPECT_PRED5 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED5Test, FunctionOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED5(PredFunction5Int, - n1_++, - n2_++, - n3_++, - n4_++, - n5_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED5 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED5Test, FunctionOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED5(PredFunction5Bool, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++), - Bool(n5_++)); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED5 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED5Test, FunctorOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED5(PredFunctor5(), - n1_++, - n2_++, - n3_++, - n4_++, - n5_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED5 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED5Test, FunctorOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED5(PredFunctor5(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++), - Bool(n5_++)); - finished_ = true; - }, ""); -} - -// Tests a successful ASSERT_PRED5 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED5Test, FunctionOnBuiltInTypeSuccess) { - ASSERT_PRED5(PredFunction5Int, - ++n1_, - ++n2_, - ++n3_, - ++n4_, - ++n5_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED5 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED5Test, FunctionOnUserTypeSuccess) { - ASSERT_PRED5(PredFunction5Bool, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_), - Bool(++n5_)); - finished_ = true; -} - -// Tests a successful ASSERT_PRED5 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED5Test, FunctorOnBuiltInTypeSuccess) { - ASSERT_PRED5(PredFunctor5(), - ++n1_, - ++n2_, - ++n3_, - ++n4_, - ++n5_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED5 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED5Test, FunctorOnUserTypeSuccess) { - ASSERT_PRED5(PredFunctor5(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_), - Bool(++n5_)); - finished_ = true; -} - -// Tests a failed ASSERT_PRED5 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED5Test, FunctionOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED5(PredFunction5Int, - n1_++, - n2_++, - n3_++, - n4_++, - n5_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED5 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED5Test, FunctionOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED5(PredFunction5Bool, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++), - Bool(n5_++)); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED5 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED5Test, FunctorOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED5(PredFunctor5(), - n1_++, - n2_++, - n3_++, - n4_++, - n5_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED5 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED5Test, FunctorOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED5(PredFunctor5(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++), - Bool(n5_++)); - finished_ = true; - }, ""); -} - -// Tests a successful EXPECT_PRED_FORMAT5 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT5Test, FunctionOnBuiltInTypeSuccess) { - EXPECT_PRED_FORMAT5(PredFormatFunction5, - ++n1_, - ++n2_, - ++n3_, - ++n4_, - ++n5_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT5 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT5Test, FunctionOnUserTypeSuccess) { - EXPECT_PRED_FORMAT5(PredFormatFunction5, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_), - Bool(++n5_)); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT5 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT5Test, FunctorOnBuiltInTypeSuccess) { - EXPECT_PRED_FORMAT5(PredFormatFunctor5(), - ++n1_, - ++n2_, - ++n3_, - ++n4_, - ++n5_); - finished_ = true; -} - -// Tests a successful EXPECT_PRED_FORMAT5 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT5Test, FunctorOnUserTypeSuccess) { - EXPECT_PRED_FORMAT5(PredFormatFunctor5(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_), - Bool(++n5_)); - finished_ = true; -} - -// Tests a failed EXPECT_PRED_FORMAT5 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT5Test, FunctionOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT5(PredFormatFunction5, - n1_++, - n2_++, - n3_++, - n4_++, - n5_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT5 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT5Test, FunctionOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT5(PredFormatFunction5, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++), - Bool(n5_++)); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT5 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(EXPECT_PRED_FORMAT5Test, FunctorOnBuiltInTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT5(PredFormatFunctor5(), - n1_++, - n2_++, - n3_++, - n4_++, - n5_++); - finished_ = true; - }, ""); -} - -// Tests a failed EXPECT_PRED_FORMAT5 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(EXPECT_PRED_FORMAT5Test, FunctorOnUserTypeFailure) { - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT5(PredFormatFunctor5(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++), - Bool(n5_++)); - finished_ = true; - }, ""); -} - -// Tests a successful ASSERT_PRED_FORMAT5 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT5Test, FunctionOnBuiltInTypeSuccess) { - ASSERT_PRED_FORMAT5(PredFormatFunction5, - ++n1_, - ++n2_, - ++n3_, - ++n4_, - ++n5_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT5 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT5Test, FunctionOnUserTypeSuccess) { - ASSERT_PRED_FORMAT5(PredFormatFunction5, - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_), - Bool(++n5_)); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT5 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT5Test, FunctorOnBuiltInTypeSuccess) { - ASSERT_PRED_FORMAT5(PredFormatFunctor5(), - ++n1_, - ++n2_, - ++n3_, - ++n4_, - ++n5_); - finished_ = true; -} - -// Tests a successful ASSERT_PRED_FORMAT5 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT5Test, FunctorOnUserTypeSuccess) { - ASSERT_PRED_FORMAT5(PredFormatFunctor5(), - Bool(++n1_), - Bool(++n2_), - Bool(++n3_), - Bool(++n4_), - Bool(++n5_)); - finished_ = true; -} - -// Tests a failed ASSERT_PRED_FORMAT5 where the -// predicate-formatter is a function on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT5Test, FunctionOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT5(PredFormatFunction5, - n1_++, - n2_++, - n3_++, - n4_++, - n5_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT5 where the -// predicate-formatter is a function on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT5Test, FunctionOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT5(PredFormatFunction5, - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++), - Bool(n5_++)); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT5 where the -// predicate-formatter is a functor on a built-in type (int). -TEST_F(ASSERT_PRED_FORMAT5Test, FunctorOnBuiltInTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT5(PredFormatFunctor5(), - n1_++, - n2_++, - n3_++, - n4_++, - n5_++); - finished_ = true; - }, ""); -} - -// Tests a failed ASSERT_PRED_FORMAT5 where the -// predicate-formatter is a functor on a user-defined type (Bool). -TEST_F(ASSERT_PRED_FORMAT5Test, FunctorOnUserTypeFailure) { - expected_to_finish_ = false; - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT5(PredFormatFunctor5(), - Bool(n1_++), - Bool(n2_++), - Bool(n3_++), - Bool(n4_++), - Bool(n5_++)); - finished_ = true; - }, ""); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_prod_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_prod_test.cc deleted file mode 100644 index bc3201d0f..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_prod_test.cc +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// Unit test for include/gtest/gtest_prod.h. - -#include -#include "test/production.h" - -// Tests that private members can be accessed from a TEST declared as -// a friend of the class. -TEST(PrivateCodeTest, CanAccessPrivateMembers) { - PrivateCode a; - EXPECT_EQ(0, a.x_); - - a.set_x(1); - EXPECT_EQ(1, a.x_); -} - -typedef testing::Test PrivateCodeFixtureTest; - -// Tests that private members can be accessed from a TEST_F declared -// as a friend of the class. -TEST_F(PrivateCodeFixtureTest, CanAccessPrivateMembers) { - PrivateCode a; - EXPECT_EQ(0, a.x_); - - a.set_x(2); - EXPECT_EQ(2, a.x_); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_repeat_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_repeat_test.cc deleted file mode 100644 index df6868b83..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_repeat_test.cc +++ /dev/null @@ -1,253 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Tests the --gtest_repeat=number flag. - -#include -#include -#include - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -namespace testing { - -GTEST_DECLARE_string_(death_test_style); -GTEST_DECLARE_string_(filter); -GTEST_DECLARE_int32_(repeat); - -} // namespace testing - -using testing::GTEST_FLAG(death_test_style); -using testing::GTEST_FLAG(filter); -using testing::GTEST_FLAG(repeat); - -namespace { - -// We need this when we are testing Google Test itself and therefore -// cannot use Google Test assertions. -#define GTEST_CHECK_INT_EQ_(expected, actual) \ - do {\ - const int expected_val = (expected);\ - const int actual_val = (actual);\ - if (::testing::internal::IsTrue(expected_val != actual_val)) {\ - ::std::cout << "Value of: " #actual "\n"\ - << " Actual: " << actual_val << "\n"\ - << "Expected: " #expected "\n"\ - << "Which is: " << expected_val << "\n";\ - abort();\ - }\ - } while(::testing::internal::AlwaysFalse()) - - -// Used for verifying that global environment set-up and tear-down are -// inside the gtest_repeat loop. - -int g_environment_set_up_count = 0; -int g_environment_tear_down_count = 0; - -class MyEnvironment : public testing::Environment { - public: - MyEnvironment() {} - virtual void SetUp() { g_environment_set_up_count++; } - virtual void TearDown() { g_environment_tear_down_count++; } -}; - -// A test that should fail. - -int g_should_fail_count = 0; - -TEST(FooTest, ShouldFail) { - g_should_fail_count++; - EXPECT_EQ(0, 1) << "Expected failure."; -} - -// A test that should pass. - -int g_should_pass_count = 0; - -TEST(FooTest, ShouldPass) { - g_should_pass_count++; -} - -// A test that contains a thread-safe death test and a fast death -// test. It should pass. - -int g_death_test_count = 0; - -TEST(BarDeathTest, ThreadSafeAndFast) { - g_death_test_count++; - - GTEST_FLAG(death_test_style) = "threadsafe"; - EXPECT_DEATH_IF_SUPPORTED(abort(), ""); - - GTEST_FLAG(death_test_style) = "fast"; - EXPECT_DEATH_IF_SUPPORTED(abort(), ""); -} - -#if GTEST_HAS_PARAM_TEST -int g_param_test_count = 0; - -const int kNumberOfParamTests = 10; - -class MyParamTest : public testing::TestWithParam {}; - -TEST_P(MyParamTest, ShouldPass) { - // TODO(vladl@google.com): Make parameter value checking robust - // WRT order of tests. - GTEST_CHECK_INT_EQ_(g_param_test_count % kNumberOfParamTests, GetParam()); - g_param_test_count++; -} -INSTANTIATE_TEST_CASE_P(MyParamSequence, - MyParamTest, - testing::Range(0, kNumberOfParamTests)); -#endif // GTEST_HAS_PARAM_TEST - -// Resets the count for each test. -void ResetCounts() { - g_environment_set_up_count = 0; - g_environment_tear_down_count = 0; - g_should_fail_count = 0; - g_should_pass_count = 0; - g_death_test_count = 0; -#if GTEST_HAS_PARAM_TEST - g_param_test_count = 0; -#endif // GTEST_HAS_PARAM_TEST -} - -// Checks that the count for each test is expected. -void CheckCounts(int expected) { - GTEST_CHECK_INT_EQ_(expected, g_environment_set_up_count); - GTEST_CHECK_INT_EQ_(expected, g_environment_tear_down_count); - GTEST_CHECK_INT_EQ_(expected, g_should_fail_count); - GTEST_CHECK_INT_EQ_(expected, g_should_pass_count); - GTEST_CHECK_INT_EQ_(expected, g_death_test_count); -#if GTEST_HAS_PARAM_TEST - GTEST_CHECK_INT_EQ_(expected * kNumberOfParamTests, g_param_test_count); -#endif // GTEST_HAS_PARAM_TEST -} - -// Tests the behavior of Google Test when --gtest_repeat is not specified. -void TestRepeatUnspecified() { - ResetCounts(); - GTEST_CHECK_INT_EQ_(1, RUN_ALL_TESTS()); - CheckCounts(1); -} - -// Tests the behavior of Google Test when --gtest_repeat has the given value. -void TestRepeat(int repeat) { - GTEST_FLAG(repeat) = repeat; - - ResetCounts(); - GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); - CheckCounts(repeat); -} - -// Tests using --gtest_repeat when --gtest_filter specifies an empty -// set of tests. -void TestRepeatWithEmptyFilter(int repeat) { - GTEST_FLAG(repeat) = repeat; - GTEST_FLAG(filter) = "None"; - - ResetCounts(); - GTEST_CHECK_INT_EQ_(0, RUN_ALL_TESTS()); - CheckCounts(0); -} - -// Tests using --gtest_repeat when --gtest_filter specifies a set of -// successful tests. -void TestRepeatWithFilterForSuccessfulTests(int repeat) { - GTEST_FLAG(repeat) = repeat; - GTEST_FLAG(filter) = "*-*ShouldFail"; - - ResetCounts(); - GTEST_CHECK_INT_EQ_(0, RUN_ALL_TESTS()); - GTEST_CHECK_INT_EQ_(repeat, g_environment_set_up_count); - GTEST_CHECK_INT_EQ_(repeat, g_environment_tear_down_count); - GTEST_CHECK_INT_EQ_(0, g_should_fail_count); - GTEST_CHECK_INT_EQ_(repeat, g_should_pass_count); - GTEST_CHECK_INT_EQ_(repeat, g_death_test_count); -#if GTEST_HAS_PARAM_TEST - GTEST_CHECK_INT_EQ_(repeat * kNumberOfParamTests, g_param_test_count); -#endif // GTEST_HAS_PARAM_TEST -} - -// Tests using --gtest_repeat when --gtest_filter specifies a set of -// failed tests. -void TestRepeatWithFilterForFailedTests(int repeat) { - GTEST_FLAG(repeat) = repeat; - GTEST_FLAG(filter) = "*ShouldFail"; - - ResetCounts(); - GTEST_CHECK_INT_EQ_(1, RUN_ALL_TESTS()); - GTEST_CHECK_INT_EQ_(repeat, g_environment_set_up_count); - GTEST_CHECK_INT_EQ_(repeat, g_environment_tear_down_count); - GTEST_CHECK_INT_EQ_(repeat, g_should_fail_count); - GTEST_CHECK_INT_EQ_(0, g_should_pass_count); - GTEST_CHECK_INT_EQ_(0, g_death_test_count); -#if GTEST_HAS_PARAM_TEST - GTEST_CHECK_INT_EQ_(0, g_param_test_count); -#endif // GTEST_HAS_PARAM_TEST -} - -} // namespace - -int main(int argc, char **argv) { - testing::InitGoogleTest(&argc, argv); - testing::AddGlobalTestEnvironment(new MyEnvironment); - - TestRepeatUnspecified(); - TestRepeat(0); - TestRepeat(1); - TestRepeat(5); - - TestRepeatWithEmptyFilter(2); - TestRepeatWithEmptyFilter(3); - - TestRepeatWithFilterForSuccessfulTests(3); - - TestRepeatWithFilterForFailedTests(4); - - // It would be nice to verify that the tests indeed loop forever - // when GTEST_FLAG(repeat) is negative, but this test will be quite - // complicated to write. Since this flag is for interactive - // debugging only and doesn't affect the normal test result, such a - // test would be an overkill. - - printf("PASS\n"); - return 0; -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_shuffle_test.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_shuffle_test.py deleted file mode 100755 index 30d0303d1..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_shuffle_test.py +++ /dev/null @@ -1,325 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2009 Google Inc. All Rights Reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Verifies that test shuffling works.""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import os -import gtest_test_utils - -# Command to run the gtest_shuffle_test_ program. -COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_shuffle_test_') - -# The environment variables for test sharding. -TOTAL_SHARDS_ENV_VAR = 'GTEST_TOTAL_SHARDS' -SHARD_INDEX_ENV_VAR = 'GTEST_SHARD_INDEX' - -TEST_FILTER = 'A*.A:A*.B:C*' - -ALL_TESTS = [] -ACTIVE_TESTS = [] -FILTERED_TESTS = [] -SHARDED_TESTS = [] - -SHUFFLED_ALL_TESTS = [] -SHUFFLED_ACTIVE_TESTS = [] -SHUFFLED_FILTERED_TESTS = [] -SHUFFLED_SHARDED_TESTS = [] - - -def AlsoRunDisabledTestsFlag(): - return '--gtest_also_run_disabled_tests' - - -def FilterFlag(test_filter): - return '--gtest_filter=%s' % (test_filter,) - - -def RepeatFlag(n): - return '--gtest_repeat=%s' % (n,) - - -def ShuffleFlag(): - return '--gtest_shuffle' - - -def RandomSeedFlag(n): - return '--gtest_random_seed=%s' % (n,) - - -def RunAndReturnOutput(extra_env, args): - """Runs the test program and returns its output.""" - - environ_copy = os.environ.copy() - environ_copy.update(extra_env) - - return gtest_test_utils.Subprocess([COMMAND] + args, env=environ_copy).output - - -def GetTestsForAllIterations(extra_env, args): - """Runs the test program and returns a list of test lists. - - Args: - extra_env: a map from environment variables to their values - args: command line flags to pass to gtest_shuffle_test_ - - Returns: - A list where the i-th element is the list of tests run in the i-th - test iteration. - """ - - test_iterations = [] - for line in RunAndReturnOutput(extra_env, args).split('\n'): - if line.startswith('----'): - tests = [] - test_iterations.append(tests) - elif line.strip(): - tests.append(line.strip()) # 'TestCaseName.TestName' - - return test_iterations - - -def GetTestCases(tests): - """Returns a list of test cases in the given full test names. - - Args: - tests: a list of full test names - - Returns: - A list of test cases from 'tests', in their original order. - Consecutive duplicates are removed. - """ - - test_cases = [] - for test in tests: - test_case = test.split('.')[0] - if not test_case in test_cases: - test_cases.append(test_case) - - return test_cases - - -def CalculateTestLists(): - """Calculates the list of tests run under different flags.""" - - if not ALL_TESTS: - ALL_TESTS.extend( - GetTestsForAllIterations({}, [AlsoRunDisabledTestsFlag()])[0]) - - if not ACTIVE_TESTS: - ACTIVE_TESTS.extend(GetTestsForAllIterations({}, [])[0]) - - if not FILTERED_TESTS: - FILTERED_TESTS.extend( - GetTestsForAllIterations({}, [FilterFlag(TEST_FILTER)])[0]) - - if not SHARDED_TESTS: - SHARDED_TESTS.extend( - GetTestsForAllIterations({TOTAL_SHARDS_ENV_VAR: '3', - SHARD_INDEX_ENV_VAR: '1'}, - [])[0]) - - if not SHUFFLED_ALL_TESTS: - SHUFFLED_ALL_TESTS.extend(GetTestsForAllIterations( - {}, [AlsoRunDisabledTestsFlag(), ShuffleFlag(), RandomSeedFlag(1)])[0]) - - if not SHUFFLED_ACTIVE_TESTS: - SHUFFLED_ACTIVE_TESTS.extend(GetTestsForAllIterations( - {}, [ShuffleFlag(), RandomSeedFlag(1)])[0]) - - if not SHUFFLED_FILTERED_TESTS: - SHUFFLED_FILTERED_TESTS.extend(GetTestsForAllIterations( - {}, [ShuffleFlag(), RandomSeedFlag(1), FilterFlag(TEST_FILTER)])[0]) - - if not SHUFFLED_SHARDED_TESTS: - SHUFFLED_SHARDED_TESTS.extend( - GetTestsForAllIterations({TOTAL_SHARDS_ENV_VAR: '3', - SHARD_INDEX_ENV_VAR: '1'}, - [ShuffleFlag(), RandomSeedFlag(1)])[0]) - - -class GTestShuffleUnitTest(gtest_test_utils.TestCase): - """Tests test shuffling.""" - - def setUp(self): - CalculateTestLists() - - def testShufflePreservesNumberOfTests(self): - self.assertEqual(len(ALL_TESTS), len(SHUFFLED_ALL_TESTS)) - self.assertEqual(len(ACTIVE_TESTS), len(SHUFFLED_ACTIVE_TESTS)) - self.assertEqual(len(FILTERED_TESTS), len(SHUFFLED_FILTERED_TESTS)) - self.assertEqual(len(SHARDED_TESTS), len(SHUFFLED_SHARDED_TESTS)) - - def testShuffleChangesTestOrder(self): - self.assert_(SHUFFLED_ALL_TESTS != ALL_TESTS, SHUFFLED_ALL_TESTS) - self.assert_(SHUFFLED_ACTIVE_TESTS != ACTIVE_TESTS, SHUFFLED_ACTIVE_TESTS) - self.assert_(SHUFFLED_FILTERED_TESTS != FILTERED_TESTS, - SHUFFLED_FILTERED_TESTS) - self.assert_(SHUFFLED_SHARDED_TESTS != SHARDED_TESTS, - SHUFFLED_SHARDED_TESTS) - - def testShuffleChangesTestCaseOrder(self): - self.assert_(GetTestCases(SHUFFLED_ALL_TESTS) != GetTestCases(ALL_TESTS), - GetTestCases(SHUFFLED_ALL_TESTS)) - self.assert_( - GetTestCases(SHUFFLED_ACTIVE_TESTS) != GetTestCases(ACTIVE_TESTS), - GetTestCases(SHUFFLED_ACTIVE_TESTS)) - self.assert_( - GetTestCases(SHUFFLED_FILTERED_TESTS) != GetTestCases(FILTERED_TESTS), - GetTestCases(SHUFFLED_FILTERED_TESTS)) - self.assert_( - GetTestCases(SHUFFLED_SHARDED_TESTS) != GetTestCases(SHARDED_TESTS), - GetTestCases(SHUFFLED_SHARDED_TESTS)) - - def testShuffleDoesNotRepeatTest(self): - for test in SHUFFLED_ALL_TESTS: - self.assertEqual(1, SHUFFLED_ALL_TESTS.count(test), - '%s appears more than once' % (test,)) - for test in SHUFFLED_ACTIVE_TESTS: - self.assertEqual(1, SHUFFLED_ACTIVE_TESTS.count(test), - '%s appears more than once' % (test,)) - for test in SHUFFLED_FILTERED_TESTS: - self.assertEqual(1, SHUFFLED_FILTERED_TESTS.count(test), - '%s appears more than once' % (test,)) - for test in SHUFFLED_SHARDED_TESTS: - self.assertEqual(1, SHUFFLED_SHARDED_TESTS.count(test), - '%s appears more than once' % (test,)) - - def testShuffleDoesNotCreateNewTest(self): - for test in SHUFFLED_ALL_TESTS: - self.assert_(test in ALL_TESTS, '%s is an invalid test' % (test,)) - for test in SHUFFLED_ACTIVE_TESTS: - self.assert_(test in ACTIVE_TESTS, '%s is an invalid test' % (test,)) - for test in SHUFFLED_FILTERED_TESTS: - self.assert_(test in FILTERED_TESTS, '%s is an invalid test' % (test,)) - for test in SHUFFLED_SHARDED_TESTS: - self.assert_(test in SHARDED_TESTS, '%s is an invalid test' % (test,)) - - def testShuffleIncludesAllTests(self): - for test in ALL_TESTS: - self.assert_(test in SHUFFLED_ALL_TESTS, '%s is missing' % (test,)) - for test in ACTIVE_TESTS: - self.assert_(test in SHUFFLED_ACTIVE_TESTS, '%s is missing' % (test,)) - for test in FILTERED_TESTS: - self.assert_(test in SHUFFLED_FILTERED_TESTS, '%s is missing' % (test,)) - for test in SHARDED_TESTS: - self.assert_(test in SHUFFLED_SHARDED_TESTS, '%s is missing' % (test,)) - - def testShuffleLeavesDeathTestsAtFront(self): - non_death_test_found = False - for test in SHUFFLED_ACTIVE_TESTS: - if 'DeathTest.' in test: - self.assert_(not non_death_test_found, - '%s appears after a non-death test' % (test,)) - else: - non_death_test_found = True - - def _VerifyTestCasesDoNotInterleave(self, tests): - test_cases = [] - for test in tests: - [test_case, _] = test.split('.') - if test_cases and test_cases[-1] != test_case: - test_cases.append(test_case) - self.assertEqual(1, test_cases.count(test_case), - 'Test case %s is not grouped together in %s' % - (test_case, tests)) - - def testShuffleDoesNotInterleaveTestCases(self): - self._VerifyTestCasesDoNotInterleave(SHUFFLED_ALL_TESTS) - self._VerifyTestCasesDoNotInterleave(SHUFFLED_ACTIVE_TESTS) - self._VerifyTestCasesDoNotInterleave(SHUFFLED_FILTERED_TESTS) - self._VerifyTestCasesDoNotInterleave(SHUFFLED_SHARDED_TESTS) - - def testShuffleRestoresOrderAfterEachIteration(self): - # Get the test lists in all 3 iterations, using random seed 1, 2, - # and 3 respectively. Google Test picks a different seed in each - # iteration, and this test depends on the current implementation - # picking successive numbers. This dependency is not ideal, but - # makes the test much easier to write. - [tests_in_iteration1, tests_in_iteration2, tests_in_iteration3] = ( - GetTestsForAllIterations( - {}, [ShuffleFlag(), RandomSeedFlag(1), RepeatFlag(3)])) - - # Make sure running the tests with random seed 1 gets the same - # order as in iteration 1 above. - [tests_with_seed1] = GetTestsForAllIterations( - {}, [ShuffleFlag(), RandomSeedFlag(1)]) - self.assertEqual(tests_in_iteration1, tests_with_seed1) - - # Make sure running the tests with random seed 2 gets the same - # order as in iteration 2 above. Success means that Google Test - # correctly restores the test order before re-shuffling at the - # beginning of iteration 2. - [tests_with_seed2] = GetTestsForAllIterations( - {}, [ShuffleFlag(), RandomSeedFlag(2)]) - self.assertEqual(tests_in_iteration2, tests_with_seed2) - - # Make sure running the tests with random seed 3 gets the same - # order as in iteration 3 above. Success means that Google Test - # correctly restores the test order before re-shuffling at the - # beginning of iteration 3. - [tests_with_seed3] = GetTestsForAllIterations( - {}, [ShuffleFlag(), RandomSeedFlag(3)]) - self.assertEqual(tests_in_iteration3, tests_with_seed3) - - def testShuffleGeneratesNewOrderInEachIteration(self): - [tests_in_iteration1, tests_in_iteration2, tests_in_iteration3] = ( - GetTestsForAllIterations( - {}, [ShuffleFlag(), RandomSeedFlag(1), RepeatFlag(3)])) - - self.assert_(tests_in_iteration1 != tests_in_iteration2, - tests_in_iteration1) - self.assert_(tests_in_iteration1 != tests_in_iteration3, - tests_in_iteration1) - self.assert_(tests_in_iteration2 != tests_in_iteration3, - tests_in_iteration2) - - def testShuffleShardedTestsPreservesPartition(self): - # If we run M tests on N shards, the same M tests should be run in - # total, regardless of the random seeds used by the shards. - [tests1] = GetTestsForAllIterations({TOTAL_SHARDS_ENV_VAR: '3', - SHARD_INDEX_ENV_VAR: '0'}, - [ShuffleFlag(), RandomSeedFlag(1)]) - [tests2] = GetTestsForAllIterations({TOTAL_SHARDS_ENV_VAR: '3', - SHARD_INDEX_ENV_VAR: '1'}, - [ShuffleFlag(), RandomSeedFlag(20)]) - [tests3] = GetTestsForAllIterations({TOTAL_SHARDS_ENV_VAR: '3', - SHARD_INDEX_ENV_VAR: '2'}, - [ShuffleFlag(), RandomSeedFlag(25)]) - sorted_sharded_tests = tests1 + tests2 + tests3 - sorted_sharded_tests.sort() - sorted_active_tests = [] - sorted_active_tests.extend(ACTIVE_TESTS) - sorted_active_tests.sort() - self.assertEqual(sorted_active_tests, sorted_sharded_tests) - -if __name__ == '__main__': - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_shuffle_test_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_shuffle_test_.cc deleted file mode 100644 index 53ecf7770..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_shuffle_test_.cc +++ /dev/null @@ -1,104 +0,0 @@ -// Copyright 2009, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Verifies that test shuffling works. - -#include - -namespace { - -using ::testing::EmptyTestEventListener; -using ::testing::InitGoogleTest; -using ::testing::Message; -using ::testing::Test; -using ::testing::TestEventListeners; -using ::testing::TestInfo; -using ::testing::UnitTest; -using ::testing::internal::String; -using ::testing::internal::scoped_ptr; - -// The test methods are empty, as the sole purpose of this program is -// to print the test names before/after shuffling. - -class A : public Test {}; -TEST_F(A, A) {} -TEST_F(A, B) {} - -TEST(ADeathTest, A) {} -TEST(ADeathTest, B) {} -TEST(ADeathTest, C) {} - -TEST(B, A) {} -TEST(B, B) {} -TEST(B, C) {} -TEST(B, DISABLED_D) {} -TEST(B, DISABLED_E) {} - -TEST(BDeathTest, A) {} -TEST(BDeathTest, B) {} - -TEST(C, A) {} -TEST(C, B) {} -TEST(C, C) {} -TEST(C, DISABLED_D) {} - -TEST(CDeathTest, A) {} - -TEST(DISABLED_D, A) {} -TEST(DISABLED_D, DISABLED_B) {} - -// This printer prints the full test names only, starting each test -// iteration with a "----" marker. -class TestNamePrinter : public EmptyTestEventListener { - public: - virtual void OnTestIterationStart(const UnitTest& /* unit_test */, - int /* iteration */) { - printf("----\n"); - } - - virtual void OnTestStart(const TestInfo& test_info) { - printf("%s.%s\n", test_info.test_case_name(), test_info.name()); - } -}; - -} // namespace - -int main(int argc, char **argv) { - InitGoogleTest(&argc, argv); - - // Replaces the default printer with TestNamePrinter, which prints - // the test name only. - TestEventListeners& listeners = UnitTest::GetInstance()->listeners(); - delete listeners.Release(listeners.default_result_printer()); - listeners.Append(new TestNamePrinter); - - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_sole_header_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_sole_header_test.cc deleted file mode 100644 index de91e800f..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_sole_header_test.cc +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: mheule@google.com (Markus Heule) -// -// This test verifies that it's possible to use Google Test by including -// the gtest.h header file alone. - -#include - -namespace { - -void Subroutine() { - EXPECT_EQ(42, 42); -} - -TEST(NoFatalFailureTest, ExpectNoFatalFailure) { - EXPECT_NO_FATAL_FAILURE(;); - EXPECT_NO_FATAL_FAILURE(SUCCEED()); - EXPECT_NO_FATAL_FAILURE(Subroutine()); - EXPECT_NO_FATAL_FAILURE({ SUCCEED(); }); -} - -TEST(NoFatalFailureTest, AssertNoFatalFailure) { - ASSERT_NO_FATAL_FAILURE(;); - ASSERT_NO_FATAL_FAILURE(SUCCEED()); - ASSERT_NO_FATAL_FAILURE(Subroutine()); - ASSERT_NO_FATAL_FAILURE({ SUCCEED(); }); -} - -} // namespace diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_stress_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_stress_test.cc deleted file mode 100644 index f5af78cc6..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_stress_test.cc +++ /dev/null @@ -1,257 +0,0 @@ -// Copyright 2007, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Tests that SCOPED_TRACE() and various Google Test assertions can be -// used in a large number of threads concurrently. - -#include - -#include -#include - -// We must define this macro in order to #include -// gtest-internal-inl.h. This is how Google Test prevents a user from -// accidentally depending on its internal implementation. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -#if GTEST_IS_THREADSAFE - -namespace testing { -namespace { - -using internal::Notification; -using internal::String; -using internal::TestPropertyKeyIs; -using internal::ThreadWithParam; -using internal::scoped_ptr; - -// In order to run tests in this file, for platforms where Google Test is -// thread safe, implement ThreadWithParam. See the description of its API -// in gtest-port.h, where it is defined for already supported platforms. - -// How many threads to create? -const int kThreadCount = 50; - -String IdToKey(int id, const char* suffix) { - Message key; - key << "key_" << id << "_" << suffix; - return key.GetString(); -} - -String IdToString(int id) { - Message id_message; - id_message << id; - return id_message.GetString(); -} - -void ExpectKeyAndValueWereRecordedForId( - const std::vector& properties, - int id, const char* suffix) { - TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str()); - const std::vector::const_iterator property = - std::find_if(properties.begin(), properties.end(), matches_key); - ASSERT_TRUE(property != properties.end()) - << "expecting " << suffix << " value for id " << id; - EXPECT_STREQ(IdToString(id).c_str(), property->value()); -} - -// Calls a large number of Google Test assertions, where exactly one of them -// will fail. -void ManyAsserts(int id) { - GTEST_LOG_(INFO) << "Thread #" << id << " running..."; - - SCOPED_TRACE(Message() << "Thread #" << id); - - for (int i = 0; i < kThreadCount; i++) { - SCOPED_TRACE(Message() << "Iteration #" << i); - - // A bunch of assertions that should succeed. - EXPECT_TRUE(true); - ASSERT_FALSE(false) << "This shouldn't fail."; - EXPECT_STREQ("a", "a"); - ASSERT_LE(5, 6); - EXPECT_EQ(i, i) << "This shouldn't fail."; - - // RecordProperty() should interact safely with other threads as well. - // The shared_key forces property updates. - Test::RecordProperty(IdToKey(id, "string").c_str(), IdToString(id).c_str()); - Test::RecordProperty(IdToKey(id, "int").c_str(), id); - Test::RecordProperty("shared_key", IdToString(id).c_str()); - - // This assertion should fail kThreadCount times per thread. It - // is for testing whether Google Test can handle failed assertions in a - // multi-threaded context. - EXPECT_LT(i, 0) << "This should always fail."; - } -} - -void CheckTestFailureCount(int expected_failures) { - const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); - const TestResult* const result = info->result(); - GTEST_CHECK_(expected_failures == result->total_part_count()) - << "Logged " << result->total_part_count() << " failures " - << " vs. " << expected_failures << " expected"; -} - -// Tests using SCOPED_TRACE() and Google Test assertions in many threads -// concurrently. -TEST(StressTest, CanUseScopedTraceAndAssertionsInManyThreads) { - { - scoped_ptr > threads[kThreadCount]; - Notification threads_can_start; - for (int i = 0; i != kThreadCount; i++) - threads[i].reset(new ThreadWithParam(&ManyAsserts, - i, - &threads_can_start)); - - threads_can_start.Notify(); - - // Blocks until all the threads are done. - for (int i = 0; i != kThreadCount; i++) - threads[i]->Join(); - } - - // Ensures that kThreadCount*kThreadCount failures have been reported. - const TestInfo* const info = UnitTest::GetInstance()->current_test_info(); - const TestResult* const result = info->result(); - - std::vector properties; - // We have no access to the TestResult's list of properties but we can - // copy them one by one. - for (int i = 0; i < result->test_property_count(); ++i) - properties.push_back(result->GetTestProperty(i)); - - EXPECT_EQ(kThreadCount * 2 + 1, result->test_property_count()) - << "String and int values recorded on each thread, " - << "as well as one shared_key"; - for (int i = 0; i < kThreadCount; ++i) { - ExpectKeyAndValueWereRecordedForId(properties, i, "string"); - ExpectKeyAndValueWereRecordedForId(properties, i, "int"); - } - CheckTestFailureCount(kThreadCount*kThreadCount); -} - -void FailingThread(bool is_fatal) { - if (is_fatal) - FAIL() << "Fatal failure in some other thread. " - << "(This failure is expected.)"; - else - ADD_FAILURE() << "Non-fatal failure in some other thread. " - << "(This failure is expected.)"; -} - -void GenerateFatalFailureInAnotherThread(bool is_fatal) { - ThreadWithParam thread(&FailingThread, is_fatal, NULL); - thread.Join(); -} - -TEST(NoFatalFailureTest, ExpectNoFatalFailureIgnoresFailuresInOtherThreads) { - EXPECT_NO_FATAL_FAILURE(GenerateFatalFailureInAnotherThread(true)); - // We should only have one failure (the one from - // GenerateFatalFailureInAnotherThread()), since the EXPECT_NO_FATAL_FAILURE - // should succeed. - CheckTestFailureCount(1); -} - -void AssertNoFatalFailureIgnoresFailuresInOtherThreads() { - ASSERT_NO_FATAL_FAILURE(GenerateFatalFailureInAnotherThread(true)); -} -TEST(NoFatalFailureTest, AssertNoFatalFailureIgnoresFailuresInOtherThreads) { - // Using a subroutine, to make sure, that the test continues. - AssertNoFatalFailureIgnoresFailuresInOtherThreads(); - // We should only have one failure (the one from - // GenerateFatalFailureInAnotherThread()), since the EXPECT_NO_FATAL_FAILURE - // should succeed. - CheckTestFailureCount(1); -} - -TEST(FatalFailureTest, ExpectFatalFailureIgnoresFailuresInOtherThreads) { - // This statement should fail, since the current thread doesn't generate a - // fatal failure, only another one does. - EXPECT_FATAL_FAILURE(GenerateFatalFailureInAnotherThread(true), "expected"); - CheckTestFailureCount(2); -} - -TEST(FatalFailureOnAllThreadsTest, ExpectFatalFailureOnAllThreads) { - // This statement should succeed, because failures in all threads are - // considered. - EXPECT_FATAL_FAILURE_ON_ALL_THREADS( - GenerateFatalFailureInAnotherThread(true), "expected"); - CheckTestFailureCount(0); - // We need to add a failure, because main() checks that there are failures. - // But when only this test is run, we shouldn't have any failures. - ADD_FAILURE() << "This is an expected non-fatal failure."; -} - -TEST(NonFatalFailureTest, ExpectNonFatalFailureIgnoresFailuresInOtherThreads) { - // This statement should fail, since the current thread doesn't generate a - // fatal failure, only another one does. - EXPECT_NONFATAL_FAILURE(GenerateFatalFailureInAnotherThread(false), - "expected"); - CheckTestFailureCount(2); -} - -TEST(NonFatalFailureOnAllThreadsTest, ExpectNonFatalFailureOnAllThreads) { - // This statement should succeed, because failures in all threads are - // considered. - EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS( - GenerateFatalFailureInAnotherThread(false), "expected"); - CheckTestFailureCount(0); - // We need to add a failure, because main() checks that there are failures, - // But when only this test is run, we shouldn't have any failures. - ADD_FAILURE() << "This is an expected non-fatal failure."; -} - -} // namespace -} // namespace testing - -int main(int argc, char **argv) { - testing::InitGoogleTest(&argc, argv); - - const int result = RUN_ALL_TESTS(); // Expected to fail. - GTEST_CHECK_(result == 1) << "RUN_ALL_TESTS() did not fail as expected"; - - printf("\nPASS\n"); - return 0; -} - -#else -TEST(StressTest, - DISABLED_ThreadSafetyTestsAreSkippedWhenGoogleTestIsNotThreadSafe) { -} - -int main(int argc, char **argv) { - testing::InitGoogleTest(&argc, argv); - return RUN_ALL_TESTS(); -} -#endif // GTEST_IS_THREADSAFE diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_test_utils.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_test_utils.py deleted file mode 100755 index e0f5973e7..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_test_utils.py +++ /dev/null @@ -1,309 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2006, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Unit test utilities for Google C++ Testing Framework.""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import atexit -import os -import shutil -import sys -import tempfile -import unittest -_test_module = unittest - -# Suppresses the 'Import not at the top of the file' lint complaint. -# pylint: disable-msg=C6204 -try: - import subprocess - _SUBPROCESS_MODULE_AVAILABLE = True -except: - import popen2 - _SUBPROCESS_MODULE_AVAILABLE = False -# pylint: enable-msg=C6204 - -GTEST_OUTPUT_VAR_NAME = 'GTEST_OUTPUT' - -IS_WINDOWS = os.name == 'nt' -IS_CYGWIN = os.name == 'posix' and 'CYGWIN' in os.uname()[0] - -# Here we expose a class from a particular module, depending on the -# environment. The comment suppresses the 'Invalid variable name' lint -# complaint. -TestCase = _test_module.TestCase # pylint: disable-msg=C6409 - -# Initially maps a flag to its default value. After -# _ParseAndStripGTestFlags() is called, maps a flag to its actual value. -_flag_map = {'gtest_source_dir': os.path.dirname(sys.argv[0]), - 'gtest_build_dir': os.path.dirname(sys.argv[0])} -_gtest_flags_are_parsed = False - - -def _ParseAndStripGTestFlags(argv): - """Parses and strips Google Test flags from argv. This is idempotent.""" - - # Suppresses the lint complaint about a global variable since we need it - # here to maintain module-wide state. - global _gtest_flags_are_parsed # pylint: disable-msg=W0603 - if _gtest_flags_are_parsed: - return - - _gtest_flags_are_parsed = True - for flag in _flag_map: - # The environment variable overrides the default value. - if flag.upper() in os.environ: - _flag_map[flag] = os.environ[flag.upper()] - - # The command line flag overrides the environment variable. - i = 1 # Skips the program name. - while i < len(argv): - prefix = '--' + flag + '=' - if argv[i].startswith(prefix): - _flag_map[flag] = argv[i][len(prefix):] - del argv[i] - break - else: - # We don't increment i in case we just found a --gtest_* flag - # and removed it from argv. - i += 1 - - -def GetFlag(flag): - """Returns the value of the given flag.""" - - # In case GetFlag() is called before Main(), we always call - # _ParseAndStripGTestFlags() here to make sure the --gtest_* flags - # are parsed. - _ParseAndStripGTestFlags(sys.argv) - - return _flag_map[flag] - - -def GetSourceDir(): - """Returns the absolute path of the directory where the .py files are.""" - - return os.path.abspath(GetFlag('gtest_source_dir')) - - -def GetBuildDir(): - """Returns the absolute path of the directory where the test binaries are.""" - - return os.path.abspath(GetFlag('gtest_build_dir')) - - -_temp_dir = None - -def _RemoveTempDir(): - if _temp_dir: - shutil.rmtree(_temp_dir, ignore_errors=True) - -atexit.register(_RemoveTempDir) - - -def GetTempDir(): - """Returns a directory for temporary files.""" - - global _temp_dir - if not _temp_dir: - _temp_dir = tempfile.mkdtemp() - return _temp_dir - - -def GetTestExecutablePath(executable_name, build_dir=None): - """Returns the absolute path of the test binary given its name. - - The function will print a message and abort the program if the resulting file - doesn't exist. - - Args: - executable_name: name of the test binary that the test script runs. - build_dir: directory where to look for executables, by default - the result of GetBuildDir(). - - Returns: - The absolute path of the test binary. - """ - - path = os.path.abspath(os.path.join(build_dir or GetBuildDir(), - executable_name)) - if (IS_WINDOWS or IS_CYGWIN) and not path.endswith('.exe'): - path += '.exe' - - if not os.path.exists(path): - message = ( - 'Unable to find the test binary. Please make sure to provide path\n' - 'to the binary via the --gtest_build_dir flag or the GTEST_BUILD_DIR\n' - 'environment variable. For convenient use, invoke this script via\n' - 'mk_test.py.\n' - # TODO(vladl@google.com): change mk_test.py to test.py after renaming - # the file. - 'Please run mk_test.py -h for help.') - print >> sys.stderr, message - sys.exit(1) - - return path - - -def GetExitStatus(exit_code): - """Returns the argument to exit(), or -1 if exit() wasn't called. - - Args: - exit_code: the result value of os.system(command). - """ - - if os.name == 'nt': - # On Windows, os.WEXITSTATUS() doesn't work and os.system() returns - # the argument to exit() directly. - return exit_code - else: - # On Unix, os.WEXITSTATUS() must be used to extract the exit status - # from the result of os.system(). - if os.WIFEXITED(exit_code): - return os.WEXITSTATUS(exit_code) - else: - return -1 - - -class Subprocess: - def __init__(self, command, working_dir=None, capture_stderr=True, env=None): - """Changes into a specified directory, if provided, and executes a command. - - Restores the old directory afterwards. - - Args: - command: The command to run, in the form of sys.argv. - working_dir: The directory to change into. - capture_stderr: Determines whether to capture stderr in the output member - or to discard it. - env: Dictionary with environment to pass to the subprocess. - - Returns: - An object that represents outcome of the executed process. It has the - following attributes: - terminated_by_signal True iff the child process has been terminated - by a signal. - signal Sygnal that terminated the child process. - exited True iff the child process exited normally. - exit_code The code with which the child process exited. - output Child process's stdout and stderr output - combined in a string. - """ - - # The subprocess module is the preferrable way of running programs - # since it is available and behaves consistently on all platforms, - # including Windows. But it is only available starting in python 2.4. - # In earlier python versions, we revert to the popen2 module, which is - # available in python 2.0 and later but doesn't provide required - # functionality (Popen4) under Windows. This allows us to support Mac - # OS X 10.4 Tiger, which has python 2.3 installed. - if _SUBPROCESS_MODULE_AVAILABLE: - if capture_stderr: - stderr = subprocess.STDOUT - else: - stderr = subprocess.PIPE - - p = subprocess.Popen(command, - stdout=subprocess.PIPE, stderr=stderr, - cwd=working_dir, universal_newlines=True, env=env) - # communicate returns a tuple with the file obect for the child's - # output. - self.output = p.communicate()[0] - self._return_code = p.returncode - else: - old_dir = os.getcwd() - - def _ReplaceEnvDict(dest, src): - # Changes made by os.environ.clear are not inheritable by child - # processes until Python 2.6. To produce inheritable changes we have - # to delete environment items with the del statement. - for key in dest: - del dest[key] - dest.update(src) - - # When 'env' is not None, backup the environment variables and replace - # them with the passed 'env'. When 'env' is None, we simply use the - # current 'os.environ' for compatibility with the subprocess.Popen - # semantics used above. - if env is not None: - old_environ = os.environ.copy() - _ReplaceEnvDict(os.environ, env) - - try: - if working_dir is not None: - os.chdir(working_dir) - if capture_stderr: - p = popen2.Popen4(command) - else: - p = popen2.Popen3(command) - p.tochild.close() - self.output = p.fromchild.read() - ret_code = p.wait() - finally: - os.chdir(old_dir) - - # Restore the old environment variables - # if they were replaced. - if env is not None: - _ReplaceEnvDict(os.environ, old_environ) - - # Converts ret_code to match the semantics of - # subprocess.Popen.returncode. - if os.WIFSIGNALED(ret_code): - self._return_code = -os.WTERMSIG(ret_code) - else: # os.WIFEXITED(ret_code) should return True here. - self._return_code = os.WEXITSTATUS(ret_code) - - if self._return_code < 0: - self.terminated_by_signal = True - self.exited = False - self.signal = -self._return_code - else: - self.terminated_by_signal = False - self.exited = True - self.exit_code = self._return_code - - -def Main(): - """Runs the unit test.""" - - # We must call _ParseAndStripGTestFlags() before calling - # unittest.main(). Otherwise the latter will be confused by the - # --gtest_* flags. - _ParseAndStripGTestFlags(sys.argv) - # The tested binaries should not be writing XML output files unless the - # script explicitly instructs them to. - # TODO(vladl@google.com): Move this into Subprocess when we implement - # passing environment into it as a parameter. - if GTEST_OUTPUT_VAR_NAME in os.environ: - del os.environ[GTEST_OUTPUT_VAR_NAME] - - _test_module.main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_ex_test.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_ex_test.cc deleted file mode 100644 index 8bf9dc905..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_ex_test.cc +++ /dev/null @@ -1,92 +0,0 @@ -// Copyright 2009, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Tests Google Test's throw-on-failure mode with exceptions enabled. - -#include - -#include -#include -#include -#include - -// Prints the given failure message and exits the program with -// non-zero. We use this instead of a Google Test assertion to -// indicate a failure, as the latter is been tested and cannot be -// relied on. -void Fail(const char* msg) { - printf("FAILURE: %s\n", msg); - fflush(stdout); - exit(1); -} - -// Tests that an assertion failure throws a subclass of -// std::runtime_error. -void TestFailureThrowsRuntimeError() { - testing::GTEST_FLAG(throw_on_failure) = true; - - // A successful assertion shouldn't throw. - try { - EXPECT_EQ(3, 3); - } catch(...) { - Fail("A successful assertion wrongfully threw."); - } - - // A failed assertion should throw a subclass of std::runtime_error. - try { - EXPECT_EQ(2, 3) << "Expected failure"; - } catch(const std::runtime_error& e) { - if (strstr(e.what(), "Expected failure") != NULL) - return; - - printf("%s", - "A failed assertion did throw an exception of the right type, " - "but the message is incorrect. Instead of containing \"Expected " - "failure\", it is:\n"); - Fail(e.what()); - } catch(...) { - Fail("A failed assertion threw the wrong type of exception."); - } - Fail("A failed assertion should've thrown but didn't."); -} - -int main(int argc, char** argv) { - testing::InitGoogleTest(&argc, argv); - - // We want to ensure that people can use Google Test assertions in - // other testing frameworks, as long as they initialize Google Test - // properly and set the thrown-on-failure mode. Therefore, we don't - // use Google Test's constructs for defining and running tests - // (e.g. TEST and RUN_ALL_TESTS) here. - - TestFailureThrowsRuntimeError(); - return 0; -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_test.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_test.py deleted file mode 100755 index 5678ffeaf..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_test.py +++ /dev/null @@ -1,171 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2009, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Tests Google Test's throw-on-failure mode with exceptions disabled. - -This script invokes gtest_throw_on_failure_test_ (a program written with -Google Test) with different environments and command line flags. -""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import os -import gtest_test_utils - - -# Constants. - -# The command line flag for enabling/disabling the throw-on-failure mode. -THROW_ON_FAILURE = 'gtest_throw_on_failure' - -# Path to the gtest_throw_on_failure_test_ program, compiled with -# exceptions disabled. -EXE_PATH = gtest_test_utils.GetTestExecutablePath( - 'gtest_throw_on_failure_test_') - - -# Utilities. - - -def SetEnvVar(env_var, value): - """Sets an environment variable to a given value; unsets it when the - given value is None. - """ - - env_var = env_var.upper() - if value is not None: - os.environ[env_var] = value - elif env_var in os.environ: - del os.environ[env_var] - - -def Run(command): - """Runs a command; returns True/False if its exit code is/isn't 0.""" - - print 'Running "%s". . .' % ' '.join(command) - p = gtest_test_utils.Subprocess(command) - return p.exited and p.exit_code == 0 - - -# The tests. TODO(wan@google.com): refactor the class to share common -# logic with code in gtest_break_on_failure_unittest.py. -class ThrowOnFailureTest(gtest_test_utils.TestCase): - """Tests the throw-on-failure mode.""" - - def RunAndVerify(self, env_var_value, flag_value, should_fail): - """Runs gtest_throw_on_failure_test_ and verifies that it does - (or does not) exit with a non-zero code. - - Args: - env_var_value: value of the GTEST_BREAK_ON_FAILURE environment - variable; None if the variable should be unset. - flag_value: value of the --gtest_break_on_failure flag; - None if the flag should not be present. - should_fail: True iff the program is expected to fail. - """ - - SetEnvVar(THROW_ON_FAILURE, env_var_value) - - if env_var_value is None: - env_var_value_msg = ' is not set' - else: - env_var_value_msg = '=' + env_var_value - - if flag_value is None: - flag = '' - elif flag_value == '0': - flag = '--%s=0' % THROW_ON_FAILURE - else: - flag = '--%s' % THROW_ON_FAILURE - - command = [EXE_PATH] - if flag: - command.append(flag) - - if should_fail: - should_or_not = 'should' - else: - should_or_not = 'should not' - - failed = not Run(command) - - SetEnvVar(THROW_ON_FAILURE, None) - - msg = ('when %s%s, an assertion failure in "%s" %s cause a non-zero ' - 'exit code.' % - (THROW_ON_FAILURE, env_var_value_msg, ' '.join(command), - should_or_not)) - self.assert_(failed == should_fail, msg) - - def testDefaultBehavior(self): - """Tests the behavior of the default mode.""" - - self.RunAndVerify(env_var_value=None, flag_value=None, should_fail=False) - - def testThrowOnFailureEnvVar(self): - """Tests using the GTEST_THROW_ON_FAILURE environment variable.""" - - self.RunAndVerify(env_var_value='0', - flag_value=None, - should_fail=False) - self.RunAndVerify(env_var_value='1', - flag_value=None, - should_fail=True) - - def testThrowOnFailureFlag(self): - """Tests using the --gtest_throw_on_failure flag.""" - - self.RunAndVerify(env_var_value=None, - flag_value='0', - should_fail=False) - self.RunAndVerify(env_var_value=None, - flag_value='1', - should_fail=True) - - def testThrowOnFailureFlagOverridesEnvVar(self): - """Tests that --gtest_throw_on_failure overrides GTEST_THROW_ON_FAILURE.""" - - self.RunAndVerify(env_var_value='0', - flag_value='0', - should_fail=False) - self.RunAndVerify(env_var_value='0', - flag_value='1', - should_fail=True) - self.RunAndVerify(env_var_value='1', - flag_value='0', - should_fail=False) - self.RunAndVerify(env_var_value='1', - flag_value='1', - should_fail=True) - - -if __name__ == '__main__': - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_test_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_test_.cc deleted file mode 100644 index 88fbd5a76..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_throw_on_failure_test_.cc +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright 2009, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -// Tests Google Test's throw-on-failure mode with exceptions disabled. -// -// This program must be compiled with exceptions disabled. It will be -// invoked by gtest_throw_on_failure_test.py, and is expected to exit -// with non-zero in the throw-on-failure mode or 0 otherwise. - -#include - -int main(int argc, char** argv) { - testing::InitGoogleTest(&argc, argv); - - // We want to ensure that people can use Google Test assertions in - // other testing frameworks, as long as they initialize Google Test - // properly and set the thrown-on-failure mode. Therefore, we don't - // use Google Test's constructs for defining and running tests - // (e.g. TEST and RUN_ALL_TESTS) here. - - // In the throw-on-failure mode with exceptions disabled, this - // assertion will cause the program to exit with a non-zero code. - EXPECT_EQ(2, 3); - - // When not in the throw-on-failure mode, the control will reach - // here. - return 0; -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_uninitialized_test.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_uninitialized_test.py deleted file mode 100755 index 6ae57eeed..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_uninitialized_test.py +++ /dev/null @@ -1,70 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2008, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Verifies that Google Test warns the user when not initialized properly.""" - -__author__ = 'wan@google.com (Zhanyong Wan)' - -import gtest_test_utils - - -COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_') - - -def Assert(condition): - if not condition: - raise AssertionError - - -def AssertEq(expected, actual): - if expected != actual: - print 'Expected: %s' % (expected,) - print ' Actual: %s' % (actual,) - raise AssertionError - - -def TestExitCodeAndOutput(command): - """Runs the given command and verifies its exit code and output.""" - - # Verifies that 'command' exits with code 1. - p = gtest_test_utils.Subprocess(command) - Assert(p.exited) - AssertEq(1, p.exit_code) - Assert('InitGoogleTest' in p.output) - - -class GTestUninitializedTest(gtest_test_utils.TestCase): - def testExitCodeAndOutput(self): - TestExitCodeAndOutput(COMMAND) - - -if __name__ == '__main__': - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_uninitialized_test_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_uninitialized_test_.cc deleted file mode 100644 index e8b2aa81d..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_uninitialized_test_.cc +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) - -#include - -TEST(DummyTest, Dummy) { - // This test doesn't verify anything. We just need it to create a - // realistic stage for testing the behavior of Google Test when - // RUN_ALL_TESTS() is called without testing::InitGoogleTest() being - // called first. -} - -int main() { - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_unittest.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_unittest.cc deleted file mode 100644 index a14f065a2..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_unittest.cc +++ /dev/null @@ -1,6718 +0,0 @@ -// Copyright 2005, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// Tests for Google Test itself. This verifies that the basic constructs of -// Google Test work. - -#include -#include - -// Verifies that the command line flag variables can be accessed -// in code once has been #included. -// Do not move it after other #includes. -TEST(CommandLineFlagsTest, CanBeAccessedInCodeOnceGTestHIsIncluded) { - bool dummy = testing::GTEST_FLAG(also_run_disabled_tests) - || testing::GTEST_FLAG(break_on_failure) - || testing::GTEST_FLAG(catch_exceptions) - || testing::GTEST_FLAG(color) != "unknown" - || testing::GTEST_FLAG(filter) != "unknown" - || testing::GTEST_FLAG(list_tests) - || testing::GTEST_FLAG(output) != "unknown" - || testing::GTEST_FLAG(print_time) - || testing::GTEST_FLAG(random_seed) - || testing::GTEST_FLAG(repeat) > 0 - || testing::GTEST_FLAG(show_internal_stack_frames) - || testing::GTEST_FLAG(shuffle) - || testing::GTEST_FLAG(stack_trace_depth) > 0 - || testing::GTEST_FLAG(throw_on_failure); - EXPECT_TRUE(dummy || !dummy); // Suppresses warning that dummy is unused. -} - -#include - -// Indicates that this translation unit is part of Google Test's -// implementation. It must come before gtest-internal-inl.h is -// included, or there will be a compiler error. This trick is to -// prevent a user from accidentally including gtest-internal-inl.h in -// his code. -#define GTEST_IMPLEMENTATION_ 1 -#include "src/gtest-internal-inl.h" -#undef GTEST_IMPLEMENTATION_ - -#include // For INT_MAX. -#include -#include - -#include - -namespace testing { -namespace internal { - -// Provides access to otherwise private parts of the TestEventListeners class -// that are needed to test it. -class TestEventListenersAccessor { - public: - static TestEventListener* GetRepeater(TestEventListeners* listeners) { - return listeners->repeater(); - } - - static void SetDefaultResultPrinter(TestEventListeners* listeners, - TestEventListener* listener) { - listeners->SetDefaultResultPrinter(listener); - } - static void SetDefaultXmlGenerator(TestEventListeners* listeners, - TestEventListener* listener) { - listeners->SetDefaultXmlGenerator(listener); - } - - static bool EventForwardingEnabled(const TestEventListeners& listeners) { - return listeners.EventForwardingEnabled(); - } - - static void SuppressEventForwarding(TestEventListeners* listeners) { - listeners->SuppressEventForwarding(); - } -}; - -} // namespace internal -} // namespace testing - -using testing::AssertionFailure; -using testing::AssertionResult; -using testing::AssertionSuccess; -using testing::DoubleLE; -using testing::EmptyTestEventListener; -using testing::FloatLE; -using testing::GTEST_FLAG(also_run_disabled_tests); -using testing::GTEST_FLAG(break_on_failure); -using testing::GTEST_FLAG(catch_exceptions); -using testing::GTEST_FLAG(color); -using testing::GTEST_FLAG(death_test_use_fork); -using testing::GTEST_FLAG(filter); -using testing::GTEST_FLAG(list_tests); -using testing::GTEST_FLAG(output); -using testing::GTEST_FLAG(print_time); -using testing::GTEST_FLAG(random_seed); -using testing::GTEST_FLAG(repeat); -using testing::GTEST_FLAG(show_internal_stack_frames); -using testing::GTEST_FLAG(shuffle); -using testing::GTEST_FLAG(stack_trace_depth); -using testing::GTEST_FLAG(throw_on_failure); -using testing::IsNotSubstring; -using testing::IsSubstring; -using testing::Message; -using testing::ScopedFakeTestPartResultReporter; -using testing::StaticAssertTypeEq; -using testing::Test; -using testing::TestEventListeners; -using testing::TestCase; -using testing::TestPartResult; -using testing::TestPartResultArray; -using testing::TestProperty; -using testing::TestResult; -using testing::UnitTest; -using testing::kMaxStackTraceDepth; -using testing::internal::AlwaysFalse; -using testing::internal::AlwaysTrue; -using testing::internal::AppendUserMessage; -using testing::internal::CodePointToUtf8; -using testing::internal::CountIf; -using testing::internal::EqFailure; -using testing::internal::FloatingPoint; -using testing::internal::FormatTimeInMillisAsSeconds; -using testing::internal::ForEach; -using testing::internal::GTestFlagSaver; -using testing::internal::GetCurrentOsStackTraceExceptTop; -using testing::internal::GetElementOr; -using testing::internal::GetNextRandomSeed; -using testing::internal::GetRandomSeedFromFlag; -using testing::internal::GetTestTypeId; -using testing::internal::GetTypeId; -using testing::internal::GetUnitTestImpl; -using testing::internal::Int32; -using testing::internal::Int32FromEnvOrDie; -using testing::internal::ParseInt32Flag; -using testing::internal::ShouldRunTestOnShard; -using testing::internal::ShouldShard; -using testing::internal::ShouldUseColor; -using testing::internal::Shuffle; -using testing::internal::ShuffleRange; -using testing::internal::StreamableToString; -using testing::internal::String; -using testing::internal::TestEventListenersAccessor; -using testing::internal::TestResultAccessor; -using testing::internal::UInt32; -using testing::internal::WideStringToUtf8; -using testing::internal::kMaxRandomSeed; -using testing::internal::kTestTypeIdInGoogleTest; -using testing::internal::scoped_ptr; - -#if GTEST_HAS_STREAM_REDIRECTION_ -using testing::internal::CaptureStdout; -using testing::internal::GetCapturedStdout; -#endif // GTEST_HAS_STREAM_REDIRECTION_ - -#if GTEST_IS_THREADSAFE -using testing::internal::ThreadWithParam; -#endif - -class TestingVector : public std::vector { -}; - -::std::ostream& operator<<(::std::ostream& os, - const TestingVector& vector) { - os << "{ "; - for (size_t i = 0; i < vector.size(); i++) { - os << vector[i] << " "; - } - os << "}"; - return os; -} - -// This line tests that we can define tests in an unnamed namespace. -namespace { - -TEST(GetRandomSeedFromFlagTest, HandlesZero) { - const int seed = GetRandomSeedFromFlag(0); - EXPECT_LE(1, seed); - EXPECT_LE(seed, static_cast(kMaxRandomSeed)); -} - -TEST(GetRandomSeedFromFlagTest, PreservesValidSeed) { - EXPECT_EQ(1, GetRandomSeedFromFlag(1)); - EXPECT_EQ(2, GetRandomSeedFromFlag(2)); - EXPECT_EQ(kMaxRandomSeed - 1, GetRandomSeedFromFlag(kMaxRandomSeed - 1)); - EXPECT_EQ(static_cast(kMaxRandomSeed), - GetRandomSeedFromFlag(kMaxRandomSeed)); -} - -TEST(GetRandomSeedFromFlagTest, NormalizesInvalidSeed) { - const int seed1 = GetRandomSeedFromFlag(-1); - EXPECT_LE(1, seed1); - EXPECT_LE(seed1, static_cast(kMaxRandomSeed)); - - const int seed2 = GetRandomSeedFromFlag(kMaxRandomSeed + 1); - EXPECT_LE(1, seed2); - EXPECT_LE(seed2, static_cast(kMaxRandomSeed)); -} - -TEST(GetNextRandomSeedTest, WorksForValidInput) { - EXPECT_EQ(2, GetNextRandomSeed(1)); - EXPECT_EQ(3, GetNextRandomSeed(2)); - EXPECT_EQ(static_cast(kMaxRandomSeed), - GetNextRandomSeed(kMaxRandomSeed - 1)); - EXPECT_EQ(1, GetNextRandomSeed(kMaxRandomSeed)); - - // We deliberately don't test GetNextRandomSeed() with invalid - // inputs, as that requires death tests, which are expensive. This - // is fine as GetNextRandomSeed() is internal and has a - // straightforward definition. -} - -static void ClearCurrentTestPartResults() { - TestResultAccessor::ClearTestPartResults( - GetUnitTestImpl()->current_test_result()); -} - -// Tests GetTypeId. - -TEST(GetTypeIdTest, ReturnsSameValueForSameType) { - EXPECT_EQ(GetTypeId(), GetTypeId()); - EXPECT_EQ(GetTypeId(), GetTypeId()); -} - -class SubClassOfTest : public Test {}; -class AnotherSubClassOfTest : public Test {}; - -TEST(GetTypeIdTest, ReturnsDifferentValuesForDifferentTypes) { - EXPECT_NE(GetTypeId(), GetTypeId()); - EXPECT_NE(GetTypeId(), GetTypeId()); - EXPECT_NE(GetTypeId(), GetTestTypeId()); - EXPECT_NE(GetTypeId(), GetTestTypeId()); - EXPECT_NE(GetTypeId(), GetTestTypeId()); - EXPECT_NE(GetTypeId(), GetTypeId()); -} - -// Verifies that GetTestTypeId() returns the same value, no matter it -// is called from inside Google Test or outside of it. -TEST(GetTestTypeIdTest, ReturnsTheSameValueInsideOrOutsideOfGoogleTest) { - EXPECT_EQ(kTestTypeIdInGoogleTest, GetTestTypeId()); -} - -// Tests FormatTimeInMillisAsSeconds(). - -TEST(FormatTimeInMillisAsSecondsTest, FormatsZero) { - EXPECT_EQ("0", FormatTimeInMillisAsSeconds(0)); -} - -TEST(FormatTimeInMillisAsSecondsTest, FormatsPositiveNumber) { - EXPECT_EQ("0.003", FormatTimeInMillisAsSeconds(3)); - EXPECT_EQ("0.01", FormatTimeInMillisAsSeconds(10)); - EXPECT_EQ("0.2", FormatTimeInMillisAsSeconds(200)); - EXPECT_EQ("1.2", FormatTimeInMillisAsSeconds(1200)); - EXPECT_EQ("3", FormatTimeInMillisAsSeconds(3000)); -} - -TEST(FormatTimeInMillisAsSecondsTest, FormatsNegativeNumber) { - EXPECT_EQ("-0.003", FormatTimeInMillisAsSeconds(-3)); - EXPECT_EQ("-0.01", FormatTimeInMillisAsSeconds(-10)); - EXPECT_EQ("-0.2", FormatTimeInMillisAsSeconds(-200)); - EXPECT_EQ("-1.2", FormatTimeInMillisAsSeconds(-1200)); - EXPECT_EQ("-3", FormatTimeInMillisAsSeconds(-3000)); -} - -#if GTEST_CAN_COMPARE_NULL - -#ifdef __BORLANDC__ -// Silences warnings: "Condition is always true", "Unreachable code" -#pragma option push -w-ccc -w-rch -#endif - -// Tests that GTEST_IS_NULL_LITERAL_(x) is true when x is a null -// pointer literal. -TEST(NullLiteralTest, IsTrueForNullLiterals) { - EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(NULL)); - EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(0)); - EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(0U)); - EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(0L)); - EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(false)); -#ifndef __BORLANDC__ - // Some compilers may fail to detect some null pointer literals; - // as long as users of the framework don't use such literals, this - // is harmless. - EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(1 - 1)); - EXPECT_TRUE(GTEST_IS_NULL_LITERAL_(true && false)); -#endif -} - -// Tests that GTEST_IS_NULL_LITERAL_(x) is false when x is not a null -// pointer literal. -TEST(NullLiteralTest, IsFalseForNonNullLiterals) { - EXPECT_FALSE(GTEST_IS_NULL_LITERAL_(1)); - EXPECT_FALSE(GTEST_IS_NULL_LITERAL_(0.0)); - EXPECT_FALSE(GTEST_IS_NULL_LITERAL_('a')); - EXPECT_FALSE(GTEST_IS_NULL_LITERAL_(static_cast(NULL))); -} - -#ifdef __BORLANDC__ -// Restores warnings after previous "#pragma option push" suppressed them. -#pragma option pop -#endif - -#endif // GTEST_CAN_COMPARE_NULL -// -// Tests CodePointToUtf8(). - -// Tests that the NUL character L'\0' is encoded correctly. -TEST(CodePointToUtf8Test, CanEncodeNul) { - char buffer[32]; - EXPECT_STREQ("", CodePointToUtf8(L'\0', buffer)); -} - -// Tests that ASCII characters are encoded correctly. -TEST(CodePointToUtf8Test, CanEncodeAscii) { - char buffer[32]; - EXPECT_STREQ("a", CodePointToUtf8(L'a', buffer)); - EXPECT_STREQ("Z", CodePointToUtf8(L'Z', buffer)); - EXPECT_STREQ("&", CodePointToUtf8(L'&', buffer)); - EXPECT_STREQ("\x7F", CodePointToUtf8(L'\x7F', buffer)); -} - -// Tests that Unicode code-points that have 8 to 11 bits are encoded -// as 110xxxxx 10xxxxxx. -TEST(CodePointToUtf8Test, CanEncode8To11Bits) { - char buffer[32]; - // 000 1101 0011 => 110-00011 10-010011 - EXPECT_STREQ("\xC3\x93", CodePointToUtf8(L'\xD3', buffer)); - - // 101 0111 0110 => 110-10101 10-110110 - EXPECT_STREQ("\xD5\xB6", CodePointToUtf8(L'\x576', buffer)); -} - -// Tests that Unicode code-points that have 12 to 16 bits are encoded -// as 1110xxxx 10xxxxxx 10xxxxxx. -TEST(CodePointToUtf8Test, CanEncode12To16Bits) { - char buffer[32]; - // 0000 1000 1101 0011 => 1110-0000 10-100011 10-010011 - EXPECT_STREQ("\xE0\xA3\x93", CodePointToUtf8(L'\x8D3', buffer)); - - // 1100 0111 0100 1101 => 1110-1100 10-011101 10-001101 - EXPECT_STREQ("\xEC\x9D\x8D", CodePointToUtf8(L'\xC74D', buffer)); -} - -#if !GTEST_WIDE_STRING_USES_UTF16_ -// Tests in this group require a wchar_t to hold > 16 bits, and thus -// are skipped on Windows, Cygwin, and Symbian, where a wchar_t is -// 16-bit wide. This code may not compile on those systems. - -// Tests that Unicode code-points that have 17 to 21 bits are encoded -// as 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx. -TEST(CodePointToUtf8Test, CanEncode17To21Bits) { - char buffer[32]; - // 0 0001 0000 1000 1101 0011 => 11110-000 10-010000 10-100011 10-010011 - EXPECT_STREQ("\xF0\x90\xA3\x93", CodePointToUtf8(L'\x108D3', buffer)); - - // 0 0001 0000 0100 0000 0000 => 11110-000 10-010000 10-010000 10-000000 - EXPECT_STREQ("\xF0\x90\x90\x80", CodePointToUtf8(L'\x10400', buffer)); - - // 1 0000 1000 0110 0011 0100 => 11110-100 10-001000 10-011000 10-110100 - EXPECT_STREQ("\xF4\x88\x98\xB4", CodePointToUtf8(L'\x108634', buffer)); -} - -// Tests that encoding an invalid code-point generates the expected result. -TEST(CodePointToUtf8Test, CanEncodeInvalidCodePoint) { - char buffer[32]; - EXPECT_STREQ("(Invalid Unicode 0x1234ABCD)", - CodePointToUtf8(L'\x1234ABCD', buffer)); -} - -#endif // !GTEST_WIDE_STRING_USES_UTF16_ - -// Tests WideStringToUtf8(). - -// Tests that the NUL character L'\0' is encoded correctly. -TEST(WideStringToUtf8Test, CanEncodeNul) { - EXPECT_STREQ("", WideStringToUtf8(L"", 0).c_str()); - EXPECT_STREQ("", WideStringToUtf8(L"", -1).c_str()); -} - -// Tests that ASCII strings are encoded correctly. -TEST(WideStringToUtf8Test, CanEncodeAscii) { - EXPECT_STREQ("a", WideStringToUtf8(L"a", 1).c_str()); - EXPECT_STREQ("ab", WideStringToUtf8(L"ab", 2).c_str()); - EXPECT_STREQ("a", WideStringToUtf8(L"a", -1).c_str()); - EXPECT_STREQ("ab", WideStringToUtf8(L"ab", -1).c_str()); -} - -// Tests that Unicode code-points that have 8 to 11 bits are encoded -// as 110xxxxx 10xxxxxx. -TEST(WideStringToUtf8Test, CanEncode8To11Bits) { - // 000 1101 0011 => 110-00011 10-010011 - EXPECT_STREQ("\xC3\x93", WideStringToUtf8(L"\xD3", 1).c_str()); - EXPECT_STREQ("\xC3\x93", WideStringToUtf8(L"\xD3", -1).c_str()); - - // 101 0111 0110 => 110-10101 10-110110 - EXPECT_STREQ("\xD5\xB6", WideStringToUtf8(L"\x576", 1).c_str()); - EXPECT_STREQ("\xD5\xB6", WideStringToUtf8(L"\x576", -1).c_str()); -} - -// Tests that Unicode code-points that have 12 to 16 bits are encoded -// as 1110xxxx 10xxxxxx 10xxxxxx. -TEST(WideStringToUtf8Test, CanEncode12To16Bits) { - // 0000 1000 1101 0011 => 1110-0000 10-100011 10-010011 - EXPECT_STREQ("\xE0\xA3\x93", WideStringToUtf8(L"\x8D3", 1).c_str()); - EXPECT_STREQ("\xE0\xA3\x93", WideStringToUtf8(L"\x8D3", -1).c_str()); - - // 1100 0111 0100 1101 => 1110-1100 10-011101 10-001101 - EXPECT_STREQ("\xEC\x9D\x8D", WideStringToUtf8(L"\xC74D", 1).c_str()); - EXPECT_STREQ("\xEC\x9D\x8D", WideStringToUtf8(L"\xC74D", -1).c_str()); -} - -// Tests that the conversion stops when the function encounters \0 character. -TEST(WideStringToUtf8Test, StopsOnNulCharacter) { - EXPECT_STREQ("ABC", WideStringToUtf8(L"ABC\0XYZ", 100).c_str()); -} - -// Tests that the conversion stops when the function reaches the limit -// specified by the 'length' parameter. -TEST(WideStringToUtf8Test, StopsWhenLengthLimitReached) { - EXPECT_STREQ("ABC", WideStringToUtf8(L"ABCDEF", 3).c_str()); -} - - -#if !GTEST_WIDE_STRING_USES_UTF16_ -// Tests that Unicode code-points that have 17 to 21 bits are encoded -// as 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx. This code may not compile -// on the systems using UTF-16 encoding. -TEST(WideStringToUtf8Test, CanEncode17To21Bits) { - // 0 0001 0000 1000 1101 0011 => 11110-000 10-010000 10-100011 10-010011 - EXPECT_STREQ("\xF0\x90\xA3\x93", WideStringToUtf8(L"\x108D3", 1).c_str()); - EXPECT_STREQ("\xF0\x90\xA3\x93", WideStringToUtf8(L"\x108D3", -1).c_str()); - - // 1 0000 1000 0110 0011 0100 => 11110-100 10-001000 10-011000 10-110100 - EXPECT_STREQ("\xF4\x88\x98\xB4", WideStringToUtf8(L"\x108634", 1).c_str()); - EXPECT_STREQ("\xF4\x88\x98\xB4", WideStringToUtf8(L"\x108634", -1).c_str()); -} - -// Tests that encoding an invalid code-point generates the expected result. -TEST(WideStringToUtf8Test, CanEncodeInvalidCodePoint) { - EXPECT_STREQ("(Invalid Unicode 0xABCDFF)", - WideStringToUtf8(L"\xABCDFF", -1).c_str()); -} -#else // !GTEST_WIDE_STRING_USES_UTF16_ -// Tests that surrogate pairs are encoded correctly on the systems using -// UTF-16 encoding in the wide strings. -TEST(WideStringToUtf8Test, CanEncodeValidUtf16SUrrogatePairs) { - EXPECT_STREQ("\xF0\x90\x90\x80", - WideStringToUtf8(L"\xD801\xDC00", -1).c_str()); -} - -// Tests that encoding an invalid UTF-16 surrogate pair -// generates the expected result. -TEST(WideStringToUtf8Test, CanEncodeInvalidUtf16SurrogatePair) { - // Leading surrogate is at the end of the string. - EXPECT_STREQ("\xED\xA0\x80", WideStringToUtf8(L"\xD800", -1).c_str()); - // Leading surrogate is not followed by the trailing surrogate. - EXPECT_STREQ("\xED\xA0\x80$", WideStringToUtf8(L"\xD800$", -1).c_str()); - // Trailing surrogate appearas without a leading surrogate. - EXPECT_STREQ("\xED\xB0\x80PQR", WideStringToUtf8(L"\xDC00PQR", -1).c_str()); -} -#endif // !GTEST_WIDE_STRING_USES_UTF16_ - -// Tests that codepoint concatenation works correctly. -#if !GTEST_WIDE_STRING_USES_UTF16_ -TEST(WideStringToUtf8Test, ConcatenatesCodepointsCorrectly) { - EXPECT_STREQ( - "\xF4\x88\x98\xB4" - "\xEC\x9D\x8D" - "\n" - "\xD5\xB6" - "\xE0\xA3\x93" - "\xF4\x88\x98\xB4", - WideStringToUtf8(L"\x108634\xC74D\n\x576\x8D3\x108634", -1).c_str()); -} -#else -TEST(WideStringToUtf8Test, ConcatenatesCodepointsCorrectly) { - EXPECT_STREQ( - "\xEC\x9D\x8D" "\n" "\xD5\xB6" "\xE0\xA3\x93", - WideStringToUtf8(L"\xC74D\n\x576\x8D3", -1).c_str()); -} -#endif // !GTEST_WIDE_STRING_USES_UTF16_ - -// Tests the Random class. - -TEST(RandomDeathTest, GeneratesCrashesOnInvalidRange) { - testing::internal::Random random(42); - EXPECT_DEATH_IF_SUPPORTED( - random.Generate(0), - "Cannot generate a number in the range \\[0, 0\\)"); - EXPECT_DEATH_IF_SUPPORTED( - random.Generate(testing::internal::Random::kMaxRange + 1), - "Generation of a number in \\[0, 2147483649\\) was requested, " - "but this can only generate numbers in \\[0, 2147483648\\)"); -} - -TEST(RandomTest, GeneratesNumbersWithinRange) { - const UInt32 kRange = 10000; - testing::internal::Random random(12345); - for (int i = 0; i < 10; i++) { - EXPECT_LT(random.Generate(kRange), kRange) << " for iteration " << i; - } - - testing::internal::Random random2(testing::internal::Random::kMaxRange); - for (int i = 0; i < 10; i++) { - EXPECT_LT(random2.Generate(kRange), kRange) << " for iteration " << i; - } -} - -TEST(RandomTest, RepeatsWhenReseeded) { - const int kSeed = 123; - const int kArraySize = 10; - const UInt32 kRange = 10000; - UInt32 values[kArraySize]; - - testing::internal::Random random(kSeed); - for (int i = 0; i < kArraySize; i++) { - values[i] = random.Generate(kRange); - } - - random.Reseed(kSeed); - for (int i = 0; i < kArraySize; i++) { - EXPECT_EQ(values[i], random.Generate(kRange)) << " for iteration " << i; - } -} - -// Tests STL container utilities. - -// Tests CountIf(). - -static bool IsPositive(int n) { return n > 0; } - -TEST(ContainerUtilityTest, CountIf) { - std::vector v; - EXPECT_EQ(0, CountIf(v, IsPositive)); // Works for an empty container. - - v.push_back(-1); - v.push_back(0); - EXPECT_EQ(0, CountIf(v, IsPositive)); // Works when no value satisfies. - - v.push_back(2); - v.push_back(-10); - v.push_back(10); - EXPECT_EQ(2, CountIf(v, IsPositive)); -} - -// Tests ForEach(). - -static int g_sum = 0; -static void Accumulate(int n) { g_sum += n; } - -TEST(ContainerUtilityTest, ForEach) { - std::vector v; - g_sum = 0; - ForEach(v, Accumulate); - EXPECT_EQ(0, g_sum); // Works for an empty container; - - g_sum = 0; - v.push_back(1); - ForEach(v, Accumulate); - EXPECT_EQ(1, g_sum); // Works for a container with one element. - - g_sum = 0; - v.push_back(20); - v.push_back(300); - ForEach(v, Accumulate); - EXPECT_EQ(321, g_sum); -} - -// Tests GetElementOr(). -TEST(ContainerUtilityTest, GetElementOr) { - std::vector a; - EXPECT_EQ('x', GetElementOr(a, 0, 'x')); - - a.push_back('a'); - a.push_back('b'); - EXPECT_EQ('a', GetElementOr(a, 0, 'x')); - EXPECT_EQ('b', GetElementOr(a, 1, 'x')); - EXPECT_EQ('x', GetElementOr(a, -2, 'x')); - EXPECT_EQ('x', GetElementOr(a, 2, 'x')); -} - -TEST(ContainerUtilityDeathTest, ShuffleRange) { - std::vector a; - a.push_back(0); - a.push_back(1); - a.push_back(2); - testing::internal::Random random(1); - - EXPECT_DEATH_IF_SUPPORTED( - ShuffleRange(&random, -1, 1, &a), - "Invalid shuffle range start -1: must be in range \\[0, 3\\]"); - EXPECT_DEATH_IF_SUPPORTED( - ShuffleRange(&random, 4, 4, &a), - "Invalid shuffle range start 4: must be in range \\[0, 3\\]"); - EXPECT_DEATH_IF_SUPPORTED( - ShuffleRange(&random, 3, 2, &a), - "Invalid shuffle range finish 2: must be in range \\[3, 3\\]"); - EXPECT_DEATH_IF_SUPPORTED( - ShuffleRange(&random, 3, 4, &a), - "Invalid shuffle range finish 4: must be in range \\[3, 3\\]"); -} - -class VectorShuffleTest : public Test { - protected: - static const int kVectorSize = 20; - - VectorShuffleTest() : random_(1) { - for (int i = 0; i < kVectorSize; i++) { - vector_.push_back(i); - } - } - - static bool VectorIsCorrupt(const TestingVector& vector) { - if (kVectorSize != static_cast(vector.size())) { - return true; - } - - bool found_in_vector[kVectorSize] = { false }; - for (size_t i = 0; i < vector.size(); i++) { - const int e = vector[i]; - if (e < 0 || e >= kVectorSize || found_in_vector[e]) { - return true; - } - found_in_vector[e] = true; - } - - // Vector size is correct, elements' range is correct, no - // duplicate elements. Therefore no corruption has occurred. - return false; - } - - static bool VectorIsNotCorrupt(const TestingVector& vector) { - return !VectorIsCorrupt(vector); - } - - static bool RangeIsShuffled(const TestingVector& vector, int begin, int end) { - for (int i = begin; i < end; i++) { - if (i != vector[i]) { - return true; - } - } - return false; - } - - static bool RangeIsUnshuffled( - const TestingVector& vector, int begin, int end) { - return !RangeIsShuffled(vector, begin, end); - } - - static bool VectorIsShuffled(const TestingVector& vector) { - return RangeIsShuffled(vector, 0, static_cast(vector.size())); - } - - static bool VectorIsUnshuffled(const TestingVector& vector) { - return !VectorIsShuffled(vector); - } - - testing::internal::Random random_; - TestingVector vector_; -}; // class VectorShuffleTest - -const int VectorShuffleTest::kVectorSize; - -TEST_F(VectorShuffleTest, HandlesEmptyRange) { - // Tests an empty range at the beginning... - ShuffleRange(&random_, 0, 0, &vector_); - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - ASSERT_PRED1(VectorIsUnshuffled, vector_); - - // ...in the middle... - ShuffleRange(&random_, kVectorSize/2, kVectorSize/2, &vector_); - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - ASSERT_PRED1(VectorIsUnshuffled, vector_); - - // ...at the end... - ShuffleRange(&random_, kVectorSize - 1, kVectorSize - 1, &vector_); - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - ASSERT_PRED1(VectorIsUnshuffled, vector_); - - // ...and past the end. - ShuffleRange(&random_, kVectorSize, kVectorSize, &vector_); - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - ASSERT_PRED1(VectorIsUnshuffled, vector_); -} - -TEST_F(VectorShuffleTest, HandlesRangeOfSizeOne) { - // Tests a size one range at the beginning... - ShuffleRange(&random_, 0, 1, &vector_); - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - ASSERT_PRED1(VectorIsUnshuffled, vector_); - - // ...in the middle... - ShuffleRange(&random_, kVectorSize/2, kVectorSize/2 + 1, &vector_); - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - ASSERT_PRED1(VectorIsUnshuffled, vector_); - - // ...and at the end. - ShuffleRange(&random_, kVectorSize - 1, kVectorSize, &vector_); - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - ASSERT_PRED1(VectorIsUnshuffled, vector_); -} - -// Because we use our own random number generator and a fixed seed, -// we can guarantee that the following "random" tests will succeed. - -TEST_F(VectorShuffleTest, ShufflesEntireVector) { - Shuffle(&random_, &vector_); - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - EXPECT_FALSE(VectorIsUnshuffled(vector_)) << vector_; - - // Tests the first and last elements in particular to ensure that - // there are no off-by-one problems in our shuffle algorithm. - EXPECT_NE(0, vector_[0]); - EXPECT_NE(kVectorSize - 1, vector_[kVectorSize - 1]); -} - -TEST_F(VectorShuffleTest, ShufflesStartOfVector) { - const int kRangeSize = kVectorSize/2; - - ShuffleRange(&random_, 0, kRangeSize, &vector_); - - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - EXPECT_PRED3(RangeIsShuffled, vector_, 0, kRangeSize); - EXPECT_PRED3(RangeIsUnshuffled, vector_, kRangeSize, kVectorSize); -} - -TEST_F(VectorShuffleTest, ShufflesEndOfVector) { - const int kRangeSize = kVectorSize / 2; - ShuffleRange(&random_, kRangeSize, kVectorSize, &vector_); - - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - EXPECT_PRED3(RangeIsUnshuffled, vector_, 0, kRangeSize); - EXPECT_PRED3(RangeIsShuffled, vector_, kRangeSize, kVectorSize); -} - -TEST_F(VectorShuffleTest, ShufflesMiddleOfVector) { - int kRangeSize = kVectorSize/3; - ShuffleRange(&random_, kRangeSize, 2*kRangeSize, &vector_); - - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - EXPECT_PRED3(RangeIsUnshuffled, vector_, 0, kRangeSize); - EXPECT_PRED3(RangeIsShuffled, vector_, kRangeSize, 2*kRangeSize); - EXPECT_PRED3(RangeIsUnshuffled, vector_, 2*kRangeSize, kVectorSize); -} - -TEST_F(VectorShuffleTest, ShufflesRepeatably) { - TestingVector vector2; - for (int i = 0; i < kVectorSize; i++) { - vector2.push_back(i); - } - - random_.Reseed(1234); - Shuffle(&random_, &vector_); - random_.Reseed(1234); - Shuffle(&random_, &vector2); - - ASSERT_PRED1(VectorIsNotCorrupt, vector_); - ASSERT_PRED1(VectorIsNotCorrupt, vector2); - - for (int i = 0; i < kVectorSize; i++) { - EXPECT_EQ(vector_[i], vector2[i]) << " where i is " << i; - } -} - -// Tests the size of the AssertHelper class. - -TEST(AssertHelperTest, AssertHelperIsSmall) { - // To avoid breaking clients that use lots of assertions in one - // function, we cannot grow the size of AssertHelper. - EXPECT_LE(sizeof(testing::internal::AssertHelper), sizeof(void*)); -} - -// Tests the String class. - -// Tests String's constructors. -TEST(StringTest, Constructors) { - // Default ctor. - String s1; - // We aren't using EXPECT_EQ(NULL, s1.c_str()) because comparing - // pointers with NULL isn't supported on all platforms. - EXPECT_EQ(0U, s1.length()); - EXPECT_TRUE(NULL == s1.c_str()); - - // Implicitly constructs from a C-string. - String s2 = "Hi"; - EXPECT_EQ(2U, s2.length()); - EXPECT_STREQ("Hi", s2.c_str()); - - // Constructs from a C-string and a length. - String s3("hello", 3); - EXPECT_EQ(3U, s3.length()); - EXPECT_STREQ("hel", s3.c_str()); - - // The empty String should be created when String is constructed with - // a NULL pointer and length 0. - EXPECT_EQ(0U, String(NULL, 0).length()); - EXPECT_FALSE(String(NULL, 0).c_str() == NULL); - - // Constructs a String that contains '\0'. - String s4("a\0bcd", 4); - EXPECT_EQ(4U, s4.length()); - EXPECT_EQ('a', s4.c_str()[0]); - EXPECT_EQ('\0', s4.c_str()[1]); - EXPECT_EQ('b', s4.c_str()[2]); - EXPECT_EQ('c', s4.c_str()[3]); - - // Copy ctor where the source is NULL. - const String null_str; - String s5 = null_str; - EXPECT_TRUE(s5.c_str() == NULL); - - // Copy ctor where the source isn't NULL. - String s6 = s3; - EXPECT_EQ(3U, s6.length()); - EXPECT_STREQ("hel", s6.c_str()); - - // Copy ctor where the source contains '\0'. - String s7 = s4; - EXPECT_EQ(4U, s7.length()); - EXPECT_EQ('a', s7.c_str()[0]); - EXPECT_EQ('\0', s7.c_str()[1]); - EXPECT_EQ('b', s7.c_str()[2]); - EXPECT_EQ('c', s7.c_str()[3]); -} - -TEST(StringTest, ConvertsFromStdString) { - // An empty std::string. - const std::string src1(""); - const String dest1 = src1; - EXPECT_EQ(0U, dest1.length()); - EXPECT_STREQ("", dest1.c_str()); - - // A normal std::string. - const std::string src2("Hi"); - const String dest2 = src2; - EXPECT_EQ(2U, dest2.length()); - EXPECT_STREQ("Hi", dest2.c_str()); - - // An std::string with an embedded NUL character. - const char src3[] = "a\0b"; - const String dest3 = std::string(src3, sizeof(src3)); - EXPECT_EQ(sizeof(src3), dest3.length()); - EXPECT_EQ('a', dest3.c_str()[0]); - EXPECT_EQ('\0', dest3.c_str()[1]); - EXPECT_EQ('b', dest3.c_str()[2]); -} - -TEST(StringTest, ConvertsToStdString) { - // An empty String. - const String src1(""); - const std::string dest1 = src1; - EXPECT_EQ("", dest1); - - // A normal String. - const String src2("Hi"); - const std::string dest2 = src2; - EXPECT_EQ("Hi", dest2); - - // A String containing a '\0'. - const String src3("x\0y", 3); - const std::string dest3 = src3; - EXPECT_EQ(std::string("x\0y", 3), dest3); -} - -#if GTEST_HAS_GLOBAL_STRING - -TEST(StringTest, ConvertsFromGlobalString) { - // An empty ::string. - const ::string src1(""); - const String dest1 = src1; - EXPECT_EQ(0U, dest1.length()); - EXPECT_STREQ("", dest1.c_str()); - - // A normal ::string. - const ::string src2("Hi"); - const String dest2 = src2; - EXPECT_EQ(2U, dest2.length()); - EXPECT_STREQ("Hi", dest2.c_str()); - - // An ::string with an embedded NUL character. - const char src3[] = "x\0y"; - const String dest3 = ::string(src3, sizeof(src3)); - EXPECT_EQ(sizeof(src3), dest3.length()); - EXPECT_EQ('x', dest3.c_str()[0]); - EXPECT_EQ('\0', dest3.c_str()[1]); - EXPECT_EQ('y', dest3.c_str()[2]); -} - -TEST(StringTest, ConvertsToGlobalString) { - // An empty String. - const String src1(""); - const ::string dest1 = src1; - EXPECT_EQ("", dest1); - - // A normal String. - const String src2("Hi"); - const ::string dest2 = src2; - EXPECT_EQ("Hi", dest2); - - const String src3("x\0y", 3); - const ::string dest3 = src3; - EXPECT_EQ(::string("x\0y", 3), dest3); -} - -#endif // GTEST_HAS_GLOBAL_STRING - -// Tests String::ShowCStringQuoted(). -TEST(StringTest, ShowCStringQuoted) { - EXPECT_STREQ("(null)", - String::ShowCStringQuoted(NULL).c_str()); - EXPECT_STREQ("\"\"", - String::ShowCStringQuoted("").c_str()); - EXPECT_STREQ("\"foo\"", - String::ShowCStringQuoted("foo").c_str()); -} - -// Tests String::empty(). -TEST(StringTest, Empty) { - EXPECT_TRUE(String("").empty()); - EXPECT_FALSE(String().empty()); - EXPECT_FALSE(String(NULL).empty()); - EXPECT_FALSE(String("a").empty()); - EXPECT_FALSE(String("\0", 1).empty()); -} - -// Tests String::Compare(). -TEST(StringTest, Compare) { - // NULL vs NULL. - EXPECT_EQ(0, String().Compare(String())); - - // NULL vs non-NULL. - EXPECT_EQ(-1, String().Compare(String(""))); - - // Non-NULL vs NULL. - EXPECT_EQ(1, String("").Compare(String())); - - // The following covers non-NULL vs non-NULL. - - // "" vs "". - EXPECT_EQ(0, String("").Compare(String(""))); - - // "" vs non-"". - EXPECT_EQ(-1, String("").Compare(String("\0", 1))); - EXPECT_EQ(-1, String("").Compare(" ")); - - // Non-"" vs "". - EXPECT_EQ(1, String("a").Compare(String(""))); - - // The following covers non-"" vs non-"". - - // Same length and equal. - EXPECT_EQ(0, String("a").Compare(String("a"))); - - // Same length and different. - EXPECT_EQ(-1, String("a\0b", 3).Compare(String("a\0c", 3))); - EXPECT_EQ(1, String("b").Compare(String("a"))); - - // Different lengths. - EXPECT_EQ(-1, String("a").Compare(String("ab"))); - EXPECT_EQ(-1, String("a").Compare(String("a\0", 2))); - EXPECT_EQ(1, String("abc").Compare(String("aacd"))); -} - -// Tests String::operator==(). -TEST(StringTest, Equals) { - const String null(NULL); - EXPECT_TRUE(null == NULL); // NOLINT - EXPECT_FALSE(null == ""); // NOLINT - EXPECT_FALSE(null == "bar"); // NOLINT - - const String empty(""); - EXPECT_FALSE(empty == NULL); // NOLINT - EXPECT_TRUE(empty == ""); // NOLINT - EXPECT_FALSE(empty == "bar"); // NOLINT - - const String foo("foo"); - EXPECT_FALSE(foo == NULL); // NOLINT - EXPECT_FALSE(foo == ""); // NOLINT - EXPECT_FALSE(foo == "bar"); // NOLINT - EXPECT_TRUE(foo == "foo"); // NOLINT - - const String bar("x\0y", 3); - EXPECT_FALSE(bar == "x"); -} - -// Tests String::operator!=(). -TEST(StringTest, NotEquals) { - const String null(NULL); - EXPECT_FALSE(null != NULL); // NOLINT - EXPECT_TRUE(null != ""); // NOLINT - EXPECT_TRUE(null != "bar"); // NOLINT - - const String empty(""); - EXPECT_TRUE(empty != NULL); // NOLINT - EXPECT_FALSE(empty != ""); // NOLINT - EXPECT_TRUE(empty != "bar"); // NOLINT - - const String foo("foo"); - EXPECT_TRUE(foo != NULL); // NOLINT - EXPECT_TRUE(foo != ""); // NOLINT - EXPECT_TRUE(foo != "bar"); // NOLINT - EXPECT_FALSE(foo != "foo"); // NOLINT - - const String bar("x\0y", 3); - EXPECT_TRUE(bar != "x"); -} - -// Tests String::length(). -TEST(StringTest, Length) { - EXPECT_EQ(0U, String().length()); - EXPECT_EQ(0U, String("").length()); - EXPECT_EQ(2U, String("ab").length()); - EXPECT_EQ(3U, String("a\0b", 3).length()); -} - -// Tests String::EndsWith(). -TEST(StringTest, EndsWith) { - EXPECT_TRUE(String("foobar").EndsWith("bar")); - EXPECT_TRUE(String("foobar").EndsWith("")); - EXPECT_TRUE(String("").EndsWith("")); - - EXPECT_FALSE(String("foobar").EndsWith("foo")); - EXPECT_FALSE(String("").EndsWith("foo")); -} - -// Tests String::EndsWithCaseInsensitive(). -TEST(StringTest, EndsWithCaseInsensitive) { - EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive("BAR")); - EXPECT_TRUE(String("foobaR").EndsWithCaseInsensitive("bar")); - EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive("")); - EXPECT_TRUE(String("").EndsWithCaseInsensitive("")); - - EXPECT_FALSE(String("Foobar").EndsWithCaseInsensitive("foo")); - EXPECT_FALSE(String("foobar").EndsWithCaseInsensitive("Foo")); - EXPECT_FALSE(String("").EndsWithCaseInsensitive("foo")); -} - -// C++Builder's preprocessor is buggy; it fails to expand macros that -// appear in macro parameters after wide char literals. Provide an alias -// for NULL as a workaround. -static const wchar_t* const kNull = NULL; - -// Tests String::CaseInsensitiveWideCStringEquals -TEST(StringTest, CaseInsensitiveWideCStringEquals) { - EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(NULL, NULL)); - EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(kNull, L"")); - EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(L"", kNull)); - EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(kNull, L"foobar")); - EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(L"foobar", kNull)); - EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"foobar", L"foobar")); - EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"foobar", L"FOOBAR")); - EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"FOOBAR", L"foobar")); -} - -// Tests that NULL can be assigned to a String. -TEST(StringTest, CanBeAssignedNULL) { - const String src(NULL); - String dest; - - dest = src; - EXPECT_STREQ(NULL, dest.c_str()); -} - -// Tests that the empty string "" can be assigned to a String. -TEST(StringTest, CanBeAssignedEmpty) { - const String src(""); - String dest; - - dest = src; - EXPECT_STREQ("", dest.c_str()); -} - -// Tests that a non-empty string can be assigned to a String. -TEST(StringTest, CanBeAssignedNonEmpty) { - const String src("hello"); - String dest; - dest = src; - EXPECT_EQ(5U, dest.length()); - EXPECT_STREQ("hello", dest.c_str()); - - const String src2("x\0y", 3); - String dest2; - dest2 = src2; - EXPECT_EQ(3U, dest2.length()); - EXPECT_EQ('x', dest2.c_str()[0]); - EXPECT_EQ('\0', dest2.c_str()[1]); - EXPECT_EQ('y', dest2.c_str()[2]); -} - -// Tests that a String can be assigned to itself. -TEST(StringTest, CanBeAssignedSelf) { - String dest("hello"); - - dest = dest; - EXPECT_STREQ("hello", dest.c_str()); -} - -// Sun Studio < 12 incorrectly rejects this code due to an overloading -// ambiguity. -#if !(defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590) -// Tests streaming a String. -TEST(StringTest, Streams) { - EXPECT_EQ(StreamableToString(String()), "(null)"); - EXPECT_EQ(StreamableToString(String("")), ""); - EXPECT_EQ(StreamableToString(String("a\0b", 3)), "a\\0b"); -} -#endif - -// Tests that String::Format() works. -TEST(StringTest, FormatWorks) { - // Normal case: the format spec is valid, the arguments match the - // spec, and the result is < 4095 characters. - EXPECT_STREQ("Hello, 42", String::Format("%s, %d", "Hello", 42).c_str()); - - // Edge case: the result is 4095 characters. - char buffer[4096]; - const size_t kSize = sizeof(buffer); - memset(buffer, 'a', kSize - 1); - buffer[kSize - 1] = '\0'; - EXPECT_STREQ(buffer, String::Format("%s", buffer).c_str()); - - // The result needs to be 4096 characters, exceeding Format()'s limit. - EXPECT_STREQ("", - String::Format("x%s", buffer).c_str()); - -#if GTEST_OS_LINUX - // On Linux, invalid format spec should lead to an error message. - // In other environment (e.g. MSVC on Windows), String::Format() may - // simply ignore a bad format spec, so this assertion is run on - // Linux only. - EXPECT_STREQ("", - String::Format("%").c_str()); -#endif -} - -#if GTEST_OS_WINDOWS - -// Tests String::ShowWideCString(). -TEST(StringTest, ShowWideCString) { - EXPECT_STREQ("(null)", - String::ShowWideCString(NULL).c_str()); - EXPECT_STREQ("", String::ShowWideCString(L"").c_str()); - EXPECT_STREQ("foo", String::ShowWideCString(L"foo").c_str()); -} - -// Tests String::ShowWideCStringQuoted(). -TEST(StringTest, ShowWideCStringQuoted) { - EXPECT_STREQ("(null)", - String::ShowWideCStringQuoted(NULL).c_str()); - EXPECT_STREQ("L\"\"", - String::ShowWideCStringQuoted(L"").c_str()); - EXPECT_STREQ("L\"foo\"", - String::ShowWideCStringQuoted(L"foo").c_str()); -} - -#if GTEST_OS_WINDOWS_MOBILE -TEST(StringTest, AnsiAndUtf16Null) { - EXPECT_EQ(NULL, String::AnsiToUtf16(NULL)); - EXPECT_EQ(NULL, String::Utf16ToAnsi(NULL)); -} - -TEST(StringTest, AnsiAndUtf16ConvertBasic) { - const char* ansi = String::Utf16ToAnsi(L"str"); - EXPECT_STREQ("str", ansi); - delete [] ansi; - const WCHAR* utf16 = String::AnsiToUtf16("str"); - EXPECT_EQ(0, wcsncmp(L"str", utf16, 3)); - delete [] utf16; -} - -TEST(StringTest, AnsiAndUtf16ConvertPathChars) { - const char* ansi = String::Utf16ToAnsi(L".:\\ \"*?"); - EXPECT_STREQ(".:\\ \"*?", ansi); - delete [] ansi; - const WCHAR* utf16 = String::AnsiToUtf16(".:\\ \"*?"); - EXPECT_EQ(0, wcsncmp(L".:\\ \"*?", utf16, 3)); - delete [] utf16; -} -#endif // GTEST_OS_WINDOWS_MOBILE - -#endif // GTEST_OS_WINDOWS - -// Tests TestProperty construction. -TEST(TestPropertyTest, StringValue) { - TestProperty property("key", "1"); - EXPECT_STREQ("key", property.key()); - EXPECT_STREQ("1", property.value()); -} - -// Tests TestProperty replacing a value. -TEST(TestPropertyTest, ReplaceStringValue) { - TestProperty property("key", "1"); - EXPECT_STREQ("1", property.value()); - property.SetValue("2"); - EXPECT_STREQ("2", property.value()); -} - -// AddFatalFailure() and AddNonfatalFailure() must be stand-alone -// functions (i.e. their definitions cannot be inlined at the call -// sites), or C++Builder won't compile the code. -static void AddFatalFailure() { - FAIL() << "Expected fatal failure."; -} - -static void AddNonfatalFailure() { - ADD_FAILURE() << "Expected non-fatal failure."; -} - -class ScopedFakeTestPartResultReporterTest : public Test { - public: // Must be public and not protected due to a bug in g++ 3.4.2. - enum FailureMode { - FATAL_FAILURE, - NONFATAL_FAILURE - }; - static void AddFailure(FailureMode failure) { - if (failure == FATAL_FAILURE) { - AddFatalFailure(); - } else { - AddNonfatalFailure(); - } - } -}; - -// Tests that ScopedFakeTestPartResultReporter intercepts test -// failures. -TEST_F(ScopedFakeTestPartResultReporterTest, InterceptsTestFailures) { - TestPartResultArray results; - { - ScopedFakeTestPartResultReporter reporter( - ScopedFakeTestPartResultReporter::INTERCEPT_ONLY_CURRENT_THREAD, - &results); - AddFailure(NONFATAL_FAILURE); - AddFailure(FATAL_FAILURE); - } - - EXPECT_EQ(2, results.size()); - EXPECT_TRUE(results.GetTestPartResult(0).nonfatally_failed()); - EXPECT_TRUE(results.GetTestPartResult(1).fatally_failed()); -} - -TEST_F(ScopedFakeTestPartResultReporterTest, DeprecatedConstructor) { - TestPartResultArray results; - { - // Tests, that the deprecated constructor still works. - ScopedFakeTestPartResultReporter reporter(&results); - AddFailure(NONFATAL_FAILURE); - } - EXPECT_EQ(1, results.size()); -} - -#if GTEST_IS_THREADSAFE - -class ScopedFakeTestPartResultReporterWithThreadsTest - : public ScopedFakeTestPartResultReporterTest { - protected: - static void AddFailureInOtherThread(FailureMode failure) { - ThreadWithParam thread(&AddFailure, failure, NULL); - thread.Join(); - } -}; - -TEST_F(ScopedFakeTestPartResultReporterWithThreadsTest, - InterceptsTestFailuresInAllThreads) { - TestPartResultArray results; - { - ScopedFakeTestPartResultReporter reporter( - ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS, &results); - AddFailure(NONFATAL_FAILURE); - AddFailure(FATAL_FAILURE); - AddFailureInOtherThread(NONFATAL_FAILURE); - AddFailureInOtherThread(FATAL_FAILURE); - } - - EXPECT_EQ(4, results.size()); - EXPECT_TRUE(results.GetTestPartResult(0).nonfatally_failed()); - EXPECT_TRUE(results.GetTestPartResult(1).fatally_failed()); - EXPECT_TRUE(results.GetTestPartResult(2).nonfatally_failed()); - EXPECT_TRUE(results.GetTestPartResult(3).fatally_failed()); -} - -#endif // GTEST_IS_THREADSAFE - -// Tests EXPECT_FATAL_FAILURE{,ON_ALL_THREADS}. Makes sure that they -// work even if the failure is generated in a called function rather than -// the current context. - -typedef ScopedFakeTestPartResultReporterTest ExpectFatalFailureTest; - -TEST_F(ExpectFatalFailureTest, CatchesFatalFaliure) { - EXPECT_FATAL_FAILURE(AddFatalFailure(), "Expected fatal failure."); -} - -TEST_F(ExpectFatalFailureTest, CatchesFatalFailureOnAllThreads) { - // We have another test below to verify that the macro catches fatal - // failures generated on another thread. - EXPECT_FATAL_FAILURE_ON_ALL_THREADS(AddFatalFailure(), - "Expected fatal failure."); -} - -#ifdef __BORLANDC__ -// Silences warnings: "Condition is always true" -#pragma option push -w-ccc -#endif - -// Tests that EXPECT_FATAL_FAILURE() can be used in a non-void -// function even when the statement in it contains ASSERT_*. - -int NonVoidFunction() { - EXPECT_FATAL_FAILURE(ASSERT_TRUE(false), ""); - EXPECT_FATAL_FAILURE_ON_ALL_THREADS(FAIL(), ""); - return 0; -} - -TEST_F(ExpectFatalFailureTest, CanBeUsedInNonVoidFunction) { - NonVoidFunction(); -} - -// Tests that EXPECT_FATAL_FAILURE(statement, ...) doesn't abort the -// current function even though 'statement' generates a fatal failure. - -void DoesNotAbortHelper(bool* aborted) { - EXPECT_FATAL_FAILURE(ASSERT_TRUE(false), ""); - EXPECT_FATAL_FAILURE_ON_ALL_THREADS(FAIL(), ""); - - *aborted = false; -} - -#ifdef __BORLANDC__ -// Restores warnings after previous "#pragma option push" suppressed them. -#pragma option pop -#endif - -TEST_F(ExpectFatalFailureTest, DoesNotAbort) { - bool aborted = true; - DoesNotAbortHelper(&aborted); - EXPECT_FALSE(aborted); -} - -// Tests that the EXPECT_FATAL_FAILURE{,_ON_ALL_THREADS} accepts a -// statement that contains a macro which expands to code containing an -// unprotected comma. - -static int global_var = 0; -#define GTEST_USE_UNPROTECTED_COMMA_ global_var++, global_var++ - -TEST_F(ExpectFatalFailureTest, AcceptsMacroThatExpandsToUnprotectedComma) { -#if !defined(__BORLANDC__) || __BORLANDC__ >= 0x600 - // ICE's in C++Builder 2007. - EXPECT_FATAL_FAILURE({ - GTEST_USE_UNPROTECTED_COMMA_; - AddFatalFailure(); - }, ""); -#endif - - EXPECT_FATAL_FAILURE_ON_ALL_THREADS({ - GTEST_USE_UNPROTECTED_COMMA_; - AddFatalFailure(); - }, ""); -} - -// Tests EXPECT_NONFATAL_FAILURE{,ON_ALL_THREADS}. - -typedef ScopedFakeTestPartResultReporterTest ExpectNonfatalFailureTest; - -TEST_F(ExpectNonfatalFailureTest, CatchesNonfatalFailure) { - EXPECT_NONFATAL_FAILURE(AddNonfatalFailure(), - "Expected non-fatal failure."); -} - -TEST_F(ExpectNonfatalFailureTest, CatchesNonfatalFailureOnAllThreads) { - // We have another test below to verify that the macro catches - // non-fatal failures generated on another thread. - EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(AddNonfatalFailure(), - "Expected non-fatal failure."); -} - -// Tests that the EXPECT_NONFATAL_FAILURE{,_ON_ALL_THREADS} accepts a -// statement that contains a macro which expands to code containing an -// unprotected comma. -TEST_F(ExpectNonfatalFailureTest, AcceptsMacroThatExpandsToUnprotectedComma) { - EXPECT_NONFATAL_FAILURE({ - GTEST_USE_UNPROTECTED_COMMA_; - AddNonfatalFailure(); - }, ""); - - EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS({ - GTEST_USE_UNPROTECTED_COMMA_; - AddNonfatalFailure(); - }, ""); -} - -#if GTEST_IS_THREADSAFE - -typedef ScopedFakeTestPartResultReporterWithThreadsTest - ExpectFailureWithThreadsTest; - -TEST_F(ExpectFailureWithThreadsTest, ExpectFatalFailureOnAllThreads) { - EXPECT_FATAL_FAILURE_ON_ALL_THREADS(AddFailureInOtherThread(FATAL_FAILURE), - "Expected fatal failure."); -} - -TEST_F(ExpectFailureWithThreadsTest, ExpectNonFatalFailureOnAllThreads) { - EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS( - AddFailureInOtherThread(NONFATAL_FAILURE), "Expected non-fatal failure."); -} - -#endif // GTEST_IS_THREADSAFE - -// Tests the TestProperty class. - -TEST(TestPropertyTest, ConstructorWorks) { - const TestProperty property("key", "value"); - EXPECT_STREQ("key", property.key()); - EXPECT_STREQ("value", property.value()); -} - -TEST(TestPropertyTest, SetValue) { - TestProperty property("key", "value_1"); - EXPECT_STREQ("key", property.key()); - property.SetValue("value_2"); - EXPECT_STREQ("key", property.key()); - EXPECT_STREQ("value_2", property.value()); -} - -// Tests the TestResult class - -// The test fixture for testing TestResult. -class TestResultTest : public Test { - protected: - typedef std::vector TPRVector; - - // We make use of 2 TestPartResult objects, - TestPartResult * pr1, * pr2; - - // ... and 3 TestResult objects. - TestResult * r0, * r1, * r2; - - virtual void SetUp() { - // pr1 is for success. - pr1 = new TestPartResult(TestPartResult::kSuccess, - "foo/bar.cc", - 10, - "Success!"); - - // pr2 is for fatal failure. - pr2 = new TestPartResult(TestPartResult::kFatalFailure, - "foo/bar.cc", - -1, // This line number means "unknown" - "Failure!"); - - // Creates the TestResult objects. - r0 = new TestResult(); - r1 = new TestResult(); - r2 = new TestResult(); - - // In order to test TestResult, we need to modify its internal - // state, in particular the TestPartResult vector it holds. - // test_part_results() returns a const reference to this vector. - // We cast it to a non-const object s.t. it can be modified (yes, - // this is a hack). - TPRVector* results1 = const_cast( - &TestResultAccessor::test_part_results(*r1)); - TPRVector* results2 = const_cast( - &TestResultAccessor::test_part_results(*r2)); - - // r0 is an empty TestResult. - - // r1 contains a single SUCCESS TestPartResult. - results1->push_back(*pr1); - - // r2 contains a SUCCESS, and a FAILURE. - results2->push_back(*pr1); - results2->push_back(*pr2); - } - - virtual void TearDown() { - delete pr1; - delete pr2; - - delete r0; - delete r1; - delete r2; - } - - // Helper that compares two two TestPartResults. - static void CompareTestPartResult(const TestPartResult& expected, - const TestPartResult& actual) { - EXPECT_EQ(expected.type(), actual.type()); - EXPECT_STREQ(expected.file_name(), actual.file_name()); - EXPECT_EQ(expected.line_number(), actual.line_number()); - EXPECT_STREQ(expected.summary(), actual.summary()); - EXPECT_STREQ(expected.message(), actual.message()); - EXPECT_EQ(expected.passed(), actual.passed()); - EXPECT_EQ(expected.failed(), actual.failed()); - EXPECT_EQ(expected.nonfatally_failed(), actual.nonfatally_failed()); - EXPECT_EQ(expected.fatally_failed(), actual.fatally_failed()); - } -}; - -// Tests TestResult::total_part_count(). -TEST_F(TestResultTest, total_part_count) { - ASSERT_EQ(0, r0->total_part_count()); - ASSERT_EQ(1, r1->total_part_count()); - ASSERT_EQ(2, r2->total_part_count()); -} - -// Tests TestResult::Passed(). -TEST_F(TestResultTest, Passed) { - ASSERT_TRUE(r0->Passed()); - ASSERT_TRUE(r1->Passed()); - ASSERT_FALSE(r2->Passed()); -} - -// Tests TestResult::Failed(). -TEST_F(TestResultTest, Failed) { - ASSERT_FALSE(r0->Failed()); - ASSERT_FALSE(r1->Failed()); - ASSERT_TRUE(r2->Failed()); -} - -// Tests TestResult::GetTestPartResult(). - -typedef TestResultTest TestResultDeathTest; - -TEST_F(TestResultDeathTest, GetTestPartResult) { - CompareTestPartResult(*pr1, r2->GetTestPartResult(0)); - CompareTestPartResult(*pr2, r2->GetTestPartResult(1)); - EXPECT_DEATH_IF_SUPPORTED(r2->GetTestPartResult(2), ""); - EXPECT_DEATH_IF_SUPPORTED(r2->GetTestPartResult(-1), ""); -} - -// Tests TestResult has no properties when none are added. -TEST(TestResultPropertyTest, NoPropertiesFoundWhenNoneAreAdded) { - TestResult test_result; - ASSERT_EQ(0, test_result.test_property_count()); -} - -// Tests TestResult has the expected property when added. -TEST(TestResultPropertyTest, OnePropertyFoundWhenAdded) { - TestResult test_result; - TestProperty property("key_1", "1"); - TestResultAccessor::RecordProperty(&test_result, property); - ASSERT_EQ(1, test_result.test_property_count()); - const TestProperty& actual_property = test_result.GetTestProperty(0); - EXPECT_STREQ("key_1", actual_property.key()); - EXPECT_STREQ("1", actual_property.value()); -} - -// Tests TestResult has multiple properties when added. -TEST(TestResultPropertyTest, MultiplePropertiesFoundWhenAdded) { - TestResult test_result; - TestProperty property_1("key_1", "1"); - TestProperty property_2("key_2", "2"); - TestResultAccessor::RecordProperty(&test_result, property_1); - TestResultAccessor::RecordProperty(&test_result, property_2); - ASSERT_EQ(2, test_result.test_property_count()); - const TestProperty& actual_property_1 = test_result.GetTestProperty(0); - EXPECT_STREQ("key_1", actual_property_1.key()); - EXPECT_STREQ("1", actual_property_1.value()); - - const TestProperty& actual_property_2 = test_result.GetTestProperty(1); - EXPECT_STREQ("key_2", actual_property_2.key()); - EXPECT_STREQ("2", actual_property_2.value()); -} - -// Tests TestResult::RecordProperty() overrides values for duplicate keys. -TEST(TestResultPropertyTest, OverridesValuesForDuplicateKeys) { - TestResult test_result; - TestProperty property_1_1("key_1", "1"); - TestProperty property_2_1("key_2", "2"); - TestProperty property_1_2("key_1", "12"); - TestProperty property_2_2("key_2", "22"); - TestResultAccessor::RecordProperty(&test_result, property_1_1); - TestResultAccessor::RecordProperty(&test_result, property_2_1); - TestResultAccessor::RecordProperty(&test_result, property_1_2); - TestResultAccessor::RecordProperty(&test_result, property_2_2); - - ASSERT_EQ(2, test_result.test_property_count()); - const TestProperty& actual_property_1 = test_result.GetTestProperty(0); - EXPECT_STREQ("key_1", actual_property_1.key()); - EXPECT_STREQ("12", actual_property_1.value()); - - const TestProperty& actual_property_2 = test_result.GetTestProperty(1); - EXPECT_STREQ("key_2", actual_property_2.key()); - EXPECT_STREQ("22", actual_property_2.value()); -} - -// Tests TestResult::GetTestProperty(). -TEST(TestResultPropertyDeathTest, GetTestProperty) { - TestResult test_result; - TestProperty property_1("key_1", "1"); - TestProperty property_2("key_2", "2"); - TestProperty property_3("key_3", "3"); - TestResultAccessor::RecordProperty(&test_result, property_1); - TestResultAccessor::RecordProperty(&test_result, property_2); - TestResultAccessor::RecordProperty(&test_result, property_3); - - const TestProperty& fetched_property_1 = test_result.GetTestProperty(0); - const TestProperty& fetched_property_2 = test_result.GetTestProperty(1); - const TestProperty& fetched_property_3 = test_result.GetTestProperty(2); - - EXPECT_STREQ("key_1", fetched_property_1.key()); - EXPECT_STREQ("1", fetched_property_1.value()); - - EXPECT_STREQ("key_2", fetched_property_2.key()); - EXPECT_STREQ("2", fetched_property_2.value()); - - EXPECT_STREQ("key_3", fetched_property_3.key()); - EXPECT_STREQ("3", fetched_property_3.value()); - - EXPECT_DEATH_IF_SUPPORTED(test_result.GetTestProperty(3), ""); - EXPECT_DEATH_IF_SUPPORTED(test_result.GetTestProperty(-1), ""); -} - -// When a property using a reserved key is supplied to this function, it tests -// that a non-fatal failure is added, a fatal failure is not added, and that the -// property is not recorded. -void ExpectNonFatalFailureRecordingPropertyWithReservedKey(const char* key) { - TestResult test_result; - TestProperty property(key, "1"); - EXPECT_NONFATAL_FAILURE( - TestResultAccessor::RecordProperty(&test_result, property), - "Reserved key"); - ASSERT_EQ(0, test_result.test_property_count()) << "Not recorded"; -} - -// Attempting to recording a property with the Reserved literal "name" -// should add a non-fatal failure and the property should not be recorded. -TEST(TestResultPropertyTest, AddFailureWhenUsingReservedKeyCalledName) { - ExpectNonFatalFailureRecordingPropertyWithReservedKey("name"); -} - -// Attempting to recording a property with the Reserved literal "status" -// should add a non-fatal failure and the property should not be recorded. -TEST(TestResultPropertyTest, AddFailureWhenUsingReservedKeyCalledStatus) { - ExpectNonFatalFailureRecordingPropertyWithReservedKey("status"); -} - -// Attempting to recording a property with the Reserved literal "time" -// should add a non-fatal failure and the property should not be recorded. -TEST(TestResultPropertyTest, AddFailureWhenUsingReservedKeyCalledTime) { - ExpectNonFatalFailureRecordingPropertyWithReservedKey("time"); -} - -// Attempting to recording a property with the Reserved literal "classname" -// should add a non-fatal failure and the property should not be recorded. -TEST(TestResultPropertyTest, AddFailureWhenUsingReservedKeyCalledClassname) { - ExpectNonFatalFailureRecordingPropertyWithReservedKey("classname"); -} - -// Tests that GTestFlagSaver works on Windows and Mac. - -class GTestFlagSaverTest : public Test { - protected: - // Saves the Google Test flags such that we can restore them later, and - // then sets them to their default values. This will be called - // before the first test in this test case is run. - static void SetUpTestCase() { - saver_ = new GTestFlagSaver; - - GTEST_FLAG(also_run_disabled_tests) = false; - GTEST_FLAG(break_on_failure) = false; - GTEST_FLAG(catch_exceptions) = false; - GTEST_FLAG(death_test_use_fork) = false; - GTEST_FLAG(color) = "auto"; - GTEST_FLAG(filter) = ""; - GTEST_FLAG(list_tests) = false; - GTEST_FLAG(output) = ""; - GTEST_FLAG(print_time) = true; - GTEST_FLAG(random_seed) = 0; - GTEST_FLAG(repeat) = 1; - GTEST_FLAG(shuffle) = false; - GTEST_FLAG(stack_trace_depth) = kMaxStackTraceDepth; - GTEST_FLAG(throw_on_failure) = false; - } - - // Restores the Google Test flags that the tests have modified. This will - // be called after the last test in this test case is run. - static void TearDownTestCase() { - delete saver_; - saver_ = NULL; - } - - // Verifies that the Google Test flags have their default values, and then - // modifies each of them. - void VerifyAndModifyFlags() { - EXPECT_FALSE(GTEST_FLAG(also_run_disabled_tests)); - EXPECT_FALSE(GTEST_FLAG(break_on_failure)); - EXPECT_FALSE(GTEST_FLAG(catch_exceptions)); - EXPECT_STREQ("auto", GTEST_FLAG(color).c_str()); - EXPECT_FALSE(GTEST_FLAG(death_test_use_fork)); - EXPECT_STREQ("", GTEST_FLAG(filter).c_str()); - EXPECT_FALSE(GTEST_FLAG(list_tests)); - EXPECT_STREQ("", GTEST_FLAG(output).c_str()); - EXPECT_TRUE(GTEST_FLAG(print_time)); - EXPECT_EQ(0, GTEST_FLAG(random_seed)); - EXPECT_EQ(1, GTEST_FLAG(repeat)); - EXPECT_FALSE(GTEST_FLAG(shuffle)); - EXPECT_EQ(kMaxStackTraceDepth, GTEST_FLAG(stack_trace_depth)); - EXPECT_FALSE(GTEST_FLAG(throw_on_failure)); - - GTEST_FLAG(also_run_disabled_tests) = true; - GTEST_FLAG(break_on_failure) = true; - GTEST_FLAG(catch_exceptions) = true; - GTEST_FLAG(color) = "no"; - GTEST_FLAG(death_test_use_fork) = true; - GTEST_FLAG(filter) = "abc"; - GTEST_FLAG(list_tests) = true; - GTEST_FLAG(output) = "xml:foo.xml"; - GTEST_FLAG(print_time) = false; - GTEST_FLAG(random_seed) = 1; - GTEST_FLAG(repeat) = 100; - GTEST_FLAG(shuffle) = true; - GTEST_FLAG(stack_trace_depth) = 1; - GTEST_FLAG(throw_on_failure) = true; - } - private: - // For saving Google Test flags during this test case. - static GTestFlagSaver* saver_; -}; - -GTestFlagSaver* GTestFlagSaverTest::saver_ = NULL; - -// Google Test doesn't guarantee the order of tests. The following two -// tests are designed to work regardless of their order. - -// Modifies the Google Test flags in the test body. -TEST_F(GTestFlagSaverTest, ModifyGTestFlags) { - VerifyAndModifyFlags(); -} - -// Verifies that the Google Test flags in the body of the previous test were -// restored to their original values. -TEST_F(GTestFlagSaverTest, VerifyGTestFlags) { - VerifyAndModifyFlags(); -} - -// Sets an environment variable with the given name to the given -// value. If the value argument is "", unsets the environment -// variable. The caller must ensure that both arguments are not NULL. -static void SetEnv(const char* name, const char* value) { -#if GTEST_OS_WINDOWS_MOBILE - // Environment variables are not supported on Windows CE. - return; -#elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9) - // C++Builder's putenv only stores a pointer to its parameter; we have to - // ensure that the string remains valid as long as it might be needed. - // We use an std::map to do so. - static std::map added_env; - - // Because putenv stores a pointer to the string buffer, we can't delete the - // previous string (if present) until after it's replaced. - String *prev_env = NULL; - if (added_env.find(name) != added_env.end()) { - prev_env = added_env[name]; - } - added_env[name] = new String((Message() << name << "=" << value).GetString()); - - // The standard signature of putenv accepts a 'char*' argument. Other - // implementations, like C++Builder's, accept a 'const char*'. - // We cast away the 'const' since that would work for both variants. - putenv(const_cast(added_env[name]->c_str())); - delete prev_env; -#elif GTEST_OS_WINDOWS // If we are on Windows proper. - _putenv((Message() << name << "=" << value).GetString().c_str()); -#else - if (*value == '\0') { - unsetenv(name); - } else { - setenv(name, value, 1); - } -#endif // GTEST_OS_WINDOWS_MOBILE -} - -#if !GTEST_OS_WINDOWS_MOBILE -// Environment variables are not supported on Windows CE. - -using testing::internal::Int32FromGTestEnv; - -// Tests Int32FromGTestEnv(). - -// Tests that Int32FromGTestEnv() returns the default value when the -// environment variable is not set. -TEST(Int32FromGTestEnvTest, ReturnsDefaultWhenVariableIsNotSet) { - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", ""); - EXPECT_EQ(10, Int32FromGTestEnv("temp", 10)); -} - -// Tests that Int32FromGTestEnv() returns the default value when the -// environment variable overflows as an Int32. -TEST(Int32FromGTestEnvTest, ReturnsDefaultWhenValueOverflows) { - printf("(expecting 2 warnings)\n"); - - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "12345678987654321"); - EXPECT_EQ(20, Int32FromGTestEnv("temp", 20)); - - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "-12345678987654321"); - EXPECT_EQ(30, Int32FromGTestEnv("temp", 30)); -} - -// Tests that Int32FromGTestEnv() returns the default value when the -// environment variable does not represent a valid decimal integer. -TEST(Int32FromGTestEnvTest, ReturnsDefaultWhenValueIsInvalid) { - printf("(expecting 2 warnings)\n"); - - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "A1"); - EXPECT_EQ(40, Int32FromGTestEnv("temp", 40)); - - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "12X"); - EXPECT_EQ(50, Int32FromGTestEnv("temp", 50)); -} - -// Tests that Int32FromGTestEnv() parses and returns the value of the -// environment variable when it represents a valid decimal integer in -// the range of an Int32. -TEST(Int32FromGTestEnvTest, ParsesAndReturnsValidValue) { - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "123"); - EXPECT_EQ(123, Int32FromGTestEnv("temp", 0)); - - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "TEMP", "-321"); - EXPECT_EQ(-321, Int32FromGTestEnv("temp", 0)); -} -#endif // !GTEST_OS_WINDOWS_MOBILE - -// Tests ParseInt32Flag(). - -// Tests that ParseInt32Flag() returns false and doesn't change the -// output value when the flag has wrong format -TEST(ParseInt32FlagTest, ReturnsFalseForInvalidFlag) { - Int32 value = 123; - EXPECT_FALSE(ParseInt32Flag("--a=100", "b", &value)); - EXPECT_EQ(123, value); - - EXPECT_FALSE(ParseInt32Flag("a=100", "a", &value)); - EXPECT_EQ(123, value); -} - -// Tests that ParseInt32Flag() returns false and doesn't change the -// output value when the flag overflows as an Int32. -TEST(ParseInt32FlagTest, ReturnsDefaultWhenValueOverflows) { - printf("(expecting 2 warnings)\n"); - - Int32 value = 123; - EXPECT_FALSE(ParseInt32Flag("--abc=12345678987654321", "abc", &value)); - EXPECT_EQ(123, value); - - EXPECT_FALSE(ParseInt32Flag("--abc=-12345678987654321", "abc", &value)); - EXPECT_EQ(123, value); -} - -// Tests that ParseInt32Flag() returns false and doesn't change the -// output value when the flag does not represent a valid decimal -// integer. -TEST(ParseInt32FlagTest, ReturnsDefaultWhenValueIsInvalid) { - printf("(expecting 2 warnings)\n"); - - Int32 value = 123; - EXPECT_FALSE(ParseInt32Flag("--abc=A1", "abc", &value)); - EXPECT_EQ(123, value); - - EXPECT_FALSE(ParseInt32Flag("--abc=12X", "abc", &value)); - EXPECT_EQ(123, value); -} - -// Tests that ParseInt32Flag() parses the value of the flag and -// returns true when the flag represents a valid decimal integer in -// the range of an Int32. -TEST(ParseInt32FlagTest, ParsesAndReturnsValidValue) { - Int32 value = 123; - EXPECT_TRUE(ParseInt32Flag("--" GTEST_FLAG_PREFIX_ "abc=456", "abc", &value)); - EXPECT_EQ(456, value); - - EXPECT_TRUE(ParseInt32Flag("--" GTEST_FLAG_PREFIX_ "abc=-789", - "abc", &value)); - EXPECT_EQ(-789, value); -} - -// Tests that Int32FromEnvOrDie() parses the value of the var or -// returns the correct default. -// Environment variables are not supported on Windows CE. -#if !GTEST_OS_WINDOWS_MOBILE -TEST(Int32FromEnvOrDieTest, ParsesAndReturnsValidValue) { - EXPECT_EQ(333, Int32FromEnvOrDie(GTEST_FLAG_PREFIX_UPPER_ "UnsetVar", 333)); - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "UnsetVar", "123"); - EXPECT_EQ(123, Int32FromEnvOrDie(GTEST_FLAG_PREFIX_UPPER_ "UnsetVar", 333)); - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "UnsetVar", "-123"); - EXPECT_EQ(-123, Int32FromEnvOrDie(GTEST_FLAG_PREFIX_UPPER_ "UnsetVar", 333)); -} -#endif // !GTEST_OS_WINDOWS_MOBILE - -// Tests that Int32FromEnvOrDie() aborts with an error message -// if the variable is not an Int32. -TEST(Int32FromEnvOrDieDeathTest, AbortsOnFailure) { - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "VAR", "xxx"); - EXPECT_DEATH_IF_SUPPORTED( - Int32FromEnvOrDie(GTEST_FLAG_PREFIX_UPPER_ "VAR", 123), - ".*"); -} - -// Tests that Int32FromEnvOrDie() aborts with an error message -// if the variable cannot be represnted by an Int32. -TEST(Int32FromEnvOrDieDeathTest, AbortsOnInt32Overflow) { - SetEnv(GTEST_FLAG_PREFIX_UPPER_ "VAR", "1234567891234567891234"); - EXPECT_DEATH_IF_SUPPORTED( - Int32FromEnvOrDie(GTEST_FLAG_PREFIX_UPPER_ "VAR", 123), - ".*"); -} - -// Tests that ShouldRunTestOnShard() selects all tests -// where there is 1 shard. -TEST(ShouldRunTestOnShardTest, IsPartitionWhenThereIsOneShard) { - EXPECT_TRUE(ShouldRunTestOnShard(1, 0, 0)); - EXPECT_TRUE(ShouldRunTestOnShard(1, 0, 1)); - EXPECT_TRUE(ShouldRunTestOnShard(1, 0, 2)); - EXPECT_TRUE(ShouldRunTestOnShard(1, 0, 3)); - EXPECT_TRUE(ShouldRunTestOnShard(1, 0, 4)); -} - -class ShouldShardTest : public testing::Test { - protected: - virtual void SetUp() { - index_var_ = GTEST_FLAG_PREFIX_UPPER_ "INDEX"; - total_var_ = GTEST_FLAG_PREFIX_UPPER_ "TOTAL"; - } - - virtual void TearDown() { - SetEnv(index_var_, ""); - SetEnv(total_var_, ""); - } - - const char* index_var_; - const char* total_var_; -}; - -// Tests that sharding is disabled if neither of the environment variables -// are set. -TEST_F(ShouldShardTest, ReturnsFalseWhenNeitherEnvVarIsSet) { - SetEnv(index_var_, ""); - SetEnv(total_var_, ""); - - EXPECT_FALSE(ShouldShard(total_var_, index_var_, false)); - EXPECT_FALSE(ShouldShard(total_var_, index_var_, true)); -} - -// Tests that sharding is not enabled if total_shards == 1. -TEST_F(ShouldShardTest, ReturnsFalseWhenTotalShardIsOne) { - SetEnv(index_var_, "0"); - SetEnv(total_var_, "1"); - EXPECT_FALSE(ShouldShard(total_var_, index_var_, false)); - EXPECT_FALSE(ShouldShard(total_var_, index_var_, true)); -} - -// Tests that sharding is enabled if total_shards > 1 and -// we are not in a death test subprocess. -// Environment variables are not supported on Windows CE. -#if !GTEST_OS_WINDOWS_MOBILE -TEST_F(ShouldShardTest, WorksWhenShardEnvVarsAreValid) { - SetEnv(index_var_, "4"); - SetEnv(total_var_, "22"); - EXPECT_TRUE(ShouldShard(total_var_, index_var_, false)); - EXPECT_FALSE(ShouldShard(total_var_, index_var_, true)); - - SetEnv(index_var_, "8"); - SetEnv(total_var_, "9"); - EXPECT_TRUE(ShouldShard(total_var_, index_var_, false)); - EXPECT_FALSE(ShouldShard(total_var_, index_var_, true)); - - SetEnv(index_var_, "0"); - SetEnv(total_var_, "9"); - EXPECT_TRUE(ShouldShard(total_var_, index_var_, false)); - EXPECT_FALSE(ShouldShard(total_var_, index_var_, true)); -} -#endif // !GTEST_OS_WINDOWS_MOBILE - -// Tests that we exit in error if the sharding values are not valid. - -typedef ShouldShardTest ShouldShardDeathTest; - -TEST_F(ShouldShardDeathTest, AbortsWhenShardingEnvVarsAreInvalid) { - SetEnv(index_var_, "4"); - SetEnv(total_var_, "4"); - EXPECT_DEATH_IF_SUPPORTED(ShouldShard(total_var_, index_var_, false), ".*"); - - SetEnv(index_var_, "4"); - SetEnv(total_var_, "-2"); - EXPECT_DEATH_IF_SUPPORTED(ShouldShard(total_var_, index_var_, false), ".*"); - - SetEnv(index_var_, "5"); - SetEnv(total_var_, ""); - EXPECT_DEATH_IF_SUPPORTED(ShouldShard(total_var_, index_var_, false), ".*"); - - SetEnv(index_var_, ""); - SetEnv(total_var_, "5"); - EXPECT_DEATH_IF_SUPPORTED(ShouldShard(total_var_, index_var_, false), ".*"); -} - -// Tests that ShouldRunTestOnShard is a partition when 5 -// shards are used. -TEST(ShouldRunTestOnShardTest, IsPartitionWhenThereAreFiveShards) { - // Choose an arbitrary number of tests and shards. - const int num_tests = 17; - const int num_shards = 5; - - // Check partitioning: each test should be on exactly 1 shard. - for (int test_id = 0; test_id < num_tests; test_id++) { - int prev_selected_shard_index = -1; - for (int shard_index = 0; shard_index < num_shards; shard_index++) { - if (ShouldRunTestOnShard(num_shards, shard_index, test_id)) { - if (prev_selected_shard_index < 0) { - prev_selected_shard_index = shard_index; - } else { - ADD_FAILURE() << "Shard " << prev_selected_shard_index << " and " - << shard_index << " are both selected to run test " << test_id; - } - } - } - } - - // Check balance: This is not required by the sharding protocol, but is a - // desirable property for performance. - for (int shard_index = 0; shard_index < num_shards; shard_index++) { - int num_tests_on_shard = 0; - for (int test_id = 0; test_id < num_tests; test_id++) { - num_tests_on_shard += - ShouldRunTestOnShard(num_shards, shard_index, test_id); - } - EXPECT_GE(num_tests_on_shard, num_tests / num_shards); - } -} - -// For the same reason we are not explicitly testing everything in the -// Test class, there are no separate tests for the following classes -// (except for some trivial cases): -// -// TestCase, UnitTest, UnitTestResultPrinter. -// -// Similarly, there are no separate tests for the following macros: -// -// TEST, TEST_F, RUN_ALL_TESTS - -TEST(UnitTestTest, CanGetOriginalWorkingDir) { - ASSERT_TRUE(UnitTest::GetInstance()->original_working_dir() != NULL); - EXPECT_STRNE(UnitTest::GetInstance()->original_working_dir(), ""); -} - -// This group of tests is for predicate assertions (ASSERT_PRED*, etc) -// of various arities. They do not attempt to be exhaustive. Rather, -// view them as smoke tests that can be easily reviewed and verified. -// A more complete set of tests for predicate assertions can be found -// in gtest_pred_impl_unittest.cc. - -// First, some predicates and predicate-formatters needed by the tests. - -// Returns true iff the argument is an even number. -bool IsEven(int n) { - return (n % 2) == 0; -} - -// A functor that returns true iff the argument is an even number. -struct IsEvenFunctor { - bool operator()(int n) { return IsEven(n); } -}; - -// A predicate-formatter function that asserts the argument is an even -// number. -AssertionResult AssertIsEven(const char* expr, int n) { - if (IsEven(n)) { - return AssertionSuccess(); - } - - Message msg; - msg << expr << " evaluates to " << n << ", which is not even."; - return AssertionFailure(msg); -} - -// A predicate function that returns AssertionResult for use in -// EXPECT/ASSERT_TRUE/FALSE. -AssertionResult ResultIsEven(int n) { - if (IsEven(n)) - return AssertionSuccess() << n << " is even"; - else - return AssertionFailure() << n << " is odd"; -} - -// A predicate function that returns AssertionResult but gives no -// explanation why it succeeds. Needed for testing that -// EXPECT/ASSERT_FALSE handles such functions correctly. -AssertionResult ResultIsEvenNoExplanation(int n) { - if (IsEven(n)) - return AssertionSuccess(); - else - return AssertionFailure() << n << " is odd"; -} - -// A predicate-formatter functor that asserts the argument is an even -// number. -struct AssertIsEvenFunctor { - AssertionResult operator()(const char* expr, int n) { - return AssertIsEven(expr, n); - } -}; - -// Returns true iff the sum of the arguments is an even number. -bool SumIsEven2(int n1, int n2) { - return IsEven(n1 + n2); -} - -// A functor that returns true iff the sum of the arguments is an even -// number. -struct SumIsEven3Functor { - bool operator()(int n1, int n2, int n3) { - return IsEven(n1 + n2 + n3); - } -}; - -// A predicate-formatter function that asserts the sum of the -// arguments is an even number. -AssertionResult AssertSumIsEven4( - const char* e1, const char* e2, const char* e3, const char* e4, - int n1, int n2, int n3, int n4) { - const int sum = n1 + n2 + n3 + n4; - if (IsEven(sum)) { - return AssertionSuccess(); - } - - Message msg; - msg << e1 << " + " << e2 << " + " << e3 << " + " << e4 - << " (" << n1 << " + " << n2 << " + " << n3 << " + " << n4 - << ") evaluates to " << sum << ", which is not even."; - return AssertionFailure(msg); -} - -// A predicate-formatter functor that asserts the sum of the arguments -// is an even number. -struct AssertSumIsEven5Functor { - AssertionResult operator()( - const char* e1, const char* e2, const char* e3, const char* e4, - const char* e5, int n1, int n2, int n3, int n4, int n5) { - const int sum = n1 + n2 + n3 + n4 + n5; - if (IsEven(sum)) { - return AssertionSuccess(); - } - - Message msg; - msg << e1 << " + " << e2 << " + " << e3 << " + " << e4 << " + " << e5 - << " (" - << n1 << " + " << n2 << " + " << n3 << " + " << n4 << " + " << n5 - << ") evaluates to " << sum << ", which is not even."; - return AssertionFailure(msg); - } -}; - - -// Tests unary predicate assertions. - -// Tests unary predicate assertions that don't use a custom formatter. -TEST(Pred1Test, WithoutFormat) { - // Success cases. - EXPECT_PRED1(IsEvenFunctor(), 2) << "This failure is UNEXPECTED!"; - ASSERT_PRED1(IsEven, 4); - - // Failure cases. - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED1(IsEven, 5) << "This failure is expected."; - }, "This failure is expected."); - EXPECT_FATAL_FAILURE(ASSERT_PRED1(IsEvenFunctor(), 5), - "evaluates to false"); -} - -// Tests unary predicate assertions that use a custom formatter. -TEST(Pred1Test, WithFormat) { - // Success cases. - EXPECT_PRED_FORMAT1(AssertIsEven, 2); - ASSERT_PRED_FORMAT1(AssertIsEvenFunctor(), 4) - << "This failure is UNEXPECTED!"; - - // Failure cases. - const int n = 5; - EXPECT_NONFATAL_FAILURE(EXPECT_PRED_FORMAT1(AssertIsEvenFunctor(), n), - "n evaluates to 5, which is not even."); - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT1(AssertIsEven, 5) << "This failure is expected."; - }, "This failure is expected."); -} - -// Tests that unary predicate assertions evaluates their arguments -// exactly once. -TEST(Pred1Test, SingleEvaluationOnFailure) { - // A success case. - static int n = 0; - EXPECT_PRED1(IsEven, n++); - EXPECT_EQ(1, n) << "The argument is not evaluated exactly once."; - - // A failure case. - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT1(AssertIsEvenFunctor(), n++) - << "This failure is expected."; - }, "This failure is expected."); - EXPECT_EQ(2, n) << "The argument is not evaluated exactly once."; -} - - -// Tests predicate assertions whose arity is >= 2. - -// Tests predicate assertions that don't use a custom formatter. -TEST(PredTest, WithoutFormat) { - // Success cases. - ASSERT_PRED2(SumIsEven2, 2, 4) << "This failure is UNEXPECTED!"; - EXPECT_PRED3(SumIsEven3Functor(), 4, 6, 8); - - // Failure cases. - const int n1 = 1; - const int n2 = 2; - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED2(SumIsEven2, n1, n2) << "This failure is expected."; - }, "This failure is expected."); - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED3(SumIsEven3Functor(), 1, 2, 4); - }, "evaluates to false"); -} - -// Tests predicate assertions that use a custom formatter. -TEST(PredTest, WithFormat) { - // Success cases. - ASSERT_PRED_FORMAT4(AssertSumIsEven4, 4, 6, 8, 10) << - "This failure is UNEXPECTED!"; - EXPECT_PRED_FORMAT5(AssertSumIsEven5Functor(), 2, 4, 6, 8, 10); - - // Failure cases. - const int n1 = 1; - const int n2 = 2; - const int n3 = 4; - const int n4 = 6; - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT4(AssertSumIsEven4, n1, n2, n3, n4); - }, "evaluates to 13, which is not even."); - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT5(AssertSumIsEven5Functor(), 1, 2, 4, 6, 8) - << "This failure is expected."; - }, "This failure is expected."); -} - -// Tests that predicate assertions evaluates their arguments -// exactly once. -TEST(PredTest, SingleEvaluationOnFailure) { - // A success case. - int n1 = 0; - int n2 = 0; - EXPECT_PRED2(SumIsEven2, n1++, n2++); - EXPECT_EQ(1, n1) << "Argument 1 is not evaluated exactly once."; - EXPECT_EQ(1, n2) << "Argument 2 is not evaluated exactly once."; - - // Another success case. - n1 = n2 = 0; - int n3 = 0; - int n4 = 0; - int n5 = 0; - ASSERT_PRED_FORMAT5(AssertSumIsEven5Functor(), - n1++, n2++, n3++, n4++, n5++) - << "This failure is UNEXPECTED!"; - EXPECT_EQ(1, n1) << "Argument 1 is not evaluated exactly once."; - EXPECT_EQ(1, n2) << "Argument 2 is not evaluated exactly once."; - EXPECT_EQ(1, n3) << "Argument 3 is not evaluated exactly once."; - EXPECT_EQ(1, n4) << "Argument 4 is not evaluated exactly once."; - EXPECT_EQ(1, n5) << "Argument 5 is not evaluated exactly once."; - - // A failure case. - n1 = n2 = n3 = 0; - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED3(SumIsEven3Functor(), ++n1, n2++, n3++) - << "This failure is expected."; - }, "This failure is expected."); - EXPECT_EQ(1, n1) << "Argument 1 is not evaluated exactly once."; - EXPECT_EQ(1, n2) << "Argument 2 is not evaluated exactly once."; - EXPECT_EQ(1, n3) << "Argument 3 is not evaluated exactly once."; - - // Another failure case. - n1 = n2 = n3 = n4 = 0; - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT4(AssertSumIsEven4, ++n1, n2++, n3++, n4++); - }, "evaluates to 1, which is not even."); - EXPECT_EQ(1, n1) << "Argument 1 is not evaluated exactly once."; - EXPECT_EQ(1, n2) << "Argument 2 is not evaluated exactly once."; - EXPECT_EQ(1, n3) << "Argument 3 is not evaluated exactly once."; - EXPECT_EQ(1, n4) << "Argument 4 is not evaluated exactly once."; -} - - -// Some helper functions for testing using overloaded/template -// functions with ASSERT_PREDn and EXPECT_PREDn. - -bool IsPositive(double x) { - return x > 0; -} - -template -bool IsNegative(T x) { - return x < 0; -} - -template -bool GreaterThan(T1 x1, T2 x2) { - return x1 > x2; -} - -// Tests that overloaded functions can be used in *_PRED* as long as -// their types are explicitly specified. -TEST(PredicateAssertionTest, AcceptsOverloadedFunction) { - // C++Builder requires C-style casts rather than static_cast. - EXPECT_PRED1((bool (*)(int))(IsPositive), 5); // NOLINT - ASSERT_PRED1((bool (*)(double))(IsPositive), 6.0); // NOLINT -} - -// Tests that template functions can be used in *_PRED* as long as -// their types are explicitly specified. -TEST(PredicateAssertionTest, AcceptsTemplateFunction) { - EXPECT_PRED1(IsNegative, -5); - // Makes sure that we can handle templates with more than one - // parameter. - ASSERT_PRED2((GreaterThan), 5, 0); -} - - -// Some helper functions for testing using overloaded/template -// functions with ASSERT_PRED_FORMATn and EXPECT_PRED_FORMATn. - -AssertionResult IsPositiveFormat(const char* /* expr */, int n) { - return n > 0 ? AssertionSuccess() : - AssertionFailure(Message() << "Failure"); -} - -AssertionResult IsPositiveFormat(const char* /* expr */, double x) { - return x > 0 ? AssertionSuccess() : - AssertionFailure(Message() << "Failure"); -} - -template -AssertionResult IsNegativeFormat(const char* /* expr */, T x) { - return x < 0 ? AssertionSuccess() : - AssertionFailure(Message() << "Failure"); -} - -template -AssertionResult EqualsFormat(const char* /* expr1 */, const char* /* expr2 */, - const T1& x1, const T2& x2) { - return x1 == x2 ? AssertionSuccess() : - AssertionFailure(Message() << "Failure"); -} - -// Tests that overloaded functions can be used in *_PRED_FORMAT* -// without explicitly specifying their types. -TEST(PredicateFormatAssertionTest, AcceptsOverloadedFunction) { - EXPECT_PRED_FORMAT1(IsPositiveFormat, 5); - ASSERT_PRED_FORMAT1(IsPositiveFormat, 6.0); -} - -// Tests that template functions can be used in *_PRED_FORMAT* without -// explicitly specifying their types. -TEST(PredicateFormatAssertionTest, AcceptsTemplateFunction) { - EXPECT_PRED_FORMAT1(IsNegativeFormat, -5); - ASSERT_PRED_FORMAT2(EqualsFormat, 3, 3); -} - - -// Tests string assertions. - -// Tests ASSERT_STREQ with non-NULL arguments. -TEST(StringAssertionTest, ASSERT_STREQ) { - const char * const p1 = "good"; - ASSERT_STREQ(p1, p1); - - // Let p2 have the same content as p1, but be at a different address. - const char p2[] = "good"; - ASSERT_STREQ(p1, p2); - - EXPECT_FATAL_FAILURE(ASSERT_STREQ("bad", "good"), - "Expected: \"bad\""); -} - -// Tests ASSERT_STREQ with NULL arguments. -TEST(StringAssertionTest, ASSERT_STREQ_Null) { - ASSERT_STREQ(static_cast(NULL), NULL); - EXPECT_FATAL_FAILURE(ASSERT_STREQ(NULL, "non-null"), - "non-null"); -} - -// Tests ASSERT_STREQ with NULL arguments. -TEST(StringAssertionTest, ASSERT_STREQ_Null2) { - EXPECT_FATAL_FAILURE(ASSERT_STREQ("non-null", NULL), - "non-null"); -} - -// Tests ASSERT_STRNE. -TEST(StringAssertionTest, ASSERT_STRNE) { - ASSERT_STRNE("hi", "Hi"); - ASSERT_STRNE("Hi", NULL); - ASSERT_STRNE(NULL, "Hi"); - ASSERT_STRNE("", NULL); - ASSERT_STRNE(NULL, ""); - ASSERT_STRNE("", "Hi"); - ASSERT_STRNE("Hi", ""); - EXPECT_FATAL_FAILURE(ASSERT_STRNE("Hi", "Hi"), - "\"Hi\" vs \"Hi\""); -} - -// Tests ASSERT_STRCASEEQ. -TEST(StringAssertionTest, ASSERT_STRCASEEQ) { - ASSERT_STRCASEEQ("hi", "Hi"); - ASSERT_STRCASEEQ(static_cast(NULL), NULL); - - ASSERT_STRCASEEQ("", ""); - EXPECT_FATAL_FAILURE(ASSERT_STRCASEEQ("Hi", "hi2"), - "(ignoring case)"); -} - -// Tests ASSERT_STRCASENE. -TEST(StringAssertionTest, ASSERT_STRCASENE) { - ASSERT_STRCASENE("hi1", "Hi2"); - ASSERT_STRCASENE("Hi", NULL); - ASSERT_STRCASENE(NULL, "Hi"); - ASSERT_STRCASENE("", NULL); - ASSERT_STRCASENE(NULL, ""); - ASSERT_STRCASENE("", "Hi"); - ASSERT_STRCASENE("Hi", ""); - EXPECT_FATAL_FAILURE(ASSERT_STRCASENE("Hi", "hi"), - "(ignoring case)"); -} - -// Tests *_STREQ on wide strings. -TEST(StringAssertionTest, STREQ_Wide) { - // NULL strings. - ASSERT_STREQ(static_cast(NULL), NULL); - - // Empty strings. - ASSERT_STREQ(L"", L""); - - // Non-null vs NULL. - EXPECT_NONFATAL_FAILURE(EXPECT_STREQ(L"non-null", NULL), - "non-null"); - - // Equal strings. - EXPECT_STREQ(L"Hi", L"Hi"); - - // Unequal strings. - EXPECT_NONFATAL_FAILURE(EXPECT_STREQ(L"abc", L"Abc"), - "Abc"); - - // Strings containing wide characters. - EXPECT_NONFATAL_FAILURE(EXPECT_STREQ(L"abc\x8119", L"abc\x8120"), - "abc"); -} - -// Tests *_STRNE on wide strings. -TEST(StringAssertionTest, STRNE_Wide) { - // NULL strings. - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_STRNE(static_cast(NULL), NULL); - }, ""); - - // Empty strings. - EXPECT_NONFATAL_FAILURE(EXPECT_STRNE(L"", L""), - "L\"\""); - - // Non-null vs NULL. - ASSERT_STRNE(L"non-null", NULL); - - // Equal strings. - EXPECT_NONFATAL_FAILURE(EXPECT_STRNE(L"Hi", L"Hi"), - "L\"Hi\""); - - // Unequal strings. - EXPECT_STRNE(L"abc", L"Abc"); - - // Strings containing wide characters. - EXPECT_NONFATAL_FAILURE(EXPECT_STRNE(L"abc\x8119", L"abc\x8119"), - "abc"); -} - -// Tests for ::testing::IsSubstring(). - -// Tests that IsSubstring() returns the correct result when the input -// argument type is const char*. -TEST(IsSubstringTest, ReturnsCorrectResultForCString) { - EXPECT_FALSE(IsSubstring("", "", NULL, "a")); - EXPECT_FALSE(IsSubstring("", "", "b", NULL)); - EXPECT_FALSE(IsSubstring("", "", "needle", "haystack")); - - EXPECT_TRUE(IsSubstring("", "", static_cast(NULL), NULL)); - EXPECT_TRUE(IsSubstring("", "", "needle", "two needles")); -} - -// Tests that IsSubstring() returns the correct result when the input -// argument type is const wchar_t*. -TEST(IsSubstringTest, ReturnsCorrectResultForWideCString) { - EXPECT_FALSE(IsSubstring("", "", kNull, L"a")); - EXPECT_FALSE(IsSubstring("", "", L"b", kNull)); - EXPECT_FALSE(IsSubstring("", "", L"needle", L"haystack")); - - EXPECT_TRUE(IsSubstring("", "", static_cast(NULL), NULL)); - EXPECT_TRUE(IsSubstring("", "", L"needle", L"two needles")); -} - -// Tests that IsSubstring() generates the correct message when the input -// argument type is const char*. -TEST(IsSubstringTest, GeneratesCorrectMessageForCString) { - EXPECT_STREQ("Value of: needle_expr\n" - " Actual: \"needle\"\n" - "Expected: a substring of haystack_expr\n" - "Which is: \"haystack\"", - IsSubstring("needle_expr", "haystack_expr", - "needle", "haystack").failure_message()); -} - -// Tests that IsSubstring returns the correct result when the input -// argument type is ::std::string. -TEST(IsSubstringTest, ReturnsCorrectResultsForStdString) { - EXPECT_TRUE(IsSubstring("", "", std::string("hello"), "ahellob")); - EXPECT_FALSE(IsSubstring("", "", "hello", std::string("world"))); -} - -#if GTEST_HAS_STD_WSTRING -// Tests that IsSubstring returns the correct result when the input -// argument type is ::std::wstring. -TEST(IsSubstringTest, ReturnsCorrectResultForStdWstring) { - EXPECT_TRUE(IsSubstring("", "", ::std::wstring(L"needle"), L"two needles")); - EXPECT_FALSE(IsSubstring("", "", L"needle", ::std::wstring(L"haystack"))); -} - -// Tests that IsSubstring() generates the correct message when the input -// argument type is ::std::wstring. -TEST(IsSubstringTest, GeneratesCorrectMessageForWstring) { - EXPECT_STREQ("Value of: needle_expr\n" - " Actual: L\"needle\"\n" - "Expected: a substring of haystack_expr\n" - "Which is: L\"haystack\"", - IsSubstring( - "needle_expr", "haystack_expr", - ::std::wstring(L"needle"), L"haystack").failure_message()); -} - -#endif // GTEST_HAS_STD_WSTRING - -// Tests for ::testing::IsNotSubstring(). - -// Tests that IsNotSubstring() returns the correct result when the input -// argument type is const char*. -TEST(IsNotSubstringTest, ReturnsCorrectResultForCString) { - EXPECT_TRUE(IsNotSubstring("", "", "needle", "haystack")); - EXPECT_FALSE(IsNotSubstring("", "", "needle", "two needles")); -} - -// Tests that IsNotSubstring() returns the correct result when the input -// argument type is const wchar_t*. -TEST(IsNotSubstringTest, ReturnsCorrectResultForWideCString) { - EXPECT_TRUE(IsNotSubstring("", "", L"needle", L"haystack")); - EXPECT_FALSE(IsNotSubstring("", "", L"needle", L"two needles")); -} - -// Tests that IsNotSubstring() generates the correct message when the input -// argument type is const wchar_t*. -TEST(IsNotSubstringTest, GeneratesCorrectMessageForWideCString) { - EXPECT_STREQ("Value of: needle_expr\n" - " Actual: L\"needle\"\n" - "Expected: not a substring of haystack_expr\n" - "Which is: L\"two needles\"", - IsNotSubstring( - "needle_expr", "haystack_expr", - L"needle", L"two needles").failure_message()); -} - -// Tests that IsNotSubstring returns the correct result when the input -// argument type is ::std::string. -TEST(IsNotSubstringTest, ReturnsCorrectResultsForStdString) { - EXPECT_FALSE(IsNotSubstring("", "", std::string("hello"), "ahellob")); - EXPECT_TRUE(IsNotSubstring("", "", "hello", std::string("world"))); -} - -// Tests that IsNotSubstring() generates the correct message when the input -// argument type is ::std::string. -TEST(IsNotSubstringTest, GeneratesCorrectMessageForStdString) { - EXPECT_STREQ("Value of: needle_expr\n" - " Actual: \"needle\"\n" - "Expected: not a substring of haystack_expr\n" - "Which is: \"two needles\"", - IsNotSubstring( - "needle_expr", "haystack_expr", - ::std::string("needle"), "two needles").failure_message()); -} - -#if GTEST_HAS_STD_WSTRING - -// Tests that IsNotSubstring returns the correct result when the input -// argument type is ::std::wstring. -TEST(IsNotSubstringTest, ReturnsCorrectResultForStdWstring) { - EXPECT_FALSE( - IsNotSubstring("", "", ::std::wstring(L"needle"), L"two needles")); - EXPECT_TRUE(IsNotSubstring("", "", L"needle", ::std::wstring(L"haystack"))); -} - -#endif // GTEST_HAS_STD_WSTRING - -// Tests floating-point assertions. - -template -class FloatingPointTest : public Test { - protected: - - // Pre-calculated numbers to be used by the tests. - struct TestValues { - RawType close_to_positive_zero; - RawType close_to_negative_zero; - RawType further_from_negative_zero; - - RawType close_to_one; - RawType further_from_one; - - RawType infinity; - RawType close_to_infinity; - RawType further_from_infinity; - - RawType nan1; - RawType nan2; - }; - - typedef typename testing::internal::FloatingPoint Floating; - typedef typename Floating::Bits Bits; - - virtual void SetUp() { - const size_t max_ulps = Floating::kMaxUlps; - - // The bits that represent 0.0. - const Bits zero_bits = Floating(0).bits(); - - // Makes some numbers close to 0.0. - values_.close_to_positive_zero = Floating::ReinterpretBits( - zero_bits + max_ulps/2); - values_.close_to_negative_zero = -Floating::ReinterpretBits( - zero_bits + max_ulps - max_ulps/2); - values_.further_from_negative_zero = -Floating::ReinterpretBits( - zero_bits + max_ulps + 1 - max_ulps/2); - - // The bits that represent 1.0. - const Bits one_bits = Floating(1).bits(); - - // Makes some numbers close to 1.0. - values_.close_to_one = Floating::ReinterpretBits(one_bits + max_ulps); - values_.further_from_one = Floating::ReinterpretBits( - one_bits + max_ulps + 1); - - // +infinity. - values_.infinity = Floating::Infinity(); - - // The bits that represent +infinity. - const Bits infinity_bits = Floating(values_.infinity).bits(); - - // Makes some numbers close to infinity. - values_.close_to_infinity = Floating::ReinterpretBits( - infinity_bits - max_ulps); - values_.further_from_infinity = Floating::ReinterpretBits( - infinity_bits - max_ulps - 1); - - // Makes some NAN's. Sets the most significant bit of the fraction so that - // our NaN's are quiet; trying to process a signaling NaN would raise an - // exception if our environment enables floating point exceptions. - values_.nan1 = Floating::ReinterpretBits(Floating::kExponentBitMask - | (static_cast(1) << (Floating::kFractionBitCount - 1)) | 1); - values_.nan2 = Floating::ReinterpretBits(Floating::kExponentBitMask - | (static_cast(1) << (Floating::kFractionBitCount - 1)) | 200); - } - - void TestSize() { - EXPECT_EQ(sizeof(RawType), sizeof(Bits)); - } - - static TestValues values_; -}; - -template -typename FloatingPointTest::TestValues - FloatingPointTest::values_; - -// Instantiates FloatingPointTest for testing *_FLOAT_EQ. -typedef FloatingPointTest FloatTest; - -// Tests that the size of Float::Bits matches the size of float. -TEST_F(FloatTest, Size) { - TestSize(); -} - -// Tests comparing with +0 and -0. -TEST_F(FloatTest, Zeros) { - EXPECT_FLOAT_EQ(0.0, -0.0); - EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(-0.0, 1.0), - "1.0"); - EXPECT_FATAL_FAILURE(ASSERT_FLOAT_EQ(0.0, 1.5), - "1.5"); -} - -// Tests comparing numbers close to 0. -// -// This ensures that *_FLOAT_EQ handles the sign correctly and no -// overflow occurs when comparing numbers whose absolute value is very -// small. -TEST_F(FloatTest, AlmostZeros) { - // In C++Builder, names within local classes (such as used by - // EXPECT_FATAL_FAILURE) cannot be resolved against static members of the - // scoping class. Use a static local alias as a workaround. - // We use the assignment syntax since some compilers, like Sun Studio, - // don't allow initializing references using construction syntax - // (parentheses). - static const FloatTest::TestValues& v = this->values_; - - EXPECT_FLOAT_EQ(0.0, v.close_to_positive_zero); - EXPECT_FLOAT_EQ(-0.0, v.close_to_negative_zero); - EXPECT_FLOAT_EQ(v.close_to_positive_zero, v.close_to_negative_zero); - - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_FLOAT_EQ(v.close_to_positive_zero, - v.further_from_negative_zero); - }, "v.further_from_negative_zero"); -} - -// Tests comparing numbers close to each other. -TEST_F(FloatTest, SmallDiff) { - EXPECT_FLOAT_EQ(1.0, values_.close_to_one); - EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(1.0, values_.further_from_one), - "values_.further_from_one"); -} - -// Tests comparing numbers far apart. -TEST_F(FloatTest, LargeDiff) { - EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(2.5, 3.0), - "3.0"); -} - -// Tests comparing with infinity. -// -// This ensures that no overflow occurs when comparing numbers whose -// absolute value is very large. -TEST_F(FloatTest, Infinity) { - EXPECT_FLOAT_EQ(values_.infinity, values_.close_to_infinity); - EXPECT_FLOAT_EQ(-values_.infinity, -values_.close_to_infinity); -#if !GTEST_OS_SYMBIAN - // Nokia's STLport crashes if we try to output infinity or NaN. - EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(values_.infinity, -values_.infinity), - "-values_.infinity"); - - // This is interesting as the representations of infinity and nan1 - // are only 1 DLP apart. - EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(values_.infinity, values_.nan1), - "values_.nan1"); -#endif // !GTEST_OS_SYMBIAN -} - -// Tests that comparing with NAN always returns false. -TEST_F(FloatTest, NaN) { -#if !GTEST_OS_SYMBIAN -// Nokia's STLport crashes if we try to output infinity or NaN. - - // In C++Builder, names within local classes (such as used by - // EXPECT_FATAL_FAILURE) cannot be resolved against static members of the - // scoping class. Use a static local alias as a workaround. - // We use the assignment syntax since some compilers, like Sun Studio, - // don't allow initializing references using construction syntax - // (parentheses). - static const FloatTest::TestValues& v = this->values_; - - EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(v.nan1, v.nan1), - "v.nan1"); - EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(v.nan1, v.nan2), - "v.nan2"); - EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(1.0, v.nan1), - "v.nan1"); - - EXPECT_FATAL_FAILURE(ASSERT_FLOAT_EQ(v.nan1, v.infinity), - "v.infinity"); -#endif // !GTEST_OS_SYMBIAN -} - -// Tests that *_FLOAT_EQ are reflexive. -TEST_F(FloatTest, Reflexive) { - EXPECT_FLOAT_EQ(0.0, 0.0); - EXPECT_FLOAT_EQ(1.0, 1.0); - ASSERT_FLOAT_EQ(values_.infinity, values_.infinity); -} - -// Tests that *_FLOAT_EQ are commutative. -TEST_F(FloatTest, Commutative) { - // We already tested EXPECT_FLOAT_EQ(1.0, values_.close_to_one). - EXPECT_FLOAT_EQ(values_.close_to_one, 1.0); - - // We already tested EXPECT_FLOAT_EQ(1.0, values_.further_from_one). - EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(values_.further_from_one, 1.0), - "1.0"); -} - -// Tests EXPECT_NEAR. -TEST_F(FloatTest, EXPECT_NEAR) { - EXPECT_NEAR(-1.0f, -1.1f, 0.2f); - EXPECT_NEAR(2.0f, 3.0f, 1.0f); - EXPECT_NONFATAL_FAILURE(EXPECT_NEAR(1.0f,1.5f, 0.25f), // NOLINT - "The difference between 1.0f and 1.5f is 0.5, " - "which exceeds 0.25f"); - // To work around a bug in gcc 2.95.0, there is intentionally no - // space after the first comma in the previous line. -} - -// Tests ASSERT_NEAR. -TEST_F(FloatTest, ASSERT_NEAR) { - ASSERT_NEAR(-1.0f, -1.1f, 0.2f); - ASSERT_NEAR(2.0f, 3.0f, 1.0f); - EXPECT_FATAL_FAILURE(ASSERT_NEAR(1.0f,1.5f, 0.25f), // NOLINT - "The difference between 1.0f and 1.5f is 0.5, " - "which exceeds 0.25f"); - // To work around a bug in gcc 2.95.0, there is intentionally no - // space after the first comma in the previous line. -} - -// Tests the cases where FloatLE() should succeed. -TEST_F(FloatTest, FloatLESucceeds) { - EXPECT_PRED_FORMAT2(FloatLE, 1.0f, 2.0f); // When val1 < val2, - ASSERT_PRED_FORMAT2(FloatLE, 1.0f, 1.0f); // val1 == val2, - - // or when val1 is greater than, but almost equals to, val2. - EXPECT_PRED_FORMAT2(FloatLE, values_.close_to_positive_zero, 0.0f); -} - -// Tests the cases where FloatLE() should fail. -TEST_F(FloatTest, FloatLEFails) { - // When val1 is greater than val2 by a large margin, - EXPECT_NONFATAL_FAILURE(EXPECT_PRED_FORMAT2(FloatLE, 2.0f, 1.0f), - "(2.0f) <= (1.0f)"); - - // or by a small yet non-negligible margin, - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT2(FloatLE, values_.further_from_one, 1.0f); - }, "(values_.further_from_one) <= (1.0f)"); - -#if !GTEST_OS_SYMBIAN && !defined(__BORLANDC__) - // Nokia's STLport crashes if we try to output infinity or NaN. - // C++Builder gives bad results for ordered comparisons involving NaNs - // due to compiler bugs. - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT2(FloatLE, values_.nan1, values_.infinity); - }, "(values_.nan1) <= (values_.infinity)"); - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT2(FloatLE, -values_.infinity, values_.nan1); - }, "(-values_.infinity) <= (values_.nan1)"); - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT2(FloatLE, values_.nan1, values_.nan1); - }, "(values_.nan1) <= (values_.nan1)"); -#endif // !GTEST_OS_SYMBIAN && !defined(__BORLANDC__) -} - -// Instantiates FloatingPointTest for testing *_DOUBLE_EQ. -typedef FloatingPointTest DoubleTest; - -// Tests that the size of Double::Bits matches the size of double. -TEST_F(DoubleTest, Size) { - TestSize(); -} - -// Tests comparing with +0 and -0. -TEST_F(DoubleTest, Zeros) { - EXPECT_DOUBLE_EQ(0.0, -0.0); - EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(-0.0, 1.0), - "1.0"); - EXPECT_FATAL_FAILURE(ASSERT_DOUBLE_EQ(0.0, 1.0), - "1.0"); -} - -// Tests comparing numbers close to 0. -// -// This ensures that *_DOUBLE_EQ handles the sign correctly and no -// overflow occurs when comparing numbers whose absolute value is very -// small. -TEST_F(DoubleTest, AlmostZeros) { - // In C++Builder, names within local classes (such as used by - // EXPECT_FATAL_FAILURE) cannot be resolved against static members of the - // scoping class. Use a static local alias as a workaround. - // We use the assignment syntax since some compilers, like Sun Studio, - // don't allow initializing references using construction syntax - // (parentheses). - static const DoubleTest::TestValues& v = this->values_; - - EXPECT_DOUBLE_EQ(0.0, v.close_to_positive_zero); - EXPECT_DOUBLE_EQ(-0.0, v.close_to_negative_zero); - EXPECT_DOUBLE_EQ(v.close_to_positive_zero, v.close_to_negative_zero); - - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_DOUBLE_EQ(v.close_to_positive_zero, - v.further_from_negative_zero); - }, "v.further_from_negative_zero"); -} - -// Tests comparing numbers close to each other. -TEST_F(DoubleTest, SmallDiff) { - EXPECT_DOUBLE_EQ(1.0, values_.close_to_one); - EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(1.0, values_.further_from_one), - "values_.further_from_one"); -} - -// Tests comparing numbers far apart. -TEST_F(DoubleTest, LargeDiff) { - EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(2.0, 3.0), - "3.0"); -} - -// Tests comparing with infinity. -// -// This ensures that no overflow occurs when comparing numbers whose -// absolute value is very large. -TEST_F(DoubleTest, Infinity) { - EXPECT_DOUBLE_EQ(values_.infinity, values_.close_to_infinity); - EXPECT_DOUBLE_EQ(-values_.infinity, -values_.close_to_infinity); -#if !GTEST_OS_SYMBIAN - // Nokia's STLport crashes if we try to output infinity or NaN. - EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(values_.infinity, -values_.infinity), - "-values_.infinity"); - - // This is interesting as the representations of infinity_ and nan1_ - // are only 1 DLP apart. - EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(values_.infinity, values_.nan1), - "values_.nan1"); -#endif // !GTEST_OS_SYMBIAN -} - -// Tests that comparing with NAN always returns false. -TEST_F(DoubleTest, NaN) { -#if !GTEST_OS_SYMBIAN - // In C++Builder, names within local classes (such as used by - // EXPECT_FATAL_FAILURE) cannot be resolved against static members of the - // scoping class. Use a static local alias as a workaround. - // We use the assignment syntax since some compilers, like Sun Studio, - // don't allow initializing references using construction syntax - // (parentheses). - static const DoubleTest::TestValues& v = this->values_; - - // Nokia's STLport crashes if we try to output infinity or NaN. - EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(v.nan1, v.nan1), - "v.nan1"); - EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(v.nan1, v.nan2), "v.nan2"); - EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(1.0, v.nan1), "v.nan1"); - EXPECT_FATAL_FAILURE(ASSERT_DOUBLE_EQ(v.nan1, v.infinity), - "v.infinity"); -#endif // !GTEST_OS_SYMBIAN -} - -// Tests that *_DOUBLE_EQ are reflexive. -TEST_F(DoubleTest, Reflexive) { - EXPECT_DOUBLE_EQ(0.0, 0.0); - EXPECT_DOUBLE_EQ(1.0, 1.0); -#if !GTEST_OS_SYMBIAN - // Nokia's STLport crashes if we try to output infinity or NaN. - ASSERT_DOUBLE_EQ(values_.infinity, values_.infinity); -#endif // !GTEST_OS_SYMBIAN -} - -// Tests that *_DOUBLE_EQ are commutative. -TEST_F(DoubleTest, Commutative) { - // We already tested EXPECT_DOUBLE_EQ(1.0, values_.close_to_one). - EXPECT_DOUBLE_EQ(values_.close_to_one, 1.0); - - // We already tested EXPECT_DOUBLE_EQ(1.0, values_.further_from_one). - EXPECT_NONFATAL_FAILURE(EXPECT_DOUBLE_EQ(values_.further_from_one, 1.0), - "1.0"); -} - -// Tests EXPECT_NEAR. -TEST_F(DoubleTest, EXPECT_NEAR) { - EXPECT_NEAR(-1.0, -1.1, 0.2); - EXPECT_NEAR(2.0, 3.0, 1.0); - EXPECT_NONFATAL_FAILURE(EXPECT_NEAR(1.0, 1.5, 0.25), // NOLINT - "The difference between 1.0 and 1.5 is 0.5, " - "which exceeds 0.25"); - // To work around a bug in gcc 2.95.0, there is intentionally no - // space after the first comma in the previous statement. -} - -// Tests ASSERT_NEAR. -TEST_F(DoubleTest, ASSERT_NEAR) { - ASSERT_NEAR(-1.0, -1.1, 0.2); - ASSERT_NEAR(2.0, 3.0, 1.0); - EXPECT_FATAL_FAILURE(ASSERT_NEAR(1.0, 1.5, 0.25), // NOLINT - "The difference between 1.0 and 1.5 is 0.5, " - "which exceeds 0.25"); - // To work around a bug in gcc 2.95.0, there is intentionally no - // space after the first comma in the previous statement. -} - -// Tests the cases where DoubleLE() should succeed. -TEST_F(DoubleTest, DoubleLESucceeds) { - EXPECT_PRED_FORMAT2(DoubleLE, 1.0, 2.0); // When val1 < val2, - ASSERT_PRED_FORMAT2(DoubleLE, 1.0, 1.0); // val1 == val2, - - // or when val1 is greater than, but almost equals to, val2. - EXPECT_PRED_FORMAT2(DoubleLE, values_.close_to_positive_zero, 0.0); -} - -// Tests the cases where DoubleLE() should fail. -TEST_F(DoubleTest, DoubleLEFails) { - // When val1 is greater than val2 by a large margin, - EXPECT_NONFATAL_FAILURE(EXPECT_PRED_FORMAT2(DoubleLE, 2.0, 1.0), - "(2.0) <= (1.0)"); - - // or by a small yet non-negligible margin, - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT2(DoubleLE, values_.further_from_one, 1.0); - }, "(values_.further_from_one) <= (1.0)"); - -#if !GTEST_OS_SYMBIAN && !defined(__BORLANDC__) - // Nokia's STLport crashes if we try to output infinity or NaN. - // C++Builder gives bad results for ordered comparisons involving NaNs - // due to compiler bugs. - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT2(DoubleLE, values_.nan1, values_.infinity); - }, "(values_.nan1) <= (values_.infinity)"); - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_PRED_FORMAT2(DoubleLE, -values_.infinity, values_.nan1); - }, " (-values_.infinity) <= (values_.nan1)"); - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_PRED_FORMAT2(DoubleLE, values_.nan1, values_.nan1); - }, "(values_.nan1) <= (values_.nan1)"); -#endif // !GTEST_OS_SYMBIAN && !defined(__BORLANDC__) -} - - -// Verifies that a test or test case whose name starts with DISABLED_ is -// not run. - -// A test whose name starts with DISABLED_. -// Should not run. -TEST(DisabledTest, DISABLED_TestShouldNotRun) { - FAIL() << "Unexpected failure: Disabled test should not be run."; -} - -// A test whose name does not start with DISABLED_. -// Should run. -TEST(DisabledTest, NotDISABLED_TestShouldRun) { - EXPECT_EQ(1, 1); -} - -// A test case whose name starts with DISABLED_. -// Should not run. -TEST(DISABLED_TestCase, TestShouldNotRun) { - FAIL() << "Unexpected failure: Test in disabled test case should not be run."; -} - -// A test case and test whose names start with DISABLED_. -// Should not run. -TEST(DISABLED_TestCase, DISABLED_TestShouldNotRun) { - FAIL() << "Unexpected failure: Test in disabled test case should not be run."; -} - -// Check that when all tests in a test case are disabled, SetupTestCase() and -// TearDownTestCase() are not called. -class DisabledTestsTest : public Test { - protected: - static void SetUpTestCase() { - FAIL() << "Unexpected failure: All tests disabled in test case. " - "SetupTestCase() should not be called."; - } - - static void TearDownTestCase() { - FAIL() << "Unexpected failure: All tests disabled in test case. " - "TearDownTestCase() should not be called."; - } -}; - -TEST_F(DisabledTestsTest, DISABLED_TestShouldNotRun_1) { - FAIL() << "Unexpected failure: Disabled test should not be run."; -} - -TEST_F(DisabledTestsTest, DISABLED_TestShouldNotRun_2) { - FAIL() << "Unexpected failure: Disabled test should not be run."; -} - -// Tests that disabled typed tests aren't run. - -#if GTEST_HAS_TYPED_TEST - -template -class TypedTest : public Test { -}; - -typedef testing::Types NumericTypes; -TYPED_TEST_CASE(TypedTest, NumericTypes); - -TYPED_TEST(TypedTest, DISABLED_ShouldNotRun) { - FAIL() << "Unexpected failure: Disabled typed test should not run."; -} - -template -class DISABLED_TypedTest : public Test { -}; - -TYPED_TEST_CASE(DISABLED_TypedTest, NumericTypes); - -TYPED_TEST(DISABLED_TypedTest, ShouldNotRun) { - FAIL() << "Unexpected failure: Disabled typed test should not run."; -} - -#endif // GTEST_HAS_TYPED_TEST - -// Tests that disabled type-parameterized tests aren't run. - -#if GTEST_HAS_TYPED_TEST_P - -template -class TypedTestP : public Test { -}; - -TYPED_TEST_CASE_P(TypedTestP); - -TYPED_TEST_P(TypedTestP, DISABLED_ShouldNotRun) { - FAIL() << "Unexpected failure: " - << "Disabled type-parameterized test should not run."; -} - -REGISTER_TYPED_TEST_CASE_P(TypedTestP, DISABLED_ShouldNotRun); - -INSTANTIATE_TYPED_TEST_CASE_P(My, TypedTestP, NumericTypes); - -template -class DISABLED_TypedTestP : public Test { -}; - -TYPED_TEST_CASE_P(DISABLED_TypedTestP); - -TYPED_TEST_P(DISABLED_TypedTestP, ShouldNotRun) { - FAIL() << "Unexpected failure: " - << "Disabled type-parameterized test should not run."; -} - -REGISTER_TYPED_TEST_CASE_P(DISABLED_TypedTestP, ShouldNotRun); - -INSTANTIATE_TYPED_TEST_CASE_P(My, DISABLED_TypedTestP, NumericTypes); - -#endif // GTEST_HAS_TYPED_TEST_P - -// Tests that assertion macros evaluate their arguments exactly once. - -class SingleEvaluationTest : public Test { - public: // Must be public and not protected due to a bug in g++ 3.4.2. - // This helper function is needed by the FailedASSERT_STREQ test - // below. It's public to work around C++Builder's bug with scoping local - // classes. - static void CompareAndIncrementCharPtrs() { - ASSERT_STREQ(p1_++, p2_++); - } - - // This helper function is needed by the FailedASSERT_NE test below. It's - // public to work around C++Builder's bug with scoping local classes. - static void CompareAndIncrementInts() { - ASSERT_NE(a_++, b_++); - } - - protected: - SingleEvaluationTest() { - p1_ = s1_; - p2_ = s2_; - a_ = 0; - b_ = 0; - } - - static const char* const s1_; - static const char* const s2_; - static const char* p1_; - static const char* p2_; - - static int a_; - static int b_; -}; - -const char* const SingleEvaluationTest::s1_ = "01234"; -const char* const SingleEvaluationTest::s2_ = "abcde"; -const char* SingleEvaluationTest::p1_; -const char* SingleEvaluationTest::p2_; -int SingleEvaluationTest::a_; -int SingleEvaluationTest::b_; - -// Tests that when ASSERT_STREQ fails, it evaluates its arguments -// exactly once. -TEST_F(SingleEvaluationTest, FailedASSERT_STREQ) { - EXPECT_FATAL_FAILURE(SingleEvaluationTest::CompareAndIncrementCharPtrs(), - "p2_++"); - EXPECT_EQ(s1_ + 1, p1_); - EXPECT_EQ(s2_ + 1, p2_); -} - -// Tests that string assertion arguments are evaluated exactly once. -TEST_F(SingleEvaluationTest, ASSERT_STR) { - // successful EXPECT_STRNE - EXPECT_STRNE(p1_++, p2_++); - EXPECT_EQ(s1_ + 1, p1_); - EXPECT_EQ(s2_ + 1, p2_); - - // failed EXPECT_STRCASEEQ - EXPECT_NONFATAL_FAILURE(EXPECT_STRCASEEQ(p1_++, p2_++), - "ignoring case"); - EXPECT_EQ(s1_ + 2, p1_); - EXPECT_EQ(s2_ + 2, p2_); -} - -// Tests that when ASSERT_NE fails, it evaluates its arguments exactly -// once. -TEST_F(SingleEvaluationTest, FailedASSERT_NE) { - EXPECT_FATAL_FAILURE(SingleEvaluationTest::CompareAndIncrementInts(), - "(a_++) != (b_++)"); - EXPECT_EQ(1, a_); - EXPECT_EQ(1, b_); -} - -// Tests that assertion arguments are evaluated exactly once. -TEST_F(SingleEvaluationTest, OtherCases) { - // successful EXPECT_TRUE - EXPECT_TRUE(0 == a_++); // NOLINT - EXPECT_EQ(1, a_); - - // failed EXPECT_TRUE - EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(-1 == a_++), "-1 == a_++"); - EXPECT_EQ(2, a_); - - // successful EXPECT_GT - EXPECT_GT(a_++, b_++); - EXPECT_EQ(3, a_); - EXPECT_EQ(1, b_); - - // failed EXPECT_LT - EXPECT_NONFATAL_FAILURE(EXPECT_LT(a_++, b_++), "(a_++) < (b_++)"); - EXPECT_EQ(4, a_); - EXPECT_EQ(2, b_); - - // successful ASSERT_TRUE - ASSERT_TRUE(0 < a_++); // NOLINT - EXPECT_EQ(5, a_); - - // successful ASSERT_GT - ASSERT_GT(a_++, b_++); - EXPECT_EQ(6, a_); - EXPECT_EQ(3, b_); -} - -#if GTEST_HAS_EXCEPTIONS - -void ThrowAnInteger() { - throw 1; -} - -// Tests that assertion arguments are evaluated exactly once. -TEST_F(SingleEvaluationTest, ExceptionTests) { - // successful EXPECT_THROW - EXPECT_THROW({ // NOLINT - a_++; - ThrowAnInteger(); - }, int); - EXPECT_EQ(1, a_); - - // failed EXPECT_THROW, throws different - EXPECT_NONFATAL_FAILURE(EXPECT_THROW({ // NOLINT - a_++; - ThrowAnInteger(); - }, bool), "throws a different type"); - EXPECT_EQ(2, a_); - - // failed EXPECT_THROW, throws nothing - EXPECT_NONFATAL_FAILURE(EXPECT_THROW(a_++, bool), "throws nothing"); - EXPECT_EQ(3, a_); - - // successful EXPECT_NO_THROW - EXPECT_NO_THROW(a_++); - EXPECT_EQ(4, a_); - - // failed EXPECT_NO_THROW - EXPECT_NONFATAL_FAILURE(EXPECT_NO_THROW({ // NOLINT - a_++; - ThrowAnInteger(); - }), "it throws"); - EXPECT_EQ(5, a_); - - // successful EXPECT_ANY_THROW - EXPECT_ANY_THROW({ // NOLINT - a_++; - ThrowAnInteger(); - }); - EXPECT_EQ(6, a_); - - // failed EXPECT_ANY_THROW - EXPECT_NONFATAL_FAILURE(EXPECT_ANY_THROW(a_++), "it doesn't"); - EXPECT_EQ(7, a_); -} - -#endif // GTEST_HAS_EXCEPTIONS - -// Tests {ASSERT|EXPECT}_NO_FATAL_FAILURE. -class NoFatalFailureTest : public Test { - protected: - void Succeeds() {} - void FailsNonFatal() { - ADD_FAILURE() << "some non-fatal failure"; - } - void Fails() { - FAIL() << "some fatal failure"; - } - - void DoAssertNoFatalFailureOnFails() { - ASSERT_NO_FATAL_FAILURE(Fails()); - ADD_FAILURE() << "shold not reach here."; - } - - void DoExpectNoFatalFailureOnFails() { - EXPECT_NO_FATAL_FAILURE(Fails()); - ADD_FAILURE() << "other failure"; - } -}; - -TEST_F(NoFatalFailureTest, NoFailure) { - EXPECT_NO_FATAL_FAILURE(Succeeds()); - ASSERT_NO_FATAL_FAILURE(Succeeds()); -} - -TEST_F(NoFatalFailureTest, NonFatalIsNoFailure) { - EXPECT_NONFATAL_FAILURE( - EXPECT_NO_FATAL_FAILURE(FailsNonFatal()), - "some non-fatal failure"); - EXPECT_NONFATAL_FAILURE( - ASSERT_NO_FATAL_FAILURE(FailsNonFatal()), - "some non-fatal failure"); -} - -TEST_F(NoFatalFailureTest, AssertNoFatalFailureOnFatalFailure) { - TestPartResultArray gtest_failures; - { - ScopedFakeTestPartResultReporter gtest_reporter(>est_failures); - DoAssertNoFatalFailureOnFails(); - } - ASSERT_EQ(2, gtest_failures.size()); - EXPECT_EQ(TestPartResult::kFatalFailure, - gtest_failures.GetTestPartResult(0).type()); - EXPECT_EQ(TestPartResult::kFatalFailure, - gtest_failures.GetTestPartResult(1).type()); - EXPECT_PRED_FORMAT2(testing::IsSubstring, "some fatal failure", - gtest_failures.GetTestPartResult(0).message()); - EXPECT_PRED_FORMAT2(testing::IsSubstring, "it does", - gtest_failures.GetTestPartResult(1).message()); -} - -TEST_F(NoFatalFailureTest, ExpectNoFatalFailureOnFatalFailure) { - TestPartResultArray gtest_failures; - { - ScopedFakeTestPartResultReporter gtest_reporter(>est_failures); - DoExpectNoFatalFailureOnFails(); - } - ASSERT_EQ(3, gtest_failures.size()); - EXPECT_EQ(TestPartResult::kFatalFailure, - gtest_failures.GetTestPartResult(0).type()); - EXPECT_EQ(TestPartResult::kNonFatalFailure, - gtest_failures.GetTestPartResult(1).type()); - EXPECT_EQ(TestPartResult::kNonFatalFailure, - gtest_failures.GetTestPartResult(2).type()); - EXPECT_PRED_FORMAT2(testing::IsSubstring, "some fatal failure", - gtest_failures.GetTestPartResult(0).message()); - EXPECT_PRED_FORMAT2(testing::IsSubstring, "it does", - gtest_failures.GetTestPartResult(1).message()); - EXPECT_PRED_FORMAT2(testing::IsSubstring, "other failure", - gtest_failures.GetTestPartResult(2).message()); -} - -TEST_F(NoFatalFailureTest, MessageIsStreamable) { - TestPartResultArray gtest_failures; - { - ScopedFakeTestPartResultReporter gtest_reporter(>est_failures); - EXPECT_NO_FATAL_FAILURE(FAIL() << "foo") << "my message"; - } - ASSERT_EQ(2, gtest_failures.size()); - EXPECT_EQ(TestPartResult::kNonFatalFailure, - gtest_failures.GetTestPartResult(0).type()); - EXPECT_EQ(TestPartResult::kNonFatalFailure, - gtest_failures.GetTestPartResult(1).type()); - EXPECT_PRED_FORMAT2(testing::IsSubstring, "foo", - gtest_failures.GetTestPartResult(0).message()); - EXPECT_PRED_FORMAT2(testing::IsSubstring, "my message", - gtest_failures.GetTestPartResult(1).message()); -} - -// Tests non-string assertions. - -// Tests EqFailure(), used for implementing *EQ* assertions. -TEST(AssertionTest, EqFailure) { - const String foo_val("5"), bar_val("6"); - const String msg1( - EqFailure("foo", "bar", foo_val, bar_val, false) - .failure_message()); - EXPECT_STREQ( - "Value of: bar\n" - " Actual: 6\n" - "Expected: foo\n" - "Which is: 5", - msg1.c_str()); - - const String msg2( - EqFailure("foo", "6", foo_val, bar_val, false) - .failure_message()); - EXPECT_STREQ( - "Value of: 6\n" - "Expected: foo\n" - "Which is: 5", - msg2.c_str()); - - const String msg3( - EqFailure("5", "bar", foo_val, bar_val, false) - .failure_message()); - EXPECT_STREQ( - "Value of: bar\n" - " Actual: 6\n" - "Expected: 5", - msg3.c_str()); - - const String msg4( - EqFailure("5", "6", foo_val, bar_val, false).failure_message()); - EXPECT_STREQ( - "Value of: 6\n" - "Expected: 5", - msg4.c_str()); - - const String msg5( - EqFailure("foo", "bar", - String("\"x\""), String("\"y\""), - true).failure_message()); - EXPECT_STREQ( - "Value of: bar\n" - " Actual: \"y\"\n" - "Expected: foo (ignoring case)\n" - "Which is: \"x\"", - msg5.c_str()); -} - -// Tests AppendUserMessage(), used for implementing the *EQ* macros. -TEST(AssertionTest, AppendUserMessage) { - const String foo("foo"); - - Message msg; - EXPECT_STREQ("foo", - AppendUserMessage(foo, msg).c_str()); - - msg << "bar"; - EXPECT_STREQ("foo\nbar", - AppendUserMessage(foo, msg).c_str()); -} - -#ifdef __BORLANDC__ -// Silences warnings: "Condition is always true", "Unreachable code" -#pragma option push -w-ccc -w-rch -#endif - -// Tests ASSERT_TRUE. -TEST(AssertionTest, ASSERT_TRUE) { - ASSERT_TRUE(2 > 1); // NOLINT - EXPECT_FATAL_FAILURE(ASSERT_TRUE(2 < 1), - "2 < 1"); -} - -// Tests ASSERT_TRUE(predicate) for predicates returning AssertionResult. -TEST(AssertionTest, AssertTrueWithAssertionResult) { - ASSERT_TRUE(ResultIsEven(2)); -#if !defined(__BORLANDC__) || __BORLANDC__ >= 0x600 - // ICE's in C++Builder 2007. - EXPECT_FATAL_FAILURE(ASSERT_TRUE(ResultIsEven(3)), - "Value of: ResultIsEven(3)\n" - " Actual: false (3 is odd)\n" - "Expected: true"); -#endif - ASSERT_TRUE(ResultIsEvenNoExplanation(2)); - EXPECT_FATAL_FAILURE(ASSERT_TRUE(ResultIsEvenNoExplanation(3)), - "Value of: ResultIsEvenNoExplanation(3)\n" - " Actual: false (3 is odd)\n" - "Expected: true"); -} - -// Tests ASSERT_FALSE. -TEST(AssertionTest, ASSERT_FALSE) { - ASSERT_FALSE(2 < 1); // NOLINT - EXPECT_FATAL_FAILURE(ASSERT_FALSE(2 > 1), - "Value of: 2 > 1\n" - " Actual: true\n" - "Expected: false"); -} - -// Tests ASSERT_FALSE(predicate) for predicates returning AssertionResult. -TEST(AssertionTest, AssertFalseWithAssertionResult) { - ASSERT_FALSE(ResultIsEven(3)); -#if !defined(__BORLANDC__) || __BORLANDC__ >= 0x600 - // ICE's in C++Builder 2007. - EXPECT_FATAL_FAILURE(ASSERT_FALSE(ResultIsEven(2)), - "Value of: ResultIsEven(2)\n" - " Actual: true (2 is even)\n" - "Expected: false"); -#endif - ASSERT_FALSE(ResultIsEvenNoExplanation(3)); - EXPECT_FATAL_FAILURE(ASSERT_FALSE(ResultIsEvenNoExplanation(2)), - "Value of: ResultIsEvenNoExplanation(2)\n" - " Actual: true\n" - "Expected: false"); -} - -#ifdef __BORLANDC__ -// Restores warnings after previous "#pragma option push" supressed them -#pragma option pop -#endif - -// Tests using ASSERT_EQ on double values. The purpose is to make -// sure that the specialization we did for integer and anonymous enums -// isn't used for double arguments. -TEST(ExpectTest, ASSERT_EQ_Double) { - // A success. - ASSERT_EQ(5.6, 5.6); - - // A failure. - EXPECT_FATAL_FAILURE(ASSERT_EQ(5.1, 5.2), - "5.1"); -} - -// Tests ASSERT_EQ. -TEST(AssertionTest, ASSERT_EQ) { - ASSERT_EQ(5, 2 + 3); - EXPECT_FATAL_FAILURE(ASSERT_EQ(5, 2*3), - "Value of: 2*3\n" - " Actual: 6\n" - "Expected: 5"); -} - -// Tests ASSERT_EQ(NULL, pointer). -#if GTEST_CAN_COMPARE_NULL -TEST(AssertionTest, ASSERT_EQ_NULL) { - // A success. - const char* p = NULL; - // Some older GCC versions may issue a spurious waring in this or the next - // assertion statement. This warning should not be suppressed with - // static_cast since the test verifies the ability to use bare NULL as the - // expected parameter to the macro. - ASSERT_EQ(NULL, p); - - // A failure. - static int n = 0; - EXPECT_FATAL_FAILURE(ASSERT_EQ(NULL, &n), - "Value of: &n\n"); -} -#endif // GTEST_CAN_COMPARE_NULL - -// Tests ASSERT_EQ(0, non_pointer). Since the literal 0 can be -// treated as a null pointer by the compiler, we need to make sure -// that ASSERT_EQ(0, non_pointer) isn't interpreted by Google Test as -// ASSERT_EQ(static_cast(NULL), non_pointer). -TEST(ExpectTest, ASSERT_EQ_0) { - int n = 0; - - // A success. - ASSERT_EQ(0, n); - - // A failure. - EXPECT_FATAL_FAILURE(ASSERT_EQ(0, 5.6), - "Expected: 0"); -} - -// Tests ASSERT_NE. -TEST(AssertionTest, ASSERT_NE) { - ASSERT_NE(6, 7); - EXPECT_FATAL_FAILURE(ASSERT_NE('a', 'a'), - "Expected: ('a') != ('a'), " - "actual: 'a' (97, 0x61) vs 'a' (97, 0x61)"); -} - -// Tests ASSERT_LE. -TEST(AssertionTest, ASSERT_LE) { - ASSERT_LE(2, 3); - ASSERT_LE(2, 2); - EXPECT_FATAL_FAILURE(ASSERT_LE(2, 0), - "Expected: (2) <= (0), actual: 2 vs 0"); -} - -// Tests ASSERT_LT. -TEST(AssertionTest, ASSERT_LT) { - ASSERT_LT(2, 3); - EXPECT_FATAL_FAILURE(ASSERT_LT(2, 2), - "Expected: (2) < (2), actual: 2 vs 2"); -} - -// Tests ASSERT_GE. -TEST(AssertionTest, ASSERT_GE) { - ASSERT_GE(2, 1); - ASSERT_GE(2, 2); - EXPECT_FATAL_FAILURE(ASSERT_GE(2, 3), - "Expected: (2) >= (3), actual: 2 vs 3"); -} - -// Tests ASSERT_GT. -TEST(AssertionTest, ASSERT_GT) { - ASSERT_GT(2, 1); - EXPECT_FATAL_FAILURE(ASSERT_GT(2, 2), - "Expected: (2) > (2), actual: 2 vs 2"); -} - -#if GTEST_HAS_EXCEPTIONS - -void ThrowNothing() {} - -// Tests ASSERT_THROW. -TEST(AssertionTest, ASSERT_THROW) { - ASSERT_THROW(ThrowAnInteger(), int); - -#ifndef __BORLANDC__ - // ICE's in C++Builder 2007 and 2009. - EXPECT_FATAL_FAILURE( - ASSERT_THROW(ThrowAnInteger(), bool), - "Expected: ThrowAnInteger() throws an exception of type bool.\n" - " Actual: it throws a different type."); -#endif - - EXPECT_FATAL_FAILURE( - ASSERT_THROW(ThrowNothing(), bool), - "Expected: ThrowNothing() throws an exception of type bool.\n" - " Actual: it throws nothing."); -} - -// Tests ASSERT_NO_THROW. -TEST(AssertionTest, ASSERT_NO_THROW) { - ASSERT_NO_THROW(ThrowNothing()); - EXPECT_FATAL_FAILURE(ASSERT_NO_THROW(ThrowAnInteger()), - "Expected: ThrowAnInteger() doesn't throw an exception." - "\n Actual: it throws."); -} - -// Tests ASSERT_ANY_THROW. -TEST(AssertionTest, ASSERT_ANY_THROW) { - ASSERT_ANY_THROW(ThrowAnInteger()); - EXPECT_FATAL_FAILURE( - ASSERT_ANY_THROW(ThrowNothing()), - "Expected: ThrowNothing() throws an exception.\n" - " Actual: it doesn't."); -} - -#endif // GTEST_HAS_EXCEPTIONS - -// Makes sure we deal with the precedence of <<. This test should -// compile. -TEST(AssertionTest, AssertPrecedence) { - ASSERT_EQ(1 < 2, true); - ASSERT_EQ(true && false, false); -} - -// A subroutine used by the following test. -void TestEq1(int x) { - ASSERT_EQ(1, x); -} - -// Tests calling a test subroutine that's not part of a fixture. -TEST(AssertionTest, NonFixtureSubroutine) { - EXPECT_FATAL_FAILURE(TestEq1(2), - "Value of: x"); -} - -// An uncopyable class. -class Uncopyable { - public: - explicit Uncopyable(int a_value) : value_(a_value) {} - - int value() const { return value_; } - bool operator==(const Uncopyable& rhs) const { - return value() == rhs.value(); - } - private: - // This constructor deliberately has no implementation, as we don't - // want this class to be copyable. - Uncopyable(const Uncopyable&); // NOLINT - - int value_; -}; - -::std::ostream& operator<<(::std::ostream& os, const Uncopyable& value) { - return os << value.value(); -} - - -bool IsPositiveUncopyable(const Uncopyable& x) { - return x.value() > 0; -} - -// A subroutine used by the following test. -void TestAssertNonPositive() { - Uncopyable y(-1); - ASSERT_PRED1(IsPositiveUncopyable, y); -} -// A subroutine used by the following test. -void TestAssertEqualsUncopyable() { - Uncopyable x(5); - Uncopyable y(-1); - ASSERT_EQ(x, y); -} - -// Tests that uncopyable objects can be used in assertions. -TEST(AssertionTest, AssertWorksWithUncopyableObject) { - Uncopyable x(5); - ASSERT_PRED1(IsPositiveUncopyable, x); - ASSERT_EQ(x, x); - EXPECT_FATAL_FAILURE(TestAssertNonPositive(), - "IsPositiveUncopyable(y) evaluates to false, where\ny evaluates to -1"); - EXPECT_FATAL_FAILURE(TestAssertEqualsUncopyable(), - "Value of: y\n Actual: -1\nExpected: x\nWhich is: 5"); -} - -// Tests that uncopyable objects can be used in expects. -TEST(AssertionTest, ExpectWorksWithUncopyableObject) { - Uncopyable x(5); - EXPECT_PRED1(IsPositiveUncopyable, x); - Uncopyable y(-1); - EXPECT_NONFATAL_FAILURE(EXPECT_PRED1(IsPositiveUncopyable, y), - "IsPositiveUncopyable(y) evaluates to false, where\ny evaluates to -1"); - EXPECT_EQ(x, x); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(x, y), - "Value of: y\n Actual: -1\nExpected: x\nWhich is: 5"); -} - - -// The version of gcc used in XCode 2.2 has a bug and doesn't allow -// anonymous enums in assertions. Therefore the following test is not -// done on Mac. -// Sun Studio also rejects this code. -#if !GTEST_OS_MAC && !defined(__SUNPRO_CC) - -// Tests using assertions with anonymous enums. -enum { - CASE_A = -1, -#if GTEST_OS_LINUX - // We want to test the case where the size of the anonymous enum is - // larger than sizeof(int), to make sure our implementation of the - // assertions doesn't truncate the enums. However, MSVC - // (incorrectly) doesn't allow an enum value to exceed the range of - // an int, so this has to be conditionally compiled. - // - // On Linux, CASE_B and CASE_A have the same value when truncated to - // int size. We want to test whether this will confuse the - // assertions. - CASE_B = testing::internal::kMaxBiggestInt, -#else - CASE_B = INT_MAX, -#endif // GTEST_OS_LINUX -}; - -TEST(AssertionTest, AnonymousEnum) { -#if GTEST_OS_LINUX - EXPECT_EQ(static_cast(CASE_A), static_cast(CASE_B)); -#endif // GTEST_OS_LINUX - - EXPECT_EQ(CASE_A, CASE_A); - EXPECT_NE(CASE_A, CASE_B); - EXPECT_LT(CASE_A, CASE_B); - EXPECT_LE(CASE_A, CASE_B); - EXPECT_GT(CASE_B, CASE_A); - EXPECT_GE(CASE_A, CASE_A); - EXPECT_NONFATAL_FAILURE(EXPECT_GE(CASE_A, CASE_B), - "(CASE_A) >= (CASE_B)"); - - ASSERT_EQ(CASE_A, CASE_A); - ASSERT_NE(CASE_A, CASE_B); - ASSERT_LT(CASE_A, CASE_B); - ASSERT_LE(CASE_A, CASE_B); - ASSERT_GT(CASE_B, CASE_A); - ASSERT_GE(CASE_A, CASE_A); - EXPECT_FATAL_FAILURE(ASSERT_EQ(CASE_A, CASE_B), - "Value of: CASE_B"); -} - -#endif // !GTEST_OS_MAC && !defined(__SUNPRO_CC) - -#if GTEST_OS_WINDOWS - -static HRESULT UnexpectedHRESULTFailure() { - return E_UNEXPECTED; -} - -static HRESULT OkHRESULTSuccess() { - return S_OK; -} - -static HRESULT FalseHRESULTSuccess() { - return S_FALSE; -} - -// HRESULT assertion tests test both zero and non-zero -// success codes as well as failure message for each. -// -// Windows CE doesn't support message texts. -TEST(HRESULTAssertionTest, EXPECT_HRESULT_SUCCEEDED) { - EXPECT_HRESULT_SUCCEEDED(S_OK); - EXPECT_HRESULT_SUCCEEDED(S_FALSE); - - EXPECT_NONFATAL_FAILURE(EXPECT_HRESULT_SUCCEEDED(UnexpectedHRESULTFailure()), - "Expected: (UnexpectedHRESULTFailure()) succeeds.\n" - " Actual: 0x8000FFFF"); -} - -TEST(HRESULTAssertionTest, ASSERT_HRESULT_SUCCEEDED) { - ASSERT_HRESULT_SUCCEEDED(S_OK); - ASSERT_HRESULT_SUCCEEDED(S_FALSE); - - EXPECT_FATAL_FAILURE(ASSERT_HRESULT_SUCCEEDED(UnexpectedHRESULTFailure()), - "Expected: (UnexpectedHRESULTFailure()) succeeds.\n" - " Actual: 0x8000FFFF"); -} - -TEST(HRESULTAssertionTest, EXPECT_HRESULT_FAILED) { - EXPECT_HRESULT_FAILED(E_UNEXPECTED); - - EXPECT_NONFATAL_FAILURE(EXPECT_HRESULT_FAILED(OkHRESULTSuccess()), - "Expected: (OkHRESULTSuccess()) fails.\n" - " Actual: 0x00000000"); - EXPECT_NONFATAL_FAILURE(EXPECT_HRESULT_FAILED(FalseHRESULTSuccess()), - "Expected: (FalseHRESULTSuccess()) fails.\n" - " Actual: 0x00000001"); -} - -TEST(HRESULTAssertionTest, ASSERT_HRESULT_FAILED) { - ASSERT_HRESULT_FAILED(E_UNEXPECTED); - -#ifndef __BORLANDC__ - // ICE's in C++Builder 2007 and 2009. - EXPECT_FATAL_FAILURE(ASSERT_HRESULT_FAILED(OkHRESULTSuccess()), - "Expected: (OkHRESULTSuccess()) fails.\n" - " Actual: 0x00000000"); -#endif - EXPECT_FATAL_FAILURE(ASSERT_HRESULT_FAILED(FalseHRESULTSuccess()), - "Expected: (FalseHRESULTSuccess()) fails.\n" - " Actual: 0x00000001"); -} - -// Tests that streaming to the HRESULT macros works. -TEST(HRESULTAssertionTest, Streaming) { - EXPECT_HRESULT_SUCCEEDED(S_OK) << "unexpected failure"; - ASSERT_HRESULT_SUCCEEDED(S_OK) << "unexpected failure"; - EXPECT_HRESULT_FAILED(E_UNEXPECTED) << "unexpected failure"; - ASSERT_HRESULT_FAILED(E_UNEXPECTED) << "unexpected failure"; - - EXPECT_NONFATAL_FAILURE( - EXPECT_HRESULT_SUCCEEDED(E_UNEXPECTED) << "expected failure", - "expected failure"); - -#ifndef __BORLANDC__ - // ICE's in C++Builder 2007 and 2009. - EXPECT_FATAL_FAILURE( - ASSERT_HRESULT_SUCCEEDED(E_UNEXPECTED) << "expected failure", - "expected failure"); -#endif - - EXPECT_NONFATAL_FAILURE( - EXPECT_HRESULT_FAILED(S_OK) << "expected failure", - "expected failure"); - - EXPECT_FATAL_FAILURE( - ASSERT_HRESULT_FAILED(S_OK) << "expected failure", - "expected failure"); -} - -#endif // GTEST_OS_WINDOWS - -#ifdef __BORLANDC__ -// Silences warnings: "Condition is always true", "Unreachable code" -#pragma option push -w-ccc -w-rch -#endif - -// Tests that the assertion macros behave like single statements. -TEST(AssertionSyntaxTest, BasicAssertionsBehavesLikeSingleStatement) { - if (AlwaysFalse()) - ASSERT_TRUE(false) << "This should never be executed; " - "It's a compilation test only."; - - if (AlwaysTrue()) - EXPECT_FALSE(false); - else - ; // NOLINT - - if (AlwaysFalse()) - ASSERT_LT(1, 3); - - if (AlwaysFalse()) - ; // NOLINT - else - EXPECT_GT(3, 2) << ""; -} - -#if GTEST_HAS_EXCEPTIONS -// Tests that the compiler will not complain about unreachable code in the -// EXPECT_THROW/EXPECT_ANY_THROW/EXPECT_NO_THROW macros. -TEST(ExpectThrowTest, DoesNotGenerateUnreachableCodeWarning) { - int n = 0; - - EXPECT_THROW(throw 1, int); - EXPECT_NONFATAL_FAILURE(EXPECT_THROW(n++, int), ""); - EXPECT_NONFATAL_FAILURE(EXPECT_THROW(throw 1, const char*), ""); - EXPECT_NO_THROW(n++); - EXPECT_NONFATAL_FAILURE(EXPECT_NO_THROW(throw 1), ""); - EXPECT_ANY_THROW(throw 1); - EXPECT_NONFATAL_FAILURE(EXPECT_ANY_THROW(n++), ""); -} - -TEST(AssertionSyntaxTest, ExceptionAssertionsBehavesLikeSingleStatement) { - if (AlwaysFalse()) - EXPECT_THROW(ThrowNothing(), bool); - - if (AlwaysTrue()) - EXPECT_THROW(ThrowAnInteger(), int); - else - ; // NOLINT - - if (AlwaysFalse()) - EXPECT_NO_THROW(ThrowAnInteger()); - - if (AlwaysTrue()) - EXPECT_NO_THROW(ThrowNothing()); - else - ; // NOLINT - - if (AlwaysFalse()) - EXPECT_ANY_THROW(ThrowNothing()); - - if (AlwaysTrue()) - EXPECT_ANY_THROW(ThrowAnInteger()); - else - ; // NOLINT -} -#endif // GTEST_HAS_EXCEPTIONS - -TEST(AssertionSyntaxTest, NoFatalFailureAssertionsBehavesLikeSingleStatement) { - if (AlwaysFalse()) - EXPECT_NO_FATAL_FAILURE(FAIL()) << "This should never be executed. " - << "It's a compilation test only."; - else - ; // NOLINT - - if (AlwaysFalse()) - ASSERT_NO_FATAL_FAILURE(FAIL()) << ""; - else - ; // NOLINT - - if (AlwaysTrue()) - EXPECT_NO_FATAL_FAILURE(SUCCEED()); - else - ; // NOLINT - - if (AlwaysFalse()) - ; // NOLINT - else - ASSERT_NO_FATAL_FAILURE(SUCCEED()); -} - -// Tests that the assertion macros work well with switch statements. -TEST(AssertionSyntaxTest, WorksWithSwitch) { - switch (0) { - case 1: - break; - default: - ASSERT_TRUE(true); - } - - switch (0) - case 0: - EXPECT_FALSE(false) << "EXPECT_FALSE failed in switch case"; - - // Binary assertions are implemented using a different code path - // than the Boolean assertions. Hence we test them separately. - switch (0) { - case 1: - default: - ASSERT_EQ(1, 1) << "ASSERT_EQ failed in default switch handler"; - } - - switch (0) - case 0: - EXPECT_NE(1, 2); -} - -#if GTEST_HAS_EXCEPTIONS - -void ThrowAString() { - throw "String"; -} - -// Test that the exception assertion macros compile and work with const -// type qualifier. -TEST(AssertionSyntaxTest, WorksWithConst) { - ASSERT_THROW(ThrowAString(), const char*); - - EXPECT_THROW(ThrowAString(), const char*); -} - -#endif // GTEST_HAS_EXCEPTIONS - -} // namespace - -namespace testing { - -// Tests that Google Test tracks SUCCEED*. -TEST(SuccessfulAssertionTest, SUCCEED) { - SUCCEED(); - SUCCEED() << "OK"; - EXPECT_EQ(2, GetUnitTestImpl()->current_test_result()->total_part_count()); -} - -// Tests that Google Test doesn't track successful EXPECT_*. -TEST(SuccessfulAssertionTest, EXPECT) { - EXPECT_TRUE(true); - EXPECT_EQ(0, GetUnitTestImpl()->current_test_result()->total_part_count()); -} - -// Tests that Google Test doesn't track successful EXPECT_STR*. -TEST(SuccessfulAssertionTest, EXPECT_STR) { - EXPECT_STREQ("", ""); - EXPECT_EQ(0, GetUnitTestImpl()->current_test_result()->total_part_count()); -} - -// Tests that Google Test doesn't track successful ASSERT_*. -TEST(SuccessfulAssertionTest, ASSERT) { - ASSERT_TRUE(true); - EXPECT_EQ(0, GetUnitTestImpl()->current_test_result()->total_part_count()); -} - -// Tests that Google Test doesn't track successful ASSERT_STR*. -TEST(SuccessfulAssertionTest, ASSERT_STR) { - ASSERT_STREQ("", ""); - EXPECT_EQ(0, GetUnitTestImpl()->current_test_result()->total_part_count()); -} - -} // namespace testing - -namespace { - -// Tests EXPECT_TRUE. -TEST(ExpectTest, EXPECT_TRUE) { - EXPECT_TRUE(2 > 1); // NOLINT - EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(2 < 1), - "Value of: 2 < 1\n" - " Actual: false\n" - "Expected: true"); - EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(2 > 3), - "2 > 3"); -} - -// Tests EXPECT_TRUE(predicate) for predicates returning AssertionResult. -TEST(ExpectTest, ExpectTrueWithAssertionResult) { - EXPECT_TRUE(ResultIsEven(2)); - EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(ResultIsEven(3)), - "Value of: ResultIsEven(3)\n" - " Actual: false (3 is odd)\n" - "Expected: true"); - EXPECT_TRUE(ResultIsEvenNoExplanation(2)); - EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(ResultIsEvenNoExplanation(3)), - "Value of: ResultIsEvenNoExplanation(3)\n" - " Actual: false (3 is odd)\n" - "Expected: true"); -} - -// Tests EXPECT_FALSE. -TEST(ExpectTest, EXPECT_FALSE) { - EXPECT_FALSE(2 < 1); // NOLINT - EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(2 > 1), - "Value of: 2 > 1\n" - " Actual: true\n" - "Expected: false"); - EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(2 < 3), - "2 < 3"); -} - -// Tests EXPECT_FALSE(predicate) for predicates returning AssertionResult. -TEST(ExpectTest, ExpectFalseWithAssertionResult) { - EXPECT_FALSE(ResultIsEven(3)); - EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(ResultIsEven(2)), - "Value of: ResultIsEven(2)\n" - " Actual: true (2 is even)\n" - "Expected: false"); - EXPECT_FALSE(ResultIsEvenNoExplanation(3)); - EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(ResultIsEvenNoExplanation(2)), - "Value of: ResultIsEvenNoExplanation(2)\n" - " Actual: true\n" - "Expected: false"); -} - -#ifdef __BORLANDC__ -// Restores warnings after previous "#pragma option push" supressed them -#pragma option pop -#endif - -// Tests EXPECT_EQ. -TEST(ExpectTest, EXPECT_EQ) { - EXPECT_EQ(5, 2 + 3); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(5, 2*3), - "Value of: 2*3\n" - " Actual: 6\n" - "Expected: 5"); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(5, 2 - 3), - "2 - 3"); -} - -// Tests using EXPECT_EQ on double values. The purpose is to make -// sure that the specialization we did for integer and anonymous enums -// isn't used for double arguments. -TEST(ExpectTest, EXPECT_EQ_Double) { - // A success. - EXPECT_EQ(5.6, 5.6); - - // A failure. - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(5.1, 5.2), - "5.1"); -} - -#if GTEST_CAN_COMPARE_NULL -// Tests EXPECT_EQ(NULL, pointer). -TEST(ExpectTest, EXPECT_EQ_NULL) { - // A success. - const char* p = NULL; - // Some older GCC versions may issue a spurious waring in this or the next - // assertion statement. This warning should not be suppressed with - // static_cast since the test verifies the ability to use bare NULL as the - // expected parameter to the macro. - EXPECT_EQ(NULL, p); - - // A failure. - int n = 0; - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(NULL, &n), - "Value of: &n\n"); -} -#endif // GTEST_CAN_COMPARE_NULL - -// Tests EXPECT_EQ(0, non_pointer). Since the literal 0 can be -// treated as a null pointer by the compiler, we need to make sure -// that EXPECT_EQ(0, non_pointer) isn't interpreted by Google Test as -// EXPECT_EQ(static_cast(NULL), non_pointer). -TEST(ExpectTest, EXPECT_EQ_0) { - int n = 0; - - // A success. - EXPECT_EQ(0, n); - - // A failure. - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(0, 5.6), - "Expected: 0"); -} - -// Tests EXPECT_NE. -TEST(ExpectTest, EXPECT_NE) { - EXPECT_NE(6, 7); - - EXPECT_NONFATAL_FAILURE(EXPECT_NE('a', 'a'), - "Expected: ('a') != ('a'), " - "actual: 'a' (97, 0x61) vs 'a' (97, 0x61)"); - EXPECT_NONFATAL_FAILURE(EXPECT_NE(2, 2), - "2"); - char* const p0 = NULL; - EXPECT_NONFATAL_FAILURE(EXPECT_NE(p0, p0), - "p0"); - // Only way to get the Nokia compiler to compile the cast - // is to have a separate void* variable first. Putting - // the two casts on the same line doesn't work, neither does - // a direct C-style to char*. - void* pv1 = (void*)0x1234; // NOLINT - char* const p1 = reinterpret_cast(pv1); - EXPECT_NONFATAL_FAILURE(EXPECT_NE(p1, p1), - "p1"); -} - -// Tests EXPECT_LE. -TEST(ExpectTest, EXPECT_LE) { - EXPECT_LE(2, 3); - EXPECT_LE(2, 2); - EXPECT_NONFATAL_FAILURE(EXPECT_LE(2, 0), - "Expected: (2) <= (0), actual: 2 vs 0"); - EXPECT_NONFATAL_FAILURE(EXPECT_LE(1.1, 0.9), - "(1.1) <= (0.9)"); -} - -// Tests EXPECT_LT. -TEST(ExpectTest, EXPECT_LT) { - EXPECT_LT(2, 3); - EXPECT_NONFATAL_FAILURE(EXPECT_LT(2, 2), - "Expected: (2) < (2), actual: 2 vs 2"); - EXPECT_NONFATAL_FAILURE(EXPECT_LT(2, 1), - "(2) < (1)"); -} - -// Tests EXPECT_GE. -TEST(ExpectTest, EXPECT_GE) { - EXPECT_GE(2, 1); - EXPECT_GE(2, 2); - EXPECT_NONFATAL_FAILURE(EXPECT_GE(2, 3), - "Expected: (2) >= (3), actual: 2 vs 3"); - EXPECT_NONFATAL_FAILURE(EXPECT_GE(0.9, 1.1), - "(0.9) >= (1.1)"); -} - -// Tests EXPECT_GT. -TEST(ExpectTest, EXPECT_GT) { - EXPECT_GT(2, 1); - EXPECT_NONFATAL_FAILURE(EXPECT_GT(2, 2), - "Expected: (2) > (2), actual: 2 vs 2"); - EXPECT_NONFATAL_FAILURE(EXPECT_GT(2, 3), - "(2) > (3)"); -} - -#if GTEST_HAS_EXCEPTIONS - -// Tests EXPECT_THROW. -TEST(ExpectTest, EXPECT_THROW) { - EXPECT_THROW(ThrowAnInteger(), int); - EXPECT_NONFATAL_FAILURE(EXPECT_THROW(ThrowAnInteger(), bool), - "Expected: ThrowAnInteger() throws an exception of " - "type bool.\n Actual: it throws a different type."); - EXPECT_NONFATAL_FAILURE( - EXPECT_THROW(ThrowNothing(), bool), - "Expected: ThrowNothing() throws an exception of type bool.\n" - " Actual: it throws nothing."); -} - -// Tests EXPECT_NO_THROW. -TEST(ExpectTest, EXPECT_NO_THROW) { - EXPECT_NO_THROW(ThrowNothing()); - EXPECT_NONFATAL_FAILURE(EXPECT_NO_THROW(ThrowAnInteger()), - "Expected: ThrowAnInteger() doesn't throw an " - "exception.\n Actual: it throws."); -} - -// Tests EXPECT_ANY_THROW. -TEST(ExpectTest, EXPECT_ANY_THROW) { - EXPECT_ANY_THROW(ThrowAnInteger()); - EXPECT_NONFATAL_FAILURE( - EXPECT_ANY_THROW(ThrowNothing()), - "Expected: ThrowNothing() throws an exception.\n" - " Actual: it doesn't."); -} - -#endif // GTEST_HAS_EXCEPTIONS - -// Make sure we deal with the precedence of <<. -TEST(ExpectTest, ExpectPrecedence) { - EXPECT_EQ(1 < 2, true); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(true, true && false), - "Value of: true && false"); -} - - -// Tests the StreamableToString() function. - -// Tests using StreamableToString() on a scalar. -TEST(StreamableToStringTest, Scalar) { - EXPECT_STREQ("5", StreamableToString(5).c_str()); -} - -// Tests using StreamableToString() on a non-char pointer. -TEST(StreamableToStringTest, Pointer) { - int n = 0; - int* p = &n; - EXPECT_STRNE("(null)", StreamableToString(p).c_str()); -} - -// Tests using StreamableToString() on a NULL non-char pointer. -TEST(StreamableToStringTest, NullPointer) { - int* p = NULL; - EXPECT_STREQ("(null)", StreamableToString(p).c_str()); -} - -// Tests using StreamableToString() on a C string. -TEST(StreamableToStringTest, CString) { - EXPECT_STREQ("Foo", StreamableToString("Foo").c_str()); -} - -// Tests using StreamableToString() on a NULL C string. -TEST(StreamableToStringTest, NullCString) { - char* p = NULL; - EXPECT_STREQ("(null)", StreamableToString(p).c_str()); -} - -// Tests using streamable values as assertion messages. - -// Tests using std::string as an assertion message. -TEST(StreamableTest, string) { - static const std::string str( - "This failure message is a std::string, and is expected."); - EXPECT_FATAL_FAILURE(FAIL() << str, - str.c_str()); -} - -// Tests that we can output strings containing embedded NULs. -// Limited to Linux because we can only do this with std::string's. -TEST(StreamableTest, stringWithEmbeddedNUL) { - static const char char_array_with_nul[] = - "Here's a NUL\0 and some more string"; - static const std::string string_with_nul(char_array_with_nul, - sizeof(char_array_with_nul) - - 1); // drops the trailing NUL - EXPECT_FATAL_FAILURE(FAIL() << string_with_nul, - "Here's a NUL\\0 and some more string"); -} - -// Tests that we can output a NUL char. -TEST(StreamableTest, NULChar) { - EXPECT_FATAL_FAILURE({ // NOLINT - FAIL() << "A NUL" << '\0' << " and some more string"; - }, "A NUL\\0 and some more string"); -} - -// Tests using int as an assertion message. -TEST(StreamableTest, int) { - EXPECT_FATAL_FAILURE(FAIL() << 900913, - "900913"); -} - -// Tests using NULL char pointer as an assertion message. -// -// In MSVC, streaming a NULL char * causes access violation. Google Test -// implemented a workaround (substituting "(null)" for NULL). This -// tests whether the workaround works. -TEST(StreamableTest, NullCharPtr) { - EXPECT_FATAL_FAILURE(FAIL() << static_cast(NULL), - "(null)"); -} - -// Tests that basic IO manipulators (endl, ends, and flush) can be -// streamed to testing::Message. -TEST(StreamableTest, BasicIoManip) { - EXPECT_FATAL_FAILURE({ // NOLINT - FAIL() << "Line 1." << std::endl - << "A NUL char " << std::ends << std::flush << " in line 2."; - }, "Line 1.\nA NUL char \\0 in line 2."); -} - -// Tests the macros that haven't been covered so far. - -void AddFailureHelper(bool* aborted) { - *aborted = true; - ADD_FAILURE() << "Failure"; - *aborted = false; -} - -// Tests ADD_FAILURE. -TEST(MacroTest, ADD_FAILURE) { - bool aborted = true; - EXPECT_NONFATAL_FAILURE(AddFailureHelper(&aborted), - "Failure"); - EXPECT_FALSE(aborted); -} - -// Tests FAIL. -TEST(MacroTest, FAIL) { - EXPECT_FATAL_FAILURE(FAIL(), - "Failed"); - EXPECT_FATAL_FAILURE(FAIL() << "Intentional failure.", - "Intentional failure."); -} - -// Tests SUCCEED -TEST(MacroTest, SUCCEED) { - SUCCEED(); - SUCCEED() << "Explicit success."; -} - - -// Tests for EXPECT_EQ() and ASSERT_EQ(). -// -// These tests fail *intentionally*, s.t. the failure messages can be -// generated and tested. -// -// We have different tests for different argument types. - -// Tests using bool values in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, Bool) { - EXPECT_EQ(true, true); - EXPECT_FATAL_FAILURE(ASSERT_EQ(false, true), - "Value of: true"); -} - -// Tests using int values in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, Int) { - ASSERT_EQ(32, 32); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(32, 33), - "33"); -} - -// Tests using time_t values in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, Time_T) { - EXPECT_EQ(static_cast(0), - static_cast(0)); - EXPECT_FATAL_FAILURE(ASSERT_EQ(static_cast(0), - static_cast(1234)), - "1234"); -} - -// Tests using char values in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, Char) { - ASSERT_EQ('z', 'z'); - const char ch = 'b'; - EXPECT_NONFATAL_FAILURE(EXPECT_EQ('\0', ch), - "ch"); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ('a', ch), - "ch"); -} - -// Tests using wchar_t values in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, WideChar) { - EXPECT_EQ(L'b', L'b'); - - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(L'\0', L'x'), - "Value of: L'x'\n" - " Actual: L'x' (120, 0x78)\n" - "Expected: L'\0'\n" - "Which is: L'\0' (0, 0x0)"); - - static wchar_t wchar; - wchar = L'b'; - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(L'a', wchar), - "wchar"); - wchar = L'\x8119'; - EXPECT_FATAL_FAILURE(ASSERT_EQ(L'\x8120', wchar), - "Value of: wchar"); -} - -// Tests using ::std::string values in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, StdString) { - // Compares a const char* to an std::string that has identical - // content. - ASSERT_EQ("Test", ::std::string("Test")); - - // Compares two identical std::strings. - static const ::std::string str1("A * in the middle"); - static const ::std::string str2(str1); - EXPECT_EQ(str1, str2); - - // Compares a const char* to an std::string that has different - // content - EXPECT_NONFATAL_FAILURE(EXPECT_EQ("Test", ::std::string("test")), - "::std::string(\"test\")"); - - // Compares an std::string to a char* that has different content. - char* const p1 = const_cast("foo"); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(::std::string("bar"), p1), - "p1"); - - // Compares two std::strings that have different contents, one of - // which having a NUL character in the middle. This should fail. - static ::std::string str3(str1); - str3.at(2) = '\0'; - EXPECT_FATAL_FAILURE(ASSERT_EQ(str1, str3), - "Value of: str3\n" - " Actual: \"A \\0 in the middle\""); -} - -#if GTEST_HAS_STD_WSTRING - -// Tests using ::std::wstring values in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, StdWideString) { - // Compares an std::wstring to a const wchar_t* that has identical - // content. - EXPECT_EQ(::std::wstring(L"Test\x8119"), L"Test\x8119"); - - // Compares two identical std::wstrings. - const ::std::wstring wstr1(L"A * in the middle"); - const ::std::wstring wstr2(wstr1); - ASSERT_EQ(wstr1, wstr2); - - // Compares an std::wstring to a const wchar_t* that has different - // content. - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_EQ(::std::wstring(L"Test\x8119"), L"Test\x8120"); - }, "L\"Test\\x8120\""); - - // Compares two std::wstrings that have different contents, one of - // which having a NUL character in the middle. - ::std::wstring wstr3(wstr1); - wstr3.at(2) = L'\0'; - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(wstr1, wstr3), - "wstr3"); - - // Compares a wchar_t* to an std::wstring that has different - // content. - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_EQ(const_cast(L"foo"), ::std::wstring(L"bar")); - }, ""); -} - -#endif // GTEST_HAS_STD_WSTRING - -#if GTEST_HAS_GLOBAL_STRING -// Tests using ::string values in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, GlobalString) { - // Compares a const char* to a ::string that has identical content. - EXPECT_EQ("Test", ::string("Test")); - - // Compares two identical ::strings. - const ::string str1("A * in the middle"); - const ::string str2(str1); - ASSERT_EQ(str1, str2); - - // Compares a ::string to a const char* that has different content. - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(::string("Test"), "test"), - "test"); - - // Compares two ::strings that have different contents, one of which - // having a NUL character in the middle. - ::string str3(str1); - str3.at(2) = '\0'; - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(str1, str3), - "str3"); - - // Compares a ::string to a char* that has different content. - EXPECT_FATAL_FAILURE({ // NOLINT - ASSERT_EQ(::string("bar"), const_cast("foo")); - }, ""); -} - -#endif // GTEST_HAS_GLOBAL_STRING - -#if GTEST_HAS_GLOBAL_WSTRING - -// Tests using ::wstring values in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, GlobalWideString) { - // Compares a const wchar_t* to a ::wstring that has identical content. - ASSERT_EQ(L"Test\x8119", ::wstring(L"Test\x8119")); - - // Compares two identical ::wstrings. - static const ::wstring wstr1(L"A * in the middle"); - static const ::wstring wstr2(wstr1); - EXPECT_EQ(wstr1, wstr2); - - // Compares a const wchar_t* to a ::wstring that has different - // content. - EXPECT_NONFATAL_FAILURE({ // NOLINT - EXPECT_EQ(L"Test\x8120", ::wstring(L"Test\x8119")); - }, "Test\\x8119"); - - // Compares a wchar_t* to a ::wstring that has different content. - wchar_t* const p1 = const_cast(L"foo"); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p1, ::wstring(L"bar")), - "bar"); - - // Compares two ::wstrings that have different contents, one of which - // having a NUL character in the middle. - static ::wstring wstr3; - wstr3 = wstr1; - wstr3.at(2) = L'\0'; - EXPECT_FATAL_FAILURE(ASSERT_EQ(wstr1, wstr3), - "wstr3"); -} - -#endif // GTEST_HAS_GLOBAL_WSTRING - -// Tests using char pointers in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, CharPointer) { - char* const p0 = NULL; - // Only way to get the Nokia compiler to compile the cast - // is to have a separate void* variable first. Putting - // the two casts on the same line doesn't work, neither does - // a direct C-style to char*. - void* pv1 = (void*)0x1234; // NOLINT - void* pv2 = (void*)0xABC0; // NOLINT - char* const p1 = reinterpret_cast(pv1); - char* const p2 = reinterpret_cast(pv2); - ASSERT_EQ(p1, p1); - - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p0, p2), - "Value of: p2"); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p1, p2), - "p2"); - EXPECT_FATAL_FAILURE(ASSERT_EQ(reinterpret_cast(0x1234), - reinterpret_cast(0xABC0)), - "ABC0"); -} - -// Tests using wchar_t pointers in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, WideCharPointer) { - wchar_t* const p0 = NULL; - // Only way to get the Nokia compiler to compile the cast - // is to have a separate void* variable first. Putting - // the two casts on the same line doesn't work, neither does - // a direct C-style to char*. - void* pv1 = (void*)0x1234; // NOLINT - void* pv2 = (void*)0xABC0; // NOLINT - wchar_t* const p1 = reinterpret_cast(pv1); - wchar_t* const p2 = reinterpret_cast(pv2); - EXPECT_EQ(p0, p0); - - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p0, p2), - "Value of: p2"); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p1, p2), - "p2"); - void* pv3 = (void*)0x1234; // NOLINT - void* pv4 = (void*)0xABC0; // NOLINT - const wchar_t* p3 = reinterpret_cast(pv3); - const wchar_t* p4 = reinterpret_cast(pv4); - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(p3, p4), - "p4"); -} - -// Tests using other types of pointers in {EXPECT|ASSERT}_EQ. -TEST(EqAssertionTest, OtherPointer) { - ASSERT_EQ(static_cast(NULL), - static_cast(NULL)); - EXPECT_FATAL_FAILURE(ASSERT_EQ(static_cast(NULL), - reinterpret_cast(0x1234)), - "0x1234"); -} - -// Tests the FRIEND_TEST macro. - -// This class has a private member we want to test. We will test it -// both in a TEST and in a TEST_F. -class Foo { - public: - Foo() {} - - private: - int Bar() const { return 1; } - - // Declares the friend tests that can access the private member - // Bar(). - FRIEND_TEST(FRIEND_TEST_Test, TEST); - FRIEND_TEST(FRIEND_TEST_Test2, TEST_F); -}; - -// Tests that the FRIEND_TEST declaration allows a TEST to access a -// class's private members. This should compile. -TEST(FRIEND_TEST_Test, TEST) { - ASSERT_EQ(1, Foo().Bar()); -} - -// The fixture needed to test using FRIEND_TEST with TEST_F. -class FRIEND_TEST_Test2 : public Test { - protected: - Foo foo; -}; - -// Tests that the FRIEND_TEST declaration allows a TEST_F to access a -// class's private members. This should compile. -TEST_F(FRIEND_TEST_Test2, TEST_F) { - ASSERT_EQ(1, foo.Bar()); -} - -// Tests the life cycle of Test objects. - -// The test fixture for testing the life cycle of Test objects. -// -// This class counts the number of live test objects that uses this -// fixture. -class TestLifeCycleTest : public Test { - protected: - // Constructor. Increments the number of test objects that uses - // this fixture. - TestLifeCycleTest() { count_++; } - - // Destructor. Decrements the number of test objects that uses this - // fixture. - ~TestLifeCycleTest() { count_--; } - - // Returns the number of live test objects that uses this fixture. - int count() const { return count_; } - - private: - static int count_; -}; - -int TestLifeCycleTest::count_ = 0; - -// Tests the life cycle of test objects. -TEST_F(TestLifeCycleTest, Test1) { - // There should be only one test object in this test case that's - // currently alive. - ASSERT_EQ(1, count()); -} - -// Tests the life cycle of test objects. -TEST_F(TestLifeCycleTest, Test2) { - // After Test1 is done and Test2 is started, there should still be - // only one live test object, as the object for Test1 should've been - // deleted. - ASSERT_EQ(1, count()); -} - -} // namespace - -// Tests that the copy constructor works when it is NOT optimized away by -// the compiler. -TEST(AssertionResultTest, CopyConstructorWorksWhenNotOptimied) { - // Checks that the copy constructor doesn't try to dereference NULL pointers - // in the source object. - AssertionResult r1 = AssertionSuccess(); - AssertionResult r2 = r1; - // The following line is added to prevent the compiler from optimizing - // away the constructor call. - r1 << "abc"; - - AssertionResult r3 = r1; - EXPECT_EQ(static_cast(r3), static_cast(r1)); - EXPECT_STREQ("abc", r1.message()); -} - -// Tests that AssertionSuccess and AssertionFailure construct -// AssertionResult objects as expected. -TEST(AssertionResultTest, ConstructionWorks) { - AssertionResult r1 = AssertionSuccess(); - EXPECT_TRUE(r1); - EXPECT_STREQ("", r1.message()); - - AssertionResult r2 = AssertionSuccess() << "abc"; - EXPECT_TRUE(r2); - EXPECT_STREQ("abc", r2.message()); - - AssertionResult r3 = AssertionFailure(); - EXPECT_FALSE(r3); - EXPECT_STREQ("", r3.message()); - - AssertionResult r4 = AssertionFailure() << "def"; - EXPECT_FALSE(r4); - EXPECT_STREQ("def", r4.message()); - - AssertionResult r5 = AssertionFailure(Message() << "ghi"); - EXPECT_FALSE(r5); - EXPECT_STREQ("ghi", r5.message()); -} - -// Tests that the negation fips the predicate result but keeps the message. -TEST(AssertionResultTest, NegationWorks) { - AssertionResult r1 = AssertionSuccess() << "abc"; - EXPECT_FALSE(!r1); - EXPECT_STREQ("abc", (!r1).message()); - - AssertionResult r2 = AssertionFailure() << "def"; - EXPECT_TRUE(!r2); - EXPECT_STREQ("def", (!r2).message()); -} - -TEST(AssertionResultTest, StreamingWorks) { - AssertionResult r = AssertionSuccess(); - r << "abc" << 'd' << 0 << true; - EXPECT_STREQ("abcd0true", r.message()); -} - -// Tests streaming a user type whose definition and operator << are -// both in the global namespace. -class Base { - public: - explicit Base(int an_x) : x_(an_x) {} - int x() const { return x_; } - private: - int x_; -}; -std::ostream& operator<<(std::ostream& os, - const Base& val) { - return os << val.x(); -} -std::ostream& operator<<(std::ostream& os, - const Base* pointer) { - return os << "(" << pointer->x() << ")"; -} - -TEST(MessageTest, CanStreamUserTypeInGlobalNameSpace) { - Message msg; - Base a(1); - - msg << a << &a; // Uses ::operator<<. - EXPECT_STREQ("1(1)", msg.GetString().c_str()); -} - -// Tests streaming a user type whose definition and operator<< are -// both in an unnamed namespace. -namespace { -class MyTypeInUnnamedNameSpace : public Base { - public: - explicit MyTypeInUnnamedNameSpace(int an_x): Base(an_x) {} -}; -std::ostream& operator<<(std::ostream& os, - const MyTypeInUnnamedNameSpace& val) { - return os << val.x(); -} -std::ostream& operator<<(std::ostream& os, - const MyTypeInUnnamedNameSpace* pointer) { - return os << "(" << pointer->x() << ")"; -} -} // namespace - -TEST(MessageTest, CanStreamUserTypeInUnnamedNameSpace) { - Message msg; - MyTypeInUnnamedNameSpace a(1); - - msg << a << &a; // Uses ::operator<<. - EXPECT_STREQ("1(1)", msg.GetString().c_str()); -} - -// Tests streaming a user type whose definition and operator<< are -// both in a user namespace. -namespace namespace1 { -class MyTypeInNameSpace1 : public Base { - public: - explicit MyTypeInNameSpace1(int an_x): Base(an_x) {} -}; -std::ostream& operator<<(std::ostream& os, - const MyTypeInNameSpace1& val) { - return os << val.x(); -} -std::ostream& operator<<(std::ostream& os, - const MyTypeInNameSpace1* pointer) { - return os << "(" << pointer->x() << ")"; -} -} // namespace namespace1 - -TEST(MessageTest, CanStreamUserTypeInUserNameSpace) { - Message msg; - namespace1::MyTypeInNameSpace1 a(1); - - msg << a << &a; // Uses namespace1::operator<<. - EXPECT_STREQ("1(1)", msg.GetString().c_str()); -} - -// Tests streaming a user type whose definition is in a user namespace -// but whose operator<< is in the global namespace. -namespace namespace2 { -class MyTypeInNameSpace2 : public ::Base { - public: - explicit MyTypeInNameSpace2(int an_x): Base(an_x) {} -}; -} // namespace namespace2 -std::ostream& operator<<(std::ostream& os, - const namespace2::MyTypeInNameSpace2& val) { - return os << val.x(); -} -std::ostream& operator<<(std::ostream& os, - const namespace2::MyTypeInNameSpace2* pointer) { - return os << "(" << pointer->x() << ")"; -} - -TEST(MessageTest, CanStreamUserTypeInUserNameSpaceWithStreamOperatorInGlobal) { - Message msg; - namespace2::MyTypeInNameSpace2 a(1); - - msg << a << &a; // Uses ::operator<<. - EXPECT_STREQ("1(1)", msg.GetString().c_str()); -} - -// Tests streaming NULL pointers to testing::Message. -TEST(MessageTest, NullPointers) { - Message msg; - char* const p1 = NULL; - unsigned char* const p2 = NULL; - int* p3 = NULL; - double* p4 = NULL; - bool* p5 = NULL; - Message* p6 = NULL; - - msg << p1 << p2 << p3 << p4 << p5 << p6; - ASSERT_STREQ("(null)(null)(null)(null)(null)(null)", - msg.GetString().c_str()); -} - -// Tests streaming wide strings to testing::Message. -TEST(MessageTest, WideStrings) { - // Streams a NULL of type const wchar_t*. - const wchar_t* const_wstr = NULL; - EXPECT_STREQ("(null)", - (Message() << const_wstr).GetString().c_str()); - - // Streams a NULL of type wchar_t*. - wchar_t* wstr = NULL; - EXPECT_STREQ("(null)", - (Message() << wstr).GetString().c_str()); - - // Streams a non-NULL of type const wchar_t*. - const_wstr = L"abc\x8119"; - EXPECT_STREQ("abc\xe8\x84\x99", - (Message() << const_wstr).GetString().c_str()); - - // Streams a non-NULL of type wchar_t*. - wstr = const_cast(const_wstr); - EXPECT_STREQ("abc\xe8\x84\x99", - (Message() << wstr).GetString().c_str()); -} - - -// This line tests that we can define tests in the testing namespace. -namespace testing { - -// Tests the TestInfo class. - -class TestInfoTest : public Test { - protected: - static const TestInfo* GetTestInfo(const char* test_name) { - const TestCase* const test_case = GetUnitTestImpl()-> - GetTestCase("TestInfoTest", "", NULL, NULL); - - for (int i = 0; i < test_case->total_test_count(); ++i) { - const TestInfo* const test_info = test_case->GetTestInfo(i); - if (strcmp(test_name, test_info->name()) == 0) - return test_info; - } - return NULL; - } - - static const TestResult* GetTestResult( - const TestInfo* test_info) { - return test_info->result(); - } -}; - -// Tests TestInfo::test_case_name() and TestInfo::name(). -TEST_F(TestInfoTest, Names) { - const TestInfo* const test_info = GetTestInfo("Names"); - - ASSERT_STREQ("TestInfoTest", test_info->test_case_name()); - ASSERT_STREQ("Names", test_info->name()); -} - -// Tests TestInfo::result(). -TEST_F(TestInfoTest, result) { - const TestInfo* const test_info = GetTestInfo("result"); - - // Initially, there is no TestPartResult for this test. - ASSERT_EQ(0, GetTestResult(test_info)->total_part_count()); - - // After the previous assertion, there is still none. - ASSERT_EQ(0, GetTestResult(test_info)->total_part_count()); -} - -// Tests setting up and tearing down a test case. - -class SetUpTestCaseTest : public Test { - protected: - // This will be called once before the first test in this test case - // is run. - static void SetUpTestCase() { - printf("Setting up the test case . . .\n"); - - // Initializes some shared resource. In this simple example, we - // just create a C string. More complex stuff can be done if - // desired. - shared_resource_ = "123"; - - // Increments the number of test cases that have been set up. - counter_++; - - // SetUpTestCase() should be called only once. - EXPECT_EQ(1, counter_); - } - - // This will be called once after the last test in this test case is - // run. - static void TearDownTestCase() { - printf("Tearing down the test case . . .\n"); - - // Decrements the number of test cases that have been set up. - counter_--; - - // TearDownTestCase() should be called only once. - EXPECT_EQ(0, counter_); - - // Cleans up the shared resource. - shared_resource_ = NULL; - } - - // This will be called before each test in this test case. - virtual void SetUp() { - // SetUpTestCase() should be called only once, so counter_ should - // always be 1. - EXPECT_EQ(1, counter_); - } - - // Number of test cases that have been set up. - static int counter_; - - // Some resource to be shared by all tests in this test case. - static const char* shared_resource_; -}; - -int SetUpTestCaseTest::counter_ = 0; -const char* SetUpTestCaseTest::shared_resource_ = NULL; - -// A test that uses the shared resource. -TEST_F(SetUpTestCaseTest, Test1) { - EXPECT_STRNE(NULL, shared_resource_); -} - -// Another test that uses the shared resource. -TEST_F(SetUpTestCaseTest, Test2) { - EXPECT_STREQ("123", shared_resource_); -} - -// The InitGoogleTestTest test case tests testing::InitGoogleTest(). - -// The Flags struct stores a copy of all Google Test flags. -struct Flags { - // Constructs a Flags struct where each flag has its default value. - Flags() : also_run_disabled_tests(false), - break_on_failure(false), - catch_exceptions(false), - death_test_use_fork(false), - filter(""), - list_tests(false), - output(""), - print_time(true), - random_seed(0), - repeat(1), - shuffle(false), - stack_trace_depth(kMaxStackTraceDepth), - throw_on_failure(false) {} - - // Factory methods. - - // Creates a Flags struct where the gtest_also_run_disabled_tests flag has - // the given value. - static Flags AlsoRunDisabledTests(bool also_run_disabled_tests) { - Flags flags; - flags.also_run_disabled_tests = also_run_disabled_tests; - return flags; - } - - // Creates a Flags struct where the gtest_break_on_failure flag has - // the given value. - static Flags BreakOnFailure(bool break_on_failure) { - Flags flags; - flags.break_on_failure = break_on_failure; - return flags; - } - - // Creates a Flags struct where the gtest_catch_exceptions flag has - // the given value. - static Flags CatchExceptions(bool catch_exceptions) { - Flags flags; - flags.catch_exceptions = catch_exceptions; - return flags; - } - - // Creates a Flags struct where the gtest_death_test_use_fork flag has - // the given value. - static Flags DeathTestUseFork(bool death_test_use_fork) { - Flags flags; - flags.death_test_use_fork = death_test_use_fork; - return flags; - } - - // Creates a Flags struct where the gtest_filter flag has the given - // value. - static Flags Filter(const char* filter) { - Flags flags; - flags.filter = filter; - return flags; - } - - // Creates a Flags struct where the gtest_list_tests flag has the - // given value. - static Flags ListTests(bool list_tests) { - Flags flags; - flags.list_tests = list_tests; - return flags; - } - - // Creates a Flags struct where the gtest_output flag has the given - // value. - static Flags Output(const char* output) { - Flags flags; - flags.output = output; - return flags; - } - - // Creates a Flags struct where the gtest_print_time flag has the given - // value. - static Flags PrintTime(bool print_time) { - Flags flags; - flags.print_time = print_time; - return flags; - } - - // Creates a Flags struct where the gtest_random_seed flag has - // the given value. - static Flags RandomSeed(Int32 random_seed) { - Flags flags; - flags.random_seed = random_seed; - return flags; - } - - // Creates a Flags struct where the gtest_repeat flag has the given - // value. - static Flags Repeat(Int32 repeat) { - Flags flags; - flags.repeat = repeat; - return flags; - } - - // Creates a Flags struct where the gtest_shuffle flag has - // the given value. - static Flags Shuffle(bool shuffle) { - Flags flags; - flags.shuffle = shuffle; - return flags; - } - - // Creates a Flags struct where the GTEST_FLAG(stack_trace_depth) flag has - // the given value. - static Flags StackTraceDepth(Int32 stack_trace_depth) { - Flags flags; - flags.stack_trace_depth = stack_trace_depth; - return flags; - } - - // Creates a Flags struct where the gtest_throw_on_failure flag has - // the given value. - static Flags ThrowOnFailure(bool throw_on_failure) { - Flags flags; - flags.throw_on_failure = throw_on_failure; - return flags; - } - - // These fields store the flag values. - bool also_run_disabled_tests; - bool break_on_failure; - bool catch_exceptions; - bool death_test_use_fork; - const char* filter; - bool list_tests; - const char* output; - bool print_time; - Int32 random_seed; - Int32 repeat; - bool shuffle; - Int32 stack_trace_depth; - bool throw_on_failure; -}; - -// Fixture for testing InitGoogleTest(). -class InitGoogleTestTest : public Test { - protected: - // Clears the flags before each test. - virtual void SetUp() { - GTEST_FLAG(also_run_disabled_tests) = false; - GTEST_FLAG(break_on_failure) = false; - GTEST_FLAG(catch_exceptions) = false; - GTEST_FLAG(death_test_use_fork) = false; - GTEST_FLAG(filter) = ""; - GTEST_FLAG(list_tests) = false; - GTEST_FLAG(output) = ""; - GTEST_FLAG(print_time) = true; - GTEST_FLAG(random_seed) = 0; - GTEST_FLAG(repeat) = 1; - GTEST_FLAG(shuffle) = false; - GTEST_FLAG(stack_trace_depth) = kMaxStackTraceDepth; - GTEST_FLAG(throw_on_failure) = false; - } - - // Asserts that two narrow or wide string arrays are equal. - template - static void AssertStringArrayEq(size_t size1, CharType** array1, - size_t size2, CharType** array2) { - ASSERT_EQ(size1, size2) << " Array sizes different."; - - for (size_t i = 0; i != size1; i++) { - ASSERT_STREQ(array1[i], array2[i]) << " where i == " << i; - } - } - - // Verifies that the flag values match the expected values. - static void CheckFlags(const Flags& expected) { - EXPECT_EQ(expected.also_run_disabled_tests, - GTEST_FLAG(also_run_disabled_tests)); - EXPECT_EQ(expected.break_on_failure, GTEST_FLAG(break_on_failure)); - EXPECT_EQ(expected.catch_exceptions, GTEST_FLAG(catch_exceptions)); - EXPECT_EQ(expected.death_test_use_fork, GTEST_FLAG(death_test_use_fork)); - EXPECT_STREQ(expected.filter, GTEST_FLAG(filter).c_str()); - EXPECT_EQ(expected.list_tests, GTEST_FLAG(list_tests)); - EXPECT_STREQ(expected.output, GTEST_FLAG(output).c_str()); - EXPECT_EQ(expected.print_time, GTEST_FLAG(print_time)); - EXPECT_EQ(expected.random_seed, GTEST_FLAG(random_seed)); - EXPECT_EQ(expected.repeat, GTEST_FLAG(repeat)); - EXPECT_EQ(expected.shuffle, GTEST_FLAG(shuffle)); - EXPECT_EQ(expected.throw_on_failure, GTEST_FLAG(throw_on_failure)); - EXPECT_EQ(expected.stack_trace_depth, GTEST_FLAG(stack_trace_depth)); - } - - // Parses a command line (specified by argc1 and argv1), then - // verifies that the flag values are expected and that the - // recognized flags are removed from the command line. - template - static void TestParsingFlags(int argc1, const CharType** argv1, - int argc2, const CharType** argv2, - const Flags& expected, bool should_print_help) { - const bool saved_help_flag = ::testing::internal::g_help_flag; - ::testing::internal::g_help_flag = false; - -#if GTEST_HAS_STREAM_REDIRECTION_ - CaptureStdout(); -#endif // GTEST_HAS_STREAM_REDIRECTION_ - - // Parses the command line. - internal::ParseGoogleTestFlagsOnly(&argc1, const_cast(argv1)); - -#if GTEST_HAS_STREAM_REDIRECTION_ - const String captured_stdout = GetCapturedStdout(); -#endif // GTEST_HAS_STREAM_REDIRECTION_ - - // Verifies the flag values. - CheckFlags(expected); - - // Verifies that the recognized flags are removed from the command - // line. - AssertStringArrayEq(argc1 + 1, argv1, argc2 + 1, argv2); - - // ParseGoogleTestFlagsOnly should neither set g_help_flag nor print the - // help message for the flags it recognizes. - EXPECT_EQ(should_print_help, ::testing::internal::g_help_flag); - -#if GTEST_HAS_STREAM_REDIRECTION_ - const char* const expected_help_fragment = - "This program contains tests written using"; - if (should_print_help) { - EXPECT_PRED_FORMAT2(IsSubstring, expected_help_fragment, captured_stdout); - } else { - EXPECT_PRED_FORMAT2(IsNotSubstring, - expected_help_fragment, captured_stdout); - } -#endif // GTEST_HAS_STREAM_REDIRECTION_ - - ::testing::internal::g_help_flag = saved_help_flag; - } - - // This macro wraps TestParsingFlags s.t. the user doesn't need - // to specify the array sizes. -#define GTEST_TEST_PARSING_FLAGS_(argv1, argv2, expected, should_print_help) \ - TestParsingFlags(sizeof(argv1)/sizeof(*argv1) - 1, argv1, \ - sizeof(argv2)/sizeof(*argv2) - 1, argv2, \ - expected, should_print_help) -}; - -// Tests parsing an empty command line. -TEST_F(InitGoogleTestTest, Empty) { - const char* argv[] = { - NULL - }; - - const char* argv2[] = { - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags(), false); -} - -// Tests parsing a command line that has no flag. -TEST_F(InitGoogleTestTest, NoFlag) { - const char* argv[] = { - "foo.exe", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags(), false); -} - -// Tests parsing a bad --gtest_filter flag. -TEST_F(InitGoogleTestTest, FilterBad) { - const char* argv[] = { - "foo.exe", - "--gtest_filter", - NULL - }; - - const char* argv2[] = { - "foo.exe", - "--gtest_filter", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Filter(""), true); -} - -// Tests parsing an empty --gtest_filter flag. -TEST_F(InitGoogleTestTest, FilterEmpty) { - const char* argv[] = { - "foo.exe", - "--gtest_filter=", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Filter(""), false); -} - -// Tests parsing a non-empty --gtest_filter flag. -TEST_F(InitGoogleTestTest, FilterNonEmpty) { - const char* argv[] = { - "foo.exe", - "--gtest_filter=abc", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Filter("abc"), false); -} - -// Tests parsing --gtest_break_on_failure. -TEST_F(InitGoogleTestTest, BreakOnFailureWithoutValue) { - const char* argv[] = { - "foo.exe", - "--gtest_break_on_failure", - NULL -}; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::BreakOnFailure(true), false); -} - -// Tests parsing --gtest_break_on_failure=0. -TEST_F(InitGoogleTestTest, BreakOnFailureFalse_0) { - const char* argv[] = { - "foo.exe", - "--gtest_break_on_failure=0", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::BreakOnFailure(false), false); -} - -// Tests parsing --gtest_break_on_failure=f. -TEST_F(InitGoogleTestTest, BreakOnFailureFalse_f) { - const char* argv[] = { - "foo.exe", - "--gtest_break_on_failure=f", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::BreakOnFailure(false), false); -} - -// Tests parsing --gtest_break_on_failure=F. -TEST_F(InitGoogleTestTest, BreakOnFailureFalse_F) { - const char* argv[] = { - "foo.exe", - "--gtest_break_on_failure=F", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::BreakOnFailure(false), false); -} - -// Tests parsing a --gtest_break_on_failure flag that has a "true" -// definition. -TEST_F(InitGoogleTestTest, BreakOnFailureTrue) { - const char* argv[] = { - "foo.exe", - "--gtest_break_on_failure=1", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::BreakOnFailure(true), false); -} - -// Tests parsing --gtest_catch_exceptions. -TEST_F(InitGoogleTestTest, CatchExceptions) { - const char* argv[] = { - "foo.exe", - "--gtest_catch_exceptions", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::CatchExceptions(true), false); -} - -// Tests parsing --gtest_death_test_use_fork. -TEST_F(InitGoogleTestTest, DeathTestUseFork) { - const char* argv[] = { - "foo.exe", - "--gtest_death_test_use_fork", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::DeathTestUseFork(true), false); -} - -// Tests having the same flag twice with different values. The -// expected behavior is that the one coming last takes precedence. -TEST_F(InitGoogleTestTest, DuplicatedFlags) { - const char* argv[] = { - "foo.exe", - "--gtest_filter=a", - "--gtest_filter=b", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Filter("b"), false); -} - -// Tests having an unrecognized flag on the command line. -TEST_F(InitGoogleTestTest, UnrecognizedFlag) { - const char* argv[] = { - "foo.exe", - "--gtest_break_on_failure", - "bar", // Unrecognized by Google Test. - "--gtest_filter=b", - NULL - }; - - const char* argv2[] = { - "foo.exe", - "bar", - NULL - }; - - Flags flags; - flags.break_on_failure = true; - flags.filter = "b"; - GTEST_TEST_PARSING_FLAGS_(argv, argv2, flags, false); -} - -// Tests having a --gtest_list_tests flag -TEST_F(InitGoogleTestTest, ListTestsFlag) { - const char* argv[] = { - "foo.exe", - "--gtest_list_tests", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ListTests(true), false); -} - -// Tests having a --gtest_list_tests flag with a "true" value -TEST_F(InitGoogleTestTest, ListTestsTrue) { - const char* argv[] = { - "foo.exe", - "--gtest_list_tests=1", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ListTests(true), false); -} - -// Tests having a --gtest_list_tests flag with a "false" value -TEST_F(InitGoogleTestTest, ListTestsFalse) { - const char* argv[] = { - "foo.exe", - "--gtest_list_tests=0", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ListTests(false), false); -} - -// Tests parsing --gtest_list_tests=f. -TEST_F(InitGoogleTestTest, ListTestsFalse_f) { - const char* argv[] = { - "foo.exe", - "--gtest_list_tests=f", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ListTests(false), false); -} - -// Tests parsing --gtest_list_tests=F. -TEST_F(InitGoogleTestTest, ListTestsFalse_F) { - const char* argv[] = { - "foo.exe", - "--gtest_list_tests=F", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ListTests(false), false); -} - -// Tests parsing --gtest_output (invalid). -TEST_F(InitGoogleTestTest, OutputEmpty) { - const char* argv[] = { - "foo.exe", - "--gtest_output", - NULL - }; - - const char* argv2[] = { - "foo.exe", - "--gtest_output", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags(), true); -} - -// Tests parsing --gtest_output=xml -TEST_F(InitGoogleTestTest, OutputXml) { - const char* argv[] = { - "foo.exe", - "--gtest_output=xml", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Output("xml"), false); -} - -// Tests parsing --gtest_output=xml:file -TEST_F(InitGoogleTestTest, OutputXmlFile) { - const char* argv[] = { - "foo.exe", - "--gtest_output=xml:file", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Output("xml:file"), false); -} - -// Tests parsing --gtest_output=xml:directory/path/ -TEST_F(InitGoogleTestTest, OutputXmlDirectory) { - const char* argv[] = { - "foo.exe", - "--gtest_output=xml:directory/path/", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, - Flags::Output("xml:directory/path/"), false); -} - -// Tests having a --gtest_print_time flag -TEST_F(InitGoogleTestTest, PrintTimeFlag) { - const char* argv[] = { - "foo.exe", - "--gtest_print_time", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::PrintTime(true), false); -} - -// Tests having a --gtest_print_time flag with a "true" value -TEST_F(InitGoogleTestTest, PrintTimeTrue) { - const char* argv[] = { - "foo.exe", - "--gtest_print_time=1", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::PrintTime(true), false); -} - -// Tests having a --gtest_print_time flag with a "false" value -TEST_F(InitGoogleTestTest, PrintTimeFalse) { - const char* argv[] = { - "foo.exe", - "--gtest_print_time=0", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::PrintTime(false), false); -} - -// Tests parsing --gtest_print_time=f. -TEST_F(InitGoogleTestTest, PrintTimeFalse_f) { - const char* argv[] = { - "foo.exe", - "--gtest_print_time=f", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::PrintTime(false), false); -} - -// Tests parsing --gtest_print_time=F. -TEST_F(InitGoogleTestTest, PrintTimeFalse_F) { - const char* argv[] = { - "foo.exe", - "--gtest_print_time=F", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::PrintTime(false), false); -} - -// Tests parsing --gtest_random_seed=number -TEST_F(InitGoogleTestTest, RandomSeed) { - const char* argv[] = { - "foo.exe", - "--gtest_random_seed=1000", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::RandomSeed(1000), false); -} - -// Tests parsing --gtest_repeat=number -TEST_F(InitGoogleTestTest, Repeat) { - const char* argv[] = { - "foo.exe", - "--gtest_repeat=1000", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Repeat(1000), false); -} - -// Tests having a --gtest_also_run_disabled_tests flag -TEST_F(InitGoogleTestTest, AlsoRunDisabledTestsFlag) { - const char* argv[] = { - "foo.exe", - "--gtest_also_run_disabled_tests", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, - Flags::AlsoRunDisabledTests(true), false); -} - -// Tests having a --gtest_also_run_disabled_tests flag with a "true" value -TEST_F(InitGoogleTestTest, AlsoRunDisabledTestsTrue) { - const char* argv[] = { - "foo.exe", - "--gtest_also_run_disabled_tests=1", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, - Flags::AlsoRunDisabledTests(true), false); -} - -// Tests having a --gtest_also_run_disabled_tests flag with a "false" value -TEST_F(InitGoogleTestTest, AlsoRunDisabledTestsFalse) { - const char* argv[] = { - "foo.exe", - "--gtest_also_run_disabled_tests=0", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, - Flags::AlsoRunDisabledTests(false), false); -} - -// Tests parsing --gtest_shuffle. -TEST_F(InitGoogleTestTest, ShuffleWithoutValue) { - const char* argv[] = { - "foo.exe", - "--gtest_shuffle", - NULL -}; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Shuffle(true), false); -} - -// Tests parsing --gtest_shuffle=0. -TEST_F(InitGoogleTestTest, ShuffleFalse_0) { - const char* argv[] = { - "foo.exe", - "--gtest_shuffle=0", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Shuffle(false), false); -} - -// Tests parsing a --gtest_shuffle flag that has a "true" -// definition. -TEST_F(InitGoogleTestTest, ShuffleTrue) { - const char* argv[] = { - "foo.exe", - "--gtest_shuffle=1", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::Shuffle(true), false); -} - -// Tests parsing --gtest_stack_trace_depth=number. -TEST_F(InitGoogleTestTest, StackTraceDepth) { - const char* argv[] = { - "foo.exe", - "--gtest_stack_trace_depth=5", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::StackTraceDepth(5), false); -} - -// Tests parsing --gtest_throw_on_failure. -TEST_F(InitGoogleTestTest, ThrowOnFailureWithoutValue) { - const char* argv[] = { - "foo.exe", - "--gtest_throw_on_failure", - NULL -}; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ThrowOnFailure(true), false); -} - -// Tests parsing --gtest_throw_on_failure=0. -TEST_F(InitGoogleTestTest, ThrowOnFailureFalse_0) { - const char* argv[] = { - "foo.exe", - "--gtest_throw_on_failure=0", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ThrowOnFailure(false), false); -} - -// Tests parsing a --gtest_throw_on_failure flag that has a "true" -// definition. -TEST_F(InitGoogleTestTest, ThrowOnFailureTrue) { - const char* argv[] = { - "foo.exe", - "--gtest_throw_on_failure=1", - NULL - }; - - const char* argv2[] = { - "foo.exe", - NULL - }; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, Flags::ThrowOnFailure(true), false); -} - -#if GTEST_OS_WINDOWS -// Tests parsing wide strings. -TEST_F(InitGoogleTestTest, WideStrings) { - const wchar_t* argv[] = { - L"foo.exe", - L"--gtest_filter=Foo*", - L"--gtest_list_tests=1", - L"--gtest_break_on_failure", - L"--non_gtest_flag", - NULL - }; - - const wchar_t* argv2[] = { - L"foo.exe", - L"--non_gtest_flag", - NULL - }; - - Flags expected_flags; - expected_flags.break_on_failure = true; - expected_flags.filter = "Foo*"; - expected_flags.list_tests = true; - - GTEST_TEST_PARSING_FLAGS_(argv, argv2, expected_flags, false); -} -#endif // GTEST_OS_WINDOWS - -// Tests current_test_info() in UnitTest. -class CurrentTestInfoTest : public Test { - protected: - // Tests that current_test_info() returns NULL before the first test in - // the test case is run. - static void SetUpTestCase() { - // There should be no tests running at this point. - const TestInfo* test_info = - UnitTest::GetInstance()->current_test_info(); - EXPECT_TRUE(test_info == NULL) - << "There should be no tests running at this point."; - } - - // Tests that current_test_info() returns NULL after the last test in - // the test case has run. - static void TearDownTestCase() { - const TestInfo* test_info = - UnitTest::GetInstance()->current_test_info(); - EXPECT_TRUE(test_info == NULL) - << "There should be no tests running at this point."; - } -}; - -// Tests that current_test_info() returns TestInfo for currently running -// test by checking the expected test name against the actual one. -TEST_F(CurrentTestInfoTest, WorksForFirstTestInATestCase) { - const TestInfo* test_info = - UnitTest::GetInstance()->current_test_info(); - ASSERT_TRUE(NULL != test_info) - << "There is a test running so we should have a valid TestInfo."; - EXPECT_STREQ("CurrentTestInfoTest", test_info->test_case_name()) - << "Expected the name of the currently running test case."; - EXPECT_STREQ("WorksForFirstTestInATestCase", test_info->name()) - << "Expected the name of the currently running test."; -} - -// Tests that current_test_info() returns TestInfo for currently running -// test by checking the expected test name against the actual one. We -// use this test to see that the TestInfo object actually changed from -// the previous invocation. -TEST_F(CurrentTestInfoTest, WorksForSecondTestInATestCase) { - const TestInfo* test_info = - UnitTest::GetInstance()->current_test_info(); - ASSERT_TRUE(NULL != test_info) - << "There is a test running so we should have a valid TestInfo."; - EXPECT_STREQ("CurrentTestInfoTest", test_info->test_case_name()) - << "Expected the name of the currently running test case."; - EXPECT_STREQ("WorksForSecondTestInATestCase", test_info->name()) - << "Expected the name of the currently running test."; -} - -} // namespace testing - -// These two lines test that we can define tests in a namespace that -// has the name "testing" and is nested in another namespace. -namespace my_namespace { -namespace testing { - -// Makes sure that TEST knows to use ::testing::Test instead of -// ::my_namespace::testing::Test. -class Test {}; - -// Makes sure that an assertion knows to use ::testing::Message instead of -// ::my_namespace::testing::Message. -class Message {}; - -// Makes sure that an assertion knows to use -// ::testing::AssertionResult instead of -// ::my_namespace::testing::AssertionResult. -class AssertionResult {}; - -// Tests that an assertion that should succeed works as expected. -TEST(NestedTestingNamespaceTest, Success) { - EXPECT_EQ(1, 1) << "This shouldn't fail."; -} - -// Tests that an assertion that should fail works as expected. -TEST(NestedTestingNamespaceTest, Failure) { - EXPECT_FATAL_FAILURE(FAIL() << "This failure is expected.", - "This failure is expected."); -} - -} // namespace testing -} // namespace my_namespace - -// Tests that one can call superclass SetUp and TearDown methods-- -// that is, that they are not private. -// No tests are based on this fixture; the test "passes" if it compiles -// successfully. -class ProtectedFixtureMethodsTest : public Test { - protected: - virtual void SetUp() { - Test::SetUp(); - } - virtual void TearDown() { - Test::TearDown(); - } -}; - -// StreamingAssertionsTest tests the streaming versions of a representative -// sample of assertions. -TEST(StreamingAssertionsTest, Unconditional) { - SUCCEED() << "expected success"; - EXPECT_NONFATAL_FAILURE(ADD_FAILURE() << "expected failure", - "expected failure"); - EXPECT_FATAL_FAILURE(FAIL() << "expected failure", - "expected failure"); -} - -#ifdef __BORLANDC__ -// Silences warnings: "Condition is always true", "Unreachable code" -#pragma option push -w-ccc -w-rch -#endif - -TEST(StreamingAssertionsTest, Truth) { - EXPECT_TRUE(true) << "unexpected failure"; - ASSERT_TRUE(true) << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_TRUE(false) << "expected failure", - "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_TRUE(false) << "expected failure", - "expected failure"); -} - -TEST(StreamingAssertionsTest, Truth2) { - EXPECT_FALSE(false) << "unexpected failure"; - ASSERT_FALSE(false) << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_FALSE(true) << "expected failure", - "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_FALSE(true) << "expected failure", - "expected failure"); -} - -#ifdef __BORLANDC__ -// Restores warnings after previous "#pragma option push" supressed them -#pragma option pop -#endif - -TEST(StreamingAssertionsTest, IntegerEquals) { - EXPECT_EQ(1, 1) << "unexpected failure"; - ASSERT_EQ(1, 1) << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_EQ(1, 2) << "expected failure", - "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_EQ(1, 2) << "expected failure", - "expected failure"); -} - -TEST(StreamingAssertionsTest, IntegerLessThan) { - EXPECT_LT(1, 2) << "unexpected failure"; - ASSERT_LT(1, 2) << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_LT(2, 1) << "expected failure", - "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_LT(2, 1) << "expected failure", - "expected failure"); -} - -TEST(StreamingAssertionsTest, StringsEqual) { - EXPECT_STREQ("foo", "foo") << "unexpected failure"; - ASSERT_STREQ("foo", "foo") << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_STREQ("foo", "bar") << "expected failure", - "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_STREQ("foo", "bar") << "expected failure", - "expected failure"); -} - -TEST(StreamingAssertionsTest, StringsNotEqual) { - EXPECT_STRNE("foo", "bar") << "unexpected failure"; - ASSERT_STRNE("foo", "bar") << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_STRNE("foo", "foo") << "expected failure", - "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_STRNE("foo", "foo") << "expected failure", - "expected failure"); -} - -TEST(StreamingAssertionsTest, StringsEqualIgnoringCase) { - EXPECT_STRCASEEQ("foo", "FOO") << "unexpected failure"; - ASSERT_STRCASEEQ("foo", "FOO") << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_STRCASEEQ("foo", "bar") << "expected failure", - "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_STRCASEEQ("foo", "bar") << "expected failure", - "expected failure"); -} - -TEST(StreamingAssertionsTest, StringNotEqualIgnoringCase) { - EXPECT_STRCASENE("foo", "bar") << "unexpected failure"; - ASSERT_STRCASENE("foo", "bar") << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_STRCASENE("foo", "FOO") << "expected failure", - "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_STRCASENE("bar", "BAR") << "expected failure", - "expected failure"); -} - -TEST(StreamingAssertionsTest, FloatingPointEquals) { - EXPECT_FLOAT_EQ(1.0, 1.0) << "unexpected failure"; - ASSERT_FLOAT_EQ(1.0, 1.0) << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_FLOAT_EQ(0.0, 1.0) << "expected failure", - "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_FLOAT_EQ(0.0, 1.0) << "expected failure", - "expected failure"); -} - -#if GTEST_HAS_EXCEPTIONS - -TEST(StreamingAssertionsTest, Throw) { - EXPECT_THROW(ThrowAnInteger(), int) << "unexpected failure"; - ASSERT_THROW(ThrowAnInteger(), int) << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_THROW(ThrowAnInteger(), bool) << - "expected failure", "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_THROW(ThrowAnInteger(), bool) << - "expected failure", "expected failure"); -} - -TEST(StreamingAssertionsTest, NoThrow) { - EXPECT_NO_THROW(ThrowNothing()) << "unexpected failure"; - ASSERT_NO_THROW(ThrowNothing()) << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_NO_THROW(ThrowAnInteger()) << - "expected failure", "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_NO_THROW(ThrowAnInteger()) << - "expected failure", "expected failure"); -} - -TEST(StreamingAssertionsTest, AnyThrow) { - EXPECT_ANY_THROW(ThrowAnInteger()) << "unexpected failure"; - ASSERT_ANY_THROW(ThrowAnInteger()) << "unexpected failure"; - EXPECT_NONFATAL_FAILURE(EXPECT_ANY_THROW(ThrowNothing()) << - "expected failure", "expected failure"); - EXPECT_FATAL_FAILURE(ASSERT_ANY_THROW(ThrowNothing()) << - "expected failure", "expected failure"); -} - -#endif // GTEST_HAS_EXCEPTIONS - -// Tests that Google Test correctly decides whether to use colors in the output. - -TEST(ColoredOutputTest, UsesColorsWhenGTestColorFlagIsYes) { - GTEST_FLAG(color) = "yes"; - - SetEnv("TERM", "xterm"); // TERM supports colors. - EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. - EXPECT_TRUE(ShouldUseColor(false)); // Stdout is not a TTY. - - SetEnv("TERM", "dumb"); // TERM doesn't support colors. - EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. - EXPECT_TRUE(ShouldUseColor(false)); // Stdout is not a TTY. -} - -TEST(ColoredOutputTest, UsesColorsWhenGTestColorFlagIsAliasOfYes) { - SetEnv("TERM", "dumb"); // TERM doesn't support colors. - - GTEST_FLAG(color) = "True"; - EXPECT_TRUE(ShouldUseColor(false)); // Stdout is not a TTY. - - GTEST_FLAG(color) = "t"; - EXPECT_TRUE(ShouldUseColor(false)); // Stdout is not a TTY. - - GTEST_FLAG(color) = "1"; - EXPECT_TRUE(ShouldUseColor(false)); // Stdout is not a TTY. -} - -TEST(ColoredOutputTest, UsesNoColorWhenGTestColorFlagIsNo) { - GTEST_FLAG(color) = "no"; - - SetEnv("TERM", "xterm"); // TERM supports colors. - EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. - EXPECT_FALSE(ShouldUseColor(false)); // Stdout is not a TTY. - - SetEnv("TERM", "dumb"); // TERM doesn't support colors. - EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. - EXPECT_FALSE(ShouldUseColor(false)); // Stdout is not a TTY. -} - -TEST(ColoredOutputTest, UsesNoColorWhenGTestColorFlagIsInvalid) { - SetEnv("TERM", "xterm"); // TERM supports colors. - - GTEST_FLAG(color) = "F"; - EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. - - GTEST_FLAG(color) = "0"; - EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. - - GTEST_FLAG(color) = "unknown"; - EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. -} - -TEST(ColoredOutputTest, UsesColorsWhenStdoutIsTty) { - GTEST_FLAG(color) = "auto"; - - SetEnv("TERM", "xterm"); // TERM supports colors. - EXPECT_FALSE(ShouldUseColor(false)); // Stdout is not a TTY. - EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. -} - -TEST(ColoredOutputTest, UsesColorsWhenTermSupportsColors) { - GTEST_FLAG(color) = "auto"; - -#if GTEST_OS_WINDOWS - // On Windows, we ignore the TERM variable as it's usually not set. - - SetEnv("TERM", "dumb"); - EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. - - SetEnv("TERM", ""); - EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. - - SetEnv("TERM", "xterm"); - EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. -#else - // On non-Windows platforms, we rely on TERM to determine if the - // terminal supports colors. - - SetEnv("TERM", "dumb"); // TERM doesn't support colors. - EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. - - SetEnv("TERM", "emacs"); // TERM doesn't support colors. - EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. - - SetEnv("TERM", "vt100"); // TERM doesn't support colors. - EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. - - SetEnv("TERM", "xterm-mono"); // TERM doesn't support colors. - EXPECT_FALSE(ShouldUseColor(true)); // Stdout is a TTY. - - SetEnv("TERM", "xterm"); // TERM supports colors. - EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. - - SetEnv("TERM", "xterm-color"); // TERM supports colors. - EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. - - SetEnv("TERM", "linux"); // TERM supports colors. - EXPECT_TRUE(ShouldUseColor(true)); // Stdout is a TTY. -#endif // GTEST_OS_WINDOWS -} - -// Verifies that StaticAssertTypeEq works in a namespace scope. - -static bool dummy1 = StaticAssertTypeEq(); -static bool dummy2 = StaticAssertTypeEq(); - -// Verifies that StaticAssertTypeEq works in a class. - -template -class StaticAssertTypeEqTestHelper { - public: - StaticAssertTypeEqTestHelper() { StaticAssertTypeEq(); } -}; - -TEST(StaticAssertTypeEqTest, WorksInClass) { - StaticAssertTypeEqTestHelper(); -} - -// Verifies that StaticAssertTypeEq works inside a function. - -typedef int IntAlias; - -TEST(StaticAssertTypeEqTest, CompilesForEqualTypes) { - StaticAssertTypeEq(); - StaticAssertTypeEq(); -} - -TEST(GetCurrentOsStackTraceExceptTopTest, ReturnsTheStackTrace) { - testing::UnitTest* const unit_test = testing::UnitTest::GetInstance(); - - // We don't have a stack walker in Google Test yet. - EXPECT_STREQ("", GetCurrentOsStackTraceExceptTop(unit_test, 0).c_str()); - EXPECT_STREQ("", GetCurrentOsStackTraceExceptTop(unit_test, 1).c_str()); -} - -TEST(HasNonfatalFailureTest, ReturnsFalseWhenThereIsNoFailure) { - EXPECT_FALSE(HasNonfatalFailure()); -} - -static void FailFatally() { FAIL(); } - -TEST(HasNonfatalFailureTest, ReturnsFalseWhenThereIsOnlyFatalFailure) { - FailFatally(); - const bool has_nonfatal_failure = HasNonfatalFailure(); - ClearCurrentTestPartResults(); - EXPECT_FALSE(has_nonfatal_failure); -} - -TEST(HasNonfatalFailureTest, ReturnsTrueWhenThereIsNonfatalFailure) { - ADD_FAILURE(); - const bool has_nonfatal_failure = HasNonfatalFailure(); - ClearCurrentTestPartResults(); - EXPECT_TRUE(has_nonfatal_failure); -} - -TEST(HasNonfatalFailureTest, ReturnsTrueWhenThereAreFatalAndNonfatalFailures) { - FailFatally(); - ADD_FAILURE(); - const bool has_nonfatal_failure = HasNonfatalFailure(); - ClearCurrentTestPartResults(); - EXPECT_TRUE(has_nonfatal_failure); -} - -// A wrapper for calling HasNonfatalFailure outside of a test body. -static bool HasNonfatalFailureHelper() { - return testing::Test::HasNonfatalFailure(); -} - -TEST(HasNonfatalFailureTest, WorksOutsideOfTestBody) { - EXPECT_FALSE(HasNonfatalFailureHelper()); -} - -TEST(HasNonfatalFailureTest, WorksOutsideOfTestBody2) { - ADD_FAILURE(); - const bool has_nonfatal_failure = HasNonfatalFailureHelper(); - ClearCurrentTestPartResults(); - EXPECT_TRUE(has_nonfatal_failure); -} - -TEST(HasFailureTest, ReturnsFalseWhenThereIsNoFailure) { - EXPECT_FALSE(HasFailure()); -} - -TEST(HasFailureTest, ReturnsTrueWhenThereIsFatalFailure) { - FailFatally(); - const bool has_failure = HasFailure(); - ClearCurrentTestPartResults(); - EXPECT_TRUE(has_failure); -} - -TEST(HasFailureTest, ReturnsTrueWhenThereIsNonfatalFailure) { - ADD_FAILURE(); - const bool has_failure = HasFailure(); - ClearCurrentTestPartResults(); - EXPECT_TRUE(has_failure); -} - -TEST(HasFailureTest, ReturnsTrueWhenThereAreFatalAndNonfatalFailures) { - FailFatally(); - ADD_FAILURE(); - const bool has_failure = HasFailure(); - ClearCurrentTestPartResults(); - EXPECT_TRUE(has_failure); -} - -// A wrapper for calling HasFailure outside of a test body. -static bool HasFailureHelper() { return testing::Test::HasFailure(); } - -TEST(HasFailureTest, WorksOutsideOfTestBody) { - EXPECT_FALSE(HasFailureHelper()); -} - -TEST(HasFailureTest, WorksOutsideOfTestBody2) { - ADD_FAILURE(); - const bool has_failure = HasFailureHelper(); - ClearCurrentTestPartResults(); - EXPECT_TRUE(has_failure); -} - -class TestListener : public EmptyTestEventListener { - public: - TestListener() : on_start_counter_(NULL), is_destroyed_(NULL) {} - TestListener(int* on_start_counter, bool* is_destroyed) - : on_start_counter_(on_start_counter), - is_destroyed_(is_destroyed) {} - - virtual ~TestListener() { - if (is_destroyed_) - *is_destroyed_ = true; - } - - protected: - virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) { - if (on_start_counter_ != NULL) - (*on_start_counter_)++; - } - - private: - int* on_start_counter_; - bool* is_destroyed_; -}; - -// Tests the constructor. -TEST(TestEventListenersTest, ConstructionWorks) { - TestEventListeners listeners; - - EXPECT_TRUE(TestEventListenersAccessor::GetRepeater(&listeners) != NULL); - EXPECT_TRUE(listeners.default_result_printer() == NULL); - EXPECT_TRUE(listeners.default_xml_generator() == NULL); -} - -// Tests that the TestEventListeners destructor deletes all the listeners it -// owns. -TEST(TestEventListenersTest, DestructionWorks) { - bool default_result_printer_is_destroyed = false; - bool default_xml_printer_is_destroyed = false; - bool extra_listener_is_destroyed = false; - TestListener* default_result_printer = new TestListener( - NULL, &default_result_printer_is_destroyed); - TestListener* default_xml_printer = new TestListener( - NULL, &default_xml_printer_is_destroyed); - TestListener* extra_listener = new TestListener( - NULL, &extra_listener_is_destroyed); - - { - TestEventListeners listeners; - TestEventListenersAccessor::SetDefaultResultPrinter(&listeners, - default_result_printer); - TestEventListenersAccessor::SetDefaultXmlGenerator(&listeners, - default_xml_printer); - listeners.Append(extra_listener); - } - EXPECT_TRUE(default_result_printer_is_destroyed); - EXPECT_TRUE(default_xml_printer_is_destroyed); - EXPECT_TRUE(extra_listener_is_destroyed); -} - -// Tests that a listener Append'ed to a TestEventListeners list starts -// receiving events. -TEST(TestEventListenersTest, Append) { - int on_start_counter = 0; - bool is_destroyed = false; - TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); - { - TestEventListeners listeners; - listeners.Append(listener); - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( - *UnitTest::GetInstance()); - EXPECT_EQ(1, on_start_counter); - } - EXPECT_TRUE(is_destroyed); -} - -// Tests that listeners receive events in the order they were appended to -// the list, except for *End requests, which must be received in the reverse -// order. -class SequenceTestingListener : public EmptyTestEventListener { - public: - SequenceTestingListener(std::vector* vector, const char* id) - : vector_(vector), id_(id) {} - - protected: - virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) { - vector_->push_back(GetEventDescription("OnTestProgramStart")); - } - - virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) { - vector_->push_back(GetEventDescription("OnTestProgramEnd")); - } - - virtual void OnTestIterationStart(const UnitTest& /*unit_test*/, - int /*iteration*/) { - vector_->push_back(GetEventDescription("OnTestIterationStart")); - } - - virtual void OnTestIterationEnd(const UnitTest& /*unit_test*/, - int /*iteration*/) { - vector_->push_back(GetEventDescription("OnTestIterationEnd")); - } - - private: - String GetEventDescription(const char* method) { - Message message; - message << id_ << "." << method; - return message.GetString(); - } - - std::vector* vector_; - const char* const id_; - - GTEST_DISALLOW_COPY_AND_ASSIGN_(SequenceTestingListener); -}; - -TEST(EventListenerTest, AppendKeepsOrder) { - std::vector vec; - TestEventListeners listeners; - listeners.Append(new SequenceTestingListener(&vec, "1st")); - listeners.Append(new SequenceTestingListener(&vec, "2nd")); - listeners.Append(new SequenceTestingListener(&vec, "3rd")); - - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( - *UnitTest::GetInstance()); - ASSERT_EQ(3U, vec.size()); - EXPECT_STREQ("1st.OnTestProgramStart", vec[0].c_str()); - EXPECT_STREQ("2nd.OnTestProgramStart", vec[1].c_str()); - EXPECT_STREQ("3rd.OnTestProgramStart", vec[2].c_str()); - - vec.clear(); - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramEnd( - *UnitTest::GetInstance()); - ASSERT_EQ(3U, vec.size()); - EXPECT_STREQ("3rd.OnTestProgramEnd", vec[0].c_str()); - EXPECT_STREQ("2nd.OnTestProgramEnd", vec[1].c_str()); - EXPECT_STREQ("1st.OnTestProgramEnd", vec[2].c_str()); - - vec.clear(); - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestIterationStart( - *UnitTest::GetInstance(), 0); - ASSERT_EQ(3U, vec.size()); - EXPECT_STREQ("1st.OnTestIterationStart", vec[0].c_str()); - EXPECT_STREQ("2nd.OnTestIterationStart", vec[1].c_str()); - EXPECT_STREQ("3rd.OnTestIterationStart", vec[2].c_str()); - - vec.clear(); - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestIterationEnd( - *UnitTest::GetInstance(), 0); - ASSERT_EQ(3U, vec.size()); - EXPECT_STREQ("3rd.OnTestIterationEnd", vec[0].c_str()); - EXPECT_STREQ("2nd.OnTestIterationEnd", vec[1].c_str()); - EXPECT_STREQ("1st.OnTestIterationEnd", vec[2].c_str()); -} - -// Tests that a listener removed from a TestEventListeners list stops receiving -// events and is not deleted when the list is destroyed. -TEST(TestEventListenersTest, Release) { - int on_start_counter = 0; - bool is_destroyed = false; - // Although Append passes the ownership of this object to the list, - // the following calls release it, and we need to delete it before the - // test ends. - TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); - { - TestEventListeners listeners; - listeners.Append(listener); - EXPECT_EQ(listener, listeners.Release(listener)); - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( - *UnitTest::GetInstance()); - EXPECT_TRUE(listeners.Release(listener) == NULL); - } - EXPECT_EQ(0, on_start_counter); - EXPECT_FALSE(is_destroyed); - delete listener; -} - -// Tests that no events are forwarded when event forwarding is disabled. -TEST(EventListenerTest, SuppressEventForwarding) { - int on_start_counter = 0; - TestListener* listener = new TestListener(&on_start_counter, NULL); - - TestEventListeners listeners; - listeners.Append(listener); - ASSERT_TRUE(TestEventListenersAccessor::EventForwardingEnabled(listeners)); - TestEventListenersAccessor::SuppressEventForwarding(&listeners); - ASSERT_FALSE(TestEventListenersAccessor::EventForwardingEnabled(listeners)); - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( - *UnitTest::GetInstance()); - EXPECT_EQ(0, on_start_counter); -} - -// Tests that events generated by Google Test are not forwarded in -// death test subprocesses. -TEST(EventListenerDeathTest, EventsNotForwardedInDeathTestSubprecesses) { - EXPECT_DEATH_IF_SUPPORTED({ - GTEST_CHECK_(TestEventListenersAccessor::EventForwardingEnabled( - *GetUnitTestImpl()->listeners())) << "expected failure";}, - "expected failure"); -} - -// Tests that a listener installed via SetDefaultResultPrinter() starts -// receiving events and is returned via default_result_printer() and that -// the previous default_result_printer is removed from the list and deleted. -TEST(EventListenerTest, default_result_printer) { - int on_start_counter = 0; - bool is_destroyed = false; - TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); - - TestEventListeners listeners; - TestEventListenersAccessor::SetDefaultResultPrinter(&listeners, listener); - - EXPECT_EQ(listener, listeners.default_result_printer()); - - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( - *UnitTest::GetInstance()); - - EXPECT_EQ(1, on_start_counter); - - // Replacing default_result_printer with something else should remove it - // from the list and destroy it. - TestEventListenersAccessor::SetDefaultResultPrinter(&listeners, NULL); - - EXPECT_TRUE(listeners.default_result_printer() == NULL); - EXPECT_TRUE(is_destroyed); - - // After broadcasting an event the counter is still the same, indicating - // the listener is not in the list anymore. - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( - *UnitTest::GetInstance()); - EXPECT_EQ(1, on_start_counter); -} - -// Tests that the default_result_printer listener stops receiving events -// when removed via Release and that is not owned by the list anymore. -TEST(EventListenerTest, RemovingDefaultResultPrinterWorks) { - int on_start_counter = 0; - bool is_destroyed = false; - // Although Append passes the ownership of this object to the list, - // the following calls release it, and we need to delete it before the - // test ends. - TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); - { - TestEventListeners listeners; - TestEventListenersAccessor::SetDefaultResultPrinter(&listeners, listener); - - EXPECT_EQ(listener, listeners.Release(listener)); - EXPECT_TRUE(listeners.default_result_printer() == NULL); - EXPECT_FALSE(is_destroyed); - - // Broadcasting events now should not affect default_result_printer. - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( - *UnitTest::GetInstance()); - EXPECT_EQ(0, on_start_counter); - } - // Destroying the list should not affect the listener now, too. - EXPECT_FALSE(is_destroyed); - delete listener; -} - -// Tests that a listener installed via SetDefaultXmlGenerator() starts -// receiving events and is returned via default_xml_generator() and that -// the previous default_xml_generator is removed from the list and deleted. -TEST(EventListenerTest, default_xml_generator) { - int on_start_counter = 0; - bool is_destroyed = false; - TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); - - TestEventListeners listeners; - TestEventListenersAccessor::SetDefaultXmlGenerator(&listeners, listener); - - EXPECT_EQ(listener, listeners.default_xml_generator()); - - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( - *UnitTest::GetInstance()); - - EXPECT_EQ(1, on_start_counter); - - // Replacing default_xml_generator with something else should remove it - // from the list and destroy it. - TestEventListenersAccessor::SetDefaultXmlGenerator(&listeners, NULL); - - EXPECT_TRUE(listeners.default_xml_generator() == NULL); - EXPECT_TRUE(is_destroyed); - - // After broadcasting an event the counter is still the same, indicating - // the listener is not in the list anymore. - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( - *UnitTest::GetInstance()); - EXPECT_EQ(1, on_start_counter); -} - -// Tests that the default_xml_generator listener stops receiving events -// when removed via Release and that is not owned by the list anymore. -TEST(EventListenerTest, RemovingDefaultXmlGeneratorWorks) { - int on_start_counter = 0; - bool is_destroyed = false; - // Although Append passes the ownership of this object to the list, - // the following calls release it, and we need to delete it before the - // test ends. - TestListener* listener = new TestListener(&on_start_counter, &is_destroyed); - { - TestEventListeners listeners; - TestEventListenersAccessor::SetDefaultXmlGenerator(&listeners, listener); - - EXPECT_EQ(listener, listeners.Release(listener)); - EXPECT_TRUE(listeners.default_xml_generator() == NULL); - EXPECT_FALSE(is_destroyed); - - // Broadcasting events now should not affect default_xml_generator. - TestEventListenersAccessor::GetRepeater(&listeners)->OnTestProgramStart( - *UnitTest::GetInstance()); - EXPECT_EQ(0, on_start_counter); - } - // Destroying the list should not affect the listener now, too. - EXPECT_FALSE(is_destroyed); - delete listener; -} - -// Sanity tests to ensure that the alternative, verbose spellings of -// some of the macros work. We don't test them thoroughly as that -// would be quite involved. Since their implementations are -// straightforward, and they are rarely used, we'll just rely on the -// users to tell us when they are broken. -GTEST_TEST(AlternativeNameTest, Works) { // GTEST_TEST is the same as TEST. - GTEST_SUCCEED() << "OK"; // GTEST_SUCCEED is the same as SUCCEED. - - // GTEST_FAIL is the same as FAIL. - EXPECT_FATAL_FAILURE(GTEST_FAIL() << "An expected failure", - "An expected failure"); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfile1_test_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfile1_test_.cc deleted file mode 100644 index 664baad2a..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfile1_test_.cc +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: keith.ray@gmail.com (Keith Ray) -// -// gtest_xml_outfile1_test_ writes some xml via TestProperty used by -// gtest_xml_outfiles_test.py - -#include - -class PropertyOne : public testing::Test { - protected: - virtual void SetUp() { - RecordProperty("SetUpProp", 1); - } - virtual void TearDown() { - RecordProperty("TearDownProp", 1); - } -}; - -TEST_F(PropertyOne, TestSomeProperties) { - RecordProperty("TestSomeProperty", 1); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfile2_test_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfile2_test_.cc deleted file mode 100644 index 3411a3d38..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfile2_test_.cc +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: keith.ray@gmail.com (Keith Ray) -// -// gtest_xml_outfile2_test_ writes some xml via TestProperty used by -// gtest_xml_outfiles_test.py - -#include - -class PropertyTwo : public testing::Test { - protected: - virtual void SetUp() { - RecordProperty("SetUpProp", 2); - } - virtual void TearDown() { - RecordProperty("TearDownProp", 2); - } -}; - -TEST_F(PropertyTwo, TestSomeProperties) { - RecordProperty("TestSomeProperty", 2); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfiles_test.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfiles_test.py deleted file mode 100755 index 0fe947f08..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_outfiles_test.py +++ /dev/null @@ -1,132 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2008, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Unit test for the gtest_xml_output module.""" - -__author__ = "keith.ray@gmail.com (Keith Ray)" - -import os -from xml.dom import minidom, Node - -import gtest_test_utils -import gtest_xml_test_utils - - -GTEST_OUTPUT_SUBDIR = "xml_outfiles" -GTEST_OUTPUT_1_TEST = "gtest_xml_outfile1_test_" -GTEST_OUTPUT_2_TEST = "gtest_xml_outfile2_test_" - -EXPECTED_XML_1 = """ - - - - - -""" - -EXPECTED_XML_2 = """ - - - - - -""" - - -class GTestXMLOutFilesTest(gtest_xml_test_utils.GTestXMLTestCase): - """Unit test for Google Test's XML output functionality.""" - - def setUp(self): - # We want the trailing '/' that the last "" provides in os.path.join, for - # telling Google Test to create an output directory instead of a single file - # for xml output. - self.output_dir_ = os.path.join(gtest_test_utils.GetTempDir(), - GTEST_OUTPUT_SUBDIR, "") - self.DeleteFilesAndDir() - - def tearDown(self): - self.DeleteFilesAndDir() - - def DeleteFilesAndDir(self): - try: - os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml")) - except os.error: - pass - try: - os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml")) - except os.error: - pass - try: - os.rmdir(self.output_dir_) - except os.error: - pass - - def testOutfile1(self): - self._TestOutFile(GTEST_OUTPUT_1_TEST, EXPECTED_XML_1) - - def testOutfile2(self): - self._TestOutFile(GTEST_OUTPUT_2_TEST, EXPECTED_XML_2) - - def _TestOutFile(self, test_name, expected_xml): - gtest_prog_path = gtest_test_utils.GetTestExecutablePath(test_name) - command = [gtest_prog_path, "--gtest_output=xml:%s" % self.output_dir_] - p = gtest_test_utils.Subprocess(command, - working_dir=gtest_test_utils.GetTempDir()) - self.assert_(p.exited) - self.assertEquals(0, p.exit_code) - - # TODO(wan@google.com): libtool causes the built test binary to be - # named lt-gtest_xml_outfiles_test_ instead of - # gtest_xml_outfiles_test_. To account for this possibillity, we - # allow both names in the following code. We should remove this - # hack when Chandler Carruth's libtool replacement tool is ready. - output_file_name1 = test_name + ".xml" - output_file1 = os.path.join(self.output_dir_, output_file_name1) - output_file_name2 = 'lt-' + output_file_name1 - output_file2 = os.path.join(self.output_dir_, output_file_name2) - self.assert_(os.path.isfile(output_file1) or os.path.isfile(output_file2), - output_file1) - - expected = minidom.parseString(expected_xml) - if os.path.isfile(output_file1): - actual = minidom.parse(output_file1) - else: - actual = minidom.parse(output_file2) - self.NormalizeXml(actual.documentElement) - self.AssertEquivalentNodes(expected.documentElement, - actual.documentElement) - expected.unlink() - actual.unlink() - - -if __name__ == "__main__": - os.environ["GTEST_STACK_TRACE_DEPTH"] = "0" - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_output_unittest.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_output_unittest.py deleted file mode 100755 index 6d44929ca..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_output_unittest.py +++ /dev/null @@ -1,224 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2006, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Unit test for the gtest_xml_output module""" - -__author__ = 'eefacm@gmail.com (Sean Mcafee)' - -import errno -import os -import sys -from xml.dom import minidom, Node - -import gtest_test_utils -import gtest_xml_test_utils - - -GTEST_OUTPUT_FLAG = "--gtest_output" -GTEST_DEFAULT_OUTPUT_FILE = "test_detail.xml" -GTEST_PROGRAM_NAME = "gtest_xml_output_unittest_" - -SUPPORTS_STACK_TRACES = False - -if SUPPORTS_STACK_TRACES: - STACK_TRACE_TEMPLATE = "\nStack trace:\n*" -else: - STACK_TRACE_TEMPLATE = "" - -EXPECTED_NON_EMPTY_XML = """ - - - - - - - - - - - - - - - - - - - - ]]>%(stack)s]]> - - - - - - - - - - - - - - - - - - - - - -""" % {'stack': STACK_TRACE_TEMPLATE} - - -EXPECTED_EMPTY_XML = """ - -""" - - -class GTestXMLOutputUnitTest(gtest_xml_test_utils.GTestXMLTestCase): - """ - Unit test for Google Test's XML output functionality. - """ - - def testNonEmptyXmlOutput(self): - """ - Runs a test program that generates a non-empty XML output, and - tests that the XML output is expected. - """ - self._TestXmlOutput(GTEST_PROGRAM_NAME, EXPECTED_NON_EMPTY_XML, 1) - - def testEmptyXmlOutput(self): - """ - Runs a test program that generates an empty XML output, and - tests that the XML output is expected. - """ - - self._TestXmlOutput("gtest_no_test_unittest", - EXPECTED_EMPTY_XML, 0) - - def testDefaultOutputFile(self): - """ - Confirms that Google Test produces an XML output file with the expected - default name if no name is explicitly specified. - """ - output_file = os.path.join(gtest_test_utils.GetTempDir(), - GTEST_DEFAULT_OUTPUT_FILE) - gtest_prog_path = gtest_test_utils.GetTestExecutablePath( - "gtest_no_test_unittest") - try: - os.remove(output_file) - except OSError, e: - if e.errno != errno.ENOENT: - raise - - p = gtest_test_utils.Subprocess( - [gtest_prog_path, "%s=xml" % GTEST_OUTPUT_FLAG], - working_dir=gtest_test_utils.GetTempDir()) - self.assert_(p.exited) - self.assertEquals(0, p.exit_code) - self.assert_(os.path.isfile(output_file)) - - def testSuppressedXmlOutput(self): - """ - Tests that no XML file is generated if the default XML listener is - shut down before RUN_ALL_TESTS is invoked. - """ - - xml_path = os.path.join(gtest_test_utils.GetTempDir(), - GTEST_PROGRAM_NAME + "out.xml") - if os.path.isfile(xml_path): - os.remove(xml_path) - - gtest_prog_path = gtest_test_utils.GetTestExecutablePath(GTEST_PROGRAM_NAME) - - command = [gtest_prog_path, - "%s=xml:%s" % (GTEST_OUTPUT_FLAG, xml_path), - "--shut_down_xml"] - p = gtest_test_utils.Subprocess(command) - if p.terminated_by_signal: - self.assert_(False, - "%s was killed by signal %d" % (gtest_prog_name, p.signal)) - else: - self.assert_(p.exited) - self.assertEquals(1, p.exit_code, - "'%s' exited with code %s, which doesn't match " - "the expected exit code %s." - % (command, p.exit_code, 1)) - - self.assert_(not os.path.isfile(xml_path)) - - - def _TestXmlOutput(self, gtest_prog_name, expected_xml, expected_exit_code): - """ - Asserts that the XML document generated by running the program - gtest_prog_name matches expected_xml, a string containing another - XML document. Furthermore, the program's exit code must be - expected_exit_code. - """ - xml_path = os.path.join(gtest_test_utils.GetTempDir(), - gtest_prog_name + "out.xml") - gtest_prog_path = gtest_test_utils.GetTestExecutablePath(gtest_prog_name) - - command = [gtest_prog_path, "%s=xml:%s" % (GTEST_OUTPUT_FLAG, xml_path)] - p = gtest_test_utils.Subprocess(command) - if p.terminated_by_signal: - self.assert_(False, - "%s was killed by signal %d" % (gtest_prog_name, p.signal)) - else: - self.assert_(p.exited) - self.assertEquals(expected_exit_code, p.exit_code, - "'%s' exited with code %s, which doesn't match " - "the expected exit code %s." - % (command, p.exit_code, expected_exit_code)) - - expected = minidom.parseString(expected_xml) - actual = minidom.parse(xml_path) - self.NormalizeXml(actual.documentElement) - self.AssertEquivalentNodes(expected.documentElement, - actual.documentElement) - expected.unlink() - actual .unlink() - - - -if __name__ == '__main__': - os.environ['GTEST_STACK_TRACE_DEPTH'] = '1' - gtest_test_utils.Main() diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_output_unittest_.cc b/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_output_unittest_.cc deleted file mode 100644 index fc07ef46b..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_output_unittest_.cc +++ /dev/null @@ -1,145 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// Author: eefacm@gmail.com (Sean Mcafee) - -// Unit test for Google Test XML output. -// -// A user can specify XML output in a Google Test program to run via -// either the GTEST_OUTPUT environment variable or the --gtest_output -// flag. This is used for testing such functionality. -// -// This program will be invoked from a Python unit test. Don't run it -// directly. - -#include - -using ::testing::InitGoogleTest; -using ::testing::TestEventListeners; -using ::testing::UnitTest; - -class SuccessfulTest : public testing::Test { -}; - -TEST_F(SuccessfulTest, Succeeds) { - SUCCEED() << "This is a success."; - ASSERT_EQ(1, 1); -} - -class FailedTest : public testing::Test { -}; - -TEST_F(FailedTest, Fails) { - ASSERT_EQ(1, 2); -} - -class DisabledTest : public testing::Test { -}; - -TEST_F(DisabledTest, DISABLED_test_not_run) { - FAIL() << "Unexpected failure: Disabled test should not be run"; -} - -TEST(MixedResultTest, Succeeds) { - EXPECT_EQ(1, 1); - ASSERT_EQ(1, 1); -} - -TEST(MixedResultTest, Fails) { - EXPECT_EQ(1, 2); - ASSERT_EQ(2, 3); -} - -TEST(MixedResultTest, DISABLED_test) { - FAIL() << "Unexpected failure: Disabled test should not be run"; -} - -TEST(XmlQuotingTest, OutputsCData) { - FAIL() << "XML output: " - ""; -} - -// Helps to test that invalid characters produced by test code do not make -// it into the XML file. -TEST(InvalidCharactersTest, InvalidCharactersInMessage) { - FAIL() << "Invalid characters in brackets [\x1\x2]"; -} - -class PropertyRecordingTest : public testing::Test { -}; - -TEST_F(PropertyRecordingTest, OneProperty) { - RecordProperty("key_1", "1"); -} - -TEST_F(PropertyRecordingTest, IntValuedProperty) { - RecordProperty("key_int", 1); -} - -TEST_F(PropertyRecordingTest, ThreeProperties) { - RecordProperty("key_1", "1"); - RecordProperty("key_2", "2"); - RecordProperty("key_3", "3"); -} - -TEST_F(PropertyRecordingTest, TwoValuesForOneKeyUsesLastValue) { - RecordProperty("key_1", "1"); - RecordProperty("key_1", "2"); -} - -TEST(NoFixtureTest, RecordProperty) { - RecordProperty("key", "1"); -} - -void ExternalUtilityThatCallsRecordProperty(const char* key, int value) { - testing::Test::RecordProperty(key, value); -} - -void ExternalUtilityThatCallsRecordProperty(const char* key, - const char* value) { - testing::Test::RecordProperty(key, value); -} - -TEST(NoFixtureTest, ExternalUtilityThatCallsRecordIntValuedProperty) { - ExternalUtilityThatCallsRecordProperty("key_for_utility_int", 1); -} - -TEST(NoFixtureTest, ExternalUtilityThatCallsRecordStringValuedProperty) { - ExternalUtilityThatCallsRecordProperty("key_for_utility_string", "1"); -} - -int main(int argc, char** argv) { - InitGoogleTest(&argc, argv); - - if (argc > 1 && strcmp(argv[1], "--shut_down_xml") == 0) { - TestEventListeners& listeners = UnitTest::GetInstance()->listeners(); - delete listeners.Release(listeners.default_xml_generator()); - } - return RUN_ALL_TESTS(); -} diff --git a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_test_utils.py b/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_test_utils.py deleted file mode 100755 index c83c3b7ea..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/gtest_xml_test_utils.py +++ /dev/null @@ -1,172 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2006, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Unit test utilities for gtest_xml_output""" - -__author__ = 'eefacm@gmail.com (Sean Mcafee)' - -import re -from xml.dom import minidom, Node - -import gtest_test_utils - - -GTEST_OUTPUT_FLAG = "--gtest_output" -GTEST_DEFAULT_OUTPUT_FILE = "test_detail.xml" - -class GTestXMLTestCase(gtest_test_utils.TestCase): - """ - Base class for tests of Google Test's XML output functionality. - """ - - - def AssertEquivalentNodes(self, expected_node, actual_node): - """ - Asserts that actual_node (a DOM node object) is equivalent to - expected_node (another DOM node object), in that either both of - them are CDATA nodes and have the same value, or both are DOM - elements and actual_node meets all of the following conditions: - - * It has the same tag name as expected_node. - * It has the same set of attributes as expected_node, each with - the same value as the corresponding attribute of expected_node. - An exception is any attribute named "time", which needs only be - convertible to a floating-point number. - * It has an equivalent set of child nodes (including elements and - CDATA sections) as expected_node. Note that we ignore the - order of the children as they are not guaranteed to be in any - particular order. - """ - - if expected_node.nodeType == Node.CDATA_SECTION_NODE: - self.assertEquals(Node.CDATA_SECTION_NODE, actual_node.nodeType) - self.assertEquals(expected_node.nodeValue, actual_node.nodeValue) - return - - self.assertEquals(Node.ELEMENT_NODE, actual_node.nodeType) - self.assertEquals(Node.ELEMENT_NODE, expected_node.nodeType) - self.assertEquals(expected_node.tagName, actual_node.tagName) - - expected_attributes = expected_node.attributes - actual_attributes = actual_node .attributes - self.assertEquals( - expected_attributes.length, actual_attributes.length, - "attribute numbers differ in element " + actual_node.tagName) - for i in range(expected_attributes.length): - expected_attr = expected_attributes.item(i) - actual_attr = actual_attributes.get(expected_attr.name) - self.assert_( - actual_attr is not None, - "expected attribute %s not found in element %s" % - (expected_attr.name, actual_node.tagName)) - self.assertEquals(expected_attr.value, actual_attr.value, - " values of attribute %s in element %s differ" % - (expected_attr.name, actual_node.tagName)) - - expected_children = self._GetChildren(expected_node) - actual_children = self._GetChildren(actual_node) - self.assertEquals( - len(expected_children), len(actual_children), - "number of child elements differ in element " + actual_node.tagName) - for child_id, child in expected_children.iteritems(): - self.assert_(child_id in actual_children, - '<%s> is not in <%s> (in element %s)' % - (child_id, actual_children, actual_node.tagName)) - self.AssertEquivalentNodes(child, actual_children[child_id]) - - identifying_attribute = { - "testsuites": "name", - "testsuite": "name", - "testcase": "name", - "failure": "message", - } - - def _GetChildren(self, element): - """ - Fetches all of the child nodes of element, a DOM Element object. - Returns them as the values of a dictionary keyed by the IDs of the - children. For , and elements, the ID - is the value of their "name" attribute; for elements, it is - the value of the "message" attribute; CDATA sections and non-whitespace - text nodes are concatenated into a single CDATA section with ID - "detail". An exception is raised if any element other than the above - four is encountered, if two child elements with the same identifying - attributes are encountered, or if any other type of node is encountered. - """ - - children = {} - for child in element.childNodes: - if child.nodeType == Node.ELEMENT_NODE: - self.assert_(child.tagName in self.identifying_attribute, - "Encountered unknown element <%s>" % child.tagName) - childID = child.getAttribute(self.identifying_attribute[child.tagName]) - self.assert_(childID not in children) - children[childID] = child - elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]: - if "detail" not in children: - if (child.nodeType == Node.CDATA_SECTION_NODE or - not child.nodeValue.isspace()): - children["detail"] = child.ownerDocument.createCDATASection( - child.nodeValue) - else: - children["detail"].nodeValue += child.nodeValue - else: - self.fail("Encountered unexpected node type %d" % child.nodeType) - return children - - def NormalizeXml(self, element): - """ - Normalizes Google Test's XML output to eliminate references to transient - information that may change from run to run. - - * The "time" attribute of , and - elements is replaced with a single asterisk, if it contains - only digit characters. - * The line number reported in the first line of the "message" - attribute of elements is replaced with a single asterisk. - * The directory names in file paths are removed. - * The stack traces are removed. - """ - - if element.tagName in ("testsuites", "testsuite", "testcase"): - time = element.getAttributeNode("time") - time.value = re.sub(r"^\d+(\.\d+)?$", "*", time.value) - elif element.tagName == "failure": - for child in element.childNodes: - if child.nodeType == Node.CDATA_SECTION_NODE: - # Removes the source line number. - cdata = re.sub(r"^.*[/\\](.*:)\d+\n", "\\1*\n", child.nodeValue) - # Removes the actual stack trace. - child.nodeValue = re.sub(r"\nStack trace:\n(.|\n)*", - "", cdata) - for child in element.childNodes: - if child.nodeType == Node.ELEMENT_NODE: - self.NormalizeXml(child) diff --git a/cpp/thirdparty/gtest-1.5.0/test/production.cc b/cpp/thirdparty/gtest-1.5.0/test/production.cc deleted file mode 100644 index 8b8a40b44..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/production.cc +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// This is part of the unit test for include/gtest/gtest_prod.h. - -#include "production.h" - -PrivateCode::PrivateCode() : x_(0) {} diff --git a/cpp/thirdparty/gtest-1.5.0/test/production.h b/cpp/thirdparty/gtest-1.5.0/test/production.h deleted file mode 100644 index 8f16fffa2..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/production.h +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright 2006, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: wan@google.com (Zhanyong Wan) -// -// This is part of the unit test for include/gtest/gtest_prod.h. - -#ifndef GTEST_TEST_PRODUCTION_H_ -#define GTEST_TEST_PRODUCTION_H_ - -#include - -class PrivateCode { - public: - // Declares a friend test that does not use a fixture. - FRIEND_TEST(PrivateCodeTest, CanAccessPrivateMembers); - - // Declares a friend test that uses a fixture. - FRIEND_TEST(PrivateCodeFixtureTest, CanAccessPrivateMembers); - - PrivateCode(); - - int x() const { return x_; } - private: - void set_x(int an_x) { x_ = an_x; } - int x_; -}; - -#endif // GTEST_TEST_PRODUCTION_H_ diff --git a/cpp/thirdparty/gtest-1.5.0/test/run_tests_util.py b/cpp/thirdparty/gtest-1.5.0/test/run_tests_util.py deleted file mode 100755 index 9e57931eb..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/run_tests_util.py +++ /dev/null @@ -1,466 +0,0 @@ -# Copyright 2008 Google Inc. All Rights Reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Provides facilities for running SCons-built Google Test/Mock tests.""" - - -import optparse -import os -import re -import sets -import sys - -try: - # subrocess module is a preferable way to invoke subprocesses but it may - # not be available on MacOS X 10.4. - # Suppresses the 'Import not at the top of the file' lint complaint. - # pylint: disable-msg=C6204 - import subprocess -except ImportError: - subprocess = None - -HELP_MSG = """Runs the specified tests for %(proj)s. - -SYNOPSIS - run_tests.py [OPTION]... [BUILD_DIR]... [TEST]... - -DESCRIPTION - Runs the specified tests (either binary or Python), and prints a - summary of the results. BUILD_DIRS will be used to search for the - binaries. If no TESTs are specified, all binary tests found in - BUILD_DIRs and all Python tests found in the directory test/ (in the - %(proj)s root) are run. - - TEST is a name of either a binary or a Python test. A binary test is - an executable file named *_test or *_unittest (with the .exe - extension on Windows) A Python test is a script named *_test.py or - *_unittest.py. - -OPTIONS - -h, --help - Print this help message. - -c CONFIGURATIONS - Specify build directories via build configurations. - CONFIGURATIONS is either a comma-separated list of build - configurations or 'all'. Each configuration is equivalent to - adding 'scons/build//%(proj)s/scons' to BUILD_DIRs. - Specifying -c=all is equivalent to providing all directories - listed in KNOWN BUILD DIRECTORIES section below. - -a - Equivalent to -c=all - -b - Equivalent to -c=all with the exception that the script will not - fail if some of the KNOWN BUILD DIRECTORIES do not exists; the - script will simply not run the tests there. 'b' stands for - 'built directories'. - -RETURN VALUE - Returns 0 if all tests are successful; otherwise returns 1. - -EXAMPLES - run_tests.py - Runs all tests for the default build configuration. - run_tests.py -a - Runs all tests with binaries in KNOWN BUILD DIRECTORIES. - run_tests.py -b - Runs all tests in KNOWN BUILD DIRECTORIES that have been - built. - run_tests.py foo/ - Runs all tests in the foo/ directory and all Python tests in - the directory test. The Python tests are instructed to look - for binaries in foo/. - run_tests.py bar_test.exe test/baz_test.exe foo/ bar/ - Runs foo/bar_test.exe, bar/bar_test.exe, foo/baz_test.exe, and - bar/baz_test.exe. - run_tests.py foo bar test/foo_test.py - Runs test/foo_test.py twice instructing it to look for its - test binaries in the directories foo and bar, - correspondingly. - -KNOWN BUILD DIRECTORIES - run_tests.py knows about directories where the SCons build script - deposits its products. These are the directories where run_tests.py - will be looking for its binaries. Currently, %(proj)s's SConstruct file - defines them as follows (the default build directory is the first one - listed in each group): - On Windows: - <%(proj)s root>/scons/build/win-dbg8/%(proj)s/scons/ - <%(proj)s root>/scons/build/win-opt8/%(proj)s/scons/ - On Mac: - <%(proj)s root>/scons/build/mac-dbg/%(proj)s/scons/ - <%(proj)s root>/scons/build/mac-opt/%(proj)s/scons/ - On other platforms: - <%(proj)s root>/scons/build/dbg/%(proj)s/scons/ - <%(proj)s root>/scons/build/opt/%(proj)s/scons/""" - -IS_WINDOWS = os.name == 'nt' -IS_MAC = os.name == 'posix' and os.uname()[0] == 'Darwin' -IS_CYGWIN = os.name == 'posix' and 'CYGWIN' in os.uname()[0] - -# Definition of CONFIGS must match that of the build directory names in the -# SConstruct script. The first list item is the default build configuration. -if IS_WINDOWS: - CONFIGS = ('win-dbg8', 'win-opt8') -elif IS_MAC: - CONFIGS = ('mac-dbg', 'mac-opt') -else: - CONFIGS = ('dbg', 'opt') - -if IS_WINDOWS or IS_CYGWIN: - PYTHON_TEST_REGEX = re.compile(r'_(unit)?test\.py$', re.IGNORECASE) - BINARY_TEST_REGEX = re.compile(r'_(unit)?test(\.exe)?$', re.IGNORECASE) - BINARY_TEST_SEARCH_REGEX = re.compile(r'_(unit)?test\.exe$', re.IGNORECASE) -else: - PYTHON_TEST_REGEX = re.compile(r'_(unit)?test\.py$') - BINARY_TEST_REGEX = re.compile(r'_(unit)?test$') - BINARY_TEST_SEARCH_REGEX = BINARY_TEST_REGEX - - -def _GetGtestBuildDir(injected_os, script_dir, config): - """Calculates path to the Google Test SCons build directory.""" - - return injected_os.path.normpath(injected_os.path.join(script_dir, - 'scons/build', - config, - 'gtest/scons')) - - -def _GetConfigFromBuildDir(build_dir): - """Extracts the configuration name from the build directory.""" - - # We don't want to depend on build_dir containing the correct path - # separators. - m = re.match(r'.*[\\/]([^\\/]+)[\\/][^\\/]+[\\/]scons[\\/]?$', build_dir) - if m: - return m.group(1) - else: - print >>sys.stderr, ('%s is an invalid build directory that does not ' - 'correspond to any configuration.' % (build_dir,)) - return '' - - -# All paths in this script are either absolute or relative to the current -# working directory, unless otherwise specified. -class TestRunner(object): - """Provides facilities for running Python and binary tests for Google Test.""" - - def __init__(self, - script_dir, - build_dir_var_name='GTEST_BUILD_DIR', - injected_os=os, - injected_subprocess=subprocess, - injected_build_dir_finder=_GetGtestBuildDir): - """Initializes a TestRunner instance. - - Args: - script_dir: File path to the calling script. - build_dir_var_name: Name of the env variable used to pass the - the build directory path to the invoked - tests. - injected_os: standard os module or a mock/stub for - testing. - injected_subprocess: standard subprocess module or a mock/stub - for testing - injected_build_dir_finder: function that determines the path to - the build directory. - """ - - self.os = injected_os - self.subprocess = injected_subprocess - self.build_dir_finder = injected_build_dir_finder - self.build_dir_var_name = build_dir_var_name - self.script_dir = script_dir - - def _GetBuildDirForConfig(self, config): - """Returns the build directory for a given configuration.""" - - return self.build_dir_finder(self.os, self.script_dir, config) - - def _Run(self, args): - """Runs the executable with given args (args[0] is the executable name). - - Args: - args: Command line arguments for the process. - - Returns: - Process's exit code if it exits normally, or -signal if the process is - killed by a signal. - """ - - if self.subprocess: - return self.subprocess.Popen(args).wait() - else: - return self.os.spawnv(self.os.P_WAIT, args[0], args) - - def _RunBinaryTest(self, test): - """Runs the binary test given its path. - - Args: - test: Path to the test binary. - - Returns: - Process's exit code if it exits normally, or -signal if the process is - killed by a signal. - """ - - return self._Run([test]) - - def _RunPythonTest(self, test, build_dir): - """Runs the Python test script with the specified build directory. - - Args: - test: Path to the test's Python script. - build_dir: Path to the directory where the test binary is to be found. - - Returns: - Process's exit code if it exits normally, or -signal if the process is - killed by a signal. - """ - - old_build_dir = self.os.environ.get(self.build_dir_var_name) - - try: - self.os.environ[self.build_dir_var_name] = build_dir - - # If this script is run on a Windows machine that has no association - # between the .py extension and a python interpreter, simply passing - # the script name into subprocess.Popen/os.spawn will not work. - print 'Running %s . . .' % (test,) - return self._Run([sys.executable, test]) - - finally: - if old_build_dir is None: - del self.os.environ[self.build_dir_var_name] - else: - self.os.environ[self.build_dir_var_name] = old_build_dir - - def _FindFilesByRegex(self, directory, regex): - """Returns files in a directory whose names match a regular expression. - - Args: - directory: Path to the directory to search for files. - regex: Regular expression to filter file names. - - Returns: - The list of the paths to the files in the directory. - """ - - return [self.os.path.join(directory, file_name) - for file_name in self.os.listdir(directory) - if re.search(regex, file_name)] - - # TODO(vladl@google.com): Implement parsing of scons/SConscript to run all - # tests defined there when no tests are specified. - # TODO(vladl@google.com): Update the docstring after the code is changed to - # try to test all builds defined in scons/SConscript. - def GetTestsToRun(self, - args, - named_configurations, - built_configurations, - available_configurations=CONFIGS, - python_tests_to_skip=None): - """Determines what tests should be run. - - Args: - args: The list of non-option arguments from the command line. - named_configurations: The list of configurations specified via -c or -a. - built_configurations: True if -b has been specified. - available_configurations: a list of configurations available on the - current platform, injectable for testing. - python_tests_to_skip: a collection of (configuration, python test name)s - that need to be skipped. - - Returns: - A tuple with 2 elements: the list of Python tests to run and the list of - binary tests to run. - """ - - if named_configurations == 'all': - named_configurations = ','.join(available_configurations) - - normalized_args = [self.os.path.normpath(arg) for arg in args] - - # A final list of build directories which will be searched for the test - # binaries. First, add directories specified directly on the command - # line. - build_dirs = filter(self.os.path.isdir, normalized_args) - - # Adds build directories specified via their build configurations using - # the -c or -a options. - if named_configurations: - build_dirs += [self._GetBuildDirForConfig(config) - for config in named_configurations.split(',')] - - # Adds KNOWN BUILD DIRECTORIES if -b is specified. - if built_configurations: - build_dirs += [self._GetBuildDirForConfig(config) - for config in available_configurations - if self.os.path.isdir(self._GetBuildDirForConfig(config))] - - # If no directories were specified either via -a, -b, -c, or directly, use - # the default configuration. - elif not build_dirs: - build_dirs = [self._GetBuildDirForConfig(available_configurations[0])] - - # Makes sure there are no duplications. - build_dirs = sets.Set(build_dirs) - - errors_found = False - listed_python_tests = [] # All Python tests listed on the command line. - listed_binary_tests = [] # All binary tests listed on the command line. - - test_dir = self.os.path.normpath(self.os.path.join(self.script_dir, 'test')) - - # Sifts through non-directory arguments fishing for any Python or binary - # tests and detecting errors. - for argument in sets.Set(normalized_args) - build_dirs: - if re.search(PYTHON_TEST_REGEX, argument): - python_path = self.os.path.join(test_dir, - self.os.path.basename(argument)) - if self.os.path.isfile(python_path): - listed_python_tests.append(python_path) - else: - sys.stderr.write('Unable to find Python test %s' % argument) - errors_found = True - elif re.search(BINARY_TEST_REGEX, argument): - # This script also accepts binary test names prefixed with test/ for - # the convenience of typing them (can use path completions in the - # shell). Strips test/ prefix from the binary test names. - listed_binary_tests.append(self.os.path.basename(argument)) - else: - sys.stderr.write('%s is neither test nor build directory' % argument) - errors_found = True - - if errors_found: - return None - - user_has_listed_tests = listed_python_tests or listed_binary_tests - - if user_has_listed_tests: - selected_python_tests = listed_python_tests - else: - selected_python_tests = self._FindFilesByRegex(test_dir, - PYTHON_TEST_REGEX) - - # TODO(vladl@google.com): skip unbuilt Python tests when -b is specified. - python_test_pairs = [] - for directory in build_dirs: - for test in selected_python_tests: - config = _GetConfigFromBuildDir(directory) - file_name = os.path.basename(test) - if python_tests_to_skip and (config, file_name) in python_tests_to_skip: - print ('NOTE: %s is skipped for configuration %s, as it does not ' - 'work there.' % (file_name, config)) - else: - python_test_pairs.append((directory, test)) - - binary_test_pairs = [] - for directory in build_dirs: - if user_has_listed_tests: - binary_test_pairs.extend( - [(directory, self.os.path.join(directory, test)) - for test in listed_binary_tests]) - else: - tests = self._FindFilesByRegex(directory, BINARY_TEST_SEARCH_REGEX) - binary_test_pairs.extend([(directory, test) for test in tests]) - - return (python_test_pairs, binary_test_pairs) - - def RunTests(self, python_tests, binary_tests): - """Runs Python and binary tests and reports results to the standard output. - - Args: - python_tests: List of Python tests to run in the form of tuples - (build directory, Python test script). - binary_tests: List of binary tests to run in the form of tuples - (build directory, binary file). - - Returns: - The exit code the program should pass into sys.exit(). - """ - - if python_tests or binary_tests: - results = [] - for directory, test in python_tests: - results.append((directory, - test, - self._RunPythonTest(test, directory) == 0)) - for directory, test in binary_tests: - results.append((directory, - self.os.path.basename(test), - self._RunBinaryTest(test) == 0)) - - failed = [(directory, test) - for (directory, test, success) in results - if not success] - print - print '%d tests run.' % len(results) - if failed: - print 'The following %d tests failed:' % len(failed) - for (directory, test) in failed: - print '%s in %s' % (test, directory) - return 1 - else: - print 'All tests passed!' - else: # No tests defined - print 'Nothing to test - no tests specified!' - - return 0 - - -def ParseArgs(project_name, argv=None, help_callback=None): - """Parses the options run_tests.py uses.""" - - # Suppresses lint warning on unused arguments. These arguments are - # required by optparse, even though they are unused. - # pylint: disable-msg=W0613 - def PrintHelp(option, opt, value, parser): - print HELP_MSG % {'proj': project_name} - sys.exit(1) - - parser = optparse.OptionParser() - parser.add_option('-c', - action='store', - dest='configurations', - default=None) - parser.add_option('-a', - action='store_const', - dest='configurations', - default=None, - const='all') - parser.add_option('-b', - action='store_const', - dest='built_configurations', - default=False, - const=True) - # Replaces the built-in help with ours. - parser.remove_option('-h') - parser.add_option('-h', '--help', - action='callback', - callback=help_callback or PrintHelp) - return parser.parse_args(argv) diff --git a/cpp/thirdparty/gtest-1.5.0/test/run_tests_util_test.py b/cpp/thirdparty/gtest-1.5.0/test/run_tests_util_test.py deleted file mode 100755 index 9c55726fd..000000000 --- a/cpp/thirdparty/gtest-1.5.0/test/run_tests_util_test.py +++ /dev/null @@ -1,676 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2009 Google Inc. All Rights Reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""Tests for run_tests_util.py test runner script.""" - -__author__ = 'vladl@google.com (Vlad Losev)' - -import os -import re -import sets -import unittest - -import run_tests_util - - -GTEST_DBG_DIR = 'scons/build/dbg/gtest/scons' -GTEST_OPT_DIR = 'scons/build/opt/gtest/scons' -GTEST_OTHER_DIR = 'scons/build/other/gtest/scons' - - -def AddExeExtension(path): - """Appends .exe to the path on Windows or Cygwin.""" - - if run_tests_util.IS_WINDOWS or run_tests_util.IS_CYGWIN: - return path + '.exe' - else: - return path - - -class FakePath(object): - """A fake os.path module for testing.""" - - def __init__(self, current_dir=os.getcwd(), known_paths=None): - self.current_dir = current_dir - self.tree = {} - self.path_separator = os.sep - - # known_paths contains either absolute or relative paths. Relative paths - # are absolutized with self.current_dir. - if known_paths: - self._AddPaths(known_paths) - - def _AddPath(self, path): - ends_with_slash = path.endswith('/') - path = self.abspath(path) - if ends_with_slash: - path += self.path_separator - name_list = path.split(self.path_separator) - tree = self.tree - for name in name_list[:-1]: - if not name: - continue - if name in tree: - tree = tree[name] - else: - tree[name] = {} - tree = tree[name] - - name = name_list[-1] - if name: - if name in tree: - assert tree[name] == 1 - else: - tree[name] = 1 - - def _AddPaths(self, paths): - for path in paths: - self._AddPath(path) - - def PathElement(self, path): - """Returns an internal representation of directory tree entry for path.""" - tree = self.tree - name_list = self.abspath(path).split(self.path_separator) - for name in name_list: - if not name: - continue - tree = tree.get(name, None) - if tree is None: - break - - return tree - - # Silences pylint warning about using standard names. - # pylint: disable-msg=C6409 - def normpath(self, path): - return os.path.normpath(path) - - def abspath(self, path): - return self.normpath(os.path.join(self.current_dir, path)) - - def isfile(self, path): - return self.PathElement(self.abspath(path)) == 1 - - def isdir(self, path): - return type(self.PathElement(self.abspath(path))) == type(dict()) - - def basename(self, path): - return os.path.basename(path) - - def dirname(self, path): - return os.path.dirname(path) - - def join(self, *kargs): - return os.path.join(*kargs) - - -class FakeOs(object): - """A fake os module for testing.""" - P_WAIT = os.P_WAIT - - def __init__(self, fake_path_module): - self.path = fake_path_module - - # Some methods/attributes are delegated to the real os module. - self.environ = os.environ - - # pylint: disable-msg=C6409 - def listdir(self, path): - assert self.path.isdir(path) - return self.path.PathElement(path).iterkeys() - - def spawnv(self, wait, executable, *kargs): - assert wait == FakeOs.P_WAIT - return self.spawn_impl(executable, kargs) - - -class GetTestsToRunTest(unittest.TestCase): - """Exercises TestRunner.GetTestsToRun.""" - - def NormalizeGetTestsToRunResults(self, results): - """Normalizes path data returned from GetTestsToRun for comparison.""" - - def NormalizePythonTestPair(pair): - """Normalizes path data in the (directory, python_script) pair.""" - - return (os.path.normpath(pair[0]), os.path.normpath(pair[1])) - - def NormalizeBinaryTestPair(pair): - """Normalizes path data in the (directory, binary_executable) pair.""" - - directory, executable = map(os.path.normpath, pair) - - # On Windows and Cygwin, the test file names have the .exe extension, but - # they can be invoked either by name or by name+extension. Our test must - # accommodate both situations. - if run_tests_util.IS_WINDOWS or run_tests_util.IS_CYGWIN: - executable = re.sub(r'\.exe$', '', executable) - return (directory, executable) - - python_tests = sets.Set(map(NormalizePythonTestPair, results[0])) - binary_tests = sets.Set(map(NormalizeBinaryTestPair, results[1])) - return (python_tests, binary_tests) - - def AssertResultsEqual(self, results, expected): - """Asserts results returned by GetTestsToRun equal to expected results.""" - - self.assertEqual(self.NormalizeGetTestsToRunResults(results), - self.NormalizeGetTestsToRunResults(expected), - 'Incorrect set of tests returned:\n%s\nexpected:\n%s' % - (results, expected)) - - def setUp(self): - self.fake_os = FakeOs(FakePath( - current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)), - known_paths=[AddExeExtension(GTEST_DBG_DIR + '/gtest_unittest'), - AddExeExtension(GTEST_OPT_DIR + '/gtest_unittest'), - 'test/gtest_color_test.py'])) - self.fake_configurations = ['dbg', 'opt'] - self.test_runner = run_tests_util.TestRunner(script_dir='.', - injected_os=self.fake_os, - injected_subprocess=None) - - def testBinaryTestsOnly(self): - """Exercises GetTestsToRun with parameters designating binary tests only.""" - - # A default build. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_unittest'], - '', - False, - available_configurations=self.fake_configurations), - ([], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')])) - - # An explicitly specified directory. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [GTEST_DBG_DIR, 'gtest_unittest'], - '', - False, - available_configurations=self.fake_configurations), - ([], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')])) - - # A particular configuration. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_unittest'], - 'other', - False, - available_configurations=self.fake_configurations), - ([], - [(GTEST_OTHER_DIR, GTEST_OTHER_DIR + '/gtest_unittest')])) - - # All available configurations - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_unittest'], - 'all', - False, - available_configurations=self.fake_configurations), - ([], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest'), - (GTEST_OPT_DIR, GTEST_OPT_DIR + '/gtest_unittest')])) - - # All built configurations (unbuilt don't cause failure). - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_unittest'], - '', - True, - available_configurations=self.fake_configurations + ['unbuilt']), - ([], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest'), - (GTEST_OPT_DIR, GTEST_OPT_DIR + '/gtest_unittest')])) - - # A combination of an explicit directory and a configuration. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [GTEST_DBG_DIR, 'gtest_unittest'], - 'opt', - False, - available_configurations=self.fake_configurations), - ([], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest'), - (GTEST_OPT_DIR, GTEST_OPT_DIR + '/gtest_unittest')])) - - # Same test specified in an explicit directory and via a configuration. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [GTEST_DBG_DIR, 'gtest_unittest'], - 'dbg', - False, - available_configurations=self.fake_configurations), - ([], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')])) - - # All built configurations + explicit directory + explicit configuration. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [GTEST_DBG_DIR, 'gtest_unittest'], - 'opt', - True, - available_configurations=self.fake_configurations), - ([], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest'), - (GTEST_OPT_DIR, GTEST_OPT_DIR + '/gtest_unittest')])) - - def testPythonTestsOnly(self): - """Exercises GetTestsToRun with parameters designating Python tests only.""" - - # A default build. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_color_test.py'], - '', - False, - available_configurations=self.fake_configurations), - ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')], - [])) - - # An explicitly specified directory. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [GTEST_DBG_DIR, 'test/gtest_color_test.py'], - '', - False, - available_configurations=self.fake_configurations), - ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')], - [])) - - # A particular configuration. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_color_test.py'], - 'other', - False, - available_configurations=self.fake_configurations), - ([(GTEST_OTHER_DIR, 'test/gtest_color_test.py')], - [])) - - # All available configurations - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['test/gtest_color_test.py'], - 'all', - False, - available_configurations=self.fake_configurations), - ([(GTEST_DBG_DIR, 'test/gtest_color_test.py'), - (GTEST_OPT_DIR, 'test/gtest_color_test.py')], - [])) - - # All built configurations (unbuilt don't cause failure). - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_color_test.py'], - '', - True, - available_configurations=self.fake_configurations + ['unbuilt']), - ([(GTEST_DBG_DIR, 'test/gtest_color_test.py'), - (GTEST_OPT_DIR, 'test/gtest_color_test.py')], - [])) - - # A combination of an explicit directory and a configuration. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [GTEST_DBG_DIR, 'gtest_color_test.py'], - 'opt', - False, - available_configurations=self.fake_configurations), - ([(GTEST_DBG_DIR, 'test/gtest_color_test.py'), - (GTEST_OPT_DIR, 'test/gtest_color_test.py')], - [])) - - # Same test specified in an explicit directory and via a configuration. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [GTEST_DBG_DIR, 'gtest_color_test.py'], - 'dbg', - False, - available_configurations=self.fake_configurations), - ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')], - [])) - - # All built configurations + explicit directory + explicit configuration. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [GTEST_DBG_DIR, 'gtest_color_test.py'], - 'opt', - True, - available_configurations=self.fake_configurations), - ([(GTEST_DBG_DIR, 'test/gtest_color_test.py'), - (GTEST_OPT_DIR, 'test/gtest_color_test.py')], - [])) - - def testCombinationOfBinaryAndPythonTests(self): - """Exercises GetTestsToRun with mixed binary/Python tests.""" - - # Use only default configuration for this test. - - # Neither binary nor Python tests are specified so find all. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [], - '', - False, - available_configurations=self.fake_configurations), - ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')])) - - # Specifying both binary and Python tests. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_unittest', 'gtest_color_test.py'], - '', - False, - available_configurations=self.fake_configurations), - ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')])) - - # Specifying binary tests suppresses Python tests. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_unittest'], - '', - False, - available_configurations=self.fake_configurations), - ([], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')])) - - # Specifying Python tests suppresses binary tests. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_color_test.py'], - '', - False, - available_configurations=self.fake_configurations), - ([(GTEST_DBG_DIR, 'test/gtest_color_test.py')], - [])) - - def testIgnoresNonTestFiles(self): - """Verifies that GetTestsToRun ignores non-test files in the filesystem.""" - - self.fake_os = FakeOs(FakePath( - current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)), - known_paths=[AddExeExtension(GTEST_DBG_DIR + '/gtest_nontest'), - 'test/'])) - self.test_runner = run_tests_util.TestRunner(script_dir='.', - injected_os=self.fake_os, - injected_subprocess=None) - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [], - '', - True, - available_configurations=self.fake_configurations), - ([], [])) - - def testWorksFromDifferentDir(self): - """Exercises GetTestsToRun from a directory different from run_test.py's.""" - - # Here we simulate an test script in directory /d/ called from the - # directory /a/b/c/. - self.fake_os = FakeOs(FakePath( - current_dir=os.path.abspath('/a/b/c'), - known_paths=[ - '/a/b/c/', - AddExeExtension('/d/' + GTEST_DBG_DIR + '/gtest_unittest'), - AddExeExtension('/d/' + GTEST_OPT_DIR + '/gtest_unittest'), - '/d/test/gtest_color_test.py'])) - self.fake_configurations = ['dbg', 'opt'] - self.test_runner = run_tests_util.TestRunner(script_dir='/d/', - injected_os=self.fake_os, - injected_subprocess=None) - # A binary test. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_unittest'], - '', - False, - available_configurations=self.fake_configurations), - ([], - [('/d/' + GTEST_DBG_DIR, '/d/' + GTEST_DBG_DIR + '/gtest_unittest')])) - - # A Python test. - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - ['gtest_color_test.py'], - '', - False, - available_configurations=self.fake_configurations), - ([('/d/' + GTEST_DBG_DIR, '/d/test/gtest_color_test.py')], [])) - - def testNonTestBinary(self): - """Exercises GetTestsToRun with a non-test parameter.""" - - self.assert_( - not self.test_runner.GetTestsToRun( - ['gtest_unittest_not_really'], - '', - False, - available_configurations=self.fake_configurations)) - - def testNonExistingPythonTest(self): - """Exercises GetTestsToRun with a non-existent Python test parameter.""" - - self.assert_( - not self.test_runner.GetTestsToRun( - ['nonexistent_test.py'], - '', - False, - available_configurations=self.fake_configurations)) - - if run_tests_util.IS_WINDOWS or run_tests_util.IS_CYGWIN: - - def testDoesNotPickNonExeFilesOnWindows(self): - """Verifies that GetTestsToRun does not find _test files on Windows.""" - - self.fake_os = FakeOs(FakePath( - current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)), - known_paths=['/d/' + GTEST_DBG_DIR + '/gtest_test', 'test/'])) - self.test_runner = run_tests_util.TestRunner(script_dir='.', - injected_os=self.fake_os, - injected_subprocess=None) - self.AssertResultsEqual( - self.test_runner.GetTestsToRun( - [], - '', - True, - available_configurations=self.fake_configurations), - ([], [])) - - -class RunTestsTest(unittest.TestCase): - """Exercises TestRunner.RunTests.""" - - def SpawnSuccess(self, unused_executable, unused_argv): - """Fakes test success by returning 0 as an exit code.""" - - self.num_spawn_calls += 1 - return 0 - - def SpawnFailure(self, unused_executable, unused_argv): - """Fakes test success by returning 1 as an exit code.""" - - self.num_spawn_calls += 1 - return 1 - - def setUp(self): - self.fake_os = FakeOs(FakePath( - current_dir=os.path.abspath(os.path.dirname(run_tests_util.__file__)), - known_paths=[ - AddExeExtension(GTEST_DBG_DIR + '/gtest_unittest'), - AddExeExtension(GTEST_OPT_DIR + '/gtest_unittest'), - 'test/gtest_color_test.py'])) - self.fake_configurations = ['dbg', 'opt'] - self.test_runner = run_tests_util.TestRunner( - script_dir=os.path.dirname(__file__) or '.', - injected_os=self.fake_os, - injected_subprocess=None) - self.num_spawn_calls = 0 # A number of calls to spawn. - - def testRunPythonTestSuccess(self): - """Exercises RunTests to handle a Python test success.""" - - self.fake_os.spawn_impl = self.SpawnSuccess - self.assertEqual( - self.test_runner.RunTests( - [(GTEST_DBG_DIR, 'test/gtest_color_test.py')], - []), - 0) - self.assertEqual(self.num_spawn_calls, 1) - - def testRunBinaryTestSuccess(self): - """Exercises RunTests to handle a binary test success.""" - - self.fake_os.spawn_impl = self.SpawnSuccess - self.assertEqual( - self.test_runner.RunTests( - [], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]), - 0) - self.assertEqual(self.num_spawn_calls, 1) - - def testRunPythonTestFauilure(self): - """Exercises RunTests to handle a Python test failure.""" - - self.fake_os.spawn_impl = self.SpawnFailure - self.assertEqual( - self.test_runner.RunTests( - [(GTEST_DBG_DIR, 'test/gtest_color_test.py')], - []), - 1) - self.assertEqual(self.num_spawn_calls, 1) - - def testRunBinaryTestFailure(self): - """Exercises RunTests to handle a binary test failure.""" - - self.fake_os.spawn_impl = self.SpawnFailure - self.assertEqual( - self.test_runner.RunTests( - [], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]), - 1) - self.assertEqual(self.num_spawn_calls, 1) - - def testCombinedTestSuccess(self): - """Exercises RunTests to handle a success of both Python and binary test.""" - - self.fake_os.spawn_impl = self.SpawnSuccess - self.assertEqual( - self.test_runner.RunTests( - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]), - 0) - self.assertEqual(self.num_spawn_calls, 2) - - def testCombinedTestSuccessAndFailure(self): - """Exercises RunTests to handle a success of both Python and binary test.""" - - def SpawnImpl(executable, argv): - self.num_spawn_calls += 1 - # Simulates failure of a Python test and success of a binary test. - if '.py' in executable or '.py' in argv[0]: - return 1 - else: - return 0 - - self.fake_os.spawn_impl = SpawnImpl - self.assertEqual( - self.test_runner.RunTests( - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')], - [(GTEST_DBG_DIR, GTEST_DBG_DIR + '/gtest_unittest')]), - 0) - self.assertEqual(self.num_spawn_calls, 2) - - -class ParseArgsTest(unittest.TestCase): - """Exercises ParseArgs.""" - - def testNoOptions(self): - options, args = run_tests_util.ParseArgs('gtest', argv=['script.py']) - self.assertEqual(args, ['script.py']) - self.assert_(options.configurations is None) - self.assertFalse(options.built_configurations) - - def testOptionC(self): - options, args = run_tests_util.ParseArgs( - 'gtest', argv=['script.py', '-c', 'dbg']) - self.assertEqual(args, ['script.py']) - self.assertEqual(options.configurations, 'dbg') - self.assertFalse(options.built_configurations) - - def testOptionA(self): - options, args = run_tests_util.ParseArgs('gtest', argv=['script.py', '-a']) - self.assertEqual(args, ['script.py']) - self.assertEqual(options.configurations, 'all') - self.assertFalse(options.built_configurations) - - def testOptionB(self): - options, args = run_tests_util.ParseArgs('gtest', argv=['script.py', '-b']) - self.assertEqual(args, ['script.py']) - self.assert_(options.configurations is None) - self.assertTrue(options.built_configurations) - - def testOptionCAndOptionB(self): - options, args = run_tests_util.ParseArgs( - 'gtest', argv=['script.py', '-c', 'dbg', '-b']) - self.assertEqual(args, ['script.py']) - self.assertEqual(options.configurations, 'dbg') - self.assertTrue(options.built_configurations) - - def testOptionH(self): - help_called = [False] - - # Suppresses lint warning on unused arguments. These arguments are - # required by optparse, even though they are unused. - # pylint: disable-msg=W0613 - def VerifyHelp(option, opt, value, parser): - help_called[0] = True - - # Verifies that -h causes the help callback to be called. - help_called[0] = False - _, args = run_tests_util.ParseArgs( - 'gtest', argv=['script.py', '-h'], help_callback=VerifyHelp) - self.assertEqual(args, ['script.py']) - self.assertTrue(help_called[0]) - - # Verifies that --help causes the help callback to be called. - help_called[0] = False - _, args = run_tests_util.ParseArgs( - 'gtest', argv=['script.py', '--help'], help_callback=VerifyHelp) - self.assertEqual(args, ['script.py']) - self.assertTrue(help_called[0]) - - -if __name__ == '__main__': - unittest.main() diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Config/DebugProject.xcconfig b/cpp/thirdparty/gtest-1.5.0/xcode/Config/DebugProject.xcconfig deleted file mode 100644 index 3d68157d5..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Config/DebugProject.xcconfig +++ /dev/null @@ -1,30 +0,0 @@ -// -// DebugProject.xcconfig -// -// These are Debug Configuration project settings for the gtest framework and -// examples. It is set in the "Based On:" dropdown in the "Project" info -// dialog. -// This file is based on the Xcode Configuration files in: -// http://code.google.com/p/google-toolbox-for-mac/ -// - -#include "General.xcconfig" - -// No optimization -GCC_OPTIMIZATION_LEVEL = 0 - -// Deployment postprocessing is what triggers Xcode to strip, turn it off -DEPLOYMENT_POSTPROCESSING = NO - -// Dead code stripping off -DEAD_CODE_STRIPPING = NO - -// Debug symbols should be on obviously -GCC_GENERATE_DEBUGGING_SYMBOLS = YES - -// Define the DEBUG macro in all debug builds -OTHER_CFLAGS = $(OTHER_CFLAGS) -DDEBUG=1 - -// These are turned off to avoid STL incompatibilities with client code -// // Turns on special C++ STL checks to "encourage" good STL use -// GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) _GLIBCXX_DEBUG_PEDANTIC _GLIBCXX_DEBUG _GLIBCPP_CONCEPT_CHECKS diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Config/FrameworkTarget.xcconfig b/cpp/thirdparty/gtest-1.5.0/xcode/Config/FrameworkTarget.xcconfig deleted file mode 100644 index 357b1c8fb..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Config/FrameworkTarget.xcconfig +++ /dev/null @@ -1,17 +0,0 @@ -// -// FrameworkTarget.xcconfig -// -// These are Framework target settings for the gtest framework and examples. It -// is set in the "Based On:" dropdown in the "Target" info dialog. -// This file is based on the Xcode Configuration files in: -// http://code.google.com/p/google-toolbox-for-mac/ -// - -// Dynamic libs need to be position independent -GCC_DYNAMIC_NO_PIC = NO - -// Dynamic libs should not have their external symbols stripped. -STRIP_STYLE = non-global - -// Let the user install by specifying the $DSTROOT with xcodebuild -SKIP_INSTALL = NO diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Config/General.xcconfig b/cpp/thirdparty/gtest-1.5.0/xcode/Config/General.xcconfig deleted file mode 100644 index f23e32227..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Config/General.xcconfig +++ /dev/null @@ -1,41 +0,0 @@ -// -// General.xcconfig -// -// These are General configuration settings for the gtest framework and -// examples. -// This file is based on the Xcode Configuration files in: -// http://code.google.com/p/google-toolbox-for-mac/ -// - -// Build for PPC and Intel, 32- and 64-bit -ARCHS = i386 x86_64 ppc ppc64 - -// Zerolink prevents link warnings so turn it off -ZERO_LINK = NO - -// Prebinding considered unhelpful in 10.3 and later -PREBINDING = NO - -// Strictest warning policy -WARNING_CFLAGS = -Wall -Werror -Wendif-labels -Wnewline-eof -Wno-sign-compare -Wshadow - -// Work around Xcode bugs by using external strip. See: -// http://lists.apple.com/archives/Xcode-users/2006/Feb/msg00050.html -SEPARATE_STRIP = YES - -// Force C99 dialect -GCC_C_LANGUAGE_STANDARD = c99 - -// not sure why apple defaults this on, but it's pretty risky -ALWAYS_SEARCH_USER_PATHS = NO - -// Turn on position dependent code for most cases (overridden where appropriate) -GCC_DYNAMIC_NO_PIC = YES - -// Default SDK and minimum OS version is 10.4 -SDKROOT = $(DEVELOPER_SDK_DIR)/MacOSX10.4u.sdk -MACOSX_DEPLOYMENT_TARGET = 10.4 -GCC_VERSION = 4.0 - -// VERSIONING BUILD SETTINGS (used in Info.plist) -GTEST_VERSIONINFO_ABOUT = © 2008 Google Inc. diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Config/ReleaseProject.xcconfig b/cpp/thirdparty/gtest-1.5.0/xcode/Config/ReleaseProject.xcconfig deleted file mode 100644 index 5349f0a04..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Config/ReleaseProject.xcconfig +++ /dev/null @@ -1,32 +0,0 @@ -// -// ReleaseProject.xcconfig -// -// These are Release Configuration project settings for the gtest framework -// and examples. It is set in the "Based On:" dropdown in the "Project" info -// dialog. -// This file is based on the Xcode Configuration files in: -// http://code.google.com/p/google-toolbox-for-mac/ -// - -#include "General.xcconfig" - -// subconfig/Release.xcconfig - -// Optimize for space and size (Apple recommendation) -GCC_OPTIMIZATION_LEVEL = s - -// Deploment postprocessing is what triggers Xcode to strip -DEPLOYMENT_POSTPROCESSING = YES - -// No symbols -GCC_GENERATE_DEBUGGING_SYMBOLS = NO - -// Dead code strip does not affect ObjC code but can help for C -DEAD_CODE_STRIPPING = YES - -// NDEBUG is used by things like assert.h, so define it for general compat. -// ASSERT going away in release tends to create unused vars. -OTHER_CFLAGS = $(OTHER_CFLAGS) -DNDEBUG=1 -Wno-unused-variable - -// When we strip we want to strip all symbols in release, but save externals. -STRIP_STYLE = all diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Config/StaticLibraryTarget.xcconfig b/cpp/thirdparty/gtest-1.5.0/xcode/Config/StaticLibraryTarget.xcconfig deleted file mode 100644 index 3922fa51d..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Config/StaticLibraryTarget.xcconfig +++ /dev/null @@ -1,18 +0,0 @@ -// -// StaticLibraryTarget.xcconfig -// -// These are static library target settings for libgtest.a. It -// is set in the "Based On:" dropdown in the "Target" info dialog. -// This file is based on the Xcode Configuration files in: -// http://code.google.com/p/google-toolbox-for-mac/ -// - -// Static libs can be included in bundles so make them position independent -GCC_DYNAMIC_NO_PIC = NO - -// Static libs should not have their internal globals or external symbols -// stripped. -STRIP_STYLE = debugging - -// Let the user install by specifying the $DSTROOT with xcodebuild -SKIP_INSTALL = NO diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Config/TestTarget.xcconfig b/cpp/thirdparty/gtest-1.5.0/xcode/Config/TestTarget.xcconfig deleted file mode 100644 index e6652ba85..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Config/TestTarget.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -// -// TestTarget.xcconfig -// -// These are Test target settings for the gtest framework and examples. It -// is set in the "Based On:" dropdown in the "Target" info dialog. - -PRODUCT_NAME = $(TARGET_NAME) -HEADER_SEARCH_PATHS = ../include diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Resources/Info.plist b/cpp/thirdparty/gtest-1.5.0/xcode/Resources/Info.plist deleted file mode 100644 index 9dd28ea14..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Resources/Info.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIconFile - - CFBundleIdentifier - com.google.${PRODUCT_NAME} - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - GTEST_VERSIONINFO_LONG - CFBundleShortVersionString - GTEST_VERSIONINFO_SHORT - CFBundleGetInfoString - ${PRODUCT_NAME} GTEST_VERSIONINFO_LONG, ${GTEST_VERSIONINFO_ABOUT} - NSHumanReadableCopyright - ${GTEST_VERSIONINFO_ABOUT} - CSResourcesFileMapped - - - diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/Info.plist b/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/Info.plist deleted file mode 100644 index f3852edea..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/Info.plist +++ /dev/null @@ -1,28 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIconFile - - CFBundleIdentifier - com.google.gtest.${PRODUCT_NAME:identifier} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CSResourcesFileMapped - - - diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj b/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj deleted file mode 100644 index 497617eb6..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj +++ /dev/null @@ -1,457 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 42; - objects = { - -/* Begin PBXAggregateTarget section */ - 4024D162113D7D2400C7059E /* Test */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 4024D169113D7D4600C7059E /* Build configuration list for PBXAggregateTarget "Test" */; - buildPhases = ( - 4024D161113D7D2400C7059E /* ShellScript */, - ); - dependencies = ( - 4024D166113D7D3100C7059E /* PBXTargetDependency */, - ); - name = Test; - productName = TestAndBuild; - }; - 4024D1E9113D83FF00C7059E /* TestAndBuild */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 4024D1F0113D842B00C7059E /* Build configuration list for PBXAggregateTarget "TestAndBuild" */; - buildPhases = ( - ); - dependencies = ( - 4024D1ED113D840900C7059E /* PBXTargetDependency */, - 4024D1EF113D840D00C7059E /* PBXTargetDependency */, - ); - name = TestAndBuild; - productName = TestAndBuild; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 3B7EB1250E5AEE3500C7F239 /* widget.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B7EB1230E5AEE3500C7F239 /* widget.cc */; }; - 3B7EB1260E5AEE3500C7F239 /* widget.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B7EB1240E5AEE3500C7F239 /* widget.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3B7EB1280E5AEE4600C7F239 /* widget_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B7EB1270E5AEE4600C7F239 /* widget_test.cc */; }; - 3B7EB1480E5AF3B400C7F239 /* Widget.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8D07F2C80486CC7A007CD1D0 /* Widget.framework */; }; - 4024D188113D7D7800C7059E /* libgtest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4024D185113D7D5500C7059E /* libgtest.a */; }; - 4024D189113D7D7A00C7059E /* libgtest_main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4024D183113D7D5500C7059E /* libgtest_main.a */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 3B07BDF00E3F3FAE00647869 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D07F2BC0486CC7A007CD1D0; - remoteInfo = gTestExample; - }; - 4024D165113D7D3100C7059E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3B07BDE90E3F3F9E00647869; - remoteInfo = WidgetFrameworkTest; - }; - 4024D1EC113D840900C7059E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D07F2BC0486CC7A007CD1D0; - remoteInfo = WidgetFramework; - }; - 4024D1EE113D840D00C7059E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4024D162113D7D2400C7059E; - remoteInfo = Test; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 3B07BDEA0E3F3F9E00647869 /* WidgetFrameworkTest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = WidgetFrameworkTest; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B7EB1230E5AEE3500C7F239 /* widget.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = widget.cc; sourceTree = ""; }; - 3B7EB1240E5AEE3500C7F239 /* widget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = widget.h; sourceTree = ""; }; - 3B7EB1270E5AEE4600C7F239 /* widget_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = widget_test.cc; sourceTree = ""; }; - 4024D183113D7D5500C7059E /* libgtest_main.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libgtest_main.a; path = /usr/local/lib/libgtest_main.a; sourceTree = ""; }; - 4024D185113D7D5500C7059E /* libgtest.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libgtest.a; path = /usr/local/lib/libgtest.a; sourceTree = ""; }; - 4024D1E2113D838200C7059E /* runtests.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = runtests.sh; sourceTree = ""; }; - 8D07F2C70486CC7A007CD1D0 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 8D07F2C80486CC7A007CD1D0 /* Widget.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Widget.framework; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 3B07BDE80E3F3F9E00647869 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4024D189113D7D7A00C7059E /* libgtest_main.a in Frameworks */, - 4024D188113D7D7800C7059E /* libgtest.a in Frameworks */, - 3B7EB1480E5AF3B400C7F239 /* Widget.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8D07F2C30486CC7A007CD1D0 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 034768DDFF38A45A11DB9C8B /* Products */ = { - isa = PBXGroup; - children = ( - 8D07F2C80486CC7A007CD1D0 /* Widget.framework */, - 3B07BDEA0E3F3F9E00647869 /* WidgetFrameworkTest */, - ); - name = Products; - sourceTree = ""; - }; - 0867D691FE84028FC02AAC07 /* gTestExample */ = { - isa = PBXGroup; - children = ( - 4024D1E1113D836C00C7059E /* Scripts */, - 08FB77ACFE841707C02AAC07 /* Source */, - 089C1665FE841158C02AAC07 /* Resources */, - 3B07BE350E4094E400647869 /* Test */, - 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */, - 034768DDFF38A45A11DB9C8B /* Products */, - ); - name = gTestExample; - sourceTree = ""; - }; - 0867D69AFE84028FC02AAC07 /* External Frameworks and Libraries */ = { - isa = PBXGroup; - children = ( - 4024D183113D7D5500C7059E /* libgtest_main.a */, - 4024D185113D7D5500C7059E /* libgtest.a */, - ); - name = "External Frameworks and Libraries"; - sourceTree = ""; - }; - 089C1665FE841158C02AAC07 /* Resources */ = { - isa = PBXGroup; - children = ( - 8D07F2C70486CC7A007CD1D0 /* Info.plist */, - ); - name = Resources; - sourceTree = ""; - }; - 08FB77ACFE841707C02AAC07 /* Source */ = { - isa = PBXGroup; - children = ( - 3B7EB1230E5AEE3500C7F239 /* widget.cc */, - 3B7EB1240E5AEE3500C7F239 /* widget.h */, - ); - name = Source; - sourceTree = ""; - }; - 3B07BE350E4094E400647869 /* Test */ = { - isa = PBXGroup; - children = ( - 3B7EB1270E5AEE4600C7F239 /* widget_test.cc */, - ); - name = Test; - sourceTree = ""; - }; - 4024D1E1113D836C00C7059E /* Scripts */ = { - isa = PBXGroup; - children = ( - 4024D1E2113D838200C7059E /* runtests.sh */, - ); - name = Scripts; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 8D07F2BD0486CC7A007CD1D0 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 3B7EB1260E5AEE3500C7F239 /* widget.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 3B07BDE90E3F3F9E00647869 /* WidgetFrameworkTest */ = { - isa = PBXNativeTarget; - buildConfigurationList = 3B07BDF40E3F3FB600647869 /* Build configuration list for PBXNativeTarget "WidgetFrameworkTest" */; - buildPhases = ( - 3B07BDE70E3F3F9E00647869 /* Sources */, - 3B07BDE80E3F3F9E00647869 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 3B07BDF10E3F3FAE00647869 /* PBXTargetDependency */, - ); - name = WidgetFrameworkTest; - productName = gTestExampleTest; - productReference = 3B07BDEA0E3F3F9E00647869 /* WidgetFrameworkTest */; - productType = "com.apple.product-type.tool"; - }; - 8D07F2BC0486CC7A007CD1D0 /* WidgetFramework */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4FADC24208B4156D00ABE55E /* Build configuration list for PBXNativeTarget "WidgetFramework" */; - buildPhases = ( - 8D07F2C10486CC7A007CD1D0 /* Sources */, - 8D07F2C30486CC7A007CD1D0 /* Frameworks */, - 8D07F2BD0486CC7A007CD1D0 /* Headers */, - 8D07F2BF0486CC7A007CD1D0 /* Resources */, - 8D07F2C50486CC7A007CD1D0 /* Rez */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = WidgetFramework; - productInstallPath = "$(HOME)/Library/Frameworks"; - productName = gTestExample; - productReference = 8D07F2C80486CC7A007CD1D0 /* Widget.framework */; - productType = "com.apple.product-type.framework"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 0867D690FE84028FC02AAC07 /* Project object */ = { - isa = PBXProject; - buildConfigurationList = 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "WidgetFramework" */; - compatibilityVersion = "Xcode 2.4"; - hasScannedForEncodings = 1; - mainGroup = 0867D691FE84028FC02AAC07 /* gTestExample */; - productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 8D07F2BC0486CC7A007CD1D0 /* WidgetFramework */, - 3B07BDE90E3F3F9E00647869 /* WidgetFrameworkTest */, - 4024D162113D7D2400C7059E /* Test */, - 4024D1E9113D83FF00C7059E /* TestAndBuild */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 8D07F2BF0486CC7A007CD1D0 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXRezBuildPhase section */ - 8D07F2C50486CC7A007CD1D0 /* Rez */ = { - isa = PBXRezBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXRezBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 4024D161113D7D2400C7059E /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/bash $SRCROOT/runtests.sh $BUILT_PRODUCTS_DIR/WidgetFrameworkTest\n"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 3B07BDE70E3F3F9E00647869 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3B7EB1280E5AEE4600C7F239 /* widget_test.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8D07F2C10486CC7A007CD1D0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3B7EB1250E5AEE3500C7F239 /* widget.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 3B07BDF10E3F3FAE00647869 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 8D07F2BC0486CC7A007CD1D0 /* WidgetFramework */; - targetProxy = 3B07BDF00E3F3FAE00647869 /* PBXContainerItemProxy */; - }; - 4024D166113D7D3100C7059E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 3B07BDE90E3F3F9E00647869 /* WidgetFrameworkTest */; - targetProxy = 4024D165113D7D3100C7059E /* PBXContainerItemProxy */; - }; - 4024D1ED113D840900C7059E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 8D07F2BC0486CC7A007CD1D0 /* WidgetFramework */; - targetProxy = 4024D1EC113D840900C7059E /* PBXContainerItemProxy */; - }; - 4024D1EF113D840D00C7059E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 4024D162113D7D2400C7059E /* Test */; - targetProxy = 4024D1EE113D840D00C7059E /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 3B07BDEC0E3F3F9F00647869 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = WidgetFrameworkTest; - }; - name = Debug; - }; - 3B07BDED0E3F3F9F00647869 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = WidgetFrameworkTest; - }; - name = Release; - }; - 4024D163113D7D2400C7059E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = TestAndBuild; - }; - name = Debug; - }; - 4024D164113D7D2400C7059E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = TestAndBuild; - }; - name = Release; - }; - 4024D1EA113D83FF00C7059E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = TestAndBuild; - }; - name = Debug; - }; - 4024D1EB113D83FF00C7059E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = TestAndBuild; - }; - name = Release; - }; - 4FADC24308B4156D00ABE55E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "@loader_path/../Frameworks"; - PRODUCT_NAME = Widget; - }; - name = Debug; - }; - 4FADC24408B4156D00ABE55E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "@loader_path/../Frameworks"; - PRODUCT_NAME = Widget; - }; - name = Release; - }; - 4FADC24708B4156D00ABE55E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_VERSION = 4.0; - SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; - }; - name = Debug; - }; - 4FADC24808B4156D00ABE55E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_VERSION = 4.0; - SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 3B07BDF40E3F3FB600647869 /* Build configuration list for PBXNativeTarget "WidgetFrameworkTest" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 3B07BDEC0E3F3F9F00647869 /* Debug */, - 3B07BDED0E3F3F9F00647869 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4024D169113D7D4600C7059E /* Build configuration list for PBXAggregateTarget "Test" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4024D163113D7D2400C7059E /* Debug */, - 4024D164113D7D2400C7059E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4024D1F0113D842B00C7059E /* Build configuration list for PBXAggregateTarget "TestAndBuild" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4024D1EA113D83FF00C7059E /* Debug */, - 4024D1EB113D83FF00C7059E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4FADC24208B4156D00ABE55E /* Build configuration list for PBXNativeTarget "WidgetFramework" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4FADC24308B4156D00ABE55E /* Debug */, - 4FADC24408B4156D00ABE55E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "WidgetFramework" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4FADC24708B4156D00ABE55E /* Debug */, - 4FADC24808B4156D00ABE55E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 0867D690FE84028FC02AAC07 /* Project object */; -} diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/runtests.sh b/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/runtests.sh deleted file mode 100644 index 4a0d413e5..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/runtests.sh +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/bash -# -# Copyright 2008, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -# Executes the samples and tests for the Google Test Framework. - -# Help the dynamic linker find the path to the libraries. -export DYLD_FRAMEWORK_PATH=$BUILT_PRODUCTS_DIR -export DYLD_LIBRARY_PATH=$BUILT_PRODUCTS_DIR - -# Create some executables. -test_executables=$@ - -# Now execute each one in turn keeping track of how many succeeded and failed. -succeeded=0 -failed=0 -failed_list=() -for test in ${test_executables[*]}; do - "$test" - result=$? - if [ $result -eq 0 ]; then - succeeded=$(( $succeeded + 1 )) - else - failed=$(( failed + 1 )) - failed_list="$failed_list $test" - fi -done - -# Report the successes and failures to the console. -echo "Tests complete with $succeeded successes and $failed failures." -if [ $failed -ne 0 ]; then - echo "The following tests failed:" - echo $failed_list -fi -exit $failed diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget.cc b/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget.cc deleted file mode 100644 index bfc4e7fcf..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget.cc +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: preston.a.jackson@gmail.com (Preston Jackson) -// -// Google Test - FrameworkSample -// widget.cc -// - -// Widget is a very simple class used for demonstrating the use of gtest - -#include "widget.h" - -Widget::Widget(int number, const std::string& name) - : number_(number), - name_(name) {} - -Widget::~Widget() {} - -float Widget::GetFloatValue() const { - return number_; -} - -int Widget::GetIntValue() const { - return static_cast(number_); -} - -std::string Widget::GetStringValue() const { - return name_; -} - -void Widget::GetCharPtrValue(char* buffer, size_t max_size) const { - // Copy the char* representation of name_ into buffer, up to max_size. - strncpy(buffer, name_.c_str(), max_size-1); - buffer[max_size-1] = '\0'; - return; -} diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget.h b/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget.h deleted file mode 100644 index 0c55cdc8c..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget.h +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: preston.a.jackson@gmail.com (Preston Jackson) -// -// Google Test - FrameworkSample -// widget.h -// - -// Widget is a very simple class used for demonstrating the use of gtest. It -// simply stores two values a string and an integer, which are returned via -// public accessors in multiple forms. - -#import - -class Widget { - public: - Widget(int number, const std::string& name); - ~Widget(); - - // Public accessors to number data - float GetFloatValue() const; - int GetIntValue() const; - - // Public accessors to the string data - std::string GetStringValue() const; - void GetCharPtrValue(char* buffer, size_t max_size) const; - - private: - // Data members - float number_; - std::string name_; -}; diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget_test.cc b/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget_test.cc deleted file mode 100644 index 61c0d2ffd..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Samples/FrameworkSample/widget_test.cc +++ /dev/null @@ -1,68 +0,0 @@ -// Copyright 2008, Google Inc. -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -// -// Author: preston.a.jackson@gmail.com (Preston Jackson) -// -// Google Test - FrameworkSample -// widget_test.cc -// - -// This is a simple test file for the Widget class in the Widget.framework - -#include -#include - -#include - -// This test verifies that the constructor sets the internal state of the -// Widget class correctly. -TEST(WidgetInitializerTest, TestConstructor) { - Widget widget(1.0f, "name"); - EXPECT_FLOAT_EQ(1.0f, widget.GetFloatValue()); - EXPECT_EQ(std::string("name"), widget.GetStringValue()); -} - -// This test verifies the conversion of the float and string values to int and -// char*, respectively. -TEST(WidgetInitializerTest, TestConversion) { - Widget widget(1.0f, "name"); - EXPECT_EQ(1, widget.GetIntValue()); - - size_t max_size = 128; - char buffer[max_size]; - widget.GetCharPtrValue(buffer, max_size); - EXPECT_STREQ("name", buffer); -} - -// Use the Google Test main that is linked into the framework. It does something -// like this: -// int main(int argc, char** argv) { -// testing::InitGoogleTest(&argc, argv); -// return RUN_ALL_TESTS(); -// } diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Scripts/runtests.sh b/cpp/thirdparty/gtest-1.5.0/xcode/Scripts/runtests.sh deleted file mode 100644 index 3fc229f1d..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Scripts/runtests.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/bash -# -# Copyright 2008, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -# Executes the samples and tests for the Google Test Framework. - -# Help the dynamic linker find the path to the libraries. -export DYLD_FRAMEWORK_PATH=$BUILT_PRODUCTS_DIR -export DYLD_LIBRARY_PATH=$BUILT_PRODUCTS_DIR - -# Create some executables. -test_executables=("$BUILT_PRODUCTS_DIR/gtest_unittest-framework" - "$BUILT_PRODUCTS_DIR/gtest_unittest" - "$BUILT_PRODUCTS_DIR/sample1_unittest-framework" - "$BUILT_PRODUCTS_DIR/sample1_unittest-static") - -# Now execute each one in turn keeping track of how many succeeded and failed. -succeeded=0 -failed=0 -failed_list=() -for test in ${test_executables[*]}; do - "$test" - result=$? - if [ $result -eq 0 ]; then - succeeded=$(( $succeeded + 1 )) - else - failed=$(( failed + 1 )) - failed_list="$failed_list $test" - fi -done - -# Report the successes and failures to the console. -echo "Tests complete with $succeeded successes and $failed failures." -if [ $failed -ne 0 ]; then - echo "The following tests failed:" - echo $failed_list -fi -exit $failed diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/Scripts/versiongenerate.py b/cpp/thirdparty/gtest-1.5.0/xcode/Scripts/versiongenerate.py deleted file mode 100755 index 81de8c96a..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/Scripts/versiongenerate.py +++ /dev/null @@ -1,100 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2008, Google Inc. -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above -# copyright notice, this list of conditions and the following disclaimer -# in the documentation and/or other materials provided with the -# distribution. -# * Neither the name of Google Inc. nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -"""A script to prepare version informtion for use the gtest Info.plist file. - - This script extracts the version information from the configure.ac file and - uses it to generate a header file containing the same information. The - #defines in this header file will be included in during the generation of - the Info.plist of the framework, giving the correct value to the version - shown in the Finder. - - This script makes the following assumptions (these are faults of the script, - not problems with the Autoconf): - 1. The AC_INIT macro will be contained within the first 1024 characters - of configure.ac - 2. The version string will be 3 integers separated by periods and will be - surrounded by squre brackets, "[" and "]" (e.g. [1.0.1]). The first - segment represents the major version, the second represents the minor - version and the third represents the fix version. - 3. No ")" character exists between the opening "(" and closing ")" of - AC_INIT, including in comments and character strings. -""" - -import sys -import re - -# Read the command line argument (the output directory for Version.h) -if (len(sys.argv) < 3): - print "Usage: versiongenerate.py input_dir output_dir" - sys.exit(1) -else: - input_dir = sys.argv[1] - output_dir = sys.argv[2] - -# Read the first 1024 characters of the configure.ac file -config_file = open("%s/configure.ac" % input_dir, 'r') -buffer_size = 1024 -opening_string = config_file.read(buffer_size) -config_file.close() - -# Extract the version string from the AC_INIT macro -# The following init_expression means: -# Extract three integers separated by periods and surrounded by squre -# brackets(e.g. "[1.0.1]") between "AC_INIT(" and ")". Do not be greedy -# (*? is the non-greedy flag) since that would pull in everything between -# the first "(" and the last ")" in the file. -version_expression = re.compile(r"AC_INIT\(.*?\[(\d+)\.(\d+)\.(\d+)\].*?\)", - re.DOTALL) -version_values = version_expression.search(opening_string) -major_version = version_values.group(1) -minor_version = version_values.group(2) -fix_version = version_values.group(3) - -# Write the version information to a header file to be included in the -# Info.plist file. -file_data = """// -// DO NOT MODIFY THIS FILE (but you can delete it) -// -// This file is autogenerated by the versiongenerate.py script. This script -// is executed in a "Run Script" build phase when creating gtest.framework. This -// header file is not used during compilation of C-source. Rather, it simply -// defines some version strings for substitution in the Info.plist. Because of -// this, we are not not restricted to C-syntax nor are we using include guards. -// - -#define GTEST_VERSIONINFO_SHORT %s.%s -#define GTEST_VERSIONINFO_LONG %s.%s.%s - -""" % (major_version, minor_version, major_version, minor_version, fix_version) -version_file = open("%s/Version.h" % output_dir, 'w') -version_file.write(file_data) -version_file.close() diff --git a/cpp/thirdparty/gtest-1.5.0/xcode/gtest.xcodeproj/project.pbxproj b/cpp/thirdparty/gtest-1.5.0/xcode/gtest.xcodeproj/project.pbxproj deleted file mode 100644 index 4234e728c..000000000 --- a/cpp/thirdparty/gtest-1.5.0/xcode/gtest.xcodeproj/project.pbxproj +++ /dev/null @@ -1,1080 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 42; - objects = { - -/* Begin PBXAggregateTarget section */ - 3B238F5F0E828B5400846E11 /* Check */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 3B238FA30E828BB600846E11 /* Build configuration list for PBXAggregateTarget "Check" */; - buildPhases = ( - 3B238F5E0E828B5400846E11 /* ShellScript */, - ); - dependencies = ( - 40899F9D0FFA740F000B29AE /* PBXTargetDependency */, - 40C849F7101A43440083642A /* PBXTargetDependency */, - 4089A0980FFAD34A000B29AE /* PBXTargetDependency */, - 40C849F9101A43490083642A /* PBXTargetDependency */, - ); - name = Check; - productName = Check; - }; - 40C44ADC0E3798F4008FCC51 /* Version Info */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 40C44AE40E379905008FCC51 /* Build configuration list for PBXAggregateTarget "Version Info" */; - buildPhases = ( - 40C44ADB0E3798F4008FCC51 /* Generate Version.h */, - ); - comments = "The generation of Version.h must be performed in its own target. Since the Info.plist is preprocessed before any of the other build phases in gtest, the Version.h file would not be ready if included as a build phase of that target."; - dependencies = ( - ); - name = "Version Info"; - productName = Version.h; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 224A12A30E9EADCC00BD17FD /* gtest-test-part.h in Headers */ = {isa = PBXBuildFile; fileRef = 224A12A20E9EADCC00BD17FD /* gtest-test-part.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3BF6F2A00E79B5AD000F2EEE /* gtest-type-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 3BF6F29F0E79B5AD000F2EEE /* gtest-type-util.h */; }; - 3BF6F2A50E79B616000F2EEE /* gtest-typed-test.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF6F2A40E79B616000F2EEE /* gtest-typed-test.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 404884380E2F799B00CF7658 /* gtest-death-test.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883DB0E2F799B00CF7658 /* gtest-death-test.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 404884390E2F799B00CF7658 /* gtest-message.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883DC0E2F799B00CF7658 /* gtest-message.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4048843A0E2F799B00CF7658 /* gtest-spi.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883DD0E2F799B00CF7658 /* gtest-spi.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4048843B0E2F799B00CF7658 /* gtest.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883DE0E2F799B00CF7658 /* gtest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4048843C0E2F799B00CF7658 /* gtest_pred_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883DF0E2F799B00CF7658 /* gtest_pred_impl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4048843D0E2F799B00CF7658 /* gtest_prod.h in Headers */ = {isa = PBXBuildFile; fileRef = 404883E00E2F799B00CF7658 /* gtest_prod.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 404884500E2F799B00CF7658 /* README in Resources */ = {isa = PBXBuildFile; fileRef = 404883F60E2F799B00CF7658 /* README */; }; - 404884A00E2F7BE600CF7658 /* gtest-death-test-internal.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 404883E20E2F799B00CF7658 /* gtest-death-test-internal.h */; }; - 404884A10E2F7BE600CF7658 /* gtest-filepath.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 404883E30E2F799B00CF7658 /* gtest-filepath.h */; }; - 404884A20E2F7BE600CF7658 /* gtest-internal.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 404883E40E2F799B00CF7658 /* gtest-internal.h */; }; - 404884A30E2F7BE600CF7658 /* gtest-port.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 404883E50E2F799B00CF7658 /* gtest-port.h */; }; - 404884A40E2F7BE600CF7658 /* gtest-string.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 404883E60E2F799B00CF7658 /* gtest-string.h */; }; - 404884AC0E2F7CD900CF7658 /* CHANGES in Resources */ = {isa = PBXBuildFile; fileRef = 404884A90E2F7CD900CF7658 /* CHANGES */; }; - 404884AD0E2F7CD900CF7658 /* CONTRIBUTORS in Resources */ = {isa = PBXBuildFile; fileRef = 404884AA0E2F7CD900CF7658 /* CONTRIBUTORS */; }; - 404884AE0E2F7CD900CF7658 /* COPYING in Resources */ = {isa = PBXBuildFile; fileRef = 404884AB0E2F7CD900CF7658 /* COPYING */; }; - 40899F3A0FFA70D4000B29AE /* gtest-all.cc in Sources */ = {isa = PBXBuildFile; fileRef = 224A12A10E9EADA700BD17FD /* gtest-all.cc */; }; - 40899F500FFA7281000B29AE /* gtest-tuple.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 40899F4D0FFA7271000B29AE /* gtest-tuple.h */; }; - 40899F530FFA72A0000B29AE /* gtest_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B238C120E7FE13C00846E11 /* gtest_unittest.cc */; }; - 4089A0440FFAD1BE000B29AE /* sample1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4089A02C0FFACF7F000B29AE /* sample1.cc */; }; - 4089A0460FFAD1BE000B29AE /* sample1_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4089A02E0FFACF7F000B29AE /* sample1_unittest.cc */; }; - 40C848FF101A21150083642A /* gtest-all.cc in Sources */ = {isa = PBXBuildFile; fileRef = 224A12A10E9EADA700BD17FD /* gtest-all.cc */; }; - 40C84915101A21DF0083642A /* gtest_main.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4048840D0E2F799B00CF7658 /* gtest_main.cc */; }; - 40C84916101A235B0083642A /* libgtest_main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C8490B101A217E0083642A /* libgtest_main.a */; }; - 40C84921101A23AD0083642A /* libgtest_main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C8490B101A217E0083642A /* libgtest_main.a */; }; - 40C84978101A36540083642A /* libgtest_main.a in Resources */ = {isa = PBXBuildFile; fileRef = 40C8490B101A217E0083642A /* libgtest_main.a */; }; - 40C84980101A36850083642A /* gtest_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B238C120E7FE13C00846E11 /* gtest_unittest.cc */; }; - 40C84982101A36850083642A /* libgtest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C848FA101A209C0083642A /* libgtest.a */; }; - 40C84983101A36850083642A /* libgtest_main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C8490B101A217E0083642A /* libgtest_main.a */; }; - 40C8498F101A36A60083642A /* sample1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4089A02C0FFACF7F000B29AE /* sample1.cc */; }; - 40C84990101A36A60083642A /* sample1_unittest.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4089A02E0FFACF7F000B29AE /* sample1_unittest.cc */; }; - 40C84992101A36A60083642A /* libgtest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C848FA101A209C0083642A /* libgtest.a */; }; - 40C84993101A36A60083642A /* libgtest_main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40C8490B101A217E0083642A /* libgtest_main.a */; }; - 40C849A2101A37050083642A /* gtest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4539C8FF0EC27F6400A70F4C /* gtest.framework */; }; - 40C849A4101A37150083642A /* gtest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4539C8FF0EC27F6400A70F4C /* gtest.framework */; }; - 4539C9340EC280AE00A70F4C /* gtest-param-test.h in Headers */ = {isa = PBXBuildFile; fileRef = 4539C9330EC280AE00A70F4C /* gtest-param-test.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4539C9380EC280E200A70F4C /* gtest-linked_ptr.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 4539C9350EC280E200A70F4C /* gtest-linked_ptr.h */; }; - 4539C9390EC280E200A70F4C /* gtest-param-util-generated.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 4539C9360EC280E200A70F4C /* gtest-param-util-generated.h */; }; - 4539C93A0EC280E200A70F4C /* gtest-param-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRef = 4539C9370EC280E200A70F4C /* gtest-param-util.h */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 40899F9C0FFA740F000B29AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40899F420FFA7184000B29AE; - remoteInfo = gtest_unittest; - }; - 4089A0970FFAD34A000B29AE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4089A0120FFACEFC000B29AE; - remoteInfo = sample1_unittest; - }; - 408BEC0F1046CFE900DEF522 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40C848F9101A209C0083642A; - remoteInfo = "gtest-static"; - }; - 40C44AE50E379922008FCC51 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40C44ADC0E3798F4008FCC51; - remoteInfo = Version.h; - }; - 40C8497C101A36850083642A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40C848F9101A209C0083642A; - remoteInfo = "gtest-static"; - }; - 40C8497E101A36850083642A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40C8490A101A217E0083642A; - remoteInfo = "gtest_main-static"; - }; - 40C8498B101A36A60083642A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40C848F9101A209C0083642A; - remoteInfo = "gtest-static"; - }; - 40C8498D101A36A60083642A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40C8490A101A217E0083642A; - remoteInfo = "gtest_main-static"; - }; - 40C8499B101A36DC0083642A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40C8490A101A217E0083642A; - remoteInfo = "gtest_main-static"; - }; - 40C8499D101A36E50083642A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D07F2BC0486CC7A007CD1D0; - remoteInfo = "gtest-framework"; - }; - 40C8499F101A36F10083642A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D07F2BC0486CC7A007CD1D0; - remoteInfo = "gtest-framework"; - }; - 40C849F6101A43440083642A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40C8497A101A36850083642A; - remoteInfo = "gtest_unittest-static"; - }; - 40C849F8101A43490083642A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 40C84989101A36A60083642A; - remoteInfo = "sample1_unittest-static"; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 404884A50E2F7C0400CF7658 /* Copy Headers Internal */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = Headers/internal; - dstSubfolderSpec = 6; - files = ( - 404884A00E2F7BE600CF7658 /* gtest-death-test-internal.h in Copy Headers Internal */, - 404884A10E2F7BE600CF7658 /* gtest-filepath.h in Copy Headers Internal */, - 404884A20E2F7BE600CF7658 /* gtest-internal.h in Copy Headers Internal */, - 4539C9380EC280E200A70F4C /* gtest-linked_ptr.h in Copy Headers Internal */, - 4539C9390EC280E200A70F4C /* gtest-param-util-generated.h in Copy Headers Internal */, - 4539C93A0EC280E200A70F4C /* gtest-param-util.h in Copy Headers Internal */, - 404884A30E2F7BE600CF7658 /* gtest-port.h in Copy Headers Internal */, - 404884A40E2F7BE600CF7658 /* gtest-string.h in Copy Headers Internal */, - 40899F500FFA7281000B29AE /* gtest-tuple.h in Copy Headers Internal */, - 3BF6F2A00E79B5AD000F2EEE /* gtest-type-util.h in Copy Headers Internal */, - ); - name = "Copy Headers Internal"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 224A12A10E9EADA700BD17FD /* gtest-all.cc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "gtest-all.cc"; sourceTree = ""; }; - 224A12A20E9EADCC00BD17FD /* gtest-test-part.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = "gtest-test-part.h"; sourceTree = ""; }; - 3B238C120E7FE13C00846E11 /* gtest_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gtest_unittest.cc; sourceTree = ""; }; - 3B87D2100E96B92E000D1852 /* runtests.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = runtests.sh; sourceTree = ""; }; - 3BF6F29F0E79B5AD000F2EEE /* gtest-type-util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-type-util.h"; sourceTree = ""; }; - 3BF6F2A40E79B616000F2EEE /* gtest-typed-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-typed-test.h"; sourceTree = ""; }; - 403EE37C0E377822004BD1E2 /* versiongenerate.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = versiongenerate.py; sourceTree = ""; }; - 404883DB0E2F799B00CF7658 /* gtest-death-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-death-test.h"; sourceTree = ""; }; - 404883DC0E2F799B00CF7658 /* gtest-message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-message.h"; sourceTree = ""; }; - 404883DD0E2F799B00CF7658 /* gtest-spi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-spi.h"; sourceTree = ""; }; - 404883DE0E2F799B00CF7658 /* gtest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gtest.h; sourceTree = ""; }; - 404883DF0E2F799B00CF7658 /* gtest_pred_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gtest_pred_impl.h; sourceTree = ""; }; - 404883E00E2F799B00CF7658 /* gtest_prod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gtest_prod.h; sourceTree = ""; }; - 404883E20E2F799B00CF7658 /* gtest-death-test-internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-death-test-internal.h"; sourceTree = ""; }; - 404883E30E2F799B00CF7658 /* gtest-filepath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-filepath.h"; sourceTree = ""; }; - 404883E40E2F799B00CF7658 /* gtest-internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-internal.h"; sourceTree = ""; }; - 404883E50E2F799B00CF7658 /* gtest-port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-port.h"; sourceTree = ""; }; - 404883E60E2F799B00CF7658 /* gtest-string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-string.h"; sourceTree = ""; }; - 404883F60E2F799B00CF7658 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = README; path = ../README; sourceTree = SOURCE_ROOT; }; - 4048840D0E2F799B00CF7658 /* gtest_main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gtest_main.cc; sourceTree = ""; }; - 404884A90E2F7CD900CF7658 /* CHANGES */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = CHANGES; path = ../CHANGES; sourceTree = SOURCE_ROOT; }; - 404884AA0E2F7CD900CF7658 /* CONTRIBUTORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = CONTRIBUTORS; path = ../CONTRIBUTORS; sourceTree = SOURCE_ROOT; }; - 404884AB0E2F7CD900CF7658 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = COPYING; path = ../COPYING; sourceTree = SOURCE_ROOT; }; - 40899F430FFA7184000B29AE /* gtest_unittest-framework */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "gtest_unittest-framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 40899F4D0FFA7271000B29AE /* gtest-tuple.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-tuple.h"; sourceTree = ""; }; - 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = StaticLibraryTarget.xcconfig; sourceTree = ""; }; - 4089A0130FFACEFC000B29AE /* sample1_unittest-framework */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "sample1_unittest-framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4089A02C0FFACF7F000B29AE /* sample1.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sample1.cc; sourceTree = ""; }; - 4089A02D0FFACF7F000B29AE /* sample1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sample1.h; sourceTree = ""; }; - 4089A02E0FFACF7F000B29AE /* sample1_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sample1_unittest.cc; sourceTree = ""; }; - 40C848FA101A209C0083642A /* libgtest.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libgtest.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 40C8490B101A217E0083642A /* libgtest_main.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libgtest_main.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 40C84987101A36850083642A /* gtest_unittest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = gtest_unittest; sourceTree = BUILT_PRODUCTS_DIR; }; - 40C84997101A36A60083642A /* sample1_unittest-static */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "sample1_unittest-static"; sourceTree = BUILT_PRODUCTS_DIR; }; - 40D4CDF10E30E07400294801 /* DebugProject.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = DebugProject.xcconfig; sourceTree = ""; }; - 40D4CDF20E30E07400294801 /* FrameworkTarget.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = FrameworkTarget.xcconfig; sourceTree = ""; }; - 40D4CDF30E30E07400294801 /* General.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = General.xcconfig; sourceTree = ""; }; - 40D4CDF40E30E07400294801 /* ReleaseProject.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = ReleaseProject.xcconfig; sourceTree = ""; }; - 40D4CF510E30F5E200294801 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 4539C8FF0EC27F6400A70F4C /* gtest.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = gtest.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4539C9330EC280AE00A70F4C /* gtest-param-test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-param-test.h"; sourceTree = ""; }; - 4539C9350EC280E200A70F4C /* gtest-linked_ptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-linked_ptr.h"; sourceTree = ""; }; - 4539C9360EC280E200A70F4C /* gtest-param-util-generated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-param-util-generated.h"; sourceTree = ""; }; - 4539C9370EC280E200A70F4C /* gtest-param-util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "gtest-param-util.h"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 40899F410FFA7184000B29AE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 40C849A4101A37150083642A /* gtest.framework in Frameworks */, - 40C84916101A235B0083642A /* libgtest_main.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4089A0110FFACEFC000B29AE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 40C849A2101A37050083642A /* gtest.framework in Frameworks */, - 40C84921101A23AD0083642A /* libgtest_main.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 40C84981101A36850083642A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 40C84982101A36850083642A /* libgtest.a in Frameworks */, - 40C84983101A36850083642A /* libgtest_main.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 40C84991101A36A60083642A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 40C84992101A36A60083642A /* libgtest.a in Frameworks */, - 40C84993101A36A60083642A /* libgtest_main.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 034768DDFF38A45A11DB9C8B /* Products */ = { - isa = PBXGroup; - children = ( - 4539C8FF0EC27F6400A70F4C /* gtest.framework */, - 40C848FA101A209C0083642A /* libgtest.a */, - 40C8490B101A217E0083642A /* libgtest_main.a */, - 40899F430FFA7184000B29AE /* gtest_unittest-framework */, - 40C84987101A36850083642A /* gtest_unittest */, - 4089A0130FFACEFC000B29AE /* sample1_unittest-framework */, - 40C84997101A36A60083642A /* sample1_unittest-static */, - ); - name = Products; - sourceTree = ""; - }; - 0867D691FE84028FC02AAC07 /* gtest */ = { - isa = PBXGroup; - children = ( - 40D4CDF00E30E07400294801 /* Config */, - 08FB77ACFE841707C02AAC07 /* Source */, - 40D4CF4E0E30F5E200294801 /* Resources */, - 403EE37B0E377822004BD1E2 /* Scripts */, - 034768DDFF38A45A11DB9C8B /* Products */, - ); - name = gtest; - sourceTree = ""; - }; - 08FB77ACFE841707C02AAC07 /* Source */ = { - isa = PBXGroup; - children = ( - 404884A90E2F7CD900CF7658 /* CHANGES */, - 404884AA0E2F7CD900CF7658 /* CONTRIBUTORS */, - 404884AB0E2F7CD900CF7658 /* COPYING */, - 404883F60E2F799B00CF7658 /* README */, - 404883D90E2F799B00CF7658 /* include */, - 4089A02F0FFACF84000B29AE /* samples */, - 404884070E2F799B00CF7658 /* src */, - 3B238BF00E7FE13B00846E11 /* test */, - ); - name = Source; - sourceTree = ""; - }; - 3B238BF00E7FE13B00846E11 /* test */ = { - isa = PBXGroup; - children = ( - 3B238C120E7FE13C00846E11 /* gtest_unittest.cc */, - ); - name = test; - path = ../test; - sourceTree = SOURCE_ROOT; - }; - 403EE37B0E377822004BD1E2 /* Scripts */ = { - isa = PBXGroup; - children = ( - 403EE37C0E377822004BD1E2 /* versiongenerate.py */, - 3B87D2100E96B92E000D1852 /* runtests.sh */, - ); - path = Scripts; - sourceTree = ""; - }; - 404883D90E2F799B00CF7658 /* include */ = { - isa = PBXGroup; - children = ( - 404883DA0E2F799B00CF7658 /* gtest */, - ); - name = include; - path = ../include; - sourceTree = SOURCE_ROOT; - }; - 404883DA0E2F799B00CF7658 /* gtest */ = { - isa = PBXGroup; - children = ( - 404883E10E2F799B00CF7658 /* internal */, - 224A12A20E9EADCC00BD17FD /* gtest-test-part.h */, - 404883DB0E2F799B00CF7658 /* gtest-death-test.h */, - 404883DC0E2F799B00CF7658 /* gtest-message.h */, - 4539C9330EC280AE00A70F4C /* gtest-param-test.h */, - 404883DD0E2F799B00CF7658 /* gtest-spi.h */, - 404883DE0E2F799B00CF7658 /* gtest.h */, - 404883DF0E2F799B00CF7658 /* gtest_pred_impl.h */, - 404883E00E2F799B00CF7658 /* gtest_prod.h */, - 3BF6F2A40E79B616000F2EEE /* gtest-typed-test.h */, - ); - path = gtest; - sourceTree = ""; - }; - 404883E10E2F799B00CF7658 /* internal */ = { - isa = PBXGroup; - children = ( - 404883E20E2F799B00CF7658 /* gtest-death-test-internal.h */, - 404883E30E2F799B00CF7658 /* gtest-filepath.h */, - 404883E40E2F799B00CF7658 /* gtest-internal.h */, - 4539C9350EC280E200A70F4C /* gtest-linked_ptr.h */, - 4539C9360EC280E200A70F4C /* gtest-param-util-generated.h */, - 4539C9370EC280E200A70F4C /* gtest-param-util.h */, - 404883E50E2F799B00CF7658 /* gtest-port.h */, - 404883E60E2F799B00CF7658 /* gtest-string.h */, - 40899F4D0FFA7271000B29AE /* gtest-tuple.h */, - 3BF6F29F0E79B5AD000F2EEE /* gtest-type-util.h */, - ); - path = internal; - sourceTree = ""; - }; - 404884070E2F799B00CF7658 /* src */ = { - isa = PBXGroup; - children = ( - 224A12A10E9EADA700BD17FD /* gtest-all.cc */, - 4048840D0E2F799B00CF7658 /* gtest_main.cc */, - ); - name = src; - path = ../src; - sourceTree = SOURCE_ROOT; - }; - 4089A02F0FFACF84000B29AE /* samples */ = { - isa = PBXGroup; - children = ( - 4089A02C0FFACF7F000B29AE /* sample1.cc */, - 4089A02D0FFACF7F000B29AE /* sample1.h */, - 4089A02E0FFACF7F000B29AE /* sample1_unittest.cc */, - ); - name = samples; - path = ../samples; - sourceTree = SOURCE_ROOT; - }; - 40D4CDF00E30E07400294801 /* Config */ = { - isa = PBXGroup; - children = ( - 40D4CDF10E30E07400294801 /* DebugProject.xcconfig */, - 40D4CDF20E30E07400294801 /* FrameworkTarget.xcconfig */, - 40D4CDF30E30E07400294801 /* General.xcconfig */, - 40D4CDF40E30E07400294801 /* ReleaseProject.xcconfig */, - 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */, - ); - path = Config; - sourceTree = ""; - }; - 40D4CF4E0E30F5E200294801 /* Resources */ = { - isa = PBXGroup; - children = ( - 40D4CF510E30F5E200294801 /* Info.plist */, - ); - path = Resources; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 8D07F2BD0486CC7A007CD1D0 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 404884380E2F799B00CF7658 /* gtest-death-test.h in Headers */, - 404884390E2F799B00CF7658 /* gtest-message.h in Headers */, - 4539C9340EC280AE00A70F4C /* gtest-param-test.h in Headers */, - 3BF6F2A50E79B616000F2EEE /* gtest-typed-test.h in Headers */, - 4048843A0E2F799B00CF7658 /* gtest-spi.h in Headers */, - 4048843B0E2F799B00CF7658 /* gtest.h in Headers */, - 4048843C0E2F799B00CF7658 /* gtest_pred_impl.h in Headers */, - 4048843D0E2F799B00CF7658 /* gtest_prod.h in Headers */, - 224A12A30E9EADCC00BD17FD /* gtest-test-part.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 40899F420FFA7184000B29AE /* gtest_unittest-framework */ = { - isa = PBXNativeTarget; - buildConfigurationList = 40899F4A0FFA71BC000B29AE /* Build configuration list for PBXNativeTarget "gtest_unittest-framework" */; - buildPhases = ( - 40899F400FFA7184000B29AE /* Sources */, - 40899F410FFA7184000B29AE /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 40C849A0101A36F10083642A /* PBXTargetDependency */, - ); - name = "gtest_unittest-framework"; - productName = gtest_unittest; - productReference = 40899F430FFA7184000B29AE /* gtest_unittest-framework */; - productType = "com.apple.product-type.tool"; - }; - 4089A0120FFACEFC000B29AE /* sample1_unittest-framework */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4089A0240FFACF01000B29AE /* Build configuration list for PBXNativeTarget "sample1_unittest-framework" */; - buildPhases = ( - 4089A0100FFACEFC000B29AE /* Sources */, - 4089A0110FFACEFC000B29AE /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 40C8499E101A36E50083642A /* PBXTargetDependency */, - ); - name = "sample1_unittest-framework"; - productName = sample1_unittest; - productReference = 4089A0130FFACEFC000B29AE /* sample1_unittest-framework */; - productType = "com.apple.product-type.tool"; - }; - 40C848F9101A209C0083642A /* gtest-static */ = { - isa = PBXNativeTarget; - buildConfigurationList = 40C84902101A212E0083642A /* Build configuration list for PBXNativeTarget "gtest-static" */; - buildPhases = ( - 40C848F7101A209C0083642A /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "gtest-static"; - productName = "gtest-static"; - productReference = 40C848FA101A209C0083642A /* libgtest.a */; - productType = "com.apple.product-type.library.static"; - }; - 40C8490A101A217E0083642A /* gtest_main-static */ = { - isa = PBXNativeTarget; - buildConfigurationList = 40C84912101A21D20083642A /* Build configuration list for PBXNativeTarget "gtest_main-static" */; - buildPhases = ( - 40C84908101A217E0083642A /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "gtest_main-static"; - productName = "gtest_main-static"; - productReference = 40C8490B101A217E0083642A /* libgtest_main.a */; - productType = "com.apple.product-type.library.static"; - }; - 40C8497A101A36850083642A /* gtest_unittest-static */ = { - isa = PBXNativeTarget; - buildConfigurationList = 40C84984101A36850083642A /* Build configuration list for PBXNativeTarget "gtest_unittest-static" */; - buildPhases = ( - 40C8497F101A36850083642A /* Sources */, - 40C84981101A36850083642A /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 40C8497B101A36850083642A /* PBXTargetDependency */, - 40C8497D101A36850083642A /* PBXTargetDependency */, - ); - name = "gtest_unittest-static"; - productName = gtest_unittest; - productReference = 40C84987101A36850083642A /* gtest_unittest */; - productType = "com.apple.product-type.tool"; - }; - 40C84989101A36A60083642A /* sample1_unittest-static */ = { - isa = PBXNativeTarget; - buildConfigurationList = 40C84994101A36A60083642A /* Build configuration list for PBXNativeTarget "sample1_unittest-static" */; - buildPhases = ( - 40C8498E101A36A60083642A /* Sources */, - 40C84991101A36A60083642A /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 40C8498A101A36A60083642A /* PBXTargetDependency */, - 40C8498C101A36A60083642A /* PBXTargetDependency */, - ); - name = "sample1_unittest-static"; - productName = sample1_unittest; - productReference = 40C84997101A36A60083642A /* sample1_unittest-static */; - productType = "com.apple.product-type.tool"; - }; - 8D07F2BC0486CC7A007CD1D0 /* gtest-framework */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4FADC24208B4156D00ABE55E /* Build configuration list for PBXNativeTarget "gtest-framework" */; - buildPhases = ( - 8D07F2C10486CC7A007CD1D0 /* Sources */, - 8D07F2BD0486CC7A007CD1D0 /* Headers */, - 404884A50E2F7C0400CF7658 /* Copy Headers Internal */, - 8D07F2BF0486CC7A007CD1D0 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 40C44AE60E379922008FCC51 /* PBXTargetDependency */, - 408BEC101046CFE900DEF522 /* PBXTargetDependency */, - 40C8499C101A36DC0083642A /* PBXTargetDependency */, - ); - name = "gtest-framework"; - productInstallPath = "$(HOME)/Library/Frameworks"; - productName = gtest; - productReference = 4539C8FF0EC27F6400A70F4C /* gtest.framework */; - productType = "com.apple.product-type.framework"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 0867D690FE84028FC02AAC07 /* Project object */ = { - isa = PBXProject; - buildConfigurationList = 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "gtest" */; - compatibilityVersion = "Xcode 2.4"; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - en, - ); - mainGroup = 0867D691FE84028FC02AAC07 /* gtest */; - productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 8D07F2BC0486CC7A007CD1D0 /* gtest-framework */, - 40C848F9101A209C0083642A /* gtest-static */, - 40C8490A101A217E0083642A /* gtest_main-static */, - 40899F420FFA7184000B29AE /* gtest_unittest-framework */, - 40C8497A101A36850083642A /* gtest_unittest-static */, - 4089A0120FFACEFC000B29AE /* sample1_unittest-framework */, - 40C84989101A36A60083642A /* sample1_unittest-static */, - 3B238F5F0E828B5400846E11 /* Check */, - 40C44ADC0E3798F4008FCC51 /* Version Info */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 8D07F2BF0486CC7A007CD1D0 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 404884500E2F799B00CF7658 /* README in Resources */, - 404884AC0E2F7CD900CF7658 /* CHANGES in Resources */, - 404884AD0E2F7CD900CF7658 /* CONTRIBUTORS in Resources */, - 404884AE0E2F7CD900CF7658 /* COPYING in Resources */, - 40C84978101A36540083642A /* libgtest_main.a in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 3B238F5E0E828B5400846E11 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "# Remember, this \"Run Script\" build phase will be executed from $SRCROOT\n/bin/bash Scripts/runtests.sh"; - }; - 40C44ADB0E3798F4008FCC51 /* Generate Version.h */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "$(SRCROOT)/Scripts/versiongenerate.py", - "$(SRCROOT)/../configure.ac", - ); - name = "Generate Version.h"; - outputPaths = ( - "$(PROJECT_TEMP_DIR)/Version.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "# Remember, this \"Run Script\" build phase will be executed from $SRCROOT\n/usr/bin/python Scripts/versiongenerate.py ../ $PROJECT_TEMP_DIR"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 40899F400FFA7184000B29AE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 40899F530FFA72A0000B29AE /* gtest_unittest.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4089A0100FFACEFC000B29AE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4089A0440FFAD1BE000B29AE /* sample1.cc in Sources */, - 4089A0460FFAD1BE000B29AE /* sample1_unittest.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 40C848F7101A209C0083642A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 40C848FF101A21150083642A /* gtest-all.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 40C84908101A217E0083642A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 40C84915101A21DF0083642A /* gtest_main.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 40C8497F101A36850083642A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 40C84980101A36850083642A /* gtest_unittest.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 40C8498E101A36A60083642A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 40C8498F101A36A60083642A /* sample1.cc in Sources */, - 40C84990101A36A60083642A /* sample1_unittest.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8D07F2C10486CC7A007CD1D0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 40899F3A0FFA70D4000B29AE /* gtest-all.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 40899F9D0FFA740F000B29AE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 40899F420FFA7184000B29AE /* gtest_unittest-framework */; - targetProxy = 40899F9C0FFA740F000B29AE /* PBXContainerItemProxy */; - }; - 4089A0980FFAD34A000B29AE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 4089A0120FFACEFC000B29AE /* sample1_unittest-framework */; - targetProxy = 4089A0970FFAD34A000B29AE /* PBXContainerItemProxy */; - }; - 408BEC101046CFE900DEF522 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 40C848F9101A209C0083642A /* gtest-static */; - targetProxy = 408BEC0F1046CFE900DEF522 /* PBXContainerItemProxy */; - }; - 40C44AE60E379922008FCC51 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 40C44ADC0E3798F4008FCC51 /* Version Info */; - targetProxy = 40C44AE50E379922008FCC51 /* PBXContainerItemProxy */; - }; - 40C8497B101A36850083642A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 40C848F9101A209C0083642A /* gtest-static */; - targetProxy = 40C8497C101A36850083642A /* PBXContainerItemProxy */; - }; - 40C8497D101A36850083642A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 40C8490A101A217E0083642A /* gtest_main-static */; - targetProxy = 40C8497E101A36850083642A /* PBXContainerItemProxy */; - }; - 40C8498A101A36A60083642A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 40C848F9101A209C0083642A /* gtest-static */; - targetProxy = 40C8498B101A36A60083642A /* PBXContainerItemProxy */; - }; - 40C8498C101A36A60083642A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 40C8490A101A217E0083642A /* gtest_main-static */; - targetProxy = 40C8498D101A36A60083642A /* PBXContainerItemProxy */; - }; - 40C8499C101A36DC0083642A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 40C8490A101A217E0083642A /* gtest_main-static */; - targetProxy = 40C8499B101A36DC0083642A /* PBXContainerItemProxy */; - }; - 40C8499E101A36E50083642A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 8D07F2BC0486CC7A007CD1D0 /* gtest-framework */; - targetProxy = 40C8499D101A36E50083642A /* PBXContainerItemProxy */; - }; - 40C849A0101A36F10083642A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 8D07F2BC0486CC7A007CD1D0 /* gtest-framework */; - targetProxy = 40C8499F101A36F10083642A /* PBXContainerItemProxy */; - }; - 40C849F7101A43440083642A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 40C8497A101A36850083642A /* gtest_unittest-static */; - targetProxy = 40C849F6101A43440083642A /* PBXContainerItemProxy */; - }; - 40C849F9101A43490083642A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 40C84989101A36A60083642A /* sample1_unittest-static */; - targetProxy = 40C849F8101A43490083642A /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 3B238F600E828B5400846E11 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - PRODUCT_NAME = Check; - }; - name = Debug; - }; - 3B238F610E828B5400846E11 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - PRODUCT_NAME = Check; - ZERO_LINK = NO; - }; - name = Release; - }; - 40899F450FFA7185000B29AE /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - HEADER_SEARCH_PATHS = ../; - PRODUCT_NAME = "gtest_unittest-framework"; - }; - name = Debug; - }; - 40899F460FFA7185000B29AE /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - HEADER_SEARCH_PATHS = ../; - PRODUCT_NAME = "gtest_unittest-framework"; - }; - name = Release; - }; - 4089A0150FFACEFD000B29AE /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "sample1_unittest-framework"; - }; - name = Debug; - }; - 4089A0160FFACEFD000B29AE /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "sample1_unittest-framework"; - }; - name = Release; - }; - 40C44ADF0E3798F4008FCC51 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = gtest; - TARGET_NAME = gtest; - }; - name = Debug; - }; - 40C44AE00E3798F4008FCC51 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = gtest; - TARGET_NAME = gtest; - }; - name = Release; - }; - 40C848FB101A209D0083642A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */; - buildSettings = { - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - HEADER_SEARCH_PATHS = ( - ../, - ../include/, - ); - PRODUCT_NAME = gtest; - }; - name = Debug; - }; - 40C848FC101A209D0083642A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */; - buildSettings = { - GCC_INLINES_ARE_PRIVATE_EXTERN = YES; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - HEADER_SEARCH_PATHS = ( - ../, - ../include/, - ); - PRODUCT_NAME = gtest; - }; - name = Release; - }; - 40C8490E101A217F0083642A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */; - buildSettings = { - HEADER_SEARCH_PATHS = ( - ../, - ../include/, - ); - PRODUCT_NAME = gtest_main; - }; - name = Debug; - }; - 40C8490F101A217F0083642A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 40899FB30FFA7567000B29AE /* StaticLibraryTarget.xcconfig */; - buildSettings = { - HEADER_SEARCH_PATHS = ( - ../, - ../include/, - ); - PRODUCT_NAME = gtest_main; - }; - name = Release; - }; - 40C84985101A36850083642A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - HEADER_SEARCH_PATHS = ../; - PRODUCT_NAME = gtest_unittest; - }; - name = Debug; - }; - 40C84986101A36850083642A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - HEADER_SEARCH_PATHS = ../; - PRODUCT_NAME = gtest_unittest; - }; - name = Release; - }; - 40C84995101A36A60083642A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "sample1_unittest-static"; - }; - name = Debug; - }; - 40C84996101A36A60083642A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "sample1_unittest-static"; - }; - name = Release; - }; - 4FADC24308B4156D00ABE55E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 40D4CDF20E30E07400294801 /* FrameworkTarget.xcconfig */; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - HEADER_SEARCH_PATHS = ( - ../, - ../include/, - ); - INFOPLIST_FILE = Resources/Info.plist; - INFOPLIST_PREFIX_HEADER = "$(PROJECT_TEMP_DIR)/Version.h"; - INFOPLIST_PREPROCESS = YES; - PRODUCT_NAME = gtest; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Debug; - }; - 4FADC24408B4156D00ABE55E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 40D4CDF20E30E07400294801 /* FrameworkTarget.xcconfig */; - buildSettings = { - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - HEADER_SEARCH_PATHS = ( - ../, - ../include/, - ); - INFOPLIST_FILE = Resources/Info.plist; - INFOPLIST_PREFIX_HEADER = "$(PROJECT_TEMP_DIR)/Version.h"; - INFOPLIST_PREPROCESS = YES; - PRODUCT_NAME = gtest; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Release; - }; - 4FADC24708B4156D00ABE55E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 40D4CDF10E30E07400294801 /* DebugProject.xcconfig */; - buildSettings = { - }; - name = Debug; - }; - 4FADC24808B4156D00ABE55E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 40D4CDF40E30E07400294801 /* ReleaseProject.xcconfig */; - buildSettings = { - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 3B238FA30E828BB600846E11 /* Build configuration list for PBXAggregateTarget "Check" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 3B238F600E828B5400846E11 /* Debug */, - 3B238F610E828B5400846E11 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 40899F4A0FFA71BC000B29AE /* Build configuration list for PBXNativeTarget "gtest_unittest-framework" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 40899F450FFA7185000B29AE /* Debug */, - 40899F460FFA7185000B29AE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4089A0240FFACF01000B29AE /* Build configuration list for PBXNativeTarget "sample1_unittest-framework" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4089A0150FFACEFD000B29AE /* Debug */, - 4089A0160FFACEFD000B29AE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 40C44AE40E379905008FCC51 /* Build configuration list for PBXAggregateTarget "Version Info" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 40C44ADF0E3798F4008FCC51 /* Debug */, - 40C44AE00E3798F4008FCC51 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 40C84902101A212E0083642A /* Build configuration list for PBXNativeTarget "gtest-static" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 40C848FB101A209D0083642A /* Debug */, - 40C848FC101A209D0083642A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 40C84912101A21D20083642A /* Build configuration list for PBXNativeTarget "gtest_main-static" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 40C8490E101A217F0083642A /* Debug */, - 40C8490F101A217F0083642A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 40C84984101A36850083642A /* Build configuration list for PBXNativeTarget "gtest_unittest-static" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 40C84985101A36850083642A /* Debug */, - 40C84986101A36850083642A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 40C84994101A36A60083642A /* Build configuration list for PBXNativeTarget "sample1_unittest-static" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 40C84995101A36A60083642A /* Debug */, - 40C84996101A36A60083642A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4FADC24208B4156D00ABE55E /* Build configuration list for PBXNativeTarget "gtest-framework" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4FADC24308B4156D00ABE55E /* Debug */, - 4FADC24408B4156D00ABE55E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4FADC24608B4156D00ABE55E /* Build configuration list for PBXProject "gtest" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4FADC24708B4156D00ABE55E /* Debug */, - 4FADC24808B4156D00ABE55E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 0867D690FE84028FC02AAC07 /* Project object */; -} -- GitLab From 9e3a0d96b006fc3a271bd2cdb428a04e1acbbd12 Mon Sep 17 00:00:00 2001 From: Thorsten Schuett Date: Fri, 10 Oct 2014 14:40:35 +0200 Subject: [PATCH 138/192] cpp: switch gtest-1.5.0 to gtest-1.7.0 --- Makefile | 2 +- cpp/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5cd2118b4..a5dbf832c 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ PLUGIN_CONFIG_DIR=$(XTREEMFS_CONFIG_DIR)/server-repl-plugin # If you edit the next five variables, make sure you also change them in cpp/CMakeLists.txt. CLIENT_GOOGLE_PROTOBUF_CPP = cpp/thirdparty/protobuf-2.5.0 CLIENT_GOOGLE_PROTOBUF_CPP_LIBRARY = $(CLIENT_GOOGLE_PROTOBUF_CPP)/src/.libs/libprotobuf.a -CLIENT_GOOGLE_TEST_CPP = cpp/thirdparty/gtest-1.5.0 +CLIENT_GOOGLE_TEST_CPP = cpp/thirdparty/gtest-1.7.0 CLIENT_GOOGLE_TEST_CPP_LIBRARY = $(CLIENT_GOOGLE_TEST_CPP)/lib/.libs/libgtest.a CLIENT_GOOGLE_TEST_CPP_MAIN = $(CLIENT_GOOGLE_TEST_CPP)/lib/.libs/libgtest_main.a # The two required objects libgtest.a and libgtest_main.a both depend diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 440679fa8..7f96c08b6 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -44,7 +44,7 @@ else() "libprotobuf.so" PATHS "${CLIENT_GOOGLE_PROTOBUF_CPP}/src/.libs/") endif(WIN32) -set(CLIENT_GOOGLE_TEST_CPP "${CMAKE_SOURCE_DIR}/thirdparty/gtest-1.5.0") +set(CLIENT_GOOGLE_TEST_CPP "${CMAKE_SOURCE_DIR}/thirdparty/gtest-1.7.0") if (WIN32) set(CLIENT_GOOGLE_TEST_CPP_LIBRARY "${CLIENT_GOOGLE_TEST_CPP}/msvc/gtest-md/Debug/gtestd.lib") else() -- GitLab From f94d4f5d648c23b416629488ce27d3331658e0d9 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 13 Oct 2014 10:36:19 +0200 Subject: [PATCH 139/192] added 3rd OSD config for testing --- etc/xos/xtreemfs/osdconfig3.test | 99 ++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 etc/xos/xtreemfs/osdconfig3.test diff --git a/etc/xos/xtreemfs/osdconfig3.test b/etc/xos/xtreemfs/osdconfig3.test new file mode 100644 index 000000000..e5671a796 --- /dev/null +++ b/etc/xos/xtreemfs/osdconfig3.test @@ -0,0 +1,99 @@ +# optional debug level +# 0: emergency +# 1: alert +# 2: critical +# 3: error +# 4: warning +# 5: notice +# 6: info (default) +# 7: debug +#debug.level = 7 + +# optional debug categories - a space or comma-separated list of log message categories +# all (default) - enable logging for all categories +# lifecycle - log messaages pertaining to service lifecycles (threads) +# buffer - logs messages pertaining to buffers +# net - network-related log messages +# auth - authorization-related log messages +# stage - log messages pertaining to the request flow through the stages +# proc - log messages pertaining to any kind of request processing +# db - log messages pertaining storage on OSD or database access on MRC/DIR +# replication - logs messages pertaining to replication +# misc - any other log messages +#debug.categories = all + +# port for the service to listen on +listen.port = 32642 + +http_port = 30642 + +# optional address for network device, "any" if not specified +#listen.address = 127.0.0.1 + +# optinal host name that is used to register the service at the DIR +# hostname = foo.bar.com + +# Directory Service endpoint +dir_service.host = localhost +dir_service.port = 32638 + +# directory containing XtreemFS file content +object_dir = /tmp/xtreemfs-test/osd3/ + +# Number of storage threads. Increase it to improve concurrency in case of multiple open files. +# Set it to a value >1 only if the underlying device can cope with concurrency, e.g. an SSD. +#storage_threads = 1 + +# granularity of the local clock (in ms) (0 disables it to always use the current system time) +local_clock_renewal = 0 + +# interval between two remote clock syncs (in ms) +remote_time_sync = 60000 + +# specify whether SSL is required +ssl.enabled = false + +# send and receive buffer sizes of sockets +#socket.send_buffer_size = 262144 +#socket.recv_buffer_size = 262144 + +report_free_space = true + +# specify whether internal OSD checksums are required +# if the flag is set to true, the OSD will calculate checksums for +# newly created objects, which will be checked when the object is read +checksums.enabled = false + +# algorithm used for checksum calculation +# by default, Adler32, CRC32, MD5 and SHA-1 are supported +checksums.algorithm = Adler32 + +checksums.enabled = false + +geographic_coordinates = 41.388417,2.114632 + +capability_secret = Yagga + +# administrator password for privileged operations +#admin_password = blub + +# Optional directory containing deployable policy implementations. +# Policies can be directly deployed as .java or .class files in this directory +# or one of its subdirectories. They will be compiled at startup time and +# loaded at runtime. Policies may have external dependencies that can be +# deployed either as .java, .class or .jar files. While Java and Class files +# may be located in subdirectories, JAR files mustn't. +policy_dir = /etc/xos/xtreemfs/policies + +# If you want to monitor your XtreemFS installation through SNMP +# uncomment the following lines. You have to set snmp.enabled = true +# and provide a listen port and optional a address. Also optional +# is a path to an aclfile which controls which hosts can access the +# monitoring information via SNMP. +#snmp.enabled = true +#snmp.address = localhost +#snmp.port = 34640 +#snmp.aclfile = etc/xos/xtreemfs/snmp.acl + +# UUID for the OSD +uuid = test-localhost-OSD3 -- GitLab From 7cde6b19610e3bc6f1c12c743a4d5654ef203473 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Mon, 13 Oct 2014 12:08:57 +0200 Subject: [PATCH 140/192] Created .gitignore for userguide --- doc/xtreemfs-userguide/.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 doc/xtreemfs-userguide/.gitignore diff --git a/doc/xtreemfs-userguide/.gitignore b/doc/xtreemfs-userguide/.gitignore new file mode 100644 index 000000000..73205b4c9 --- /dev/null +++ b/doc/xtreemfs-userguide/.gitignore @@ -0,0 +1,6 @@ +html/ +images/architecture.png +images/final_logo.png +xtfs-guide.tid +xtfs-guide.tin +xtfs-guide.tms -- GitLab From a5b6f9de526a1a2274db97eb0feeead3eacc8d0b Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Wed, 15 Oct 2014 12:29:09 +0200 Subject: [PATCH 141/192] added replicated write test with different alignments --- .../replication/ReadWriteReplicationTest.java | 197 ++++++++++++++++++ 1 file changed, 197 insertions(+) create mode 100644 java/servers/test/org/xtreemfs/test/osd/replication/ReadWriteReplicationTest.java diff --git a/java/servers/test/org/xtreemfs/test/osd/replication/ReadWriteReplicationTest.java b/java/servers/test/org/xtreemfs/test/osd/replication/ReadWriteReplicationTest.java new file mode 100644 index 000000000..e27177d5c --- /dev/null +++ b/java/servers/test/org/xtreemfs/test/osd/replication/ReadWriteReplicationTest.java @@ -0,0 +1,197 @@ +/* + * Copyright (c) 2014 by Robert Schmidtke, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ +package org.xtreemfs.test.osd.replication; + +import java.util.ArrayList; +import java.util.List; +import java.util.Random; + +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TestRule; +import org.xtreemfs.common.ReplicaUpdatePolicies; +import org.xtreemfs.common.libxtreemfs.AdminClient; +import org.xtreemfs.common.libxtreemfs.AdminFileHandle; +import org.xtreemfs.common.libxtreemfs.AdminVolume; +import org.xtreemfs.common.libxtreemfs.ClientFactory; +import org.xtreemfs.common.libxtreemfs.FileHandle; +import org.xtreemfs.common.libxtreemfs.Options; +import org.xtreemfs.common.xloc.ReplicationFlags; +import org.xtreemfs.foundation.logging.Logging; +import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; +import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.Auth; +import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; +import org.xtreemfs.foundation.util.FSUtils; +import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType; +import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair; +import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replica; +import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SYSTEM_V_FCNTL; +import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicyType; +import org.xtreemfs.test.SetupUtils; +import org.xtreemfs.test.TestEnvironment; +import org.xtreemfs.test.TestHelper; + +/** + * + * @author Robert Schmidtke + * + */ +public class ReadWriteReplicationTest { + + @Rule + public final TestRule testLog = TestHelper.testLog; + + private TestEnvironment testEnv; + + private UserCredentials userCredentials; + + private String dirAddress, mrcAddress; + + private Options options; + + private AdminClient client; + + private Auth auth; + + @Before + public void setup() throws Exception { + FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); + Logging.start(Logging.LEVEL_NOTICE); + + SetupUtils.CHECKSUMS_ON = true; + testEnv = new TestEnvironment(new TestEnvironment.Services[] { + TestEnvironment.Services.DIR_SERVICE, TestEnvironment.Services.DIR_CLIENT, + TestEnvironment.Services.TIME_SYNC, + TestEnvironment.Services.RPC_CLIENT, + TestEnvironment.Services.MRC, TestEnvironment.Services.MRC_CLIENT, + TestEnvironment.Services.OSD, TestEnvironment.Services.OSD, TestEnvironment.Services.OSD }); + testEnv.start(); + SetupUtils.CHECKSUMS_ON = false; + + userCredentials = UserCredentials.newBuilder().setUsername("test").addGroups("test").build(); + + auth = RPCAuthentication.authNone; + + dirAddress = testEnv.getDIRAddress().getHostName() + ":" + testEnv.getDIRAddress().getPort(); + mrcAddress = testEnv.getMRCAddress().getHostName() + ":" + testEnv.getMRCAddress().getPort(); + + options = new Options(); + + client = ClientFactory.createAdminClient(dirAddress, userCredentials, null, options); + client.start(); + } + + @After + public void cleanup() { + testEnv.shutdown(); + client.shutdown(); + } + + @Test + public void testAlignedReplicatedWrite() throws Exception { + testReplicatedWrite(128, 128); + } + + @Test + public void testUnalignedReplicatedWrite() throws Exception { + testReplicatedWrite(128, 32); + } + + @Test + public void testUnalignedReplicatedWrite2() throws Exception { + testReplicatedWrite(128, 160); + } + + private void testReplicatedWrite(int stripeSize, int fileSize) throws Exception { + final String volumeName = "testReplicatedWrite"; + final String path = "/replicatedWriteTest.txt"; + + client.createVolume( + mrcAddress, + auth, userCredentials, + volumeName, 0777, + "test", "test", + AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, + StripingPolicyType.STRIPING_POLICY_RAID0, stripeSize, 1, + new ArrayList()); + + AdminVolume volume = client.openVolume(volumeName, null, options); + + // sequential so we can control + volume.setDefaultReplicationPolicy( + userCredentials, + "/", + ReplicaUpdatePolicies.REPL_UPDATE_PC_WQRQ, 3, ReplicationFlags.setSequentialStrategy(0)); + + AdminFileHandle fileHandle = volume.openFile( + userCredentials, + path, + SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_CREAT_VALUE | + SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC_VALUE | + SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR_VALUE, + 0777); + + Random random = new Random(0); + byte[] data = new byte[fileSize * 1024]; + random.nextBytes(data); + + fileHandle.write(userCredentials, data, 0, data.length, 0); + fileHandle.close(); + + fileHandle = volume.openFile( + userCredentials, + path, + SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDONLY_VALUE, + 0777); + + List replicas = fileHandle.getReplicasList(); + + // OSDs 0+1 live + readMajority(replicas, fileHandle, this, data, null, new int[] { 2 }); + + // OSDs 1+2 live + readMajority(replicas, fileHandle, this, data, new int[] { 2 }, new int[] { 0 }); + + // OSDs 2+0 live + readMajority(replicas, fileHandle, this, data, new int[] { 0 }, new int[] { 1 }); + + // OSDs 0+1 live, but this time with OSD 2 being the primary + readMajority(replicas, fileHandle, this, data, new int[] { 1 }, new int[] { 2 }); + + fileHandle.close(); + client.deleteVolume(auth, userCredentials, volumeName); + } + + private void readMajority( + List replicas, FileHandle fileHandle, + Object me, + byte[] expected, + int[] startList, int[] stopList) throws Exception { + if(stopList != null) { + for(int i : stopList) { + Logging.logMessage(Logging.LEVEL_NOTICE, me, "Stopping OSD %d with UUID %s", i, replicas.get(i).getOsdUuids(0)); + testEnv.stopOSD(replicas.get(i).getOsdUuids(0)); + } + } + + if(startList != null) { + for(int i : startList) { + Logging.logMessage(Logging.LEVEL_NOTICE, me, "Starting OSD %d with UUID %s", i, replicas.get(i).getOsdUuids(0)); + testEnv.startOSD(replicas.get(i).getOsdUuids(0)); + } + } + + byte[] readData = new byte[expected.length]; + new Random().nextBytes(readData); + fileHandle.read(userCredentials, readData, 0, readData.length, 0); + Assert.assertArrayEquals("Expected read data to be the same as written data on OSD", expected, readData); + } + +} -- GitLab From ff2bbc22eace85871e59098443d91ea6c3540ed2 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Wed, 15 Oct 2014 13:38:38 +0200 Subject: [PATCH 142/192] tests: created .gitignore for gtest-1.7.0 binaries --- cpp/thirdparty/gtest-1.7.0/.gitignore | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 cpp/thirdparty/gtest-1.7.0/.gitignore diff --git a/cpp/thirdparty/gtest-1.7.0/.gitignore b/cpp/thirdparty/gtest-1.7.0/.gitignore new file mode 100644 index 000000000..14210e7e7 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/.gitignore @@ -0,0 +1,28 @@ +Makefile +autom4te.cache/ +build-aux/config.h +build-aux/stamp-h1 +config.log +config.status +fused-src/gtest/.deps/ +lib/ +libtool +samples/.deps/ +samples/.dirstamp +samples/.libs/ +samples/libsamples.la +samples/sample1.lo +samples/sample1.o +samples/sample2.lo +samples/sample2.o +samples/sample4.lo +samples/sample4.o +scripts/gtest-config +src/.deps/ +src/.dirstamp +src/.libs/ +src/gtest-all.lo +src/gtest-all.o +src/gtest_main.lo +src/gtest_main.o +test/.deps/ \ No newline at end of file -- GitLab From 2ec57b1061bcf3700286a85b4abde445437e4907 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Thu, 16 Oct 2014 17:06:35 +0200 Subject: [PATCH 143/192] benchmark: added replication policy and factor options --- .../utils/xtfs_benchmark/CLIOptions.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java index b18cc2d81..f9b84d008 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java @@ -50,6 +50,8 @@ class CLIOptions { private static final String THREADS; private static final String REPETITIONS; private static final String CHUNK_SIZE; + private static final String REPLICATION_POLICY; + private static final String REPLICATION_FACTOR; private static final String STRIPE_SIZE; private static final String STRIPE_WITDH; private static final String SIZE_SEQ; @@ -77,6 +79,8 @@ class CLIOptions { THREADS = "n"; REPETITIONS = "r"; CHUNK_SIZE = "-chunk-size"; + REPLICATION_POLICY = "-replication-policy"; + REPLICATION_FACTOR = "-replication-factor"; STRIPE_SIZE = "-stripe-size"; STRIPE_WITDH = "-stripe-width"; SIZE_SEQ = "ssize"; @@ -112,6 +116,8 @@ class CLIOptions { setOSDPassword(); setSSLOptions(); setChunkSize(); + setReplicationPolicy(); + setReplicationFactor(); setStripeSize(); setStripeWidth(); setNoCleanup(); @@ -156,6 +162,10 @@ class CLIOptions { "")); options.put(CHUNK_SIZE, new CLIParser.CliOption(STRING, "Chunk size of reads/writes in benchmark in [B|K|M|G] (no modifier assumes bytes). default: 128K", "")); + options.put(REPLICATION_POLICY, new CLIParser.CliOption(STRING, + "Replication policy to use for new volumes. default: none", "")); + options.put(REPLICATION_FACTOR, new CLIParser.CliOption(STRING, + "Replication factor to use for new volumes. default: 3", "")); options.put(STRIPE_SIZE, new CLIParser.CliOption(STRING, "stripeSize in [B|K|M|G] (no modifier assumes bytes). default: 128K", "")); options.put(STRIPE_WITDH, new CLIParser.CliOption(STRING, "stripe width. default: 1", "")); @@ -298,6 +308,22 @@ class CLIOptions { } } } + + private void setReplicationPolicy() { + String replicationPolicy = options.get(REPLICATION_POLICY).stringValue; + if(null != replicationPolicy) { + assert "".equals(replicationPolicy) + || "WqRq".equals(replicationPolicy) + || "WaR1".equals(replicationPolicy) : "Unknown replication policy: " + replicationPolicy; + builder.setReplicationPolicy(replicationPolicy); + } + } + + private void setReplicationFactor() { + String replicationFactor = options.get(REPLICATION_FACTOR).stringValue; + if(null != replicationFactor) + builder.setReplicationFactor(Integer.parseInt(replicationFactor)); + } private void setChunkSize() { String chunkSize = options.get(CHUNK_SIZE).stringValue; -- GitLab From 83db3dae2ef48a0e186d9898344e0529af3886f2 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 20 Oct 2014 10:38:32 +0200 Subject: [PATCH 144/192] contrib: added replication options, unaligned sw benchmark, K size modifier, chunk size option, second-resolution filenames for results --- contrib/benchmark/benchmark.sh | 77 +++++++++++++++++++++++++++------- 1 file changed, 63 insertions(+), 14 deletions(-) diff --git a/contrib/benchmark/benchmark.sh b/contrib/benchmark/benchmark.sh index f3d321aed..d206ee1d2 100755 --- a/contrib/benchmark/benchmark.sh +++ b/contrib/benchmark/benchmark.sh @@ -36,6 +36,10 @@ OSD_UUIDS="test-osd0" # the chunksize (aka blocksize) for the benchmarks CHUNKSIZE="128K" +# replication settings +REPLICATION_POLICY="" +REPLICATION_FACTOR=1 + check_env(){ # check XTREEMFS if [ -z "$XTREEMFS" ]; then @@ -69,7 +73,7 @@ printUsage() { cat << EOF Synopsis - $(basename $0) -t TYPE -s NUMBER [-b NUMBER -e NUMBER] [-r NUMBER] [-v] + $(basename $0) -t TYPE -s NUMBER [-x NUMBER] [-p POLICY -f NUMBER] [-b NUMBER -e NUMBER] [-r NUMBER] [-v] Run a XtreemFS benchmark series, i.e. a series of benchmarks with increasing numbers of threads. Logs are placed in \$HOME/log/, results in \$HOME/results (can be changed at the head of the script). @@ -77,12 +81,23 @@ Synopsis -t type Type of benchmarks to run. Type can be either of the following: sw sequential write + usw unaligned sequential write sr sequential read rw random write rr random read -s size - Size of one benchmark, modifier M (for MiB) or G (for GiB) is mandatory. + Size of one benchmark, modifier K (for KiB), M (for MiB) or G (for GiB) is mandatory. + + -x size + Size of each read/write request, modifier K (for KiB), M (for MiB) or G (for GiB) is mandatory. + Defaults to 128K. + + -p policy + Replication policy to use. Defaults to none. + + -f factor + Replication factor to use. Defaults to 1. -b number of threads to beginn the benchmark series Minimum number of threads to be run as the benchmarks series. @@ -118,7 +133,8 @@ init_params(){ THREADS="$(seq $BEGIN $END)" REPETITIONS="$(seq 1 $REPETITIONS)" - NOW=$(date +"%y-%m-%d_%H-%M") + # use second resolution in case multiple benchmarks are run per minute + NOW=$(date +"%y-%m-%d_%H-%M-%S") # redirect stdout and stderr exec 2> >(tee $LOG_DIR/$TYPE-$NOW.log) exec > >(tee $RESULT_DIR/$TYPE-$NOW.csv) @@ -194,15 +210,23 @@ run_benchmark(){ local benchType=$1 local size=$2 local threads=$3 + local replicationOpt="" + if [ $REPLICATION_POLICY != "" ]; then + replicationOpt="--replication-policy $REPLICATION_POLICY" + fi + if [ $benchType = "sr" ]; then - XTREEMFS=$XTREEMFS timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -$benchType -ssize $size -n $threads --no-cleanup-volumes --user $USER - elif [ $benchType = "sw" ]; then - XTREEMFS=$XTREEMFS timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -$benchType -ssize $size -n $threads --user $USER + XTREEMFS=$XTREEMFS timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -$benchType -ssize $size -n $threads --no-cleanup-volumes --user $USER \ + $replicationOpt --replication-factor $REPLICATION_FACTOR --chunk-size $CHUNKSIZE + elif [ $benchType = "sw" ] || [ $benchType = "usw" ]; then + XTREEMFS=$XTREEMFS timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -$benchType -ssize $size -n $threads --user $USER \ + $replicationOpt --replication-factor $REPLICATION_FACTOR --chunk-size $CHUNKSIZE elif [ $benchType = "rw" ] || [ $benchType = "rr" ]; then # calc basefile size and round to a number divideable through CHUNKSIZE local basefile_size=$(echo "(($BASEFILE_SIZE/$threads)/$CHUNKSIZE)*$CHUNKSIZE" | bc) XTREEMFS=$XTREEMFS timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -$benchType -rsize $size --basefile-size $basefile_size -n $threads \ - --no-cleanup-basefile --no-cleanup-volumes --user $USER + --no-cleanup-basefile --no-cleanup-volumes --user $USER \ + $replicationOpt --replication-factor $REPLICATION_FACTOR --chunk-size $CHUNKSIZE fi local bench_exit_status=$? @@ -278,13 +302,13 @@ REPETITIONS=1 # parse options -while getopts ":t:s:b:e:r:c:v" opt; do +while getopts ":t:s:x:b:e:r:p:f:v:c" opt; do case $opt in t) - if [ $OPTARG = "sw" ] || [ $OPTARG = "sr" ] || [ $OPTARG = "rw" ] || [ $OPTARG = "rr" ]; then + if [ $OPTARG = "sw" ] || [ $OPTARG = "usw" ] || [ $OPTARG = "sr" ] || [ $OPTARG = "rw" ] || [ $OPTARG = "rr" ]; then TYPE=$OPTARG else - echo 'wrong argument to -t. Needs to be either "sw", "sr", "rw" or "rr"' + echo 'wrong argument to -t. Needs to be either "sw", "usw", "sr", "rw" or "rr"' exit 1 fi ;; @@ -292,12 +316,29 @@ while getopts ":t:s:b:e:r:c:v" opt; do index=$(echo `expr match $OPTARG '[0-9]\+'`) SIZE=${OPTARG:0:$index} modifier=${OPTARG:$index} - if [ $modifier = "M" ]; then + if [ $modifier = "K" ]; then + SIZE=$(echo "$SIZE*2^10" | bc) + elif [ $modifier = "M" ]; then SIZE=$(echo "$SIZE*2^20" | bc) elif [ $modifier = "G" ]; then SIZE=$(echo "$SIZE*2^30" | bc) else - echo "Wrong size modifier. Only 'M' and 'G' are allowed" + echo "Wrong size modifier. Only 'K', 'M' and 'G' are allowed" + exit 1 + fi + ;; + x) + index=$(echo `expr match $OPTARG '[0-9]\+'`) + CHUNKSIZE=${OPTARG:0:$index} + modifier=${OPTARG:$index} + if [ $modifier = "K" ]; then + CHUNKSIZE=$(echo "$CHUNKSIZE*2^10" | bc) + elif [ $modifier = "M" ]; then + CHUNKSIZE=$(echo "$CHUNKSIZE*2^20" | bc) + elif [ $modifier = "G" ]; then + CHUNKSIZE=$(echo "$CHUNKSIZE*2^30" | bc) + else + echo "Wrong size modifier. Only 'K', 'M' and 'G' are allowed" exit 1 fi ;; @@ -310,6 +351,12 @@ while getopts ":t:s:b:e:r:c:v" opt; do r) REPETITIONS=$OPTARG ;; + p) + REPLICATION_POLICY=$OPTARG + ;; + f) + REPLICATION_FACTOR=$OPTARG + ;; v) SLEEP=false set -x @@ -334,7 +381,9 @@ drop_caches for i in $THREADS; do size="$(echo "$SIZE/$i"|bc)" - size="$(echo "($size/$CHUNKSIZE)*$CHUNKSIZE" | bc)" # round down to a size divideable through the CHUNKSIZE + if [ $TYPE != "usw" ]; then + size="$(echo "($size/$CHUNKSIZE)*$CHUNKSIZE" | bc)" # round down to a size divideable through the CHUNKSIZE + fi if [ $TYPE = "sr" ]; then prepare_seq_read $size $i @@ -353,7 +402,7 @@ for i in $THREADS; do done # seq write benchmarks run cleanup after every benchmark, so this would be redundant - if [ $TYPE != "sw" ]; then + if [ $TYPE != "sw" ] && [ $TYPE != "usw" ]; then volume_index=$(echo "$i-1" | bc) for i in $(seq 0 $volume_index); do rmfs.xtreemfs -f $MRC/benchmark$i -- GitLab From 278b8acf16926db85673441ab4a70df13239ea13 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 20 Oct 2014 10:49:35 +0200 Subject: [PATCH 145/192] servers: added unaligned sw benchmark --- .../common/benchmark/BenchmarkFactory.java | 3 + .../common/benchmark/BenchmarkUtils.java | 2 +- .../xtreemfs/common/benchmark/Controller.java | 11 ++++ .../UnalignedSequentialWriteBenchmark.java | 60 +++++++++++++++++++ .../utils/xtfs_benchmark/CLIOptions.java | 7 +++ .../utils/xtfs_benchmark/xtfs_benchmark.java | 5 ++ 6 files changed, 87 insertions(+), 1 deletion(-) create mode 100644 java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java diff --git a/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkFactory.java b/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkFactory.java index 6b827247e..3f365af46 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkFactory.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkFactory.java @@ -26,6 +26,9 @@ class BenchmarkFactory { case SEQ_WRITE: benchmark = new SequentialWriteBenchmark(size, config, client, volumeManager); break; + case SEQ_UNALIGNED_WRITE: + benchmark = new UnalignedSequentialWriteBenchmark(size, config, client, volumeManager); + break; case SEQ_READ: benchmark = new SequentialReadBenchmark(size, config, client, volumeManager); break; diff --git a/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkUtils.java b/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkUtils.java index 0c510783f..a352a63f4 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkUtils.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/BenchmarkUtils.java @@ -24,6 +24,6 @@ public class BenchmarkUtils { * Enum for the different benchmark Types. */ public static enum BenchmarkType { - SEQ_WRITE, SEQ_READ, RAND_WRITE, RAND_READ, FILES_WRITE, FILES_READ + SEQ_WRITE, SEQ_UNALIGNED_WRITE, SEQ_READ, RAND_WRITE, RAND_READ, FILES_WRITE, FILES_READ } } diff --git a/java/servers/src/org/xtreemfs/common/benchmark/Controller.java b/java/servers/src/org/xtreemfs/common/benchmark/Controller.java index 2f2f229b6..acba0ee77 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/Controller.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/Controller.java @@ -91,6 +91,17 @@ public class Controller { return startBenchmark(size, numberOfThreads, BenchmarkType.SEQ_WRITE); } + /** + * Starts unaligned sequential write benchmarks with the parameters specified in the {@link BenchmarkConfig}.
+ * + * @return the results of the benchmark (see {@link BenchmarkResult}) + * @throws Exception + */ + public ArrayList startUnalignedSequentialWriteBenchmark(long size, int numberOfThreads) throws Exception { + verifySizesAndThreads(size, numberOfThreads, BenchmarkType.SEQ_UNALIGNED_WRITE); + return startBenchmark(size, numberOfThreads, BenchmarkType.SEQ_UNALIGNED_WRITE); + } + /** * Starts sequential read benchmarks with the parameters specified in the {@link BenchmarkConfig}.
* diff --git a/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java b/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java new file mode 100644 index 000000000..b75344afe --- /dev/null +++ b/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java @@ -0,0 +1,60 @@ +package org.xtreemfs.common.benchmark; + +import java.io.IOException; +import java.util.LinkedList; +import java.util.Random; + +import org.xtreemfs.common.libxtreemfs.AdminClient; +import org.xtreemfs.common.libxtreemfs.FileHandle; +import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes; + +public class UnalignedSequentialWriteBenchmark extends SequentialBenchmark { + + private LinkedList filenames; + + UnalignedSequentialWriteBenchmark(long size, BenchmarkConfig config, AdminClient client, VolumeManager volumeManager) + throws Exception { + super(size, config, client, volumeManager); + filenames = new LinkedList(); + } + + @Override + long performIO(byte[] data, long numberOfBlocks) throws IOException { + int flags = GlobalTypes.SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_CREAT.getNumber() + | GlobalTypes.SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC.getNumber() + | GlobalTypes.SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR.getNumber(); + FileHandle fileHandle = volume.openFile(config.getUserCredentials(), BENCHMARK_FILENAME + 0, flags, 0777); + + try { + return tryPerformIO(data, numberOfBlocks, fileHandle); + } catch (IOException e) { + /* + * closing the filehandle manually seems to be the only way to avoid an AssertionError in + * VolumeImplementation.internalShutdown() when shutting down client + */ + fileHandle.close(); + throw e; + } + } + + private long tryPerformIO(byte[] data, long numberOfBlocks, FileHandle fileHandle) throws IOException { + Random random = new Random(); + this.filenames.add(BENCHMARK_FILENAME + 0); + long byteCounter = 0; + + for (long j = 0; !cancelled && j < numberOfBlocks; j++) { + long nextOffset = j * requestSize; + random.nextBytes(data); + byteCounter += fileHandle.write(config.getUserCredentials(), data, requestSize, nextOffset); + } + fileHandle.close(); + return byteCounter; + } + + @Override + void finalizeBenchmark() throws Exception { + volumeManager.setSequentialFilelistForVolume(volume, filenames); + volumeManager.addCreatedFiles(volume, filenames); + } + +} diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java index f9b84d008..f2255ffc6 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java @@ -41,6 +41,7 @@ class CLIOptions { private static final String OSD_SELECTION_UUIDS; private static final String USERNAME; private static final String GROUPNAME; + private static final String SEQ_UNALIGNED_WRITE; private static final String SEQ_WRITE; private static final String SEQ_READ; private static final String RAND_WRITE; @@ -72,6 +73,7 @@ class CLIOptions { GROUPNAME = "-group"; SEQ_WRITE = "sw"; SEQ_READ = "sr"; + SEQ_UNALIGNED_WRITE = "usw"; RAND_WRITE = "rw"; RAND_READ = "rr"; FILEBASED_WRITE = "fw"; @@ -150,6 +152,7 @@ class CLIOptions { /* benchmark switches */ options.put(SEQ_WRITE, new CLIParser.CliOption(SWITCH, "sequential write benchmark", "")); + options.put(SEQ_UNALIGNED_WRITE, new CLIParser.CliOption(SWITCH, "unaligned sequential write benchmark", "")); options.put(SEQ_READ, new CLIParser.CliOption(SWITCH, "sequential read benchmark", "")); options.put(RAND_WRITE, new CLIParser.CliOption(SWITCH, "random write benchmark", "")); options.put(RAND_READ, new CLIParser.CliOption(SWITCH, "random read benchmark", "")); @@ -421,6 +424,10 @@ class CLIOptions { return options.get(SEQ_WRITE).switchValue; } + boolean unalignedSequentialWriteBenchmarkIsSet() { + return options.get(SEQ_UNALIGNED_WRITE).switchValue; + } + boolean sequentialReadBenchmarkIsSet() { return options.get(SEQ_READ).switchValue; } diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java index edc02f02e..cfa228285 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/xtfs_benchmark.java @@ -88,6 +88,11 @@ public class xtfs_benchmark { results.addAll(result); } + if(cliOptions.unalignedSequentialWriteBenchmarkIsSet()) { + result = controller.startUnalignedSequentialWriteBenchmark(cliOptions.getSequentialSize(), cliOptions.getNumberOfThreads()); + results.addAll(result); + } + if (cliOptions.sequentialReadBenchmarkIsSet()) { result = controller.startSequentialReadBenchmark(cliOptions.getSequentialSize(), cliOptions.getNumberOfThreads()); results.addAll(result); -- GitLab From ea04016cb222b94bc8be7259fe5d289d0f52ad9e Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 20 Oct 2014 10:52:40 +0200 Subject: [PATCH 146/192] servers: corrected indentation for rwr test --- .../replication/ReadWriteReplicationTest.java | 246 ++++++++---------- 1 file changed, 113 insertions(+), 133 deletions(-) diff --git a/java/servers/test/org/xtreemfs/test/osd/replication/ReadWriteReplicationTest.java b/java/servers/test/org/xtreemfs/test/osd/replication/ReadWriteReplicationTest.java index e27177d5c..5f120283a 100644 --- a/java/servers/test/org/xtreemfs/test/osd/replication/ReadWriteReplicationTest.java +++ b/java/servers/test/org/xtreemfs/test/osd/replication/ReadWriteReplicationTest.java @@ -44,154 +44,134 @@ import org.xtreemfs.test.TestHelper; * */ public class ReadWriteReplicationTest { - - @Rule - public final TestRule testLog = TestHelper.testLog; - - private TestEnvironment testEnv; - - private UserCredentials userCredentials; - - private String dirAddress, mrcAddress; - - private Options options; - - private AdminClient client; - - private Auth auth; - - @Before - public void setup() throws Exception { - FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); + + @Rule + public final TestRule testLog = TestHelper.testLog; + + private TestEnvironment testEnv; + + private UserCredentials userCredentials; + + private String dirAddress, mrcAddress; + + private Options options; + + private AdminClient client; + + private Auth auth; + + @Before + public void setup() throws Exception { + FSUtils.delTree(new java.io.File(SetupUtils.TEST_DIR)); Logging.start(Logging.LEVEL_NOTICE); SetupUtils.CHECKSUMS_ON = true; - testEnv = new TestEnvironment(new TestEnvironment.Services[] { - TestEnvironment.Services.DIR_SERVICE, TestEnvironment.Services.DIR_CLIENT, - TestEnvironment.Services.TIME_SYNC, - TestEnvironment.Services.RPC_CLIENT, - TestEnvironment.Services.MRC, TestEnvironment.Services.MRC_CLIENT, + testEnv = new TestEnvironment(new TestEnvironment.Services[] { TestEnvironment.Services.DIR_SERVICE, + TestEnvironment.Services.DIR_CLIENT, TestEnvironment.Services.TIME_SYNC, + TestEnvironment.Services.RPC_CLIENT, TestEnvironment.Services.MRC, TestEnvironment.Services.MRC_CLIENT, TestEnvironment.Services.OSD, TestEnvironment.Services.OSD, TestEnvironment.Services.OSD }); testEnv.start(); SetupUtils.CHECKSUMS_ON = false; userCredentials = UserCredentials.newBuilder().setUsername("test").addGroups("test").build(); - + auth = RPCAuthentication.authNone; dirAddress = testEnv.getDIRAddress().getHostName() + ":" + testEnv.getDIRAddress().getPort(); mrcAddress = testEnv.getMRCAddress().getHostName() + ":" + testEnv.getMRCAddress().getPort(); options = new Options(); - + client = ClientFactory.createAdminClient(dirAddress, userCredentials, null, options); client.start(); - } - - @After - public void cleanup() { - testEnv.shutdown(); - client.shutdown(); - } - - @Test - public void testAlignedReplicatedWrite() throws Exception { - testReplicatedWrite(128, 128); - } - - @Test - public void testUnalignedReplicatedWrite() throws Exception { - testReplicatedWrite(128, 32); - } - - @Test - public void testUnalignedReplicatedWrite2() throws Exception { - testReplicatedWrite(128, 160); - } - - private void testReplicatedWrite(int stripeSize, int fileSize) throws Exception { - final String volumeName = "testReplicatedWrite"; - final String path = "/replicatedWriteTest.txt"; - - client.createVolume( - mrcAddress, - auth, userCredentials, - volumeName, 0777, - "test", "test", - AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, - StripingPolicyType.STRIPING_POLICY_RAID0, stripeSize, 1, - new ArrayList()); - - AdminVolume volume = client.openVolume(volumeName, null, options); - - // sequential so we can control - volume.setDefaultReplicationPolicy( - userCredentials, - "/", - ReplicaUpdatePolicies.REPL_UPDATE_PC_WQRQ, 3, ReplicationFlags.setSequentialStrategy(0)); - - AdminFileHandle fileHandle = volume.openFile( - userCredentials, - path, - SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_CREAT_VALUE | - SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC_VALUE | - SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR_VALUE, - 0777); - - Random random = new Random(0); - byte[] data = new byte[fileSize * 1024]; - random.nextBytes(data); - - fileHandle.write(userCredentials, data, 0, data.length, 0); - fileHandle.close(); - - fileHandle = volume.openFile( - userCredentials, - path, - SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDONLY_VALUE, - 0777); - - List replicas = fileHandle.getReplicasList(); - - // OSDs 0+1 live - readMajority(replicas, fileHandle, this, data, null, new int[] { 2 }); - - // OSDs 1+2 live - readMajority(replicas, fileHandle, this, data, new int[] { 2 }, new int[] { 0 }); - - // OSDs 2+0 live - readMajority(replicas, fileHandle, this, data, new int[] { 0 }, new int[] { 1 }); - - // OSDs 0+1 live, but this time with OSD 2 being the primary - readMajority(replicas, fileHandle, this, data, new int[] { 1 }, new int[] { 2 }); - - fileHandle.close(); - client.deleteVolume(auth, userCredentials, volumeName); - } - - private void readMajority( - List replicas, FileHandle fileHandle, - Object me, - byte[] expected, - int[] startList, int[] stopList) throws Exception { - if(stopList != null) { - for(int i : stopList) { - Logging.logMessage(Logging.LEVEL_NOTICE, me, "Stopping OSD %d with UUID %s", i, replicas.get(i).getOsdUuids(0)); - testEnv.stopOSD(replicas.get(i).getOsdUuids(0)); - } - } - - if(startList != null) { - for(int i : startList) { - Logging.logMessage(Logging.LEVEL_NOTICE, me, "Starting OSD %d with UUID %s", i, replicas.get(i).getOsdUuids(0)); - testEnv.startOSD(replicas.get(i).getOsdUuids(0)); - } - } - - byte[] readData = new byte[expected.length]; - new Random().nextBytes(readData); - fileHandle.read(userCredentials, readData, 0, readData.length, 0); - Assert.assertArrayEquals("Expected read data to be the same as written data on OSD", expected, readData); - } + } + + @After + public void cleanup() { + testEnv.shutdown(); + client.shutdown(); + } + + @Test + public void testAlignedReplicatedWrite() throws Exception { + testReplicatedWrite(128, 128); + } + + @Test + public void testUnalignedReplicatedWrite() throws Exception { + testReplicatedWrite(128, 32); + } + + @Test + public void testUnalignedReplicatedWrite2() throws Exception { + testReplicatedWrite(128, 160); + } + + private void testReplicatedWrite(int stripeSize, int fileSize) throws Exception { + final String volumeName = "testReplicatedWrite"; + final String path = "/replicatedWriteTest.txt"; + + client.createVolume(mrcAddress, auth, userCredentials, volumeName, 0777, "test", "test", + AccessControlPolicyType.ACCESS_CONTROL_POLICY_POSIX, StripingPolicyType.STRIPING_POLICY_RAID0, + stripeSize, 1, new ArrayList()); + + AdminVolume volume = client.openVolume(volumeName, null, options); + volume.setDefaultReplicationPolicy(userCredentials, "/", ReplicaUpdatePolicies.REPL_UPDATE_PC_WQRQ, 3, + ReplicationFlags.setSequentialStrategy(0)); + + AdminFileHandle fileHandle = volume.openFile(userCredentials, path, + SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_CREAT_VALUE | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_TRUNC_VALUE + | SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDWR_VALUE, 0777); + + Random random = new Random(0); + byte[] data = new byte[fileSize * 1024]; + random.nextBytes(data); + + fileHandle.write(userCredentials, data, 0, data.length, 0); + fileHandle.close(); + + fileHandle = volume.openFile(userCredentials, path, SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_RDONLY_VALUE, 0777); + + List replicas = fileHandle.getReplicasList(); + + // OSDs 0+1 live + readMajority(replicas, fileHandle, this, data, null, new int[] { 2 }); + + // OSDs 1+2 live + readMajority(replicas, fileHandle, this, data, new int[] { 2 }, new int[] { 0 }); + + // OSDs 2+0 live + readMajority(replicas, fileHandle, this, data, new int[] { 0 }, new int[] { 1 }); + + // OSDs 0+1 live, but this time with OSD 2 being the primary + readMajority(replicas, fileHandle, this, data, new int[] { 1 }, new int[] { 2 }); + + fileHandle.close(); + client.deleteVolume(auth, userCredentials, volumeName); + } + + private void readMajority(List replicas, FileHandle fileHandle, Object me, byte[] expected, + int[] startList, int[] stopList) throws Exception { + if (stopList != null) { + for (int i : stopList) { + Logging.logMessage(Logging.LEVEL_NOTICE, me, "Stopping OSD %d with UUID %s", i, replicas.get(i) + .getOsdUuids(0)); + testEnv.stopOSD(replicas.get(i).getOsdUuids(0)); + } + } + + if (startList != null) { + for (int i : startList) { + Logging.logMessage(Logging.LEVEL_NOTICE, me, "Starting OSD %d with UUID %s", i, replicas.get(i) + .getOsdUuids(0)); + testEnv.startOSD(replicas.get(i).getOsdUuids(0)); + } + } + + byte[] readData = new byte[expected.length]; + new Random().nextBytes(readData); + fileHandle.read(userCredentials, readData, 0, readData.length, 0); + Assert.assertArrayEquals("Expected read data to be the same as written data on OSD", expected, readData); + } } -- GitLab From d4d1e5c76d342d4a9d516468cdcb015cab36b572 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 20 Oct 2014 14:23:01 +0200 Subject: [PATCH 147/192] contrib: benchmark: incorporated J's extensions with some modifications --- contrib/benchmark/benchmark.sh | 96 +++++++++++++++------------------- 1 file changed, 42 insertions(+), 54 deletions(-) diff --git a/contrib/benchmark/benchmark.sh b/contrib/benchmark/benchmark.sh index d206ee1d2..0a147cb38 100755 --- a/contrib/benchmark/benchmark.sh +++ b/contrib/benchmark/benchmark.sh @@ -17,24 +17,31 @@ SLEEP=true BASEFILE_SIZE="100g" # the directories for the logfiles and the results -LOG_DIR="$HOME/log" -RESULT_DIR="$HOME/result" +LOG_BASE=${BENCH_LOG:-$HOME} +LOG_DIR="$LOG_BASE/log" +RESULT_DIR="$LOG_BASE/result" # Drops caches after each benchmark. Uncomment to activate # cp "drop_caches" to "/usr/local/bin" and add "ALL ALL=NOPASSWD: /usr/local/bin/drop_caches" to sudoers file -DROP_CACHES_CALL="sudo /usr/bin/drop_caches" +DROP_CACHES=${BENCH_DROP_CACHES:-"/usr/local/bin/drop_caches"} +if [[ $DROP_CACHES != "false" ]]; then + DROP_CACHES_CALL="sudo ${DROP_CACHES}" +fi # IP and Port of the DIR -DIR="localhost:32638" +DIR=${BENCH_DIR:-"localhost:32638"} # IP and Port of the MRC -MRC="localhost:32636" +MRC=${BENCH_MRC:-"localhost:32636"} # space separed list of OSD_UUIDS, e.g. "osd1 osd2 ..." -OSD_UUIDS="test-osd0" +OSD_UUIDS=${BENCH_OSD_UUIDS:-"test-osd0"} + +# stripe size for a volume +STRIPE_SIZE="128K" -# the chunksize (aka blocksize) for the benchmarks -CHUNKSIZE="128K" +# request size for each I/O operation +REQUEST_SIZE=$STRIPE_SIZE # replication settings REPLICATION_POLICY="" @@ -89,10 +96,14 @@ Synopsis -s size Size of one benchmark, modifier K (for KiB), M (for MiB) or G (for GiB) is mandatory. - -x size + -c size Size of each read/write request, modifier K (for KiB), M (for MiB) or G (for GiB) is mandatory. Defaults to 128K. + -i size + Stripe size for each volume, modifier K (for KiB), M (for MiB) or G (for GiB) is mandatory. + Defaults to 128K. + -p policy Replication policy to use. Defaults to none. @@ -140,7 +151,8 @@ init_params(){ exec > >(tee $RESULT_DIR/$TYPE-$NOW.csv) BASEFILE_SIZE=$(parse_size $BASEFILE_SIZE) - CHUNKSIZE=$(parse_size $CHUNKSIZE) + REQUEST_SIZE=$(parse_size $REQUEST_SIZE) + STRIPE_SIZE=$(parse_size $STRIPE_SIZE) } @@ -182,7 +194,7 @@ prepare_seq_read(){ for i in $(seq 1 $threads); do local index=$(echo "$i-1"|bc) timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -sw -ssize $1 --no-cleanup --user $USER \ - ${VOLUMES[$index]} + ${VOLUMES[$index]} --stripe-size $STRIPE_SIZE --chunk-size $REQUEST_SIZE done } @@ -194,14 +206,14 @@ prepare_random(){ local volume_index=$(echo "$threads-1" | bc) for i in $(seq 0 $volume_index); do VOLUMES[$i]=benchmark$i; done - # calc basefile size and round to a number divideable through CHUNKSIZE - local basefile_size=$(echo "(($BASEFILE_SIZE/$threads)/$CHUNKSIZE)*$CHUNKSIZE" | bc) + # calc basefile size and round to a number divideable through REQUEST_SIZE + local basefile_size=$(echo "(($BASEFILE_SIZE/$threads)/$REQUEST_SIZE)*$REQUEST_SIZE" | bc) echo -e "\nPreparing random benchmark: Creating a basefiles\n" >&2 for i in $(seq 1 $threads); do local index=$(echo "$i-1"|bc) - timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -rr -rsize $CHUNKSIZE --no-cleanup-basefile --no-cleanup-volumes --user $USER \ - --basefile-size $basefile_size ${VOLUMES[$index]} + timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -rr -rsize $REQUEST_SIZE --no-cleanup-basefile --no-cleanup-volumes --user $USER \ + --basefile-size $basefile_size ${VOLUMES[$index]} --stripe-size $STRIPE_SIZE --chunk-size $REQUEST_SIZE done } @@ -211,22 +223,22 @@ run_benchmark(){ local size=$2 local threads=$3 local replicationOpt="" - if [ $REPLICATION_POLICY != "" ]; then + if [[ $REPLICATION_POLICY != "" ]]; then replicationOpt="--replication-policy $REPLICATION_POLICY" fi if [ $benchType = "sr" ]; then XTREEMFS=$XTREEMFS timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -$benchType -ssize $size -n $threads --no-cleanup-volumes --user $USER \ - $replicationOpt --replication-factor $REPLICATION_FACTOR --chunk-size $CHUNKSIZE + $replicationOpt --replication-factor $REPLICATION_FACTOR --chunk-size $REQUEST_SIZE --stripe-size $STRIPE_SIZE elif [ $benchType = "sw" ] || [ $benchType = "usw" ]; then XTREEMFS=$XTREEMFS timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -$benchType -ssize $size -n $threads --user $USER \ - $replicationOpt --replication-factor $REPLICATION_FACTOR --chunk-size $CHUNKSIZE + $replicationOpt --replication-factor $REPLICATION_FACTOR --chunk-size $REQUEST_SIZE --stripe-size $STRIPE_SIZE elif [ $benchType = "rw" ] || [ $benchType = "rr" ]; then - # calc basefile size and round to a number divideable through CHUNKSIZE - local basefile_size=$(echo "(($BASEFILE_SIZE/$threads)/$CHUNKSIZE)*$CHUNKSIZE" | bc) + # calc basefile size and round to a number divideable through REQUEST_SIZE + local basefile_size=$(echo "(($BASEFILE_SIZE/$threads)/$REQUEST_SIZE)*$REQUEST_SIZE" | bc) XTREEMFS=$XTREEMFS timeout --foreground $TIMEOUT $XTREEMFS/bin/xtfs_benchmark -$benchType -rsize $size --basefile-size $basefile_size -n $threads \ --no-cleanup-basefile --no-cleanup-volumes --user $USER \ - $replicationOpt --replication-factor $REPLICATION_FACTOR --chunk-size $CHUNKSIZE + $replicationOpt --replication-factor $REPLICATION_FACTOR --chunk-size $REQUEST_SIZE --stripe-size $STRIPE_SIZE fi local bench_exit_status=$? @@ -302,7 +314,7 @@ REPETITIONS=1 # parse options -while getopts ":t:s:x:b:e:r:p:f:v:c" opt; do +while getopts ":t:s:c:i:b:e:r:p:f:v" opt; do case $opt in t) if [ $OPTARG = "sw" ] || [ $OPTARG = "usw" ] || [ $OPTARG = "sr" ] || [ $OPTARG = "rw" ] || [ $OPTARG = "rr" ]; then @@ -313,34 +325,13 @@ while getopts ":t:s:x:b:e:r:p:f:v:c" opt; do fi ;; s) - index=$(echo `expr match $OPTARG '[0-9]\+'`) - SIZE=${OPTARG:0:$index} - modifier=${OPTARG:$index} - if [ $modifier = "K" ]; then - SIZE=$(echo "$SIZE*2^10" | bc) - elif [ $modifier = "M" ]; then - SIZE=$(echo "$SIZE*2^20" | bc) - elif [ $modifier = "G" ]; then - SIZE=$(echo "$SIZE*2^30" | bc) - else - echo "Wrong size modifier. Only 'K', 'M' and 'G' are allowed" - exit 1 - fi + SIZE=$(parse_size $OPTARG) ;; - x) - index=$(echo `expr match $OPTARG '[0-9]\+'`) - CHUNKSIZE=${OPTARG:0:$index} - modifier=${OPTARG:$index} - if [ $modifier = "K" ]; then - CHUNKSIZE=$(echo "$CHUNKSIZE*2^10" | bc) - elif [ $modifier = "M" ]; then - CHUNKSIZE=$(echo "$CHUNKSIZE*2^20" | bc) - elif [ $modifier = "G" ]; then - CHUNKSIZE=$(echo "$CHUNKSIZE*2^30" | bc) - else - echo "Wrong size modifier. Only 'K', 'M' and 'G' are allowed" - exit 1 - fi + c) + REQUEST_SIZE=$(parse_size $OPTARG) + ;; + i) + STRIPE_SIZE=$(parse_size $OPTARG) ;; b) BEGIN=$OPTARG @@ -361,9 +352,6 @@ while getopts ":t:s:x:b:e:r:p:f:v:c" opt; do SLEEP=false set -x ;; - c) - CONFIG=$OPTARG - ;; \?) echo "Invalid option: -$OPTARG" >&2 exit 1 @@ -382,12 +370,12 @@ drop_caches for i in $THREADS; do size="$(echo "$SIZE/$i"|bc)" if [ $TYPE != "usw" ]; then - size="$(echo "($size/$CHUNKSIZE)*$CHUNKSIZE" | bc)" # round down to a size divideable through the CHUNKSIZE + size="$(echo "($size/$REQUEST_SIZE)*$REQUEST_SIZE" | bc)" # round down to a size divideable through the REQUEST_SIZE fi if [ $TYPE = "sr" ]; then prepare_seq_read $size $i - cleanup_osd18:30 + cleanup_osd elif [ $TYPE = "rw" ] || [ $TYPE = "rr" ]; then prepare_random $i fi -- GitLab From 3ffa85c628aa411932142997991cfc0baeb3cac2 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Wed, 22 Oct 2014 13:36:13 +0200 Subject: [PATCH 148/192] servers: osd: storage: removed recursion from file deletion --- .../src/org/xtreemfs/osd/storage/HashStorageLayout.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java b/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java index 6276741bf..802dc259f 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java +++ b/java/servers/src/org/xtreemfs/osd/storage/HashStorageLayout.java @@ -717,12 +717,10 @@ public class HashStorageLayout extends StorageLayout { } private void del(File parent) { - if (parent.list().length > 1 || parent.equals(new File(this.storageDir))) { - return; - } else { - assert (parent != null); + File storageDirFile = new File(this.storageDir); + for (File p = parent; p != null && p.list().length <= 1 && !p.equals(storageDirFile); p = p + .getParentFile()) { parent.delete(); - del(parent.getParentFile()); } } -- GitLab From b755722adb5c99733cd46b4a15e65be588ec54a6 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Wed, 22 Oct 2014 17:23:14 +0200 Subject: [PATCH 149/192] servers: benchmark: always write complete stripes --- .../common/benchmark/UnalignedSequentialWriteBenchmark.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java b/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java index b75344afe..2782bc47f 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java @@ -10,7 +10,7 @@ import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes; public class UnalignedSequentialWriteBenchmark extends SequentialBenchmark { - private LinkedList filenames; + private final LinkedList filenames; UnalignedSequentialWriteBenchmark(long size, BenchmarkConfig config, AdminClient client, VolumeManager volumeManager) throws Exception { @@ -43,7 +43,7 @@ public class UnalignedSequentialWriteBenchmark extends SequentialBenchmark { long byteCounter = 0; for (long j = 0; !cancelled && j < numberOfBlocks; j++) { - long nextOffset = j * requestSize; + long nextOffset = j * config.getStripeSizeInBytes(); random.nextBytes(data); byteCounter += fileHandle.write(config.getUserCredentials(), data, requestSize, nextOffset); } -- GitLab From 20993f95c3ac02483dfeaf9e8bed8090acece390 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Thu, 23 Oct 2014 12:12:16 +0200 Subject: [PATCH 150/192] servers: benchmark: always using stripe offsets, also for requests larger than the stripe size --- .../common/benchmark/UnalignedSequentialWriteBenchmark.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java b/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java index 2782bc47f..238102373 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java @@ -43,7 +43,8 @@ public class UnalignedSequentialWriteBenchmark extends SequentialBenchmark { long byteCounter = 0; for (long j = 0; !cancelled && j < numberOfBlocks; j++) { - long nextOffset = j * config.getStripeSizeInBytes(); + long stripesPerRequest = (long) Math.ceil(requestSize / config.getStripeSizeInBytes()); + long nextOffset = j * stripesPerRequest * config.getStripeSizeInBytes(); random.nextBytes(data); byteCounter += fileHandle.write(config.getUserCredentials(), data, requestSize, nextOffset); } -- GitLab From 10508f3a8015d01376561402ab55eb912467147d Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Thu, 23 Oct 2014 14:27:19 +0200 Subject: [PATCH 151/192] servers: benchmark: properly computing stripes per request now due to floating point bug --- .../common/benchmark/UnalignedSequentialWriteBenchmark.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java b/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java index 238102373..3beb2571d 100644 --- a/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java +++ b/java/servers/src/org/xtreemfs/common/benchmark/UnalignedSequentialWriteBenchmark.java @@ -43,7 +43,7 @@ public class UnalignedSequentialWriteBenchmark extends SequentialBenchmark { long byteCounter = 0; for (long j = 0; !cancelled && j < numberOfBlocks; j++) { - long stripesPerRequest = (long) Math.ceil(requestSize / config.getStripeSizeInBytes()); + long stripesPerRequest = (long) Math.ceil((double) requestSize / (double) config.getStripeSizeInBytes()); long nextOffset = j * stripesPerRequest * config.getStripeSizeInBytes(); random.nextBytes(data); byteCounter += fileHandle.write(config.getUserCredentials(), data, requestSize, nextOffset); -- GitLab From c3fe3630ce093ee743bf6c1a8add5abbdad5a663 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Mon, 27 Oct 2014 17:15:03 +0100 Subject: [PATCH 152/192] packaging: fixed dependencies for CentOS 7 --- packaging/build-service/xtreemfs/xtreemfs.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/build-service/xtreemfs/xtreemfs.spec b/packaging/build-service/xtreemfs/xtreemfs.spec index cf3512e3d..4d5503d96 100644 --- a/packaging/build-service/xtreemfs/xtreemfs.spec +++ b/packaging/build-service/xtreemfs/xtreemfs.spec @@ -11,7 +11,7 @@ Summary: XtreemFS base package Source0: XtreemFS-%{version}.tar.gz #requires for any distribution -%if 0%{?sles_version} == 10 || 0%{?fedora_version} >= 20 || 0%{?rhel_version} >= 700 +%if 0%{?sles_version} == 10 || 0%{?fedora_version} >= 20 || 0%{?rhel_version} >= 700 || 0%{?centos_version} >= 700 # no need for ant-nodeps for SLE 10 %else BuildRequires: ant-nodeps >= 1.6.5 -- GitLab From 887addd5a1ed3b78da2f59143567af79258f3f5a Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Tue, 28 Oct 2014 17:28:47 +0100 Subject: [PATCH 153/192] cpp: xtfsutil: printing specific success/failure messages --- cpp/src/xtfsutil/xtfsutil.cpp | 40 +++++++++++++++++------------------ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/cpp/src/xtfsutil/xtfsutil.cpp b/cpp/src/xtfsutil/xtfsutil.cpp index fd8366b55..b42cd6720 100644 --- a/cpp/src/xtfsutil/xtfsutil.cpp +++ b/cpp/src/xtfsutil/xtfsutil.cpp @@ -388,7 +388,7 @@ bool SetDefaultSP(const string& xctl_file, << width << " / " << size << "kB" << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Setting Default Striping Policy FAILED" << endl; return false; } } @@ -409,7 +409,7 @@ bool SetVolumeQuota(const string& xctl_file, cout << "Set volume quota to " << quota << "." << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Setting Volume Quota FAILED" << endl; return false; } } @@ -477,7 +477,7 @@ bool SetDefaultRP(const string& xctl_file, << factor << " replicas" << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Setting Default Replication Policy FAILED" << endl; return false; } } @@ -557,7 +557,7 @@ bool SetReplicationPolicy(const string& xctl_file, } return true; } else { - cerr << "FAILED" << endl; + cerr << "Setting Replication Policy FAILED" << endl; return false; } } @@ -589,7 +589,7 @@ bool AddReplica(const string& xctl_file, << response["result"]["osd"].asString() << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Adding Replica FAILED" << endl; return false; } } @@ -610,7 +610,7 @@ bool DeleteReplica(const string& xctl_file, << osd_uuid << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Deleting Replica FAILED" << endl; return false; } } @@ -630,7 +630,7 @@ bool ShowErrors(const string& xctl_file, cout << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Showing Errors FAILED" << endl; return false; } } @@ -651,7 +651,7 @@ bool GetSuitableOSDs(const string& xctl_file, } return true; } else { - cerr << "FAILED" << endl; + cerr << "Getting Suitable OSDs FAILED" << endl; return false; } } @@ -711,7 +711,7 @@ bool SetOSP(const string& xctl_file, << policy << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Setting OSD Selection Policy FAILED" << endl; return false; } } @@ -747,7 +747,7 @@ bool SetRSP(const string& xctl_file, << policy << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Setting Replica Selection Policy FAILED" << endl; return false; } } @@ -773,7 +773,7 @@ bool SetPolicyAttr(const string& xctl_file, << vm["value"].as() << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Setting Policy Attribute FAILED" << endl; return false; } } @@ -794,7 +794,7 @@ bool ListPolicyAttrs(const string& xctl_file, } return true; } else { - cerr << "FAILED" << endl; + cerr << "Listing Policy Attributes FAILED" << endl; return false; } } @@ -816,10 +816,10 @@ bool EnableDisableSnapshots(const string& xctl_file, Json::Value response; if (executeOperation(xctl_file, request, &response)) { - cout << "Success." << endl; + cout << "Enabling/Disabling Snapshot succeeded." << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Enabling/Disabling Snapshot FAILED" << endl; return false; } } @@ -850,13 +850,13 @@ bool ListSnapshots(const string& xctl_file, cout << "- " << snapshots[i].asString() << endl; } } else { - cerr << "FAILED (to parse the list of snapshots)" << endl; + cerr << "Listing Snapshots FAILED (to parse the list of snapshots)" << endl; return false; } } return true; } else { - cerr << "FAILED" << endl; + cerr << "Listing Snapshots FAILED" << endl; return false; } } @@ -880,10 +880,10 @@ bool CreateDeleteSnapshot(const string& xctl_file, Json::Value response; if (executeOperation(xctl_file, request, &response)) { - cout << "Success." << endl; + cout << "Creating/Deleting Snapshot succeeded." << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Creating/Deleting Snapshot FAILED" << endl; return false; } } @@ -908,10 +908,10 @@ bool SetRemoveACL(const string& xctl_file, Json::Value response; if (executeOperation(xctl_file, request, &response)) { - cout << "Success." << endl; + cout << "Setting/Modifying/Removing ACL succeeded." << endl; return true; } else { - cerr << "FAILED" << endl; + cerr << "Setting/Modifying/Removong ACL FAILED" << endl; return false; } } -- GitLab From 962041d16a340ce6ad61f860ddb34d386f385829 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Tue, 28 Oct 2014 17:30:09 +0100 Subject: [PATCH 154/192] cpp: xtfsutil: allowing multiple operations to be executed with the same xtfsutil invocation, fixing #313 --- cpp/src/xtfsutil/xtfsutil.cpp | 114 +++++++++++++++++++++++----------- 1 file changed, 78 insertions(+), 36 deletions(-) diff --git a/cpp/src/xtfsutil/xtfsutil.cpp b/cpp/src/xtfsutil/xtfsutil.cpp index b42cd6720..d3430071d 100644 --- a/cpp/src/xtfsutil/xtfsutil.cpp +++ b/cpp/src/xtfsutil/xtfsutil.cpp @@ -1213,44 +1213,86 @@ int main(int argc, char **argv) { + "-" + boost::lexical_cast(getpid()); + size_t operationsCount = 0, failedOperationsCount = 0; + if (vm.count("set-dsp") > 0) { - return SetDefaultSP(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("set-drp") > 0) { - return SetDefaultRP(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("set-osp") > 0) { - return SetOSP(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("set-rsp") > 0) { - return SetRSP(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("set-pattr") > 0) { - return SetPolicyAttr(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("list-pattrs") > 0) { - return ListPolicyAttrs(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("set-replication-policy") > 0) { - return SetReplicationPolicy(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("add-replica") > 0) { - return AddReplica(xctl_file, path_on_volume, vm, option_add_replica) ? 0 + ++operationsCount; + failedOperationsCount += SetDefaultSP(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("set-drp") > 0) { + ++operationsCount; + failedOperationsCount += SetDefaultRP(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("set-osp") > 0) { + ++operationsCount; + failedOperationsCount += SetOSP(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("set-rsp") > 0) { + ++operationsCount; + failedOperationsCount += SetRSP(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("set-pattr") > 0) { + ++operationsCount; + failedOperationsCount += SetPolicyAttr(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("list-pattrs") > 0) { + ++operationsCount; + failedOperationsCount += ListPolicyAttrs(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("set-replication-policy") > 0) { + ++operationsCount; + failedOperationsCount += SetReplicationPolicy(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("add-replica") > 0) { + ++operationsCount; + failedOperationsCount += AddReplica(xctl_file, path_on_volume, vm, option_add_replica) ? 0 : 1; - } else if (vm.count("delete-replica") > 0) { - return DeleteReplica(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("list-osds") > 0) { - return GetSuitableOSDs(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("set-acl") > 0 || - vm.count("del-acl") > 0) { - return SetRemoveACL(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("enable-snapshots") > 0 || - vm.count("disable-snapshots") > 0) { - return EnableDisableSnapshots(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("list-snapshots") > 0) { - return ListSnapshots(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("create-snapshot") > 0 || - vm.count("create-snapshot-non-recursive") > 0 || - vm.count("delete-snapshot") > 0) { - return CreateDeleteSnapshot(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("errors") > 0) { - return ShowErrors(xctl_file, path_on_volume, vm) ? 0 : 1; - } else if (vm.count("set-quota") > 0) { - return SetVolumeQuota(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("delete-replica") > 0) { + ++operationsCount; + failedOperationsCount += DeleteReplica(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("list-osds") > 0) { + ++operationsCount; + failedOperationsCount += GetSuitableOSDs(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("set-acl") > 0 || + vm.count("del-acl") > 0) { + ++operationsCount; + failedOperationsCount += SetRemoveACL(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("enable-snapshots") > 0 || + vm.count("disable-snapshots") > 0) { + ++operationsCount; + failedOperationsCount += EnableDisableSnapshots(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("list-snapshots") > 0) { + ++operationsCount; + failedOperationsCount += ListSnapshots(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("create-snapshot") > 0 || + vm.count("create-snapshot-non-recursive") > 0 || + vm.count("delete-snapshot") > 0) { + ++operationsCount; + failedOperationsCount += CreateDeleteSnapshot(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("errors") > 0) { + ++operationsCount; + failedOperationsCount += ShowErrors(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if (vm.count("set-quota") > 0) { + ++operationsCount; + failedOperationsCount += SetVolumeQuota(xctl_file, path_on_volume, vm) ? 0 : 1; + } + if(operationsCount == 0){ + ++operationsCount; + failedOperationsCount += getattr(xctl_file, path_on_volume) ? 0 : 1; + } + + if(failedOperationsCount > 0) { + cerr << failedOperationsCount << " of " << operationsCount << " operation(s) failed." << endl; + return 1; } else { - return getattr(xctl_file, path_on_volume) ? 0 : 1; + return 0; } } -- GitLab From 6a820a8e3319547a75866eddfabbf721babb1f74 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Wed, 29 Oct 2014 11:38:14 +0100 Subject: [PATCH 155/192] Added Robert to AUTHORS --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 8550d109d..87c76a793 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,5 +12,6 @@ Philippe Lieser Christian Lorenz Matthias Noack Patrick Schäfer +Robert Schmidtke Paul Seiferth Jan Stender -- GitLab From 0d2b79a3c5c3546e1ae4487c26923c348191f978 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Sun, 2 Nov 2014 20:58:40 +0100 Subject: [PATCH 156/192] Updated fundings in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a37ede6b6..1ea303941 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,6 @@ XtreemFS is a distributed, replicated and fault-tolerant file system for federat * Mailing List: http://groups.google.com/group/xtreemfs * Tutorial for Replication Fail-Over Demo: https://code.google.com/p/xtreemfs/wiki/ContrailSummerSchoolHandsOn2013 -The XtreemFS project is developed by Zuse Institute Berlin. The development of the project is funded by the European Commission since 2006 under Grant Agreements No. FP6-033576, FP7-ICT-257438, and FP7-318521, as well as the German projects MoSGrid, FFMK, and "First We Take Berlin". +The XtreemFS project is developed by Zuse Institute Berlin. The development of the project is funded by the European Commission since 2006 under Grant Agreements No. FP6-033576, FP7-ICT-257438, and FP7-318521, as well as the German projects MoSGrid, "First We Take Berlin", FFMK, GeoMultiSens, and BBDC. [![Build Status](https://travis-ci.org/xtreemfs/xtreemfs.svg?branch=master)](https://travis-ci.org/xtreemfs/xtreemfs) -- GitLab From ec67a0a5da9da3a3982d3b4d4df2ee2cd2f49846 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Mon, 3 Nov 2014 13:32:25 +0100 Subject: [PATCH 157/192] doc: revised OSD health script description --- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 845774 -> 845789 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 39 ++++++++++++++++++++------ 2 files changed, 30 insertions(+), 9 deletions(-) diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index 0f89baf0699b554871655af00d0598ec582f4e0c..5452edf28a10833cfb3fda70d118c9ce3700b894 100644 GIT binary patch delta 10304 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 b_dm1C>93a4mpJcjE#8mo9HM delta 10293 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 diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index 5ccffa864..91f274458 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -1425,19 +1425,40 @@ Using the \texttt{xtreemfs-osd-farm} script demands two steps. First, a list nam \subsection{Monitoring OSD's storage devices} \label{sec:osd-health-script} -The health status of OSDs storage devices (e.g. SMART health test) can be used to determine if an OSD will fail soon or actually failed. If the health status is available, the default OSD selection policy will use it to exclude OSDs with a critical status (WARNING and/or FAILED). To test the health status, the OSD executes a user-defined script, that can be configurated in the OSD config with the \texttt{health\_check} parameter. If you want to write such a script you must consider the following thinks: +The health status of OSDs storage devices (e.g. the SMART health test of the +used disks) can be used to determine if an OSD will fail soon or is actually +failed. If the health status is available, the default OSD selection policy +(id 1000) can use it to exclude OSDs with a critical status (WARNING or +FAILED). To test the health status, the OSD executes a user-defined script, that +can be configured in the OSD configuration file with the \texttt{health\_check} +parameter. If you want to write such a script you must consider the following +things: + \begin{itemize} -\item The script will be executed with the object dir as the first (and only) parameter -\item The script must exit with one of the following numbers: +\item The script will be executed with the \texttt{object\_dir} as the first +(and only) parameter +\item The script must exit with one of the following return values: \begin{itemize} -\item \texttt{0} - PASSED: Storage device is in an uncritical state. The OSD will not filtered out when the default OSD selection policy is used. -\item \texttt{1} - WARNING: Storage could be in an critical state soon. The OSD will (not) filtered out (depending on the osd\_health\_status attribute) when the default OSD selection policy is used. -\item \texttt{2} - FAILED: Storage device is in an critical state. The OSD will filtered out when the default OSD selection policy is used. -\item \texttt{3} - Not Available: The health status is not available. Also used when an error occurs or an invalid value is returned from the script. +\item \texttt{0} - PASSED: Storage device is in an uncritical state. The OSD +is not filtered out when the default OSD selection policy is used. +\item \texttt{1} - WARNING: Storage could be in an critical state soon. The OSD +is filtered out, depending on the osd\_health\_status attribute, if the +default OSD selection policy is used. +\item \texttt{2} - FAILED: Storage device is in an critical state. The OSD is +filtered out when the default OSD selection policy is used. +\item \texttt{3} - Not Available: The health status is not available. Also used +when an error occurs or an invalid value is returned from the script. \end{itemize} -\item Additionally the output of the script (stdout) is send to the DIR and is displayed in the web interface +\item Additionally, the output of the script (stdout) is send to the DIR and is +shown in the web interface \end{itemize} -An example script for Linux systems is provided in \texttt{/usr/share/xtreemfs/osd\_health\_check.sh}. This script uses the SMART health test result of the devices which stores the object dir. The Script supports software RAID configurations (\texttt{/dev/md*}) and single devices(\texttt{/dev/sd*} or \texttt{/dev/hd*}). In order to use this script the package \texttt{smartmontools} must be installed and the command \texttt{smartctl} must be executable without root password. +An example script for Linux systems is provided in +\texttt{/usr/share/xtreemfs/osd\_health\_check.sh}. This script uses the SMART +health test result of the devices which stores the \texttt{object\_dir}. The +Script supports software RAID configurations (\texttt{/dev/md*}) and single +devices(\texttt{/dev/sd*} or \texttt{/dev/hd*}). In order to use this script, +\texttt{smartmontools} must be installed and the command \texttt{smartctl} must +be executable with sudo privileges without password. \subsection{Web-based Status Page} -- GitLab From 97a51f2b9c6284fe5810f52c0d1ea413453d2f60 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Mon, 3 Nov 2014 17:56:09 +0100 Subject: [PATCH 158/192] servers: updated javadoc in StorageLayout --- .../xtreemfs/osd/storage/StorageLayout.java | 63 ++++++++++--------- 1 file changed, 33 insertions(+), 30 deletions(-) diff --git a/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java b/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java index 7f2c0d1de..db5f30102 100644 --- a/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java +++ b/java/servers/src/org/xtreemfs/osd/storage/StorageLayout.java @@ -8,6 +8,14 @@ package org.xtreemfs.osd.storage; +import org.xtreemfs.common.xloc.StripingPolicyImpl; +import org.xtreemfs.foundation.buffer.BufferPool; +import org.xtreemfs.foundation.buffer.ReusableBuffer; +import org.xtreemfs.osd.InternalObjectData; +import org.xtreemfs.osd.OSDConfig; +import org.xtreemfs.osd.replication.ObjectSet; +import org.xtreemfs.pbrpc.generatedinterfaces.OSD.TruncateLog; + import java.io.File; import java.io.FileReader; import java.io.FileWriter; @@ -17,15 +25,6 @@ import java.util.HashMap; import java.util.Map; import java.util.Stack; -import org.xtreemfs.common.xloc.StripingPolicyImpl; -import org.xtreemfs.foundation.buffer.BufferPool; -import org.xtreemfs.foundation.buffer.ReusableBuffer; -import org.xtreemfs.osd.InternalObjectData; -import org.xtreemfs.osd.OSDConfig; -import org.xtreemfs.osd.replication.ObjectSet; -import org.xtreemfs.pbrpc.generatedinterfaces.OSD.ObjectData; -import org.xtreemfs.pbrpc.generatedinterfaces.OSD.TruncateLog; - /** * Abstracts object data access from underlying on-disk storage layout. * @@ -176,20 +175,19 @@ public abstract class StorageLayout { * * @param fileId * fileId of the object + * @param md + * file metadata * @param objNo * object number + * @param offset + * offset + * @param length + * length * @param version * version to be read - * @param checksum - * the checksum currently stored with the object - * @param sp - * the striping policy assigned to the file - * @param osdNumber - * the number of the OSD assigned to the object * @throws java.io.IOException * when the object cannot be read - * @return a buffer containing the object, or a null if the - * object does not exist + * @return ObjectInformation */ public abstract ObjectInformation readObject(String fileId, FileMetadata md, long objNo, int offset, @@ -200,21 +198,20 @@ public abstract class StorageLayout { * * @param fileId * the file Id the object belongs to - * @param objNo - * object number + * @param md + * file metadata * @param data * buffer with the data to be written - * @param version - * the version to be written + * @param objNo + * object number * @param offset * the relative offset in the object at which to write the buffer - * @param currentChecksum - * the checksum currently assigned to the object; if OSD - * checksums are disabled, null can be used - * @param sp - * the striping policy assigned to the file - * @param osdNumber - * the number of the OSD responsible for the object + * @param newVersion + * new file version + * @param sync + * write synchronously + * @param cow + * use cow * @throws java.io.IOException * when the object cannot be written */ @@ -228,6 +225,7 @@ public abstract class StorageLayout { * @param md * @param objNo * @param newLength + * @param newVersion * @param cow * @throws IOException */ @@ -239,6 +237,8 @@ public abstract class StorageLayout { * * @param fileId * the ID of the file + * @param deleteMetadata + * delete file metadata * @throws IOException * if an error occurred while deleting the objects */ @@ -249,6 +249,8 @@ public abstract class StorageLayout { * * @param fileId * the ID of the file + * @param md + * file metadata * @param objNo * the number of the object to delete * @param version @@ -264,10 +266,10 @@ public abstract class StorageLayout { * * @param fileId * the ID of the file + * @param md + * file metadata * @param objNo * the number of the object to create - * @param sp - * the striping policy assigned to the file * @param version * the version of the object to create * @param size @@ -416,6 +418,7 @@ public abstract class StorageLayout { * returns a list of all local saved objects of this file * * @param fileId + * @param md * @return null, if file does not exist, otherwise objectList */ public abstract ObjectSet getObjectSet(String fileId, FileMetadata md); -- GitLab From d203523a8c1c8b02baa4bfcd25f2c889ce563172 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Mon, 3 Nov 2014 18:05:09 +0100 Subject: [PATCH 159/192] foundation, servers: renamed ONCRPC to PBRPC --- .../xtreemfs/foundation/util/CLIParser.java | 6 ++---- .../xtreemfs/foundation/util/CLOption.java | 6 +++--- ...PCServiceURL.java => PBRPCServiceURL.java} | 4 ++-- ...eURLTest.java => PBRPCServiceURLTest.java} | 16 ++++++--------- .../sandbox/ExampleLibxtreemfsWithSSL.java | 18 +++++++---------- .../tests/ReplicatedTortureXtreemFS.java | 20 +++++++++---------- .../sandbox/tests/TortureXtreemFS.java | 20 +++++++++---------- .../xtreemfs/sandbox/tests/rwrepl_test.java | 9 +++++---- 8 files changed, 44 insertions(+), 55 deletions(-) rename java/foundation/src/org/xtreemfs/foundation/util/{ONCRPCServiceURL.java => PBRPCServiceURL.java} (91%) rename java/foundation/test/org/xtreemfs/test/foundation/util/{ONCRPCServiceURLTest.java => PBRPCServiceURLTest.java} (70%) diff --git a/java/foundation/src/org/xtreemfs/foundation/util/CLIParser.java b/java/foundation/src/org/xtreemfs/foundation/util/CLIParser.java index 2c550dc0f..26d765200 100644 --- a/java/foundation/src/org/xtreemfs/foundation/util/CLIParser.java +++ b/java/foundation/src/org/xtreemfs/foundation/util/CLIParser.java @@ -14,8 +14,6 @@ import java.util.Iterator; import java.util.List; import java.util.Map; -import org.xtreemfs.foundation.util.ONCRPCServiceURL; - public class CLIParser { public static final class CliOption { @@ -31,7 +29,7 @@ public class CLIParser { public Long numValue; - public ONCRPCServiceURL urlValue; + public PBRPCServiceURL urlValue; public File fileValue; @@ -102,7 +100,7 @@ public class CLIParser { if (iter.hasNext()) { final String value = iter.next(); try { - final ONCRPCServiceURL tmp = new ONCRPCServiceURL(value, + final PBRPCServiceURL tmp = new PBRPCServiceURL(value, option.urlDefaultProtocol, option.urlDefaultPort); option.urlValue = tmp; } catch (Exception ex) { diff --git a/java/foundation/src/org/xtreemfs/foundation/util/CLOption.java b/java/foundation/src/org/xtreemfs/foundation/util/CLOption.java index 65c83d0e9..6cca3d68d 100644 --- a/java/foundation/src/org/xtreemfs/foundation/util/CLOption.java +++ b/java/foundation/src/org/xtreemfs/foundation/util/CLOption.java @@ -170,7 +170,7 @@ public abstract class CLOption { public static class URLValue extends CLOption { - protected ONCRPCServiceURL value; + protected PBRPCServiceURL value; protected final String defaultSchema; @@ -193,7 +193,7 @@ public abstract class CLOption { public void parse(String value) throws IllegalArgumentException { super.parse(value); try { - this.value = new ONCRPCServiceURL(value, defaultSchema, defaultPort); + this.value = new PBRPCServiceURL(value, defaultSchema, defaultPort); } catch (MalformedURLException ex) { throw new IllegalArgumentException("'"+value+"' is not a valid URL ("+ex.getMessage()+")"); } @@ -204,7 +204,7 @@ public abstract class CLOption { return true; } - public ONCRPCServiceURL getValue() { + public PBRPCServiceURL getValue() { return value; } } diff --git a/java/foundation/src/org/xtreemfs/foundation/util/ONCRPCServiceURL.java b/java/foundation/src/org/xtreemfs/foundation/util/PBRPCServiceURL.java similarity index 91% rename from java/foundation/src/org/xtreemfs/foundation/util/ONCRPCServiceURL.java rename to java/foundation/src/org/xtreemfs/foundation/util/PBRPCServiceURL.java index 5ac9f1efd..8cfea6d80 100644 --- a/java/foundation/src/org/xtreemfs/foundation/util/ONCRPCServiceURL.java +++ b/java/foundation/src/org/xtreemfs/foundation/util/PBRPCServiceURL.java @@ -16,7 +16,7 @@ import java.util.regex.Pattern; * * @author bjko */ -public class ONCRPCServiceURL { +public class PBRPCServiceURL { static { @@ -31,7 +31,7 @@ public class ONCRPCServiceURL { private final int port; - public ONCRPCServiceURL(String url, String defaultProtocol, int defaultPort) throws MalformedURLException { + public PBRPCServiceURL(String url, String defaultProtocol, int defaultPort) throws MalformedURLException { //parse URL Matcher m = urlPattern.matcher(url); diff --git a/java/foundation/test/org/xtreemfs/test/foundation/util/ONCRPCServiceURLTest.java b/java/foundation/test/org/xtreemfs/test/foundation/util/PBRPCServiceURLTest.java similarity index 70% rename from java/foundation/test/org/xtreemfs/test/foundation/util/ONCRPCServiceURLTest.java rename to java/foundation/test/org/xtreemfs/test/foundation/util/PBRPCServiceURLTest.java index 183f66905..632e33399 100644 --- a/java/foundation/test/org/xtreemfs/test/foundation/util/ONCRPCServiceURLTest.java +++ b/java/foundation/test/org/xtreemfs/test/foundation/util/PBRPCServiceURLTest.java @@ -9,23 +9,19 @@ package org.xtreemfs.test.foundation.util; +import org.junit.*; import org.xtreemfs.foundation.pbrpc.Schemes; -import org.junit.After; -import org.junit.AfterClass; -import org.junit.Before; -import org.junit.BeforeClass; -import org.junit.Test; -import org.xtreemfs.foundation.util.ONCRPCServiceURL; +import org.xtreemfs.foundation.util.PBRPCServiceURL; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; /** * * @author bjko */ -public class ONCRPCServiceURLTest { +public class PBRPCServiceURLTest { - public ONCRPCServiceURLTest() { + public PBRPCServiceURLTest() { } @BeforeClass @@ -51,7 +47,7 @@ public class ONCRPCServiceURLTest { public void testURLParse() throws Exception { String host = "yagga"; int port = 1254; - ONCRPCServiceURL u = new ONCRPCServiceURL("pbrpcg://"+host+":"+port+"/", + PBRPCServiceURL u = new PBRPCServiceURL("pbrpcg://"+host+":"+port+"/", Schemes.SCHEME_PBRPC,12345); assertEquals(host, u.getHost()); assertEquals(port, u.getPort()); diff --git a/java/servers/src/org/xtreemfs/sandbox/ExampleLibxtreemfsWithSSL.java b/java/servers/src/org/xtreemfs/sandbox/ExampleLibxtreemfsWithSSL.java index bd32a2dcf..488526234 100644 --- a/java/servers/src/org/xtreemfs/sandbox/ExampleLibxtreemfsWithSSL.java +++ b/java/servers/src/org/xtreemfs/sandbox/ExampleLibxtreemfsWithSSL.java @@ -1,22 +1,18 @@ package org.xtreemfs.sandbox; -import java.io.FileInputStream; -import java.io.IOException; -import java.util.Arrays; - -import org.xtreemfs.common.libxtreemfs.Client; -import org.xtreemfs.common.libxtreemfs.ClientFactory; -import org.xtreemfs.common.libxtreemfs.FileHandle; -import org.xtreemfs.common.libxtreemfs.Options; -import org.xtreemfs.common.libxtreemfs.Volume; +import org.xtreemfs.common.libxtreemfs.*; import org.xtreemfs.foundation.SSLOptions; import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.pbrpc.Schemes; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; -import org.xtreemfs.foundation.util.ONCRPCServiceURL; +import org.xtreemfs.foundation.util.PBRPCServiceURL; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.PORTS; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SYSTEM_V_FCNTL; +import java.io.FileInputStream; +import java.io.IOException; +import java.util.Arrays; + /** * Minimal example which uses the libxtreemfs for Java and default SSL certificates from tests/certs/ to test * basic functionality of running servers. @@ -62,7 +58,7 @@ public class ExampleLibxtreemfsWithSSL { try { // Parse command line parameter. int lastSlashIndex = args[0].lastIndexOf('/'); - final ONCRPCServiceURL url = new ONCRPCServiceURL(args[0].substring(0, lastSlashIndex), + final PBRPCServiceURL url = new PBRPCServiceURL(args[0].substring(0, lastSlashIndex), Schemes.SCHEME_PBRPC, PORTS.DIR_PBRPC_PORT_DEFAULT.getNumber()); final String volumeName = args[0].substring(lastSlashIndex + 1); diff --git a/java/servers/src/org/xtreemfs/sandbox/tests/ReplicatedTortureXtreemFS.java b/java/servers/src/org/xtreemfs/sandbox/tests/ReplicatedTortureXtreemFS.java index 43e8af01f..51485a3de 100644 --- a/java/servers/src/org/xtreemfs/sandbox/tests/ReplicatedTortureXtreemFS.java +++ b/java/servers/src/org/xtreemfs/sandbox/tests/ReplicatedTortureXtreemFS.java @@ -24,13 +24,7 @@ package org.xtreemfs.sandbox.tests; -import java.io.FileInputStream; -import java.io.IOException; -import java.net.InetSocketAddress; -import java.util.ArrayList; -import java.util.List; import org.xtreemfs.common.ReplicaUpdatePolicies; - import org.xtreemfs.common.clients.Client; import org.xtreemfs.common.clients.File; import org.xtreemfs.common.clients.RandomAccessFile; @@ -42,17 +36,23 @@ import org.xtreemfs.foundation.pbrpc.Schemes; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; import org.xtreemfs.foundation.util.CLOption; -import org.xtreemfs.foundation.util.CLOptionParser; -import org.xtreemfs.foundation.util.InvalidUsageException; -import org.xtreemfs.foundation.util.ONCRPCServiceURL; import org.xtreemfs.foundation.util.CLOption.IntegerValue; import org.xtreemfs.foundation.util.CLOption.StringValue; import org.xtreemfs.foundation.util.CLOption.Switch; +import org.xtreemfs.foundation.util.CLOptionParser; +import org.xtreemfs.foundation.util.InvalidUsageException; +import org.xtreemfs.foundation.util.PBRPCServiceURL; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.PORTS; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicyType; +import java.io.FileInputStream; +import java.io.IOException; +import java.net.InetSocketAddress; +import java.util.ArrayList; +import java.util.List; + /** * * @author bjko @@ -88,7 +88,7 @@ public class ReplicatedTortureXtreemFS { final String path = optPath.isSet() ? optPath.getValue() : "/torture.data"; final String volname = optVolname.isSet() ? optVolname.getValue() : "test"; - final ONCRPCServiceURL dirURL = new ONCRPCServiceURL(arguments.get(0),Schemes.SCHEME_PBRPC,PORTS.DIR_PBRPC_PORT_DEFAULT.getNumber()); + final PBRPCServiceURL dirURL = new PBRPCServiceURL(arguments.get(0),Schemes.SCHEME_PBRPC,PORTS.DIR_PBRPC_PORT_DEFAULT.getNumber()); final boolean useSSL = dirURL.getProtocol().equals(Schemes.SCHEME_PBRPCG) || dirURL.getProtocol().equals(Schemes.SCHEME_PBRPCS); final boolean randomOnly = optRandomOnly.isSet(); diff --git a/java/servers/src/org/xtreemfs/sandbox/tests/TortureXtreemFS.java b/java/servers/src/org/xtreemfs/sandbox/tests/TortureXtreemFS.java index 1b37d02d8..b4c0fba44 100644 --- a/java/servers/src/org/xtreemfs/sandbox/tests/TortureXtreemFS.java +++ b/java/servers/src/org/xtreemfs/sandbox/tests/TortureXtreemFS.java @@ -24,13 +24,7 @@ package org.xtreemfs.sandbox.tests; -import java.io.FileInputStream; -import java.io.IOException; -import java.net.InetSocketAddress; -import java.util.ArrayList; -import java.util.List; import org.xtreemfs.common.ReplicaUpdatePolicies; - import org.xtreemfs.common.clients.Client; import org.xtreemfs.common.clients.File; import org.xtreemfs.common.clients.RandomAccessFile; @@ -42,18 +36,22 @@ import org.xtreemfs.foundation.pbrpc.Schemes; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; import org.xtreemfs.foundation.util.CLOption; -import org.xtreemfs.foundation.util.CLOptionParser; -import org.xtreemfs.foundation.util.InvalidUsageException; -import org.xtreemfs.foundation.util.ONCRPCServiceURL; import org.xtreemfs.foundation.util.CLOption.IntegerValue; import org.xtreemfs.foundation.util.CLOption.StringValue; import org.xtreemfs.foundation.util.CLOption.Switch; +import org.xtreemfs.foundation.util.CLOptionParser; +import org.xtreemfs.foundation.util.InvalidUsageException; +import org.xtreemfs.foundation.util.PBRPCServiceURL; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.PORTS; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.REPL_FLAG; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicyType; +import java.io.FileInputStream; +import java.io.IOException; +import java.net.InetSocketAddress; +import java.util.List; + /** * * @author bjko @@ -88,7 +86,7 @@ public class TortureXtreemFS { final String path = optPath.isSet() ? optPath.getValue() : "/torture.data"; final String volname = optVolname.isSet() ? optVolname.getValue() : "test"; - final ONCRPCServiceURL dirURL = new ONCRPCServiceURL(arguments.get(0),Schemes.SCHEME_PBRPC,PORTS.DIR_PBRPC_PORT_DEFAULT.getNumber()); + final PBRPCServiceURL dirURL = new PBRPCServiceURL(arguments.get(0),Schemes.SCHEME_PBRPC,PORTS.DIR_PBRPC_PORT_DEFAULT.getNumber()); final boolean useSSL = dirURL.getProtocol().equals(Schemes.SCHEME_PBRPCG) || dirURL.getProtocol().equals(Schemes.SCHEME_PBRPCS); final boolean randomOnly = optRandomOnly.isSet(); diff --git a/java/servers/src/org/xtreemfs/sandbox/tests/rwrepl_test.java b/java/servers/src/org/xtreemfs/sandbox/tests/rwrepl_test.java index 23f8d4eb6..e1612ba3b 100644 --- a/java/servers/src/org/xtreemfs/sandbox/tests/rwrepl_test.java +++ b/java/servers/src/org/xtreemfs/sandbox/tests/rwrepl_test.java @@ -5,8 +5,6 @@ package org.xtreemfs.sandbox.tests; -import java.io.IOException; -import java.net.InetSocketAddress; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtreemfs.common.clients.Client; import org.xtreemfs.common.clients.File; @@ -19,11 +17,14 @@ import org.xtreemfs.foundation.logging.Logging; import org.xtreemfs.foundation.logging.Logging.Category; import org.xtreemfs.foundation.pbrpc.client.RPCAuthentication; import org.xtreemfs.foundation.pbrpc.generatedinterfaces.RPC.UserCredentials; -import org.xtreemfs.foundation.util.ONCRPCServiceURL; +import org.xtreemfs.foundation.util.PBRPCServiceURL; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicyType; +import java.io.IOException; +import java.net.InetSocketAddress; + /** * * @author bjko @@ -40,7 +41,7 @@ public class rwrepl_test { public static void main(String[] args) { // TODO code application logic here try { - final ONCRPCServiceURL dir = new ONCRPCServiceURL(args[0], "oncrpc", 32638); + final PBRPCServiceURL dir = new PBRPCServiceURL(args[0], "oncrpc", 32638); final int numReplicas = Integer.valueOf(args[1]); final int fileSize = Integer.valueOf(args[2])*1024*1024; String mode = "rw"; -- GitLab From 5654f4e31d0440f6c99f0f08dc7a2b88cc5fe694 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Mon, 3 Nov 2014 18:07:23 +0100 Subject: [PATCH 160/192] removed XtreemOSAuthProvider (not compilable without further XtreemOS sources) --- java/servers/xtreemos/bcprov-jdk16-139.jar | Bin 1657010 -> 0 bytes java/servers/xtreemos/cdaclient.jar | Bin 25259 -> 0 bytes .../org/xtreemos/XtreemOSAuthProvider.java | 131 ------------------ 3 files changed, 131 deletions(-) delete mode 100644 java/servers/xtreemos/bcprov-jdk16-139.jar delete mode 100644 java/servers/xtreemos/cdaclient.jar delete mode 100644 java/servers/xtreemos/org/xtreemos/XtreemOSAuthProvider.java diff --git a/java/servers/xtreemos/bcprov-jdk16-139.jar b/java/servers/xtreemos/bcprov-jdk16-139.jar deleted file mode 100644 index 8b79930545bfcb540d60ed2a2a61bc6e81f5519b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1657010 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

Z$BJ6{_- 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­{rk( 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%0DgZ_)#PcGe)0UgYu2pHW6hD>yzMALwwS}8q!uiEp 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

-2Lv}y-#od-;dTju+=7hIsK!U8OZ2vVK-i3ZHxL_w$?Q zcdw4W|BH9|yVv>!yTX(A{)&3b`fBgg(lsG+Z&juG^<(elUB9KB`hrDe7OS={+V@DW&pw{sK?Q@UoBK4w$6$v?h6G z1_lA@Z67v!ZQ10w)@k-3ho_>f>SFP^ePpO+*o;~n{C!A<+pF%&B;GsQ+%%c+`q5q!Og|J zEMW_$9$+un%(q=AqMiTshd?Iz!*8u>f|@^X6ga$`Q>9=#-*=%M%x@*kgmdom7?sBY4PtCVj#g_X2byAUuRnNoEY$gxyN?7qaG$>m* zbtIhC-IzH|bG~HW%)qFktR;y-5-;Z_w4}&YznU{4k+*v76yaM!nZavK!Y&DT20887 z(C2-2=e0A%ON_gg9-LzQPFgX-q{+xiCMXi|DEU|EY}n8HC7 zaTkSS8%iZF%XxPmp2>UYUb+o~@j8`7=Ozgp3RxocSfua_>msYmZVD@zS|pXH3PmZY zY&dw0{q&oXDH4yj`e-K3JgmXMBI*{oZfRk}QoRpe&u1n!ihJ4mTBa#(JZF5^#<}l- zh_qHv&dLNgWu=u%@aICp4et5OOspB(iB@VQIZU~b$;Sf~1v2)4) z--{n68uCT$dc!8T=I@mGPoB>-Y5rGdsrk#8|D&hf9I^Xk=I(Vy3P%U-AIbJ707 ziLaNdHQio+Ifdo^_V3^I(>{J%y}7UC>zpTxFD{tlQn3B+m6!|dahqm6c4Aoe_P_Jl zo$vSEJ3o5@?~!>e*R~1W`n2bBo3_cG1?#qc*dq1LF)QGki&(Vx+8-k8 z%3iOn+AKI>|6%L9PoEdOT@aeDd%kDwEzOw!Us;!be=fbg{pV)O{j4+oikc-@ewf$$ z6;h+#C^&zyl$n7cfr@$B2(k!%ZD?V>w5dq_yGe0HXCuOQUs~6XVyi>Ngey_4+L6TZC&%vttSxZyDDa>8g9y!yOn`Qo% z@^`+=4xjrzdGVhA!S=eR3a@!~&ncOA^4#@Hv%(+9HF2B0?^i#nAzwFfs=qojf1ddR zrJRZnk<3;NwhFw{nO#2^^L_ZQ)FLF9Y{r&L`XGBm(yQjp_9AF@up1aV}esd z1hhSKOu2oNEX6%tb}F9pWtM1>bK!_u|Fn9>G=J;J{mH$Sv*gm(s#ugvooz48UOCVA ztc7mZni)?|3En!!!#?q9OlQEU2DMuq4IGkzlQ^0(lV%!STH#Q%y+EMdu)E*@OPRS~ zkHk@lrx9&Uo~xK;ZgqT&2t1Q?w&!Yu#M$WQ#?4k9|uTer#KmgD|!nF3(l74SsbzAz=;{2 zdc0w6XL;uC-4>NSvp`NmT3VJhB6-n{uozXB%M8X{y{G4U9GrBbRnXX3Vk@U%Od!7t zvr38dg=Slp?dNVJZDzV(=(|%UZijAF#@Xq7HZ$@=E-qqZawz!S^Y6XivF4nv1+~{$ z{a#MoA&g(i*iJ?f}D?AW#@ym-<@$zvFk6*ejLNu zcProdZ1)B0yXW_xyvh2F!yu->#cr~wxs3ZRv)b~1t#?=h?%FbbdEIm=QCM&99Jxk* z-tYguJ@U$5U$uPO{&((E?E`F8C z>a$nV)<)VlR$b5kC4Da8ZFxq?^|%8+kNfW5X*N5jO8vt*ef`I`X6e`6wB3I9M!~FE zzh~BPl#2iMS@#D#i!jn^w+carI_Z#DOG<_o1w7zNv@ihuwYeTjjqx z(sZU+!RF1S`8GG-*V)@ie64@=ec9&3t8abXxBR|SwtuVU9;Wvq1!ld!4u32$xb=V4 zEL+L?w^15e`U{!^lzgwn<)!5Rz2@|J}KF1CWkV!>&uN3 zjHZ4)qWsKfu7QMoaDL2!OWO||Dr3BU|I^VGtw*Ones=PMX4Gee*7bsW%*``)o!qFf zupv5M^8dSv9pSzk+U|d2WS#SSI0#jZ|U*h3=8T)@Hm>n#ye=c91x98Z01T%@U)q(QA&!^nl8*O|1 z-j?vM&)>c{WV&B)mMPD6;_ltmbzCQV%w)*pWc^HxqIWi74@d)9XH3> z{AD`jK3y-~a{rCEEdA}X-(GItuqk%i>91mo>YKlB3y(W6)BWwHy+Qihq}vO=O`rb8 zZbtBqj_c>2`G_yDJ81UMBrTx78#3>&R-wXunVErs2k$W;Bn>%17pP4Qc?%i_hHQjW z-JzMGfxgXDb+?)Px&dmD%)nEA;r0q*SNb0TJap$0G&B{mGqVcP5ym%lT6Ii&lw{@%4 zjU(H+)|D?vj6Ukee!al?U>RN(Y@gGQTqj;X8!@XgHtN~u6Ms~NPD+1}I~*A(_Sn-_tNnY* z=MtlUgzSjp&v~S89=h~KcGz0zOvkiAZ#V&Buq#`K$+GYXHFuF(Zhp>!^ez@ z?Kw{Z!b1LN=c~>%Tf9;8bW=#o)n~Fl=ZM%%I2v>1`SjL0A>%dr+~*g_JbAqG&&%?* zbsryFTjtbwFz_6T`1kqvnR9y2XCC#F^KnZ(TyVBRNPp*~{7vTzj}&C>;WvH0zwoL7Q@2{K*TXFHOy6D{H7cF0T24&>SH~rmOvFZb>o{au~F4pBM|3}7K9$Hzu z*Y)4LdusLZ@wQEuvR`V|e!2D9qPE3&@73!Uep|!g&bU$ z!+vpp*6)CTiN6^Cu2?1Ae1!R-*`(vIZ$6%ByxI8o_xtbd8Hy?nCvzkT@mKad3Y3?7 z?8&tJ(8r3dbkCl`84oVDKlk+cIHT=IvWz63vCX@rX@_On#aZ@t`)-%qr}Sc?(QTH( z!>fav9FH$A^Dxi3e{Z?sSLUWj&CQQ~^8TEBy=-oNpKOb+*6qgCC)#KIaWw8NE@(|S zP%?L#xXImPTD;%)Sg}VsaDC@cd7Wiwy(&v2lrd66ridxziKPyQ#sUw6$)TIXT`ziv zg=$_|vua%^@3u?ayG|{1F{o_(vQPHi$tx3m4`=*lH_5G4?I@kH;mxiq=22w=7Zx~& zE8jTtEYvoC#nL&6tBz)cUM#v=6L#@TlH=J`tlIgySF(OaUA$82t1CHencfPoldB}t z)-I6V8MH1Wp>5GBsZ~=$d-tTyk~zhs6(RCLXw8Sq=4-OrFJw=vFRwTtbjzsMlx>}R zChJR9CV?~eFZ`W!eO2)Mx#xZV3V+!4_=1AR=3mBfmrjZQJ}@nM+wBS4o#xBdsupK; zaji3#KAq9iH;d!UgPQt9`HA3wK<)?QPi; zdtHKM*_FS~Z%0@Mn-(gDSm$g@d1aMz>yJa+qV^o2*H=2*@|Q%bmX|jD3qI0zy~Mdm zGc)|X(WK{|E*8@=qIYqLE{)oG?|g1i+L3KHzwm9cUZrgKZNts=`rlDH$Kc|6!NOW)2f6v>+MvgC-yF{a++NiPp_82*w6 znLhioG8=!p0*Cl2uL}E* z@->fV%73K|-HX06Hhk-UE|gVtpZ9S~ zuzJs(1Kg6l6_0*)rn~t)VG&&3qt@uGet~amrHHkd`P`15I%#^JV@~;G?Ygq<@DV?o z+hr@5c5||SI#G1|&6~KiM+N#HbfF;QXdH4Uuw7x1F@PU#R@bea`P?R||D!&)W8yZI0T)T+@wh(JbcQD(4C-ZBPAk z`QcKYC!S~Iy$aUzEssfIQHZ#^{O9h)iT)y=yuM}6cktfqGv(=`Gy9(`UBBPgJUDsA zv)ad=p(kcVNB`Ozs%|Co<^9vCFS?zsJ)IisckF6HMu*Mh()cOIVm~^5bMa3pm7X&z z?U$=ZLDH;Brc`6uzN3q;v*iB$7jGGJYqbJLQthvY|8LIS@_FI?i8(!Nm97P`^@4tx zkL>Sd&q=Yk_P=$N<+``I&+AWkCHY@GxJM>qvZ=DXrEZGo+zI)|mrPS_z4=sk!gdp3e3-6y=4guE(~P&--?y`_TOdrEQA?r}Z5>Y9O7{ z_37#keaHMot&e%K{=63qJ;WconUgR1eZ|}bjiQB@U(GB`s1Cfq`R70x@AXe5rwiB2 zdwYCaUYSR%qwV^tl3B|V-F7{EH820G%=u24>o0d~JDmIORt%Hi#suRvFJk5!`OJ2o zc)Rcq-}@uW&ey(U5t^eGQ=(GA6aMeSt=UUzmUf18A1auX-@WvQ?qMI*S>>C3o;=jh z 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

5u1vdR4)rud3RWAQYS(63*L9;mo5_gh zF6(WRE7w1#9yOUKRb{x?Q03X1B)gp{({;aYT{T4}*k4OETgTFPcR}^bnd_`1eYelq zRn?`q=g;+Ni5Kn{T?@+fjWjAXdTEg#(N;V$QSn;S>bD8U#U-1j=lZ7K5T0GVY){Cf zWl2vbM=sBZ__^yx%lz{t->yZ3#p}JE_KNB439GJOf0hO9IKA<1k5S39QuXAiGObr6 z(xmq8aQ8b}E3?L@$4~8j&WY_`uPp0%qjsTJC@IO}S^L#F+?@%}uD`U{H?>k(aZ>W< z7qKpFjsJK1dUib8)zWOC^3b4xE)Q4z3brThvdV6W$uI=*iZgTT-E66M}=veWv@i z2Wh+r+q-V|muJg#`%|1OB~It4@>y=%?b<7Hd(DiZ+1GUMY&pEX;f$H|;r0z`caIxf zJrsIjPc3uTvfM()++8o*wl98pP59;F`Ty8zzpT$(JpI?UeT%LwjbvDC^lJG>joPml z>l&Wv?c`EZw_E5d_p9YV^@nzCzKX79j!9YgW}A zyRbU_w*GQm;M7%tbD@fER@xJO)UjG?-H3F(Zf+^KBH?;^N%04l3D@L|4ja~aY`8z+ zqS}KU4Z>Rlmznifzgwok=T;o^ukl25%aivVYcB12uDdI%YC+ zLDxzA_Z6D4A?Nhsl_Jr%MV90-Nn8laJ*d^c<(N~~o}3L)?I|AO(_(ksRQPIt(7*0= zxQ)AT&bgIeyPv<9|K#PydnZ2$Mda*1b7rsc_wxJY-`CgAvt#}s7t^;|=DLYN&4G^# z+c@lkj+FLE%Q#CdlIVMsy!HN-51e*a4VnU7`!XL$To*XLp-te@*&VI7vwrp{FIH?j zZ+hpTi*TdwD%I14;m+!9mdi}$92f7J@odJ$0>RBP#XPr|Z+~=qI_a@j+mn{ZV!_>h zH_zFh>zy=9M46e96u94v%>DeUm}Jg6YO0o-o_J1QxKm?qPwc0bx#}~b zj~&?*A+G6t?f?-?6msbKe;^ zPn-*Vnyzp-E6utYNZSN*;C{uE@Oq8g&n_*D$cmHZD9uy;pIMgjUMSjS?(WQkN5Sh|HylsS@youi-?f!#yx#ZDyg2wg}SWd z4yEi6dh>OShFI#s{#AXcYYHMx%?y>DesSqy=~$l5gr8gHmUFFI^o;Ys!jx|;%iir@ z#S`#EW{qJC-xP}(liWij)+ewXzFAdqdS2$zOJ+y!iPqgnt~?$$eVw`fnoV;`%U0`3 zhx~Ilmc3E``>OX=Su>%}SK^X#eQ$*n{$>AtwP`%9KO?kM=&

0iN=CnR(a+BD{$#P>Scd^9=ufNWLvz8c6 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

guzv& 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


g~#(nWoumnS@Es`|YBw-*eRET%Co0-g)V!v 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
a4`_B8kVL^2b=NPT$!3>iCVYr$%lea>XShV)7M- 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 z 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

7tvvy^L@wVS6i5iL%2V=T(b(6zphi) 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

sva0v=rPhfW&Zp<7dAr}Sx;&+m z=issftl~Sqwcg(5IlVeQjc@CszPP-TkE;Cqy+3`u{%g(((`}3@p?bHJyt5SA{v58J zl2N8ru|x2oRoC*NtTVgh*`6zV zKhK&V^xLmy^3plEX)j%-TG`#3lX;;0?3c#AHUAX+3Zqilv;Nu7SGX<|p?0nR;(Nx7 z!y7^v)`qN1O5gY7+!FIy&zCNlGkXF*^NW{DLgml;L^c0T*net1)1DazmQ?@Yj=JFW z`8#_?CwuKYt|^x2Gqu>zHDRTvC9eM=0OJ(1NM| zJHJh<+v>dZ!2L!4Q%yf;ny+V6Z-_gzN3_N-((az?`NvW-#NP<)WpP?vZs2>;>wczJ zlQ785+1SX!0JgamR1{^FWTqBF8i!|VI1@syihkSqe&5XRY0py6Gw=&E zakc2^Fa}9D_&PN>3Qb@!S@dWEPom11BR)+Jg3PZ(t-W>aR@2e7TUUnZHnq8gY`L|g zbbHp;ZCh7w+xlBgG2*v1pYB{*v+{thsF!P3$QqBhP^rgk%T1sD72-8rvMaR<^ znah;U79CE>+$O!utN4zA=c=O3M=x3IIup92(xqshQt0L9{wppqt=f2j`LU|}*F7Fn z#f0a3hrBd#wVK;j)E2#JVpix%zlqa?zJL9)&u8ki%cr?QKV7a}sx{a1d#KC0gSw_l z$1i1N_G-;t>XjY3vXkxN8n4$YE>%5xn&WD9Tz9L-^IeHMw>0WK-}#|vpHl3Dwor?b zJvkvux$hP%6j4}aeld8pd)DNpFIys~-g=p86uYfr$%GQY*loKK(da-ZrtC&X<%RH>_URru7^~%MkT_vqrwLuftg)Chy@-oZZ zVoCO$4Zcx}Jg)Cr7<@|A^X;P3rB`l$T~*S|UZ$*G@pFpSU61d&U0*WIV-)W$@iN!G zlpgX@?A7lup%=M%FE?L$9`f?@suJt3-&sRR=?J|%4-47j;Qg?0X)~oF* zxxm}+@mDU>p{hx*{l%vxO17>{2NUhzwjE!3IL|`CboYmslA%@8JnFrt&MWpl?|naP zsiS$$RJp~|#b10<`uJgz)?S}OHLWchIy`FH_3ke{{r$zK+F5tyFI?td`LDmDGd%R= z@l{`DY3*I-mA~SW|BJ)3ODer5*1c+z_s+lkG=0^V;_Y9!U&`+K6Ev}Isn>qBzPiO; z`%4#!{^|317`y$;yf4+4?%4-ywZHVVHuTqIt-p~||1I*WSKU;<`1JkG!}S8n|CgNJ z|Kd}A(qH?oFO6EV3$5H={@veI;xn~x_e1$hrd=h6c>hmZ7r0b$P5@utw#mjuCLucN z(?iaM>aD)hSW~$Cl&HCN`|1kE=tp|*mUSOLYx**#_4$f9F+AskEB4Lad9kCC@m{6k zrZe3kaX$KS=JJP+2c5K-`kG7r{WD<;s~JgkLa}NqYm7dfym(sYd2q+f$uD1uR9Q{c z3w~+T8!@-f`Qg$P)irIWPOsQ8M^Ch5<&x7ryUsX?KHA)QOeW}Z_ywPesom$Feh!GL zv9k?bEfX2*utq;*r~lJ#k$p2v^r!d8$KFlc_CFeHfrT`vnsAj zsm8IlUT$jDQ`{BfGJS2x`sR7tE(S+D6`WeW>QBw(zQuo!nXV51`TEaSUmmXTSdklYGp-79Y(Jm%>K#|>ZE?dB z!uO-i%&x47e4HQSclA%N_Mff)p7omc>bkuaV|)D9*Z1{@-^Z5zTlQ@0zgwke|6T3< zarOR)qLXHGATkn}K&DDZ@`q-qK5m_^C@zzOR-?FYOwN|!h+p3*)xyinp>udiWJ2tDWitT5K_Y&iEX|bQX zu4ex|t1EqeP5#Xn@lp3ZoL0KW#e{5Fw=&IgTS;(v?`x^7m(92Bp3T|iVR1{AqkKJo z$rqN7bE76^n4A5aZf=xN*JpV9po6MVh}(O=C6{hp-DoD!kyJe8SX)U_xgKAu^WEi! z50)BVGoJ8TDfdS6wVR@uyl#s<)^F=Nc#C6{yXDiu0yf$}jV@A1qL70NnJmc)+ ze{OQ8>+-rzytQoJy8x9vYC>G)`kP9(R9$vG7`9qPD(CG>uG05&u1dXmHLsM<>=>U| z;C@TryN%b@@;07(c3@fG0)rW+4X$bYDLN#RViT?*^EjgO(0Z4O1s_%ylzg?0YMy%~ z+hpQnORoJ<53d`1IKn;MXvY#0Y4OF<4|}e>65q;}o>+g|IrreY$YocgnJ%vF7LZlh zu&L*u@Xbicoj*P(Zn3-~^@30BdgSHJE0wQQr4^*ln%L=h_5BOJw%bj)+2_8@->h~) z^oH0QzA{%|Ba172k*f=CSX`=b4BjB^zFFiW1CxM@IR~3)-P%Ltnt!ZZ6gkWUG80ya zJ-x2ZQ)Stlsw`2mX11hcdo$NWhf3EuMQcir9XpvK9N}QvGkNVy;iQ7qb3X(rKIKayQKky_{QmGCygWt1KV01Mf7hRV(I#SgbFP7RDUXx#jQ(04)gX{G;d zDfbP0@{_g*ZrL-pS0YsGXM6E1&#$8YG+Xa?XvhTHv@Skf>GjY&vBh*|9?!cMYWK1v zd?edGO1>6+bvucr&Ov=o+KjNpvUh(Skuz8l|8L_r1Fw%a_elEcOFgKRpF7trB(~9Q z7n5S6yHjrCI}h=!$%pd8exw^j9$dq+aNVK&gDiG|N)pZA`HnkHl9#{Q5&Wfii`4WJ zdRo_#Z{C!hyY;uRd&aK~%Kua^T;AL2aaPTH{$93)QQ0euFBmH6`|kS3xGa0dGQ~B% zn?(Q1u&MJKv;LE;^HDOe^uD}D>*}9r$?w`uY%cZQP^!H!&#Zn+!pC}%6>bll>}9H? zcD_H)!5QozHtT$n54(=0(t^A5-Fp7lbE=({$n(A0Kb330?$$47t}F^&>B_s(wRffK zYRNf*f{fx=W)@b?OjOlqey@b`O+RAr%VAQOfmoIs*&cCq1>|yTB6~|Io z9;-0ywQE#(^xoXwFMZmT+wMo%G+)$Dsf&)ib4yVuvbT2L-E|waZ$9Pvzvh_zar=JD zCCBog#~=o^LPp_TZnLOU^z!>t%Iv?o<}fxWKCX z-Y+FvrY5|eTV}#PAD3tR>Hgy_W}kGyG&Z(zu8Mi@`)AcAb?X0(4EKgV zF8{dO@aNSZwtwQ-j4xGRo3-qi<=4bF4U?XK?O;}pmD=B5&&s^%*#1-Rum8ASp?~rB zu4D2K_>=h7e$4;SZt~Bdo`u<|YLWNr>&G&JzTe*>!RMOxGyL`v!+m;Y7uF>#Sj+M^ z+>?V<l*BjJ(!{+ zJK>~YX|Mgc-$r~>mZZODp7`jbr*l^C?X{*RvliF&@_$e_sq1*Ac0oe(rr3+TyFr^Q zFHOC0NXUb&ms7c2_3p$;VP`^FaxW@uU36itx@67@{?hz|Q574vc1p13p8U8qrC6iG z`Q|lY(W)C#oaM?T+}ozM98%RhD51VarTO)$?O&pjuTLtBbv6Dd(rmf4F=NHl7qb=^ zSk2*FP|;rAFI7KF5s^&ihF$j zSu;=8qgDNnTumKn6%2FUb>(=Qe_q>I(3LYy&o}sdlD*yCV{4LhgLk(~aDKQgKzx?{ zq?KDY3f;`f2vNxhG2UXb(aEaxvHpa(^XrUv-08W}yKKqvZPz?s^}UUIqM!LE^uN^5by@joICj@Ue{H4nN(R!mD3s$-> zIjp*NMf|~a0SZS|7N;?9vNkj**7;_2rLAq|f+H6dIG-K=W7@m_-2Dqb{C{L~?GJmL z|7p9)zuw_JHe|Ag{sk^2%JTW7e%x|ee zve(x*f7vc|pXhLbt=2nYBX0b#;EA{`{Ejb|``C%>Kly*&cYJ)*Sm~;;i&e1m*nh{w zpY#93OZ_+h&)>YuWV4UXR~P2DjbMGKpTY_(V>m*!s<7p^Gk0l)SY}=VZ*})SC-W z`bAz$nJRPf#uHib%SscNgFl^!3TLpL`qVr5@U+-Xv-RYBul=}hYRP^!;M~;D235d(ixU$Aoo)_mkEdyZn8|@2uTmmM9-B zbiSiAFJZcIMCj$qdsUsJ^wtP8d(SZ8KR(0pywA?#CReYq^8Qwy)GaO4Ts-X<`{d57 zOD-xr7QxCP6KlT3?g==vr>SLwMeYXPs9R2bcC*vxrly3Pa86hEyS%}IPkC$1ghx8k zOmk<&Xo#o!gb7@f?!Nl(Mu5rA8UJG+&cBwTzdwBP@e|1xubz5raMgd?{F00M-f1gN zTHQQXQOTrsIMn$0`881%#d%lH+?3kg!(w)x%_2~6W2lD3n+>9M!d5PoN@~BB9e5L< zzjw)#$xl3I*+lAHe4_d3WMN?Zo#xL9CJh+^J5IPf5cwJ6J5S4Bd7=OHCqb2MYSS++ zmAM?dlWFeO7|ru4$I=WVCgiFaG6;K|PgpX!cgHr9O}w(*rgkp-9?m_+t(K*><5a{_ zre>?EY~{XEsr$QkH?=fXU6`eRQ^@7GsM_q8Jd;i)tY4mfa{Hw--d+V4pWOT;jzjA@EA; zY|~0R`xPgzPBFVy_ky)#wq%%@y!Omtg|o!N(j_Okb&g2C5csjmdW&sF zf!!Rz)AJ{YXMA$Hx%@-4Nu^-@1e2VNYWfrXFF(2b^m0Lw+p!6IpDV0#Yd@;g?4R-^ z&!W^O_e(AJu8r%o-7_+0YZxpxIX5BOWM|mA%TJc3M0`ytJN@IlNu}k%2g;wgd~}5c zr|#^!n6mG7T9I4K>h03PvOZ7b3KJIWUf%uXy8ikrPmEL9pYcmFY`nRu&RzXk#kZ>~ zCcU})!%HG0b@@$+mwB90r!p2>+w#Uboo3k}+?y|&c$EK!pl{v;>5G@8>{>$hPC4jl zJn8W4mAuc&YuN-%3=5SK%XnXId#YosW4PqWg(ocG+JDS;t-ttW^OLPzcT#k%IwBsu zf5EYh-70I>t?F$Hzui2xN1;02FxU6(lvw{g%MKm;krlG&rMuzgJQLr9CEDt6sLfYh~&Ci-5UGa=hZa-^6xG#Udn9v%Q$icZV`@JFWBPYuRCue(XluO{xDq4MK z*~a!8ho!0~*)H99_>H75pVFs^=E86Crdu`#Cp)$$OfC?$jg7U4XR8&gEtt3O*uE7T ztzUdns`gCQ-yCl8O_nJr+9J;Blk1VEVXp5kJjs0`b((Wh%Tv}D-aG}_y0)#0ZRgGv zjN%u1&9h>&Y@wn6+xn=i<|E2kt#95cna-MB$7(RSF5t|Of3pG@W-zs`U<^7tK}9t^ zBJ#K6s-?HkPEt602dDk_`WTFVa>AgO)-A%X8uGHkrIrgA6O;%O4EPO)6 zqKO;UyCly~ou3?#moFwd$?qHA-6vd!4sq88Rru6bcxME!m~9ZbwDZ8GN*^Ap$ne6; zCK|_P1PXaX`HR{L8z0;jP_*GS$CkX_X&re&a~@o2JJ2`D&&Sits_9|bp1|<88qIkd zkH~UNkCA%Ql~J^P&$NTLzO2?e*{%1&D`}f6XUZof9@U_0NQ2m^_HI&tw;>teA@Kq&52oJej40NA z^M)(eedady^L(ZGnXkD5RCOmD@c3$Q`q}AM&%$(Pe;OEFTq4Haa)OM=~eT0 zN6(1PGA}St0dD7~hcXB8e@jT4RLG|3vt{xIah`rX zp=+yicEw$gd(-#UYnJ=t^XDp#nS@=g%erL4HvicU$3?3iM%dh#9WQe@|7hKxr7P3* zjRQ|+WqRyfV=`4a+Vk_YbthDx$R3^8mz1L1yYrm(*<0074b8FI9&0Pp(*tDwf0ur* z_U)vH!NU!Vmm-X!0&gr7mc486`-r5jzHIOGhaIICuP=Em$Gc;~Gw%hgv%}Kuo9vR8 zJpW*zG2xwLz?8d=}NS+yloftvFj1ju-kj3 zF7D2=%9qbgB{oVcaqwF;P5I<@v}f@Qo5Y?QX^L6XT@Rk)(sWK^?p)2ZGX1GXmK2}s zm3WJ&ryKi9bQTqdDX-Ev_jJ*WS8MhbFHBz?5MXO}U6X68h3+gy)9PK=vfQkLPcqIeX#6|l=&p@+--ki?b$adOy=Al?Or7gi}$*_woygl=I= zpWwBq?R!M;Uo+QjtjYTqXq{eX=C(Igw(;AF%$Xaf-Sl(3IZH8o;f?iso&*&xxg)x$ zM@viX^Bj{`lRoym%&1$`@`laok-ez4eC*|n4Yy-1B|lJD?w<4b!%;m=PUD06GZi%E zZ`+-#$$Bk%`pXm9w>HZ~)~^(CZ@LjG_({mWRA=2B3A-#Ss}s4)@;$gFI`9Om~Le+$K!N&6hdpqZ9m@ZvA?a%9J7w2jmeIcwmdE+(LSBIZmbg8fnFVGj0 zH~yN-skQL`L)Kkp5^rBBlKUtKkGF5ftIWI<7oP(+v&m(Jwo$)fjvDE_~7v(s68hQZ{`-nNpPHCEO! zE%SI_U$SPx48i+4{jx@iN2SELkFQn_usnUswlB^3k>^gypMN8q z3punO`!5!HSl8uqY+}(&?KK-qd#?UlD&pl8yju91Q@pa#F3p#RgAetq-wJZ}|8_rE zeX>XN?R7tu8dkqhc(tuV!YUN67+z#L>@j`g5&8Wd68qm?|EuwC>6dhlu<3nIzK2R4pZe#q)|{Vv zj_BF_v+F5QmUv;bWsTj@&)g!io1^_r-aV8!bEe1ivi|`Q?JFH07gPy(iLl<-#rT$| zGwy@op9Po1W&~fHX4o6H-r`+=iLaTnwn%BC+^wgQvl(tbo}h4f)1?z->>De;zKH4C zDUrYK=&aNHk9D3ItjL=gDxKATUCS>#PsjIo&HybJsKCTx7MYtp7Q zQ?IzK*~cBD7j(oTueWQz&8LljPR`|@y&_2xCd)|_A0z*+5icFXIKbx5q$-QRRNQ&HbK*KL0>$LyfkKdL>-%xmv z*tBKV55sWf_XUod1k3vhHU;chj;_gE0yVrP3pKkhhn#+D&T!dNxOnwQ;*zlE3Jivll{> z`omYpg@y-6DaL+W695|4E9xfBNEFs-{iI4Z8j@qIVRs8EK;`q z&^v1`;VjW_Q|Bx$cvU!~FZcb-3x4m9UpUuyIAl%ZSG5|3r^g)>bi~P&Ev;1cHPoMBd za##1W;1>sj8QaXtLCUZr-G8@48J#ZCrJC4JkPeP z=sWCEqLRa*)_7WNQJl#6>oW~)jn8rxif~3gSL=Aq_-%or-VfnvCoA?(Hl1?RCc#HIR2}0JXHL)L6PO9tj_7<)>2QkN?dsD(r2zz;Ih1Lm(f#w=W1F1?q%}ll*%*q ztUbD&F~cc5d#cHCuSa%;a~}$qE=^*%*1e0lz>N74zPLtjxDzQrQG4Iuitq+UReI3x>cI%{Ok75wNW_+C%TvO>nXIE*)fa%D*7UG z_a-}|Z0x^f=?kt-@4j~?d6$vz`KPrP+V1(BKgyPCCHBR!fWd6?t?j=*z1jP!a)n;> znRSV3UptlecwEnDc^2*dCpWr#-B-sS3NC!#`Fw3z=AO8J)QwP_$y2N7o%TIPk ztoqvSEu7E&Gd9j~bC-&L(@KtAI*~r?b#rPiT|S}Bc~tS3QG&>Wf|jLn2Q?C&zc8pi z_9R1ln&pRmEO!Hy+>>?t)_pj+D<-et3ir8Vr`Sr&b~Y{d=bAU;p~134Jrdy(o=GvX zt(`BVzI%1beT@93JGpg#^3101w{`w5Ik)Z(Z@A%n=HyeMhg{>{7Ef@scHMqm;EGds z*&YVfshQa^*;gf6T6Zzu{k!hR_Sa|fiy|$Lt$5A;fbDXu#C-eI+I#Iaq6bqfB!AB3 zH{BreK7DanT*r5V7{2gFcO~BD1hlW1b!eXOt<>jEMM5ec zbImf^F5Qe+_GtR|q)8j(E(G4|;GeH{zv%WT>c{eBc7C9EL zQFu3he@cMSvo|SsC+dVAow91h(+aM#?FF%USrbd$FWWtM(46|feQ)mq>0RAxU?xJ{3Qp9lluXS?DCz`p5&^ z?bj0p?_@6uRw)w~+8n&=_JS6v{Ms#=pKYhP?PJi&{1P#T*IoWj_Qk#Do91&Z>y6vu zXuqbp_(L80o!+3*LyQ$de8*FEF@L)7`l;Zb-NAouiyxjpxoySXy*A%oN{ASo7d)Z* zU`EK|>lccCJ@WY_^!tSslPl-uuSV5JxBQn}#;v8c@L|l8Y0A?ywbwhC{^ClVz;<0G zLaFinhWE2rmd%{7iXrs>>YwwfFKzcbvi^SZeeiqb*ThM>Mt|8MoYZ(>rL{}L zk~>9C(OXZ|WTgInShtWf{`1bNg(sfdvFz1tjlX_3RhaJ(bGx?Ya;YizuEyG(SF8{? z`%YSc>*#T;Vezsnx}T2BAi&341y#Q~>}K31;%;2Xbhp8E0oTmk}5_z&1| zemkJk9keiRg}8*^bi3EB%pWw4KbKjxD>mXD%i_CrQm68&n`3uMEYiPR+_HOlLcT>! zrk*WlfBk{!&!@gm3jgrx57)$E+cr_|6?;2)u6|L`vhyqXy}*nSe+9$7`;QBT@ z{p)XwFUcof$Vz>A_C7H+v%_%x+=zz_3hEuQiTjkEX{$BbH!`UkicUVT*Xcof$$G_t zy)%rW*1t0qzFB(4ye+QeRN4G5y$jWn`43*3c4+yRjaQz$JbZ(D*}?X}9g7wVRaGyO zpZ8Vt>mi9%Jzw^xhSV_>2J5evbN=vlr(=t8iF+H{gG$Z~5#whls(qQg zSiE}gvSapri<~3(>}j9Ito6n4?+30`n}4$k?A#`P_1V%`SLeOX{onaw?^OR$z3Z!3 zq!p4_QL@SUM)-~EAO0Ct&)v((SLX6)lJLh?1BWtRAGt$Wd98mL{vPBP{id9DK&$P0 zcx(R&=_a8Q-tmm_N53AIU^lpK#i;o4m(;)C49Aq7Sh-bxPF7za;=SQuGPkPAc7{EN zCkq>RZV_C{Y*^Me(R_D4huVP~{I0Gl57%?QpII*V=-A>3>axyzWtz4ISV(nE`Q?4X z#J}eQPvA>;4lBXC_s%|(V?56O;DD5K$3Yv(mycv3{^e``+HZct|4c$;+rJ5)zAr!d z-!$aNo_J-qRi}1ro_unG%(BhJGq$PoAL`wuv#DzRBIH;`x3(!X`;@FD+K zdU|sEn^(^EHj@ukdLhKJfAwyjrVQ7v)M-BtW$ZtmWVTwZ?&rRrsndnO7F}O#QNg{& z)JfeXIiO@I<2jkOly_n;&df>NDECQgaj1Csp>(a#8?%3$pJDfxiVxL1Dr1syT@mg@n$1=r%XvwP3k zY2K6Y^UFi7yI0xm1+SYwo?o9;oA#on;6;A-!soy4gd9~~^~dMCL}-TVq-hOa-w&Vv z{Xl%m>hA}w?R>AFDcI05uS9vp(+g6|);yPKiT_okt#R`2)E)n3aXjZdwEyB~oM_0BKfi=2c$wSaxY|__&&OT_YT+m!{4_*wEdyH=ja@r_NR}ROxvvbhUZV7&vW|) z2^?ub_q;Fv>`Q&HrNsQ`r3dAY(*Aq5{`GpXzCd=pQrSOKtD{b*JyouXWc`Ne|6pR;XOptr@N`+=9^k=``0u-O!Td3zw}5cQq}YD5Y7*z3GZa#DwEp6uvL`vig+c%jYK7lV7f8 z+-wrHUZCoVr@z{=6BmmG>=cTGv`z1u1c+L#h&k-|w$WHZX_t&}$dkbOHt&k?^X9)k z?-Drl{8i=O4{@b-PRb{Gr~lbk{^A+eMz5x$qOHtKS#Q|%r~PeoWPQ1LV$|Ao1_CjC zM|1TOtr~@vT@qfzlH$C8-%+vs#q1XaFL=9S);XSgeS^C-ZhH9M{K2PW^6)@?lcHJejlq*sG(3K5a8+Y%hPI zyS|+NO7thGZjLoK1Uh6l?%c40AvN?2?~E{o1gT!FzRPW4?@zf$+qp7qix2x%lyQRP z-TM}|H8W=${aSV9qVgH3=7!j7+#Kl(gJxQEbL`)tEnawy@zdh-f-dqc#$WD8ygMU& z=EtYX(#Gu#3G-egO`7*!x1+St>8p~_pUdl*RK9PUx4HkVaJC84nuF6_w&gZ%=9uI3 z;LI0pW~HD%2BPz2+Y1lfU~e->KYu>r=8EPE?k*P?vu@A-&ge6xi>oi#xW$xtsnD`X zuICgZSXh-6O&kK)9ddFLwjS?0xRUF3agWsgGMSi`Nz1&Bgk9`dDcQoZ&B{x_Yf_(Z zn@Yk|@B7bX7sd*+@4R*>u~XFUP@NVYMEuCib zmxYMUyUt#(mcEE9{Zn|X?re=Y(}Uv7Hp>6I#$Nxv^>gp~YhCBYG44X|DwoImODxk2ukl~jSh@Z-^XE6R za^kN8lK7u}J0$!?>GI_X7wwIs?7JQ=;5hhQJG_{EFbQ z&5C+&Hbfga7=3CMQ_(h4h!jjN^fBXj%^`TZeA@I`zfb-35jxTF(bga^{P)Z|$7O2I zcxqHVs%^O5UX`em7Tp%pEfHpR!moxS^z?xWJ`3Sp4~>@1SiGNMio`W7y6ylks)Sj&pZP<}_3a9a(nssF>r% zjWUb>d5Z4Z-2XHv^yrFN%eBL<+D-F6B2Y0XXc;DVt+oj3oKM+vig%G zT(doej%6V%l5mbq$$tU*p(#mu(&;<(A)mATuO4yx>I&$(w!h}wkzkWP`6ajZ#P@BQ zqP00(g|lxT_fu=zpJQ0lb+RDO-umhe->ckTV^Zp)md14icllq|UYVb6uWfoG>^IkuRuppA$Ym{+Tq`COy>nN(z_kxqXS;uL zsLlQ=l6=(ZyV9n{kJSlzkvYq6KEAr@%bZVLURNSQ%U|}@J)6AR@MU4=%Yt{81o-)m zXw+O|~D+Hgto3UN}!=@7to(e?YDeBP8eAs>?Q+G;$_O9m&)_)bOA1ka* ze50`XYi42I7M?W;K@W?o?p7x>y{i$M({aA^dE(;vR>j*7KlqRrk-4Z%Y1@?pnrrUe zIH=TiRQ%LW`}iZ%9+uii>q&)41~jd*h@RjWRFJ&j=*ES+OHJdIorPF$*-m3yZ?G+R z&X4+J>!%?a&0aOx2TS&f-v55+vBcFmAJq2r-#Eg!ezS2ztk2Z{Os-qH7cE>MUGSWz7~%BFCWiS>{``Pvi?qW^>P<-0~&E^RQiD`YrV= zBi}1h%v~aaLWP&wX3j87Jz|{ZwfM-nr7RmItxxOm{O$?86ev1VEp?9G>SLUuk3OuK z^7ML4f_lQXtM?bS^vzJ2DSJ1sD|xfWp$P>s3VmM5=Epp_eUf%AY?{YmwPEWnX6D-9 z_ZQxCH03T84Y=krz4Teoa!FO+ch`>ZNS-nId^>BHUf-fg{s&mPPan^Ce85_*F}yE0 zU1pmt^J7iUr&D~S9?je#Jw;{i2ZppA!Dr@pOn%Zob=KqLrO&2_OuiLTc!)(|f6SKB z{^K1Rx!aB%pIvn7hKXlys+!o7d$Zlv&;54hNao?Q>BkFQ$#*N}0=@_I$?7 zljcV_)6e)i&Z%PC*qeJgM8?eIZqmX`E5Qd3_`mYmCY%nQbAdDbK&YW|=HlG$VBSAD zQk)UmhCh#=aJ^s7la}PSN$PAH-}9Ts({5a9IT103Q<7WaK11K41#haJPP(&<_fFO= z2ZdhV5S7~pN_O*x9LsHJt68Ud?v%^d`vy{9&-;he_b-{*k<+=+U-7HJ>}PJaZ(Dtw zUew;pTfP2szOpuIyl*S?CpqfOjVSi&d{~4ddXPTX}a^&w|yV)Azp9 znt!|{@!71~MTep{nwl2}UWq82h00xc5sAS4>&8 zLo?klyzuVEqdprqUTo*=oh;TcfB9jCJ>@TWi}t5iitb!{>+#n+oTn#v`cEz0l$~_krm;O_Cdx z+4_Hf+K@Icu$ceJf}Eu6%j>x|-qAf$&(CNRWCFzT|(wRk()qG4p7L<3 z%h1zcvM|1Qq-@gMj8LP%jU^{r!#x(x-Xpul%W|W9!5-CZMvVKm&(A%g@}9wFUp*9nx5Cad*`=x z2wkre6H+aIn=altY3=XG_KF+R-dA$*ZTX-imX|fLJ7USoqk%`PW=G9&ee-CU*wT(t z)2%C9b#7gm)bDz?;_xQ9J&6y?_U!Dsp;}QazERef{YKH_=^7vE89=*@_#Pf}V=-Z1 z@N1{WZX-h+yN&inu_p*$m;CpC^AhX%=Nfp~^q5095^M}43WR1(IB|?c_;$eU2@;or zBCXzVZ+h}Vg(>%PiONeq_gxB^ll{tweh&St#?a(f-#%{}1V+|Cs7SALf53 zm;9%A*j}{4iIw%-sShgq?Uy?#|LKnQ|Cz|tsIRejiIeKIK=Z1UFQ;AvFO-rC4_Icc zRipX5d(|POFPDW@2)eFOxMk5F{W&zIVJcVHMFtCRn+Hy;;wK~49@46aId)WQP2=&( z3qq39wN?b%&vTz!VYj}lu}6H>mNQ1I(^o49Z%t3|Cuar~BwOYkI{W9sng>VEd{E_z zJ2j=*Xq&-OU9Pxg55nH7kt9+*kq{&}@ba(&3dusaJA*f(zpZmrwn z)vEXANtpQl*C88bzuzr#=j``%ts9FI);HB^y*s$qC~oZoQ=@O6FWa$xKV7l5=X{W2 z-}x}b#yUy<6%$0tjy_)@ag0$?SxYAEYpbD`uE~$036fGNZtXYnmNi{JS>bVTM$=&% zqjd>Rt)cBWUZLoqaX6o^+%Fu zT(|zi(`UKvIk_e7{?D2}_2W`4&CjVhyQdew7OkmNHU6w6_aUopPp^FZVWB-?t>%wk zi`3Yb-#<6q{KM1Uno8mLduO=!ww{!Ke7bPo9mU6UjrNHyT%~`dIJNqIW8b^CyQ_9N z)ynSPwQ}?4T^}A6B89QB$#vCO9l2Zl;N@u@ zQXJfFlR7&RBNv8f-Aq#n7FWI#czLD=pBbOZrH>~rdff0j+H*{K_VxH%6}+((b1WzL zN!r}7$#6TQx%lX_>qbg1m&~-fC9yEP_fK89g{jG5?{crV?m=!gSuW-AR}0U+D=@Oj zS<Y%L6K&mYEDE?Jx{YsVmA2}u>8F0w1>K+K;o}m?`>we^ zsNm8E=8Aqc`6mA0hD#rse<(`YuX*VHAx_diqe8w;B=PT;BhDWyns%5h+Bu_b!_m^N ziLwX0bR5$UemSzN-1U5YHu%w=r;npdbj$>aDUMkOf;113*pnOOHr4~`3j zJ-Hm@u9L>omb~yuLe-6qz86<&w?AFB&o+ckTR@7%Av zg6DgdwDCX4CeCRL9u4W*CMyW?j8<5I5>9KxiwecyzxHeah+JA z^3NcJs0TWYg5RdSyxKee@OkAgW$H{n9poRhCUtgfnD+F{BFR8yr%oFwiy1yV>}g8d z_!g#Z^Lv=KZsi`Q!}<@z1;w73#wYY&z3pYODQ4+Ep}NS!>kXpzoyu4_-@D<$gYXa8 zEm4yU(51ebo4Lr+v>e;^`CoT)<_i|9$Xxz#`-kkY;#wRb|SNALKtgZLj$$sF*w{ zHivml;rHW93U3^&RH&KITOlacW!W&Gfm-}Ayazj=EQ>xOqUMrf7rTxhrWQX#594^k(vVL zJI-*Z_lvDt{4oEcA#Z(qzw(;dN>i+~x5-NyPIm1~TWXzpd6~A3S6R-ix|{D@R^9jL z42YeeQFnflZt={U(|w{>2G|%)Szz*k{f~0foy~jKuFU-G#{0je{@Mq9k;;$j=cNB@ ztDhgVciG!~zSV(3I+MC&d6!g_n%Vth{@=Nw{MJe3myI(dIc1Fc*pwdbXkM_zwav@2 zLafYy{j7*<#%Y-z;Rlo2TvyvS#=B+A?=+PTcP;TcHnGW8=8eFTuvOddAD;PC$8~+u z)l&7U%M%yg^()XbNnAhoGSkF}8?&D92!2{Vg~Mp|-7xN>Y{FkGOkxtYsehC?v~N#o zt9*c(Sm7DLH34l$4%$elAKc$CagE;0sb7z-DLHcVw2c1F8Sx5_D=W{x_BMXtYIrWgNq&I}K!y>2}YE*qu4n*ocMCh|yj zOuqTdiShkptrZQkc5)TG+FfHfK{s^yUAc@)Hktd>bSG$Kem;C;l}YBpEgcgKeD}Vb zpk;78WSv2)_xW?OY%|VS-CC9zv~^3wv}qZaf;^`${cQ5G#_jW-M|UUa#4hj@_d2a{ z)9bXUrh=~XjtiQ-Gd0UN`pi z@fOd%qEpV_*C+Bd|DMh5?kf0a65z1nM0DdLPN&d+JDU?u+@7Qq{IRa^S5o(tW2&=)Pny1) zf16Jxap&(Jxo>SFMPp26pA~s4l=hAB_m*aZE%le;Y{Hqh@A&<2N$Do(ZGUPWT82xy z3r@SFxApAJj;-n3n`32fpV%|iG~2rS%l$*k#r-^617a^*-u$PV{arD}=<~Pb9-^!b zt5nj8d@eMYFg|&u*}t<$Ioiv=__|->^*M8+maYHw_HDI$-S@r+;<6zhjwv4rTRr>B z<;ImMu8$UMTQ=o$)4Y8PQy#IMb9t0=VY*41aC_$$r>OKxY4b{!&#-Kdh)LP8X0d>6 zrAAI^@K0U86(>XH?Wl;DA{(#4(-b}@L~+lP|CLd5pYPTcd>qwadi2rhWmoNNCMlix zbx2ux%1i;Nm@C`2EjeA-G|lsIvDxgZJ(Ij{#7+*K@;fEq?J-8f-50i070sSe7U=78 zQ%`U4_w7nCX5j{+ZiY#V^<;Y6ik?d>ny_ixWxX4cW|_Zt<=;v^zG&(5x~5p)2RaKq zKimn}Ty}2bwx;CZgPEL-+n61V*9Pc3lj$|^O766%bhWIWuF)rGc6CRF|AfNk)wZjT z=EmC}mYIDt#zZYoFTrp*-!(0Ei{CdI_pEo5xF5ZF|5VfEpCok@9?YaZADe*|WnVjyim~Qeu$5%b@OCisF@N%w4I>i$7Stc=dZT z=NjFzN$<|hvk|#`k!^16{Vb=z;)-51-W{{VcWm(;JL!L|v=bd{~gU`?+28vuhht-EMIxtW3GVmp=D$`n#lM=_^<*FQ=40 z=Qt_3ZnSwI>IwdVfc>*QX)>L&l`_Lhyt_Ngu99N}5qMeRWfmo*Jk| zJy%$GUdC+KnTRu6xYx~<;VAE7n)7(o$%SS648DHw=$Vr7|HWg|;=hw(gWgT6sjah; zf6Q&Rs_wZsW6U|FI|imRs;!pmdU#cq7p~Q`PYq5Ijb0~R#Cpt1+}GD~?%(|m6W(%s z_t!rmk~R12`cyA|_Idx_vwIzi>-1gca>I^0uxPUS@2Gj6T#uJ+J#Ms3a%0GiQ*XEK z&=ZO^bKswP#rXfycv->Km$`N+>u2O0n6k+ycDaD$r&~E|-QVxZ;1}GS98|6(`l!F6 z?BY#xmsb)SvpIFoyT4{@Vg9eGKi7%3x|`EX^yNa{gL7IBroUcboa@Z3ae3Ouh?QTT zKXd(m@O;d(126r;=ltup5RLZJa+sHv@@VbM(~6N>Z%<@?zuGC}`{(OR7u(o~Bz7t? zd_Ta>c!2r&$M@wcO6C5aaK7`t^qu;VyZ-;*H}^9gI=&**vwX?!?PWY4;vU#br6lmE zeEb#ufK~qP`xUmFLT~rj?0U{JWiCrU%kc#Zr`>w|K$iXf)x{fZUf8mF)ranUC(Hb` zYBmDckmY*z|5vSI&a_~E)=Em-QchceNizDYt&wEC66v#}Q z-{kst`GQ^bJYwOxCodF8Elhu~$I#;cm%T@_Oi%6?N-4bWAf(hIe0l4G*$eX4^Qfop zi2q})diXeF>JOLcJp3VZnzJPR=C`J ziF@_Z7d*7MB2fKWuI1Q*Wvj3LTNV|Yz2bW9t~J%i68A3O`6tc3&(Fq$D|FA2JMmi^ zr{{2K?QG2}7TYyd!h%)$_sLtcCnRjxx#p!~#<>GWlM6iA^v-T{&1N|&rQ*jOndV)8 zQ*%d;RP^uESlQ;&#~*YVawzsWW?z{9{9ODYDdVM9J}aA6zWVgoAl~ENGHoVnv+3mr z`*c{g8M3U{e%FmrUm@;=*4`Dj{H6;RES+)9B{%)ZqB^yLf0^!ATrD4l-reqS`T*Z< z=iSm;EqkphK4`2-Qoe20{`1N`&0Fbn9K&yNd^wmD!MK{EQTk!f4X5v~A5?h=GR5=o zUv!a_b7uYf%z_dRi$;2$u*{awC_ND0^e_p8eH*hRdzs0}aAJ?!}+ZRRqS3*G)H6ao_&Bb;+_D?r+vTeDm7H{$^bY&pP|FOIlQY3a>vD z*cmT-ML2L@JX2x&Qqc!<7bK?MT=P-3tnvM%h5Mf0*E{@u<;P~Fwt5cxO_I~zEw`Jh z@>@}eZBmQf>e+`fyAEgm;<;1D#TR^^H|Idk_lZ0*XL&iRPS2{nYIoOr;=b_jVZUeD zah^S%u<)HAf0@O(1I5xM{GGq{6juE6+%fTzmU=>D$6uycG0q!xRSW-?Z0-*_z%J$D zWcw`Qq3a<%zK7!T8>5T%Jhl4Ye`in2PQ~(FKOJ|dzF7F?R)X@~<-cW?+@JE)f7zdh z#SZn^Y;j(90s`tKRfD9J^!c^UIPB!**&AaJ@MVeioQAw}2edhS#Vy~*sopEpTK{OC z%l^1`2hvI&xt%+|r2X=f`t@#FYeh1YH^lfaob%rN;{El9EN3i8-<8aIr$uv*U_8gN z9rxMVKlsTU{eD>c=-(8f|EKk)Fvb zzc5Q#YQH~YhT`4rSLQa{Hu@l?&Rq4*mUaDG`S$C*2VXaHRo-~J%W1m#o?c!r&cD3L zAC6t#TDmL9o-dzk+H}*^5?@|F-4<#ZTfF9%M!WjNj{Qd^X9Rto{$sAeyV=d6RjzL> z_NZF;&p)2uFUx-a#SzK9i}*IiO+WsyqF`U#!t?U&)=k_75s~v7t@{HN7hHKQ`uM}O zgsE{$^(ET3cbb=1zH1UKRezY*_U&zzE8D$uf9}2f@SCqae%24a-{1812CY|kcmM8! z@M|yQvi2@-^mrZevG-Ptc8pzx_z%~g3(lWDP;Gnm)r%uq&#Yg_&)u;gO0}@y=Fmflz6TjH$0zhCwr;6<8(eVb zKqt$uL`{i~!v_{LPG<8{oe*%2g-v8mSb^KYNY>{fbHWWo+B>;9Q$h;ZmhKS6 zOea<{E~!H$xLk5kTd4-JA2cIVUid$=-Jf!{GW2?6S%tu~)}zej7o<-6`k&S1 zP?yo?GN1A}=*P?}JkIU1Mb9s)tiSWDICa(4V4-y%DmA#S?%Y(OcBH8BcTHf+q4XJ^ z&%}QSZD)EIQY)z!eM$AdO}R^g@9o9CQ+!^Pi}vl0;j~@7Xw}OXTbDNT9Dc{PS%3PA zkH%k{_Xn64{cF7K!e1u6Bju5i8&A)y9ZhQ*4TUXxX6#t?K*~*G4R4rP!QCSkc{64N zTxhm&&XUbd`8(m20ngvL@0a(;pHWj2eeBB`%*Dl(r#WMt=SJQ;X%?TP4>u{V>3Xkw za?uCTgL4C>Np8!yn)+_qnp+ZvJSOs6PARKz;1Z7feZ7!7L*vv=t^0Ln&BS%j|M9p5i>BM+vpWPjC?VC)C^=HqQDwm!$ zKiTW?TYk^0ioSLEM;|ck%KW`Le#*ZsHU~Deukougs@k^fe&gOtjBjsr*M2=8esPig z_vP`6pXw@|zu+Af5^a4l>uMN#WNwOWt6*(k#uL_5gE#6qi?_-zG`-@-RQ1}l`r@kW zvbBeH$a}6|Ft^d**ayCk(@Qzo3s=a!Q}$D8V1McFVRO{um$J~$&>7!jgCjp^Q%Hq*MhO#Dq2)XqL0%=Xw>r9y_ykok6^!Or*Z z%gn>#+X64IY(p zVcr_~=fvaiN0)79E8a~DR{6X3!j)d#>;CQOi7cty&KpupvK}hRMQS9?NPN0KQm5x3 zx6G_{8RJ_ zzE7~48oZ3h%`QD#HsfxwQrL6j3qd`JxA(cEedW4YCV$SN@XphlT$ecRNU^{$IwDq&528}spOLfF-{+Od=G zhP?E@wfz4h8Gp-{Tp_ugd+uCJJsZiDld#Tw(#sHmfGJ+5SSNj8-u3E-J}AYU6kcS0 zm63sAAv3-dL-;7b@S?;5=gfkP)S}>mOcfW`U{@DckQgNSObxL0W_A>)eSCC|<@x@S zZBAV--J;yms%M{aDaI-!Ro>$*RDGkjd-;U%6y^HJZq|mqF z>$Y~Cb&}@G3Ocvrp>_PuBI}bEU8Nq*DEQj_CuDQcy?rm*_I53C+U@?$csaXLh~FuT z$*1egey%lq)14~H#D3_fy$fga!!PUkA1zC+x1IG^M0TSRo98L!rs_*`6((|>IDgOa zd-j_(6Zh1;m*sL3SN_bf7n}hdpSra^Wnf^4W5gGnmIN~(DCiKu8RTpP5`cx}K`$pq z5!>zQef#24t+zLE>n0tT<~G}%`(S9}#ZN!?+-Nz&W4!*r`7Bk9AB?pjCd!Z8qDu5- z-nAC^m`jXWR9r zr#@WGdis)XZmP=botNG`4YsQ&Y^}YsSMrsBU{uR)<)_srFIjzFnf4|{8>_di z+Fh>Lad>L)mbB^mT<>oR=lx4`fAQ^DJ!`+u>AV~B7c@s@DDbuNUSu{qblpuzPht1H zhPZHxNX4JGKI<_Z`?Tnj%-MKQl6>Bv`RFbK14Ag@Fmxt03_)jA8XCH|2B)T^B86t4 zulHdCiMmbe^S18to%_AfX}Qx2n_q<+{3I%h3~p}Rmgwd!bV=(?dZm^HC}AEs@@|>4 z&jZEE&ov+R{rpi=&2DgHUNbNIylyVDSb?0K1sBRL6mD?7VDY%=xj0K`y@BeAR-;6g z#w*2D`tx1)bS&2Km+bxO^mLMu;q#`{FW;CduE5;?VB%FW7% zys`Cyvc>;}bv=@yQTsl$WM(xxt&^KEPh;PHFMZy(!j9jk&oUQldTG$RsV9}i{eOqT zhrhE+d1IFu)oHCX@)K~O+0LWn39EsHV8MxHykn+o1n2oaZ}00)>O}nhaaq~F1`E9Yx}y>w=Sh- zZ!1kcJBja-Qu{8}OSy@!cYR-db93zWH&^#w&rS8b`TcIS>g!aV)BJOb&;OkFyn60u z%lLoip08(mv2?T4rXQ0I>1+S#I<#JE&$@!ee3E}=@$A<-JU#UXujIZ(A3x0g^flV( z&$c$uU5qswmSO0=y&?;+ge}rc)n@L zqh6~&-2blj)?fbc{s%wr|IU2PKhvfE>&}lC4gK%_@b;n4%MShD^>JF;+(Z9z&G#){ zD4)-9N;l0bz@;n8B^-kl?+uSC+Wl>+)CEKn&QcasaT+nh|ZEB<0ZMr4w;$A7g z$O)xgHB!eiT4zVy*%G&y_sXh_#chRRC%b*S%(5+#b#IAm-M!NJ@Dz>Lf~nS~Hp<;< zuY$I?UJP@++qF$l%KbZE?)$edCFM9J1Rrk<(eS+R_v4OM{D-)59TEBWW|d!zYm3fUm`yg}c(Oh0 zxARNRw4?FtJu@A?%;j12xV8S)uWP+ODopZZc$Yc_pDAfRYMk4$d1Xf0vT6mhc@O$K zHH8nJkkFjCXm09MHy}^j!w6H`it)xBJ_@vLGXc2!YO|=5o+(Off znR0%7pRP4utT5R;JK*-Ux~2ybUM>>%Zf(;rKX`A4#jN-bHrHN$lbm@lLdhocm9fKLadzei=lcrPRK6}52MZQJg?!SF+b{|>9 zCo$7`S?H|WT`{sJmMr>Mc$w$ciJcoJo^cWWSmOA-p`*t|qV?gmY4dq~D^{J2f2xui zo!Pfm%ggh`)WvL14omPJRqoUbo~_#GqhV92F~vqL@YK>{J`HbUxJ2$Q&tQLeWbTT9 zvnt!g&mL{x@Yk;*T%d081jgf&CkC|TzRk0?eDQtu#RW6x|H=NYy=(u2X%COw%dipA zo^k!u`Kh6gpFB|r-%%;~akE+;yYad&EB4!1v@|bb-yu`f`(#&osI{xL=-Z$x$B(*u z*_Xbm5R+HZ(bZ<3Giy_^-h9br`F}5~`l+s2f5g(tVv~iC_$q71TY*hW9#?w6fH@gP@Pgj=(+uNRaxcIVjMc;;%S4`T48*?fa323$2 zB-l^6U1}iR>)IpoJjFuf{+y3XH=j&Vn)=bVFzaW@EnoiETiV%NnxF4vm?m>bDEWEt zM1k#lpFU1{b^4h4c zu8VicvCYA5Ho+y6s@IBqRDHBja(-pO{g*DM)Hx@ocxzj&y1dxLt3ayF@a7_o1(ywN z*1y={r~bmQ?ERi8j|w)-u{)?KZ~UzH@#T-6dmJ+MKmN4*@?#T+2vhx36Y29V%X^d( zS3l}>s*zm!>-Ncrhq2qL1)EEq7w-5Vpml$V;pL~@>B)xk1^Lxg?reLtqhoq0*Q3;? z^(sN^&J#}=+zn|;y1lPJSWKX_%1Ppz-jn?3s|z!V4tdBLpA+4k8=HEmc%pBl_==ey z&tLLnvi~A?;iYF4dwi2hddmq0=MtU`6`jf|Ggc z`=-p{DW0%w(dC%yk<#^lN}RS-MlBcU)lBMlI}uP4wY+fFgH>KPHf8+l<2h?Ak{0Ni zUNTFiE-5#@rQ*kdeael=x8J|M8Fr*8$!S+<;H8HL4%kdpGV_n&5D%}YsNcAyMc}KB zmr2wFvnfLEpSX|oF>;>zS@2}}od*K#+g6)CT)11{YShx!2$ff-UaWoARPg_9fM~g5uc-c%8qYPq zjwx-?4GGctcXa*ZOV_;;nz~;keEafJ=)a!!{=4F5{ym&{Q8_uir{I|U!)~=ID=q(q zYOm0_{=HlR@89ya8h45`&v_W(WHtBc&*!@}??2MJdtt}Kjm^_;OTDyv^k?JJTeJ5j zovxc>AYQIE(LQjc%m?k;tvC5P8z@LIrw~qZ_3Qz&8agooDLc1#kc?c`Q7*Bwk09ywRnX7j|sfAJ+W%)UCPaPOX~TH|PG* z>*X5L^s@8bF3GBI`uT}b`P!`cPp`(r%zD1&)HAJlYbx|-T$1iGK6?J;t=$V6iffun z#UDOf?ODII`u8@GmMXE?>%D@M#B4)4cdTPQ^7d6-O}M3%^fpB)%hZHI$jHHx$*@fG@) zSj+y{8SwVbM9#461e;WeOUW~&Juh>8d~+q@9`C;jD`BJg{ne{NUa@AEPvu^8pJ(}w ziAmKF*VJqR{#|DgCO|GjEs8n=SE4$L>f>{fuzsf=}Wb zRws*HS-7ubRzj|D7PBM!W7ei~Y8K3n;leSErvqfqoh~T1&|AE&SuT-9Rs zNt;uO#E$X0x~IR@`BK@!f1ATSB2D+a^Z)pnvU82r?Cepkd}iO(f8&gF#Wd!tSN5eG zuH!j>b3>@vnuU*xGfpJFEY*2jFP^(c{WB*7GlhHG4d|60Tf% zlKA{%XA!T)`Jd_^Y?8TijMum1eU-5}XlcTlzVXiGIfuLa{yp7LB=$YVxU=q(ib_Sr zpOs9N(|zB~Zr<*&@08m2HRnD@1fM#5TKW4WG5%X8wU187FWuX=^||4dQrYa^G0}0& zk8Q%LVxw=EeGME~XUt2H|9`@U_rrw0(Z~0%U9{%#>pe|$c1g`^$P;TmC^s+2@+BA3xSVc6j@DU7GmnMeFK>Rv(?W>gLti&iyym z?epJz+*LfU_U`LFjber=_j+&Ntd1_)q5u8}?{%wf9tYOHOX9XFx>49^8h>t4^u_G? z3kCbOFWh)aB;>~z-xXg)t@dTS{$cR?#gm_L&)lyU+I!zRcob%cj1z zY>CbhiAuJw!!$tP1Eju*=1+;x17JRi1m0VtNQtm z(<}Czkjdt{`B>xByg!X>8;&3O?ISpEwZ?hxk9rS9rS%VLKiq!&)KlkJbCtT^&GXpP zKVC59oFRR|dRNx&bakDrQGk&o^~cRM%LOjZGQ7#h3ZZFniAPl(xc}G zZ~0p!htL2iN<;U*KKBHLnu}Oiuy{77@<@zUII&12l_D1wg zh~ZH*?GNCKo9%pyt#kcG#@RpGrdG1Icb_>dBmREUfA7w?TaNCTOu=6?T+c*ad*6OM z=Csah@sB+_pWWo!?w@$HXtSQ~?xPc*KG=11K9}Xb5|K2^Nc+?K!*zR>ZZ8Poa*;ba zXI(*1eO#j7L+%5%f9~sE3!SR0StBUGxsI!7p8a33SCWr!2PuVX$L#G~=GdC;uO0LJ ze)hgaMUFEbzW=(%>h$`V#WC6UPkt`{_(yNv{@KshC(d#U_+Ag{2)1V~6kf&4z)&fV zZ!E)%U`H^*)WFiQq@)P4aJ#5DwMZ{HC$YGAZg^(2aJWdFJ|`c~;UE#w72HvV+!7mZ zU31#VxY(E1%hRQKt(A(i42S0&pF6j1)!zS}CBAm+*6NE{Nlz=I-m=?&+5Sa7#QXeQ zPL+ub+xY#@?Ja(;^FH#O<>C4NWB&0Th?*nb`Q!A(J_dDb3rT?u!AJC1T&E;Wn0%K> zPBgIZxW!H7gnY|yj$(!_6B;%!w9e=6Ug6d<`L9xDAZyQu$AN;S9bFQSFD2hlUc_dY zr>2+0E2PBdAUr{2qli_#M`6)~$<8rn6aD%)EVLdJ3a7 zJ78Q9cAz-5VqSKwCTJy7AYz4 zyNY_5rA~KxYAF*Wv`eaAm37aV0MWoNObpq%{|`@l$i=$NVe*P2N?AT1C%xwBPXCyl zFl+t%5Ca{B&uqydeXcQSN345nd|lYzQe8N|g?GpN#H(*A&ogU22<2S=uyoyHUe5eSx^1Gxp=TPW2ytr) z-8*J2bnj?2&$mZ!rqo<^&Y!WWgK7B%*~<7s>^}kyxC_}G`xxn{=H~18}th?7+ zDs=9FHexzlLI zy2!R~j~sfL48DFl85Pv)x-3=YPsjWn8|N=Ckvfy-JGuYI6&2Pei8-kepYM0g)ABh~ z@$rvHw)qvAJB<$ew^zF#*u3ZXW%&1JwTuzDm3MV&RHG3~3WwSBB=FIFw_l*tD^Fr@mlly=6 zyOC$WIo%*<`&q*!pWc@r ze~=@1BHvHeCT#oR95O$I(IB9-Vzcug+bf?>4jdWty#xv zw60EB(iqS`+2rfY+3wRSy_U&ro4LGFz433pU##z-z4jA}SF_)9)ib9ZUgUZ%e#3QY`_^TOQRf#dzBLPi!`MReNsr3d=q< z^@Sdb7k&{DE4uvWqSJy+9OwMv(kvyIbPnDBFh#`ShLP-y(hV2nFBHi2o-=v(CU<9B z*19dKt9AWFRUcT1iSIi6L153#DJ2&r%a6Y+2om~KRKzH1QWH zav3*YoYod9c3nO)c9!HU(aMFEokq&9ESYoWyj~-CIU?^?)~g&H%hn*Xdl8q*gg&1= zEXsHJ)2WY#p6@HF%rk~iv>FJbt~ad~f zR#b(E%n=MtZ~Yc2I{)x<(Hh5t;-Yhc1DliOY}6i44_R~Q@uy?`S1q*F>=pTHBk%27 z^uSZ}b%D>p@X(wC*PnbWU0CCM&^%OULg;Ll&c6JWKg{+i=id+gD6(()gWp=)Iu^;V z_@P+$!Bpge@U=w2{dxtq_GPmddKidYKCH9d#-g_JW1?+c#e6wGi8ZTw z4a`OE&sPZ_{ zWJ=cR?rHeTvt4d$kB5y&uK-u=R+&?lcc;ni+3DQ>_9A~9FY9?hv6jVE@qH(*{me?w zZfq)SO=y0kc<4{v;Zut1drnGLmu-EUP*PFLE+gC6BFe>X@xYgBq7!S&QKghs;^$Ts z-M`}6;+6Kk$L-VF6Jc|2y=~!UDjp_fE-MW|7$|YJ<7-qbRRr=hw!VeNM zt2#PaW?nij{aQHB=A`Et zN%-O*t>6_g%KGn=uAJeMl{&llCztMp3`O0bjE!!hJED7{oMxoYmhED@RhFu>B2ZQL z=>Z=X2ct>bBNwM`nR9Sqpr}vps+U4ex$oB8x_E2r>j#2*3c0mzE)5wUnnbru+8(wz zbW@e-)r<T;$TTc$Bdtrad`m9ueX?j$XV30lU2AHHsJTXjKB69PhAX%?U zmk8tLJ=r{YD`R}WFlMgQ{$zbE_s*n*1(J)h*v+@Ua$H$@HF}k3*3}nTyV@SCn=GGr z*F@93$xR{6joq0i`s9PNFa4gR1m(%3e%9PFSzyNrv*WF~LAuW!zMB=teLr_ae>2mi zDcjj@%t?wbyBcG#aE<9Ci3Cl*f75)ATF%!=)4rC+f2VnBz@Actw2j_REpN@Y?{~KJ z68-(;*|rPEV$=R^aotv@ytaCiYV}S1Jo)xBFAiKO3xE7Nciq|KCWqr28%?KoJoC77 zNz%PV_hzio(aHX2OxA2N>Hm_-zP;}L(VVQaZ!BbatH1m^r;+dAHM3&&c@MtrcMm=N zae0dQ%uPFg_?#{>zU>lWIr)Q+%<6gVt&Q(H&d$-ev&r?hOqE%h^ru&+84Ity>1z8` z5qWe;u#4EOnM(f0oTEPOSQ7XA$1; zC9rR^_xr~$bWXG$VGe%rviOc2ySV0?>(6)>^!{0p8nLp~cw4WI+dlCZ8)pc z!g?vqQkjfNxtadkf4*6ldpo8`+d6m2$BCDdA8uMSlbI>q`uEQAqRmg=nFzb6^Uc3{ z{OfYrr*Udb8=R_>q zl%5qC_btin)V-o}eW%X2s){dvRZ{(YRlpJ32>#DfQ@3x`4>nF)VeFUW#d@Pg@M_tm zAhSc}&PHj5Tn*QrB%if&zA>lr%r@;VgZCahM|S9Z`MAM$o?q{*$fG|ivudtIGERTs zc86sF2WwI9!|hBv_uo*CPkduIMe3(QZhvC+K9LqimmiW(*FW{qe{eC{oNLwR{sjyA z?sK_6s1o=jd@rKw`tdn>a?|}j=*d339DJCgYuUP8tZ7+S-Q-*kKiZ`-rR=}ul%M{G zoh|r|mNKn7#Gdod!ah{Qrn!}CP41?q_ozi6rs6fVI?%9flicsse@ynYs66XU`uAaO zYe~`{O{sSa62o@z>@KhsOECX-dvWp=EfG=s=1Q)-TCrJ8i?{q@y7Tza~5q(biR}AN29EKF?kKBWbqL;nQgyQ(a5f1%~i1-}YA2@)`H$XFq? zpVKklcBMZtv%g+s`i6ybd7lT|pKzp0C5+E}*Rc(|(s@kZJe69n-+7BGT&SnxmdcF% z|9EDfn{M0pE$g4PUdW<^Irgz-bK+BXf6D6omaVs7R^*Sq8AhqOr>=0BEq!QlilsZ- zU0_9V?}En6M$Qh=re~kE<1;IJ*VrCVIXJDJ=k<+kU*9I*P>_qc75Ls_+r{}uQV-8f zzH#O7xfr`H?Qr7KSz)tUX{eEFU!Tf2ikXcRul z_giEr8@unx)3hwFN2g3KM;p)Fs&+JF+O4MI%SNYqn|9uA>0E#9oRZaHwUsvC`VzUV z_iVjeeN{8(^@r;1>KD&QUz&7;&n@wD-Tv)Y7sl8+?mV{ejZbh;SLN!JI}(jb&i~$< zdnRdfYKMRN5ZSeiY=1+J!5XK=y|wn9#^W!+g`c-+nZHyboej2y!*7+bGy#F zo_iihO#8g8^lM1Pq!)Irwu^7fHhaTj)w=q|v#6Kf-z7hi_-4H(z3{I_m0CpjueUBm zF*XXXWE%Ho{`Oz6YGZ}g{gaXeK<>4;tZd4)Q^6FVB_atdL3ly7#2o=9xZ|%4Toz<=?b-a?YhM3p|9m zOgtBIpWJ5Vd3#IJ+;@JHb!Xq*V13)HqVXEDsEf$f1x%qm8I9X6`Fbx{%i$OxF!6W5 z6z>mV0#TWdtBc=GJS%kP{pmCI|Nr0n|L*bs&mUgy?q@n6l(>s!`@!3-AC!Oev%EjB zTWC(h-Iqx+GE6tha&>}d?al(s68zGl7!WR{j_OYmb*e1;VqF2d&&L52_3nWz8 z^tD_hySq2AcvqSf-jynfcek-cIr0)E}N~Kc)!VpM9_GvM1=sd5;3ox@r5% zyMI`6t~0Z{>Q=Rciar@3}`|Bkb*L(fL%=X*UXQ|v3U;fBk zWyi$}f4(Z!1vkz95Z&`Pm-G7rUZ0n4bqhM~7d|Ri-66VP{gJQIy`F};mRr|6w(PFU zR+0Pm{rA)vVnMH`MpP93U6FTzc>no3-jI(aww;Jc{{^X6Y#t+XR* zySDX|UlWAht;@f@=wN}l;|aDSQL3xH9200c>)RsQQ+c>CA>?beOR2EaLCb>$0oLLR z_q}Squs*K;K}H`-M_J+SWk2+DgMV2~S*sX2{e@VU!=kNO)8pS>ZklKixc*IG(%gp; zd)Dgo+)jM`hWs$1c0}*X7n^YrNPW@m4*w>xZ)- zyUP-lZ3Q_ybYcXa<+8EAzPe(qtG<(bkERoOM?DH!qFt%ADReFJaAQeFwWkV%}G4xzEmYuq&OO#yGV_ z$!kGn?CVtqoJ)dy*1Kq^&nSJ>cVg)i70>0)5qVk5!WG44HQl|pVOiPgi^qH}{%JXK zN7wxO+kBHxGZbIEn0xY->Y3_bYyVBf!A~x@RBy0elkssy)`q+DgmP1-U;U_Ill!MxA6Pxk(TC zb_BO=Pw;5_TfmSQ6qIMZOLNC&L!VdvPCh5Ega_M5aIFa3#KpMlui&P%i0+-u4`sbH zBr*z4TXeMlEOcoze^@H^HczsS?R%$%%41udvvHE|k1jTnYrdUob56&O(f`y3u75s9 zey9Agyywq2_shYnUTfNm7@qP<${$Gdk~6aNi1@)>!?Dn6w^vly+UU)t)+?_|EBrgb zkQH*Q{o{0zUq=7BHp(kL`w;ku`5kN0v+F-*bnKt_Q2fJ$rQ)$!`5H^gv=vWHoi%IG zbRkozUYEPIT&?*#Zuc4lyK}m|n*GbPG}UC)m-U_5wS~P~mTB$f_Bw|uRD77 zA5~AOnPfRLCHHmgWT)7StZ5GgD`MKhKl(||KeU*`ciZFLQv=Fdcy3*O-PdwgQuKgq z#|p!8i$yy%75>`3oAM)4<8bx|tEFm^^N*#c)QHKcuAX50u=t0~#H8(2Eb$Hn%Xjzs zTC^Uv`o=eV%0%D0)}89+(zMe*@-++Y zE1!|K7PxfPuD+&o!uHyEHMiEch-c)5>T|zaFfZn=uASt(!_!^M?^7h=;Pf|}OKMDBOb~tN`<&q;wb1sUdhC0WaY*O}coIXvC_j}s0 z_=z7wE5eRlpV0GNz3i#E#>o>Ol-TdiHu@*|-|1_sP4C{{jNfMN@A_db`TyLqzwG~l zkJO+1kzdpOL|*po?QMk{rnfXDmL~eB)`xH5XuWj%hrAcxyDjr0Pxr`t;IqGXwq;|M z^uYtcA50F<@o0V+^rY`~YFpyG=I58E?c`Xhvp+#kJ+^-7(_g&rcy5{TtoJz~5^`j+ z(LeF~(yCMbddF{^-7C>u-Q`@`!;wD!OIvVEQP1DIb(^=YOj^1wn@SKwvWU82r(5l{gU?&j-B0mNSDiX zlLGfqj-RG~CO=Hw;V6Ny| z$ESS>pJsnyicapo`$UdWPc2!pq12l9pz%7H#3k(Bs*$^Olr7e3QyF~3u=kfz*PH(#z z72LY`*8Gc8`+hxH;u7b3b+gi;NoRMSOS;*`xOIN&&0EQT9X8y1u_|}fwkdG=O&qau5w;CY1hf6&-zy~ zt|}=r&ykB;qxtSK_mq8hrasNPa@daq2B#gqJ%cg-NVwmRPdUFQ`<_3Q+g2)Wq90rI zO{r|^)+Zu499legWPLtw+g@H(E1sA6aa;MC&t|1%71w`kTNC^EYw3iDz^&$+oX;v` zZ`|1#b#hwhT3PMw6Q1XO{1vt5thV*FHO>Of8$*K@(p%BQyJ=gi7C#->R!zk@!V zZrk|B>U7|u!aqhPugcA@ZDpORWw&+m=ck&CRaQT_4(wRBLN3^_D*W~Jkh6UAWY)TI zDP*s`YGuD<+tFR(VsBOEg{<~TDV1uwr1Y(^t)^$y9-*$8-$fqISQc>7-9o>6ald5L z;>j!5Eh?Ds-sy|=^rjt^XD7sO-Pt+w!u=-)Tfg=XJ#`{%sI8U>sI2GSh zXKDJ?HuXKTljBiMckzRBzrIsi%N93j^8Pih$(JkMmq)BH+Lz&dX`9H4MK8}u%(V^D z&wlpIYt^;0yq;g{3^;<n_l@?ST24;SY`2=Ykix)&3v$U>e|_7EF#>KzplO- zJID8n|0S!V=AEa$-;sG##no--KD%gw#uk6OD?;@Ow>|D;M0e)DnXr8#=hHQ79`!2+ z?P!dW?hO2Pf8ngoeMxJ$1C72O5i?z)sUmrw?^o}#qE|QAH?bx!?Yp8pb6?@k$_HMz z8}|NbS|Rm1FnLy;oW$e0!0od6H-+B6U3^G#!Sz!!M2$Zme=4fByL;Kh3k~`mr^v2x2c;9`o@#TLkKHa7HnM#$i~_cM)|Vd^u$_6j zyED4+9(T4-z`a+M0-rvAtK>WMMA^W#f!AbKR$m{(+&lRU7Y!Nu_SCi{3TQX&`M$uT zrTWfu<=hf|8B_CnzVVCn>X?>2z0V_^{fAF({_z9_`ZLQBT| zK<@_jSCuB*4=v8*omjv2g#Up#ZA~vlSvhA^8&A3R@yH%!gZUOx5|vBx?B8v-oXOI6 z*}%Ug`A84P@#!4zFEM@Ey6fab?jKyN3l!-LJnv*ASe`(@R+O3#Zf+%{(Uy5;|(Yl;zPVstWBoBoLQ z>MMO#C%>C-qD^;gtJw?=-h zci2s7*v$VzDk);-mmr?~ZO0#&Us&_lChyUg88O==ZJyp-6+N$^O?ttMoyDd``A^iI zUy*AQ-Dmaa_Z_QWHu{XuKUb$R%__O@OfUSj!Wyfx1KTPUIX2&GmJ+O+J+)u`f#>D2 z)Lr@p@2!}{-x#m`En<`FKW>Htm0zXX9LZZ4ZcZk39B2g-*a2_?!(ntg*#SU<2mg2 z?a|j*Q9dT^RnjfIyg%o4)hM%AN}2!C5U};ETB8^@l9?uj-1EOZHw~^7gb> zai!lZ5vy3v8&ew2RxenfRKMT#&p(mGE25acr@l$DppeKSz6kT)_9o zMP3`^Gq(!OzFaJ!=NT%axR-shhrqA8qkOyBj5(IgocHEe2Gh0;o!vL@g-zM0Ew)^0 zr>^muxTUh2XZ=p*4A3dw&$fQHgRt*{8m3d*r~OaS_cxyIE5D#>)6`E(SiiUVzV^9f zUmWjQ(0VxF;QGbiEpD=MeYUBbx48Y_`;#B$%`~aGyl6@}pXyg7t;%wK$A&%bxuv<* zJa=>D!u^?==DZT#FxM!yp!s;|N<(2UhxL}iW@$<%XWAt{+w{ce$_&f)xL-W#4D*kR zF8(Nx5nEa*e2UMxMxZQ$LHN|UqAAv|`rfsc)%j|0ziG9UyY9!m@Xo|e!wDPX%D3DR z^kBdFRzq6i=5(JgF$>#1MwJ~p)mHPZ{%*3j&AM2zF4NB2l_}FUG;y(CUuVgi#5(o+ ztHhj(_c>qW7w{c?8Y_Cv@kfR8!sA~#Z#7MSruJa+I{%lyMP*w2)gN@(8gv)^nHnqF z%K76=;*T7rGX6u)by|53B=h{Jlr30!T+1wefzo8&&fRTGq}HWh(SNlfUEozH+mFH@ zmlSF&JrxcG#BW@<&aZKo8t2p073=rOUyqq+DH~(4}Wd=U=JYmnewMx*=j%l}pSF6D?*B{!U8Gk?LPmz6gc6Rtp zm#e>6e8l}6{&@=cy|i>`**|}YQ}+k{AIl}X1G)6_)UOEy-!FUXd4RWS;_i*7zs`01 z@y_t@_kG7@k2#$$+@Z;6{`=F7%h@L{r(c<7Jx${020#CfpMABvWi1Ro6?tWw3Cc|N zKb#`?Pxa9LjgMO7e&+{1Pfyw8cgi(p*6XYid4_#MwRiPN!DWt}9v*Cfp_$vZAH4T$h+hwFtR5N0-jvDOB)z zl(Hx(diVR^ac>uG+g7F@<(pGE@7lL!`Crk$gtvUVGt(i+V^M9zj`U~uitlZ{SFBe5 z_w(y~hIa=l1!Xxx7s)o)+&ns6k#V={8^;J2%eJ4NHZ-`qgggq|_eONXdZFKn-4cyT z3Q7)7e=k-NQ#>`DS!rPg(=nGGWwk|o!b&B2Ym@b_3y5EAYw2ha+7`Y_J7E%1*|bp4LQQ^B zZPXp{3&Jbkn04yExKeWV&XETNJKH7Z-2K?$6?Qo@CHuU?cZUfFpKEEn-c~+YEA!GB z&-sg_mi4o6Y_Uo?b*f_h9EmCJNm@@Q3b`+^br&&B%qq0ie4xsxKl$5=tSBp~7}WT87$LLhoAR4^`z%C=h=)t$^RmXp4w{Dg}v0t=ZgxS38p^}Ci+{(&>2yr)H< zuxqbRkG5yLNB66&BYFq69`%))vN+H*Y4xNJhIS9v)o495o-^e_GrPo|rKfApw|(oK z5-ja_K$EX%R&$Ns1MbdShvo{Md*IC&?`hG!UQ#N3(q2_lt5s52D*E$c^b{US*JwYq zmRt0`GHYAoq!RfR`?8CF&R^@?)>kPer?~jdncF-5Zkl-I%ZoKVE%G0f!@phTS$6bJ zs>G+10Pi4`ZOQD1Hyyg_qpFg)s(^`WE7Pv&Do3x*-F>s5s5x|TKxxFf!gX`fR|$G$ z825dMzA{~WPH1cGiN_H$xEa3BJy^`VeiQ$;Y@xe#b+4OlxvV_xb9c?Y4}k}Ez1U-Y z!}Q38ws-G%^H@zq(u1s5Md|i$Sbc))_mXagYde`#1*%F^4*8Mwo4sT0mw9Pzq#a!Z7jB1+azu0g5 z;@u8)%AY<*+~tu!KQZBZ<)*DGGn$H&bL#{ndBT2{1q%lGh};Z$+jTqU#7`wHF2x^f z8Nb{A*lDlry~{ya)p}!E&{KUgr+lq*TUk>)kGJIXvkSv&J8qBlTQW=UjrP)Yh0xHt*%j0>$%ox1>ty%vVz7`F=TywTyQ+ zOODuuR^2Td8**MA3yaEpk^1%)-@#8wd!I9%T9;rb$X@T0d^B^4G55^<)rU$9-rVt* zTNY>^K2nl9#cAuL*>BD~xR#@pQ@}o>TQ2ies_t*&?$jIm z%%A_P6A}$eDCW8$avZdZDD`#J-J20*UF|D2F8iyJ_4ce<|Jt3EulB#sUegPtj{GRZA6w>tH5#eoAkf3HVNHN48)(mMUlyvFzGCO2C9>%mhZI(v`qm1SdK zFrdadqST_2fW*uqlnN*$I$Szb`~RTbWcO=GSL9Ol)$7xuBQZT60(Np8;eX{LL+Z)@GVyx?)) zoim<>`mTP91jyQ`_ZvA0&%}=&XuJlGyUfso=Q&ucq0z zd6ZjyKX+!{SU0ge>#K+D;S1K;*4yf5D^Bydo8IyKj#2uI1(!eFZM{0Dz*hfwYkvNX zX)iyEUKZo|d~)5vAlC4Zp3?2_BCMyq{27{Ov)8Wna)rmEr4myjqARjK&dT52w>&BG zDA&pz!5d}gsXOo_yQ?TpXm-87Wt-U9TeEh?JhfsRCb!qYa2ZS6}}x=@f^;otyk-c6KMvv}`!yx-sp& z@`SaUYgVk%ZoKx`L~7gqyzgm zT56?kub6VzvSGe%1#Ub>x8p0&{U%RXkFt{Sx$ ztK0XzysGfi>aCmS`HZWVd^ec<<~+qe!QRzR-ZOKu>zq9eC&iMM`aF|-xiAAN(S*M^I~LTc=RKze5tY4|5ubN@^}^GJ2FUVZr~@m`(+ejNXe? z`&uss2`?AF%-dtD&cwApIYaBS@i9@GA9e4~ue@6(`8eR8n|z2wwM%7>(25z$VqHRK zF#l%)wOHr*Zrpc?nSo&{-g7sMh*~O-zD&M1JTqK4T%s;dNJfHfp@LSx>V%6E8X8xX z9*i<{n+NXizxRpn&RDzlZg-e)^tsHf@_#N|o_}fnf~D{0a;oTb z%J6-^xAXJ5^Sgcj{d@o2p5adWX{B2a^c}UUer}qtU(3YTVbRghq4eeR(?G`lPK|?) zYb;eB6ma%Ah#594XqdpzdY`{b!+nOnyX&MyToOWtJsllcJsllI?=<)dc?|`1JGw2{ zd>x#QaJ~4WcyjvV8q0&KbDo@D(GbiuPoPkLp2)?HJZHr| z3H^eV`dk&B2Tt=OZD0PmpxnLx{^i3Pu8Chhw5~D2NJ@tH6sPT?9c@ir+Ut(?tyXj` z7JOS5+q=bBM78YXt}`2o^xEfiY};w|=l88YU4BzU*;20`m>_iJuFG;`1AXU6gO!UumQtCGd`Q7&9@h0!yoqH};7!~`z>E5<7F!cVpgstXZ4R74pIN?x$XTI}p8{0hB z%U2yuHC~tOJZZPSNA0uO!U=An@};bu$EP0l@H+KpmyFE2DUbJla&TF=BS?W$>io$C zLf5ZGm?%CFWn6Eh!>9d=XD;tI)(-PEs&CQ?y1Y!*xQXgl9^YWo|FZUSiLFXg;>jty zI%Ifv`vlzX4Vb5-ziEo>L=N#;ihe<7V%|llI9++dYq-Zv@?gLoT?xYrQ#Xjd6*5a$ z-12*)=b^Nm#EdiYw`7!A_vk(3-E%T^kLttRJuU5Ka?hFi;9y?c*VfaI9vr)-Yq`->mDA#QYwgL_x#AzDy5y$pZQ=eAb--Lm z?@@Hyu9XYk`|$B;%@R6waO&qu)tdJAs(%hF{57#XgI^u%kJbwdatOjDH1BY}{3LMxECm<2V{vWOTH{U8~#fz2J*UtPum2JXu&-aW>a)hsGUHhwrY$@I= zmWwQIo%AMX)1jKnj!f5X?PXP|SadL=<1)1(tqYav&YRcN zZ+bQEBCK!T6Ci6>`xn=Gbdu>0xww4 z@|&q>A$s;(&E+b`g)3&YPcP{?achIUWdCuKSWZb!|IEb4+qc~8{j@Rjn2PSDDJqh$Qn^B7GNrtasRzhr>}*?_sUxkf%ENytimOceH|raL3ypJ2Hg@C` zCX25%u{SQ0RoJbw<$Xa+<5RV5m(rdd7nwHS-PqoespM+DwbQ<(0gsFCIh>R@wbL!# z?eWo*^$}sYf@=;{buYZ&79MkVUZ#ZE0k3+8x2adGf>*rG*_U}L>)eS`f-VL34}H3M z%-Dt{UybFqC$ss!lMhuc6ekt1vRu8J9^koSEysuBChtxjIVzIJy7}_NWf{jd?Kj$F zBHYm?qi}A~4F}8B4ZX!PMU%L+ePdT|yBc|JVMp)v&@J;^r&dP3H!wBtIbRcJ`);;F za>Jka$3Dq#=d(x#GzBvdKS)>WHyz89+Ard|b?NpEJ)!=W^u^Q; z9G`wJ^NjS%dih;O^L}PLpK;y)fSkwTm6sTL?MuOxIYay`nf zwdeFW@wdW!;qPYN6%%E5r@T2PC%OGW zn55VPws|+z9v&@w^K|B0Bb}v=uiidLTi!GM!BU}jkEWNOc;L3bWp`>uLK>6NnnMca zt6FMpZs;GDv`|R&ICT0=#ZI2|mpcyaxxb)AQ1aSkE~(C<{%O1?3)DV8zR0+KL$c2? z3$-^hQcit4QK9BL%_+NnM7kE~9;(Rsb#{VlFNeCwxwWZM&Xto)(xojtev%)KkR zd2B5XoUK;b6ME?TsRF~($3M2hSH3 z@0Yb#cV^u-{jot^TwC==#&@-iv-OLL8)oYleooEXcj&BR9$(>S1#^DG$MI7?Ci-|< z9CEp{``JH6&ibQHe@y%TxE;Fh^)nol*kgl;qhsseNFY-9>+`6?(V5Sy8q;l@;~h6|5KXcQe*#gfA#*4vareh7C)thN{9UTN6!tn-E*_X^%E zVZC2}GH2~c{Cw=%yUcU@QIC{9G7(VAG*v@^!r|e)f5iF<}FGF3)uATzv6FiT6n~+ zWs;Pe`PyZVjsDBkI~xgdnQyt6cT25k|EwFUjy>8E#Qa6cXW_y;Q?XC&wI>hW)#;8j z-TLd6V|~(sg{oKHt7?A9?gb~$<#vG-`Htn5R`cLJpi&50g39Pq$3V9t9xhC({4`$}PSDN3bt@={R zfmWBEq^2w=b}*Q?k7cvf)O%G?yL7!2U9Vhum$7hy_r}XNtgpy_+&s_Y+OO5>ciw;I zzx4ad7qP_pCHosiq`JPCdoOYkGAq_)%>T4avgul!`S0X^2Y2k-t+!Bj;ssI9sS7L0 zH~G1@ojfCRdEdn?k21ep+h@MettrdEc-Gkxca3=piuVo)MoxK^T~ymF;{8gu0X@#(~0bPFHff36}_d*ShP#Q zazmBtCHZA{SFL%Hf9c76pBt?{oee?it%6GF4&_%h3&qmZrYAeoe1+SM zD<@`iHD{%4{GDxQz0|&ZcK5wgW?PqU_P=Fhw0pt?51Ffxuk!m<*sso*|Co>cic83K z{iP0*9>{em)~bBnY0BCfw>wlwbW(tdp{LMfRYTT9*Tfe#WiFRytZ}vO_FiWx%2s?R zW{F_X$^*t9)VuyvGXD?I*`+QLlH7WDUwMJXngiz_igW#usA~$iw3n^hG8H*^Spp2lii%zAkePiwQx zIWhJ>6Fp2G@?_leJ$ZEI>o>lBu4e>{cg|dzz&l4pvm=Z9Yxax>H@jvquh&e{+q2}r zd5gzqW;R&L7R{QoWXc6`zkR{yE(xe3#3pGAC6xcAMVVe$-)$rHplmow=b{nzh4 zIw@jN$I=g6hZgO*cBu328RxDDwP~9pvIU-HwzMwdm65gGIHUglvXmr^nF@PX{&Q?e z{aJhY^4sWC)|8yBT`Pq3qKc|k1`Fn0Qdqm%|F&%4!@DUD>m85v?0LB1)_eZomj_Q7 zD5g!gG+lkpDlyf$in_s;w`;m09C^Cfrv15es8OT)-~W!O9K6d7nC~6Wdc`$IVD*Za z?98byiPOV3Ii8C!z30(pT-ca#GF?oq zz| zae~o>mZ~+bIgdldyW?DQ#H}^TwUgA(Eoo|);~b;Z=`FgkyN6G+EWpP=` z55;$j&guRvBDi24N73S<%g24~&6)4C?AX~e`}9uEVq*=ZNgY~A9x;su`*)~%DlO~S z;i0jELtJ|Y%XFmAvGG5HU#9Dn%U$~ETv zYccW2=_}`P|1jK{;H|N+__Rmvnx)X zx*Tz7>AOz0EneB);qHdJ_RKSt+;wkl$87(t%rgr${C?%^J#{}{bJ1zbzpA0nt3F+c z7WpVwsO^*~`(Nc_oa-L{J@dKD*YV~(epbdRU1)mzxmwH9<)_}IIYmmFpFKC<%sO4; z(Gukulc#59TKK7JFSmc!6SP+Ja+~N!#*dD!H5{>1Ja*{qbiSe;q5jS#V#eO>=8IGd zgI1(ocRS2#A;5R^iiK++SN9&#xx#a=X(`Op)D9Qd=PvI1RMntn`&7`CPvg+8?X_1Y z^sfny*ZP%bCl548a_Vl|Y$Bf!WhZ8l-ndprp|$pgO}pSc zCDw%p-!Iu0QF398dgt_6vbwE&l`~6Uo|fk7t6MAe@rm`zeMhag8vVZ@ASxMB_r&_E zzl6~_&9jyto;_=Qxcbw>`>XD5pKB(3P2t?}aJvt$%Ef9#H{6t85?M9zhnL2Y>DH>I zTg8{X=WNQI^;&P8rj}Bi`wH_@v~R&nDplWPj_X0sDzf_R*51_=}m>6 znO979S(PZRwQYT~dELh~(~qC-^1PlUWGT4m_KO$uCU;JMcj(wW{T8Y2_701)(f-GS zXZ4=eVfK#MeMU=Y+3Gddr=-a&z7igjrncniz7D_F`MIs<5`T3Z+866`M|jEx__?V47uU1TcP$cRWf6}~dxk{ZnR z=i@nz)N328R%BhjE-GksLu&ob@K4M3iN1cvar>Y7x&ZY{C%>OkQG5Kw>1v>(+}1NP z9xGJ@#-SD0oo*jOComqal|Mcyt-u>m1`_uO9lVh6y_U*fSPTHT(DEVY(zkl)Z&7-4n z@zU@2uIw%|_?C0`$zoMG+4EP#{I_p6tN}MG;32FLzZa2ZSnPhg21rQL)~4n&#hOUT-woGqw@S+<0nUz|971Xt+ZOGc zvYzjh_vxLLJ^!y9O?Y-V_~PWCxF3>*-1^r(z1VZ-eca5@<-bz{pY4yjkyW!@+nbMd zt5vl2;q8Z=eklIo5SYgz&GGLDtHb&Ehk|c?PXDmw+aJq6P4m1t-%0*Z-TR-5A-}=s z7yAdFyBrC3B|7d2YE(+(l&))ExaC}+8B@^m-x5CSiu;>tMNY}HRZ57J^fg|xW}D1W zu_@V$OY5%Yj9E;_Iee_6p3lhB;d+t1s^+WajEgVrf->b7+&l9iDmr%R+D(7#HiS>( zcg~#pR`B*=gViaynWA6cx8B;d{?M9LLFJ*DOKta5X~mqMyKwdTyZn=KC2~}4&8I&4 z@Z<8~g!Rr*)4lyl%`DqHF1`$4{~Ev;XTj5dLHObIBcIM1WX@4*Vc9?N!FC2+Asg#- znJ}l7c1j0}h5qm{s{Z(EvG%0oveNy>Co4R(&}rPX#xnO4zX_wTnpXu=e7jL0Q_iiv z5AIBx1?yV>+4I+55@p`JpyeK;NYJUAq#Qr4XL3yc3~MAEbuWbcwAqueW`|p_ox^@@ z*3Ykk4Cc#~*9uMRKgbkp;U~n`x!r`7J9tA!oQbBcU6xMdA#b~b-qU7zPn+pIEqdA& znbf2b$4lE*OBbK05{z3k?c}U;^?ok?yZe@WYdFU8Y3^=D!^;gTE+}^JU3X-DasGoi zb4H(Hzh?4-cUKu-yC=9xeOUj&oO#1+2JaU;t9Yb38mG!8Z&-ERl&N=aUUFpD^K&m$ z=UwkPaI2Z6AZ&f|T@Dl3t7Q>H8oilgYqx-E5Vo?qMnAb~gE9Ml;TKv3=XXWdeSBft!nK!%X^Ncgi`wTyPnZyz8 zwqWYYIb42R_L*9%8`jh*Mq5VyeJv!D{{H9g%tvy+>YL2YdPhpTcABLAZ=K9`A=f2R z)0SQ4?cxm!50~;x+i_`GrQPf_F1-uAMyzptR!iSCFD^(-KWX{-j{Cb-w(on6H9hd% zmUY`uWA!%KJu6$BPW4xQT9A3|@_{m;7@<8M*>?Y%{ldzzMWKGLiO1~R3-*!A>yx>x zf-Yoka1hS4J8$wpY-Yi}WCP{TMG|I;OAH7rWk0XEeg=v0XZqf3sxlb&_Crf@aySc^3U2n_ZxEbNOtJf=4zNru?oAg$u z&6_3X@~7LySGNW3__AQyEt%aGlLeQT)U};0m^ky$tAl2KhED!Q=RGw%Gp28tqhZU~ zea!PgRZ(@{-Vc#CXJrPMF_+9f7;XDeO}_c*ACH69-ww;{eO@nfN@h2|guW(+jKG)k zQ>rwloS7aOCAvaFV!ist4Hjh+oLNuX9o-br`E?&(@Xx<*R=)N$V&3=buz=GI{;yYd z@-(tsOeqe(9aK;moN4OV{{66s`2NWyY@Sw!AN%iG6QyomD?H7^!t>BcA-_z4^_N>7 z*uOUXxjA#=TD|J;JKq`JI4RY2A#C5T^UfnDfDj zfUor`Z+G8s+aj3$z^8duIB%Am`HD&tXV%?E6^lMM`fYbSntmr!YlqvLCl!AbRDve# zss0oB?%l;*{)OMY*8Yxt_wMR0_Z_?aU)vqIyL!vJ=R1G^^dBJz7wbk6^ z>#yz#FaB=z>RtP$haWpu-^(gqx{dkpgz`3GX=zBPZK$C*Acs?YgpVUonp z=-Pj4%KmEHnZPGee5Pji-4ol_IsM!guxT#)=gpJf{z*DH?SI{2g>3e>XUw9Xulg-x z{QMW&oeJ|Q(_{*4xy;KZZMyeVnR(~RlVRr@pWkJ#IbtG2x{YHw5J+a-TZ zvxq;$x@GCK6=JgKlDO;VnZ>c6HTwGFt^K8LRX?uMeYnr$yF>dn z-hdl%S$W3NUiVsxxT0mcR`2|xwy$pTy-Yzpv$9#KSHihE&pcBK-nEm3PjXRQlecdz z$6B3r7Z&gx)@8c%E28Z*?*hrTODSwtJntQam#NKt=bhH%a*p%S<>UhGmv8pU_I>X? z^xHbN?{-jub#yhCorBVz+S#W+I@UgM*4%MeVrQ`YPHp2)iM1)7X-|}Yo%nO+g!|Wt z{i$x>UMrWUyVla+7tZ#d zdU^17!p75u@l}kex8{f*w*36neO1oEoC&jYF1H`&PpOI3UTbi0VoF2pse+1|Pk-<< zFK6G-UG1i@$Z5^4p4xy_(=-a?oVR~lGT~0j^PH&Mt_ zGhY@>zgPL0Tf|ImVN6qbm$u8HGpg1Li)7?3ua;f&w8ZHg>xLr6sax_he)cxqvQTl{ z=Jeul)PmXTri(Lpzuew%e(mwZJ`293>L<1@OOoBybKqL~l-J$8pUOn`y<7eK(qE6~ z1}8*f-5zG7&pmC+)Gv4GlqCDn874Eg&iS;eXUg+si@%!aKI{#4GCZcT=6T>>fi)NW z`X6#tFi96Ibvvrn+?C2Ex_NELj?NCXXxUWr+~O16t{?87l89L3HsPJ&h8frX_KMVe z&YNMv*8kONpDELQyICur*5*C>Fk|+W4?AYte6-g5p=bZz^WgU_qW)j3_SrMpZq?0;FesYiTh(Ym)Eu#oi(>$2o;bK9zbG}h zAQN&%%~lJ}3gPEd-`|{+ZX=bPY@nc^Agu67(^*KE&0|9^qw1zYT|H-}o~H-JPE4{k ze&jLPEcenf^~~8@cr#}&yQ%UnR>ARDA@h>lhPP_FU*6k&clX`juky;xIk`XXGdH%< zWq$d6t^Lpc_y3>&eZTtu?)17(?@p&PCaA_udSJLi2y2VurKZzl0QdWWQK{%>R1 z&zx`M;;i{+i%j3a_go*Ug--N*{=MfPbKIYW9Q7)PweNrY@O|YEcDa8O+v|lM&aeC@F843ApKy`OEK|-}zx1$9sB~9{yfgp0S|H~E-d0y{bHcP9ijMur-~_`GeYyAnq7h9YLyR< zeUgrqta6>>>UHSmp2)+8W#pcDS@7>wIyXImUGKqBC(isPbJmz6)-KN_^u#V6FV=m@ zJH4Y~bAz{J%(25oa(NGr*R{Q>Sn+&eqoldfl_So^{ETu@EHR3Yyx8)mK2W&#?BMN( zx^de!U0Gf6o=-5mdxgPGQ>JxO9|&ZB5?J^6p`YA4p~Af#xk}r*Zzw)uv%CNDVDFBT z&9e#g42QhPnj`i&)F<-P>ffW#QW8&X><_n0aBV+_CFEzUJ2yLOv|sYr8jk z8@qYQH>Hqvz7_3P9DI8D*$yp}>*W^;3eA6h?A*P3+X5=`3xdB-yXV(3s~|l(|M;`L z56|`G?mf7+w%U2_ZEI(j^~!?gKBjqj;mMx8FLGb=zI}V+(%!Ab&%=@~?=;*o*(FZ8 z*Zr)upwu5TYv*p2uPZ7|1QZpSkE*P_-S^;?2amwXt_>^Q_{vr)M_>InBW-1)oY!1; zrCS}6s^2)~c__(US5k}TOPsm?TvD-$KzRF0x5ma5e*D6}E*@xG;m0)lmf&QaZOo1e zsZzJv@>;C_1e+R`F3)=<_EU1DdpEz^<6CNHpPY92?ykIQ<-~;5%lB^(+nnMx*=N?p zhy}`mk7IXe!)KtK8cJ z+PXKTo!`^-~Pcq12lx_9BL>AvYraR+LjY-n42;;i`-QP(dK721rUUV=>Df_HFB zER=8BVJ1|}wD?N=_SiP{hZat!t9!GoCe=So_%lJOn{UfeHsLLDQs)+=IknX+4|wz~ z#l&pEOPwRGEgYN|=V-eab6&Jrq|WEcxzf^q(g%-_kG)GOf3!_*d-?i$&8mE<%399T z$*Pj<6Ao3*@A+Lg;m4y1Jo8)6Ph7Zp)$5DG$~n1aUzqOYZFAmLxj&1w#Q1f;Onlq< z!;g*JJ~A9l(u>=l<<{2o;_npq4XlZA?>3()omAy>tl6St!v+cdsyjAC1ruCWbg8t> z?oHYA)1gM;)bG9xFNJq)i@#hd_MEdq=HatD>6xERR(lqEbkBaXf0|~@N0&KAKKoDJ z)bx#a^UUs0*H3(tFB$Z4O1gjeYxFAP!=)*Po$V4H2>92jiamf-kKU zJtem*OkSoyVr$mcp7_J*DSxc&v>)Uv=xmQQNG|_&<-o+-(NQ;C zqpCD~T^1?7xqF@|F?laf`olRr=L?_cT)QOnTVtKlti%b@zc2k;_(P+DE4Z)c{N@z> z4+f_+ABgPHcx+zr(^qca(ZkzszPg|IVz*6AfBSpm!>X4ni_9)7U-5gqAW}xs-{9or z3NMF8|Ah4YlDl+`+<3VY?=3j@vTcW7+xmmXet$$dQ+L}H%e?NCIQm*rX8Om}ITJpz z|KJL5d|LPEot0F~>sPN|btpA1WjR$L#=f#`!m*Dsp@NdYdx&L$-@+|6!vPI;A8V&Es)QgwZitKQrR%fqZ!89qt6e#%Si*eB`NdUGe7$yj)M zR*_R)l%M4BRVTFHUtvtW?wGVN&bZg=;GDqIJ#P}vB`x{>=w`Q5VX0oDoT*n#nrNoI zfLQEq&QsjSb;BH&W$etm{^o-2m6$m}^WII_JV#|)sfWMJvt@I2*7x;fd}M4{rX+jy z%DP)G-CoEonz>>7iYvdmx7-hT-yOKboTY!^OuzpHU#`D=pSxCox%1C_+nI5>E1Ew% zFDZ*T@3U{g*$X}`LhYt|olRdHb2718AbWFDy%b~flF1TV*FBqX_3y<^cRapHp9{_Y zb8u04=|#KwJv=L`W@oOqUXk*v`Px63dEIj-zmWAc@0ATq3lEtWyClnKLUYhEzJUK8 zZ+oxD?}^;@VX>tD{Kw~WD=rH<^w=)hz2Iw`gyP(iz2eF-`gt9@43jZa3*Y_ryeLh#wa&H&=jjgYCoPD%6 z?yW$ouhR_E6-RGwi8@y)W;`XcZ&UBt(z7SF%RT!x=W2~@%(j5wKvVzuRzGYnRodnm z@Az)?#{BA;IIE3kB+gXlFSmN6uT|6d>{`rX&XY^c%ugGy?_Xpy|7TF)-g(_~=bi}I zxAn;Gh5EuAQ_tM|WprV#%)9F)e(`)tnROZ$~4PCq;D9eU4Xxh6|C?CAX4&!>yc(?93d zAvO1~a*VN<*w0534i{(6dS0Sowl}&fK=WK>(-nyS(Enk}zK?883c)+3A0> zCOu1*eZF<#W7DB6^S*zYd)J*K#@l3e8Dp@&T6n=to;}lLE=nsoiurt(J${PSxMxdv zn{vpbw_YAMcQ<{r)_6a2;fsPRS`*4Yf0Jq6ERnj?g4N9}pqV>-W50RHqB(kZ*4?_# z)}Fs2$M^eL!~HMggFoaJd9fc&^iEydeSb@`)PAo|?s}8d!rx@qJUX*z?aY0PPcIEU zwq@rveNB}pAG3oK&uT?-IyXmIu=O)GNPGSG%Qk(ldCcp8=ZbbA#(hc$!ZROd{wlwCIB1dY`V7AH)tRwg#phX0 zxa?NC5@7pSBxKowEO+OxXI^DV&j|f5R1suwJML=8`HhV`mnY2Qtz7-w*npAym&dc# z*j{ypqKdk?J1$BaJD&N>^mgjSKTgi&!CZM+Oa6=KWR;p;-N6yJN1t`yyJcET+0l1R z-%UziFz15U_Fc2H?yPGR(OJ3cyJUn5#}<`4vvZf6jKATrc(Q%A*4o1537Qupj+@L_ zcUmp#)bd)N3#n^YPhXnw^W&bUy2lr8S~(@tP+zG?Y4Ih=2X*31Og8Nm-Sx+EZq>@g zZTQ+T{e_>=+1wPp|G@!dv*KVfwx{WuiNsi^*C49xG6nul1{sLkq9s&ZX#z?c2v z3(K0fpShA9zVG|Yb7$$4>Z64b{-uj;SaZb_#1f6BG?huu50{qG?F(&PTZ3kr^)Jg^zsW;|DC@rPWZ;1x44rWSgbwo;>pj8 zC$C)`uzJeIyi4ouxZ1r@t$(*oX6HkhmA6^>4`ml{nniq;zQCFPSZ5Bi;*Fl}4b#$Y z%iLa2^i1UrYtz$5iOL|ccy&2X|?H%X2r#g?`=iyJ~cUCrn7Q~Cd2lamYF7BV^}(u zeUELp9-!&$xN-I?7Alh`m20?1o;Lg!?|$iPuh)ms#&qj%oN>w&Y$lW7OUzC9Bo%q?Z_Yt#g=h zb$8KrE}gRY#-n@Q2`^b&^h5PemrvU4XKEVznYvGig)i)T)LO@V=Y2z5&`Gxw;UB#V zZh5+Lt(uqFc%vauC-!(Jqj-EYJEX*71ld7R6+cmpb z)9sQ7yG&OU8H=@Oxt{;52<^1lPJ&8x>-qT#{BDtTz z|C0$HrrR> zr&|_bQ4z<*RX$ICy7>3UC)wQ+x3$h)zGV}W>a?3D!#vcZ4VC}o#$7yB>{K_;`{3`X zpVXeMl5gi)-~D;P)JJOig$p`%HYQmVPU932XXTpq@a~PNClhBo?qjkux~a0}!4?;` zIU9I>Fl$e=Omx+umua@BHKcGS`%ff37-U6!g-oO}?bUEAG1Mhoyz~Gnzjx3imiO*Rj9dK$&`JFBISivIU~QxX1}lZBn5Ma_ay=%>fEvLy3P=Z@sr zE=R)m_7w-7soHvC_6hBUu}>GUmur4`qUOM#p}BYVj4;lYqOA@Kb!~U#XZ-K3tGQqv z^|ngY+c2{B)=cxy@4i3Vdvm&d?ITTw+#ltEc*w>nW`bVF{e(lHANq_eB+&)^--eax2gS-6n4)>n#r*`=Fw5Q&YKge7W zaExE&Pr$*W5>r1YbK0j(c$Ai=Fx$uI%J-#4oTWBXxAr=>z1!g#d{uUL=-W$dQLJw2 z&S%+9Z@bgW6MC^Nu7!q@%!h=33?03P5Q8*W&RWA$%z3~{8DMR zwgzoeez;snE^)?uj!a{RT?SuVv^%VC+}q^$)=MpD$=xF(Japbd?&$fG zQGM|brpxR|^zx#zehiNSQ%JOl{eSa+7dmV@6qmk^OW0@WsbLY^>>Gx&s(tO#r>kp)h)s@{*U^3 z#6?~|SmNs}dufY;ze&`C3NHU*o91-MY2uIb4Rehbt8ZnJxm5FVOW89=^TpD6E9->j zJ^ms5@61P=xCtMWj>mtP)H1zQ`Twbp=6~ioALclm$*%G5aMbj?p8PDtpdepOIo?+FyE^LjwW1n{xEC1@e`suR zkWsBU^HF}ITE65Jx3Kk@xv3E`7fsfituX%fU255^b4$KOPtktmXXWl#lv}R5XomgV z@OkBbLT1nG6VV3B$Da*C&V7%$D@qpsK#U zU4;Gft2OgfHm1A&_B#7E=f>FsE0b6*NuKMOrpvgs#WbWq^{|q>X27}o+6#{59KV{| zY-1!b_vAXET+Pcy?_Pfq;rlf6oZd?#?@PiLe{Nn7Ao~5rv*yfWnx7Z*R-0W`;F3Rl z=f%9Ui>_UN@p4P%C8H0!f z+ntNYT{cS!^Da)(6m|7pT$K8Z`}nP30}G$XDeSQ&CE+f~^Ns7Db)9mZ8Eh(QYRTN49=fBZ+kgQ@vGGb=j_rt{Ogla zjB)0!nK~yW7vAJJdy4CHL}sy(-`a|*dl!Yyd~VX_FfeMrl-D(D)vdYn1K;YYD@-i9 zlX!7kpnp97>=%dIX0`1wzm%i*_obAl_Ffa~W;eAk>HbF9){2yvF5MZE@7M8N{lc7= zQ^k1QKhZCkFZBCkhh)C1U*=cKnEpNM+wYuIa&~fYhfP;1vwFbp*DOEQCC>;ikK$Xt z{!F4BujQOVo>G7AOS@Pt=Tu7Q_MYV~2;)nCzG1_Z4>A1(7fl`p24xC{EtqJxZrfuo zi7zjYY?wMFy64sTjGbOiK8I3;wl#Xbh~DJw^#A_`7Us&?s|-BuCpnw^7HZ=@cHeh( zs7ai&*WBywYHG~F$1`7Y2S>~~Jn8U`6)!E$z1LrHZH}|;TiN45m)7RZT>e0i|8JAc zuOg@Y1`g{_JzSK&VNb(;rIz{5Up(wg4s~!mt5JIQb^6K_`MVa}T6Ruh-9PRawYD9z z`95pcG3DTlPmO6zVZRP&F@?xyC@#3lev2dGEps+U#`i`(rhPA%vpFN4Gr#71@uiX1 z>FI=hGN)|b*+04Z*3nB>W$Mx3Y9{f?>}GatmT^fB|ARJz)tIRlUtnWkNae>@W!e*0 zWtQX@rNS;xan8@lNlh-v%+G_2_xDc9_7`>(X}h24JzcN6AxQ6@V`FZ1OtWF*8bifi zLlptvYZ58AFZF@lBv}BAiRFc$1~eDPIUTmI_CWEIpybO&fmYU zmVHB)yP3?Hs2Q6L@*k_^-8}JlTdTEM(T?oJ9o4Em5BEjtMnr7+(6DgF^=m<#ZBunu zDy>(v&irBcBzG>y`o)irtUj$GxUer(YKFsnmGh5HuIWpB%6ls7yio7EXMVRySMWy9 zaGw6ViMK9pR)2kuk5}?JZ}=aFjD@%MHTJO2YM0+u`C2z$#bx%Ji*cNL&zAm(+ah^Q zFENdeIg!WfY52BTeuiLa)+ zFU*kaZEfe9wjt-!8Uvlb;j*$jR!F#BJ!rAcaz$cWVy(w*p4RI@pA7DaX9eu#T^ky! zVcRh2a(#$R#?g@L2aDs(XQ`x0Ts69&<)_@1xjp`n&Vq6;Uj5yNmq%V!`Z&GW@_QGb z!I|CD?@RQ^{(WgA_M+M9%WTQoNGu>ABp_DdyA7Rwr5VLf8d?9bCt`PR(D@quOXZM>SdfzvqthVel6i+4PICE zH3Sd-oAdNgJ}5cy?5g?sh>?LI7w-+tR>UVK=O7=Y&;5e!+ol zrt3bcUR+~n*lVbwDs)ZYM+#<2Iu%|w<>R?+8{3?|oIdmBjP3b3w&i|xwZHiuD89Q{ zP;m6noYqR|@WQiha@Te5Y?yf1SK9TC)*!f|XmEWFSK0<=8B9=93e)0TdPOxbr3*HHHXOU1Uump(D`ft+s28T|4u4;C_`?^Tv}Xna z#}S*Q>gU5WAPILX*edYBg>s_FfViT(X{hAz<;A__Vb2ca_iH?EL)s`t72PW<8ZEY<(-WM*WLKO=ZF;UZ^^Dm2>UE1rel+$QJ0aulI8HHWg!!< zPnc`+N9NNuzn1G43m;ugozxL<+=$m_q5mZDLaEoKZF{0Cj|Z$c9ee4vQtzXXoC|`7 zh0AA@ZP@ndPPM=DvC6}u_l2WYY|B?jZhZD|x$eEH)6$$5)vC5!cgio6trN*@OP_9F z+}>!ww)B(sY~Ow7^>2NX?MZHW`0{F>-XBo0BPs5F z8J(n)cQ&8d@FU*Rsvyv?YgMyhOnJazlf$0WPrv(+cWr~mpQj1O_A1r3MSlMz+`MtI zz3ed?Tfg==qs7m?CSK6;&weG_JNb*Lr}5&-CAV0u**0C0-f`3ZTcCpChLGQlcNCAE zpLl=e+=Um8p4k4%vdenw`xA2yzDoKcvh=Z!?bY2!6i&@}*LDL58XFxg&aioWK$prN5jPh-=T15F)G zrcyaQij2-dNl#AloZi8ww|n+oO~?AK{Z2x;!k&LBzPd}k7g^Hg^d~a_b=BH$O}DrK-b+-!A5oQhDEa8ER`D0E9DGR z=B^ay$$gs9{$UwMtz=iIk>MGuwK?qF#i!qSS4r7O+dQmx>QvFqoV2d%(Y@QHa`~U$ zHr%M{yE%_@>$$1l-InlpKQAydTEj6nVak+c*UEm{+0QOJd5B@1flkbvi!-HW?=Ztb2((N{X z+UvMaOC(0*9eh`HsCRNke9)@1C#SeBGTY%ZYsrMLz){JiMpRHeTC*%C#1H~8BUpVxFR zGyHp5_K3t>|9N>6E;< z@d|$W@v404P2qJ6oj+2SRj2*>I{TgZ=ileIzh_vN6zH!0%OvJfL8P;fyF_j2i}2!@ z;|y%C4VKJFlr{Cpkhqxmz{}REAoTFos+i*|+N7{$m_=^fxxzTLi^6ntx1~p;PV~7Uq27E6+DS!YU}&!9QiWZuWnJo zP0P^d+N&(Ywy!OZk?pOjzHqVENnx?J(y6&Cp0Z4`Ue>W|bs+Qij}Fe44zL9Ah1T}u5HU?HlC5%@#cC(8+&%7BCpM% zIc-}Sd7kmw9Gla~dM5PL60J8s-(`2d+PI$8HEd~EWa!lXiGJ5MOH{4SaFo@^cGLZC z^YDp8ThhzJwKuPxz8E$!W!AUtL1z3N)24|R&HHuqf|#|Gr()@)yW1phX{RdB><_!} z!ElxK(XHV^W`(QfpVHCM-G9bUSMagX*WmDufEEe$$y}GCw)*H@)t>eL`sp?I{=dp! z{m~&T^ka-(=53zXji(g#@`g}Gy zXuh}o8|PVhjSZT?E-gh{&hQ_#fBfWuTGakUx-H9h=lyp4ex>jCLYrV_y-9-0TH_w* zgYuusCXqD~%nS@xZ20mYkwc20{t+nuIS2W`v)=u1VRw;#YMnefs|Bb0YQE*>Dt)Mb z!L%^mt-Oj{yB2zANZp<{FVVPd>*>66?^+hyefhsazxK`QZyIx^6|bs&yZ_4NdG~H| z2zp$ZZe5)I?(aME`*&vU|Nr~3KZE$ky^W437H$@9mdAKhCcHehLvAyhTERkT@vX%t z9c1Pg`A8XjjO6!wRNQykc1P1{8B6Bc6A~UtUitMGyR&};o!@s!ZT;CTW~_aZeM-*P zSCzarN|4z4XTh}CkJ9u0o)BADl=|)AlOt1eoGtUN%{r++Wvcv%n;KT`mBD?_S7h^i z{PMxbdC`M#)n>)LvmT$cyp<&3U*53CTg@q2pfO^y7h9rVvy6^*;{OPtuc{j#3Eg_A zc8hnVm($JFMkzb)uo)*sOk1~w)7U)6R^auboe>{m_rCfO*QfGmhaXQje{SS;Z^h%h z!txK3+d6A!@aITgyuz-3!r|@0(*BDEuQOUklS<4v?Zww2FWbF%| zooA63y1LfU`w7SON}ZC7Rr{FdMrF5XZB+_BDb^Vfq`S8cCb*QO>PJd&$p^kwUpxuOrVBDI85b!Prx zJFT*@(|SktqNY^g?^}L`&3^CjeRi&PvF(TJvO-I*icNgcJuU2~EN{p<>nmouPA+YU zE1cV3w3zEH_rCJ_(rTlgrEB+o-*VUW_xipl`UyyvjHOx@4+=%qtJPuq(MJ0+rbt0+0C&nqNt;*oGw;?{?0r>R`Y-)7KYZ_4Z2)^&i>2%Cxtj}T{k!YXp(KHF}C^Jd=tmr6LEbA%lJ@8r!X zRj>5piSUQ}1wS-Z)x4u$ESCEFd9k#`Cu6o_M&}DVp1Ic_ci<_nJNjqd)ZFjQci(Ni z`|ji2cb(VYU6yU~JW~DtsAb=0nfZU3XM0>uYBFnY{12{QXNo%huVrRnV8nYE4vFB!N|y}6{cajFXC_-NB8Nxta7J?^ACkL zEDi9QIz8O})TVSsM~+9QOU^I#|31gg*uK8@C)WeLc`q|um$&KhZa2AeEwJyL)}27J zRmyD@qPwoDEL_ZED^*o0;n8-n$&UALqSKD$i4N|}R#(p@n7(`5*rv#Pm}lzhLwX$j ziiYp2em>b0U2>*e?fX*QNwb@451(AL<;{~nS6r-=WBt#tEqB+*yHccMc`QJzcW;7* z|4z$;3%J$uEtC4TNmMOqJwvF|9Wmsn|hbVD=8}G_w_y;5{lo(x%MAJuGWv&dL7g1Z(Eq7LMDuLr>(Z0S-4)8zY0ZLbhw!4-Ai8WmS`S z^#8u8sA1*;-nTp_KU*)>oBM2y~H3+5I-epX6qJ_(Y;=(dXsTg(?#^?^W!* zBAdT7=Us4QRNM*IECJ`@FF7i$A)en4q-SVO?Jcp5aM~h%LZ>5Jb7{&dO`E+F;!f>5 z>7yTbRQ-wH-UUs!Rz8~Y{MWvwtzkNoy$er#yt6+p<>bEk|L0`=JGI*4{8P1@*$b7U ztW>^9nZNMQT58{`xFp3RPV(m$fy_NVo7pz?$xrpRsI`;@y80#0Xp4POz2cwP{q~7(|Mgvv%d%TorhZ^g*#s-c zccm^IAqV>}23g*eICwqR@pr?oT&^|IH{6+@X2iVdtar&x68D{dQRdL;d2c62TrIH< zu+fx+bhoxwH!;3qVqnCcYdCIJSuDF1(Nx#iiN*h&g}z^pewM=I`>n4sO48e7}OcOnOP%`Ue?STaCNo z|2&9)c>keB#XGgkU+d1ixl{da=kq`BD&NoVulp%_Ah2fbLxn2KxQ7-;Kdx#ss8X)* zeOoK#r!0I>vh>CEfcDKY&rM!PWE^4SDcWSRpF zahc;Q+W1s2G@_jcQd8t-N4{jzp5^?ogzdT!oJ>61VEwAq$GE&NY<#)s`SD|^J~s?6f2&E9HhOlaP z_x{w@+Nm9PsgQfKRo?2SeD}iH>K8nAu5q!v{L#?v;zv!pg1f5cw@igdX3i9(o12%(o3WSN_=_s zxL7lT+m}4Ld9^fT?c1$OT_-QxSvGZJi~F|XR~r*o>9@`OxOLVNp^tNo&R*DeFWW@A zZ|&up=n~Hb*Z0K#V#u`Fio+#VLhlu6Ir>kWKlR`EaINTT5;DjBTeFdv`gm zvNtvSHSIi)=$g(>yKXB*srdb`t=CU=)UUi0yYkjE&;M&4-xGT0vXyD2!@PnkF?x?< zrWiljzUENG!;PzY)O#0Y|Jr_;?dHB++@7oZg0`&Mqt)@swKcL+?%SpO zZwh};Njhcu35u%CQZrraX|?szxs3JxXPRvpm@bO&g|5?|P|@-2-n#pOySjfUy*ef) zC^y@^Hrko9hTTckr6VJI$x@bFIp6)NVhj6AZCx_tZr2_A#?F{F>zdUDm5J?zEe@i8 z_>XX1wsZe*w)|kd%jw#n9JweL?Y$Sx=IA6I-+p7Z*PoWRF7IO;syV`gI-l5-O?_D{ z5#XfTzt6ckG^hNl*4D1goPMwVO`3UIFz=VRyG38oo*m1D^+Okx^{iPI7_;%O{v*>% z|7wqhZQ9xV?M1<=)h)IwT}>{(Tq!g!?E9;`A)M#WJihs^z;)s7eO@Lmhq){I7S4A6 z$&|!%e?fR)wWM59e7TC3VBJ6dEiSK_vlxG$OmN+|U1NU=ZYjl$u-&ATTGW z7PQ9#!~|mvg2SD~mASd8B}JLZ`T^d|EFugX3>*yTrr45Tilb|=iepZCKw?p1u6rtU zE@x^;uK(o#kvcu;*I`_JAGH?ca9Nox(BRV2-*qsl&4I^Qjl0wH<+`mqwr+jP@!PfT zs>{qmH@jIsW_Ntt!t=ye>36~TbGFOR7stI{fB$|R!;bbj9eFA&cX%F8>k#8{ztAek zxZSm7!iPTVM3uu5q7$8>4$R=-d_2!c(Lu~W^AXp(u8yRL15+9@+b+z>d-0CRS;6vG zm*S3$X%@{Vczw+)=K1iPJ~>r4HF~1#y0F~4Yftta4Ydru=5y&@Se(YTpoeWyFPu4TU!=~k;hbo`ZR(~ttL_pJ5$CkCJ=US8jdG_?fAlS_dK>p|e;s=Gs`j4~8j9RW(MdB5bA9ibtZs`6 z7Co+8T_OZ6 z=?A_q-gdE)x7l~Y_a&^J&lX*L|8VM+^ez8f+*dUQY~*{$U3kH_O8jAjidvoP?N<@Z zL58vJzxAx_6n0&6*kZA-`I}%Ua#pQJ3=0=BYl6e|hpqv;6`2R2eOH{;WmCGy10_7GvumPexEycst1mE} z&aD}=GWlcYJeC!Uj)@)ae)-Pg%LZqQbG|xxpV?(~l{33TIxCkP*?Us_q>p6c^vGoq zGMv}Gv}M-l_MXu>`2P}n^4h7AOD{#G+Lmxkz8|ape7eqg-=I6GOFOluY}{M;gV*cD zzXtg~4@(YRtoJ)4C-d*Wmezu+-z}3#q>-3+Cs} zh`h1o!owR$0`?;BmI}?h=zq~ea^iH)MO?z3tGBqHpL}1l>aR(tT1R{3x=;6O&Yy^3 zd)SkIfB&rKf27|Z;am3GJnMcD|G$rtZw@T1y>a-(r4)|XQ)L&IaJ+cqe}GN+3Y+LF zQK?*;@Qi&mrE7$5Ewzd`Dit*!6zbFU%6ADfGBA9lZm7FCK|_7wSubWokyig-;?{jv zf3fSawuWglZtqHH*9^JC=``Jx*VJmV$}lyQ4@Sbob@*b7f!d4 zoOycVX(iPqXD{mr8ZMp7!S=Uq%8BC+%fFv8nxmr~p0oXm{jz9)&wu>q(hCR$%WbSy|1oZ*lx=Gbl0-2O=lydzdhQr%Zj@* z%Z>ZX1lNeu8~g<9XT2BgK6X>xHc7q4d}hJxEnUvrv@JPyr$@|@KJ0hR`Tb4dZ~x_r z6<0gvUTwZ|R@T}nGVY(+ujsphHbw8{nKrhX{Lz+T}W{(E?Q!I^p42M z&*68y4*Yl}!aD8Ze-=>ktvFG){w)IoLo?p+1T~cMi_-Oz@=NoQE0Yt8OL9{6vyxNw z3ySi~GE-8E^ihjz@6<{}gC@Y&`>=yR?d>g|v)rptt6Iw;)#XyHEn>6o zrBLvtoEt}+>ZUDkXsY<;-Z?wVQNZQhsmo1Tz!5R+_#C!P z9>tD(HTFLL)FvKo^KjBrr?A?yT;F(Q1bFI8^qBmDHN!5>@t!4mTJ?OYNPy|{AHnWx zw|eH-2X2Zxv#BSYW%>T@*y_jcXA8twO=gWYl-jJaB-m7q)BWF*_uG54g8lv#GWJcm z&9*9>dF7mdjFqdluVcLY_Q6(`%9vs;x7Xbl-JJ^?w%uO)b^gM;(^gE+$my_coz`V# zb;I>DcskyGq87UxBLl+&ym3Hkl?jOhLn8}FL1O(i|GFI;8=Ep4qaIrtTUi;KUm2U6 z8=KkeGkeYmS-Y{N@t!qsV-tJ+XG(}1n;4s28C#tj+vPutO8zeSb7{|$Q%{aOnlvZm z@0uqef14Kl*>q;g6{WwAPTje4WzwQEDYfp`6GY!%@%nzn##x!$jm=NRtUo<2E^A`3 zUs7RVmZ5U9;7d2ASkB}P85K=)R{Az6@^ta|ILJ3MC<|;d*udmzrr^(_agJk&0i}12EqIY`igDV+j+Jc zNNTn%KGJtI_ESoVUb|lR)Cp$(n_YY~-X1Akf4f)sr^Kr-aglA0U7w!n*{XQhwdC?* zmykBbX%{q7CMS10{xP!mPz{=G^LpZ@Lr*7no?0`_b+YZQnE~Fszm920A9H>_uhWWb8YdwB_Z}C3ddAS6t@2VL79bH*E#avK8At z7`d*!^6T~X%(+{BsPnJRSoo0@R0%Q6TO`9ruu>rXx^l6^$Y;@n^F^W?9iauFR}PgN;b;o!eOdcU z=aEw1CYwZ)u+}rdr;g0vo_2Be>JK}lS<1C0?R~G_bk69kYretbT@j9l9ZnzU>y2%i zZ2#)`jKGzb#O;#0(vGGaDmt3{c+>yaz4+#OQ@gLpK5#iPS1hYkhLM4RfeBv+g7D}vYFhv)`~!Tw znGFSMAFu0;4PRUJQR_>9XlF$zOJtS69#N70Y^y6Cvs+R`zol1dY5ZXR6PT2=w_}Cz zhcvcldw*6`*VnNY^yD_?F**e%NUmneX0mm99wL2rj^L()_e2%fznQ_=e$D^M+FFBE zp`{tibf)IVCaccwG?RJqv!LW{w)r0&?-B)}9IhO}zPbtTMZKTDT`aeG`og(qcYKUe zomdytnJm6=k3n0l>00Lp4i-P6H43%fzPr&sN9_yy^!>SWtz>^sE_rCb=>E3DdY^u* zNfEJ)lPpvXvp$i;Hs!beg4veSo}HMt@0Xd$e!2o3@zwLby_~xlhe^`R2;XdFK4N^=75&#-HhHg*$Z{8`n*}k+yvIp4x=e&Hei> zPw?Pw*`=j?A^ya3l`@SteK+2A%+cNGUYPm(#`86Arp|u8CHgkM&#kZOvd5XkSdB{e zFX{T4em-}%--R_G@kL<9gPvm(ycQ3oG>}tgz5^50zcNgzIQm*=(kE zHr}BBX{C3(`wkoI`B;9(_UVtFPJx_=%3C`#I%L;BqR{-Fs3YBLjmW-UUO1k4{I)AijwO1(|v2 z(2NA#2~ORuO#uh14y)d5JG!BBx3ob1 z*Sh^zf8Sjd|96r6i_b4UgK~}CxfFA?*=v*!*37VdzUO)E`7<|f&iwQ9dVW2_g%82X zevj+AK8tMb-N9ZgBChdFQ%pmyBVnT;uT0#d^WD4^0;lgpJv{7uXYY~rc1^j36;mD= zb{*FY)10^9g61`iNg|qD&5w-yeLg47}AH*(I*AE?|$xN1>yqMb-!G@%k9Wvfljz+rfpo*4azd zmrYB$CDCZJdtv^|EVu2KUQNoL9cJZsVakc9zSYt1HqAS^nR9>SIjQR!_q4b(loyNS z3(MG~MlGwJwLtIIcAtRxCzkPWrWf`tNLHGB?$)y1`*tq4{cG7nscnl5v<`Y)^V810 zxo7Gf&sTl34X5-jS@`75n`twRa*p1-nR0X6%qKVR`Yb(AuCk}OoYO=sK+R~`xg$wEm))Q z&^hMmId>tuW9mY7Pv52Q@G4j{tNhvqp6K$;+pa$p{{7P6vVw)?tk{)a6|*1zR{yVW zmS6Gy-VK&sPUG!)KYD|*Gp~dsO1>i!IB9taF}=_&wi~opz;o*Jiup@#)bO&u{-8^@2DeXWOg=-XZj5L&}aU}-5>13a^^6;s!!u;v0eW) zp8e%?{u8CUSH!=Zo zc1~c8Yr|Hq4SMpsjagocCD<~pxqkc|*TF?hYxEmV{{8gP;nLmKC5-l-oCiY~%_I&y znX#tw*aVw5lFFY}q|cdf+$K53PEw$Y{ob1lj%z9hcCkdPXV88(Z6nCoQtk~a7_{FV z*sygw*9JMpYvKo<1lOH!_GE5SThYYHKdt+J)1mj^9S35nTX{QK7#IpD+`xh;@0=Zj zLrn2Zdfa{ipY%B99mwJuH-#58>7lHKnDh|)*8OKyr_tk{8k3Laf{!yLPt11t_VC`^ zYQOoSXgrI?z z)1evZJ=_ymeL8lu{Z?8eA!4AJFl%9@pLt1nqv8aax}ySTX0V=9D005cJ5N>ouvby3 z`$~;Xhp%p0yF2ve#vNMvVy2VVY+pLPYweUBr{BuRo}b5gwzB?5Taw6`OKaQ}^xm(! zQ&f7nK%$C2b6#=t?XJ`P6Hk~n%RZRb0U|${p9rLk(W7>)u}Tf;I27 z-&U8NZR<|$JLRa=vA*eD&%&ouR8x6ZIV@XY!M9v`&Tg5C)R#wpJ~Fd9xMihO^h-BU zyC5 zXT8{V%BsfNPs~j(j+Ryx*p!>MvS*0D&Ny|P$&}^$-x+rHeR_S@q+jGW>{ZwH_+4c3 z$9B)GUp*K6w=8{?aqhZ8jUu0wFBnb`OgI6Ee%pPKAm&AxXgzu-^sFwWDGnR*AA z7#JMz&U}#4i$TpT&=$hf(CFaXVFLg7%x;7oIm^Pd(9?x^?M6n%vr9QO*BYvYDojXH zDD}{H3hOyAEynZ0kG1v9_80aY@<~qjQqPS0yx8ilGI#QUlRk-Q-{&m8oB#gx_y7OC zvK=tl#(L+#T8?#(&D6_T?i`)YH1}O=!TisXjJXvDPKGC*;rbzUzh#1mLXuufh{R_m zs|nA(w;IT`eOTKdccySr!BY1*Iz^ifT%6`qA#-d~!)lNAjY5aY71tPUk@)Rm_FO_~ zcU7gQ`R8|L%)t`3v(0 z#qU)y0cZEjDa<{5=6r?xE#q~o-r9wEXTJ(-RA~9)?W@1DE!B#rnbkX(`=#&&^;K)d zO2fAstHvhJ$UWjC8ghK5DwoM|RlT-iJjwUluLtNbKqOA!6?8A;FaxdxULX*AKbKw!+ir zPDfvxw{oiK)k5xFYpkA4i7}D!^;0#@-X2`Ma#wy|$9ciW4d-2Ql-!<1`r7e6+}R=j zLHV$N`M;oRZ;DQC&0^I0ov!qF*JPf_zCjCT{LVUfVy@tN@$QHB=IzXm+CMAkrHjL( ztdde0TlJmOp6smtb#vmHwX(6r>O0QPclmSXZ>;_E{*>4I-$<76Hf*2cXlJo&Nt{ct zzgOu+mct&OP1KA}2X{r@DqbnJD@tTxl6Onn91dB17oQI)Un))-=tM?lc9duRt=ZG} z<6yZLQTT^^&7c>BX^TOZw*j2CKL zq|Pl$nzid~Z=>J!XnFQpll>JNw|cH!z0me_-)ixb9a*=tA~$=bwpBbnv9==ctcLGA zk$e9F4?p}F`(aX%5!2qYVh4?*G)!FQO`DK^LoW7ts^sdnnKSWy$o7vyUJwt zxBjh6Z5gHa7u@d_`?dV)!?_v#0{qP%w>o_>-u3mewX)u^)d?T-{(R%ob$?LrxX++w zrQnuHG6n+wg&WQ5+oxObt1#XBYTDF!c-JWn&Z4O*cXxOx&0DeHD?{z^jMK-oIVSpf zi$3I1YVTYTaBwMe%g^76j}@+X$OW8Euok-4c~ReAAX(yj<8r|d4eM2_6#n&{OYVq# z=PvrT{rHO$Zq}<`R7JOQHGI7?(W=AG;oHP_KRkjS$sS=YIWGL)Va<~f0gp{3u?7n67Ajpeq>4QFvxnj^7)EsSC7q5GkE&iPTfDMQ~${EJt;@~E>89h zDXgsA({%6pi{0`){4Cl#oUVT4``c1)@@%>Op4k5Ze1T1t?G5$E4B%Db~LFcfp(>+qYC&_9KgSV(h*kRJcb znSpzS zWroF#B{!5Tek|PIZ|S|YO2~QL%#)K_(xZ;dFD-lX{n~qx=6O?M+#fd@-ud&adf5fn zD|0`}woU&$r~a|*?t@$YxxKY~_iz6#N8x#QJFJhi&Fyo&pXM9#mN(;#pTjTVDZf}x zv1)zY%yjj+{=r?Y+e7(F*DU5F-P_H@w3Fqz5~`S*&L6c_Ig8ivsp& zHXSeB7U{m(I8lx3r;a~2S6zd=s$Up%8Y?8+{@%U$@r++KOj|I!X~MD@M{Al|Sx&c{ zn`pMnPR-@#HBrTBWhYu>U%NdzW+!oVMdNyJu~Vj@xvaA%n!RbY*}20;W0{IGyC=6c zXBg*i`>6LK-KTE4+oq`37|RvE-STV84V@JGGxL(lvUsc``Szsy-}rm`g^$?ZORK6^ zu8uBiv9bT3`!avm;cqAQ*01g0J@PO)H{e7;&Vii=t_ikso!A!da9#L}kAQ9M%V|v8 z&i74B6ub*wbx?QeclvcXJMGzUD#wuZy6!erMC^)EfWN4M_08Yp>kkH^%G zoSC9-EuLkI-|W=#pBfe>cI;Qd#Z?Jck4h!JKYreGiA&m99Z7BNPeoRtt-eYhmu>la z?#SbsxIc|)j|`?(t}8lp?tMx6!;{w|Iga0b=yGm}$I`x|9jzsI+K@0`#v`*curb4k*iFIP*lyrv%u;>~~G$8p!^{FXCYeV=@_ zFfR18ShqFl`T0=w|G}T8wj8dym0!%!TxIla4;|#@rX3y`pNM1hEc3qWE65HSO z3zyG3bSKL*&a#nGXh}F{?3^|`xn0swd`35iJ$PJJN_vhcHzNas5#DiGQsxK2#Wd=` z)7;6qknOrAS;tIj3v2STP1kPoJP>(ZWnX~ik)>M}1UYW}Q5e&nawx5Q=3S1Tk#&I| zKr3rh{WiO4XL7yN(@B4K$MXC`qw3=7Qr-m7qdXGJG?r99Q{}&a$s&I*X z5~!dtn`wQOm&>1gf!XUn^?u^o{x)c7$fMUaxxKfwSq^{y67zoH`%BZKjx@egyYpv% z%dz%^*YO|aJpU%8$%MT^fLFN9O+@_t?-E|#|wsUja8{VEMJ3r%8v!tpR%jtgM zsz64qC62Bn;jc*W$rzbj`( zuZq&y3?;YSQ+cZAb?8)2?3n&0R4Go~_PMOUJ8+^fOT6y8hLM3`E#95CPNZbO#N5=J zoXkXQ-ScdJ;Xnb~>0;Yr#dMx(F51Esbt*YfMBZkLZm%Yj;guOCDr%>{?b6FDfBkOT z!u==K&(bixcEVk_UfA%Q9&2UiCI0Va@6OCCPJ4Ie@6Xq-%Nfcih+b^o(ePUFj=;sH zi3Yn2wH_?%FgvpMX&6VRz%dsUL%js2mKM+RGlUelXNVPYZg+JtP)cw+pyPadPu{C{ zO3n&~-zF)}*w{74@yW7fvu)h<+MXUcH7zJKrG2$%bb0os;AgAm7@2ghF<<%|(ml74 zJwKP@Y<2yQT}fhVFU@gRNZTG7S5|tuM1t*G=DecGx4TaBPds5dOTwD5bk>EL$uCaq z?)p_0s<}VFj92f$zWFbhIrqLuo?*u~(Rg*&LUDg(*{&pywULI)gY=@eo$lVad2`R+ zZEqs9X7^9!_e;K2$H!v$w9tOa2M(3|5AUB&Fz9D(3uqJIaSoS=x+EF@OG(c7$X@;J zsaMxcjm_TwWaleGQMvO?E$SYICBJRjlCnNcjA8pfXI;2Yxc*1y8TW`c-Lr>hdrpx9ISv%nOx6MB+K_N<05H^gcB+q`haM1z-8U z&b@oSyeVm%eK+A|$b{aK%>vK2F*@gOcKsXjdC9dafAX?7{|z$cnR|UYPvYeK-7jao z&dl@8S+Y0(w&}ZPKF33Srm88GvmKV4^Z)8*$Gh`auk1cE)!uqZ##C_kd|or7bg2kxGmZTU9&s;l+ly{3`uzhAJk7&e^#@~+~Y9T)!vJ+liz9c-^S-u*Ic zu9LYdyEfe53QM(n*o1F6DxY+>O#0JuP5yKCAo6o31%5G1%F>&T7$aVR?=c3F8?{ulGFEI_M^N!+C#0_Iehc_l`mW%I9tU z<=)=?QgYArhdHR#WjVLN4%9t&$J;%3pd`aUd+2im!PQsow`Ri^Xi2 zl~H};!v$3nza^8NY95sAO>UAF3wC_LG1W^ouj_S?_f(-@i$6Z?(YH9g!|Nt{mCS-Z zwuQ2vVp3*4u?~EbIJ+R^#gw~Z#Zz^J^G^9}h*Y|uUc6$5$P675+EtUd&~`_1^*}rYJ5*50zngal=hK zdfT`A;D+y?DW5-zGBPmyz}slBA}0#4b~#?V|6LI$${(%ic4YRWh2H$4=bidNlk4WY zRaS2>|37ItD>ta|FhfMJTg-&HU-Hwlk7>`|{(UNXfU`_6#x35nmlQx?Nm$ zL+Qi0rIU`bI@-R86E<0tqr*`(bKZv8ZyY~PI=;+<wUyPpmt;F<7>ZaKWbI1P;yJj?`r3@)tJZHZ)&~fqKT%b=&#K-x{&GJ zT^$^Y9`M*aJ9y^t-b%>)u5MoL77S|-%mfw2ytw&Mw+d7G$mug1}Ui=BU zvx9xLRcPzA2?6`Eqts9MZC$F65<1y%m)3Ke;|zP+dHa0ZF805+c3t%GU7-Jo?h98< zx5lm3pL#c_Z*jBbv**_)O<%^<$aMJN{V4HGGSbW6EzQe2X)JQ|Y5ukSZ|8mq?Em*# z$lBxa>t9J5lb>{WPs~;B6rS*Ye?#o~4F=AizU39k0co<~S6q6*q00uDiph&wl1@ zgNw=rw$naX^hq?%?woKhy+1R6b&W={A9LW-RJXkv^$#Akg@@ZbZJIhW;BYMKZnke6 ze)T?j%znia*Dhie-?Cy-%XB5KjLmO81pCO{5ZN~0D_1|w^&ofC;`^fO_nvPhC=z@B^J z$vu5f7;4LJNbPsnz53$1iIw=t9*yVg&}22 z=~ffFloT%fGf0s;Ajq-h8%o(-Q0lFS%(4yY!_ctnRPAf7c;B)t7lyoxRmlX zX8PNM&94^%%UWYsr*1UPoT|3&Ohj%_SakH8uU%`4Lgy7{maclF z@?7V#=ljX4`OO}0FL$bFU)*Y#^H`^_Pd4$Bf851t=D7MoQJY`d!f}C<*<*T-*qW%A zEv=ep=gHT0z9s*{!}8_28?`q}F>MhzmD|AHA`WVdF>cokJ54ajk=1*_SoVe3xBy%B z)xmY_%F?5)jtd`nIleUVYqy$pro~g_Q{*}(u|EvDQNy z8|2J#w&d>M%bHQ{u;IahV~cuKrB}0r&F7Aj5xnyEt#^}~ihGa3lq{K;)76gNQqNrv zF|9haW&)#dvR;JTocV6-dkyvk6_$Pa=epthbhWPFX(~4JxMI#MOkI$iaQ2v$Uv5#7_%e8=d&!H^%#xC;uEFUJ>FG>Ha~7Db z30QyO!yc})$N3L-xfSPe%T2pj1ui*bXP@6G%gDgMPrdO4SS^NF{53Ve)|&;q_-p&U zU3KQ$4v8)oo5-wvG;O268MD%~#v$p) zHmsMHWMV(`?|x3^@@wy={cXM6a`DF>^S_ywHrjh_m-`d0R5s!GebvP;KHlr_-gwJR z%y_}AYPQ((8x7pQ{V?4wX1LeZy)~2v(%v=8{Vn@}fq|hPZ^25+f;wktz(U5!mVy_7 z3ADy@-`KR`!M^n?9;Bv-Y?lz8xx!G+MCQvK9$BLli4#1NK5Vv`Spgc4>^Z;S#ng@b zf3JF9U+uSQ^?m!e`wTNqs0$pNbY##X|ucek`McHdfY`&P!! zvwgu=_X(Cr^WOa?dwWBO^X_$vSuT}c4QyMzXI5eO%Iw{`1y&hT-^`br+iJF1IPu*( zbDKRg&wu9MT&Ytaa!F=cd_9}%0*eiMpIb}ZIIhT({P@J82E~7?)~iYs2AyA|ZI0@5f&bv` z5y1~uZjEDPV0eUgl*NvW9t-N|+tR7OgDyLW9NYi&+ETU&42wE6x+1z%w%yTe%GD6p z6z6WLNOqD^^zpRzJn(Si7ycO+CFKva7u``^Ym&Rn_)1yYX50He>nvwazWeXr=f~m= z8sC~FTxKNAcvLCiZz$9t;-bud^3ShDl7cQjbEfboi#)b5I@s>nrP-C)CD|o$ROhI7 zmt|LFSGY)F7fb6QVR4N~e|DW{SM5se679M!vRXv5Yb(Pw<{JtbvrK&s&s1K)&-+%u zL}O=<-UCS|mc1X}B%U*xvv{)a)gb>8_w6~Jo$FPDS5CD!=yT3$3SZIkWo7GDZkv2{ zX|nJ1Phs!QoOm%UW&V7F?$nG)hxXiDvyji=p6E%j4V~sJcaOiCsg)l3IpAK>%x8&@ zuADH^ca-;@`shrucbzMTN3wQ9E@S@2!}V{tD%x$CqICQZRIjUHh`#Kgn&fF->RnnC zcCsohJC1*`AWxX~&tG*cxm^?OFL}SWDSK?KK9$9B0mCZR1u7y<^EP>1>OPfWB6QRD zxOsM^jO*^D&p544-Owxfb1Y!`wYt9r+%b&umHDkf`x^ZByqv%D!q!#uf0tH%Iwrb9 zp-GH?c3U5 zBqA##xAtGFNPqQtIbU;I(Dmxd#}6W|&xuG)Sz&a9PoeGlS)PL)nul%qZTQX$9_$G^ z>J)Oj=ftwdCtlyatyizQcy`~%qY3S7jTtH5wjNp(A^dGCb8mvh)BZ@0Wv2xq`2LR&k_>XlfiRElqLvux_q`qJ-_Gxr;vVzlY1`xbA^@lWy1>Angx zKE~3|E7Fax^tS0c9!i=UQQz2h_k+L5yVymZJTVP*?w?tk#CNE2*+qGauD!arGxt%h ze^9k(MYU+fZuuAyYa7qGauw72uLZegf6aI#yYcqiJEHF^H&w6O^j>^Zb?p}R&@FcT zYIY*>m6LwiemHIyCHU`%yY?aWnk~xfb1mrE_SM%p>%pz4ugX04e=;#J+~&YH z4e3ZiCiBZr%}&kF!#0u$+g)9v&3e2-G|-Gy_VH4UE`8>b=A%4~5@|kSLX$7WW+!H6 z-`0I2{xeiK^_b+(j7RxO$1WR9Fz@_w*w*&@oa%Yc=Tx8j`}Oy2eunRmk<8hOcZ6Ug zncKi4nSLlEnf@~&Bblt_h>=X_25ZA_vlMq^h*>tD0Bx}D^Wiz&IaPP*suO(S+S}e; zOF8~%)f~M{waoXY^hKjJi>KeNyyZ8y=xnupO{`&8n&nf*j+?Smqu1q0@f|+Ec&0e7 zAiD5ppo&qi+A+UYEAAIdB&q6>za1z<|C{&UxaH_7K+#MTvm5}(z7b)Qg^zt z?8GFG^)n5ZCxI3kCB6Bhlbr8sJ?-4H+3Ko^w>JfA3olx`x@huqj;TkU zJ8nOAq0VV?5nE{D#w8Yf%dO|^w)pbtQupSkx!;;HgKf=>&RWIXVBy(&mhG$YS>Z_M z&(&+se&arCP!bq!)WW;(aaz{8<2y|^PW*UoTlSr^l6|Wsw9Y!elW8e7_`f>2d6#`? z@bsBl^+g@vE!N6Tw(XA#W#&8Xdy=Z;$M3hy1{>+vjFoB zul~ODcgo)xJU2E@b215VFF5~Q^2^^BuQK+wEldM%u})K-_6;q2ImsRp zKeS-($Jmxd4_EvUeY;wi*Q52Ll~virpNtc?vMIHmj4in;cz5;>565=H=E$m366=C* zXfXYLAztvfx8Y%}2UAi?<%5gLH+|nft8Ibo^z}QOarqDv1A`0Rp-jT3ZX#wo(KAdj zq=7LPF_Iabymjkd?JpOqA_eppaRlkFRRWD<@)?@moO(Cn#r{i^9~_i_&@Z%oBRkSa z=C^;JxDxpHs@0ghj^N%Px4?IW>{2b=KF)gy5`upw&NEtgRLfH|{`KlZOSBYA*bjf6 zImdgV=hP1WF9t56rcR%oKFelrwe4fd5#-zAd8D^4;G@#CZ6_kmB#C`@JAYYII#Imx zoS%Z&>Ye{Qr^R?F7kg*aoIJcSD93H)mT9>SdWoNQe|qxeOmFsNvF(+bhghX=%e&uS z&~lG|$B)OqTK@iD(<)o>PTYHS!?fuob_JogU5hsE`pr|NC0%pnV#Gyh?OU%y$SqBaaf26TA*hbXjy&pkiX&sArUIc#J z;LO)mA!4&`^I5CBGPN@}gxe`_qoZwUt>tJtqA(byM^z$2s=L|J;fCwo0n)Kx4s&?N?j1 z*r#3=PJLzlt!2@UKe-?CcTIj5@bkRt#%7a$Yq`55`TKT=+%%gM!T9qZ_lvZ)R>?`r z{qIH{dG}PaXw4$XT9nl8PHoU$iEg}YWg9Xo0m$eLBtcJw&f(u)pPT&0K5`YXS@%*P`10KiovnBNc+cYk52aZggk$+zAbPwv_l^7eMn`ua=GJENy(yJ8_u=6>~8Yy)NMT2e=5^OtGH~Q&xw_L=A2zo;JIYl z-fwnWE0(N3ATK$MFL>_rDcmxD^eW`$)y;Q%u*7`ctDRvh%{K0O6s9KEcdY(?dW7Vn ze>+*rE~eD4R{pU`xkt9{?T7sde7|A^AADrpI-B(sx5>O|Cm9zXzjH*&?7~m*;AKpp z=@Je`28P{uL!6XtZqQT=32M+J{t*L#w);2N-?+PKcip|C%~hOQ9E&)jTwDVD?`^)j za7&r6=PRfBY0ycKzW4`Q)eO%2sO2Zz+p~B79;O?ItK@TeMBTW&xlXsd*m5SX*Zi_W zhyL2s`BT(b__(xN4(5MvT6;)qVfoRo;rrY&=BuX{70tQ5$7*6x_V2z6o_AW3&m=c4 zn0x-q4cl8={Crn)`H4yTtX*wsVV~eh!JZ-j|-vdHB$o9=+bPU(W7$utiD6 ztS062c?b9ZS5I}cG%tIVpU?5zw>3$n?Bb;LKVwv8{!ovZlBJ@OSpHn{%a`JX>V?d* zH+4${9XX%3Ox&PfsL&%=3l84aSdF`X7#JA7;|*R?#)hH6i`sLTJ1N$i33T?q=jD@T zr_b80Re0sJ_eSd?{hkFbTsm)8tvg;Cas1lc)H2aOk#|K(F7m%{cU}CAwJh1#V2)+` zb4%uQ@FJ@>iQ25p+#-@(#;uV$K`ENkG^S~WX@qHBn-t-%jOysff%tX|(- zCTnZIDK}Zzl6+OA{=udDSGO%xH`&nW+cdZEuj==mNfSftbG`oOE{=Nsr&S zVJUZ2k)yei#kqL?Y`M>|yYFQbt84Y9b3N9~c`cumu%Y8#)t6s$u5V{PQo z_*9RrVqLt+^0P-YJZ6=MoSCuG@q@*b2jCHrb)|>S1u`-)wBsESA*I_F?CR=*uQ~b} zvF?3=MwbRjhy6USJa_vqv@t4tvA3mRb|R=T`jBInfzpF*9Rfo43e|g3Bo-?LNeE96 zQ%t-Qtj2PJNzFCpV60#u5BCfqgR=s&F7w`vP2f;*k2hoyKP!|juyf%{w)2xa6D@ac zTAHK1>G0K6Yj>N1R=ua6n&o-x_9^b8VOn>dmNl+R_unbD2hu+<{9aC9&CH`X|YF&lxN>Ou2M13s(1YzUBB`|H^ynrPSty`aQ=&)7P&7*KJ$2> zr~OF3?7)B8k4Vy?!*wbT4Ljhc{d{!N+kWK2q}VT+`VT0MPPLtMID}_D%U9TOKlR|_e%_spl_{@$`Sa!>v*ic2tdx+xnI@>0WAE%= zZ1UHH`^c3Ge>Ayo)^&o8`*DXI_hYeL&3x0n?YUCrpW7a5wRz2+V9)+g=FIsXta!v0xgvhL3Tq`asFA$rp5G8ZpHC=Y&-Y@Q4RxO%7 zm${D>%sqs0+)uyUNxdq)_sXBZTO4XDj1OSD_l-Pbv);!eh!{ely(3TnIT?N-_M zY}WF&2lXqPR|Yxt3+43~$XT`Ae7|k;$E8!#qn?##W-1je^v##5YZlsN|G>Te=3Ik6 z=lv`ilKlf*SVL+S)Y{(Onxi&*b^G}R%Zm=U%KmG+ck_bZ?oSbuQWO{D#>%i{+;SA( zz3n?>W!Mdq09Fx328K6y>lji77{Q_M3_J6u7rtW}e&)}#LmkmaU61Q%y<=H;dKO=) z$;lQ^kxiec$FS=BV62;BAsi#IV4#`1_A{SjfTHN{V^z@|L3+}FL_RU%NnG-a7u`Zv# z0o4BgLfv48H~w1#4tjwm(vx2wTN@g_w?fqBifczjs7;O;`_b776)~F=d&?$I3Rwtm z{BNlUaGBe9oM%s^aXxtcu1wQ{WPdE3l6>>3WmST1j!}*vU%k&g&9mC?<<5pw%gy>3 zbN${5zeNA8z&m#m>(bVKTQsL-0rSHL`E!dE-IoS`KNPb4mT=djN82aw|IioR{a>Sg zzrb#f$GdMWm~k=d$kZEe6*@&H@W(q`=ho4kU{m|aOljMEzlq7Rf59E9IlUYAf*Su# zcmtG_4iz{ZqqqD)o6lcf-}d^~#?XE_7XGaojJ9DmJM@Cyu2rb$xxHao&SX_-?&{a^ zuU0O2!2iL$bMp!Xjzy9c`of^4=&x^I=57#vv+ZGZ#OFZg2a8)v`De@R;#q6FbgFgw zitl{+l2Q|AdMqlGi8uPv>-%$W`|b)<>v9s~Ilg~&toz6B zff9OEi&xIzp2s=&li}BkFB2?&{WfYo)wTHlnuc1FlhiIoVAbC%r>;1vj!#JTh%s)Ss57^HsK9xQdXaX!y0v_huKk}_VL`v z;(1bAH;M)w;g9iIy~J|8z#FEnr#mGdd2QPMX5OK{I;$I+><`GRzH_q#Sq)3Ks)Z3tVLAm7I){AF5Ch+jB2F0b)5Oi!ZF;)t+{MO@4Z0hgE&d*?3(#4+dj6M|xnJJaoa?=uwenKG zQR0X26Z*Z0;b*ko-xTiq7uGe$>2`Hl@@me%2e0N=ANM=`PUl|5pZQ-m^g|9&Drbw~ zzA86q0^`qz+Aqo)r?O6Z{(j%uhL2Y@i*gqI2A2nmrf7ZzEd#-Sh>{Tl0|T*#D1m|$ z+Krk7K6b6`f3kk^trcs(zdqO6Wf0~V(~*!YP`FUxMb#`mMaAhx!rYZQ;Z5A~2ik@F zS2x|Z=>B;w@n8Le81R`DGRezZrKYilv4pW+<2aWpbWeM6kat1;CLd}2z-w9B8~if< z?~8lwlhAx&&()_U_f)RT?~&rn5zLCaFMQ+Kf$zU`tok>t*zuqw|Nq3&IJ+x)yCPI% zo~cb~{$t5~%HgKcMI*i~GBayrc(+d6<`Wz{Lt_H}zIxXeN3zzWEZP)sk2gtHq~)@f z{hNO)-@S=<)01@3RLCazIRnCdy8CJ1-Dwe#iN}D(=A>bb>6h7 zVBPzNW7g%pnTyU{Vw2%`rgJ%Q+mAfs*k>}u^L8G1bKoZvC^?^BDHa7fw4w-aQ=OEB zO`xzx>tjv%>vuUo;@JGh4YF>6D>Z&FHYxQf>c%TsxokIVWSF?YYF|O_77TLVJVv}#G{k3>rS^xg?w>`G@b@hMw5;(05dy=~zDIQ%c z@h;h_>$u^UDre(+e?9FV&G~2p9RQ@A_Ti z_nA#8!j_jN+>ZzipYk>L*_=1ktuAX;X-~J^cRgcQ`SIm@9;n@RPrKdzL|*CR9Sxx~ z=EhCOcwJknEG5^(?%;SP(fw;?!Hj*oCwsF>mUZ1JIO?wWd$xjFS7rO>Mf)cdSI=df zee>|O3n|^Z`Mz%1wRoK*k6_P{+pR%{YG);`%{+0Me}aC*rPw4)I-w%aqv$nAPV*P7+BugSdwBAoPWPQ7f z^IRA6D-S1l@OI|0EfV}1=23E6y!V=Ga^s7>Dsz=x;!35nq;u!}eiPnn4@%z7DmR15 znHU&WLfhBa&#sliRkRcrq~bfRRuiv2S7-0k%HV?3WJpOgHQ*q)5k7gDukhk+TylFl zr>nS%SB35o@#o@dy|?|ffKZmw$*>dgni@^)pu_Rh18uluCFI`kt+akqQ@6LCVMdaD zLwByc?VE}lUkyGPsO|X5EPd$7t~Ehhb*{H&_N;r`6`B{Zb=j^tcVBtk-~2R7?@y0` z#rdu?aRPped5b|5(Iwh_A)E$?+4L zm)iP*c^AbJxgWki6ET71_et(K%g-G%2Zg?Q;*?MC85kHQ;H@ihwoAaF@9ONAn46m7 zTv}9?8jx6&n44OXT7(GIvy;zzF$Ibo+n@b;xuLP?Z(~76>#dKRbbH0Tx*ePZZn<=4 z?(tE!Qhprzf^pGxO^p^YTL*s8xz=aZT+6*?7w@xvUVi@PgEN1B{rkaEz-7(LY{_l) z$xAfkhDo5w#-j^Z{rn9?q-4{dd{`%3u}4+e{=+JsV>{)4d}>nE@trQ6_~hg70*M{{ z>x?JF9<1)Gd2s0I^sm1Rq&j!H7=K}o{QFj_e(leDp$e_)i?V*Uh+Y( zQy&XQOE-u1-J4j&`p8<$h;#e=FDH-AS=+zS$Z?(e6UIWdr%q0{j!E2-H|y?gIUAfd zQl?v~RLuucYF>=@)xf8~H6zIASVUJLBz= zi*tIEo~i11>^L`};H**li+Q&Vw)@;QygO;%i|TFBrwld1j^2GVZ~px++c=6t=dP|$ ztzEn6WmLcJ=4aM1`m_Hj&yD_7V#n|_Y`M|GJzT z&j)|L3N)^6o>b8MFlY4%w)9mzxlS6a*Pq7SGt4%POMa0b8rrt+#-?*O?nKUCskNii zmDM>SsDS&lP@Z;#pf=mIqn~8k4qiLhJ6-aYr&h$#Sk~_a^B<-NM>W)Co)Cvxb)3sZ{o+;{zuho*f;85 zVmj<#v;L*vx#w{luku6LcU^iBefhb~zTXS)zvF1za%)F=>sOV-9FgV=xwI_aelX(C z+xD>5X=U-BQ`v_m1-!yuv!exa>k+Mt$Sei8tJWRx5|L zyR2%ya>C4N{-tFxXRZ}K;5;UzpR#!Fu~Ua?GH$0{c=O%aku%8FPAhK*{$ofasIVEyu$R*{EiRpTi#^o7zi`Ab4*jZ`+M2rl1+X0_L@bd z6kBbw6tc)?kn22fm}Q!aOO)B%taB5NW~7wN*rMSd^jr4j-K?I8Zl4WCSc>PpA<%mV@4lUuDj49T<6C$Nh(S--iXAu8*59hSyIvymxb3=P9$V zuI4Z2%(VS}r~3K5-G9G5zMRf5eWLM&?(SHR15;1;#OO)7#7x}1x@hOJ$GaRWoM+ve zvOAhB?{uubQPK2^hN~a*H9xz$YIjp&(axZ=yQQZ_-MsyIhy0Y5-DjJdv~9k}>8a-$ z@vPE6qUM}qd-{Nwb%$JN*V6`^WLq*?dOqv-eYnC$6EBSlfQ&Y>eS~CNVE^ z?&KFThE`Mlwp=-Z5Z~xMxwQO?}bmz!l-Sm{@=+V9c=*GAPn3d#1VFCw{jd{1h9 zZ}UuA)lu1ZyJo@u3mJ=(ZhEV^8Kf_gKkmzubmE97&+8r8Npjq3lO)UvnV5OLP3+F8 zJoL3(%KTyIK3%53*u|SW4SQy9NSHn2z>>Z-ohHj9fBo~BxTkG>jpO_P!yDN~ZVTW+A@|?0!3)oPEMt|LG@fVp0rh zbXp?SI)mq;!f(Mji%O^XT@F|v%y<}y!;Fe2^&L?R# zg++ha>0xzm(fP+tENi!CNX=H;>oh%xBRwd7Vg;|SrAMt}(osv7@L6^32Hy-lmgiZO z${)JZzHVRRDw&o#nW)_hOKOi#>ASM0$Hnk!u43cfX>mzWzZQgdw`cJu z@wGa=Utj2{Y^tfhzUludr*811zgFzh3ZaG5=gO9qrO*6&zKHdK*jcNXAEr|Zo;_18i5KaI z7F5dbS4|7*{Q8OiV{-k%EnV(!Y@hcgd|T9+G*in~#bnmGzbw*Xayd&TDq3`A&i-gK zK|ib7OZm#=8`@vLobTh5elXEL>r*G^v6tR=B=1C@C_1}w^(Oy~Vt2lYpU8ciSi|tV z(S}QW#UZaXncszvz5COn9N^8)@g!9|=@|o|nPi+pN|0u9j(cKmVvc)i9+px#*5B9r zaDc!Z-^=j}1wY4b(LNl?==Qsc|NUolBec3z*fuH1j(x`IRQ592?Lm)p3S zxOZ>fyqkG*{C)ZP4C@M{4jf(B&(~)oQ!P;;A@nD8@>HAC^JY45E-arLI&-h$j>Rgo zxbIx!-^3NX?ehN9=QO;Wz7z^AV(%}AG+!BYW%a2wy?MC@wanMtQk5Yccyw0Fn1#naBNI{D_8yS?6}s2j;Y{q@A2?U;}sBd}}I zxpQ4LuRQLz>zfLcsofFec~l-y^N;Ph=xzlWg+F^Gxh5r;-#buwbNxo}Ci}NChi-mm zU|=xEn>6+C*J_Y(MM;^kp4?{N*=laNqBa$uryV)$WgE7qqaq+cXz z3K0TT_m8E{p42}nr}dvUE2P{MQqT1dDo>RAd~f#6n?L{k{KHhx$IQ< z^@X$j?t}g1TJGoD+xz&%OXYd5aHdx-JZdmM?V`@4rJhqH+`Xmc+OR8dU zYRJbUDhsz}%s=7Nef(jBYny=1iXhj^N@kl=Kb9^kKIiswe$j4eo`N&K3lH3HJ377n zA#2oCn;x^za%Psl=Exf68=D>G52!F|7oB%5asNWA7TuinJ-Kd4C5Or*)@$$F8MbY@ zQ5|@V=k2cWlah=K47*T*9{u(lQ=)<%Yo)c@i#brhcJs{?-%WOxR;<07CaRYqxzV75 zC77e>M&IiVc{kec#5jKn=jxhp2((_xQ((2jhMC6w#m~Newf)ah(BsE#cStSk2G0i3 zgxLZO2=8itW$sjK6O`Kc0at z!~DUa^^2RPwb$~qvuJU;Ki*k)P3vmeGQGzcQzH9zNC;&;FBH4YeMsYmpX77bCCh#q z885xaJ$u6}>9B5fvsYF-FRt`c+jT)RTJN2T<(qrLcUJ$I$f~rBzvc0Q-Fvt4^S9fr zS|R9H-XG~V`No~1ol?#mWn5-gHb409{=g;f#VK#jb6L(GWj@-z>0Il5W#SH{8$7?| z7i{>>_gplBTPow<#9K`&5xn;w>{)aA2e`29uHTmg8tYk&H-(zvO`-1o!68N#h9>4% ziig^u-0aH%B6WF}OuWyQ_-%hxGjp@mNc8Y*Prm; zVf`rZK~n!^?pLXCZBJdq8*R0kr~k1^0sF_oC(rHtH%}~R-&b(C^TS&gwL5 zJ~+AMd7aHk$v2<1HCDg*D&}B2^Yq_zHv5z6k#D**IFu)zQ?HC=xGLAJy;gsh6g#j@y;|n#4Xy(;_&ns&b+6U(dOImu)xkNK6r9>)*S2^Y6KP z=WV_=|Noyq+zrwda>qn@I3@TNb15hGB>5b$crF}c6xn?K(28Rn4Z9QXIJZsyJ;#Pa zxo2gRi{aUm&VFeYGkJw8L%J=`a7R2?asF_{8BdA$59&(sNfRfl{3F`oN}+kx#& z(A{I(l~-q~A5n0wy(!n3W+cpWHaPoJvE|gsyt=0EBX%tmT&1}>d)3#W{h)4#z!%mrqoYGiEt{c8%A~bJm+S+37wPfAVyWm#FZEkOm*$ zgbe$sm3ca^nxA}{*jFstKRe@M$a0}TJ?ACL55rG(tD9By%BcPM86~NBSy=sdN#~Kt z?=zD8XLvrynjhF|iA+Ep62-SSVB zWqurT($TvSY_utB<0Wl{#}*-`tUR zg!j^t6|3&@G(Uf#JU36!>YB@%;z^H}$Vw~O9SRk^{$XQ>ncuqNOMQHdA}c#>oL}|0 zihR^$dtukIx8_Lebvzm zKh;Eez3wNTy71I|?|?itTJEuXz_ukxpMp8 zed122(Gu{z@T$5+K_Gr|SAvf09p|e_n>r3ivs^wXe{t42zkQAxvR$p;E=q8}b(+!D z8k4H?gZm31mrf!JizviaE*Zpx%WeaZ*=effvc{7&knqPRHo2hiJBi!45Vd3rI?~j-D z?^?L#-;wh2;K=GuT`#R^+eYcW^51)^}iXtPi66nB%ZB1dadW3l-&N?A?nuAr?p4E z3&but{(U9$5j%~Ir;n_tzO6phbxWRn1y{qxga5$0eb*n4o3@UHfnhQ?z70Nvt5$G< zh^6(nH1M?FAqNrL;3%yKftm#mwDWjE&OS(9ZWt(jEQ5*7*(YYI)k@Wf4LmOYyo9BN z#p@d6Q|DwJ42`usX{%m*Zl|%iF}RcXZNt2_J|`|u9j}N<0aF4lZCsP=dR&XKQcWXf z>)M5`^1A;V{9~UVdVD7F-$H}xMe|%DSxzcnFaBwGFxJxUU;WlgDgozrefODg_=oPn zpq-zt=NJX{zpz>)%pAE!(nB#fA*xAHvDw6N>uc*RS7j@{o!Itk&*6;QX~Z0ddE^#jKe-aGY_x5U@c2THI`a}m`a%%c-~*wQRH7*`fc4(?G?HqEK zDR+$~wwJIte~MguH9(q2pL=oi|K(9NrxWtG+Iutwtm1Os7w~5~^WBfngyJUfSKbg0 z>{k^3-QlAB<$IQ|(y*-n7`^ONh$fG=;x$?ri^7?|t>}*JJn9Q|olISk^xcbS*jB7_upP z>MAc;zG*Qj6N@Jvk8SIGeXK|C?Ht*yO3z+K27O78nP%o{?)}^7g_KXzw?n>NkEfgs zysLJmD*oV}O9Ioj+pv5OYuj*sq5Y(fI4~h{fN_e!`8bYfqQ#Q>bim)%Bj4x@k_>!k*b@Hu@)iW|W_?ahK6$0;q)UFE=1IP-NLyC?W@hHOj|XNPjt4b+nkGjzonmBQ_=}QoNbBNZ zBpgIySsDml2xB{0t#@r^ZtazA`wEnELyled6TH&e;iNsaX@}P%f#9sD+bbvR4>I7; z1MlSbj0!J&dcd~b^7);ar_Wsfeq6o5c1`NS#Zw%mx`j>&X$h^enpUFoIzmx_(edS~ zWZUR37a#F|xl*iOb1ufrLL@Ez%4Cghh1w@SNlD(>2z{ZlXZhU~L~rYsfSnZ{BTHXXa`Kd+41+gti^mlemd z1x^#2JNg5j=m<(DpL1Q)86#)R#GSNVvBbCFY7M)gxwFQzu#PD^Wt~j5vpC+0772UqIc zegVJe+?|>0w{;h9`&(!Iod5hi@L{hB){Lw(Ef$^lr7G?mcXU=)si?G;ndB6|^@WOT zJTp%(yJ-Gp-2>a}pV)qtuD`g+Vxdv3gD)*R?vcU`Dz zGWXuwf-&pEGOByuNj$T^9&0+Q>2lkf?|T;OtNnX7KUnv+@VmJOU8kpAcU!I`-c_1& z@u${=1xjwApB`V-SNIvZQaeGUwl8bayrM60%jW6WHc$Q5Ho@z+^NIcs`dnSD0bi^a z%jw!W)^QYab=N0k_FRtODl|G$q-E50TG&F|sk8ScSJ-lc8t{gbjdN!j*D*3MT*Mox z_@@LsU4s!tHGJhq?nH3bYy0nc>DaM|_uqHt-P$5hu$m(*mPNF+Y4*BfF9m{cxm?mX zl3uiMfre5ogS?lG@ah#MV#P)K?4QrKEWT$SSIw|(L*~IFK8%%TqGlZ4^D8Rg_M%Qz z;nQki5^I+AG)vE82|TgDG>gaCNF>mhqgKc|M&{%exjSBL&kUcGHyL=8y<8r&_}Yrf zr^Rf^_F0o+zN8j?c)YY?<(fA+kJ@Y97b#Df_owKpcj|dJ!PRD58+_K>j5yxbn;2o1 z(_>%}_-42G#Zrx+gS$PWcj+qLeK%EPU3rB4W5f3+T#l78@g(ck9lmSEU;F*bB30Kz z0p|k3yIxy(Tv~r70svYS7{{kB{FPY&|m-TB5qq(bI%h)cL;?23{<|EJ{UGc3Bk zFz%BHOO^hM3nA?$lD?+XU0?Mta;y?uyrn;ITepnhtofgLo`qE9JNsYI+Vz>kcm0>R z1=d%4Btwt#?47mosrnPS1!9LS)PBW17LhzUXVt#cP8qNE@FvS7*nZ^!%dC zl8ju~68_-(pnI+V>Ak)c$mJvBCA#F#rCfvM8Y`q1IT*~8WMnp+xP9I3lGbg9-}TAA z|Hrv+MLom%Uq&5jzuwJH>8Z$RkE0dDZ83-mkCy$CV(nS<9+0)>Z#k zOR2MCJx?1KC$pB7!HOh~!&+_y!3lXQJ(N_}Y~kq9k_eulIAOWW{lv>G6H{KPHkyR% z1~;vXx*Hu6eRG}OmDp!FyZF`$?(r2{-8fe_^!2{2*)vU_U0RdA$!l8F&7V7$u6n$= zrtt0^qy9ac`(i&xZq1zV|NfpUKRa38o<6h1Ozg~A(aleSShsU-i8}ga&Vp@17T4Gu z?|d}7`*eQ{*Cwua86A&>%uVkc-O*OP!{0#S+QV7<=IZXy+v;1cw&Ath*PDO(T+L?& zf93o&jpwqyv_8-JxMa6ZsnGi?X3CkasoLPm`nIJ_PUTR&&!fhsb}2c<<%<29aSPgx z&$#x%rDORFMG4EtGmO{8^2&sL{K4`_{i^P?Yb%d(^cV*{cd<-&KBOk3^6zS0(+uCp z$tf0<&kUSI@YucmkS-OlBNb;n2y(ge{E`ZTs0X=1#dZ$LFl;WyREJzjxD?d|Gm8ZOwt=*gS{RCl}xKVt)JH zU`nRc++AzjU8n77uZ#6FKYOHbkMDHnpr5@(JIZ&gKdtV{t5|iy)u(aYgIg0-7GA1U z4$k`1{^ADs7L?a1Nfz6f7#KvLOYk6T3(#|(7XIwuoS#=*l9*Ql%?-H$;1bpL@{(TN zz+~ywAOF5sR4QEX(5*1BV?{?}fao3H#}dIwOlP+|Nbi&`dLZ{0nm0Y2b-AQIhmNS`(#SV# z&5GR?jkfx#jfM+f&S2GN@%z5ae7{$3$1U$g^`d<}YEzUiYv%dwG);}(xS}I;3+sB$ z@}{m^_XGcOKM|hVrgXM#oy*y_g)Vp9ERF0>wL+G4?0G2Sqs+*_unuKRmeimJt-Mol zGs=Z5V>}xEyIv$*^uJ$PS$dhI6G!BwRu{2T$;Pu)^;~FE?!6Dsn$+tDUfX?*iBCD*?MXg;=sgw?xgq`pW+w z|Fg}-=k|WLdAIXjUfe--Aj(|mk6F65!H&CfMG=PLty&woB8KI5aM{=N?V zk1tLe?R(^^yHD$Jwo%(2j)Z`N29MWQf8?#1?0)}K66?H=k0Nc}ALQ6~mMOimjZ5+7IpW-*l?!EoA3oT)KHu%j{c`^P!u~VSS^KPY zY%*SMyvMiq|Ac#U4Kz44erqJzwrxFaBJ{EOnPyR+#G1u68urutzWR1@XYig|P`-`f zcGhiSxA_ydXq0g$Wjb%?v3|q!?fim`UtUd&G~X2ZiLX%EO|h&jLfYn*8M~pR{^=7F z4J?(Se4bxDX!-Vqq4DnEyPTJ;Qg^@WU=UyV^2Dvp+y1;!NZn!|VV>-#pS1e-ugh*~ zk0bW=>GYpF`K3_nf{&JA!khE2K5mgSPk!5PW3qhfc~Cuuk5@@zA{(HJJ0n<2U(>(qq|rNl2U zIzixXa7b5L&W za|`}+$41=u@zSYjqU|5+MD35Nica3)a?)+5>GWkMs^h~p3h#cS(f&+gLDP%#5;1`v z9c`2zuj(CVo^Nw{_OJAK9Y7co0rvU&D{89iED3+)up-weboo|&XsZ9?J;Vf^vlreP&wb+ziS?I z7yOQ?Ot1Tt`eKu3@ZQ$6{gd9Gs0-{5Hn@{kbigAxQ?vGFOX@dujeVO^Q`VSG7F(Jy zC11Pf<2>u#$EH~esmhnES>j&W@~`;Af}Z!%Qd2)pO@5rqckf-ouIijS&l0kpnk|z) zeXJx?a9x`NZx;VSzFE4;XY~#}z4b{dkmt9mQ*F0<~sh1l}| zPvz~lQHy*Rt@2KGuC>(Jn-INg{sS(L?I$0~NwTy2nq0Wy2eZ~`alzY)HZNo{3=67V3hyHnnlpAu_=KV_fHRS@!JIP`fy9PaX6$iaZ9N{;gWhxql ztyT}PW~^`g&C&O4XRF&3VS5(W7aX0s`nSH+EBrsMm|5^__MG*%XBxk|c5LIC$2M{N zu@fInpL%YBh}hw9y(G)bqTYmsVq)q6&OD2wB2M+6Gg_@(7}@D@bfUJ(Pt}Y1Hz&0$ zasR7#@%^KfwJkyJ^IdYqJ$)a18fjXHL#9bzZUT=cLTyNGpC%8C|JoZ9D2t z^6k2<$zhnj+$w#!)+EvPjSiRfl#X0=ysYUdct}a8`>=+h+T9b~SBq^gmb`hJl={c0 zc+xR$eG#QSmW!V|R~|3t64Z>bc_mGbD&MC`k{_M7w-xL7?FI(Pry z^GcqU&w7#P->CTSZ!0vpifF$u+BA!iEl!^V=u%NjGO|;hefd(JS(BbMd3J=( zn!np)=YDxseCMbBhV+KjOTY76nkTz3^IgH!e$KgH_k3qNb+X(&#`x#t>p$*DdpaM9 zy)W5y;*#6Z2#~!WSP}{hcQ;KhSRRg!uaj^O7#@Y%xsZGmcIA zF0QeCK9B$0deIp3g%=C+6BGa4F{;W}jQMh+>Rs9wyE2&%COe%~WVkc+C!{W37`~zN zn~=Nn^$jbV*REZje?*VNocFHsjWf@eEVM~#k6yUYsHxhL@zq?Ii3frldPVars-kbHi`>1Tu zi5Tlo26x+*r2f!*9HX&%%i5|nOXA8M^LMF4>P;|KJ?Yh$qZr-vMzdr|i3q<=Y6*R zKBxNqzpv-le`k1ebUW9!#}NW=C4xG5y6>%S+N1Wkl(kMqyjhS{+ED9p3lpn4>+dNS z?A9jmq^IoBJd!TDr*S(=W%PtXN41nW+z(_~bt}Sq?hAK4XWgmb9KJ#HI8#UWwSWl> z;(NP|COIVsHAX50Ct0XI7Gj>AcEiMI>G>BIx4iRlV?UE}rl?}l?Y}&Xmv?1EEi*nI zU_K``AbHx+w+E-pJN;3{`MSq3Kexv-_oSYYtUBlUaT0HyOFNr?n$PK%GUp~q{#Q(V zVsJQM$EM|53wED3@@SsPvRv)t++d!y58qv73h+$6@nq$Z8I`SSKMvhBY~vMw>r)lk z`|yR+ml; z{PO+01*>LWDW0t4tW~D8IEnp`*0+bQqLDtUHyHYANLXcQ$R#Q+UnFg-CG%z1f~``M zANii=Hd_2hRAypfK9rh}#e9N?1{AZ&)o21Vwd!d#gCF}7Cj2CIkutl=8YN2v%`uM z@|OuM5(tlYB&Is&N$&3S(3(E|lsh3GRrd)!dHsspV#fCL9lM#_4HX_si#ESV&G@}u z^J?gxTdS?j4{TU`%w)&zzHd60C9iE-7%}Hz(T-az;sy0*)w07xGMWo7OFj&{G&7}R zU8ZsO&CUP0-*GE{(S*I;+d^f(>w)VW_OdZjEVTtFDX>CY4G|gUSv9nuA(UzyV zT74d0m6Ke#YO9nE7A$*}WV7>Awt<|-^WeUjzJUQjdAG{K=D07N`!vnD)Tn>{w@rtO z&oy`oFDW=j^x*Dg=K52gx3@u{P8tsTC~X1b6)4>CskU{RWsA;o;HDXj*n;W zx+expA7ply6t!w^k`7xo!A|YgOJ|l9i>Lb~bjZ(L?9!~TWi;C zXWJG!bZ~Q=tClKJuaHt~QfOEg-(sYUB zRT-Vk&A%hu`DYw4Z6=7dBTXxCJOIr_5tPXm# z-C@4SM5jsmDtC8x^QJE8zG2~aM@fpKD89C19+Q-(lIVqy1IAaB-Gb-aKha;X)1U9; zch?!Zk9}u%-S|`Op|{{_xWfyvl$T~I_y0L~C*1xX*OB6@cKOwd+&@nYPt_fL?WdQ( zUHNTG9@mnununxfUTL;iz2IhLeZ^sVsdd65Zq20%C!S57$l^WG=46PM&nf$#FN9u* zZ!F!@kv@By=m(j#fzF3xZT#;t-Es-BEx!}s2i;#G0PD^GM}7e*CBxwb66sU+`3E*rY$FB3Kz1 z?0N7N*J=a?8$dl?z2uz4;^L{nw?UisY%eeCy}IIS-Sx25A+;PoR&i|G5}>hy!|p}! zth{8eO%qK-zpNHvISARdw_2$pvsAJ8#JQQ4n>TMhuix*_P`1IYLu8uqg$+Wp=k)FA z3zf}oNhv+9E@7(a8u4w7pLH# z>~zR+u5{Db_&i=d9WU(S8fn_mUTY`i{o8yVE9s%##!fSLRuZo_Z z)K_^UgL`&=_zUsS0Ol>%=9jH}TKO%=W&-EG9ePKyBOWqn=uOX^_Wzhfr{UJG47<7` zr9M8}afs7LYtEr9ha}Hv%{go%%*h?`XWBEl&gi9X5x*|Z{ZqidLH0S*<(O4{Jdd6m zb)3-#Rl+lWUlIqMZQzBnA_%<_HpCyRZkee$DXuxGxv6<2h~bR6VgHMz!v+7(DcxnQ zneJJ*c1c%qQKqxj{3W{zJEGqR2<`S;ePz<+8=Mx6lQx%3)0^gZ?q$j(5vG>+TLLuV zy?nURmO0mb!%6v%7#zGb9+ zbWfma!C&3eU5V4%(qoTr@}3*E`5NygE|qqT*R`#iA|pN>2^QV#rMZ^dV*a0$DZ!KH z9(!zU_JoI}Cn@m2opXEn-`)sn2+G&l(HFQNOY5rJ(XG?8udm$Tntk+9m*=)fqZp|r zlm2&yudLgeXtC$srf{G3Io)4ZpD7DAJ8xUW<2van3rpwTvLnxx?UpNR&U~`k>1VIH z^(*7e1xIxPR)}+!-&`^MXTwU1zU`qs%E}KO2=ntq|BpDDZn*4`@t!9$bKl?eYJIeB zPLUUHU&gDbgE4tccek4?3Y9Jmk2cs^bydOIz4&z7T3y-HcKe0G*AoK`=LDU8z-skI z>)t`hq9Whuhh6}3NlK4ee#{NgCJ&?ghZ z3&r*aeDwa~b+q!#rzt7L75%<-Yaf|S4*lbHRCZ3_N4tBArESc zd`E~++U$d~-nAS(-xIn&!^%{@_{#f*tf%Liy`2=jtZ?q)IcDOqGE3M^UG-xnIG0Rp zYfO$Z9pPnR4;Sq2UVURJySc*MqYn@6_)-1k zUbD^p{p=H`;&v+<#v9 zZubM`uBb_cK@039mp5dr-*Ma7=ArUE=L*+zGwe3l3!KPFG`D{6W5vdr*{;9N9t@mY zqq2&nk-v=fV@6Gv_(8KRbzf{2nB+NEOSU*YczyQ%=J`7uViqn5d{A5eCE%iHQ+RFn zihRKr)vK1CdDOH1&RcEE=X+nzvue3+@OJh6g&h`I(f_S~*}J9Rl)pR= za`}{5G+|*rZ+nKs!o(C_PARuciCE{BHbbdnbROO7! z->()seG{1e<%$|x)UVCCe_iX>+vHDp%*(lR`WD|e=hG_`{+imzKbV{L%=KPQ+PtqD zXZrG#9iI5|z{jfU`FmTM>YLsvNz6a>@};j#hUDDCYw|@tc3)e(y`(tz?rWAQ%rh_D z{;}odmH&3_q59rxaRN=VpSdZYSsT=M)!XD`Pk z_kVKBT)#0mF8tzlw%+8&)8d@>TveVev5Ply54Yild*{}01%}zV_09UF;#|F$*VHpY z;?=)rjF&6FNAJ;}tTFk<+Ax-N-27h-2%*u;mg8HIH&9MS7V zt#F~8->G5I<-(yN|M+I6OghQ1ROnOz?{|~TwIR9!@1}$?FJz56&?LU>q>1bdpIa$G zQAeZ~{b&4g^l8+lm~QqI&)1VwUv%^D`6c~FkV)$MJfBNJQel~sZJ*ECyTA5Z?WZ66 zxN9J$U__8@|Tt55qz%a$Ht$1j=_E}U;yZ?-u4e0eI*h9{Eu=A;(+DSoToBb8J% z?v(6P%`5r#??PX=q_DyP; zFU!^?AJCjtmbdOoL*>*ZH5;#qL^`xD&sdzknW=eW$-)`0CG@7eJrm-lZ#gY+@7WV2 zUrKi0kUM=sdfVphr57hL9So|xq4`R(ecI1WPiG`w6KU1W_M7ph_JCQ@F6VBSH=$eD zydJ0SJyCIao@+|V_l+?hUHHVMJ%-s8a<{63P zzQ_%p8AetMqf?b%iEssa>p$yRk?HPk5fZpqN;}L)r7x^eb#JoPsTV>W`bL+ct2HNO zo!Zu$w0-GxFE`JlekH4J^m2-Z&rrFrOzGt6y*_F)-=t5}j1i46etqoarnfUHlly+I ziY-`lvnkhQInSn#$uYqnIo%%w*DQOaz<1(D%u(x#@MGdy>mJW?n7n%Zn;BupGw+@g z`xNqln|1!%UqPBBHm{j@ZP`y#{S9AL55CvCq3XU}cGbTL*%h}W z6i=**(6Y6Eo%dtfn5CMcDtH;|G~~Wsk=7c8dbk6tz-Is^lrK^%XICFWw*W_ zaQ}Z`*$*Clv5tUE6)=OCFRXx3!I_BgIDihePXEFyK zN;&*--M8{fNo(!pinn6nmrpHxc7i9&_K|ZZUw+d0n$~}rTkafwRkg|_X#TPVYdZat z-};{DyglJa?6bRvt-O4!9J`|Y4ECIL-qG`Q`vdWE;Wg{l&vh}|u{Ex35&%)`= z&x?#cFi5wj3HY|jC0w2mULKXfHhXf{vXJll^0n);w=DL^WZbo*O#0@we`!w*-*>#d zz9fEws^qmp`_3&{)4KFrO2Fd(H-8va{Po?E?Koe$F?Ck>3oY+W#wQbWHKHaouRb}? zed-!D^*cvd3%B3vUd-V(@1ypk6ND+WZk;TTWQzU)Ba^@%-=WYYN}6iyw@^AL(ub7S*!BH zj`&?aWb3Xt<%v9&`592H@}}+K4zaA&vRY9Kqzui?MeMr#f}OYppN2gNzRA66SwUX* z@`JZuTy)Z#r`QwmPe`@o*~zn^O7}U!^TOHYZ!Vfw*d3^6zuaNfum85+Dhl{_E?{io zxjNDO(4(@a{{QnsX4vT(7^q}^I*{|JTrptb#C7M+&Jy^1$z$$s5oQ0vADn;A7X;ZX zR8;x#yyg1c^bDSl+zH`I|Cs+=ntMb(U`1_BxzK*+hu0?EzQeV2Q}2%6XM8-jP70MS ze(!fzN_3J;P21X#p!N!v<*%G;Wn&LAA9>yM_Ug>df2(qL@C${$IGMjDnBy;a*i}<@ z=PhM61_o_jd=-!`@jX6hcYg9|KWRgew)%EYHP80!$xb`too2Qi^~hPdOF=0}g@s$7 zT0NQ9%~(#tdg6=VtA29w32t98Re2{5jNwHn^ANl`w-)7#gpEr+D=HZ4uqiwGX zHUuBn`xdh$=FRROj~+E7E-Rm6P*J-9Ot^KuUACz1U zm~dl>y3s3bWu=LRYks`l9Buc^@z7b{51Wd7PI=6jCsJ5(PS`8wPw=rA*Mmz>F6oL} zt@pG%aqlmYN(rNwpXr%mtj#4$+W4K<`Rb^dB}vRF%e|DTBed{LVRe?Ob7()C+GA(u z!zm)tmE!gRTNlcl-gBT!NYLEG;>-W^>s|ZgKkA&Ho~2`S>(0gRmaEj}io8B}cujky z&W?=g8&2&H6TFz)TBq;cEpeyo&zH63lXkDX)TX_7WuK;P)HX@0;MFT#rSffUoiD%N z|MA*6zS2a=66Y&3H@loaW;sh&NOI$ypRC^|vlT?t1y1XZ*z~8PEme5F&UEf|B7b5E zM6;*8W;N%^d!{m5_f~$=ZI_d`u37bKOqDnMth{}hziF5EmKT>gSDT#vKc9caU+|u? zP|p1tp#5ZFc>DbXR#N$v=9FX>2aP}Rap~F^J*Dg zSDyR1lXYHY=Fe-hT6)t{0*)>|CjRKknJY?eY>XS6i-bO3`ucbBrl85*HzXt^BxguC zG)!!r*f_J1^#}_CsLj>KY~DGAfq~&8=w2^xW)`y6$pqwQB9Cqy4Sxx0ZT;t+nKG#) zB6niM#D!v+n*|O`J=!|0;i8@v>%tu+R<*wDYLjQpEGcw7T6=$~*1O-+4_!PU*#B$g zyvO$+#y<@Fa&Knl>4TTp_TQMir~LWdr+?qQzxQ43@7p*0_KY`r@*hX^*2qZSS@z(Y zhSejEg~o2(u{I^gH?oy)C`p$oPvrNueY0tL?6;$Z=HEU)ZnUT>oFM)tc-Y@DiGo8(bu8;Lc#pC1%h zOgCS>;UmZGN;Os1#X?HAeQ%fKPcpc5DNsv%)8D0CxjoXm9!DufU%9(*jlrg!-@bWO zy5!70pEO-_P2(KZu0v(n<~euO9rN^gIXIL5b2r4fZK&v9E!}SY^`YF}`$9)HHW{)$ z7P@w|p_BPYdDp{D1|{J<7n~h;Sl(W+U$^V zUESmPLu^mEhx~%tva15?OB01T4Y{@-*Wrr}nRH>@Sy#@id)r)h-n}I2F7RnxYk8L1 zeyOt0XI4yBb(!n6Kl&PP_@POeg;FjzWKDTz&5q7GB)`$M@zsJPX0wkIrd}xVkiWQj zTAui(%F{|)w=RxZQSh@kxlN+%>?GZVrsi(5qaH_{6pP9XC~j{tJ27_==l)Qcvn3|G zlOkolDvI(y78LFO^g*I;MTLxi!1WasLhhk9t;<7gn$tsV+MkQ=S@6hp&yq)}GE27w zedLM@{U{X|{-LeQ{NuEy?V)>`%R^<7-*d{{JN#SA?m!`{{Hh-u^4dRK4)NYKQ6)iQ>V{fc| z6fBpQ@?ieQ50=j-I?wKkj{L~FFXW@>y`Yb#`z9{XZAq;Ye*eKUB3{{xvzsp{h*wv3 z^Vto@b!V3yw05~9QR;AZI@`_5Pd6O0zVKY@Mai4F-%I{{_cqG;@zYGVM)BfOXY&hu zs~-GOf3|1Jw7yyI0;*Sfh|hdn;qLTm>FF~ipS~&VSJrqO;H|CyvdvNLth9OFlnHaQ z`R{HtPd&aZ<$M0g+v_wgJPq9B?s8M~X>Re?tF32WW-SZ3bu9Lx;+rOG6~$QV{c9`d zcm6GD-MQ3kvw+L=4P6e^xeqGOWpUgUx-4GpwMScY%f{5a%Qf2HFW0blZ7PVl`mw$`mH-F5m1v*_KTbJ@4w{c}FF;7irtFMJc`zWnI=J!50i&Sx83x4zoR zu}E)`w}{fwT;tff%}*r{Z7M!@dB@`}rTtE)Qfu#M@Cx@lkvZ|XSm)`^lhfz!_sjP^ zRj`dwnfY1ANqaFRKEvQ|ESnR;yW;YL_B!8Y2t~3~=%t}5PVkK;psewOrGC-A|keQ`GS;X0n`79p3aP` zVOz+o{Un&&>vPzD1hn4spZ51P2icMxtQgM2ayvNR=ig_E0$8rvJW!rgcoNU=#{~20U zN_9&*i+XR{9C7rL)-=j9U*mI{sYW2P&Y4$m_0%fc3+_)j$5|VaCs7S+EdgF|lb3E%+pX}Ov zLtXQR*L-_{|H9H94s+tm9sQ(Vv|Bx&r?8__q;~a=93_Rl6Fujr8na}IcA7t0cHq0w zra@pNjcDp2Tv*zyE zTRwK?2i91hyRzQuvAF#d$ry>mSM2Ep$LvogUMViSyv$%}zrWes;_q{+&+Xj*dDr*# z^>xt<8|3f1ZscxXmWew&9kX zz|v)#qU@|M+>hU;747508=1dHnV5lmfn{lpTrh1KVi}A(6W&R2a`~-}5Xx&Oyo!cB8?W*wN%!^8{ z{kj|VzHW$>E7vi7AMny=?E6KBn`!jH=RcedPXFO` z@cIw8gWGGKF_zssn=X4m_)n-{$NJJkue9R4xwfp|e3d0i$ocE9IR!d*bt;%QRJxTf z`{jK!(|dF7dY4BgU+3jLKjS&?oR(?qqGs1DJAbX*xpU_--JB}rw)Jf7&6~|PgV~Fh zEf&?#RNcHNvM(+0eMh9$zg_Ci3R@Y!o4A;0*M_=FUpmv|ym@k5snfeXtVJfVDRyq@ z>+IOd6+`9(&5v7=D0sv1SX`TJ^Dn+kv-K+C6J*bp{VHi+Zhc%cO=3CAtdjWTEk_h@ zGOg{LYWsYTb>itwyTWqawYgkEP6w_2dC4SHf9IYL?#It(RxY>R-lTE-?uMs%mcF~n z7Os){7AqUFIq6ChALp~bb$2#@Gu67_k$7!)b_w&+TMng8!d0%%SKFot*LB++I=boM zi_30PQ>zZ@i0{3&?9*w{s~XwvFI~G-`|fP+@|_&Ea>t&!z27xXyCram@?Ts$z@%q(R#E2FPsxJ`{Hu3nC{?cRKC3*F_2rwh z1=B?)Gg-SEH_lK=6=O z|E}3^_h?_G*ynBC60d)s?ATe6VDWa*)?>fsB`IeYAE}I(WgfVOnQUMVMq^YYG`!vEjN*WVlAvrWgOdPFPm;5uFlw~e0=ZG z&e`3ZTdtHnGRw@e-pi@j9Hbbd^5%)@f2E&{Z@KyXqOC8dExT-&x@`Z-%P((k-5@!g zAvNv$hFit^ioey|_p1N<`SyE;w18g4Hh+<7ui(4 z<8`cEt={8#O^G@hKbW++!Zse0eRuq$>b^-Iw>AapocQ5(Y&*}xLq5HZy1Uk0Jz?4Q zJaQgSvtr1NgpL_!k1ab|P_^;iiWf_(E}P2FYn!Qd$%=q=YWmi8`Zd&=DO>$m!V7c*?FWu%XbOy{g1q#cdI5pUKd!jg6rzHTSuZ&UrqU1d%3`-?cSzrX*tEaS-iO}<6`pR})kuwJU;=g;23 zcD*60#xi5pftlO28%5Yx2O0WIj+ilL-n_I6yQf|cetgmLvY=LYA>Z@RB?ZApGv@>v zc5c?XcO+Wt-Z4&5;To&XU>^0~p-Ypb#6$OVe-Ei?@a9<=?j~ZEC;6KF?8LyJ#7C2Q zHgR#Ahde0=KDMjNMr+Bl|Al64M-o+qYX5r87tuds{P*sQzn0f}O)hn%hu=wCTRy+( zw2Zo_e9YF(%zL>d<@gtTc-JNMq3&z@bia${>2vH-jd+DPfAp6qy=mDX6yCi-MLp3o zFhx|)WRqvrBqu2zskJ688N72Y%u`;nQMTo$O6E*imo0Dj+P18eJ#n7Jj+61G!aI#f zH?u{5n@*H%ux;gz-PV5VcGdOVoqK&B@oqCd_)Vg}u2b;cSD{T`l$R8E|2X#{p=Hwb zosX@5H_qL0F|5J+yW$PKi;0I*iY4E&yDSNN=6__Kl2BgiKZhL8+pV8iF6zt_^PjVH zWA_i?p3i@_Ogj3iK=N?MiHrLuPWbq*MWcOP+=TZ`Pai*(x!=6ZW!8ZZQ^sX>b`G4) zM^Bu2R3tEa$qj*9yWr5`M@Fu56cO7hv> zn#PA$pGzn%n_rsdf9bvrm*W+i&ZhM9Y*Vvu&y1C+?6O#1E#8@1RX0UBOLErI_=!_C z?B#dgxN)M3i2TFH4El;$3+B#0@a;$6q8;&%4JUGU>_4D!)$E&bM0DYL_O%tgCG|bW z3Z?QDzJX5wyv(vDUYmu1;UXvUSRMK{IX!%1b#4WIiD~EqHN7FW`Ij9e>eg*6-j=V55EW~dkdXYL{)a_^ zBfY&*F*Et(d)xQF@BJ?Qe#8D>&0n?zUVfe#8$x^L&1vl3F{SG?+qwr?UF(*vn6c=! zX4H}$j)99Jlup?5EOM|>I$`-#oW;vFub64AHHYg3Zhp>t7H4<7-@Ud%pt4==wzy*X zZl5>1?i9;kFMp&UwDp;sb%OG1w+H4*2W#)G_wBp=@^jUlx2B8yVzlSanfKs|@xeXe z(QCfX+3GZJYyIR$Vy()JotG_?O@&i+X3ua}HD32%TW9DFwRcNi=w0)ujenxpI$;9xqgc(cM9!Xb$Y&|U1~h*#ABQP-?5)K zd7(r0(p5LS7>(l>s06IeQgz%nYkkPdwQ38ps$(~A`M%<&N#isrUERig>u#UokeHSy zDW7oj%BA~_VSNj3{bX^Qy6}gCm)9n7kVPaAYJUuFX~5 z^u*)!k!4eY7X914CG%Ihhx*EP$+(J!e>Y}2WmsQ6>6~s=>$$x4rO)k`+3Nb08InC! z@9s`@?U;Os=Xu=R>UTSzKev9q=6}KK>(?1=I_68fIJB9uWujq+jNyf@#ZrAQf9zpo zJ63+e#(LMY8hrjIDzLjBX0f0BBt2N_6Pr^-*m3Tf+KH2!`ZD*4nNHbp zfk$1xFzDHmL!GBj>Zt2WSFjdaJu{tS@PT!X$p+E$l0TIEKHi;fq3F9@b;afL&%5(n zoi1Mt{Iyj({>*M?p@`=h*Dr5*qx)2b)9ZQQN8>v?-?zRweRJQ-HP%hrM;NMfDzsbJI@5^Tsb@|2$RMZ>NgmyEj%&MU(q}ha5fm zwzzBZyD1MQg*HB}+WJo~ilqwRC&wEVVy z|ERCP-XZU*?1h-+kKUc!9oKU*J$KQB`GP!KA62OT`jT_-?0J!Asy+AaDwn73jVdeJ z{CJB0*5WJPE21hh&7z;lw41SZt$4e9;{;v5Z%h04Kj_)be8;O+D|+Uqiw1ETqM5Pr z{2$+LQh7OzZ|BpR!cTsj{nic>t`r<|;cxR*xp21pw(p)US)pwvOWe6x(~Y7f^!(5H zS-X~}BD4I5&G%A@%X~6m7?}@V?TBVS=!B= z+xAVuKUOw`L620?{VWp;9+&OIh)$9`~G3D7uon<@Oqh; z{j`L;Gac`7eyiz-Kff&Mq`z4D^7jWi=7;tztG2&3bK>4=@1tF_MO{z#^~m^4o+}?d z-*MHG%IkvnK5M<)b$Q;;uGbSJ8+E2j=%1YslEizXZ{5L90sbHEE1TV%DY@KZ>71C; zi~Bd!uuSL-yk}td@P~5ajMC4ob`Jwv_t#I^uFILb{ovkvJEAJ&wbM?2{<`6I_THnb zcRnbeGHJu)5qZ%yO=tp zTU_F^n)OpTR=(puY4hOpnr5ApEiT*l@a$CFa94Q3yu}Z1_+$%*U)sxZ?Tgr~^-d>S zuB2w{fBDbyiz(mC(==dWIxgVBZ=8O0hqcvem@4t`> zeES*?ykE@`#Klzhp+qadbV>Kt{VH{yr?#vL+svF9ZQbwgIrYrZt*#~JCKC$kPi^t_ z@6?6aBjIV!aeV^y-oy2*t z_`(fWgP)gH$!a|*t28eaxo1`@>;89%y-vxSt_`jlpH%%XGMRnw4PE8xv9fC8H^-LV z*r-%phsXPs?bq(DzpebGv_$yqqqDa$bMQm}~9vow>V}p8qfwoF@I`)uO%5 zfwg_TOCxkr=0!Q!h-EEXy7bho)+#&9ZM?I+e@mwSB^Z1}R`R*3 zX2{>ae$b^Rehqs|>`M2?ygBQE=x*jyTVeR!-zU9_N*G zyy|9*)h>s(2mY5@%E$0W^5Q3E4v$ke=dx~6+4@#Z`f!N-E`x&p{0I6g6hflT z7csLhZaHz}X@~pTKJFW*c3%r^F*+R~9<`svdQ%JU!rm>BPS)>J1I^0LS|l7*-YMdJ zD(9375<*z(*Ih0msv(s^-tBbAjqU7UM zyKQ%$tC;p@wcvKK6WUkGG~#@}+(~=Xw({xqlm#!v>d&rTdOYm;)mpm}v$YFfO02Y+ypDg~#ohagtG=Fl z{9{i2bJ<;j5B6$imG-<;Z)-^w(KMdeQMvJPRdpN>samLG@Rm+WMr7ktzb#>agh*ewXtw_7+Qkrdk zvBA{m$_6<_sV#0Dv#trd%wDVBxhZ{NceNCX8xyp^E{95$G6+O z4l6DFCF;3n<>au}E2rE$T%Bxvwmf<(^YY+T9w+7>@;Pxay>;!fr&qI08iV4v)u!6+ z^P2T@*LvLx$?Pp=&08d6q|bk^=FRPSE$nJ8mexBbzjYhabn%~DQ5DO=SA1B>@Y~h! zp2Pe44f9-HzL&GV%a_vl?cuxoiaKeT-}43UowvRjz(4WE>^bV6+cre~T(kXn^btv4 zwpD*_x21A;IrMC+3;g>wu4;aa?*G^?DvP%|fB9TBna_2vUhT2$gYVs?xtjOvViww7 zFT0WN(S-GyPO~bMGoN}szJC9hZQb+7Ab(vT$9v)8y1B;|8s}w{GKf}ZfuR9nd-lDj_fI^{l8?* zl_x@GY;109YHS)H$FXzNziG(`Wnf^4K$&tz@3~>Ucr7=vBtt(nSwAQ>Ewv~$FF6&X z_ZH;uFYGAt-*(q-=G&}{D-#u}}w=tS&JL@}vHR@Vnzcd#<2>Z_Aru@?5P|9}s%&XmOE#LFBJ)PIj z{qi_L;D@`_q`2$X+2`@>N$;KOa&*@{t1tb3jo(h=n!Rz_LZ8>-zuzv|G_j=mY=!;G z@Z*<-m&Iq=SL}ZKz3gw93hOi(k%v!q^z3H(E_27-HR0$%W}A`+i(Vy&X7gpO5Xcg* z`xx}@bjY#BJ9gd?C#M+9UM~Ez@WtK?`BM(UVQwrx*T4R>BW1_7g;#p(s?MaY+o8Pq z{MuKGJEGK|asSVjPF%IN#QWGnyA#V7c?v|yz0^H=P&#k(uePgo z%bhFgIxp@BQCL>DoayA+IZtk?-mp0#yl3apn%U1T%P1SpS{?5gKSB2p&$>DG`_qaK z{;0_9=v3sI?Uu`td{`$ZLUnaY-I1WRDZGhw4jXee^lqK$dC_X)i_7olr#>z|XMVbf ztu^=z_ZdOmf2Wv!GJ{qo=(Q(mA7^A>h(K9}fu2nC@%6WYGjj`aQk^o>T~d=Xa}#qQ z343bT>tNwCf{Y@SfV`h$(_B=|DAgen(`_C ze0;zCU#16!HL8#1u%CYr$0{(T}s( zqYV@vmddT)aANj8#Yd|eX7$XvCQ=*Xo4#d9q17FA2Me_YyUa6Fe2yBpi`uTRaC1XL=|yB|shfn;qB;X6dvvbJ%hIfEd$H)&mSd&G>5pzL zv0UJHX_xgRpCwbaRB7$JH7lU_=c(Mu*J37D8O;<6@ZUK7^<|UFMNS^G?mi8f$#8qu z*Cm3{7cOK@Ske17%R8;;h)=egk3(!@ba+q1@}+MVCaXWvy|u2&aPUgKdx|By@>f7zU>|0rxDs$9Svi~usSUz_~tJpIawc;i1_QO1usuU=95m*VBC{l?(%n(EXy$%PE>PrW#*&}}zQZpy{;yAJF0 zZQyvkqvv~p?~&g|b`JvP9jcRL&M|43Y&7rKhMr&x-N(-J>W)m*zfYY(==eOReF!}Z1Sl$~&7xA-F4^%`pq{$tM*kIV+blq@_5c2y!nN9)$@l^tJltH{*i4^A|ABirQRL;C%yAjBAFjDR+e}replb3)ZxP=Wz(&> z6?6V6ZFo5Em@1>W(RtnzKXuP9d{y?ZanT8V7xAYD9xdfryO8(e%uSulW!GjkEwr57 zex_2{GQ{}gA{n^@inp_N%lai>Y*_dtZ>Qkg#M>FhJ0Ja7t1t0%!!njT@ja)r)vw9& zJl$Z{K8y8)Gt0(xE#C_!Zog}m6_>bwYtGUApS^v!|NSXj^{Oju+exJ_6BjL>+w#op z_N?+F1=hP9&GI+ftcy?kSAWjyqI>t-jXY=H#y9ajp3!?R<9S)Ep^5gaT{o4!?BLDa zB)u&yv##4?S7C07?ZX|ry0^X3-C-B#B6_=*d2chXA6J1whOoU;>bZsc5?sZ1=7zc} z7kfKKojVx*!EbwwVBkiHiy!v(N@y0X*=!l}X0?MuK1X(B#=-+OOMXwDzJBqkSLcu2 zK4TtmDW>^aQt(mUEB7{@Gt%Ai(d$G|_3d{F$$YarG+a2WM47i-s%TnhzkAo*+;uW$ z<-2Q4e(ctYe7&}(tg}z=q;}=e*(*L;?hQKIcR5`3;kD-dx}{HjuS|~m;`O{%Pyc8B zwrT%oxu2fVFZ45GyGg%p^4sDYx88o+nZ5n#hQB@M-%eg**nZ%U>jv&ex9TrAnoHHz z@^9eHd);)p-raSMqUMGF<#!JM`n^Kn-NK1JFGaJK7tatn_ja$f#4kR*=Q%IRIj%n} zI@4CyJi$L8+Rk(KzHR3`qW>)tn!Ei$$r-W36CR2z{hgt9pM8hT z(+<1&0lefuz&VLUkBxyL2xVO;dR3&1uPO@3OH6}QKU*!UYogOjpMS26k3G5R@$4tJ zf)=;6{8(yH7|oj(H2s9H)bt3?-0dqTPkk1(Yg=f_NspoxiHn(;-f*T!-@R1kef^+` z*|ydxmU5Y1+Yid+B-#^?eXo6P{r+{$ zr=$IL+zicc!erGRHnEA>EIYjRgGHjhz&CG}x|s)DS?7g33@-_Is42VX!)lg${tuX0 z>UteqTjQ61Y-Xu*Zoc2bFZeB5>JI;Y-^=$E-w4TmPh{15U2*!d$xn{P`=JS)JJ!EA zvDs(J{l&WSs&BLs&kL0G9@xxc=k~x-wod+^Lwns1XC`^|51g$3W*oD>_|X61m+{{N$ z3fUOt?XAirwtJ|%znf!mszFtfrJeg{(9M(6-xn8guWQ)UeWLEskCW`|@=tPHxQr*v zz4K?y=Kh28E+6MQI>m-$9Nk zcN`YI*4=h>=6roIxnr@Z-_O0dnWGtfLR~zVr|YhH*t@h9CnrukyMnED$r~M+Qz@4< zKTX`X>~6y!p95<-`gs;HODg}|6D@Pja_OY#qzShiPPe!Fi){M&N$<|~iIT5xUZ^q7 zs}#w9ee=VEhpmqyuUktz4K6&tku@br;H6*RoL822PgK7A(rIq=!ev{VoS)C*$gZhs zt{DZgX}YZcCOcN#)12ncJ=4&9^8~%c!Ui*P9xy7OWJ_0_UB3Il9jA43=APH>tNf{O zc}ZtpP2uG><5kzIwojYAck9WVD@#Nkt`c$YYPIyAB<$-|RHZC>-8hN!$dY&Mmp$eD z`%R?%Po6zeF?lOvatNc(N2_0NI~Q5U%$S}3@9N2Uym>qSUH!lG01w;kgC%|963lW< z*QGz)FSyn4zwy1qhy5*o?Ub$erjNvC%j`@IV&Olv%1_ov|2 z-0zDP*5)aiZ4b~ozUiW% zKh2!c{=PqzYh%qqnc1c1c5R$w+^+EUNeuI;4QR5!86Y>%~&(b@5q*`1_^wh*tidMvvFU%x>hG=gV~{5fyFu8x+NE0 zs;$w?S$%NZ#%gXP%Q9uuZj?o!a23FmdC)`-vN&rhsn zd#(O(S6cGj!>yU>v3era*Z!tV`12%;`P?DtlLxrDy7Slcf33+qV7cvjgM9mZg9pnW zrt?%ti1AjK?>U~poHL&>ze(QoMjcZ#M}kxu&k3c3?GskpI4C$jyjEnDc|a%eV%zm9 zNsSoprpLkjJ6{?#=kj`Aag%-cb!T7V%#hVT`wre?GhLcEH#vRdTHUj0%TFJ_lR4$& ztGpOtR`q7vsZmigw8Ukr8eZN%7H=A-m-gA1eZ}29^~Sl^pIOb=dv|tDcKr+to4KlQG((0E^j z*6tg1S$-Q|=q%&@{Nlr2^BqY~*i`gZ&(rOFvV3KMZc)BM;04=v%i}5z@2XdM{mf|V zyDl?dqmI2XJyrLPPv+Zo^jLU-9@k&BqYk1|1J1hI+&nRD#Xa%Zoa2ED`S;hH-sO1w z>!jmmXDhnu(;pS{FLZe7bk^4+;QD8ESzfzI_OHdfHMUOE{W<+kd$FcJ>H5-3P=PoF)3pMwDER)Ut{P3hbKPN_!`If zE%D!Wf!-?i`kzW13Xgy6+Sl*E{a3GX!ly#P!f2Hv^B=5F@t*r=@&&o=1xnFEO&7WD z+_@RFR5LW{gVu`4Z*PfSu)kK%nV%5gV8L)miigq6%YdJ2&%xh}H#W5;6~3~XczNdr z*Z3Rmff207AJ^7;3piZ-l{w*8=7H6`(P}rhMJSyV*pkAslIxAi!0k8yh=XCryDQXug8fxP#zP1h8sY&NaBxL?<2yX%qe z3v!t|BlH#7szR5ImYt)LR=VrN1N?3EitnFQ)bjG|xlB<6m-^F?*^v3gtt1pDP=B4>?xh)Md z;V-M$#~pgX#!=?EPoS;xQ=gYUPVY=zgU@-)d@)n?#iprtm*zKQh5An9h_cW0-cTB{ z!*3GXng-3;L2Y8Z^5TVJI~&{#cF3jN-obUz^R&TI?SkO9mUjnGS`$o-Pob32IjU)$mgQOUDC=dWr!GF+yASbJK6xRUpV z-+x%v-fuc5`p7!Y^PI$&SodwA!G0Q|7dkv=YzPUG4o_Y%*?L17tA(_s!EwN6njzkOd<7N_*IRD z%7DpBLpv&pzg7#l?M*6vXMH$3VEvctSL}EW%;TP+q_23Xn#b|}i_jPIT~zu4cZyHl zE&j1ld&7FQW`-YMmmQ3LAozbv^#qsYyh^YCsY=*f3%|PQR#7#pQf-X0iD>?MwFS`? zUOz7UTIeWn;cnoy3tSly0WXwSoGT8M5zl|ZlCjOqBy!c{MJL4qcUF{h>2Gm0RGeLO zJ=owxPOHy?=taG3mo(46IrwMMky_>3lT?@KoD|#1Yo{999If8^ zhm7`Ai7a*feS2kHp}{^D_8dX^%lbS?Hzv+tx>UBXBFL9TFzQyyo>ww^4)Y5MXIibR zk-S>}!7$!(`|p>fFBasBlq8%wQ_iDU!RsfKG`&V`lBY*tu##tvWtY>vmRXxq3MXt? zR1ovPqAJ(sR?vRE>uZbGuQTS#yl~AYuu5prG_?q>%AXc&Q^f^W{42CMFEaJjt}XlY z)~>I9F1zTn&f0JPY!_@ zY=7&Ze{FKZb>|0`vIXiJ8jjh|3Fu2PW$|?fB!X0BwZ^{HCQ$Ek$2dE)gtdVGiB(UuQ2MrI6-ugROO?>jO|W^ z`x8{6v;{Ue$z^4xUC5a$Ae^}QE9U|0f+PDDT;+*xh^?5HvW>6ken5`Zo!MP?@;97c zlRja6`h-r$#g8|>VR0OOj$if{1|Qny zx@t}B=5-tIaXsRi!DX|HsflU-hOVK(e_N>~ zT`%>HclGrLcJC{4{M1+r57|d7i#&Z~iH47lm&;T4({ld3ujJQVDSo`ZC)@w9?OCq< zPuULT?_BsH`c;el&t{>0tu6AO?aoR3;rQQ{-B|ZSxx)C@8NnY$y^!H@eoysh60sd_Tg^PWi|o8Iwg zH66*6hq<2j9)9pKQB*z|Da?0o>Lp9z_YZ3|YZdnXQh7Q3Rb?NyjJTy;%7t@nOAV}! zFIaNvF;7;#rM!W}_d`MZYVuFaPqLWuN_xlJ`(LZm{$%W0uCJ5g9T>o&HS^0?yS5)0 zPoBTy`L#LuUy9)h^?x18rx%<*Bf7X?o5lGLrCAGNG{5*vd+xRK=bZT7u7hry6s{L9 ztY0ECZPA%;?r&twgE)VkHr{;mQi$c`d)Bsz#|k?O9{q@TAS$!Wh?UJi!=NRxQBX7X zm}p~Q4`+?i)k4kKqswK4nXVViRowd6GMsajt}16un>5q>$7;^EjEntuLl?*&d#}y*cK{g?-+( z(azuV%>~pHS9*|7&;gK?B|SlXp$IS7(}0 zx;k;8iMjK;z<}OgPOp4@Q!iiFIPGJ3zQAbf;d}3<1T5cl{OL)Ru;*%vyYxRAt-ky) zq(oK6$9>bhH+>JIH^|Lh@5UIK_G4<7{e127mvmp;&`CdSV01IrC$f_Ntdl@)lZ&wT zQt3mt7cAIVov0_F_$HY54p&=*%3n@Hd;gBuoCk}{ri3l``t@9^yxEp}Wp!%Ve%0AC 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

UZXP)FswFlxiEc;JX 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 {L}c=1pK}J1DoPEU zMuL-0OlWnDNUeyyG3Uw_<3fRjKNik9v+Mn%<$j(Teigw!6OOp(8UHL4o9wy8#C2Qj zlK_s+m`hhv~NYvy~lasC#M!cUh~T;1e*S}ZmoJa*$YFJ9MK$_FRxns$7(ps9$S zyTtMSZR>Kg?gT`~UT&EXy8ZCx%fZjSvqYVqrK}jgU@Dt$&Z@}J%U41IukYDfR_dG_ z%PUWV@ZD>xj6oG`@KZL=fcxcx0-)OuM`sb-X?B-Z#AoTtI3V`x7V%vytVjq zP|$a$_ygiQIT9oP-T10|qak4>*ERwD<>nF`EADadyUv&&zku;(tk{PwlP{&}?h~-( zY5O)M^taQJV3)hHiUmby^VZ)I{5WwEhft*5nlN*PIrHadY&$ZqDP^1Nb(xP9>lLqF zuiW-C^j5J%l*d<>kg$d&CQoMjggobVKPCM2p08DQ*YPQNVSlCmtq901+bpFy{YZ}I znT4^l%wk(k#?8C1Gnbt=FU;Ale}ClHmOZ%~yC=^u@13FBxvO{G>VzF-TRa5Ps+|uO z%sBdE+wVOoJzM4CHQIvRca*EN+?vDBsd~u7Uqxt@SL(jmmm60vn7J=^?yhco8|!n6 zV*Q1RRSo@xK4-41oc${6@IyaS5!RjBYguQ%va@-7^AKB$_vgtz7SXNZ7b3MgTT6OA zF=~E#$*&ukY-)P-V$v%4%SlpsjV)VS;+G$u=5$bCqDq=)+T{rGf}}fYT+59AeE%gV zD=aS_%EltJzfkAVWtTLiHu*^}!c2oMN@jAm)l9VYeRWQObLrWMM<={^Wq5RYq(kV1 z^LvkUJ^90v$avawQGC;h%4dx$C;Bc-)VvdF{Vi9OwW!5YC9O7s_h|K!w4CT{uibz6 z6enL@+mU|1U|O`lm+rF}xlwD|_A17+`*ut}<*}+w@nPrHRrZfOpKrXW86*9Av7zyd zN-4Qb%a^9cZs-zbw>usDR>RqQK?3vA{HR|`1YUb3y4J?Dl=dydvEei@2c_oOK;_L-)p66mMqZvQ2wJ`iOW?`b?&pm z+ctvv(GmW_;upKj>|b-Rmj8;n5|EjGLccS~bxKE2%gd8TE_7V#%Z}na>XN@7h`CSRVwW@iqIkS7?f^+@@VmTS(_pW)p7D%%3RmU67m2yD^XcKM~r zuBXbKVbeV1vW2xZ?zQa>7qr{xEO>o_%pRWCA`iuHi(b@Yn#7^C$a%{IPHt||LfzSn znp+Pty*hc{+q*DzVOZ>f1m1N)2@~cW{3BwxJiT5ff8hfAH5~$L0|muI80ID|S1Ria zI<@44M3VW_pspK--_4ypEqt=nyDyjjygu@E(v8&}{aw-mpMrck-@fkJ5qL!-qH${1 zj?VIlFAI&Owj6r$Xi=a`TJT)C863gEtYN};gT&SE=YPH9#vPd^tY3FAL%dCYNpirE zvya4Dn!Z%;*8J(9;Un>ylU?k!un^mMf4d!vb|x0yx%GR-4fW1`?MK3oChz%^ms%w4 zlqtk~^rS>ygXcxnxZ4(Hn?oeTm#)b6a-TWx$hH4(_oTf`C{ka4TJuFvf!;aqwDnV7 zE>*HS%42u-iLuYSq$2al=Z$u@pR7}xpDZa{u&9Z^PBe;0bB z)`xGym)|pM8WlAx{2Zmdx+)re%cXo0us?A`ht+$6U&qq)$uBe?C8mAlnCw2&=Gc>N zAG!2TER)q|mKgpNn!J35&DkfXefAxCB5Aky*vr6@wfoo1ic#%s?)tIn#WR6!k4KTN zGD2UwEOh1t9}&E`xFhbO?Dp{BWd`fp%of>lge?xqVrD!wJ z-*|peZON|BA|H)1y-vvlAJMKUdUEtB$3HQD_e|M|t4_QNt+I0rkB-l7P+7v`7u)@+ zYpc`*(^dPMueZE3$hdOp@QTdE-*r#Pw%^(+X!_*hquiiNCYPtA^QL~nbXc!vdviPvfRSP$m?QU?;e#$O<{R@{nKpo^oU-G%=_~;SEetMUS@N3 z-sERTv7ZB&q!^n%F*>~QOdbdi+p|EcN9n8m@&th&3752 z^sMx%+cpckI_@o-b8c4r>aWj>X6DS3>8o&>_`yxS+q>&I7n8r1wDX&N5e(0s&0g<* z@qo&_pxNqo7P#_0+}~uJxK=R#_YCi~Kcls7UNCz3hI_>vaem8|^K%vouf1ck&hzU8 z={0X_#3kD9B%EDj{GzJEpz(d&E$>}z=f36cd9lo8mIFK{cPo%l)qa9 zkH&A-_}ab6qyF%sl)4ws#HWi~vYTk%_ItWZPR8BLN$x+}Zo1tH|KT}7+x{o-d|#7L zV?Oob)lG_u6+`j*oL&T)8*C~fiFBU)O zBDiJ67jA>wZu>vA`v%Vap{8zbSF`$7$a~XUZAMoeW_?+xe5`iOv1{qQXKw_0K92gi z#lS>$YtE~!bE8sgETmSQjkEH}P$>-&eD5)L{oUnntEPVvo9KPlH*1Nph=T5!{K-X= z_ZB~sT$8cX{r{57cB>w1UUgsm!#eEehJJ5OcJ;^%rrhaY=gj*5U^AmqF&fIs|J1_LB?9#B`_g;iAn0D z=;_6^sX}Bvi;uu`zIF?%%ewNdQi8xYY%8R0GHhNnzc6Us%+|IIC5ubq zSWi}}#!9j(*Gd{GM$Ab|_LN!wIo?X>|C47k=D$mx!Wrawg?aIvN2e}*^vzQEEd9jx zVaKh$37(co9iQ0$9rW3I{{8pXt-r4?EnF|WCH~$A{sbktc!ipoUfVzN?26;vJy}{k zW0SGz$(jD!4|`oQx(%*ZF{&yVrGktvAaZYQ-rCi0WwmXV{ELEFpvHBaM z-~TrfzZV?4FL!9pf6<(kS0+EIGL`wZ<&%=%{BuX+!ZM5e?yftSQ^Eg_iJ?s3 zk8O9BQT^OYr|PqwhWrqp%JF~Mt_GQ`|HrSKTeAOu>;KHh_uGY|DuwJ86tVSMvM%qO zxA2hY& z7^APPc{fRh+xGnKUF>P*Q+$@Zn)CFUjJ9owK>MDj*CxrVUb>Y1nctpIf-^jsS9m5r zf7#4-|0;Va@4r1N%Exapf9^c)^(;|wpV-_?w)5wb+r-w+-MWBXOs*sQnS2AMs^ppO zRKdx4zV6%?eKyQ(bK+cE!Ik##(4UVtmu%!!J$$Ns;xVDAw|^~cDACQ)c-5@LvVEz1 z*UH#O+ji;H26PoL=oLo(UYKLNU0hM7`RJGB;?uqysMK@X_eDad_;y$9lb)yS4w{8G zeJtS_WurJE?6)A*S;<7R>-vmWPLAuE+B`m3f~$n30qCVOb*0}EMo ztAkz>SwEE7$2jb`lc&8a_r)}>lPjO*MF;Z7STJyj+itj|8~Ah)Lsx{x_2)D4U zFFQ+5`BW zmyE3aPWqfNdh|ei$r7ihxrZMe;E3NYdzbIhiadsC1s9pWGEaECNxHPCR^CK_Y463nk$%p=}#tKXl6(1^#|X1>%R9ZrD!`ywshZUo~&|ant}SS;~j~d z#j107CYY9A(y>fGadmluRW5^i;>j}>^ZgyCKm6?VY3F3G?wij8+dl{0w_y;DiCW6P z?!w;PsSO9bWWGgLJv=qzvb_;Qp5CtqT4fKzw#VLQc$4z=rk?fMy0hKFv6HS{c%Iq) zXS$x}_C<4j7ey9oUpLVi#q+fja*wVp0rnHt#KFoE=#UN+K>8%^{m4l`v#|qg>b?l3AXj|zKFJIa0D{Uaj3{N`6y zVFiBcUkVwFQOk^JiE13MoclT$X4JTv)AjMedp|Mcm^)nF~#o2(Zj_W*F@eX z%D=fLc2|BETYteDkG&h%W5208JagF1w~%|m~+r>JvV7M{1^T`F{L(J9UuYJLu8^6#$- zJ?k~s+RUD4({sJ7TSm97c+u~c(C$|+=dAFwU~f==pm21J^4k|X6y|q-4q9sQcf<5k z{Xr*Q@9evp+Pl<3O!w$UKL5hJ2MxPEO590VVqxAt;nAH*Gaj8;u6k1QT+P0n*={$Q{ zvVGZ}s{wK;cF!_gFFsy(@bpOz$qC${8@hTXaG!TDuL;xcKVaJyDAxSf#NwpJpZH*1 z3)a^vIww-TN11+~WX%0jaY2i#i26~Hw6yN22`^8ad|j7SpJ#IN_4CNZ)%^!++tT@a z?rs*Dn#wuPHKwJTch2|AjA_e@+6&L!^M9VRH}F5xRq38z%pv8`T-{yXG1KBIF68Q# zL~8D@?Wn!S&i~nP&jxup#jA2leY^Z#y|9>mR^ldm|3||_X)CofrnPgzCYW5->$IQx zwlJIR9&Vwx^%~U(@$S#^QQRE6tK^A z`t#J{NPMSK-LaM*i|Q;qI`*HcEHDq9_f)6#^C#!3!W|Rx6fV9Dbe-q9@C0w0QtM06 z$j0Z(4gMCZx%SNvdD$7f#C+9>&mWhWi*(N1SI+VAv+|68OoX`1@TkXi- z!jAYJB|EA9AF57&HgSIJcJAo!Yp}4keZ(ECWS8djr;GFB^>c=grfM#J^jhu6eFMe1 zuQKjOT{X8)U=)7zSnbGto8!?Zj%qG`6s>mTzM0~`bC!Kw-a)s1>{dInex^YE`#HBN z`2M$CuTZa;^h-qRrQYXX&z?X0z4t?N+Y8@=k2Xzt5xM(x(3)_LeN!(@kmvHUQp@B$ zXIVGp;LJ;J@4Ra^7vOU|wpif8Z2M#fzN;(bfYc;!;R)rkLa6$ukLx!G{?nFrgOLxsXJ zcm8%dm8v5YR?jf?QEh?Nl$@&%v<~x0A7uLz|7x1F)W1oLdqVxiR_e$#upUkG+01|N zwwB|jr1C-&_S)6b?Js6rW`*>ng-f?&5jP6FD=)NJ9JMuV%iZeP3@R*vwmOtKt?}Z^Kh`Z9d=O zC7qS+iptXeY9#Jmi_cgru|Bi=!?FoSEM`Cc4?b0rVe;EYmJ$pM+>ZFxh3Mj+mIy8> zN=?iSNGvLb%}H2)&A)EP#>S@1CRfJhSH`C2#x`xyl_MfJrG*Jxs$Qe_2^319v-F_VMaz0LQ5@; z^=01~nYppKv8k~MBqSxKB%~!Ueu`|g5je{xl9>L$K`b!=Id`=?hbAF z_q4fYn$l!7QSclK(-YqsNgH9r`;`tLp5%XHO={jPmLf3mB< z{)5q>$$uC?vt{|0XJ32Iz`ziXH%u*YrY_J17gSV!eW* z{DRb?lFZcNx3SUrcXmvw`@UX4jej;npZ}zr%{N(QwENvYD5d_m;!(;ooelb%W|d_x zo>rx@RrbBo|Jv0Rg8EuU@lk#*Nz=Iq0Zsy3D9-+7gtza{)H!q)cX>3vBz*Uzk) z5I3>*-NJiM?a%#xIjv^uS8p>nn@-2F*;lpl<-hgpN~nzsySr_LyTVJWctg#1d)EBc zi{9>gaM!vu`Nr3_`QGMrvfq1PSLx;S)U%4$*Thb(Juen{--zw#zxOxAb*7fz485;( zXhz|Rx|OTu#_{ahx#6b3lK8@1Pkkew*czYUFM0gIsadWhr`ee?`azK5k@piWM$Ns} zXTiEQak|sSl%vZXqt$P=CoFcG^*Um{sd>OE>p~ITZl~|7&A9jXao(O{x@<-GRo=yH zTVIJcG%ffw*=_!UGbRseUu;;jyXas*^0Yh+-A$qa-Y+*UO4t{%<-&XCF4NpkJlaRU zWJ~V!Rp+!_ksj>uK`e#an8nPL6&kGM44IgGlHmyEALvT*~G9Kxt zRksZv|0&wd$o#`YN>`v<-nn(zbOS$zi@NNbyz=e$CI{Zo^^%q@k-eO6vl(_-e- zzB_NR-0m+Q@2*C%$##1h9ks7EKA2Z?dQ-K*o;~-r37(p1)Z+Ek|Ll}&|8AB|IkbUO ztzg5mUm^E%*Zpr7t(_KboBeu^{(F^@11uZPt$DRkaQAH{&TZz4JIwXZT4?AghY6|A z^+;czW*n%HVW;KQ?0S383&Eg+g&n_DSDX5O;8O4RJ14j5iK>sZ>&|o9t5(N!I_>$n zo6j(Ljc1taR;i=R+S_Jti&W*+Q4afa`EO>W2Ph+6LYmme-^ z{mx&;NYuCVO=l8V_CK9}`f8dhli)eqRu!Lwyff>RE=1ga8p3=IQXAm?_|rWLsKq1lryf0 z|8_dE5tBPJ3N3A&nr&xBaq_B-B||I0EdVav0<-n#YDHn$XB zWL*6%SvQq0{dGCl^9;s4XLf%MUKu!J?rgJ=mBpoMObkh_nkDXQ?i_zp&Uwq5wd>{k zeJ2xUbernLeu&lU<5 zFnsg&xP9Kl>88#7k~3SUZEEX!;P7w#C*BJNKV=U6<+@gO|5nPA=A8-0&1UTURJ$VX z(PxuPmz^OU%u#$|`Ms)#Yi`V#{$om;CST7~7cSw#L!BkPTaQlbT^}5kKV$9}wGXas z_dM?9Gk8@BDd*i@_VWKhxpTYi3mQLHU5+>T`^I_q%U_YPI=tEy{H&Y(-#GSk*I1@J zh;L>NF^}vQZA@Qd*(zqsth-atLZ#o*S8nS4scYVP*ZH3M_cF`+)DEiy_aCK~T|Tfu zfot{*ncns4d+ttK%&_=*(!uWcUy}|j$e0u{#oRn$-G)Pv`RlYJJ~vENQR1#WzvfuM z=I0;OZ)WG@>9;ywv}{|)6w9*Ofjy$3n(xs|vmX8m^VHing$%^v?zAtzQ{UvDt8m|T z^{qwwR9E-e+MVs%bL_6MrCX|QzZgB>1`6ILf0 zO8&_#6Q6u&*I%A;{+e;L`3uG)e}qlms?V5nP4u+&hl#KGVk6((KXhA>x4~RaBdJ4D zVa3w6_WZl0|DHx%uYFdXc=w}b$S&RYURH<0$`cP|L@x~A?xp_^ON`6 zS07{VpZuoFP>!+w-)Vh)L!S2kbsrzSx1XP~u4(Jfl*-cE2eK-63cZf-m)0}CzTrj} z%Wj^Kn;Sj|<@LPbtY~elEi#|T?6~gkLFUG_92PzIXJ<{EDW^1TW~h_ubM6T11;1`D zoV@xSSDotmvg1)29~NBSxPFR##)N4LZxjaWNj21?e(*2$jB!_=H*%#qWn_(Ioy_e3jH$>^;8wSD&OSw=x&#d z-KJNY&%fRz`=y^N>Ou1L3n_++CQB_n=b{*t`bVQvVJeHF^)G`}p6NA5Zg#r5Zai78 z)xYtN_#gN9bvHhqUAAgP*I zHnpcUSlxcbulawt=%UQl+d3-EzQzom{yR*hXMA4exy#6MVednRmSxgzR>sQA6P?>; zz4q5{)6FlCC~P#?WAI7z$N~MZg;%OK9j)KyTdSS6@?glh_KwNfTNtx9HnhyVV6iO1 zZ!7EJEr%y6#7D+0!S^GA2ru)=srRQ&nMo*~`zuS6n1B2ZXCd1D& zx7HgNX~(>mY*6G_*=?Y0CL<|5sp8+tl4zCxUpy5HKYl6@h$sm*t_@mp%D!~*6vIy} z=d*Q8uBUqZOv;g8;m^|Jahu)mRAx(F#P387iD&z58MO{8J9h0kr@EfWH17Og?f@-Q zg9?ij9@`zW^4OGob~u>Kol!97V8G#Hc8?S$^-C`Bkdr8RxYn+8hMCa5Gs{k|*FGk` z@x{+ix>XuZWs)@|tgUROhc9WdEZU}XD58qPAe$G2}YZzMlUyzTY%`31ADRl5~}SQIS7MBX*LUKzNk zeYzXpp5Lx(n_yjeCi>9v3v=&0&Am7`@Y2m)kF;%HUha0CFEOus>0CYoo$sIGT$m3W ze14Jn&GRMq!%wi+d@Sk;bNgwbVyzibvLfxq=hN3;ui{zXdcHa?DCK>l@pb3LAt#@I z6rFXpzy5@5gw&DaseeLue6rrg{`i!H@HJi@OMW+|KNfGVJ@J^vH)qj9RX25Qeb=Ku zc1kYaWuxbO&CgO=C~2OJMDpeSAMuV~GJq>CugI?@oD@@MhJ` z0OLKIwpVs!l=F*xTlmO8nvr*XLXGIfKOJTDr>|STy5@9aa+>>_>eRd-|I05;-q>bM zPH4E45~+XswNPwl`;(2|W3Jo`T&z4LcB@oYSNJbIalyCmT94Unkx5Ir@a5~WH5J<) z#7ob3xbyuzL#0FN3U%SFWfxa-3x%ydye#p6*zvfVR#$pnv+n0RxI=F;XV)Ab!Hnsu zAKDt;Xtv#asGbpRmv=K>x@z*8ydAgID}FL;-5#dYC~!^T zw|58McR!hZr$wUQHWJLOJ(zH>}Lr}%1Os%BTe%Ns8H9Ys7J%PjVrbSy( zS!>a`o9qjJ=uNpgdC6iS#ZR*}mVRgP6iC|Zy0}Mwmqby1;<2TcJtrL-FGnBb{IT-R zpSgpz!tM?!eiW2J#CZZnZNw)X7!URN|Fd>Ckfhtm)<%A9Wpm>|io%}u+XO@7YJ`~IkPk+#WBy}e&6 z=a;Lo)Lz_l=tF*Z9_!=#@iGS&EV#h2QG2hH=+vVw{HOA(uB{U7z9V6G_4bu}DkaP( zEUGVT+H?4{(2w4_50h@(liD75=*)!4_FpXhy>i(?Cl#NcwynP@erKRkP4uD`#rU&psN%n3tz8i9O*^ z=L}v$)ncD%646X2q|LKJYb|DUo>o@ceJUkzo06?$t)q~D_@_Gd*=0Sw);<|njMSOKFhjo4LCD9u#Cy* zy>2JN!_p4d?a#P9N~PY+eE9i_n~;$Hjg8;d>C8CvCFXU5>wPbew~6Q1>m{yuagA5b z`Lc@g*47-`skNUrC~Qe6cf1(HyZC`XSn=a`v)@eXT-v{bL1hnH*Up($dZp+7uVhYn zve53=)AP}De>l(2$%~j#ynN=4Pb}P-?B-kLD;Kn0vga#$^57?fzQ6nV3TLMD{~0Bp zmmO&qxUg)KYU4we1#`GR`fx<`TO100&Cy?Za_)z1);ELSCkCWeM(en0&D=7JOX7)p z_${xsRsrAV?r3GsmzK!TSnhMVGVxvkBZq8YPl3Oq-t(_D9A#45k3=x8Y5X7%@+~&g zuuUZGkd#JiVs_ z0yYNxD*T?ZCLmGx#^j%}!eLH|K^N}3Oj&+eIL}sTxo+k0Nlly89=+hx4vl}O)4Te8 zfx3v}@f#^tCYs5+GsT0FZ4=|m`lj%kKd)cR0v)3n! zK8Wko`*Luf*5t4W-o{DX?Ml)cyE#+tYKK3a>3+HPy1UPpjSC*ObpDtkJU{h`pwRgX z<*N6(`2A)!&JbC9nS*if^v7vCbUp`$IQ(kMo}T3Lx?NG~;?Hd^cW1lG1(Zj}YBD`# z-rl8Bmh@j#N$zl2{_TdM==c|omwL;eHc#v;f6lq&sZdmmLQspoPHWR2t?qX7JqNBu zZP9KQ(eO2RIFDD{Y}x#mCk#JUPdvNj;K7Ao)%H5h-SztH3GH@xfRXSSq^Nn+oM$^5of{FPLI}QCRu)%a5Nwax%|Q z_>iyUBxR9#z&pP0yoAcv4S`P`?7cm<`e!gq-Tk~s&^l^@lbWCECCBeqV$MG|Ucr$3 z;lp$;8UGNIz*_ZC_h^BRT6OIzdzZ3n#Z1!s)+ariUDug@=-~C$`LlHNKcu>xHC|E7 zw=~_=(D!0;!`u+rOy;%Cg8YJ^@7qtDTh+J8Q8UWtmQ7N$et}oR^@WVm-RCQ(B%JE7 zUA1>|5qo>{qq#DxV}A)AZR1pV@P5r@4)&>6M(dEQu2;8{(~qojCC-UDF`KNfzjS@swCda|)`N?A zpM+nsnZHIUv{akbvgW6%`o-;G=eDs3i5`CC>R_zA=+ES3qH*2_xzAK>T$E5#Y`Hsc zR#&2(U7d*V6fe1(6LXTTp47TDb$d|Ix*NVCPaV>-bA6XhS+LE-tA_vY_eZPR=WFlT zlv%PVKe+x-en#1-JRIk#zTI^HiEy94X;AR< zBfZ&oKJ60TeQIVx-*lg*0LBRQ!@)AF0x_%qOunaZc;>N&ryD<<=-=$#FDLuj{=DBj z+v+bzCr>s{JKS-8mkW#VZ{<|B?7zKYyK_FR%R9*a-(*7CxjlE!9-P=Y^;LACO}Trm zh|1~kvuyl3p15Az^2lMMMp4wG8rbJl&*KWFx%RIp+1ncJ(* z9G$=z+++2hX@cuXVgC95=gi&I^f6TEQG#?r=j}CNv!$BF&2_Kr%fIEHH0w~$qHQY= z?!0`R?~{JX^wp(D&(7!d^bW1Fzf;kXo6(y;cZHEw@zRv5O?$GYw4dkM(G)`B)*wLQw z+FkvB`1>cqYnu2u!^1xZpR)V#^Mdoy^Em~Ke?(pSYkKVGeF$6mW{#GAxY5^Xzpg#D zjSu?VChd1m>dNg?QA)g9_5^cAKDcS_db0m4&-^HJVW$)4-3}P-6?cE3<30PT>F+sn z=g-#;tus$^{}!v4WjpE5gl`X*u4O+Vf9c-*Ek8L*wlzj&FL)MteCGSF9V+V$qi0l# ze7q&szEI}etxqTWSj?Abxt>z}EPLwfg5c1QV`;BW@EgkeoMG&L+dkv6?E1h8t%6h& zrAdVXMb`q3y3N*kl6N$|b)IySw7H7W;{Cz`49n7Y2^OXFr<#8_V9wn1;7?rr-qf21 z-}|mD?HAPfyEb%&{>JND&aQfMWxCmy=EX^Adym#i{x#aaQ}f`y!c^nMda)cPjnjTyypKZ9(~v@LhvsoObIl~cs> z5Bq<&uP44_Pu!dl|` zq;OurH}h}SHXYMH9-q;zw0GL<)GZ8BmfjZPdrf|{%Xq~6tNF*j{R#KB2a6{E@RTo& zTyuTmj{EY>tmhY7OtdzzXo~Y(Y+Uh&r!=YKXmZ7SCIR_|}0xYA?O>KKLAH0cGuQX}7fS@i1o^qQ#+dyM5K-w{^` z)k=>!7yhWYih0w1joU@SjT2P7&Rwe5cgpdMidI^sz5dnvjBEUQUwM_?*uv)RFK=nX z%e5_eH>-DZw_%jj`kSKXSMHnEuspzPp2da>6B-)ligcH`R5+~7e#6tYV#4(ZwUbMp zWSTEFoDlH*x%9fWhY|)77xu*}HoOTjUKk&&7ZzyL{7Yz|!p+=iR)=;>c#xeSpQICV zFk_=YLeZ{(q~t$5+PsY3xeSGFUvIh?K6Tu4=p$3E!KoCRv*GiFCF~5}Ph;A8(Rj;L zjl&Z}%zyBhYIMCeaM=2K!Oa)RWydG~>?)r*yK1e-?FR>=+F36dyf$}gUij2Rqojwg zZEAS=3SIAua*LnLY zTf$16e~f8dEfPFhvkwO_v;H~eH0AOIfy*hOg$q~|UYdC&YG`HiIbT@P_bZR%rp~r@ z|D{J)%q{1x(P1oW_M30{CS`BFNU5Z%eow~F)b+;&JbS-NeUb2B_s%?TFmrzGiSrY@ zTIYIyOy$)1bGAv`J7brS?yhgX31*&qYvf!6(|k^@TRe01^Z%#C5^kJVd=}g6yUOr} zLH62A6-zDyt6zJzeCIl>y|%G)DdVNL1{S|q?#t^rxA2J+y?40lcaYptE7mXX(FO>hUYn?{9jd>a+WEg|OdhdwX)+W-lo}WY}LQWq2y? zvCQNG&m|eY@=3i!c4L5@~`qQurxitki$K# zinTTD=S;oehtHwf>m^ISScX_hzEppguIsk6%^t^!e`g-=S+0II z+@`gua@g6YD^K1)mwrW{!6k$>rp-q$HQ z$}^w7UpJ$1nbB3319QUm{xO^Takd6)!3OCX-NMwYM$?`d?<(>+7})u?ES}99eLPF` z&#ymQmQJ>*;g$L|>!Z?~6<2>IZ)3M@^C|hdqGWf-(Z-5%o0h(dlDx!Znf3hCyL*2* zjzqNS#(tjq;wpC!`_h>rrpnFLu6!@DO>R9b`Ms;Uhwaz2%WIXTa=%M)xn^We`?8tg zxx32uEv)hDiZ*=N>_2z?{CXonCEt^K@-@=)wk&$G(popxSe}nF@yo=rSZ-TX>+KlgaQOA!37 zHtl-1-Gpa4HQDZ5@djUxE!xxIxvgZ8l&@gqwEt(`pMPqdu<6If6Z)HKKF!uhvGaVc z&7D`vx?S<@T=(#aWtvxRP2H@0m+PsHn{kM?NW%62cNf+heY^FO7*$oPnRRrd=B;}z zda7uJ{FIormp`p2dU%R!rrVJzy2cGx4QGp5-gMi_^7xHd>XNMz(M zk+>foP<36KV@BF4F^}+vFL=bo_~!0*(s3}Z>14B9+R6CU)hm$u28XWcpTFOQj^)fd zViLAKA*OEPhDD8~t6h%XP290mC49|Ir9-WqEU^)1)}*eHZEIXE&n?w$SoBGEyG^f= z#h>$8(+_@>Ulx0A!H;QY58glf$!HDVVIQ%34o#B#o`)>4Yy8g>;^eLteQd>q0=X=Y zoP$nFcmI{G(Y@2;y7zwC*4X5dZ(rN$MRnOc#olscbfq8o8=z`pV7sNIVVlWn#&>)N zyr)V0ix26`%IvwAs4J|tf^lhbXRz1WC3SIO4B@7_*NkHse|~gbJSnALH}HvY%*MON z?yabs75Vw9_mt}nwgI(I5AZAJ-C>{Z=bg6w3Y%l5+-8%jMvD|9Pc0Lk+dSd3%1Qqf z&Y9PFJr8@&iQ3ONxBjv3zRVL*-?hH!C`}W={FnPDgOV;s# zpL+jO;i*njmU?gaw`HX#N2=7KDjkap*Yv+yRIO>=@4rU%w#}l{na6LN&(V>cwcyhE znF2@E-e(+Qn8kJZz4F9WZ#+4L1vz?jH>KHRABwIM+_IaQ>o41^PrPXtx2*bPCagWj zA$Z1-v>gwb56`@&74ERG=K`bZ)CtNjmmip?wtv$j&!6T8bB%8N@6VbhX;52-R}-Npb8=(>LDuZCyu<-K|^2 zhAmU$WTw7Zl6GB;zqBGM?DvEm-NQCY(JtzKxiHYVORg z{Py>|{R#>Fe^vkftiM0kK-_6|659*5qVEq%;?tGRg=dSVXJkG|HEb5ms}K;4e*68C z=oMxYAtlfHDWxoqx2*0?Qz`lXUExrRYvOT%HU~RTk%n^zZ#|TLYb324_I<|s%ERex zrjkpSGJCJ6&rgci_u77gY0bUw8Lu8H1$Q@iYjNKyI3IY)LR(p9TgY{p-r{wxpK^Xz zd(3|OF!9ROUx(}uCrppf<~Mz|+E>c|y7|*p?=|f;F20h!*e=Y=kk+(P^-5aI;@;`O z83)uDtIu41tuk%3`r>@?5TUq~pVqn&=5?XkS5pMM*0XOhJ2@d%L4Ps>%e5aYlXxBc zxBu8`@q6*DN3-g099hJ~^z90h{O;AIv1gLy*94`nny~zRiHG=`_z<1jWhF6M_YA5R zFLbHoy(GW*!Tb;Mm3y8YKdt0x7ikmy%~@vI+Qcta%(pDtHfHvA<=?k?_DzTHYxO+i z+u`eeO)q-*E-b+>Vwzc%bj_P-7TZF(1b*4u)Q5jxHhZn7@q>kLqfR&EDogP(^i0h9 zv|#euUB{l?>15iiyJ6o%>tboPwhhb7E-bk2voyG{Do}N0&JP*ojH}$*jGmEIqSYVv ze&6Z**u6_-wME|J;G#+*xkA&-a8+ zDagO%yl?uh{{r{--Fo%aHRRxd)#f3YrCfz;;>uUN-TeBn{?-qjW)fVxH{Lcki(2}+ z;iT2AoGW$i{4RB!W{Vk@xMk1(@WXYx-jek>3)z^HquqYDwS?=*%RDL(J)cw({=Rv6 zXK`q{NrcIZx2#gLxMw?fvqw~f?^ zr~gr6QtUE%I|FiVT+a%4RXOQ}Lhrf&!DGs6*Y16|;k#U&)e08p2L>TbQ-7~9i`Zg# zKs)os_8ohf>=|`_ZG7-wD`Wpv;Z{ZSNW&kzS??Pd_}5-|_kZWKw58mCB@Sk-yi;Yd z>@b&B?X>B$g`ad+Cws3`ah|ZDJh81I$vp8z(&AojRv)8l>{A&Wez}%#8zt_!EZlLm zAm~oHLx;D9h}^G_x^Yux#L3T2j@nZdnpR(>|8#YsEK_TsB>&5Ajy?TfzRFKqyufeP zL%rRv?ky{*%D(nCSY7JiyB}XS*pX8I zt7IKszhbq0qJ2AlSI5GZsJz${r@b|9MSjs-p>u6lp!hM>EvmBSIxHJ3mmSX8QTkU- zxoX7%Ovu<(CKBs7gJEtP=`0kKm zpZ+v3gnQ=t6{&OIwtI5xZ}_BRDdnW^SNuyh$L3Z+gq2)iX?J&zc$SQD6-{y<7 z)tO5yC0nN^>Ye|&_U4x_o8}kos9bkxL&IV2sY%vSX)-I@B%d;KnVk{o*OJpZx9Nt0PosA3@fSZn%zDwT7Mbn#cb=+sRmiL;-Ww}e zH=UZjV9ssU*>{<*Y?j$O{pFGBw0jIUPd>jZddOkMq=@Ch_d9vkZ)4c>b@8ORmiv9p z4sTfV%>5T@ROHRSMQ>OVL(b*wXE~f0eJ?dwHqqy;Tl)tYz7q#|*)@FD?#=xY!n*%# z-k*af{`6KoKOGf%k0b1u^0$BQH-}!04sMp!`nSGuN(z(FCuYr3H8yjNg_jbRTv|~Z zc$)XXZQU*Zt|atMtC%L&KK*2_rRhrDweHzEPS-AK9aQf8E^@K=*oRB|Ui)6pF$VW8$2VIRdac4ZM^hZ zPF&*3!7YajEX9)xP<#&;lrTbR^gf( z!s6;t8%)LbG*{`Fi&*LQzp&dn=g<|e?Ms>_b>FU7=f`t?$E?3Lemo+zOFhHxey*x2 zJ-Kdy-I>4bF8`SPv6GuHRH-JUvyl!w!^zr$vCt<;ge6n?^E$xKTWO*xc^Y}`@{xU&bx<~ zee9T|&@y3GoR`un6@dexD<8DEzbuuqJO4I&RYTJkk2_byiu1es&XhSaxMzo1$Xvb^xF%qk$>;0gE1#CTTbud(t8D2Ge)CU^{X+O$7q7%d zDNbQS#SiwsL%h!(E1mYUX3sw9rIqnZ%}&LhR%lqVPk5tB_~|JcpLbY^UMXkZ+TMC{ zp~Sg|t!7ew^DVyXTczjRvf&8dR5kA?v+%lk-GvShXE8VjKfBZ6lwkef>feghHnpG6 z?A=!H^1v+O4O`54(FfV4^S@4Ny0^%6L$=AE6NOLj$zF^1{c_iFKmWzM=XqBwjN%Tv zs2gHpbcQ`!Y^K%u<@;Cq*tOa%y=_z{&wRsH{QVl6^?%n|(}?rC zbKM`$S~zLj%ezx+$`{nTJ}htl71vU}K5n=B4ZdB)yr;Iu?>1YsGjDH0?)IOX(kmB* z*O#zfbvI4!t8|^UJvRBLCjW-abmJ<5zcZ+_nDAKUL8i#~oH&zJGDn z@n_A#d#6^v%PDr1J{a>paF^hlkKZocWLI5PyY-q&?F`>n-#7L@m$&#*&V1STt+kqB zq`}*EVXc{E?ib^Z+>*7s-NCwJ=ZO!q2ejw`n#HLZ%#V;JMqr zIBLoEY`@cCrQba@k47lmjGVABK~Sxucwx)d>beEJWi>Y^Dl9xyAj>JV^_T4J=ezSK z-JVlbc5M6Y|Jx+L|GF#8=U%jZe3NdOrIKP2yS3)!{V}e zzh0`xX7 zU(}`s1+bU}dcACQbbeOwqW9>>0~fdjZnN7wjlcY_V3&hAM_jq@hKL%kiSKOBZs28O zXPI5-bY464%h|Q-_B?cW{aEb4n*$QBr`}M|5&l-Q>NCf#+?z*z-W2~^GtvITlgfp+ z?q|E?NVfY=OfhuHgGeJQ`M|57VHj&Y(`lcN9X4e!gca^g{f7VGp?hTEHWW{3E6;xO;q+aZp^+e0#pytsj zXE*6Qthf-h$%9Gf^R%<^IecMv)lc#KJ^XM@hUW$XBpKwIW;0Z0?a>r{O)ToGNb=R^sypH?3t&P&duafW6k86b# zosqMxD#`g*UG?e9%fh2hZD&1Y+aZmR4GL>uT>-djuD!Xy_eqEmTwoQ^Xa9TNidWx-wyM^y+`8`0y};iMPktA7{J+@t!^}XTyP(w6_A4XP{BY)w zzb0~y)vTrp@{jw~r|iyJog}-m`og3+*{Pama9=mxTzAG)}X%7s%&9Z>ZElJH{bmEQ&XMN+oxT0aQ_321Ml*$E;SUYUscRf zDmDAtax3-~lY5Rt8lJs2Tcs~bEcsh?vdIgm(7Uly{>omSMbZJmkJ;54nJC68C9=U$9{BoqvpMTXAOKVtrE?> zZ@Z<-^qatMvn5f7)Ej-A_Lbc{b=Y3pY(~p_=6A=`zr3C%Tk~S_WVP82hu$kqm9}HI z_`n*lZ^7n}4^NUU3;ObY*!I~>T$>#Ef76@uzY6EQ&SyWTzID=N&&?iNVvZSf6z(-X z`p_+AA>;gyI+i=Q_lsYz`I;{nf4||1`=%QOia(pY=5n^w*0nIGFs+}y{^3@uMXuLb zPrh2Lx?#hwIoe7#wwuhl|IJhFuDbUtSFKPPAjnbpPJR5}&^PkE#jB z_azOfv-Ed*gud{2KTj_Az{gHuiIDe?YqkmqUi`6FApV*8^*_mM&9cYr*-bw$Ua@X{ zr+fU3`Yer;Rr0AWFkCnQnvP;*5@CQ$NO=a=TIkIx&K6qE!0=p!i9v(`9r(J2IO=-(x#{~l z`gyv!28ZbRx&?S6Oz;Y>wa{MiH&1an14E<=6N4a%0U^s77~m#2IeWWC>IGwHpKvW^ z?sHZKhGiTK3_>W{xA-xlYj+8D1X<6;zy(%0H>lPE%zzS{3@lIukhXpps!s#0mH%?<= zU|{B8V2}ej5st&LY4`DTcJ&K(g&bjr&naSXb3hEsD2U@xoRV0aXNcjRfYmoY1u`%& zgfK8LsDZS?aV}0X9E1G~oip+?lcA@@gWQGe$M>?2WL7XSFkEI~V9 z!{dIY>1@PD1_p*KMg|5QxC=oHojk&31|$~2w@RW1Y{9NW)k|0z7-YH81GYRLugS?J zsi1((%uC1aWDAEqt}_`J81^tQFc^Yd3dbd-L>i3G-9{~sugqd(VA#Qg9wIqqc#SVD z!IL6D@%ODEGsl66fuV$jfk6xIXb>Zz0-wpjsfDGfdC93NhS&q-p>0BjAS(mIc`gP9 z4Ulng{G*B(bFrH`Z+@`JDh39IFANL}dT2H$VfO& zZNzVO39dlsJQybD#LmEQfRBMe8Ezbi@uQi5k=XsO_cu#!IRgU&Xx}Gl8QI-Uz(9On z|L=XZNsN_&VG0*|^6KotYb?gzWb_QjIfqxyoRxtgiU-}~pA+$!9Fmxxo|=NMkSKmP zdHOyE1_lX61_mQgkiv1-bYe}$6(*pf^1{=WMLw(y4ANW-45o0iL5vkMaGCGq8swax zR}8)tB{jt#U!eiA!kno@>lw)T%;;VSpGTY(uv~~ewcMM^QG17xfx(Rhy=iC(^iFDK4q%y0miyZMpE@*GA6hFm7}ti5Xu9&@o*q@aLp z{nPb)D-#35Lly=GFHkar$G8%%LHxp+8u51c&{xdJaxr$(S8@491-!L9X5Yh=H21rL>i3C-5}#Fu84#rGBGe{v7lE3QfF}) zkENo)na3A8@0*v*!oZNqfo}fo^SI1+aSd`TD9Fi7PAtjH&kHU{P0mcqOvWCY#`CA} z{bOceSj3JVoAa*VG2h8IAh@ImYnvJrD)qZRJT_)$V5sCpH}%sEe5PjNY^j4xy}Mf1 z=nXRi!(MjuO0oI@K2!7ab5axYF#Qi|L~p#(V;jfB!0;KPBH#T4kC{kOh`-o)lwz{r zG!p{@8!LLou6$0c`B*X{$mu?R99HHrFfdGJKo8{kukaX+r_&8GRgcB|K_VjqLmCr$ zJ3aX|F{a|`bAuvqQ|~U@gUk#JcI@bVZiTma%`VMNElMm&O~H&qkg<$gN@iehELnWS zV=Ugr(te*^u^*Wk7*?~Rw|+A|<1rIb%;(_C8{e-L$QE-jFeD402k_?agiX$@N=*sL z%*8Td0tyM$KO%82m>3vXS<#b369W@?bPIEU$i+1X;%clzB_LDZr7x>H$HKs1!ijF` z0cJd=dODio3x_Sse~Ub4V_?YULvP+a;lO7qzJU^uYkx=WTgk-2z;GC&lu#DHYi>zu zdMcK|B2XQg{VPX005nvB(PXR?!DA-wCgTS?DTB={3=9IC=*de;46lK?sYRK|xPldw zf49m_SC?jFU^vZ)-WOJv#$z(B{u(Gm*M$GSXu!e1(9DlM4mVYXppl3xCowZG$i3`; z9_FYpGBA8%L{A1vs`w1Y*Fyt2`k=?dVhtt+1`!tY_S!r(;>^WW?SouBz1zX}A`=6H z0xNoRMMV>z>3G|&AZIU(wF-L1!oYBh6TNis)4^kKKv8C131}o0U(!f5|6#nJiGjg| z6}??N!4Qwx_$xSu3NG(|j0_Cy7~#Ccga|_k6g?a(@?PG;+Ad}=C&F}GQ3wiY=lyeq zzB4f}Y-MF&Ky4SBTH-YtOLYt~FD`;N_cqpcag7ar^YFRS#`NC43ZR4>JQp z6h_NtzCT_w-7N40s#uoI^1GncKSpWL6pYWQWnuD}3Q!Y`9#C7v-c zFq~&WAJ&VF$7ynET4r8mNvcn3UV2G}C!w~3PgB5|$xI9kPAm)zpd$?t-Q{ITxUBHZ zOCik?X^m@tVn7WE76t|@gbfS~4D(WPS>lseRq28>M46eN=b8s;6=&vS>Dqu|LS0($ zHE3AsK1PmA${=75?jj#l`NeO(Zm-P9z_5@Jy^bo##%XY7Ze~ep3c(mK3C>Ri4GQHm zp|>^P=ioBi-_s=|KRY!qvkJNW#s!@)1_cFjC`%!87;fd^GBr830A=zNWR7;Y)!|=E z3=DJF(0k)T`S{FncJxlI3@u1;%*%7m&nrpI!%>H3u$SkZ%JRs~+8Q;SNR z^YhX&i*oS>ORMxEMLT8&hH!TDPV|~;LgxDyx#lH<0tb6#An3-$a|<-+hEc-0))O*1 zD7653@+Nk(6TcW;`VAUe!D!@HHxo9yxFA2T7)M+dUd;bn%FMv6TeD#|bNEl$Uq^f)GR+yMg)6l(58{QXBy;S!|e*!pgv)%!_XN&V~3)_fD-0N=+u@_NIU9d_`Fp7^ZQeHzcc< z<1^jg-wBk>JravEuxCf5!{!&#m>C#^InevuFIVF;IKas_Ah9ShH?;)0dV#IY0440% zb{=k1SQ!`|3!rzbR<6fuvbU#GehQB1Ixfp~--VbM7mYA7ST9gV(EZ9Rj-Sf-7$;=E46&Qp0vU>=bU6h&{l3IbIezYw% zb>L)UU=ZX-Z?ke9AYiaZYGMkm_?saob~>Defx(9hy*SN0M!;CS6+nSeE(2&?lo!S* zfy8Oz%*9bo+uaO(-o(tnFpCX693;;XFc@F)A70;HlE}iqu#yYCp8a%@C}VLa34yiO zB|wE;G%Evx8A=Om-8H;M`v>^Dq$Yc(Ryu=f0lcMNvtoAgb|wY}KUVY(!ttBL*%6dl zjK5(0)h}lRngMLZ$Tbh|;I$$@Cx=kMm+b8Rj+L2#L7NRdN6vge*z7{QK{M}H`Ml3e z3=9X^&|~)3W4vY;<(H%;m!zfyBo^VwlO7qVmE0^03_m&1jrMqs&*-4kGD7XjS3BMB zxiT{_#9}ma*1aZRv`cD9VrCAG>?6xs_5m~}Xvl-^WbgL`%q0|wCJ`db)O}6m zF9eOoj6>o&G0VT>Ho6$26EjEq*(C;M28MGOg~xro<~Wv=6lErr;_6>CEIJb&!otAd zz=fWC&3@x^9^BXv(D)_x3Z-P`^iCf}1_lKt^ay+QAD`LIzQJ(gaioQ)P0{~j7#SFR znHU&MPzt7AMrIsSCds+Q`p&+=kTG+_05=XB_BzeH1FC7~V01COnep0?pIcCrT3no( z;*waBh&^D`9Ahe#nHU&USkYad%1*r5_y!<1)qXp^f|-HAi37bk_KFj~4d8w*?i!)> zl1JJBMh1pW810+ayhIv|&)o+n-l=)b%)r3Gg&s0o0{Dz~%}Xw-EGS7$ftIJZJ+Nb+ z)C3DA28Ic&=;JuyBBa`Y&nMYy*iI?1Ffiz1)XLw*h_VNF@;S)iwsQk31H%bE^n6t$ zjo;|9)SUbRd@1wN-q-IFnHd;LInWm;)hZHgG`?Wj+xSHgG$^o%9lf@Jm(b|L@b@H%A{1_lL;kbj_o&kAo>Z$znpJ>zbl%A~=h`m^09~1*{jyOWLX#(x-nLBW?2!iBBUrWuNdJM zoL1;>*|(sanSmjUgMk5b>k1;oUfJQZ!oMgpJu@${B)}KswoY?`TNjaIIhBo$S*yVHg{ZA$ahQn;=-BDI= zycU#Xq=JG3UJqk8K9QY0+JKpX;XOP05Mrz!LF0*t;?RbzD|1*F82)pkC)Brr_{Yb|sl1$Du7ZYM!QgHj8jqft0IBC(k&sy!?W4EwpzoAMPs zM44WUW6rnDK2E!lnSmh)V`MdUA~6P+rWWHET!>+^th&s~z_1Xbfod_8pvfVrxdk~m z=fkWr_GE+R!x~x9$I#Md<2O1#ucRm+*Vw|MTZdkIu`n?F!kCRHpNH32cOV3@{%J_%&BhM>v8 zndy0%dFeO}*ZzD?;t>-AgFhR3Us7}f35J6wzp)q6FY}`(Br`KGgkUs(A~)l=p(sB; z%|9(5zqmNHxESYJfOM9=c2L9N4#wD`%yzuy2WRG`=cERdCZR?uu3}pOrPyAu3%A*o z1ts|fMfn(IcS7w|_K!>q4C~n$7#vVcyGMj+&Y-?~en3$^kz+H;j{K+V*cccd37~hB zZ1)j%yQ{Oie{hJgiJ^gCVs2`Rb7@goDvq)@V3ASZ2WAEa8BPWUClqg~93{mf@Jv*2 zY6+MI%}C*}Po3x4TzzH+22h&~KA#>v3og5oiqTO`;9 z>r*-Aq=Rini!of;2z8B0$UR&(rWRv1epZ*&aW^wEFx+HfU_d!3fuRSlInMdHxtS%o zsd*)!#t)&Ew%-{sjtNW*4DoE}wv;}==UOyd@=`J(yHv0ji^{vySDyk6v9Y1A$I5<8 zye)yHi8*-2FjCmBdxtSGFx&x+v7toutY`QvaSe8Zw-<5bLJrgT3GA@kb(%pl*^W8s_~+sS{{8a??OoY{(e(0ui_eDOfY9R9BES3+tcN;)Cbj=@dT+I4 zVqg%&*i=2^BYu-hi!!lCr(ecgN6@fT96NfuT;&U1BQw(j@^dniE8#JTS{otH#dn>N z-fGOuz#xgyhMD)BG&^v_>8g2-UV1DH3}?B}2SSW~6R;pJv81#p72*|KU4W;{9{As7 zVqnl@Lm!LU|DPn|@ekacdZlN5g_(ij8Af}FnVAL0v&m8EqfJbIt362CJ zaD1UeHWLHGZWi#`dEi=Myu=F*B(48y{3@!MoX{`b*3=E!}=;M;SUqhhGjkJq(GGd~O| z{E5pjd-QSHke*kH(J(hV*02NAFyG0JUYC8rYmU2LD4xbRE|;Q?|F|3Da%pB_ULuB5 zHDbjkg7!bTff{fqHF^VngFGGm94U6}dQ+T^O-{t@@EkI^5VM?_fx(#rect>9euF^M zdhSK}r3Ijd0`|No*JaAT0km%oBOqQ|;&r5_v!g$rfIzNr|EBmvDzh>$%-}}PA^)xM z+Tr689Gse5T9jE*39$;{2VAKF^#H9VN1WytXBOv{lwc$b!Cqre(7LI54h9C$RXm8a zv5%lxp242Mz9AtHry>ezq)Gsnt5MI7S>;N|)%nTAm`l$K>UYe0!py+1i37b>c}<*w zprQ_UN-5JdyAL|_$BrAlBd6y@lzW3frwSE==FL-!Kr@EPCH3@}MXU@A?0o36J^kUN*@Bcvk-f3;=6!B!&_Ovo3=DRN zyuiS~kQ7Ul1um({If+H!;POxNP0Y#%WoGO_R@v>F)Sw5o;1jyAShX553*THf7BE*F)#>VEFjui zLzE>!sl_ElnaQB+gRlWtc1Nw%JL+-SkeykKS*sUm3aD!^GB9jsL{C8n@f+mr8B9*C zjyjg<+lb4txtYmD`NjEZnAOd$r?)-dfDY(kMjx{3Cc-pdn7L$BIj8~sv>CVCi<2?R z(+5}IKmNhQz#ztkUhc@X;5EqEF*wB3*~uB(P#1E!vnFMa;5;S<1_O+B(dF%UE%0=4 zb%dCYNNdOj_dR0e0nO=L#aLyW*M-+$-^}74A(K%t@ZTcwZkv9 zq&PXTAQe;*gNE3!d*Og}s1H&(jR4z7wDC2`t%b*?T&>$b|cJ#|E4b;VI$BKz~ z?FdUP$}G-I&vULyOn0p)NzFr@aln=BQJZa+lX2RSUzM4YgPHRyA`Xc>W@2FI!Wa`N zC2SUa2sSSTyo4NeBM~kqqh_G}({MRCFS8gk-y58*Elgl$U`S_2UoP+izd?SU!6ANx zrVez;E%pYT4#&fc(P_kM zjvrYKZPZA+umG1!u{N+P|77>NvoJ7JV)SD;7veR@DX};++21)h0JM7m_ntj=w(q>4 zordQ*(H9JCSc=ztP)H5o`j2BI-gzGdu}f?14A;#o=b);1nq$K zVXzmPkG-ZT++${7_=~a6L3{@hCga=A`7h|D9B9fW65}AhfIUPTjW0H>*8gof&dk67 z8Y)9Q($!=iUJLMs$ZocuEg7I=pIOm2)CC?QU@9myQc{a>r4)zLOB=1385r(jY_kzQ zN`%S9sZNz8xMpGI6|{gT`I3ClPr+1s+fm0WA|lJ^i@#908-t z^0Ps^<8dv5O`d)9PbMP+!%QahljFGB|tNOAY<1{$49HSLou{uFUmWhEO7vo@@MR?6|&2dl6P0WF}p|OXpYUGw* zTNoJ_L@+8=*=P7%>F*hirzFJ{4yYBY@e5ow6l5o3&b08}S^SidnStQ~8~UQm9Q+0m zm}NR~DQ}4u69YpZ#?gyMU*mNksDBTd9Rm$fr35FY;n?P!a(#_5H>ewgahRI_JG|zD zDr_fQ=cDY_vvlZUhD<1+9!|XB13^YJzXpn+>wj2W~=Kk-`wIRXQ>$>KBDFkWI}VAz6Du`K?J*JKwD0@-GV!@L?$ zhU~@Iq;{Tx700wEI8nn_=ix5>-FTK=oz2X^@R=Qb^l1hwab|;7xFwdPf)+aCTz0#* z-HUe)BLf3y86fI$^)oq%u?2J@XmUm>t`h_+te0O2XJ%m7iZMk$g&VK&By6iW$+@)v zbPW0q&;i;g!;b#^c7XISj9eT;u`ifZr+i^zU|_-MGR~7A zY&tyE<1k%&ZOtvv`M;bT==;1rNE0yK+r`ZYY&;I5jWYh%hA=ZQfL0cwE?M?gz;Cp- zbFiUNfRige)6H%gJ~!fJV2D#g@9X|mCTKdIiVnHB+?}PfOaT(>q zr}UQ=;i$Jm4sotK$jZRbj&VGRj29tGf`c6cf`jpSVM>{ha1Rp$!%{Z%!o@lOuj!zM z2F_N2zPc{=e-;J?evHK5ouXJue$*O1t+=sDiDi^OguFgay2#`~4&+Jjz$Hc(kj&Y3riX?na z4R&=#8jQnrO#wTrO2A1b28IQ!=o7O?Qb{r00JEVFa{R|%n-f60^*>-3|0aVJS6VNuL7>uyLUPX%WX4s8? z`Q~2_s1=QAJXakl#+zd|K00IJg||!$47C`pw{9fGcnj>t7i5}Tevj4o_7+l%x5RGz zhtw&K&zTq)f-uU2tL-Ehk0aTic(6Np8WRJ95JuQYb(3N`jxwQ%`EDNvGXuji4CDFx zNHHEqnK0E*%jGo_14Ai>@nsW9F&;=?N11S6<7FcsGXn$YR0h<*c{Yy}<8hP;6Zcts z1i8K+!}Y<7NHHEqnc)2`V=?HMq5T-fw=5;acpPQI#^$@)X3Pu>Z!wI&wt^Jnag+&L zV`fhTwG-ko%7pASBp8n)T}nz%Ym#SXU=YBltJ>F-Vmgj8;YPvvi=ZPR6EKWt-Asz{ zILd_7mk+;}fL0x27=LpcDaPX{6VxhHxGys^Fz{g1v}<;eVmywpcehyf2sDA5g%Pv& z_K{#bjv_()zgplr&|Vk})8!A5U^GNU^D2~1^_vuCAO~-6~fM#4=ULSoc!@|Je%#A)RE^?cI*?0yuVBIs24anUy8DtK_ zr29B+$j!_}y}%Y^lC0)-6Cp+hhDnU*jo>o`ObYh(^mT;~;^P<+I6S+@cMA&x!!Azr z#YVOd@jDc3ymMkfVp3*KW=STl`MxSmIgt=X1_pj+^fkXh&q%ZY?icK_`qTSV0cfwl z1&k%S0xw9h3CHg2?d-~4dl(rQK&yaJ4=1mGLz40MuIQ16E4z{j8C~M5Gd0?Xm?cJj8etr6xu)DF_gr#~1S=Grs&Ay(Q zfuWv_0d1pg;dgSa!cx_PtP=E^u)&9!fuRAzs_5V3T7{+B2U#_}a+3FM(BepTbYBVm zC)X-0O#qNpyXy;lK(kd27*<&@v*DQeL8LM4afPKl0J6$Y_Mp;S&_q2(0`y`h(<&U{ zr}$jy?=5J{19d+`AQzc7;RwDIR>lm_*{YznF{({ddC9a1N9einivRq^#J~XRqM+Ke zO@K_Bu(Yf|@g&$Bp?e*xO=2Qs+JvQ*1+qzW@1g}<%nS^mmI|t$!o|t72}_F$WK+?p zaAnXgElitEOOa_4mev=@rfbSfOF+ehJR5p3t0qULO;}oDAe%NnRsR#i#=uY{h`!+d zjv{$BVXwazZQ1(a88ZXJ70eR`G)Sv69+f?goKVR zK64zCL7NbgaWpp8ow3RUZA0$HI51?o5k6C)ClGn&78GUTy5(ZcjG|Zj*%=suM9^14 zUNFUHc1Umt>U;!jq#2Y*6hk!9KocD&dC?c6J+Z}WXl8C|a7kirK~QQT_GGc@C$s!| zW(Ed7jLFlb&P1AAT!1hdSHlN&jm>&@Tt=6cWaeNjHah>lX;KCU1B0*_`e8;d@Ehb9 z>}Tjwnv3K<W_m?<>jzG%AnB}j;Z;(r7Q7ZWI?O?R4w_whk9aM{Q90zKA z+eF}TCgzs6!%jx*@+=Gtff(D8OYs}zn4FwiT34-G;4CgE~Bz85j;=Eb+`s#BW1M321>8WW5P?vy&{AYJk?? zmtZVn5lSV-Y}hGT0jWiq`8bYhvxsjvc z-x}EdJCNDX-I$Pci#@snmfvL(2Oakzgubd^OEqy8fmU1*IO$eds_+bGvPhT*eHg@` z8LuVa?E#Scf)jBc8ljWRT<6Hbz_18ob@{^%yv92R`M6{jmjvYFtZo+>sQr&+WMFUu zT~m$HrLXNJWHi3hk&lVUik<}RNXA&#Y1B{1+@RFNVqEu@eO-9lb~ytB!!ZW*#Y(}G z@td1kRD%C-mBq5V-=AV(V35IB-4Z&5pwZAg<&#;A#d$=V4mw2#=SbOp@y4Bxm>C$(V>EQ?7UQ+SCD;+XhzoSO z74|H;{>uj2&CCo8^D$15-@P2a(V6L~#duD-zM1K620Edr0b>#B@zn$jE-uJPti*lS z%qo-P_d&fVVSe;;4U9GrG8uAFLS}v*o^1KI&Qy383j@PvjPq~^JX#S_c?OaourZO~x|d3~GaYSm(1@hn0chIL6|BWAI=D2cq$m|f)vCbq ziphhOf#EYRdeq5if@;B zXM&|VCSU4t~SI=jcNY(Z@`EAa~mzn)yeAoq-`=5WSrt{*a*2nR)4;dJWuE z!k>}+A~i!n#nu{(w6g34UTZ)@)TKoQ`NgT&4&ws(KxD(c=HE;V3~MpYh<*HqkkL5u z4aivjovGVFcOz7@qc5^F{eah4P=+Dcl=xxu<4q|G1A{%r)dF8W<2N0A8e9-;&>k~V zLH%qIhk~!ttPBhfFxo-Kf8aG8GA!akpga#*@Ydg!nStRR#zCl#|L__Qt@!iO@}Vt8 zOy`4weoKkux+u_$Bnx_8y2r?lV;C56=m@Cltn^JRD9Fr9$5FH_)i9sr&B(yO3c6Mo zrKL5Mg$TnDr`uuabATMrB;xfdmYIP;0^>MA2R4$-$GW=!WW)DxD-SLf28Oj5r*!=1 z#BT$9(rZ?q1#urV|_8{^K7 zP#L@i2bU&gr6!la2OvNtKKPy{9H}&N|L-&BLEFYKR@??C5MvP$ou#MC=N}XOU#tL{egL;6N85vX#8JXWyoB{16=%M7bC{4Upgg6C*ddQ$=Jg#{?2dheTM`i|w zix^kS_-PSswsVk=YhFnaj`3Ba9=nrCj0_Ctn9ygwKIsx|g==m>NhQI1pubQ4bo3S@ z1H)Nn1_p1GklL?Lv{j%}C9+dfKp_Y12Ne^vSjdR&An1m|^@8Y`P{@c_i?K)kj3Xvi zHf#(Grv%WqTCrIYV=~kWcnT3vj#NEibp}-2=3*T2zrr5BEr~_xsaQIRAVV`3?-vAZ zZGMGug>;lN5r%>?1l|hn)QVC;&}j=982b~xx)EVMmNEmB+cvxjV!sHwu85O?0d>eW z+zY>{nb>xkfdXRvA2Vw&W(Ec>j4oldKVBn4@f=(WGWc%Z)u+2b`mtk<;rQ(_f)~+9`3V%Wcx(j40`LE%&xctU z7?^m_dlyPE1Z;H6FUrNtOCWEoQQ2kg7blD-7Nv7AGBAM79MMN9>vrVgwI{;Vz!DxSI5L6Mj|bb= zg02JOLGRDV<`Xm=DW(Y&J6xSx-huX`@vxzXm0<}%Yg|&(5=(PRz%`F^eqLE>5zbqS zqnf>{g_#)`yfCKtc9s*g2RuN4dioFY{6X`z%kH2HyJ95Jo7o!G#G8#J9zcmH>_h{{ zQ)UJR84mQ)U!aWy!|^0pP-c@l8_q2x$-t0cjy|Op-9^wAP)7|jyMc^d_+aUaA|?g~ z&|oj>Dy}1oi87W@)Ph3jqLIO**-Q)!h8SDpXD=hll92rD)V$0pTo>bgS%20;kC}nN z8smbUX)6hu59tUZ=7*4C8P{AHYL%n07Ox$J(Bs}yP$u_4!Lo1hlc&F!ApV;6*;Tx9k&!bq1H)#FJ?`u~ zh_nlKjw6n1Za}v5sidzqhwh|Dy)1geZX#_7bOxP=lbV}~Z4m;<4!ycZQv#q@%DSS| z6yE!Zv?IvP+1T9JlIVy!vHSjZ(4_4qP6h^h6f5}-5@}^{YHng)NoH~}sI`E%9k|u~ zgDB{zTWgF|G3zLimVpkb^H0N(;&EkF)b*PkC-K@*78U2`CFbBR0;Z||P=p=) zhr8CLS7OjNu9fn(<0R61fa~|D13Lb3=;#xKNbcC)Xp^P4Lrtx z#$gIllR-^0P3Ff%Y*#psaK-oj%x`1p6+raoFCxf!%8VmijIi0gOp zm>OYeW&}zh(7SrD4FG`L>?w9I9CSdXIL1aJ&WEI!j%6_~$auwFQ|51CVqj3jFrMuR zDaK=2zzZ_|isB!Gt4s_Gu^7gSKPSa_EQ?M-#tThOe!85Afk7L?c<)!F7>{M8DaiQx zh}B-$jSqZFit$*Mmx7F!kvCyn%*4RJgW>w{52P56Wlbr_`0TlQCTE!#7@{$ZkNixE z@mLm;f{b_8d3YBzWQ1va>o-!2$Fh19Wc+`Nx%ZA>b^WHFq!^E7$tcM9Kfl++3Ezkbq8a6 z;0<0n%>Bp2zyLZm70C7XThfh(Bs=sO?Oiz!E_vD&8Ef84gc8~7*d7MTTCt*#G8)2 z#kBeJ7jw`M!DLqS1yJ+#378FEhJ)0pM(!)#b(8j-&C0-_&x?MnYmO0KqrrC@VmcQz zq9Ly=VmXDCfuV>O-MP^gc+GSrcu@F#w>P_(7#SEQGNNw|^s*z`Xnad60$vn}OkiYS z0L{juE^uCJPsjr7EABuQ(cbCb*yb}aFo?6Ehsb0{yr#Nkrskx$=HTeIf&zO|hN;X! zCI$vxjMj9o3t^*iowpjYEp*m-Mg|7Z9u?HeXNfyrQ$6!aQqxn52#hoq#ckZc&CbA3 zDulk2>XIj3np}6e=FNbwZFG|Ic$U!C> z2K+9PXJlYFz=%Hd>JWy#L_83TXagax zjNPmZ44W{n2s|B4*dl_)>&@7=1~kEu54u7DCAmLM#BDr0^$>{GiZwR#A{iJMVi?eC zw!O)OOea+RT(&+Yvz~#0;XcOF-l7ydW`pyqYejM@jvWi2G^5BErN5tnfkB*+fk6=^ zP-;?f8|@P8h?$WWMp7i$%wvdV^%p_vi1!Vz?CB4`CQ zj;5QMP}g*QMh1qr7zx}g54RP*iC7Lv1*H*2Hu0K+3=9k`jOf$8Tk`Q4R{=g+9TXg? zDXA$S8c(KNY}4i|#>BwT0-BCT$&|MWa9aX96BHa6&;Y_U37=9CP`;gkf#EF!`bMRo zV%#Lg z!pvesKg;_@B_YEhnF%wOf*ft4emV330|SFSBl`LhhicsBh8HCk6d;E(uAy-yl(bh| zgWJeNSjz;Xc^LU3n&SvF1A_$zdS7HSQRcaL5NP$Bot`)S8WRJ9491n(HyVg>u!{#V zZL5V@FD{;7WMFvCjJ~=+q=gt;T%C!tM>5Z%l8=dj0dxTX>J*4e8?p8{_`1W2>7;BX{ zx`}nXi-)(XH-TdELR?THX#dSNcJ$5qz7vSG2Nd(zZNe2DsB?i?Q*hgq0&W|i-W>pn z2uHCy!s|I07*-0R7w;>GFwNaRIKa~5PE6tbkRfzJwYjh2vj0=5?Cvw<$J z1?`A1LaAyr7&$Q~t)OF9u<|n4!_n9RuluLn59sLz&39rf1!HF+%6wBpyk&&RpEGu# zvuHtw#i9;sePScR{EYmflGHrhT{ut?edpXoBXbJ|hGhZheeqZ>!d8T2rl%I+%L3X5 zfBewqWnfq$fu03EI}tWMJR`FxryxHcqYl7TDWbMT8v}4#k(!sBp90!#gwYoLYSlT_ ziH(6F3gd>CgG8C<8SHOqZfTZc=nAz0d*#Ag_-^JVHU@@0yy&%WRyZ-v23-e$--hfn zS`syk3=E*dl2KPf*2NKHLjdR!378eQR&&f25DJlEV_@jTSWpz7K(Zx>kb*@pXp{jt zdz`uXWeI?4e2{b z1_r4P^aju3E}{%~ODrzIXTd~9)=JP~@&{_@sV3$IQ5N`Qrf1-^0TkNj?(u}}28|S9 zjMQhoB+3R*#}S_wGB(aC6H#YiaI-`ALhCES7C7bPm#1YGXW+A8;mVx_>~0JUH|x>M zwBLeUIE(#MaJ&}lgD={}XS`jt(%juF3=CNq8^04Hh%?>{pYhL@H(oF0XJC+3L=T_p zSR#y1%uUV7$xOs&gJW^VCeU!M86)}{@1R`bZ6FlSO$V7@*9kB%lq;ZTwDLT{wz%NW zXp)!hyb4$t7}7b=TP8vEL>Zo%l8P^g1jU=ai*Yb8MDU~Ejib~;toeijs7?Ktek&UT zgBmY-VKJwNupO?DtL*T3VgbX0E$ams7z|a>E8nKcge?Gd@Qf@BP0aCGA+lttj}kIGA0IwH_Yh$qs%)*SWudigU|UYS?^YdaxpLjilWD`?R~wNtEG)%AbbN<9m2n7#P^u(OrM<6EPN;;B)=nEw|E&SQ!{% zInfISkMG17ZfcA-aB`Jr9y-p-z%UoXc*(y+8E=Ny_3K=2+jg=sFzm)S6~vyIn_vqf z$Qf^`6H##LStu(5LnRmb?2sxK5r(@t8yguK5{ldd1xc5*SQ!}BaH3mspPx8Oj4e$F zS&|^FVgtGi(*WbP^gK}_ED3gW%E`3qJQt9=djO4`@XM zBf9&aWe{gNp@gbv(mDSb2LnUC5PDh4l0}3Ki8;lIMh5u2AhY>s9VI( zSddy&keY|HTLv1ZS()@8U=Ak(!)1)Y`t>bDSdg7rkd>I6jn50oJDR@8vNA9@gT`G^ z8bfRQ2-^^Xzb&+3*WI1-g&7!5s-uUG`V=AzFV82`=hKzj@<*73fq@a@Y*F>SbhL0Idc#K?$1~Ylt)5JJ`_}U+C}4&bz?R%D^CnalT#qI>I(YU^xF)P?j(t z57nvO)mG^MUCx8CV3F-C@m7J3lqBG%_~rZlt1vMz%x6JQeBaL#X%S+kn}A&sWxuUK z=lg?N-lz)$+Aoo87rxN5n=|hXH!}mnAB+R)pIs%+qF_hjl7#O2Z_y^K3=BCK8+)T~ z5^EFD;rHCtMbhj^ObiS=F|t+3BjPNA4F3>k+ve`~ z-$93hPiAIda7M|*B~MAQjp%T^WyNJ9z|6p)0vZ}Zv2e|EqAUarJ{g-B8W88dyRJ3t zpnkZv82V{3+OJ8nj%W{NI10W8t=yn1Myy3f z#8_l%+dT_ZoA6_lhde)svdGt+I3M{Q7cSA}VPN2sVqkDXNgH>66J-&~=n`=Wq(6e$ z6SNBrba6PUoi!XhIQ#QREeijF)V$zeA5vCNX6e6HDPUz_(BMKps^T3tQFemo-yrwH z6SG>=*0A=X9Ww(%I2(ES^ptzd6sFxQ^ zQ^IXiWyG8w8of_slCOEeQs%S4FhVk(*7=ZTs8X85tNJ zGNE_mo~qz=D8zjK(h>p|h^;WP*v`nn06NwHb)@918eR*06O#$L-f_Czp=L$~hBFwu zJ05BfG90_paYdpmO38Le3%BXHiOHBf7S5Kp9zrY(45b)%cK#(~6w*3loD0-v~ui7;-Uea5W)hgPRjEHnbhTdV-6Mfq{z~{lGS3 zOF}l_444DbU57wDTWJCGG4Va*oOENH#_Q{xyQ;{-z;K)$eQeG!lz{QRiOJ3=QHi}o zvEE(O`xvx`0pqfdEs+Fl@XtxX9WeR-n6EEpWnk#xL0?Y)K9+#Fpy42t5W$tp@yX$XJue`f_c|ZB|-B;f(g36CVF4RUUmkCdl-iyiPRG^-_tD^q@<=0jBPKi zs$|eMnVT5r+fH3X$ckW3{WR28Jd^^hE?e zh%pW+I07J6AY6^yBt7;0i>y5p1H*Js*8n96rK}*r)tD1pGRtARi zTjNQt`EoMv% z3=J54op0NTFh0W4$QZBr+$K89k1;YZY+^!R1lF^Q2=k*-i}FDuFBo>fvK(l+C32|9 zBXbzG?ZIb9QDQD;uR$_@Z)+(d0|V$XS=8k7nXqA?_5`Buk3B*~HhlXD+6`*Kh`!7J z6o$An(r=o}@+{M3|GLRPrjZ83HLm99+a^9sJl30vWT zm?t5yKN^%ujeLGYZDC|!U;wq#QBvv86U5m?$TtcKcRsFWW?484vP+ zp0ima=%5==&OjZnl{`<3@$efs2w7C%tg#+s5$KY1E0mBDzDSHkrAaxN$;kNw$BuOe zr9~IlF)}cuFrnu}p36ko1HOeZ5p>D{J`aJWj*Y^0nz%ADFmy7ZAFQf;m9RzNSsv&p z8-a8Nvh2sx1p<#57#KEUZ1ul-jY!J~`R7m0ZY3?~7H-rYh4c+#tRQ55Q)sXTsMOlQ zh(2bx^cGR(6P46JfpvX?W#lIY1_sb*8ETqlxoLfpT)q z>t&m5LC1VBq7Qm<{~>6dC*jUR-L#3epo9mq!v@7WEB+E=KIj}9$bm3~QpL@NMM0p( z3TP)7YMK7?A7Pt<{S7S)jE#vnisRWglRO?q28LRU5DQ`8#X0|806Mj)Sf2>O3~ znJ_Xi9AQLXka&QRu=%N#@NmN38(p=?lL-_=pwx`oW(;N~XuPjG!IMgIw(|svGchpC zVrF3QM2Ya1ECkI*Uk*Wh0r!OS)e2BUNE@U4E@vm%T6hrR=&;;O4_ga5fhdy+ec6XD zCux=u-(+!>ni!J>o$f^)l6}BM&`yMhK>5it413bZ)?_>y#mK<$2&3_^mWMBkqpna9Y$kc)AT=K(>2mIOH?tro%ViCD{7Q%^E7FwDg;f1fZB=9?m-9lQDUr3V^r zGcqu2WJYfWKNlrzK4Jk1A$#5()wKErs;oh`&!ChES`x(ALsB;-MoeHDXek@0b%2^t zCQ1=$86p3)hG>I}|8@-j@X8Ql1vJ+?7nR@`9f6Iif@)~w@IqaQ@m&^=Wkq@E7z=6w zCYAN8gU0+>(bsbu$q_ILvg8Glt)ZnduJzo8{#)nH0`=uF#yj^b60n6R^EWNN*YJXg zf#DDfdaB*2M9BQqvecsD)Rgedyp;TM0{*zHs`4Ck{N6nVbbC0}2-p*nQIwjPlA02n znwkQ)1=q0?`#*^X^+HE+P#5&^s*`08imljlzU-@@U^zwx2GBk()YC5cw8*g&yDhmX z3s*6*F))N;0XQt<+V%c5Mp1az%n1z8M8Dry+ znGs>rT!J0(o#)tQFSQZ0E6D<52RNHKVZ&XW2^jCbT+0Y_G0zT+&~CCJ#&}rA5}y}B z&uPg#0G-jqgT8t0i6b#~_yyrLT~wDf8G6bc>eeJB55lGs)g`V85q3y(HD2+B@(tG z0KfZv1q^wFI2afzG2CyMN!ak9U`I%8f$n}>*;WR*iep$-h}(*i9L$Nr-L_3(pd*s4 zF~->+5HQIxr#!K;7~EG5OD)Pwt3*B`6nR$OmH&csFf#)KXvwuUiepuZ@jDhYXBt?V zT8iVEJjd2;|Ld6<7?xpN0C1rUzrje?gkmpyU$QqOP6ACoFrcTwRaHbAjXzjwC+v*^ zO$st#+y*wknt&Dgxk;IMsVN?b#TnS0ANE7~mK_TN!&?sY)5SgO@S6=f^|mMl-@0Gh z2cI3ASs57qa-q*RJ#NBpc1TV!(n0~qxI}PiW(khyHQn~(%qm6(2GF^YsAqDV?;vOq zLDN5NT$lZsiGiUQV>kKrE>cYQP0UM7$CdQ8ISr>TWMp92fw9V1zmK3L1lKTM`d*|7 z+Ij`LfeiIp4ZR5jO-EVPh@4%&bAP#h7#i%T)kyzjf~NYF=Hw6z`Uw}RU6(-b!9b1J zEmH~F;9p8$*?7#cXBTdXF))-EqpwrlHl3j90Y&*G`N{b?9*KD=Ik;l=%n6G?&C-xbHb4)>CU6|KCqrxLZZ-x62|n~CtG*iuS`k{3nS(U;f~(>{?G7bu$8BzD zNoEd4cj(~Uj1#Tw3=CEx=;1t@pi%JAW60)wkSlECu zh6S+D0L_>oS4LvU9EKCeu~?94Xpx5!3?MUNs(iPAHg$q_CaR;D@du|Fu0=)pMNXxl zB!=DR#XqLofTr3LnHU&Qb9U(|Tn_WePfpB94K69l%uB~^>YojqJE|EO7(f@-quxI$ za0aibnN5~`=^kFfx(j#eGSU=UEscL5zOyOi;SR{siCCZUY#M*@!LZHYDUvk{~3nK#qXrZwtN@Q-jgUe*7&-(5-V-827gQy@%7-%;IA3StTV!m3RsZkgKCS4Lp88U5$D+cjY5o#)EEKKzA}M zYv3O@Ir;>bnQ7qYL&+f^qY}&ebm|xw7*;Z%-!sGTlz>r?1c4b>AY-piQrhAJT29D< ze*M!`LdJT8`1;^8`j(`^PteMcUCihStmXv)7Y7I8H96Vv<3CWpLtqWF@C!B(@)RHUDav7#IRs(QBm_xQuXhhV^~@5_3}_ch-g^CgtF0 zmev|_n{_ZVFsx@sPaMZT;&7y^Gf^gIPd{S-T48#c75&<{m0xk1900l?4OHV}PZN*i zqm&{U85p9O(Cg6kKX91oTbfgn3F;vQm*f`_Tzoj+>b76CFav{!A$m_K^A`>aK#P+N z4L~-4?lcCkJqt=LEKMyg!S088Glk5*hssjjFF!!7Xwcn`s11)`4IK7Fm>O7mr&fl7DqHM^F0b09 zKc9ht;T8k>2#=2z9z%Ux90Ne{iI!q;joIFqeu1%qgMpz}9=)*;s7;0~PNkVSDYzQz z-D}Kl8*(u)q$r{OmXiU~;0N`()fW4B_}jqi7ka5FH>l|ipVS$*+YVdNa-L%`@Wrk#(k za5FGu$)cAFDv|h%HpcIIT-62Y{=4W@99E=4P8-4;2VPF&YujxSWc*xc^E8PNza|V#BE8n1z(DYk=x_jI~{Yl>`lQttbJ7a6n>71~lK` zX_9hSSumlWUa-816x+Zfg`iWJ2-w#neM5$mk%0lUXx;^-5#UxstbNeb z4?D7)fQ?Tx`@O0d7#MmmZlOC^ON@;KjMut;Y}$7QY}c#Ksw2jDPk$^H;7VMmlQ^I1 zaafRN!*z@qV7(TiY=DohVE2LM7v>gF9S<7z zN4T=>@n}_85kJWU=%v?orLXx^;mFv zK|SrH#Tf<$2GG7B)KT2OBp44~%7J4PX8)Wy7eSZcf_7=3PJ(N96Yl{+QL!Yh;Wfw> z%=otGA;A{>anTzlZncPkf#D|TwgZ&-cIhQ-i6{7&KJ1xcmgSG48w?B#EsW@UW*qtm zn+)zK8961UJC>9bWhRxDq&g=S6=fn99JuNM)b>zoKMu?CQcH@H6ALi=(T<;TkBM?J zFf@vwFEcwx&@4Zwp`dmKM#m23V9>x7a!{i>*m@=o2Nys~eT+ttnMKIGPWh#I$(7ED#U+HQuEUP=SAbUd zeFyCtL=GYbxAO#TDay}I>}0MVe?+aRLbjIJtsWFZ#NeI_9OgxCUcSuk4!*u7d3T z$;iOqk7DiO&0bR)bpOJwf0LA}Xu99WHe@+TC+JikDA->0L`~SR9b&&0hOz5@; zUZ;xfA&|3su_rt+uK5?f@-r~pQbEsJ?{1J|J9b;NzOogAmR6f%99HT1k~mwuUEGK| zM6XFD-f;md1A__=`py8~x5U{L;N+@;dz9(s9q#*}Z55#Va&=MCitlHl&Bq={<+;aQ zlT;ZPjH1v-XBK`TWHhMA2X!ssojs5bGD|X3aWo;ahM%Z!TvFmnStRjXp#~ohzwYaL^%aFm7|bukpwp7+q(9+&uM)YCT zN?Vex#nKo7*|E-H@*8$W$ks8`6M=Tyk#2{xlQRyl#Pf3eV_;wa?L|PfM$>@|Yuuc$ zTeF`xviv_*Yx*2Xx5girH5(iYT0xzqIE;fizBrL+4eW+B?EZ28wDDLhX!RXC1A{M0 z@oMKnszuOaWQa|CQI?K^pnJ?iF|I8W^B~b`@Evd1J@`9*hXLr&BG6U{)cw>kp5)kq zGXbi0&)b3BJEy$Ju*eL%cRZtxi`-#gVDQJtu>w9M+Jd$F0Lrm@>pSHc85tNrXXT(~ zr2t>j?Z6pejtiFSf&wf8<2b1uexzHInu2Af7v!7Q=66e&85tPPV;tb{-=8dNaC&Hg z=H22a3=9m37&heul4ujC#sD8ai9Ho~uQhqX#mK;L17kp9R}i^2B_}0gw`|dT-m<+Q zFEKMPxS|vhh9RU{2D;OMh%*l8TYBX(TL~jpzCy;HUV_u4(k%d!c2~KN&a;y+%18s(6WMJ?>NjxVL zDY4eX0H3WA8z0XBrJzlW3=Hllwz?)$Vyla5F!o_0P@MXAWzJ^-9R`PC>E09yEyX@M z1F|$XdZ8XDA%Paeqb6OmG)gSRUC33>H|hm7e?SQdHEdU&X9WNS>Z7ih%}6-z)3ABa=IBfKvq1SG17k#| zeHD53;1~#N)=jVkoir52gx+1du$nxJ$}>wcKuu(C7dPyFTNhC~08CmDDp5coL59o$QQQ}WeK5#JTX^u`T+q3hDIIqgdBXBI1BJ6S#xcaO(P~hpS=76uL4c8gVGkpEA~<`MWV^r%7|IOe zP4QZ3U*f>=nwxpalTFcCo*ipY0n;!!-=5%F#j=DZp3~e$sRm@c^@e-tB{d_;U^P%60`V5k{vjG zA-thyau4Y22yygT9_}Bc*nm9&Z+>2I9<*$-4m6sE($W3OBtT%E)XUiwaRg9)kqZ7{ z{g%F8d*3rKFo4n+>JV-q3#m4N2G?=4_jk%JxC}aP4zwQ;bsgVwR#L6OIUJoRmm|9s z6yvPuTQUB#kzonWf#T>rlJh{jxk%7S$B^lIm zlWGxxf#Rb#*Pr}|H67gHA=N4mXG0?k>^}M`!>}8Bax>v0-5MiP9LeoqQX3oSY+TIz z)5TA+HNK9{phgXL4_*Gs`4qI;8+6r$9ZD3v5+KtiBO@Fg^SqU>d%iM2uGK)b%U6h8 zyKse|Tl=qrMz+Gc& zJ_uUv1G*Rnb#1Gv14+i?s+*sczS(TY$iU#tgx(>Y;7FncgrXwvQ|n963Iot}I;f{^ zSvr$s74F#Z?|kJ2+O6e`aYxG{7b2}7(5v=7@B9qZ%m7W}quyzK$CXGMaJT$30#oL} z7ABy^wxv4>hT{&O_uoF{f`%VJSAC$C9rHYhw7}N|M?b7+#SMMzX20_!+H4%H;T6Vv zvOx`1On2LP6Kyt*MlfexelI9SLFFmxM$3L5BF*;CNeT9F#Mv8;{&V~cXyGuX4Ih0; zvH@owc;*tlyPz?D&{{pz@v9(zB5i=KFAIV+ea&z*+M4R$GlLcfWoM#1EwgS3140T}9G>9}SLNc+Q>j)Ye{~ES)FDyz>Gs65}A}zt$Kb)P%RRXFK zFsqzjA;g=FI}-=Vx3_`19-u{VsBVu5Biei%nITo{-2+e=4GMhJ>oInQ6K^(dw>#Ti zz5#2zpk_AtNMg;0q)=Srk+0SMfmi8cX14k$(rmz$2e!yAUj-V91amumn42<*dHm4D3I_|#U1+$qgAJ`Ze zDumFtpFK<`&T!050O$mqTU$zXPBJqvd}2pGB}p@%2y+9RK=W^yMuRF6vyxXTLW~Ry zyD^5He2a-NIw;r?I-3hST-^}wO#A$G6Lx{dfj~=1P#3PBDaZ42r@IL+qI(mth34PNOb0tOA z#X}bt_~+$dIr#*XRPuk_)&g10&BVaqgVI%8Rz;!J;1vhBZEm#okl++xVBk?hFA_Xz zNU<4v7Pv9TT~Ujjfk8wNebvPJ9^y=g1|8%=80?nJUgC6WDJuhm9WVO)zugp)EWx^Y z9~3>pHurUtSs55gxY0|0*I7i`0FDNn7EF5^&j{-KZeT(`cb#(q5f%ieCKsiGZp?w6 zh>Uv_=d$p{XH%FN7??TGm-1^ZBGV#B5eT&zdkkIrecs%JnStRHD3(x?x5+XxZN)h( z^5DppU!X&fcd? zcX*%aR>SIwyiJt5!qUhovxEp&6z=CbhCM8#wovQ}BU3ZtT(P|R(Qg+<1_sR3cXTVo zuE04QtXp*G04U94roQ^^6x)h3^Ol@+C!OrhWHAU>YM*!v0KZ$k8*2q#%by-)eB0D z3=Cfx85n|5LU+%8%B(dqHG^+%b94>Hbw)t`qP7Ci(L|UIh(Aab2f)e`Tn^Z^NzWL& z0~ile!vXN31eXJ>|L^$%ih{QohZ8M6LYV`I34aG0zq@{n3=D-#3=DoK3BdUnm2AhE z_>NeqO|t}@hlOD`?+L2ejbr5ck4cogG9v>6W~d)JNx9vG5}l%v)O{7KwkMya*mi;` zPV{Q?WgkWch8&E(7VBAxZO6Z_blQK5*`S&$6~pQ?=cr{hju?L%89WY!HMBT}t%aSg`fv18gBok0V=m^R&cOpZ;s{q*r{i5bWy&~%4AO1g`!tY5z#F25MNHPtUk zw+83>^(QCx=z}IsL6^y)F8n|Cid1Vr1tOkUx@q=OgM*QQ0n;jrH)L6bJC4@B*`5sA z1X9Jwz~F_F`c}Us)hg%&G~}R5$RI(GGmbhods^9k&~6&g9v4p(d&S;UWG}Q;fy3G< zmTk{K8%9BApQFy-)PEq=TAY6SD0w>xbR;wAC?V9j{KFqfwFK`1%ryD!{Mbuh{?8;^ z1fBQ7lPsA(Ms#sAGB98k_8niywhnjFWYO0?2J+o%jH7p$zL9Djv?+kcb9wU?`+_`& zXBwD#LB>cddK)jc0oeB?_9hcbJFvRGD|XY z!N;kmmZTPe54r>0g@Jn%-tpspi>b^E3@+^GW7OQ-l-h}7qxqe$KQ^sqW?-1dj_yri zeoCzj#<5&Sv;FnWxy%d?0YN85k~MBw!CY3N6Js zY-0Q-&}0!K1H*S_^m}9WC{ku8c0X=jFI;u!xOJ30iLW3 z40E{9_v0_nB-bij8N^`nSD!Xk1_mW=^k59tC(|yx8AB}f$n*}-1#~q^!Y3d48EM`XRLd;k!x2N(LPmiI$6G)oq-`s5dAWWRBtkE2d&S*o*iXRC|}yf z!oaYElYs$sh@&!?Ov}JaG>ihAT(R3IuKQ-iYBmOjIDYhqTo^&FjlnpMCXO%z#( zz`!KIzz~R1ee8%Q)2<+ABcfyS#;=P;rWQ-e ze2rugwz~{L#mDrv34)*rPD>W_Wf^)6B$*GoI^6|)y@X3|brs8a+YnJ-%)t z$)c3vM4Sse>uk%N|1dBxU|QnULb4^emU*5E@c)S2lGUxGT7q-2=ZXojTYqEq2~Rtz zmf&3S`FzF-dC+oO&;hNe8=i7HNU|g~*#%bv;A^<&wZ9CIjxXv!)`?Ei?Z6rHdzRN7 z1TC!w^{-K_(dj0`8eDN7vH8;-?AA=|A>A6Bu|LtO;2`!u`_@akH8|tn{&GntXhaiq zSQ6^+X;eSy)&yl1r24uT;#xRvFIt=oTD}ZwRHJTyIy-?x%lvShP|zW|ZUSgu1892^ z>d1iRB$BPbnbfYz&Bz07nZdNBZ!+n&;7VzKN-O-Z+wx@!$+qB3XbRtow_~>@Y8uJ5 z;7n)iPMK>#6J&Nw=;v1*m`;){dHH#%I7^y@t-B*YI}<>q8EOsVIFlq>ic3;(TC(a2 zS6Uq>0|SQy`eM>Kvq-T7dnIXCwv;uWk%8e16MDD4Vu>K(ks3(-3##xFOG=AUReW8H zK&$M6f*oD+l8Y(}K=;64x47)~-^~SBElyZQmc=GST6|UHq%n4jJy(!ru_=)j#~xlV z8ML7ebhQa;6WC}K85Tp=R~cClY5jNU`IS=`85l6FcUwcg^=1Y{S|5F(z7D(ZBiE5_ zy^*OIk=6_GZGKzK$iQ$JW0gSe1~RM%Z73qr=Jb2La-egr1ewuS;zVsC&t@YdV$(XC zsES=DBLf4b-LYH9w43M<-*f)=8SHi^Z6nWaV+&&a9XrXA33U7froYp7kY~54A+ZJ9 z<8HRv+w2SsOd{wP{bcVV-EQoKXZG3P@J&n%45h5-^MI=k5n+d`vrDj}V@^7Jc)eI9 zI5QnZ0K2_bjHl0m`h{i~2iROWN|wFYt;v?vVG*Zv)Hj0_B*6-TJI zB*;D>!V1q|e^9u=+9t%-)V*a(=Ydwjf5f;@bmK!(ZG~3TMAws{)vhZ+K7NF;v@7^A zsdkf4OI`fByqKAVf#D!0`moZACnQ>nJtoE7&YlA8!|Y*39~tv`NrVO7sg=;(FgPa} zHgW88-O9+oFoPLAIp(}3(FR;Y3%)GdBNj3A+&r(=|iGkr73wo8*_>DxH@XfNmWa&S;kCB1l4#p9} z3_nS;2ETU#>L)O7VrF0v;XuzTYQIUdCkR*E*u^*UfbN6`E%ri9$=3f#vm(OOz!H0` z^a|J~7Vt1IoKa$6K;6CX#2`et_lhV~up8gW~w3R_6yL$ zE!2E@PJujoaFu0Sb7Lw&SFMCGqEBKAE0JpxjuLInw-pW8t%_16(<)r?^e5b25wzea zff0QUd!Y(>R^cxWo^Skb($B)cP{oZt(fLu8Ec@`4aRM(p{vBdrU|7n-z~F!~75G+* z9Lw-~?VkKzozKh+4B?#Uc}v!S9NTb~ckXi-)fR)+WwM}e%dRvb!y@b@(uVfM)h?_I z48J)U7*KcbH<}S=NpMMiQL2hleraBErE_9&Nlq$Q1iN*=R;+1y$Hu_$MF73LFtH)U zIlE4Q_?2>?`GPto^mg$7RFdri^-r-U z3qGE}N1*eb+c3^Mg7_2ScG$eEj~7y z8#L058FV?hmN)r=$<=~M|vPF1yVoekgXafPzVFP4Imv?F< zxJt#f#>V|nxB6KI1_sa|7V7$I!*bFsadJkr6}!jmFPpQ-FflMFurM&7w)u-HNVn5D zwW!211-nhWmxRraFfcI4W85eDql$E!TvF4B@gCD0F`hgo1_mXJA$P+X(k=B&&&w}L zEp|>UPW4DE&L~Mt%E57`w#T&jD;bp;7$U>ad+Or#B-@KUJm;O88_mbaz%T*h2=eMh z#8?p=3>sujEm8>x4h9`ci?fMryCk{S5Ok>!#tw&1i%GHwRB_<7iSt+_C+Mb}nHbHA z-le44WMpK5*Dm{Q{65(2Dp^jlU8ZJu?b^Zgb`N&DqF0h?m$3zYe_i+Y|AyTzr`4p| zWol@I*IyovU-C*g85lG$E`!osONw3C6F8^9-5;ko85mS0&<6>AZzIBV(D)OmJjzVV zOinCGg^ojGx2oluhuAD;28I>v=-JiaAR()KOLIyxK^B3__TYj{Oe;XA>v?Fi;*z4o%)An~eb|Ff_wiD{jSLJ7ry0;sT|1~rfn}~0$*DNjf`Ll315PU?^jR4g zHgln02l_&b7+VAKb25`F{qj?Aw4tKj_DHC)Ffg!jpf8~-Hy~(!QGQuwN@@}Al7a8x zF*grBr_Gq&Ko7ho3p2hGB9vjqT7_2Nt{iF zMB2pus(O}upSra^h2Dvd+67^2C1iMbQDOn)B#q#LOwcY*B zN@yEtHU&8w;kKq;bnbOf%lsbb#t4+!Y-T%&)_@Y4p`nXwaB4~_ZVTHp7YeW9Wnie3 zN1srW=p@NP?7{YV!o@mIHU*u-bY+U}AQ&TI?}8!)aa_c=zq z9k~6Fb!4%wlsE%}qB;6FYJP&26y-9bw<03{5M>2u+6b2Y zobz*XQj>A7?SA}iTQbP942)F_EB+B}nRAd2A$t~lIrHQpBLhPwGy2@#Ck7D$jWAGg z0*)0>^boRW->w^ZGcE_I28 zfk6;-pEOE6xmti^dywqlV&DRs2Fj#h29(f%(h%yQC?PwFD|2&GONug+^#i;anUHUf zH%PUgvj;R=$cjERp)N+esgAC}DzN3d?x}g$E3I!lOfG_q3=A(ZhWY#?$+HS6q>%kI zU9WtXF!bd)0gRA01-FndFf}kV$ zQGKyimNY9|opD%UKT(SvwAS+hBYN%fSB^9*AorDH_sCA6t<1+67#Kk3TB9Ct)Tls? zEjX{HmQQ`K5W7Vi70I&5635k7tUJ_Muv_#{i5!b?&a5)bTOFEdiD!dW)g zoqG8jbnj;?h9!j-q*{Wr=xhySQ3Rcw30m-tdNIopOHwVtS9nTE&k+S3G-kwvzAoO> znnZiBr)aap>%O4d-PU5XVHetvXaW8-Z8^8V4wRP_QefP!83r25#`K%D7umMqY%avkKEG3zk%57q2|bIIc#~lp!3y0h_qQzQYU+NB z7Coac8TR3>)q@|b+#1Ko!0?C}eZ(lrk93Q$7ldDxdG7yYVqmz?3=G;_=yTXt^NFY$97=92BVc$@W?5oMD&Fvak}96`i~({ZDC&&z|8fGR!#3_?4;Rp&?^~HeH$exk zn`884ohtDf4%qet0Tq=!twlV zSI@;~j0_C17!6$Z27ESvwgVYi7@C+95m4)o$4y(u!oV<@8+~bDU=txbKnFe$VMW(F zu_>O63=A<$=+$siJ5g2;hzwAQYMLC?bc&II;V%>V7Bv1&qU?ah2Esq7CAf2--nWcx z9*hhO(M;%}=Fv@(b-1nAICrLT9U}w7MJ5IY)QaJA4?ZhALDv-HHrC>;ZU<+6&xi)~B{3?i)PYc2&R;&MuAvc9V`{POIS0CI2Gq(7%3Ktskn=n3iG zJYvi(z;5i!-i=OtctR=yC903x_xnBcR7lbjR-!C4zg=o{Uhf5!` zdFK=c1_sb&+^Fk^qqpHT8oYSBASV;svLsO2Xti=?i(+G7NajONa~|9A8XS39(M<4<`(3nI%TH2q$X$PCgNC`eow(Fp@ENqfmeZn zK^Ynx5GwZ`9>YWO64S7UM%D6-0rOZG7~XN9=VrUNcnl0DB2`osESCi}-4`>Vr#SOZ z1dJvaiBa8LaiH_sGq}-zj|xdFg_iw@xFoJc(fu2nx%pL@IXQ{oh6(Ztk~;?V94P? zpJh3O&lu1;xYU#YSOe2BFU2_{F()TAFCA%NI4>ZDS$x*n&+%JJ5De&Fo2G0K^>xA#fQsjD8|C~ z^{9X>$?z~r$uAig7+f(*&gCA2jK-JTrdRSf zO0qLBXb7SQ!V6D)=Hg!RtHI2@;0_A|!vRhP26*x<~(^qf>sv5Vd74_~{^1eIDx8PJ_t zpM%TH(7f!t{PH|>r{b#3P`mSGx!8;?NX;uQ&cUeA&aTeTO%`Ban4!VIfV$9iEnZ_> zeS=aHQ?T`aK;@o?#Ri$BYzz!6yy$}jX?6G<2icQ}XH(RX|7ObE+zbpQ;^@vzX~l1F zcu{5vF6Y)Nz51Wez`#(!fL?+eoq*5O#Ny)e{Gt@M%siBkz!goXjgJ0_Sd1<$$;6B! z?_zTk&_%5#Oz7G1FitZZb8%J&_0cPEIXw@CdM_gZ=b=yzyLaF zP7&fXC@HrPr-`6_AlM!FsquyXYX$~}NQ|11brD|U2(*~gM2`Gl!N9-(S_6Pu9(gRr zZ7%3$Y3P%)Kz>8HXGCI*HU7WDb7y;}&IUz!FQK}m5*1qTau z8zx4Y{yU7-hR559wgImnLVHElY-3 z0K4NCZBUs7YHNXxtw)_6eteXm`GgEV;_Jx^+P!1ShCaUZ;21%}LyL0o+{{LhoF&eiJ3X6DFiC)r0J8cfSMT>8PEfJ>Rp01;0p~_^-Ps; zMg|61&^AA4B8E`Y?%_2!G%q|iHkf~DNkM4|B*!4q3a$);+N%hDfW?-w{9Mdd z!GZa~44%vk44`oc)P*SRIL!$2_YDSZGzA}Pqv96m=!bA0@&I7iyyTXfYzz#I7z2Ph zPjI;p#cYJJ#CbdBH5OwlObskiiU?3U_`yr9yT`Z~7|uwcubP;E(+s$mkp?L}@}_#D77pzwLGjfX>%}p5FssNP$$%AV#liGhKM4ZS2vjmK*`belf`D?kOrg%vN)fX?E)$%US?3X=#~ zLBM#B58@}s?)|{bz_6VIJ?(!=CuBS{-~$pfu?)O`3|}BGc-fJOfgu}X$*_G6Uc=$% zZh(D2sPI`b>f5qW887O7NQs>YhM~Va&h)MdO9wi_V}KLeMIH z)UIV_1+gaMboTU1H`_pkuM)<_)036>3p}!@#GKL30g(>9;3yy|!xbGB9w2?tCQ2Y6Bzd;KW2E?i`v+kMuEsv<5a_!jxa>%+NCd5F!tCt4`pY}{qaXuArwV!q4ZKfsj@tI>L$=BomM;y46aafAk-crOmi$P z$;dCtEUENPt@KPu%`3@F%Sk3O+%N6boAp2C0LNwoT?izeA<&0bvV44LH{dX!wE3L4>bxr6Sa!rR-<8EWtVn z$1wTrBTESe25v|6Hq;XQ27wM|0#~vgsW}C>8pt+h;?J#TU|;}UmyWu$#ri*9XF^5^ z@Ks#-muFuC?Wc%mL=R?H25}s{IB*CcjK<%C10^1tOY2;6#Tgh{mZA6HW-{Wk1eB$a z8~4z=SBmutit-Cmi$Eu1q935NP|w;2v?S%i0rWF5b0tZ&CO#z<#U@rZP;xJ4EoWUI N!o={$Se$`@0RU%Q$~*u7 diff --git a/java/servers/xtreemos/cdaclient.jar b/java/servers/xtreemos/cdaclient.jar deleted file mode 100644 index 49a0cb88c15d45b088a03997e1399962877f33ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25259 zcmWIWW@h1H0D;Py=N2FuhB+Bn7<^qr9CbbY-1PsQVqkzN-ucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR&NvGd>Uj8^ z^9W_=VpKircA@Ys0Cot>y&#%}fq@~vC|y4Q?kkW}K{7DR3sq53Qk0sSn_rAasSvu-@&aR1 zJnChzs!vWyOwP$n%`3s9QyQzz)QZI1f}B)*P87$gv9u&J2W}fAww7M%yf%%QfkBI% zfk6eUrZ9gM$C8qw%%swiRK4V!#Ny)K(CpybVFI>YsV{G7Jm7HR;%o^&XqJ$Cz%z=Y zQNSrPc8=S@wUhUyEZ&urqN#j3b8`Gti}RW4Gi%P(zl?uT@_y?p#T&s{X&25nu9zjl#!s->ixV+9-ZpW#5zj^*fdyFgW_5bk3F9zHXk)Jmoun@g9~r z9J@}6$Fr?E#x}vjaLSHfy3Vs6TCbZX`AqU%@mI#fOozY6{B=CqFT_?ZyFSUPyk>Xa zuYT{NwVU%iJ91eY^TTH`zPvT>b=1FY$!1bv&WBtMe$KvmpZWf#S8>X}Zy%movn^!K zOPPqt26vvBtXcJ3t}No^nrme;COY-+!_@W8?0sE*w*BoFWpxfKy+;$?SMjyFwE8j` z&zc$)-COZ(A&4VOCGBKS#xNL!N2<mF#?ZY`5o_wmV-<=zhdejiztuE@A9d9J^=ZBkqf=hw*g#q;+pxF(XdxSz(K$%|hG1)(2t} zdon-SVMQAxU)$7uyi?A|z~IZoz#xSqUqftRG!=fWW+rh-+{<;Jc}Ua2T~mTwzBU}+*daMdu3vL@_P3w1e0w%sT!Mr%5|vth6ACT}~1>Q`5$@3TriA^u-{TFj@bhqFJOHLcZ*I^3wfNc$b@ zuD}~l8&50OFFAg4$*zx?)1IbDe4WEC%4x`v{QTdxpyE4byh-0$vR)qZK6+`1r}5kZ ziBi|Y@)v!!=l0u(ZMv~3LD9E#@(G^L``2u{E*^VygXzhgztbCy*~^w@U4K*id%>v* z8q;FlT-Y~xOFc8Ik20^6$7;!6EB4x5wlefC>h)UQt$Ced!(atZP)v&t4dkFFHMToTBMe_F>1bD z^zMkQ{`1dYudR+MkG{WI>}l=uf5wwNXE2EE{QmFzyy|y1&+jaM;lKaSL1Pz_VB5@( zX8P_sVrQ)|F`R7O^&_XR+VY^MzG%Uz?(=We-WyadKe=1S?)d5W=fz8ZwwXMStl2kx z-6QTLJ2!Bgbrp+$^VIuCP^O;o&m#S^&$UyYdS$Mg^lbK}7~Qj`o8Ct=Rjr-A{_$(y zf7^WSKUi8=v-qU>%$m*9`<_SdF=@=7dh)K?`;S4Y_tQSTjhl6-d`8Xkqve%9^Y*#V zs`lM?-rM*mSLVCzKdja4A1t-pbNvx}>Z{#q_D@vx?Q=dUA9}i2tlod0yl~2Iow}HY z@25TeJ(wkJQwx`$jE##@6VZ8`m-+7Nr|&=6BPtTzI7M9rJtrv z?GhhHFYoj?8lGrL&5#$WeKH99i2N{9aM?)mrdssGRV z)GzgM|9bvwa?hXrNB`n=$L{?fK25JV5%OedzUH)(>J2fPlD3+~^O%bMKmV%bEIMPA zfcL2_Q=Tq$t2-0oI_=Y}RX2jRO@G(m@gq3&(bC%?D@~YnLeo|joe2D?V;ZoHZ_|~8 z^-_!4qOxWz{Zn+TV7=5rw?he6HN1PbU6BZ8-Sfr5K5ga31u?y!S3SN`A?YiiTy-nx z`0T7j)Aya%3=W-dMXv=6=Rj_82;?y@Dss**@RC!9VP~BS<5x0WpQqVuII7f z&L^t^Os+gTa`5~L-`Xb|)zW1@q@GPseEH($vJ{(DYkQdct)w4!Zq4JqH9g~OHsAc68{CRk z&p2^pSHzyRS?VS4w;UG=wYEw-yDlq_b7xva=w+c*7nO4)mQ8)Q#l-UCTR$6i?aM!s zCmIGjY6$T?^vO4JcRc({yu>ru=*phl&=tO@((V&sLwo_H4!8;}L#u zw0Gz{^K>^{+_*DsyUCRvUyG+Zlykh8&l+D{vqtn#cy`joC7XroYCai8K3sBmuWc`* zi)_7x`MZa21N_$|bziO$Iy1pkAoZj~-4bT5Rj;#F&-N*0`lKOKTxTKWr+vIJt<Ha(xj$Wwa?->hU7cj;$ASFW%^T@hM`Fc>b|4p9QZwIP+t=TY6?l zdZ})A;>b*vnbrQl*L1R9tIoFL*VN`zm|S`HqW@Tc(ne*m{Km<7s~Args!#0Vh-(yG zvifVw$)yHnKB<}$14ObiBjvibscdW8W@);4$;eNDLit*``m1&Rd&unWy6v(kLDR|xy zhL>XI#}}>bKKyZMV&{jYHxKCEcgWg$^sug8Yo6H=$%eA@Gix`NvB%%IF3cwFd~z*= zSlNT?O~>YHPL{lR&p7qb8yBB*y65LbKlVF&x*{^F>BE}}o2!h?C#TL+pVna5e8m)8}rSC{Kx!QNpEImBgV}^89#g0j=f|c$zdu)Zf zi&in6Ih1o}(}CAwf_jXtc}7f!&n~Q}31_}?U94-n%N&+J8+IIKTo^6uGHHj(0p--q z$K(Pu6DAoqMBmwys2WkU>7)AE6Tc#gG;>x?e{<|v$93Po-pL=o1?az?Gs8UI{8;ks z!z<<#DfYi+j+DOJ$8(cO@QG9JYv!vWdEIT3R^B_>EZDW(QHuGqgpN|RR-+ALr0174 zecMc4y~teFD^WIGuJIV(b&uMpe^(_>7b~Y__6NlrKEE|w{7Bxrt&3e|J1bq>Xe#IR zV0VW0mu<>2*WH+Z-xTszSZn@hRnjWUWmXqMiUXf5u5*9cGfC3b=vDHRV;i>pys&Wg zggw3+L-ySC{2jN=X{K7w;a%ZtT=-^ZuAUrnA?)*&>p7*HR<-5z2Q|#hnz%OWN>Z@y z#;ZYF&xD<>+_5%G)TcIK-XR{&pEph!NgOd0OP$~utfiGGlG*3`AHLYZ|; z7rxe;{jdAprkC%(@X!7?`5w#R>{lw8+%=02%x^NN(wW+HmWS=7>aUf)_KWA={=!{# zb6NZ)ZL_^z>u-LM{ChcUwP?ZmjaQ>uSD0^^&ysh!|E2o2sP$$FDc|<$uklZBc=)$n zI$)8RSMjQ~W-BijB)<3_rxY;z^PEeYtE_@P3$EsfNd0=t^z`&A>sPK_8Mm3``yu0; z(q&vXv$*;Fjc2~L?+$v{@gVFhSJ>%bfhoV6PVC&^`t8=L(5*`=->R;VTe*5I)5PXQ ziKip|iZ6vFmWtKvRh!ne#YJ6>dD4F7oh@vS@;Ig)c6ejvxL7JdN$_gk=LET=&G8Z& zvZt+y+gx>0Gkdzp+K-2FqJrMO-EAOI{)H!J^@^ypRWsIFUAejJP`Q)Av23Tvu36P@ z%qBP}FnyOi#B?&^z}AZnI(;Vtx^FD)8ILIOC zIW;LOLa4vFb0y=I=#H31msN|IMck9}{t9$#Wy=x^PtV|YXI^W?`{J?cmrS8$tkd4` zs4KQ)#+{6vX=0))o142eR#EWwPRrwA)}rgA4zHS%QtU7F`ecI7*8n$@X*^rn7V<7U z7|Y3VsUTYG-KFbN{ad?Dtmph#cc7(3W69A>-i0%Gw;$gEF%F?rz zrJkDhMs&T+?kmA}B4%19K9yPK*q(d+W$KD&%aWsaXi0j8oSc-Q$e1Qk-ZOzPuK;CE}h+v(#Een@Xp3+=))Rxn-`vl6jsdd_wiMzBGAu zE!;IU^DyIy2XP9A0(P;jK2?z5WPYe&?Y?#AQlmB)PMftOHY2BRNmRn?g$_Z7+!sjB z6>6i*;3(Ylh!G} zJ8-k0`h9AGTToN;uQn_GPRnGg;O)m-idJYDC$Ii|mDR`i^R!d4FO`;NO^jQ4QG4d8 zqaotAUMZDsT&cJ5>e5$6(Xs2+ZK#~KYtqVFyn;f3Or5bi=4@fVl)9>7=aD7{_g|Z) za=bXw!eF4f`cUSf0}oUW#W38H;$L#<`j!NS)<%}ys~0$x+cv99Y`AKE^{SA?`i)n& zU)gH5*DwFZE2~mlEzaoL=(`E4rLX!fo0YhF_ElZ8zg_>DGY=WsmU|S1Xk4h8Besz* zZL^(R_qKzti((FkY`>MYy@}J`=Gd)Zr5|$9cbDaDzbczGedW6?S7Tr0ExYKx?r!e4 zB15h6xynpQd^^SCbvH8vUk%^Ga?<$pr&lvKKY!C8xGry%pSYQI^(%JErCHD4yuAFh z%Urg!YK!F^!7hV|Yu_~{96Yyo+b(~m>r1wXzutXtopLI7h-M~}QKZsj6_t{mjiP0V ztADE+NMF3Mi*2_12M>!MuX6Tv=5qUFWV%ZjUoAhPChxG1d&`kUd_pIFl+I#1DCegV z^x-HkhlZsHqqR@Q`dvpu_;0=1{Yo*~c8!>GujMJ;6g|tvwyD8Pofpb_^=9$SJ^E7e zV9SG<(kF^n%Lr_(@Vq?fsD_SwVE?RF)!V9k-fq77ILrRB$=u8)NvUGhY2SY8+J>Ak zT-;aTesY51*7oSRPjz}NPd#OAJp48JhhCo#o7$o)voz#nxYn%9Z)~NANQ)q zrjH6Wf`2%D5$=1*)N=bu;ClNV7v$c4YUYZFe!F9_y=My7@xytHnL&L&woRXwv+wxk zGrW%8WoNHdV{>nq= zO42IzFSkopsQ$es;GS~Tb!V(}uab_dK#=Smx#eHKCt3abaQ2sMO2VO&YlQ?BxcY7W zY-=d{lW)n!r`N7pwL5I(Xxgd&Sg59|?wG`k^r$%HC)!MhCFXc{M5n)QW-Hn8Vd1mf z>x-cXdTY+HZ_kl>hlvoa0H~DU(J2m#04zmU{a+%y!wMjQmTN`x=+Uo!|Ld z`&ZJLd(4kN_fuInP>j!jea7tL%{n6YaL(zdGg2pi2e-UV*7o~()dFu+d`@n_`WT)yixssgV`FT z_fGP6Uf#c8^6uVqL(v!Nm+iLA{`@84f|RG~wo`{g*}K+Gd*fWZucP3HZkSxNmf6)8 z?9Wrq#5$?Q6#ihVY+=5?dQQvlvXB+E%cf@5?R);!rtVt*`KTbCQ~K!}l%ISIPzhYE zy;|z8!<6Z-g9TZ(hQwT1(ZHv_B}ilQ>T8QUPt4Ztdm;L5_2*Tpi`$Z`&&W+VpQUi_ znTL;tzDJ46k+15{9xJ?GJ%{C+Tdk}2yHojZDz^r81hjhh)V*j=dG<{@r@!l@%d4_7 zvn{&{*M|jUw|)_}aOFK2!K-I<^}T_w6xKU*D5!A7Qq{>{KOZ@A=8}!& zu07>1Z>w4ROkvh^e{ov-%C5uPIw}udyLQq{cYajiZaMEam1_1cwIvJlH{MK&v$dD? zwQ>tlT2*t(YSH^I0WnI~CVie_wd9e(f~Z=yCdHy%(Y8B|y6&5`(9Hkhgu40Pvvyx$ z<%n6kNIzkH`L9N$?!&9r)YwZZy^xtb|7KCmd3!mDLJLOA|1}E7bHt7+GzVN+YX3X1 z{7cjl_WOdHAFUKJIlWQ6Px|_-g58_7WI9`7?PCU!gUw+?rF@D{bX$EB^)6> zxyDc+=gQZ4XKwT^jt`ol_FZ^UaS8ALe7CaBgHEUKDt|uqM)~&Xm48n;JesOLjp^?+ zKe<_JQva&_|ED_X`lQWAS3UD=ca~_n$kpBOXF@`(Ky9A>vaC<@=j)mEeGUKWc|2z6 z<%nHf&x8X7E1yn{`>(xn`itee{!9Li`M!U_^wR&{Rj%LHU&_wVt<=Bx_w|>yKex4h z?sWX_RoA4j?7!M0$tQ|GuZKIX`(9|i^4H2cp7T})tCdgMI9-jU_ixAxbE}h6js@Kf z*)pAtW#f~n%M>zv?z*!X@GVh1p!`>)_K?FY$D_OEJDZ*RVR|mYB{jo&MyW%n^wa=} z*UuBut$7z~uxhvouV_|F%;P$mDfLTo%A&{@&oB7R@_v3Pzai1IjDK;_FWtX<>Hde$ zI%kKdfhm+!xnU-yGU=yE&H^U!^h^0Z=Ao1`~P zU-N5k$`${YOE%U1njy3yZq08;fyvr^g$d0sl+MJpU3?m`n=K%`X=66SS6?Zg>se*~ z2l_slWXqkIly*mXd0M3Ox|;&G+Ac2tvj4^ZW$Cu<4VM;6{yMPazi^)2I!1Svj`J_( zXDUlD${pbdYv}&;>(t48pY%Sl_ImBV=*m2Qf#be|cTG~Rirn*WPLOr}erbo??gHOM zd%hnLdAO^guU)IVRGuYP?>cuT!>!pH>bS%576%#qmB79p50{FGB@mZjqR_P>=f59Gwm1gQE$0^^Ia03 zwMq4hD$jw?-x?DyEs@(Q-}G$j0x91mxk;5?KHRU$w2sIx`mMG5MEptriv^i(9>zhl z0x$Kfn{&%Gxv9-VSwQE5xR2aT&*XZS$MY6E*7|!FS^MiLoZ4&t+m+`rd=lC5Fzdu-&I$gPDqgkt?0zW4{$P{;WwxreZ5K9|nAx)1=rcb4T%x&` zLHlp{F1h>Wm%2-gn=a4g@c*u)ks4ECGk4ijU8$(ka$?fELrjja&e$FK`qlTS@b9Um zrSjrV`fJ?Pq8~Vhxz?{+=hm@K&+qlCT8)>s8C~5{4;QE|c~UDH?GoHwIAg|_)_JWH zZe_%Ws{2lNR6jf69mCl>H(WPASflp;}nh?jg!p-BO&y6pU9Fd#_|9M%~e0~|Ld%M-(;L{E{ z$(OM+rrvAKS-!MfaeBeZKAY#C8QeG+rUmI8Up0}h^q8W|v}ub^+KF}lf1&WxSMGa$U1dbn99H_1DX$ZmO?Pzv{~?*04c*rN`v$TnlX@Ug+0c zi{Ehm>xZiHxY>@)Ga7d+JoBSBy*cgv+G+QzuI1Zt&wKSCe6~q{>6JO}&Ntp$x?e;l z#?SnK`<{s1G4;E*ZI+euD&b)I5@2X^ioITv@oev7rBzKI&$qF%>}(PH$gryQ-s=jT zwa*H-H1;p|wV7x3nI$Vt-g3hI$bbxX{-wn?{GTha$FOL|onqW2Q@!rsJn0S3)86b9 zt#9>?px*;wK?mQ zF>Cong*88}rR|ATH$Q*om*%lE3l1J+x^K0yEiX#H@Sp1^*#*4Pe_3OC+ab1$SP26gSH?`NQhl6tm2HdFO|@dLF*tX7gXjxi7iTc( zI#bicyf#HF&TNT1=fxlW=~wrubFY`&cpLKQ`>Tt&CXqW{oyc&vJLh+LtH+a9S8J+F z<{y>WVj1yhW^mNco=Se%=iT9A=iV$ik|&jRM)Rv`^U-}F>bdORyOyS(MMl{&U^CW!cYo>>TdjvM9BW?QF{V@IY^unZ*(N6ZT8G*S%i$+F$0C z{1w;x-}qlHk^UC&Q(@P}*?IS>Urb(5|9;_j#;`ZrcfYu1`S0LATa#xDrg=WzceY2L zS#d+OO#E%-wC2P77jmU*x63cEHv9GN&7$2cCw50pzUBIz#r=nS$)&y3D_l1GcsJR$ znf=YOq=_f~&ix|$U*SG8(nxD&hB?CoKKK z&)xR0nVmzqzvS}bVmE%dy|bN|%q#3`&wr1&HEr+Bx4$0L-Y9F3yZ=J})uO+3^WSsY zzxt&9S2eXUugdF{?%o$imAckFkoYfQ-|_lO|H~!o_O3J9efd<2Fw1F`yVFa(iY|S0 zJZ4`YKA&sa&(rf3Gw;4zS8e%N?37Td%klKivOe>mR=RC*FVb{iAsQ%=`~)|7gAsY^~X?^~gGu z^Zrt{k9V_J?yqlc#uSWlw_DlJ{+upPF0q;M( zzw-Nq{iFS>>ObC=d$hmO?GyVv!#@+#73-fxp8EgAM zp7WunzQnB7Ij?)_^-k}pRdS(E=l#uEu-u#X)1D=5m2qKp=cTi{p67->{TVPfVZ*H4 zh^%#ii<;bK&PwMA{@goJE2k&W^jO5!8#9(nlel~}D0y2{+MJf3KeKjj3|MP0ZIxAW z>nd}pkmikXrc%pS2lwbklwZkO>}x7HeWmF!)2y|Hw$JiHUiZwtTJ?B$R`W-VecxAJ z?*03U=W+WhpU0Lp`xiJJ>(1)_xGKvm?)dlFtBzK9TONxKS^bf3-~Hg+W9(V8uSoq- zd)2Ms`|P9*tLXh?lg{OfiZ%#nGu!YkR=T2L|4^%^D>0J)Q%O&b9j}=Q^J1ZUj)n6& z16M{lT(#l87P;=;^x4KaSMm)Ko`2{xIcCgu%|!g`@q+VCYv#7hN@-ax8z$cJx9^LM zm*KpAtt^wA2eNSuzdaNYg}eBr_IHRgo_2U)!=(M+n78SfY+TRY z=7s;&;tqLda_A&T{yVdH;f3!Jaeblt4X3pg>h4*1Cc@+KPBGKqnHSxrE=W^#Gk?5J zt^Br;$W-Q%+|aZ=E8I&Z_AYf_ZSc$CbC^EA&aw782YQ1HrQRRhyyTu#>Yih(BePEL zbep~}u`;7^qkQX>JM4aDa?RiOHom@;^f)oDIZ*L#uE_!E`xCNmZ>W^rlCbe%<@D>> zH)qe=UdikhS9kvL#qz$Se*)jM%lT&82gZMJ>+$*#{MB+km!9|4jIUbxhcX(jRQ?f` zdLC!McS&Nhzcovl@0VR2mvf)lFPhAE$%!{2@zXQ?j2YJT9TO@(zq?>O`}aAHWzHrO zyZU#zKS+~N&inSVTe#M9v&6&~U(RRVQoQoz@V-N7H_O{jroU=$FaIcbsCV7PC%VTR zBmRqH))%#i9KKUCYu~-8530&L+Ui|d7OYmyx^#SY zK&ko6HxKf)|7|l|lccRz^locG-?}%P<&)F}eh2RQ5m(cscQ9eXotF{!<7<8$i|Q}a z-BYQ&>igLpr(2$$JD$F>_1CrIS$6JMnhq`c&mQ0nSwsbylMh~c#%L}V1H%zf1_oUM zle__`sYT8isma-?MbK&92<{4*P|<(+Ws`5_sOQewGU0=Ub7tlwwOEZQ?m-(oe<>(> zCU4hWBAT+v+H=|6H#)|fGnu-!WNj2(sqdhr@7TkkrCSp1u;7HZ)`F%LtSl}pjw_me zG`yeu>;6p}v)Qd}?{D8ZzVrE=&pV#~`|k6tw&MI>hG&oeDxBJ|RDgS9s9F5fvrjku zoRza~!dbJMHL(ZHn|`S6Tl#>>^8dCbZRQ2g=nJ3S4K|D0_eE*{zN-?XR16 zFq(@!s@|d5Fk7_7z9afWGXq=m55+v*N&l2tx3d=Pp7LX3PTish%Ng$o9^rcvQn38V ze(!_p7=ns+M6bFpeB|zq(1W&I??OLpR><0*+VDH2zFy#Jg+t#rtqOyN`Rs*4aseL# z1eTxp_fWy_urik%@1n48{j49kZPq2sZ`gmlD5i1Jw9=~ia$PS!z6-dq^=w7?+yf%F zH{Ch*>sw0tnVvbhJRDP&-;`0Fw8ghv!DN%mJEiM>R(Y%CuJ7i(Eof1-_V^w7F6q1z zg-HviO1^#)u55U@V|SwVrh5xmgD*#WKQrmn@j7IX<7wwQ zBGp)P`@-TF{kco6`x19A6D=2;-FHvYco7pT_t_mU=V@LDGQ79HzvOB1+qmGJvmCRx zEMj|nIq6vMwv_zkiR-6GrAn;rkc(b>d)XX*!M}O^p2gbHI=ii}yua0UG23z>Z|7vO z7NtO2+13DS+uS#XFLw0wCRu4;>iems^)hY4?Sk9w$%QGdPmjwud-luqTiO1qT72=9 z?-8DGwneLyPA}hl%ux5`V#(4=yKNT7CsakXX130nrvI{Ef>Sao&)!q+>Z%l*X%95J`*4PV^yCsPtt`^_w=0N%@!J=8ltA3JS2DB%-;OP#p8R6O7qQB zx034%d=etu60RLlS!QwaT&dfUwf#FUDZjGP(VbCpHe$uauA@6F{Xr1nMPr~ipm$F^@}cgtq9&z$&4@~^sFRDoyxp)HjO zl1=LJPD{=fS@V={l`}rx5t=INY;i|vb57`<^BXiR!`#a*^_pi-*{;;R{VbQdvhCN6 zdEJ-i-SfHjcvHmeN41xH)QZ)v&zU2=?RMCFNz*qz=WG_|&-i=crQa2<-Bl^ItLJ^t z)1El*#fk^hx#k6YSkkn-<8n)ylhMT+zn4CozMs8weM{IPE#Z8{^@UPd6^WJYO^Mo> z?mbJFu{1pDIc@7NwQLdV?9dvn?vN{s9bJ{hR!1}~)jH=ixhw6aj&t*Yp8oynTSAVm z|Bx-3zSwg?j>wZ&?GFn&bEAE3U7GlM%Qu^|C0n+I>grzVxqso2=))>e|HqP6YaeZo zSomv|8$hU zYW;H(FH)Fv;O-QTs`bpNCfe&>_L(K9W*%zwJUsDRfOg`^O}uLh3u|vJ<2fvw>)bE- z^5UYfnm+54l_G`Jm;Uf5=QnRpJ<@eNbM5x0dlJ|+{rac&xUMucTc9fIeEBhRR7?5f zMuV?27FSLXyt+##da>Hesna}eah^7uQ|TzW-t&Ik@p#UT_CtYkdChWH=R9Q9J*6{k z+X;ic3m^IZ@lCj=?kppkfAX_^ONiMW4xhZ9$Rg#lALX)kp1rNb_uxI(KShK8lbr<_ zlNULt6jXfkzBj=nIgsnGhU{rB5B($je&rAGd&(w00!M%3oqwjtDPwP_ zA#Cw&g2S>$_ivnep5qkZ7OWm&pz))>>wnVI9R_{vd&MS)E9o_xRy%Q=RR4G3{fYxy zV)CEO=$>b%HSc18>SRSf7mIa^jGhbIf7>{3UgXiG6Ax=gcqtk2CBFY)TQWt}Klf-$ zSKG(Zg?9p{hV@O`>s}xwrzyfSJN&{M<2J6gO%IE5YEBkh`N8~UM%c!MDW20M``eC- zC@>Xk7rnn0GIO?E;98-Sz4odx7c)RsjB=~wo_>nR;nwe z$1-sjhg`}oUh%Kv?(!7TpKBf{vj|73df!M7zo^2$;DmJ$ziLIvmG^fu`1(%i>AGdd zYnmIUXPN~~J9$9Z(XGGO=c3w$IeV+m%~?4of^kKKVfWF^eCo<)xt1zA7fP&qb-dxh ziRl*}%5OY!;zehRVEUo!PlAm4OjxFszRd3mtMk~{_keZXiJ5VX*QNID2o`$ToU(Px zrEAK^K15bA^%}<3O_UWgmH8RgBO;$tKAErYX?U?@gr!1*P2{%^zpeel?BdQpI{rHH zf5l&;e!fVq%Fk&x#iySXYX4mG?s8Muw%j>Ocg#EgZ_BE?0-;IbpHd!A?u|G58Tv0) zW5uVpO+lvN>%vZ7mD*_)yY9^g6P@q>=BR8vaL(EZ0)%w>pMFw=(WtN zHEQ2Gf0+2WO1zz7VYznx6w!HCmskGd%vZ5J^V#i^`+W0BaX)v;9Xq8c@AO8szV2#l zK%TteiUZ2)zD`+@*`}zGDM?_==1t?}mj+56pxuI;171`K+4H*?&Wy{uA*kQ&jkU=~hkP zyn61cQ=dP7Pl(E8G(W4Y?~(YcY|Wj{!(M#n_w%R9+IjMo|2WNkNOQ{k!;uHe&P;sm z{$q!o%W40I9{1&BOglbBsh*b>@t!An*e2+);nTWJzk)8X1qMYcTu<*?_x@nvR#v&$ zXBbljwr`!Z*sAqr^Nzv_jnrpL0vxw%2d|K7*{{3y?WDjocfR+ozQ^;Um2^8&Xmq{@#-WvsHXWUJT={%kB z`017+?sdn*?i~53d!udcj#**(%kP?B`tYNBh7G@ERnkc}bZ?8&PGe%Xg;6^Qs)d2}smkdHWN;^;WP ziI?k_q6iO*UBj()4;Gzd=Pa$vwA)!wxVh=PtczvM;Z5_u|0tZWFZDyL(>{HfBOe#n zOs}euXW->BTNk>avpzm%*#qx7rnA#$nr2>!df+G&5Y*MGIcKA6*L?948+bZT*ighaZ`n)(*^4HvpX#=RWJQVIX^Ie43>BO@;gB=esb$*f&x{I9H!9y= zcsBkZn~GQsgM8}_;ULD?tCMQqKCZ5L_x0z`*T4B0{6A_ORLV0cFg~bzr>{``*jWxp=nSCiUlA7>)0h_Aw+I43`Zif4XKev=oq9wr|n5pG?*N<;!Z%ty^e% zI_jutpWwP=-tfxl1z{~&CUwlH@qAmHQSu2J1H(UF1_nJ6;u#vt;Xliz!$toci*lRg zBXzX%?Jbqes7r45v?iHp_BtOddUIsm5()3ZfIHLrmUbHTnFtvxAJ?0*H#IZz)&_mX zQ$h<^XNlyP>n;7j{k(vW{h!i+r&eXR@K$j*(a%!r5*?2&YODS* zr;V{D=!~6e+Ij9qf9}TfEDH5C+)4j8E7tfOe*Tfwai7Ks?xsB&C#JLfEaHg2_#t$U z$f47UHNJ=w8SM^~9TLtDiaI)^=_R?$E91%ba#9?@iRxiNc1(2Q@;wmPva@ zvsT|Y=Rdozw6d_nO7-w2(Gs_Gq2gnE1hu8g6sLWYIjzUj$#LrpE9>{G6=9ZUX`*LC zZc1y1zy0&V>D-!%u$#+f_O%`P@$*^j{)ZwGm-dNWtGsdP(UOOg?rJN~TYB+M(z$}Y zizKzfeQuX_8!8s8ee>kFj&;73(@8_#b0RV~-7-xqRhMe4k28IFbdgiIF5C4pp|Yo= zdu$_bmm`b)Mgi&=K-;WaB>&W9H_zWjLL+2hVm%hVe`i#na6cEywyE%Wf2cBJh} zU4+J~3JF8j%;iT*p3GqSu;Q_q zzhO|yy;(kQ+5go~68h!#@y66u$A200UXohBdgqr}KOW`S3p{CW`r~oDzp%OVhERm8 zy`Y86oo!vAe?pF*|1hg-{_7vCbthNl241$RYn^SS_AyX)|FQfMpT~>(?mseJ_<2{K z_l(3dFN+T!_n)&TqcVKirNfKM&PA@-UEzHE{fBDV`UA7A@*ZyM+y22_w*JthzSK1z z?yX$#C|9wpz17+IxZ3id^phU(9xEe6d&*1xNWOpdgZrK^-~Uw#yDobt)vh;R^m%h} z+PUC@lJ>jlyn-w5IJBJI>^iAvQNr|z=hvrBY5MNEeM(8M=@sj9v%9zD9r*4hth>p1 zli&KyuioYzuMJs|y=d~f#0~bhX5Z-H(bk!uJuSAFIqRkCbz|>60+$PCN!v?L*((+s z{LUnIvt;;@RT=qKd3WdXtV*c*8g~3sf8IMi>0JpCCr;_99=NM?>(2gDq4O@v?^TH@ zxw|y=)4q&?J7u1mM3nap=I9(#J~iL7*PkxY{PxlL_V+N>{&x>zbghcc-;LhbRKY#l+95yLIz0BW z_i6LP=gU)f^);u8tbOkDv86YEx!#lA+f@$U%5M4nbD^1r{Vk@POEqF1_6Md)h;F>S zo#&~Tdai|=)RfuoKNC4$m@?Wlxm&gsGO262raqnjXIjY4@9#smq)vYr-T42J7SkLy zVXq+1wN7W(DIM8guY}1A1yrZ`(@6j`^WC({TI5GpY;8g z(xSb>r+z6Np1Hbc*u96OlotMSUhBlIpzfYDUZd z-2Hb@^-a9v@s$m8%F5WoE|eNoNPjP5nSNofysfsygshXhkA5zF==_62smLcuzD8(z zX32zaN#Y0Zv>)H`YrzzYHVe7qlIP9^zm^GqJmZ1Q$@`x@9x55_=;Pkes1uidzK+}f zA>X`X_doLdYfV=@=P!8MLa?^S?C%w!&Bra3_gSCvQQS2lPp8_e8_%pRe*VmtNqIrDz)5Ba zjt(n_mX`LFih)gy4eL)nQRDGRJ66fE=-Rcc_^7qFemSfOjp~icWzFVTwsgm}ZMWCn zjx7(*&fWfc*WK^8)@85#dhyNwnsOs!MP|p|?{(kje6GD;`RBaleRKQzU(cWS2?i?5 zo1XA~FZIQ}%3rSj(u==JzZ&dJPI$^oeo2>NpLz1^8CEN6o>hs@Mv%v4E>mn(gd@{*toODZ!7En$rq9ZM;nNj5ExpXU8O7h*@`~vh7$XTli<6 zoa38IzDd-uoxfJmmlL+=V@&UPlNDjh=BO&g^*)z0IhKC<(P!RWUE(KJuvLAwl+rg@ z5m>VN=dZ=8C`E6QMHw#T(&EL35|SyrZ$?>8A+A{^HWOm7gn(Z0?^G-*Erz z>WZy4*IwKSX{pt}Qn~ir>y#U7io4IfcAd>@l`nEhE%1fX-00RHoOAWB?L2#S_RiSn ze3kKwJ}%9>buhZ*-IVuhIT*|{Y9yas+$~iuDdONzA)SAHNAzP^w#Yq~7sTzm^FaHD zSL8n}m-h8(MQiz7oldH$x#z};Pu{G0E8B4DwpOLE>Z}FFyYhLzv^cKJ=w@SnxX!^w z<$mTO+yv!qS;sk@rZ1^FwD7^v zYZq4SlJ#M|X17c$T1BSg%Wtzc+)*1-G^7qLW36VJsa5{0zfF<%eejT-y66YLj z_A#vAAbPMndZQNybGXJtkI2G+B%iC_TvGLWdOEj-Ifb=`dViLjntY+Hc4NSuS7)yl zA2kWSwfJP7_DxZab~WGCv&)vRSra_NhuiP?V;`wSSA~5KNVWBQ=iWB%OaC;-M9pVc zSILQ2sao%R*qW-%*ps-drPxj0IWE1Bp`XQgDgLkMN_*ydAJxBMMb#!7HD%s%wnT3{ z^m94u#9cLwI>)1=zp1YEV3KQiAGBfFuCnyvxQ9*i)Pae&_PLZTTP=&%FO(~ZMw3yyVoWNtrqzf^|8-yS+Sp@v`^GYof`%VBNr6~ z{d^V>c8m3;-)pI5Kh>wR+o!rV2^}#m=E>z`7wQ!2c$TCz*KFa6^;?yv$5~`lpBCLd zNn(*7OO&z?xBsTsyUu+}T{|(tOJpk(bHoCUeX|RGu1tGs<-C|ZaChM6z?Y_ciz*gh zS*=wk#$|p<;^CWD5z|{r{IxPyUNt?reGyOZ$(&x7H9L&1IW^_m>wbB%G9^})+i3MO z_vywAc9Y9@ojg#&=5f~9^WrLuKjb7@#9Ctw23Ui`iwJ z#?mq44Ztc-&DK2 z>Y2>#xlN5JYi*^vN20d&J#h!^Z@DjH(z&x&2)_8WSL*%2gG~QqIa-uf+4*htd@JvD z;P2+mtje?BN3U^M@5F7DZr`KLvB+6!?!^$Bj9i}1cH5ulSiDm-Cw~i&s6F_^pw(9{ z;YGmA<2ji1Jef{IP zOjUlpy|HQCpLab|?9Sdhv&FRi&0T4a3gLzSIMe@a=-{{0>A4sU!Qw(!1H zX4hV$33j>CF8Q`|!_JsI57`^^;M-Ep6u-RbYWI(EPJZ|N_QwUxYV|YU8~pThn?A2{ z(V?>|19pU;nsG7pdcus1PqBYQD{HPk+0A-vbMZw1FBdVjz0FLz?yQV?j;Ai$9hEu1XtiAmE+tJ0$ zGhT^onE6McUN-dXllC8pQ_Lpwe=_&^r)J+2)^SVM&|Bxzs?W~3zU#NUTgA;?q-W?; zH>Gd!u?1PY3yk91zA10DJez8zeROV_q_Dm&$o^r`BGH2@Vrjg z%yvzODxMV+RsAjRJ~{q!hv)f=hDR0`FPd7h+iFS@XTCz-(x>wtdcd+}f z`p+4f79e*%<4^45`A-EW|7(gf_{p&_b-wLi#*CzwE3fnYD4cb9=dr~Wg7bfsm|V2- zv*7T(TlVNp^WnQsf_atfUm7%8Kf995e0j~}t%Ya!-)(BD4l!orj=j6je6fSCrDDqa zgRzrWKMqjJ}T03*`<2Sd2^;hj|cjw(SDb!+*YSP01qiTtHTe9wX@3Br)y{ucOQ5}9}>dDPP zw>#IebI%M|WL({$J0)A`jX^@edfk>?%*M<1Gl?atUX7S=``j(7oxZOWmiGU9dULPw zgG(V>-@KT7IXrt^+0Eh|-jy;!t3S`!QM}5rRK2s(Gb~8NsUcfEw!L-7tCkIZI-KP@ zj%>U3by3DX4%6EUUd`GOZ;|yn>gl0LO`l^LBhGX^c(%#n{uRw7CCg(}H{{!jM*F*| zTUD$)60p_&x4X`gn=Bue-OCYsZv0W?H-|&fDqlH|=YN=#4!ym(+W%-v!Mmr&b5AdM zZ@>A&)k*u9QtLKvc<=Oda@y_findcURj*FIVOg%kyS%w9#x_)@jG;&HtD)uP&72A5 z&M!}D9hhA8cv*#s=;q=Q*Lxp)t6%!8zi#<7>{-wQ{}pendQY#eFuNS}Hf6JQ)~{7i=$IwAIsRd5GrhtzHQ>tIh7;bzgdP&g3n3Pk)$j zdY;I{J^QPl?R9_pH!%N|e#tk{puhXJnaWLQe%DiTZ*gUbXr<@Bi=9umwLWLqH|_D+ z3h`_5igqoIjIJL{KB(Pt^Sk92*y9u3kyOHa&sAi3%U*|rbtiT>R$sgsV(-NIwcG84 zq0iO2<%=`F)oEG!w8}l_*y-lM9BuFA>cNuSa;NUO#LTQlz7}^sahd^;EKxBmEUzk7T)8($Wx@jUh7u* z*(;#hU@?Dj(u}RrpAt{-1(+^*cF_0q0}cD78QQ#;M7M~~^G}?6d*df{$DNJqmik{z zf9dwiCS&^r-!H1WX1-&1%AgU?{8sUok}S*fz+F@MF6MsWx$Bu+BEHw5eD#4l?n`fM zmU+E&!DrD6i2}PNZse=IU98x$iqmkPn2Gq-3qrg4)~WZJ1u=iyFBcKvmc8(3+?lVJ zD=$2~%<)O#+HOHHtA)Kid52yskhsL$(3J+{)$ea0-)U9X+BF2B%ze52x$ zR($A}-ODe$5BySnUtO;??)$}mCg)~<5c81cRW=D;_~9kbjo4F7%%|pG-4-JC!bm7O zFzHFy^tKxNG?C`-YTJ7+uE|U3OE=!m{3Bgv`OUXZQ8rG+Em|h~C;x4IQ@%0&v&DS% z1id$fa?5u%{S>siyq^2lxuUxHd+ze}*X2xkR@!&r=53o@2masiI=t~x?9+8dd_ld- zSDe~gvsClb=iHxK#Z$yIKF+@D(HY+t=(|1YE63c+W1g`Y{H6BHFUB4E4;Fn@ z`t~FH&9~`ajBWnQJq|al>Wy1u{vzL~LH>vzzk;pLE-8k6V%Z`SSdyBvF4b|z3}ee3%>Zc(+?1tc z1HUY1ef2)@?eCB%JHM$+57umP`kOJ^&AodA|GIgZ4DS!bE%Nqcc3`d1&5XD4+Naa; zw(BpK&Bs-rg7@mqWi0ZPI$`vSQMSEAu;zo!o1%uU-{KlKj^E_04-xt}e}abhb(v+U z$yYjz_U=hK$}!hEy(O&gLZ!yk2Vy*z*OW0n{`o^rEx1>IL*>73b7rnK5SChh?#va| zM9FVb8(4EA|M}D>^6mHh(Yo^w_g}patS@+fM7T5Ia9SKXDvhA0*jq35RX;xv=LZ^mKm0PlO-lSEV-0CZ9o0rF= zg`QY*I>*)KX;MIItn;Y==ejx$2aCz)mPvgvtkid|FVyO=?K-0Li#Opjo5g>od(jhq zg81LGlmE!Q{AV`ly==(|`vv@e1#O?%E_v79aN9j1ea<`&V?S););;)dcD5;Q*Q+?bjHRplo-N=%;coB3l`Jm8>X|+H>HowE z!7WL3vaz4tB|<-(Uhr2UL*x1Ti&;}<%n#tS@8{E0T{flOLp!8XbF#}!55t}}BHB;N z0}iZfm)C#tJmA8zrB<%@1tg`>a+a zsVo~e)4RT1D1znwnFaL@S<*F(CRL(VyDN2NT{)$izV$D-zF+OuW&O*4PtW^VmG*3X zfXot$x5~LPjKvvWvNLC{>W%9W>z?$LW#{FP-hY9M@2}W@+w_(+|~f!%u3YwW$k4Yun46I2YJrs%ky<)eT|#v;C3Oe0u3d2SM)<*|hgvOWK=y{K1_S^TTrgqhFf#l1!M zmummlX6V@Q@{r*!uDBgi?R^aQY!{2%F>~8{H#w#By0uh)zDcfp(;KBui zsfTo1GsG_$m33d7>QJvNwz+p5yI#j_&*yxro_McpvtBuG`=tKeD<|&Gu*_Gs&u=#_ zOX*pAaL)b9{}0Wns^PpRYj9!hx%rnGRNjAI6@9GoOML;8cCz-$1Q}`Z6^HMwzp8nG z_hWg;_g~C@443xLIJRT@zU|jO|3{rODfFl@*}%xa(8$Dq}rA5U{RjNA4h+jG>)qZ{qTLu&bP2qd9#4_mH?1z^lf?I+oJVzCR*yt@ za}0ChVy7&W+)|zn=3mWI}y>OT}RWocVT^jkZ*i$9cJrSq=2 z$+O=rc(kFV=@Y+M9WuB!A!tt942kO(TxMJ_3VX&i z=iG;|*ENj4zsOhql`qQmTbEQit(4jPWzUAT=!jXJle1gaf8<7uacLGcwGu`K1{Wq= ztNxH;+_y3yvADQAzbFMdNjCAc*I@^dw*Q`&m-#MU8~S>!9?QXPP0U@|M|~G4T;X1E zw`A%vXJ60Ble)L^FK+T*uz*9ahC$xT#xwbDXN%>`|4;thpK1B?Pt|{h4c(=pMq9_(rgZF_U!!{3RoOC^_VJ2$~{i;T8Kl1KRMs*K zpG?n-j4#_gwwzaT4^+LXpnEZT?f%BA+v62&kDFF@ZGOV`uA{*JEB^(Lsp?l}I0|-@ z3r@Xg+#Yo3$wszIU&THAgJabE?2bv~22Ds%Idi;_u~ouz`eC81=WEd>IXAt}bpFcA zz`!WSz@Wr{bI=x?VIgrgHJmdc)Dr& z-JE;m=A5gB%bxGGUu`mp^Yr}x|Ek~LtA1zuecx}n`k%_;3?&`Sbypq~+W!;&|MY16 z?~ASKPaf1id0Z?t?~C){$8j}r|LPp=_Psb7EH&?2vgp1i$ESZ3<&FRPD7)^;LrML8 z?~eYj`dD9A!+gH#<5`A%t@-R9WNX6h_AP(-o6+Qtdsk(Q^tM(|k{&702Z~DjU@cO?U4S2#JaVz2ElGMNq<@<+Af*zAr%y1wNRb^b!2egXZhG`Gdx>YvtPP-@r9&zw#4I? zF<(m3PH%hBlB%}Y{PV=cmu>|%v%Q*DxY%*?*)a$%Jf< zd49iIEipxBa@{2t<>TsVXPy+?i;X>d{F#*9cW-ag>$`bu4Ufs&&W=^zu%t`DPe@W- zR!#n$pz-X@9iKIN?Nz^CzCO?AnuOtb4~w>={V}tx6$NG~=WO3{Yr=tSHeK67qh;wK zS3K&TO=p`dytqv@a*E{XSC&oLXV{PWxT|_!@@zJ=yyhLI{$}BUN0!t>|=NSuy`CsaK{aED2tm`X(T$=5tX6bod{G`EY z+hwT+O{J;TY-i@Erms24b5vLJ_SN~DdIFy^I&Sbj{q0M%YuJ@%T0D!|rB_S4dw;6)R4KRUmk|%-oA1*J4Ltnh|h%gOm{;&>eiH-T^7D0GFY1?sR~|`mIv?q&JnNjq z${0P#rPG?Trk2$1+9WWQrFS)#+J#LG3v6co@{mzo8Rhyz!57wMOo7onro!v%zH- z*90X=WM9j66gQcob31-btjU3idK)XZsWsVY>P8yw_tHzenp#!-P%!hCHrw5}tc}r2Q+xh| z&HI<55g`|{PE_!s@K2X#A%UA^ywx{riM=lWS1frrMTU3UZ&Ok3N13bp9VPVm%g=fy zZ`w1<+Aob|+Sy=!lZ{Shwn>KPw;%lCVwQO0+0UyJ_Xg&1B?+{fToe(}KB{%8{KKz# zXW99VeLwl})q)7+Lyj_{;Q_~O-1%?b6cfolI@NKb-lBT%m+|X)8ENad{n??DC0SdRTKmME@!PWChQhi_F2w;`Iyw&A+VtuC zCEHc%)teRzKXyB%wX2J5x@6L`3~#GB(%$L1N@8nE?o>TH8x{HD@XSk2wISxgm-6Pd z+RQk<)bw@L+w#~`y74i3p_Ah>#HCrMP5<)j(BYQ_TDh$|%?+1zW(4F2&93ZYac#dL zBockptZ3<{DcoItg{J)vEY)KIa>Qdr_icQ9pvtm)t>Yf<`mhg|n)axrcf0#Khw^d8 zYz?@*echFXUi-_~kMeDtyej_Zl?1ah(OKL%vuA4roizQlQCnl3=`IzV$Eh_zOj1wx=n|KA}eb3 zeClq$jE~%B_NzH*zlDH^`9lHk=T6%=a#kFX^5^$cIabAWw|eHgUpwDQ%-)j4m-^^T zdDs)n3dys~b9a2;ZTu^G`(a(FrPqXi(W^^5KbM3*-QMFnePiyoR_A*Md~7rCIc|OU z>|blxX=R-&Huck=Uo>v9kJ)QG=XTI^J?Z$gyKAS9y~t?v z+&rt|kV$t;w$6b$wW=46eTlhak-XB{&~;}}R=~??Nwc4;WG~tHH#B{3+Q((SiJuPL z$}!JdCun@~^z3$L)3~^;`$HPar!D*R_gQNBnWEkCZ3_af-RVq;GGq6Cc4EuS(7oZ4 zi&L#X)lT{&6;K=H`0L)Yopv++uQRkid{_Bo=bebBon|wG!|j((JUeaso;9p1gH~UO zJKE41v42UI#MPa}Q+&=oN^q3pjkyzZv2SI*+}7+RBJ0DIe%eT68GoBl{>}MKJx@%d zM3zGKA1|2$zJF{_Ok}pxd1O7?#4i8YblpEs0~yLwq#ikLePS@b?%yd-@qbM2Kg70( zKMa+4w4UF+ut$4I!|ex8v=$f^@%2UQ{VWsnaoe(QnmcYUdr-MRV`JRfSIc_lawLe0 zJ+@M{OnQGz*F@;m+p89Sxq0g&x0-Ivxo zyixAkw;wFk|MT|iKFuHf9oP65EwglDR)zA#!i(>`c9ni?$u>Ffme0=Z7gObOmY$njb6MlN#w3aGb$g{X z*ELspYpYpk7#}uge_N%S=RQsBxy63=d)*wF8%%sy^e5WI@h-m-Q1?*x=@bR-xFBya z-Q6zQcSN}x#8+Nyzr5wH+VRg@ylxqsX;YC~$-m34ZI)vCWlJ5YIZnBI{s#WIrEhY# zf0pDG-mCia-2NVZyV2vXP<8CzOIfR>uB_TtoUzCJf9lLXLC=2jT@wA$;#{fV>vgx! zAkgi_b+f4L!joSdmhCw__si}tA7fKPWS+f|Jr#fW%elg*>xC<1uUlEvYhS-V^Lx1N z9dW^HAK3nVHvK6k{xi~D{SV_mgZWARMT^__|5XyR?0?Gi@!Mw(&a`V~)irY3EOvd% z^1@F%wdtSA#~0?=<(F7`xpoEr&X}L;vpo{hB`;m=G5sK>RUv(|jQ`pre}SX(ldSJK z`t6Ngc+2%^_C~q-BP(`W?4FbHUM;_7PNnia7f%!3{AD65wr_uC_R_L|O8Z&OXqpZn5Kv??I( z^9qxf3m%j|m>bFxzmjGBY~3FR?>igl8&)3t@3#JA!<&TNx8Ke>_-o;{%$yfx+pk^x zw>s^DjY+fEzkZ&L8bzygpUiWsp2N9s|AH{5EJuT-}@ZURKaCOp#_sYR{HXpdtz5h(} z%M;=S`mf(F)7n?RXiZ)9$M7H7|HLY?c0c`F>6yPU&9iOm9+x9a#5?LfGrYcgEaG;u z(N(LqSKED(Umq^!_#vWdBd7d7KS-o^$sxO6+$ zw5Kk?f)=X^IqaE~8mt751O*-zigx$u-Vk&pX?8@+k!0#rigD?(fL%vKm$dryJT|_e+tE z#}TQj1ZF80mc)yFx=LMhlZ2~|T)m;ZZGnHzVZn=?(Js?J9dq2YpmFK5#Xlr2w%oLh zOW-Wt%owx8Yf}63ROR#Y{Z~}T>WgiB+_O+8$!^iKR4=paW}T|}r{+&ke7V)OK-A-J zX7AMrebqUUGat+R=vl=*|7hI_yNd@8YaJ^)aeVHl{_p=81H2iTM3`|Om<~B+T!7)N zBZ%dTdVD%eD`c4v`T^=74IsRvQJVq#aq7sHqn~RII{6%=n}Gpj`4(so7M~8#N$3b2 z*PuG!3zhI`6@utvfLO-Jh^@PfPe16Sbchik#~NbQk2nYypGndXW1ud{#%dCL6*@kH zKqsj~%mO)S308x^12_mnAkm0^vO2^N28Jb#H?bOmdCoezi8g3wIwMTn$cinb!~7uw z66ogmpdB`hFeiZ>n>mOOM>~2L-C*<$t_Xu&Rq-1ffWF-o-DvbZ1qh>c4X_yvk6Wxe z4A4zSU&)RzUDSwp)3Jv(`l>&K*{+t@%mybW+-m^QosK@Bj4jK$(JI*RGP;TA u1C|IAt$hiYh(3IYZZ!H}8p7ybe)x@sg)J)^NRJSM5JMU(1A~4nhz9^yM93Kc diff --git a/java/servers/xtreemos/org/xtreemos/XtreemOSAuthProvider.java b/java/servers/xtreemos/org/xtreemos/XtreemOSAuthProvider.java deleted file mode 100644 index c43344428..000000000 --- a/java/servers/xtreemos/org/xtreemos/XtreemOSAuthProvider.java +++ /dev/null @@ -1,131 +0,0 @@ -/* Copyright (c) 2008 Konrad-Zuse-Zentrum fuer Informationstechnik Berlin. - - This file is part of XtreemFS. XtreemFS is part of XtreemOS, a Linux-based - Grid Operating System, see for more details. - The XtreemOS project has been developed with the financial support of the - European Commission's IST program under contract #FP6-033576. - - XtreemFS is free software: you can redistribute it and/or modify it under - the terms of the GNU General Public License as published by the Free - Software Foundation, either version 2 of the License, or (at your option) - any later version. - - XtreemFS is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with XtreemFS. If not, see . - */ -/* - * AUTHORS: Bjoern Kolbeck (ZIB) - */ -package org.xtreemos; - -import java.security.cert.Certificate; -import java.security.cert.X509Certificate; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; - -import org.xtreemfs.common.auth.AuthenticationException; -import org.xtreemfs.common.auth.AuthenticationProvider; -import org.xtreemfs.common.auth.NullAuthProvider; -import org.xtreemfs.common.auth.UserCredentials; -import org.xtreemfs.common.logging.Logging; -import org.xtreemfs.common.logging.Logging.Category; -import org.xtreemfs.foundation.oncrpc.channels.ChannelIO; -import org.xtreemos.wp35.VO; -import org.xtreemos.wp35.util.CertificateProcessor; - -/** - * authentication provider for XOS certificates. - * - * @author bjko - */ -public class XtreemOSAuthProvider implements AuthenticationProvider { - - private NullAuthProvider nullAuth; - - public UserCredentials getEffectiveCredentials(org.xtreemfs.interfaces.UserCredentials ctx, - ChannelIO channel) throws AuthenticationException { - // use cached info! - assert (nullAuth != null); - if (channel.getAttachment() != null) { - - if (Logging.isDebug()) - Logging.logMessage(Logging.LEVEL_DEBUG, Category.auth, this, "using attachment..."); - - final Object[] cache = (Object[]) channel.getAttachment(); - final Boolean serviceCert = (Boolean) cache[0]; - if (serviceCert) { - if (Logging.isDebug()) - Logging.logMessage(Logging.LEVEL_DEBUG, Category.auth, this, "service cert..."); - return nullAuth.getEffectiveCredentials(ctx, channel); - } else { - if (Logging.isDebug()) - Logging.logMessage(Logging.LEVEL_DEBUG, Category.auth, this, "using cached creds: %s", - cache[1].toString()); - return (UserCredentials) cache[1]; - } - } - // parse cert if no cached info is present - try { - final Certificate[] certs = channel.getCerts(); - if (certs.length > 0) { - CertificateProcessor cp = new CertificateProcessor(); - byte[] content = ((X509Certificate) certs[0]).getExtensionValue(VO.Attribute.GlobalUserID - .getOID()); - if (content == null) { - - if (Logging.isDebug()) - Logging.logMessage(Logging.LEVEL_DEBUG, Category.auth, this, - "XOS-Service cert present"); - - channel.setAttachment(new Object[] { new Boolean(true) }); - // use NullAuth in this case to parse JSON header - return nullAuth.getEffectiveCredentials(ctx, null); - } else { - - final String globalUID = cp.getVOAttributeValue((X509Certificate) certs[0], - VO.Attribute.GlobalUserID); - final String globalGID = cp.getVOAttributeValue((X509Certificate) certs[0], - VO.Attribute.GlobalPrimaryGroupName); - final String secondaryGroupNames = cp.getVOAttributeValue((X509Certificate) certs[0], - VO.Attribute.GlobalSecondaryGroupNames); - final String[] groupList = (secondaryGroupNames == null) ? new String[] {} - : secondaryGroupNames.split(","); - List gids = new ArrayList(groupList.length + 1); - gids.add(globalGID); - for (final String gid : groupList) - gids.add(gid); - - if (Logging.isDebug()) - Logging.logMessage(Logging.LEVEL_DEBUG, Category.auth, this, - "XOS-User cert present: %s, %s secondary grps: %s", globalUID, globalGID, Arrays - .toString(gids.toArray())); - - boolean isSuperUser = gids.contains("VOAdmin"); - final UserCredentials creds = new UserCredentials(globalUID, gids, isSuperUser); - channel.setAttachment(new Object[] { new Boolean(false), creds }); - return creds; - } - } else { - throw new AuthenticationException("no XOS-certificates present"); - } - } catch (Exception ex) { - Logging.logError(Logging.LEVEL_ERROR, this, ex); - throw new AuthenticationException("invalid credentials " + ex); - } - - } - - public void initialize(boolean useSSL) throws RuntimeException { - if (!useSSL) { - throw new RuntimeException(this.getClass().getName() + " can only be used if use_ssl is enabled!"); - } - nullAuth = new NullAuthProvider(); - nullAuth.initialize(useSSL); - } -} -- GitLab From 6273db64c7bf82fba370aff707a660a45a75865d Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Tue, 4 Nov 2014 21:17:22 +0100 Subject: [PATCH 161/192] servers: skip empty path components (fixed issue #290) --- .../src/org/xtreemfs/mrc/utils/Path.java | 4 + .../common/libxtreemfs/VolumeTest.java | 121 ++++++++---------- 2 files changed, 57 insertions(+), 68 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/utils/Path.java b/java/servers/src/org/xtreemfs/mrc/utils/Path.java index c95f0232b..6ecb719c1 100644 --- a/java/servers/src/org/xtreemfs/mrc/utils/Path.java +++ b/java/servers/src/org/xtreemfs/mrc/utils/Path.java @@ -45,6 +45,10 @@ public class Path { compIndices.add(-1); } else { + while(path.contains("//")) { + path = path.replace("//", "/"); + } + this.path = path.charAt(path.length() - 1) == SEPARATOR ? path.substring(0, path.length() - 1) : path; this.compIndices = new ArrayList(15); diff --git a/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java b/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java index a6bb7074d..2bff14d96 100644 --- a/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java +++ b/java/servers/test/org/xtreemfs/common/libxtreemfs/VolumeTest.java @@ -6,17 +6,6 @@ */ package org.xtreemfs.common.libxtreemfs; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertNotSame; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; - -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; - import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Rule; @@ -41,26 +30,19 @@ import org.xtreemfs.mrc.utils.MRCHelper.SysAttrs; import org.xtreemfs.osd.OSD; import org.xtreemfs.osd.OSDConfig; import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.AccessControlPolicyType; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.KeyValuePair; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.Replica; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SYSTEM_V_FCNTL; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicy; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.StripingPolicyType; -import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.VivaldiCoordinates; -import org.xtreemfs.pbrpc.generatedinterfaces.MRC.DirectoryEntries; -import org.xtreemfs.pbrpc.generatedinterfaces.MRC.Setattrs; -import org.xtreemfs.pbrpc.generatedinterfaces.MRC.Stat; -import org.xtreemfs.pbrpc.generatedinterfaces.MRC.StatVFS; -import org.xtreemfs.pbrpc.generatedinterfaces.MRC.XATTR_FLAGS; -import org.xtreemfs.pbrpc.generatedinterfaces.MRC.getattrResponse; -import org.xtreemfs.pbrpc.generatedinterfaces.MRC.openResponse; -import org.xtreemfs.pbrpc.generatedinterfaces.MRC.statvfsRequest; +import org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.*; +import org.xtreemfs.pbrpc.generatedinterfaces.MRC.*; import org.xtreemfs.pbrpc.generatedinterfaces.MRCServiceClient; import org.xtreemfs.test.SetupUtils; import org.xtreemfs.test.TestEnvironment; import org.xtreemfs.test.TestHelper; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +import static org.junit.Assert.*; + public class VolumeTest { @Rule public final TestRule testLog = TestHelper.testLog; @@ -301,48 +283,51 @@ public class VolumeTest { assertEquals(3, entrySet.getEntriesCount()); } -// TODO(stenjan): Fix this issue and comment it out again. -// @Test -// public void testCreateDirWithEmptyPathComponents() throws Exception { -// VOLUME_NAME = "testCreateDirWithEmptyPathComponents"; -// // Both directories should be created under "/" -// final String DIR1 = "/test"; -// final String DIR2 = "/test//"; -// final String DIR3 = "/test//testdir"; -// -// // create volume -// client.createVolume(mrcAddress, auth, userCredentials, VOLUME_NAME, 0, userCredentials.getUsername(), -// userCredentials.getGroups(0), AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, -// StripingPolicyType.STRIPING_POLICY_RAID0, defaultStripingPolicy.getStripeSize(), -// defaultStripingPolicy.getWidth(), new ArrayList()); -// -// Volume volume = client.openVolume(VOLUME_NAME, null, options); -// -// // create some files and directories -// try { -// volume.createDirectory(userCredentials, DIR1, 0755); -// volume.createDirectory(userCredentials, DIR2, 0755); -// volume.createDirectory(userCredentials, DIR3, 0755); -// } catch (IOException ioe) { -// fail("failed to create testdirs"); -// } -// -// // test 'readDir' and 'stat' -// DirectoryEntries entrySet = null; -// -// entrySet = volume.readDir(userCredentials, DIR2, 0, 1000, false); -// assertEquals(3, entrySet.getEntriesCount()); -// assertEquals("..", entrySet.getEntries(0).getName()); -// assertEquals(".", entrySet.getEntries(1).getName()); -// assertEquals(DIR3, "/" + entrySet.getEntries(2).getName()); -// -// entrySet = volume.readDir(userCredentials, DIR3, 0, 1000, false); -// assertEquals(0, entrySet.getEntriesCount()); -// -// volume.removeDirectory(userCredentials, DIR3); -// entrySet = volume.readDir(userCredentials, DIR1, 0, 1000, false); -// assertEquals(2, entrySet.getEntriesCount()); -// } + @Test + public void testCreateDirWithEmptyPathComponents() throws Exception { + VOLUME_NAME = "testCreateDirWithEmptyPathComponents"; + // Both directories should be created under "/" + final String DIR1 = "/test"; + final String DIR2 = "/test//"; + final String DIR3 = "/test//testdir"; + + // create volume + client.createVolume(mrcAddress, auth, userCredentials, VOLUME_NAME, 0, userCredentials.getUsername(), + userCredentials.getGroups(0), AccessControlPolicyType.ACCESS_CONTROL_POLICY_NULL, + StripingPolicyType.STRIPING_POLICY_RAID0, defaultStripingPolicy.getStripeSize(), + defaultStripingPolicy.getWidth(), new ArrayList()); + + Volume volume = client.openVolume(VOLUME_NAME, null, options); + + // create some files and directories + try { + volume.createDirectory(userCredentials, DIR1, 0755); + volume.createDirectory(userCredentials, DIR3, 0755); + } catch (IOException ioe) { + fail("failed to create testdirs"); + } + + try { + volume.createDirectory(userCredentials, DIR2, 0755); + fail("existing directory could be created"); + } catch (IOException ioe) {} + + // test 'readDir' and 'stat' + DirectoryEntries entrySet = null; + + entrySet = volume.readDir(userCredentials, DIR2, 0, 1000, false); + assertEquals(3, entrySet.getEntriesCount()); + assertEquals("..", entrySet.getEntries(0).getName()); + assertEquals(".", entrySet.getEntries(1).getName()); + assertEquals("/testdir", "/" + entrySet.getEntries(2).getName()); + + entrySet = volume.readDir(userCredentials, DIR3, 0, 1000, false); + assertEquals(2, entrySet.getEntriesCount()); + + volume.removeDirectory(userCredentials, DIR3); + entrySet = volume.readDir(userCredentials, DIR1, 0, 1000, false); + assertEquals(2, entrySet.getEntriesCount()); + } @Test public void testHardLink() throws Exception { -- GitLab From 1c3136b1d0fdde12219f1104d0ee4fa275e1906d Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Wed, 5 Nov 2014 19:49:09 +0100 Subject: [PATCH 162/192] cpp: libxtreemfs: added lower-priority -o aliases for all non-Fuse mount options, fixing #205 --- cpp/include/libxtreemfs/options.h | 6 ++ cpp/src/libxtreemfs/options.cpp | 117 ++++++++++++++++++++++++++---- 2 files changed, 107 insertions(+), 16 deletions(-) diff --git a/cpp/include/libxtreemfs/options.h b/cpp/include/libxtreemfs/options.h index 736c112b9..229728f41 100644 --- a/cpp/include/libxtreemfs/options.h +++ b/cpp/include/libxtreemfs/options.h @@ -219,6 +219,9 @@ class Options { /** Skewness of the Zipf distribution used for vivaldi OSD selection */ double vivaldi_zipf_generator_skew; + /** May contain all previous options in key=value pair lists. */ + std::vector alternative_options; + // Internal options, not available from the command line interface. /** If not NULL, called to find out if request was interrupted. */ CheckIfInterruptedQueryFunction was_interrupted_function; @@ -297,6 +300,9 @@ class Options { /** Deprecated options which are kept to ensure backward compatibility. */ boost::program_options::options_description deprecated_options_; + + /** Specify all previous options in key=value pair lists. */ + boost::program_options::options_description alternative_options_; }; } // namespace xtreemfs diff --git a/cpp/src/libxtreemfs/options.cpp b/cpp/src/libxtreemfs/options.cpp index 0de728699..dc891dac7 100644 --- a/cpp/src/libxtreemfs/options.cpp +++ b/cpp/src/libxtreemfs/options.cpp @@ -9,7 +9,10 @@ #include "libxtreemfs/options.h" #include +#include +#include #include +#include #include #ifdef __APPLE__ @@ -46,7 +49,8 @@ Options::Options() #endif // HAS_OPENSSL grid_options_("Grid Support options"), vivaldi_options_("Vivaldi Options"), - xtreemfs_advanced_options_("XtreemFS Advanced options") { + xtreemfs_advanced_options_("XtreemFS Advanced options"), + alternative_options_("Alternative Specification of options") { version_string = XTREEMFS_VERSION_STRING; // XtreemFS URL Options. @@ -353,6 +357,15 @@ void Options::GenerateProgramOptionsDescriptions() { "this signal was sent in earlier versions." ); + alternative_options_.add_options() + (",o", + po::value< std::vector >(&alternative_options), + "Alternatively specify all options as a key=value pair list." + "E.g. '--opt1 --opt2 arg2' can become '-o opt1,opt2=arg2'." + "Overridden by explicitly specified options." + "Short option names must be prefixed with '-' anyway." + "Unrecognized options are retained, e.g. for Fuse."); + // These options are parsed all_descriptions_.add(general_).add(optimizations_).add(error_handling_) #ifdef HAS_OPENSSL @@ -365,7 +378,7 @@ void Options::GenerateProgramOptionsDescriptions() { #ifdef HAS_OPENSSL .add(ssl_options_) #endif // HAS_OPENSSL - .add(grid_options_).add(vivaldi_options_); + .add(grid_options_).add(vivaldi_options_).add(alternative_options_); all_descriptions_initialized_ = true; @@ -374,26 +387,96 @@ void Options::GenerateProgramOptionsDescriptions() { std::vector Options::ParseCommandLine(int argc, char** argv) { GenerateProgramOptionsDescriptions(); - // Parse command line. + // Parse alternative options specification first, + // and potentially override using explicity options later. + po::parsed_options parsed = po::command_line_parser(argc, argv) + .options(alternative_options_) + .allow_unregistered() + .style(style::default_style & ~style::allow_guessing) + .run(); boost::program_options::variables_map vm; + po::store(parsed, vm); + po::notify(vm); + + // Collect all non-alternative options, i.e. all regular ones, + // and the ones that are completely unknown. + vector regular_options = po::collect_unrecognized(parsed.options, po::include_positional); + + // Collect options that are not meant to be set via alternative specification. + vector unrecognized_alternative_options; + + typedef boost::tokenizer< boost::char_separator > tokenizer; + boost::char_separator list_separator(","); + boost::char_separator pair_separator("="); + + // Walk all alternative options, represented as a list of comma separated + // key=value pairs. + for(vector::iterator opt_list = alternative_options.begin(); + opt_list != alternative_options.end(); + ++opt_list) { + // Split the current comma separated list into key=value pairs. + tokenizer pairs(*opt_list, list_separator); + for(tokenizer::iterator pair = pairs.begin(); + pair != pairs.end(); + ++pair) { + // Split the key=value pair into key and value. + tokenizer key_value(*pair, pair_separator); + + // Find out whether this is a known option. + const po::option_description *opt_desc = all_descriptions_.find_nothrow(*(key_value.begin()), false); + if(opt_desc != NULL) { + string prefixed_long_opt = opt_desc->canonical_display_name(po::command_line_style::allow_long); + string prefixed_short_opt = opt_desc->canonical_display_name(po::command_line_style::allow_dash_for_short); + + // Find out if this proper option has been explicitly defined. + if(find(regular_options.begin(), regular_options.end(), prefixed_long_opt) == regular_options.end() && + find(regular_options.begin(), regular_options.end(), prefixed_short_opt) == regular_options.end()) { + // always at least 1 since the first part is the key + size_t num_tokens = distance(key_value.begin(), key_value.end()) - 1; + + if( num_tokens < opt_desc->semantic()->min_tokens() || + num_tokens > opt_desc->semantic()->max_tokens()) { + throw InvalidCommandLineParametersException("Incorrect number of arguments for option: " + *(key_value.begin())); + } + + // Explicitly set option for later parsing. + regular_options.push_back(prefixed_long_opt); + tokenizer::iterator value = key_value.begin(); + advance(value, 1); + for(; value != key_value.end(); advance(value, 1)) { + regular_options.push_back(*value); + } + } else { + // Known option is explicitly specified, do not set. + } + } else { + // Not an option that is supposed to be set via alternative specification, + // so just add it back the way it came in. + unrecognized_alternative_options.push_back("-o"); + for(tokenizer::iterator value = key_value.begin(); + value != key_value.end(); + advance(value, 1)) { + unrecognized_alternative_options.push_back(*value); + } + } + } + } + + vm.clear(); try { - po::store(po::command_line_parser(argc, argv) - .options(all_descriptions_) - .allow_unregistered() - .style(style::default_style & ~style::allow_guessing) - .run(), vm); + // Parse non-alternative options normally. + parsed = po::command_line_parser(regular_options) + .options(all_descriptions_) + .allow_unregistered() + .style(style::default_style & ~style::allow_guessing) + .run(); + po::store(parsed, vm); po::notify(vm); } catch(const std::exception& e) { // Rethrow boost errors due to invalid command line parameters. throw InvalidCommandLineParametersException(string(e.what())); } - po::parsed_options parsed = po::command_line_parser(argc, argv) - .options(all_descriptions_) - .allow_unregistered() - .style(style::default_style & ~style::allow_guessing) - .run(); - if (metadata_cache_size < readdir_chunk_size && metadata_cache_size != 0) { cerr << "Warning: Please set the metadata cache size at least as high as " "the readdir chunk size. (Currently: " << metadata_cache_size << @@ -495,8 +578,10 @@ std::vector Options::ParseCommandLine(int argc, char** argv) { } #endif // HAS_OPENSSL - // Return unparsed options. - return po::collect_unrecognized(parsed.options, po::include_positional); + // Return all unparsed options. + vector unparsed_options = po::collect_unrecognized(parsed.options, po::include_positional); + unparsed_options.insert(unparsed_options.end(), unrecognized_alternative_options.begin(), unrecognized_alternative_options.end()); + return unparsed_options; } void Options::ParseURL(XtreemFSServiceType service_type) { -- GitLab From 1142d3f42d48f728601f89fb33af68536010a85d Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Thu, 6 Nov 2014 11:59:47 +0100 Subject: [PATCH 163/192] cpp: libxtreemfs: also recognizing explicitly set command line options of the form --opt=arg --- cpp/include/libxtreemfs/options.h | 2 +- cpp/src/libxtreemfs/options.cpp | 87 +++++++++++++++---------------- 2 files changed, 42 insertions(+), 47 deletions(-) diff --git a/cpp/include/libxtreemfs/options.h b/cpp/include/libxtreemfs/options.h index 229728f41..65706bab6 100644 --- a/cpp/include/libxtreemfs/options.h +++ b/cpp/include/libxtreemfs/options.h @@ -220,7 +220,7 @@ class Options { double vivaldi_zipf_generator_skew; /** May contain all previous options in key=value pair lists. */ - std::vector alternative_options; + std::vector alternative_options_list; // Internal options, not available from the command line interface. /** If not NULL, called to find out if request was interrupted. */ diff --git a/cpp/src/libxtreemfs/options.cpp b/cpp/src/libxtreemfs/options.cpp index dc891dac7..307a6d985 100644 --- a/cpp/src/libxtreemfs/options.cpp +++ b/cpp/src/libxtreemfs/options.cpp @@ -8,11 +8,12 @@ #include "libxtreemfs/options.h" +#include // boost::algorithm::starts_with +#include #include #include -#include +#include // std::find_if #include -#include #include #ifdef __APPLE__ @@ -35,6 +36,7 @@ using namespace std; using namespace xtreemfs::pbrpc; using namespace xtreemfs::util; +namespace alg = boost::algorithm; namespace po = boost::program_options; namespace style = boost::program_options::command_line_style; @@ -359,11 +361,14 @@ void Options::GenerateProgramOptionsDescriptions() { alternative_options_.add_options() (",o", - po::value< std::vector >(&alternative_options), - "Alternatively specify all options as a key=value pair list." - "E.g. '--opt1 --opt2 arg2' can become '-o opt1,opt2=arg2'." - "Overridden by explicitly specified options." - "Short option names must be prefixed with '-' anyway." + po::value< std::vector >(&alternative_options_list), + "Alternatively specify all options as a key=value1=value2 tuple list." + "E.g." + " '--opt1 --opt2 arg2 --opt3 arg3 arg4' can become" + " '-o opt1,opt2=arg2,opt3=arg3=arg4'." + "Overridden by explicitly specified options, e.g." + " '--log-level DEBUG' overrides '-o log-level=INFO'." + "Short option names must be prefixed with '-' anyway, e.g. '-o -d=DEBUG'." "Unrecognized options are retained, e.g. for Fuse."); // These options are parsed @@ -388,7 +393,7 @@ std::vector Options::ParseCommandLine(int argc, char** argv) { GenerateProgramOptionsDescriptions(); // Parse alternative options specification first, - // and potentially override using explicity options later. + // and potentially override using explicitly options later. po::parsed_options parsed = po::command_line_parser(argc, argv) .options(alternative_options_) .allow_unregistered() @@ -407,45 +412,38 @@ std::vector Options::ParseCommandLine(int argc, char** argv) { typedef boost::tokenizer< boost::char_separator > tokenizer; boost::char_separator list_separator(","); - boost::char_separator pair_separator("="); + boost::char_separator tuple_separator("="); // Walk all alternative options, represented as a list of comma separated - // key=value pairs. - for(vector::iterator opt_list = alternative_options.begin(); - opt_list != alternative_options.end(); - ++opt_list) { - // Split the current comma separated list into key=value pairs. - tokenizer pairs(*opt_list, list_separator); - for(tokenizer::iterator pair = pairs.begin(); - pair != pairs.end(); - ++pair) { - // Split the key=value pair into key and value. - tokenizer key_value(*pair, pair_separator); + // key=value1=value2... tuples. + for(vector::iterator alternative_options = alternative_options_list.begin(); + alternative_options != alternative_options_list.end(); + ++alternative_options) + { + // Split the current comma separated list into key=value1=value2... tuples. + tokenizer tuples(*alternative_options, list_separator); + for(tokenizer::iterator tuple = tuples.begin(); + tuple != tuples.end(); + ++tuple) + { + // Split the key=value1=value2... tuple into key and values. + tokenizer key_values(*tuple, tuple_separator); // Find out whether this is a known option. - const po::option_description *opt_desc = all_descriptions_.find_nothrow(*(key_value.begin()), false); + const po::option_description *opt_desc = all_descriptions_.find_nothrow(*(key_values.begin()), false); if(opt_desc != NULL) { - string prefixed_long_opt = opt_desc->canonical_display_name(po::command_line_style::allow_long); - string prefixed_short_opt = opt_desc->canonical_display_name(po::command_line_style::allow_dash_for_short); - - // Find out if this proper option has been explicitly defined. - if(find(regular_options.begin(), regular_options.end(), prefixed_long_opt) == regular_options.end() && - find(regular_options.begin(), regular_options.end(), prefixed_short_opt) == regular_options.end()) { - // always at least 1 since the first part is the key - size_t num_tokens = distance(key_value.begin(), key_value.end()) - 1; - - if( num_tokens < opt_desc->semantic()->min_tokens() || - num_tokens > opt_desc->semantic()->max_tokens()) { - throw InvalidCommandLineParametersException("Incorrect number of arguments for option: " + *(key_value.begin())); - } - + const string prefixed_long_opt = opt_desc->canonical_display_name(po::command_line_style::allow_long); + const string prefixed_short_opt = opt_desc->canonical_display_name(po::command_line_style::allow_dash_for_short); + + // Find out if this known option has been explicitly specified. + if( find_if(regular_options.begin(), regular_options.end(), + boost::bind(alg::starts_with, _1, prefixed_long_opt)) == regular_options.end() && + find_if(regular_options.begin(), regular_options.end(), + boost::bind(alg::starts_with, _1, prefixed_short_opt)) == regular_options.end()) + { // Explicitly set option for later parsing. - regular_options.push_back(prefixed_long_opt); - tokenizer::iterator value = key_value.begin(); - advance(value, 1); - for(; value != key_value.end(); advance(value, 1)) { - regular_options.push_back(*value); - } + regular_options.push_back(prefixed_long_opt.empty() ? prefixed_short_opt : prefixed_long_opt); + regular_options.insert(regular_options.end(), ++(key_values.begin()), key_values.end()); } else { // Known option is explicitly specified, do not set. } @@ -453,11 +451,8 @@ std::vector Options::ParseCommandLine(int argc, char** argv) { // Not an option that is supposed to be set via alternative specification, // so just add it back the way it came in. unrecognized_alternative_options.push_back("-o"); - for(tokenizer::iterator value = key_value.begin(); - value != key_value.end(); - advance(value, 1)) { - unrecognized_alternative_options.push_back(*value); - } + unrecognized_alternative_options.insert(unrecognized_alternative_options.end(), + key_values.begin(), key_values.end()); } } } -- GitLab From d02e4560054ac1a0c14058360639a19a98d593e9 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Thu, 6 Nov 2014 15:35:01 +0100 Subject: [PATCH 164/192] cpp: libxtreemfs: little more verbosity in the help output related to #205 --- cpp/src/fuse/fuse_options.cpp | 3 ++- cpp/src/libxtreemfs/options.cpp | 16 ++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/cpp/src/fuse/fuse_options.cpp b/cpp/src/fuse/fuse_options.cpp index 41c6ec936..c732b5b77 100644 --- a/cpp/src/fuse/fuse_options.cpp +++ b/cpp/src/fuse/fuse_options.cpp @@ -70,7 +70,8 @@ FuseOptions::FuseOptions() : Options(), fuse_descriptions_("Fuse Options") { "Do not fork into background.") ("fuse_option,o", po::value< vector >(&fuse_options), - "Passes -o=hu@O8tpi8&$03%W1VoA-LWRr$U@ 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⁣?R4`KOna(v=SS|FnYu`5I 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 r|C#sgk$#ENB~8gs%Hk?6Nh~UJcjE#8TVZ&d delta 65242 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

|KtM{L^8KijWcuQy#@@0{3l=T#DM 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 diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index 19925427e..e3e67ff58 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -281,6 +281,7 @@ The client is implemented as a \emph{FUSE user-level driver} that runs as a norm This chapter describes how to install and set up the server side of an XtreemFS installation. \section{Installation} +\label{sec:installation} When installing XtreemFS server components, you can choose from two different installation sources: you can download one of the \emph{pre-packaged releases} that we create for most Linux distributions or you can install directly from the \emph{source tarball}. @@ -1864,11 +1865,60 @@ $> umount /xtreemfs \end{verbatim} \subsection{Mount Options} +\label{sec:mount_opts} Access to a FUSE mount is usually restricted to the user who mounted the volume. To allow the root user or any other user on the system to access the mounted volume, the FUSE options \texttt{-o allow\_root} and \texttt{-o allow\_other} can be used with \texttt{mount.xtreemfs}. They are, however, mutually exclusive. In order to use these options, the system administrator must create a FUSE configuration file \texttt{/etc/fuse.conf} and add a line\index{allow\_others option}\index{allow\_root option}\index{user\_allow\_other option} \texttt{user\_allow\_other}. By default, the local system cache on the client machine will be used to speed up read access to XtreemFS. In particular, using the cache as a local buffer is necessary to support the \texttt{mmap} system call, which - amongst others - is required to execute applications on Linux. Additionally, it enables the read-ahead functionality of Fuse and does speed up sequential reads, especially in presence of high latencies. If the local system cache is not disabled, the consistency model of client caches is limited to ``close-to-open'', which is similar to the model provided by NFS. Buffered I/O can be switched off by adding the \texttt{-o direct\_io} parameter. The parameter effects that all read and write operations are directed to their OSDs instead of being served from local caches. Enabling \texttt{-o direct\_io} might be also necessary if you rely on interruption support of read requests in Linux. Please see \href{http://code.google.com/p/xtreemfs/issues/detail?id=229}{issue 229} for more details. +All mount options and their description can be viewed in detail when running: +\begin{verbatim} +$> mount.xtreemfs --help +\end{verbatim} + +All options (except \texttt{-o}) can be specified explicitly or via the \texttt{-o} option, i.e. +\begin{verbatim} +$> mount.xtreemfs demo.xtreemfs.org/demo /mnt/xtreemfs \ + --log-level DEBUG -l /tmp/xtreemfs.log +\end{verbatim} +is equivalent to +\begin{verbatim} +$> mount.xtreemfs demo.xtreemfs.org/demo /mnt/xtreemfs \ + -o log-level=DEBUG,-l=/tmp/xtreemfs.log +\end{verbatim} +Note that when using \texttt{-o}, short options are still prefixed with a dash and the equal sign is mandatory. Options specified via \texttt{-o} that are not XtreemFS options are passed to FUSE as described above. Options specified via \texttt{-o} are ignored if they are also explicit specified, i.e. +\begin{verbatim} +$> mount.xtreemfs demo.xtreemfs.org/demo /mnt/xtreemfs \ + -o log-level=DEBUG --log-level=INFO +\end{verbatim} +has the same effect as +\begin{verbatim} +$> mount.xtreemfs demo.xtreemfs.org/ demo /mnt/xtreemfs \ + --log-level=INFO +\end{verbatim} + +\subsection{\texttt{/etc/fstab} Integration} +\label{sec:mount_vol:fstab} + +By allowing all options to be specified using \texttt{-o} (see section~\ref{sec:mount_opts}), an integration for automatic mounting using \texttt{/etc/fstab} on Unix and Unix-like systems is possible (note that the file system table may have different names or be located somewhere else depending on the Unix version). Simply append lines like the following to the file system table and modify as needed: +\begin{Verbatim}[commandchars=\\\{\}] +# +demo.xtreemfs.org:32638/demo /mnt/xtreemfs xtreemfs + \ensuremath{\color{red}\hookrightarrow\space} defaults,_netdev,-d=INFO,log-file-path=/tmp/xtreemfs.log 0 0 +\end{Verbatim} +\texttt{defaults} is a shorthand for \texttt{rw,suid,dev,exec,auto,nouser,async}. This will result in the following command: +\begin{verbatim} +$> /sbin/mount.xtreemfs demo.xtreemfs.org:32638/demo /mnt/xtreemfs \ + -o rw,_netdev,-d=INFO,log-file-path=/tmp/xtreemfs.log +\end{verbatim} +\texttt{rw} is passed on to Fuse, \texttt{\_netdev} is ignored by XtreemFS (however it is used by \texttt{mount}, see below) and the other options are processed as usual. Note that this requires that you have properly installed the client (see section~\ref{sec:installation}). + +The file system table is read on system startup or when executing +\begin{verbatim} +$> mount -a +\end{verbatim} +When mounting at system startup, it is vital to specify the \texttt{\_netdev} option to defer device mounting until the network has been enabled on the system. Otherwise the system will hang on boot. + \subsection{Asynchronous Writes Support} \label{sec:async_writes} -- GitLab From 94b4d045af7dc1963b22610172f2bdf199c71efa Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Fri, 7 Nov 2014 11:38:27 +0100 Subject: [PATCH 167/192] cpp: libxtreemfs: code formatting --- cpp/src/libxtreemfs/options.cpp | 67 ++++++++++++++++++--------------- 1 file changed, 37 insertions(+), 30 deletions(-) diff --git a/cpp/src/libxtreemfs/options.cpp b/cpp/src/libxtreemfs/options.cpp index 9f60e93a3..9bae7f5f7 100644 --- a/cpp/src/libxtreemfs/options.cpp +++ b/cpp/src/libxtreemfs/options.cpp @@ -8,11 +8,11 @@ #include "libxtreemfs/options.h" -#include // boost::algorithm::starts_with +#include // std::find_if +#include // boost::algorithm::starts_with #include #include #include -#include // std::find_if #include #include @@ -52,7 +52,7 @@ Options::Options() grid_options_("Grid Support options"), vivaldi_options_("Vivaldi Options"), xtreemfs_advanced_options_("XtreemFS Advanced options"), - alternative_options_("Alternative Specification of options") { + alternative_options_("Alternative Specification of options") { version_string = XTREEMFS_VERSION_STRING; // XtreemFS URL Options. @@ -362,14 +362,15 @@ void Options::GenerateProgramOptionsDescriptions() { alternative_options_.add_options() (",o", po::value< std::vector >(&alternative_options_list), - "Alternatively specify all options as a key=value1=value2 tuple list. " - "E.g.\n" - " '--opt1 --opt2 arg2 --opt3 arg3 arg4' can become\n" - " '-o opt1,opt2=arg2,opt3=arg3=arg4'.\n" - "Overridden by explicitly specified options, e.g.\n" - " '--log-level DEBUG' overrides '-o log-level=INFO'.\n" - "Short option names must be prefixed with '-' anyway, e.g. '-o -d=DEBUG'. " - "Unrecognized options are retained, e.g. for Fuse, see 'Fuse Options'."); + "Alternatively specify all options as a key=value1=value2 tuple list. " + "E.g.\n" + " '--opt1 --opt2 arg2 --opt3 arg3 arg4' can become\n" + " '-o opt1,opt2=arg2,opt3=arg3=arg4'.\n" + "Overridden by explicitly specified options, e.g.\n" + " '--log-level DEBUG' overrides '-o log-level=INFO'.\n" + "Short option names must be prefixed with '-' anyway, " + "e.g. '-o -d=DEBUG'. Unrecognized options are retained, " + "e.g. for Fuse, see 'Fuse Options'."); // These options are parsed all_descriptions_.add(general_).add(optimizations_).add(error_handling_) @@ -393,7 +394,7 @@ std::vector Options::ParseCommandLine(int argc, char** argv) { GenerateProgramOptionsDescriptions(); // Parse alternative options specification first, - // and potentially override using explicitly options later. + // and potentially override using explicit options later. po::parsed_options parsed = po::command_line_parser(argc, argv) .options(alternative_options_) .allow_unregistered() @@ -405,7 +406,8 @@ std::vector Options::ParseCommandLine(int argc, char** argv) { // Collect all non-alternative options, i.e. all regular ones, // and the ones that are completely unknown. - vector regular_options = po::collect_unrecognized(parsed.options, po::include_positional); + vector regular_options = po::collect_unrecognized(parsed.options, + po::include_positional); // Collect options that are not meant to be set via alternative specification. vector unrecognized_alternative_options; @@ -416,34 +418,38 @@ std::vector Options::ParseCommandLine(int argc, char** argv) { // Walk all alternative options, represented as a list of comma separated // key=value1=value2... tuples. - for(vector::iterator alternative_options = alternative_options_list.begin(); + for (vector::iterator alternative_options = alternative_options_list.begin(); alternative_options != alternative_options_list.end(); - ++alternative_options) - { + ++alternative_options) { // Split the current comma separated list into key=value1=value2... tuples. tokenizer tuples(*alternative_options, list_separator); - for(tokenizer::iterator tuple = tuples.begin(); + for (tokenizer::iterator tuple = tuples.begin(); tuple != tuples.end(); - ++tuple) - { + ++tuple) { // Split the key=value1=value2... tuple into key and values. tokenizer key_values(*tuple, tuple_separator); // Find out whether this is a known option. - const po::option_description *opt_desc = all_descriptions_.find_nothrow(*(key_values.begin()), false); - if(opt_desc != NULL) { - const string prefixed_long_opt = opt_desc->canonical_display_name(po::command_line_style::allow_long); - const string prefixed_short_opt = opt_desc->canonical_display_name(po::command_line_style::allow_dash_for_short); + const po::option_description *opt_desc = all_descriptions_.find_nothrow( + *(key_values.begin()), false); + if (opt_desc != NULL) { + const string prefixed_long_opt = opt_desc->canonical_display_name( + po::command_line_style::allow_long); + const string prefixed_short_opt = opt_desc->canonical_display_name( + po::command_line_style::allow_dash_for_short); // Find out if this known option has been explicitly specified. - if( find_if(regular_options.begin(), regular_options.end(), - boost::bind(alg::starts_with, _1, prefixed_long_opt)) == regular_options.end() && + if (find_if(regular_options.begin(), regular_options.end(), + boost::bind(alg::starts_with, _1, + prefixed_long_opt)) == regular_options.end() && find_if(regular_options.begin(), regular_options.end(), - boost::bind(alg::starts_with, _1, prefixed_short_opt)) == regular_options.end()) - { + boost::bind(alg::starts_with, _1, + prefixed_short_opt)) == regular_options.end()) { // Explicitly set option for later parsing. - regular_options.push_back(prefixed_long_opt.empty() ? prefixed_short_opt : prefixed_long_opt); - regular_options.insert(regular_options.end(), ++(key_values.begin()), key_values.end()); + regular_options.push_back( + prefixed_long_opt.empty() ? prefixed_short_opt : prefixed_long_opt); + regular_options.insert( + regular_options.end(), ++(key_values.begin()), key_values.end()); } else { // Known option is explicitly specified, do not set. } @@ -451,7 +457,8 @@ std::vector Options::ParseCommandLine(int argc, char** argv) { // Not an option that is supposed to be set via alternative specification, // so just add it back the way it came in. unrecognized_alternative_options.push_back("-o"); - unrecognized_alternative_options.insert(unrecognized_alternative_options.end(), + unrecognized_alternative_options.insert( + unrecognized_alternative_options.end(), key_values.begin(), key_values.end()); } } -- GitLab From 29159e51bb037da94aa6bfd2356b09f8bb7ede15 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Fri, 7 Nov 2014 11:40:05 +0100 Subject: [PATCH 168/192] doc: xtreemfs-userguide: wording --- doc/google_cpp_code_formatter.xml | 167 ++++++++++++++++++++++++++ doc/xtreemfs-userguide/xtfs-guide.tex | 8 +- 2 files changed, 171 insertions(+), 4 deletions(-) create mode 100644 doc/google_cpp_code_formatter.xml diff --git a/doc/google_cpp_code_formatter.xml b/doc/google_cpp_code_formatter.xml new file mode 100644 index 000000000..2247a3c12 --- /dev/null +++ b/doc/google_cpp_code_formatter.xml @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index e3e67ff58..df78e62df 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -1886,7 +1886,7 @@ is equivalent to $> mount.xtreemfs demo.xtreemfs.org/demo /mnt/xtreemfs \ -o log-level=DEBUG,-l=/tmp/xtreemfs.log \end{verbatim} -Note that when using \texttt{-o}, short options are still prefixed with a dash and the equal sign is mandatory. Options specified via \texttt{-o} that are not XtreemFS options are passed to FUSE as described above. Options specified via \texttt{-o} are ignored if they are also explicit specified, i.e. +Note that when using \texttt{-o}, short options are still prefixed with a dash and the equal sign is mandatory. Options specified via \texttt{-o} that are not XtreemFS options are passed to FUSE as described above. Options specified via \texttt{-o} are ignored if they are also specified explicitly, i.e. \begin{verbatim} $> mount.xtreemfs demo.xtreemfs.org/demo /mnt/xtreemfs \ -o log-level=DEBUG --log-level=INFO @@ -1900,7 +1900,7 @@ $> mount.xtreemfs demo.xtreemfs.org/ demo /mnt/xtreemfs \ \subsection{\texttt{/etc/fstab} Integration} \label{sec:mount_vol:fstab} -By allowing all options to be specified using \texttt{-o} (see section~\ref{sec:mount_opts}), an integration for automatic mounting using \texttt{/etc/fstab} on Unix and Unix-like systems is possible (note that the file system table may have different names or be located somewhere else depending on the Unix version). Simply append lines like the following to the file system table and modify as needed: +By allowing all options to be specified using \texttt{-o} (see section~\ref{sec:mount_opts}), an integration for automatic mounting using \texttt{/etc/fstab} on Unix and Unix-like systems is possible (note that \texttt{/etc/fstab} may have different names or be located somewhere else depending on the Unix version). Simply append lines like the following to \texttt{/etc/fstab} and modify as needed: \begin{Verbatim}[commandchars=\\\{\}] # demo.xtreemfs.org:32638/demo /mnt/xtreemfs xtreemfs @@ -1913,11 +1913,11 @@ $> /sbin/mount.xtreemfs demo.xtreemfs.org:32638/demo /mnt/xtreemfs \ \end{verbatim} \texttt{rw} is passed on to Fuse, \texttt{\_netdev} is ignored by XtreemFS (however it is used by \texttt{mount}, see below) and the other options are processed as usual. Note that this requires that you have properly installed the client (see section~\ref{sec:installation}). -The file system table is read on system startup or when executing +\texttt{/etc/fstab} is read on system startup or when executing \begin{verbatim} $> mount -a \end{verbatim} -When mounting at system startup, it is vital to specify the \texttt{\_netdev} option to defer device mounting until the network has been enabled on the system. Otherwise the system will hang on boot. +When mounting at system startup, it is vital to specify the \texttt{\_netdev} option to defer device mounting until the network has been started on the system. Otherwise the system will hang on boot. \subsection{Asynchronous Writes Support} \label{sec:async_writes} -- GitLab From 56fd2b4424212e29920424d5e862cf50f9c39db9 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Fri, 7 Nov 2014 17:34:20 +0100 Subject: [PATCH 169/192] cpp: libxtreemfs: extracting short and long option name from formatted name for conformance with earlier boost versions --- cpp/src/libxtreemfs/options.cpp | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/cpp/src/libxtreemfs/options.cpp b/cpp/src/libxtreemfs/options.cpp index 9bae7f5f7..9d1ca6ad9 100644 --- a/cpp/src/libxtreemfs/options.cpp +++ b/cpp/src/libxtreemfs/options.cpp @@ -433,10 +433,23 @@ std::vector Options::ParseCommandLine(int argc, char** argv) { const po::option_description *opt_desc = all_descriptions_.find_nothrow( *(key_values.begin()), false); if (opt_desc != NULL) { - const string prefixed_long_opt = opt_desc->canonical_display_name( - po::command_line_style::allow_long); - const string prefixed_short_opt = opt_desc->canonical_display_name( - po::command_line_style::allow_dash_for_short); + // Extract long and short option names from the formatted parameter + // '-o [ --opt ]' or '--opt' or '-o [ -- ]' (boost 1.48) + // '-o [ --opt ]' or '--opt' or '-o' (boost 1.57) + // FIXME use po::option_description::canonical_display_name + // when upgrading boost. + const string format_opt = opt_desc->format_name(); + string prefixed_long_opt = "", prefixed_short_opt = ""; + if(format_opt.substr(0, 2) == "--") { + // No short option available. + prefixed_long_opt = format_opt; + } else { + // Short option available, covers the other two cases. + prefixed_short_opt = format_opt.substr(0, 2); + if(format_opt.length() > 9) { + prefixed_long_opt = format_opt.substr(5, format_opt.length() - 7); + } + } // Find out if this known option has been explicitly specified. if (find_if(regular_options.begin(), regular_options.end(), -- GitLab From ffd657a32eae5f37796c4a958349d757c4fb870f Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Fri, 7 Nov 2014 18:31:51 +0100 Subject: [PATCH 170/192] cpp: libxtreemfs: added skeleton options test --- cpp/test/libxtreemfs/options_test.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cpp/test/libxtreemfs/options_test.cpp diff --git a/cpp/test/libxtreemfs/options_test.cpp b/cpp/test/libxtreemfs/options_test.cpp new file mode 100644 index 000000000..e8a3774a4 --- /dev/null +++ b/cpp/test/libxtreemfs/options_test.cpp @@ -0,0 +1,16 @@ +#include + +#include "libxtreemfs/options.h" + +namespace xtreemfs { + +TEST(OptionsTest, TestParseCommandLineAndConfigFile) { + const char* n_argv[] = { "executable", "--log-level=client.log" }; + + xtreemfs::Options options; + options.ParseCommandLine(2, const_cast(n_argv)); + + ASSERT_EQ("INFO", options.log_file_path); +} + +} // namespace xtreemfs \ No newline at end of file -- GitLab From 49e2ac2dd85d5ca94441620a8079760822843cef Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 10 Nov 2014 14:43:36 +0100 Subject: [PATCH 171/192] cpp: libxtreemfs: added options test for command line parsing --- cpp/test/libxtreemfs/options_test.cpp | 80 +++++++++++++++++++++++++-- 1 file changed, 75 insertions(+), 5 deletions(-) diff --git a/cpp/test/libxtreemfs/options_test.cpp b/cpp/test/libxtreemfs/options_test.cpp index e8a3774a4..e2d8dec2c 100644 --- a/cpp/test/libxtreemfs/options_test.cpp +++ b/cpp/test/libxtreemfs/options_test.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2014 by Robert Schmidtke, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + #include #include "libxtreemfs/options.h" @@ -5,12 +12,75 @@ namespace xtreemfs { TEST(OptionsTest, TestParseCommandLineAndConfigFile) { - const char* n_argv[] = { "executable", "--log-level=client.log" }; - xtreemfs::Options options; - options.ParseCommandLine(2, const_cast(n_argv)); - - ASSERT_EQ("INFO", options.log_file_path); + + { + // Fail on multiple log level specifications. + const char* n_argv[] = { "executable", "--log-level=DEBUG", "-dINFO" }; + ASSERT_THROW( + options.ParseCommandLine(3, const_cast(n_argv)), + std::exception + ); + } + + { + // Explicit specification overrides alternative specification. + // Short alternative specification. + const char* n_argv[] = { + "executable", + "--log-level=DEBUG", + "-o", "-d=INFO" + }; + options.ParseCommandLine(4, const_cast(n_argv)); + ASSERT_EQ("DEBUG", options.log_level_string); + } + + { + // Alternative specification complements explicit specifications. + const char* n_argv[] = { + "executable", + "--log-file-path=/tmp/test.log", + "-o", "-d=INFO" + }; + options.ParseCommandLine(4, const_cast(n_argv)); + ASSERT_EQ("/tmp/test.log", options.log_file_path); + ASSERT_EQ("INFO", options.log_level_string); + } + + { + // Multiple long alternative specifications. + const char* n_argv[] = { + "executable", + "-o", "log-file-path=/tmp/test.log", + "-o", "log-level=INFO" + }; + options.ParseCommandLine(5, const_cast(n_argv)); + ASSERT_EQ("/tmp/test.log", options.log_file_path); + ASSERT_EQ("INFO", options.log_level_string); + } + + { + // Comma separated alternative specification. + const char* n_argv[] = { + "executable", + "-o", "log-file-path=/tmp/test.log,-d=INFO" + }; + options.ParseCommandLine(3, const_cast(n_argv)); + ASSERT_EQ("/tmp/test.log", options.log_file_path); + ASSERT_EQ("INFO", options.log_level_string); + } + + { + // Example from what can be passed in from /etc/fstab. + const char* n_argv[] = { + "executable", + "-o", "_netdev,pkcs12-file-path=/tmp/pkcs12.p12,log-level=DEBUG" + }; + options.ParseCommandLine(3, const_cast(n_argv)); + ASSERT_EQ("/tmp/pkcs12.p12", options.ssl_pkcs12_path); + ASSERT_EQ("DEBUG", options.log_level_string); + } + } } // namespace xtreemfs \ No newline at end of file -- GitLab From c6e00358151cffab17effe5ecc4c7b071ca76fa1 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 10 Nov 2014 14:43:54 +0100 Subject: [PATCH 172/192] cpp: ignoring netbeans project files --- cpp/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/.gitignore b/cpp/.gitignore index 55df0e68e..25fa3ffa4 100644 --- a/cpp/.gitignore +++ b/cpp/.gitignore @@ -1,5 +1,6 @@ /build /html +/nbproject /.project /.cproject /.settings -- GitLab From 1f947a495b527b84717a665345cfb447cc0c839c Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 10 Nov 2014 14:45:59 +0100 Subject: [PATCH 173/192] doc: removed accidentally added google c++ formatter template for eclipse --- doc/google_cpp_code_formatter.xml | 167 ------------------------------ 1 file changed, 167 deletions(-) delete mode 100644 doc/google_cpp_code_formatter.xml diff --git a/doc/google_cpp_code_formatter.xml b/doc/google_cpp_code_formatter.xml deleted file mode 100644 index 2247a3c12..000000000 --- a/doc/google_cpp_code_formatter.xml +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file -- GitLab From 85c6956c22da9ad33b46f04492679ff75bd9d935 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 10 Nov 2014 15:29:55 +0100 Subject: [PATCH 174/192] cpp: libxtreemfs: setup logger for options test --- cpp/test/libxtreemfs/options_test.cpp | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/cpp/test/libxtreemfs/options_test.cpp b/cpp/test/libxtreemfs/options_test.cpp index e2d8dec2c..ef4471cff 100644 --- a/cpp/test/libxtreemfs/options_test.cpp +++ b/cpp/test/libxtreemfs/options_test.cpp @@ -8,10 +8,25 @@ #include #include "libxtreemfs/options.h" +#include "libxtreemfs/xtreemfs_exception.h" +#include "util/logging.h" + +using namespace xtreemfs::util; namespace xtreemfs { + + class OptionsTest : public ::testing::Test { + protected: + virtual void SetUp() { + initialize_logger(LEVEL_WARN); + } + + virtual void TearDown() { + shutdown_logger(); + } +}; -TEST(OptionsTest, TestParseCommandLineAndConfigFile) { +TEST_F(OptionsTest, TestParseCommandLineAndConfigFile) { xtreemfs::Options options; { -- GitLab From 97522175a8bd4745c9bbe5d0b1c9ca3779af802a Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 10 Nov 2014 15:30:28 +0100 Subject: [PATCH 175/192] cpp: libxtreemfs: expecting more specific exception during options test --- cpp/test/libxtreemfs/options_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/test/libxtreemfs/options_test.cpp b/cpp/test/libxtreemfs/options_test.cpp index ef4471cff..ae055d0e7 100644 --- a/cpp/test/libxtreemfs/options_test.cpp +++ b/cpp/test/libxtreemfs/options_test.cpp @@ -34,7 +34,7 @@ TEST_F(OptionsTest, TestParseCommandLineAndConfigFile) { const char* n_argv[] = { "executable", "--log-level=DEBUG", "-dINFO" }; ASSERT_THROW( options.ParseCommandLine(3, const_cast(n_argv)), - std::exception + InvalidCommandLineParametersException ); } -- GitLab From 759270b60455f4c90b1d2ba5dd56b4805fff24a7 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Mon, 10 Nov 2014 16:00:49 +0100 Subject: [PATCH 176/192] cpp: fuse: extended fuse options test to account for now different handling of -o option --- cpp/test/fuse/fuse_options_test.cpp | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/cpp/test/fuse/fuse_options_test.cpp b/cpp/test/fuse/fuse_options_test.cpp index b44f64785..9502f19c9 100644 --- a/cpp/test/fuse/fuse_options_test.cpp +++ b/cpp/test/fuse/fuse_options_test.cpp @@ -32,13 +32,13 @@ class FuseOptionsTest : public ::testing::Test { } }; -TEST_F(FuseOptionsTest, TestCommandLineMultipleOptionsPerMinusoOption) { +TEST_F(FuseOptionsTest, TestCommandLineMultipleOptionsPerFuseOptionAndMinusoOption) { int argc = 7; char** argv = new char*[argc]; argv[0] = strdup("mount.xtreemfs"); - argv[1] = strdup("-o"); + argv[1] = strdup("--fuse_option"); argv[2] = strdup("allow_other,bogus"); - argv[3] = strdup("-o"); + argv[3] = strdup("--fuse_option"); argv[4] = strdup("bogus2"); argv[5] = strdup("localhost/test"); argv[6] = strdup("/mnt/xtreemfs"); @@ -56,6 +56,24 @@ TEST_F(FuseOptionsTest, TestCommandLineMultipleOptionsPerMinusoOption) { // Split options are added to the end of fuse_options. EXPECT_EQ("allow_other", options.fuse_options[1]); EXPECT_EQ("bogus", options.fuse_options[2]); + + // when using -o, split options are ordered because they are processed in + // Options::ParseCommandLine. + free(argv[1]); + argv[1] = strdup("-o"); + free(argv[3]); + argv[1] = strdup("-o"); + + ASSERT_NO_THROW({ + options.ParseCommandLine(argc, argv); + }); + ASSERT_TRUE(!options.show_help && !options.empty_arguments_list + && !options.show_version); + + ASSERT_EQ(3, options.fuse_options.size()); + EXPECT_EQ("allow_other", options.fuse_options[0]); + EXPECT_EQ("bogus", options.fuse_options[1]); + EXPECT_EQ("bogus2", options.fuse_options[2]); for (int i = 0; i < argc; i++) { free(argv[i]); -- GitLab From 43b7586a772ed47993f9ba4b0a935883e6bbd903 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Tue, 11 Nov 2014 10:16:10 +0100 Subject: [PATCH 177/192] cpp: libxtreemfs: whitespace fix --- cpp/src/libxtreemfs/options.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/cpp/src/libxtreemfs/options.cpp b/cpp/src/libxtreemfs/options.cpp index 9d1ca6ad9..3564bafca 100644 --- a/cpp/src/libxtreemfs/options.cpp +++ b/cpp/src/libxtreemfs/options.cpp @@ -52,7 +52,7 @@ Options::Options() grid_options_("Grid Support options"), vivaldi_options_("Vivaldi Options"), xtreemfs_advanced_options_("XtreemFS Advanced options"), - alternative_options_("Alternative Specification of options") { + alternative_options_("Alternative Specification of options") { version_string = XTREEMFS_VERSION_STRING; // XtreemFS URL Options. @@ -362,15 +362,15 @@ void Options::GenerateProgramOptionsDescriptions() { alternative_options_.add_options() (",o", po::value< std::vector >(&alternative_options_list), - "Alternatively specify all options as a key=value1=value2 tuple list. " - "E.g.\n" - " '--opt1 --opt2 arg2 --opt3 arg3 arg4' can become\n" - " '-o opt1,opt2=arg2,opt3=arg3=arg4'.\n" - "Overridden by explicitly specified options, e.g.\n" - " '--log-level DEBUG' overrides '-o log-level=INFO'.\n" - "Short option names must be prefixed with '-' anyway, " - "e.g. '-o -d=DEBUG'. Unrecognized options are retained, " - "e.g. for Fuse, see 'Fuse Options'."); + "Alternatively specify all options as a key=value1=value2 tuple list. " + "E.g.\n" + " '--opt1 --opt2 arg2 --opt3 arg3 arg4' can become\n" + " '-o opt1,opt2=arg2,opt3=arg3=arg4'.\n" + "Overridden by explicitly specified options, e.g.\n" + " '--log-level DEBUG' overrides '-o log-level=INFO'.\n" + "Short option names must be prefixed with '-' anyway, " + "e.g. '-o -d=DEBUG'. Unrecognized options are retained, " + "e.g. for Fuse, see 'Fuse Options'."); // These options are parsed all_descriptions_.add(general_).add(optimizations_).add(error_handling_) -- GitLab From f11f87e739cacb9e4364f53140e7749509dab065 Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Wed, 12 Nov 2014 12:37:29 +0100 Subject: [PATCH 178/192] servers: Allow deletion of snapshots even after snapshots are disabled. Fixes #275 --- .../org/xtreemfs/mrc/database/babudb/BabuDBVolumeManager.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeManager.java b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeManager.java index a679e2b2b..ed1b7acb7 100644 --- a/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeManager.java +++ b/java/servers/src/org/xtreemfs/mrc/database/babudb/BabuDBVolumeManager.java @@ -328,10 +328,6 @@ public class BabuDBVolumeManager implements VolumeManager { // check if the volume exists StorageManager sMan = getStorageManager(volumeId); - if (!snapName.equals(".dump") && !sMan.getVolumeInfo().isSnapshotsEnabled()) - throw new UserException(POSIXErrno.POSIX_ERROR_EPERM, - "snapshot operations are not allowed on this volume"); - // determine the unique identifier for the snapshot String snapVolName = sMan.getVolumeInfo().getName() + SNAPSHOT_SEPARATOR + snapName; -- GitLab From d000baf4067c2416e3802fe9a5350d25b2c6a496 Mon Sep 17 00:00:00 2001 From: Jan Fajerski Date: Fri, 14 Nov 2014 15:19:02 +0100 Subject: [PATCH 179/192] interface: fix typo in doc --- interface/xtreemfs/GlobalTypes.proto | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/interface/xtreemfs/GlobalTypes.proto b/interface/xtreemfs/GlobalTypes.proto index ce9375302..e15a6d0ad 100644 --- a/interface/xtreemfs/GlobalTypes.proto +++ b/interface/xtreemfs/GlobalTypes.proto @@ -104,15 +104,21 @@ message NewFileSize { enum StripingPolicyType { // Default striping policy (round-robin distribution). STRIPING_POLICY_RAID0 = 0; + // Erasure code striping policy (. + STRIPING_POLICY_ERASURECODE = 1; } message StripingPolicy { - // Type, always STRIPING_POLICY_RAID0. + // Type (by default STRIPING_POLICY_RAID0). required StripingPolicyType type = 1; - // Size of stripe (objects) in *kB*! + // Size of a single chunk (object) in *kB*! + // The name of the field is wrong: This is not the total size of the stripe. + // Instead, the total size of a stripe in XtreemFS is: stripe_size * (width + parity_width) required fixed32 stripe_size = 2; - // Number of OSDs to distribute stripes on. + // Number of OSDs to distribute data chunks on. required fixed32 width = 3; + // Number of OSDs to distribute parity chunks on. + optional fixed32 parity_width = 4; } // Details for a file replica. @@ -199,7 +205,7 @@ message VivaldiCoordinates { // Response returned by OSD write and truncate operations. // This information is stored by the client and must be -// realyed to the MRC in regular intervals or when the file +// relayed to the MRC in regular intervals or when the file // is fsynced or closed. // In addition, the client must use this information locally // for open files to provide processes with an accurate -- GitLab From 77066bf49329fdb10cb3003cd8adf37f2fa0efc1 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Wed, 19 Nov 2014 10:42:32 +0100 Subject: [PATCH 180/192] cpp: libxtreemfs: split options test into separate methods --- cpp/test/libxtreemfs/options_test.cpp | 130 ++++++++++++-------------- 1 file changed, 60 insertions(+), 70 deletions(-) diff --git a/cpp/test/libxtreemfs/options_test.cpp b/cpp/test/libxtreemfs/options_test.cpp index ae055d0e7..a841192a0 100644 --- a/cpp/test/libxtreemfs/options_test.cpp +++ b/cpp/test/libxtreemfs/options_test.cpp @@ -24,78 +24,68 @@ namespace xtreemfs { virtual void TearDown() { shutdown_logger(); } + + xtreemfs::Options options_; }; -TEST_F(OptionsTest, TestParseCommandLineAndConfigFile) { - xtreemfs::Options options; - - { - // Fail on multiple log level specifications. - const char* n_argv[] = { "executable", "--log-level=DEBUG", "-dINFO" }; - ASSERT_THROW( - options.ParseCommandLine(3, const_cast(n_argv)), - InvalidCommandLineParametersException - ); - } - - { - // Explicit specification overrides alternative specification. - // Short alternative specification. - const char* n_argv[] = { - "executable", - "--log-level=DEBUG", - "-o", "-d=INFO" - }; - options.ParseCommandLine(4, const_cast(n_argv)); - ASSERT_EQ("DEBUG", options.log_level_string); - } - - { - // Alternative specification complements explicit specifications. - const char* n_argv[] = { - "executable", - "--log-file-path=/tmp/test.log", - "-o", "-d=INFO" - }; - options.ParseCommandLine(4, const_cast(n_argv)); - ASSERT_EQ("/tmp/test.log", options.log_file_path); - ASSERT_EQ("INFO", options.log_level_string); - } - - { - // Multiple long alternative specifications. - const char* n_argv[] = { - "executable", - "-o", "log-file-path=/tmp/test.log", - "-o", "log-level=INFO" - }; - options.ParseCommandLine(5, const_cast(n_argv)); - ASSERT_EQ("/tmp/test.log", options.log_file_path); - ASSERT_EQ("INFO", options.log_level_string); - } - - { - // Comma separated alternative specification. - const char* n_argv[] = { - "executable", - "-o", "log-file-path=/tmp/test.log,-d=INFO" - }; - options.ParseCommandLine(3, const_cast(n_argv)); - ASSERT_EQ("/tmp/test.log", options.log_file_path); - ASSERT_EQ("INFO", options.log_level_string); - } - - { - // Example from what can be passed in from /etc/fstab. - const char* n_argv[] = { - "executable", - "-o", "_netdev,pkcs12-file-path=/tmp/pkcs12.p12,log-level=DEBUG" - }; - options.ParseCommandLine(3, const_cast(n_argv)); - ASSERT_EQ("/tmp/pkcs12.p12", options.ssl_pkcs12_path); - ASSERT_EQ("DEBUG", options.log_level_string); - } - +TEST_F(OptionsTest, TestFailOnMultipleLogLevelOptions) { + const char* n_argv[] = { "executable", "--log-level=DEBUG", "-dINFO" }; + ASSERT_THROW( + options_.ParseCommandLine(3, const_cast(n_argv)), + InvalidCommandLineParametersException + ); +} + +TEST_F(OptionsTest, TestExplicitSpecificationOverride) { + const char* n_argv[] = { + "executable", + "--log-level=DEBUG", + "-o", "-d=INFO" + }; + options_.ParseCommandLine(4, const_cast(n_argv)); + ASSERT_EQ("DEBUG", options_.log_level_string); +} + +TEST_F(OptionsTest, TestExplicitAndAlternativeCombination) { + const char* n_argv[] = { + "executable", + "--log-file-path=/tmp/test.log", + "-o", "-d=INFO" + }; + options_.ParseCommandLine(4, const_cast(n_argv)); + ASSERT_EQ("/tmp/test.log", options_.log_file_path); + ASSERT_EQ("INFO", options_.log_level_string); +} + +TEST_F(OptionsTest, TestMultipleLongAlternativeOptions) { + const char* n_argv[] = { + "executable", + "-o", "log-file-path=/tmp/test.log", + "-o", "log-level=INFO" + }; + options_.ParseCommandLine(5, const_cast(n_argv)); + ASSERT_EQ("/tmp/test.log", options_.log_file_path); + ASSERT_EQ("INFO", options_.log_level_string); +} + +TEST_F(OptionsTest, TestCommaSeparatedAlternativeOptions) { + const char* n_argv[] = { + "executable", + "-o", "log-file-path=/tmp/test.log,-d=INFO" + }; + options_.ParseCommandLine(3, const_cast(n_argv)); + ASSERT_EQ("/tmp/test.log", options_.log_file_path); + ASSERT_EQ("INFO", options_.log_level_string); +} + +TEST_F(OptionsTest, TestFstabExample) { + const char* n_argv[] = { + "executable", + "-o", "_netdev,pkcs12-file-path=/tmp/pkcs12.p12,log-level=DEBUG" + }; + options_.ParseCommandLine(3, const_cast(n_argv)); + ASSERT_EQ("/tmp/pkcs12.p12", options_.ssl_pkcs12_path); + ASSERT_EQ("DEBUG", options_.log_level_string); } } // namespace xtreemfs \ No newline at end of file -- GitLab From d92f115ca251aed830d3c7e051f381f8787521a9 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Wed, 19 Nov 2014 11:41:05 +0100 Subject: [PATCH 181/192] tests: updated repository URL for nightly tests# --- tests/cronjob/run_xtreemfs_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cronjob/run_xtreemfs_tests.sh b/tests/cronjob/run_xtreemfs_tests.sh index 00d7ca5aa..a458fd13b 100755 --- a/tests/cronjob/run_xtreemfs_tests.sh +++ b/tests/cronjob/run_xtreemfs_tests.sh @@ -130,7 +130,7 @@ mkdir -p $TEST_DIR # Check out cd $XTREEMFS_DIR -git clone https://code.google.com/p/xtreemfs/ . &> $TEST_LOG +git clone https://github.com/xtreemfs/xtreemfs.git . &> $TEST_LOG # Compile # 2012-11-02(mberlin): Try to disable optimizations in client compilation. -- GitLab From 4496dbf28d0186cbfe9266052673d6f45e4c03cb Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Thu, 20 Nov 2014 11:35:51 +0100 Subject: [PATCH 182/192] tests: makextreemfs test uses Github unstable tarball instead of Google Code SVN now (not available anymore) --- tests/test_scripts/15_makextreemfs.py | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/tests/test_scripts/15_makextreemfs.py b/tests/test_scripts/15_makextreemfs.py index a98e8ecad..8c3fdd968 100755 --- a/tests/test_scripts/15_makextreemfs.py +++ b/tests/test_scripts/15_makextreemfs.py @@ -4,7 +4,10 @@ # Copyright (c) 2009-2011 by Bjoern Kolbeck, Minor Gordon, Zuse Institute Berlin # Licensed under the BSD License, see LICENSE file for details. -import unittest, shutil, sys, os, subprocess +import unittest +import sys +import os +import subprocess global have_called_createTestSuite @@ -23,19 +26,13 @@ class makextreemfsTest(unittest.TestCase): if self.direct_io: print >>self.stdout, self.__class__.__name__ + ": skipping nondirect volume", os.getcwd() else: - retcode = subprocess.call( "svn co http://xtreemfs.googlecode.com/svn/trunk/bin >/dev/null", shell=True ) + retcode = subprocess.call( "wget https://github.com/xtreemfs/xtreemfs/archive/unstable.tar.gz >/dev/null", shell=True ) self.assertEqual( retcode, 0 ) - retcode = subprocess.call( "svn co http://xtreemfs.googlecode.com/svn/trunk/cpp >/dev/null", shell=True ) + retcode = subprocess.call( "tar xvzf unstable.tar.gz >/dev/null", shell=True ) self.assertEqual( retcode, 0 ) - retcode = subprocess.call( "svn co http://xtreemfs.googlecode.com/svn/trunk/java >/dev/null", shell=True ) - self.assertEqual( retcode, 0 ) - - retcode = subprocess.call( "svn export http://xtreemfs.googlecode.com/svn/trunk/Makefile >/dev/null", shell=True ) - self.assertEqual( retcode, 0 ) - - retcode = subprocess.call( "make >/dev/null", shell=True ) + retcode = subprocess.call( "cd xtreemfs-unstable && make >/dev/null", shell=True ) self.assertEqual( retcode, 0 ) -- GitLab From fdb571ac93507495818075a006e7cb08d22b8f65 Mon Sep 17 00:00:00 2001 From: Rob Date: Thu, 20 Nov 2014 23:35:48 -0500 Subject: [PATCH 183/192] Added password prompts to admin tools --- java/servers/src/org/xtreemfs/utils/utils.java | 5 +++-- .../src/org/xtreemfs/utils/xtfs_chstatus.java | 6 ++++++ .../src/org/xtreemfs/utils/xtfs_cleanup_osd.java | 6 ++++++ .../src/org/xtreemfs/utils/xtfs_mrcdbtool.java | 14 ++++++++++---- .../src/org/xtreemfs/utils/xtfs_remove_osd.java | 6 ++++++ .../org/xtreemfs/utils/xtfs_scrub/xtfs_scrub.java | 6 ++++++ 6 files changed, 37 insertions(+), 6 deletions(-) diff --git a/java/servers/src/org/xtreemfs/utils/utils.java b/java/servers/src/org/xtreemfs/utils/utils.java index 0807b3ed7..37df2e788 100644 --- a/java/servers/src/org/xtreemfs/utils/utils.java +++ b/java/servers/src/org/xtreemfs/utils/utils.java @@ -146,13 +146,14 @@ public class utils { "a PKCS#12 file containing user credentials (SSL/GridSSL only)", "")); options.put(OPTION_USER_CREDS_PASS, new CliOption(CliOption.OPTIONTYPE.STRING, - "a pass phrase to decrypt the the user credentials file (SSL/GridSSL only)", + "a pass phrase to decrypt the the user credentials file (SSL/GridSSL only). Set to '-' to prompt for the passphrase.", "")); options.put(OPTION_TRUSTSTORE_FILE, new CliOption(CliOption.OPTIONTYPE.STRING, "a PKCS#12 file containing a set of certificates from trusted CAs (SSL/GridSSL only)", "")); options.put(OPTION_TRUSTSTORE_PASS, new CliOption(CliOption.OPTIONTYPE.STRING, - "a pass phrase to decrypt the trusted CAs file (SSL/GridSSL only)", "")); + "a pass phrase to decrypt the trusted CAs file (SSL/GridSSL only). Set to '-' to prompt for the passphrase.", + "")); options.put(OPTION_HELP, new CliOption(CliOption.OPTIONTYPE.SWITCH, "show usage information", "")); options.put(OPTION_HELP_LONG, new CliOption(CliOption.OPTIONTYPE.SWITCH, "show usage information", "")); diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_chstatus.java b/java/servers/src/org/xtreemfs/utils/xtfs_chstatus.java index e2d610300..70e308bfd 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_chstatus.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_chstatus.java @@ -73,8 +73,14 @@ public class xtfs_chstatus { || dirURL.contains(Schemes.SCHEME_PBRPCG + "://") && sslOptions == null) { String serviceCredsFile = options.get(utils.OPTION_USER_CREDS_FILE).stringValue; String serviceCredsPass = options.get(utils.OPTION_USER_CREDS_PASS).stringValue; + if(serviceCredsPass != null && serviceCredsPass.equals("-")) { + serviceCredsPass = new String(System.console().readPassword("Enter credentials password: ")); + } String trustedCAsFile = options.get(utils.OPTION_TRUSTSTORE_FILE).stringValue; String trustedCAsPass = options.get(utils.OPTION_TRUSTSTORE_PASS).stringValue; + if(trustedCAsPass != null && trustedCAsPass.equals("-")) { + trustedCAsPass = new String(System.console().readPassword("Enter credentials password: ")); + } if (dirURL.contains(Schemes.SCHEME_PBRPCG + "://")) { gridSSL = true; } diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java b/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java index 2cae6ab17..a9d780f6a 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_cleanup_osd.java @@ -111,8 +111,14 @@ public class xtfs_cleanup_osd { || dirURL.contains(Schemes.SCHEME_PBRPCG + "://") && sslOptions == null) { String serviceCredsFile = options.get(utils.OPTION_USER_CREDS_FILE).stringValue; String serviceCredsPass = options.get(utils.OPTION_USER_CREDS_PASS).stringValue; + if(serviceCredsPass != null && serviceCredsPass.equals("-")) { + serviceCredsPass = new String(System.console().readPassword("Enter credentials password: ")); + } String trustedCAsFile = options.get(utils.OPTION_TRUSTSTORE_FILE).stringValue; String trustedCAsPass = options.get(utils.OPTION_TRUSTSTORE_PASS).stringValue; + if(trustedCAsPass != null && trustedCAsPass.equals("-")) { + trustedCAsPass = new String(System.console().readPassword("Enter trust store password: ")); + } if (dirURL.contains(Schemes.SCHEME_PBRPCG + "://")) { gridSSL = true; } diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_mrcdbtool.java b/java/servers/src/org/xtreemfs/utils/xtfs_mrcdbtool.java index e104dd6bf..104f43ebb 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_mrcdbtool.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_mrcdbtool.java @@ -91,9 +91,15 @@ public class xtfs_mrcdbtool { String dumpFile = arguments.get(1); CliOption c = options.get(utils.OPTION_USER_CREDS_FILE); - CliOption cp = options.get(utils.OPTION_USER_CREDS_PASS); + String cp = options.get(utils.OPTION_USER_CREDS_PASS).stringValue; + if(cp != null && cp.equals("-")) { + cp = new String(System.console().readPassword("Enter credentials password: ")); + } CliOption t = options.get(utils.OPTION_TRUSTSTORE_FILE); - CliOption tp = options.get(utils.OPTION_TRUSTSTORE_PASS); + String tp = options.get(utils.OPTION_TRUSTSTORE_PASS).stringValue; + if(tp != null && tp.equals("-")) { + tp = new String(System.console().readPassword("Enter trust store password: ")); + } String host = mrc.urlValue.getHost(); int port = mrc.urlValue.getPort(); @@ -119,8 +125,8 @@ public class xtfs_mrcdbtool { gridSSL = true; } - sslOptions = new SSLOptions(new FileInputStream(c.stringValue), cp.stringValue, - SSLOptions.PKCS12_CONTAINER, new FileInputStream(t.stringValue), tp.stringValue, + sslOptions = new SSLOptions(new FileInputStream(c.stringValue), cp, + SSLOptions.PKCS12_CONTAINER, new FileInputStream(t.stringValue), tp, SSLOptions.JKS_CONTAINER, false, gridSSL, null); } rpcClient = new RPCNIOSocketClient(sslOptions, Integer.MAX_VALUE - 1000, Integer.MAX_VALUE, "xtfs_mrcdbtool"); diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_remove_osd.java b/java/servers/src/org/xtreemfs/utils/xtfs_remove_osd.java index 0a7e1156c..c4da8f478 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_remove_osd.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_remove_osd.java @@ -122,8 +122,14 @@ public class xtfs_remove_osd { || dirURL.contains(Schemes.SCHEME_PBRPCG + "://") && sslOptions == null) { String serviceCredsFile = options.get(utils.OPTION_USER_CREDS_FILE).stringValue; String serviceCredsPass = options.get(utils.OPTION_USER_CREDS_PASS).stringValue; + if(serviceCredsPass != null && serviceCredsPass.equals("-")) { + serviceCredsPass = new String(System.console().readPassword("Enter credentials password: ")); + } String trustedCAsFile = options.get(utils.OPTION_TRUSTSTORE_FILE).stringValue; String trustedCAsPass = options.get(utils.OPTION_TRUSTSTORE_PASS).stringValue; + if(trustedCAsPass != null && trustedCAsPass.equals("-")) { + trustedCAsPass = new String(System.console().readPassword("Enter trust store password: ")); + } if (dirURL.contains(Schemes.SCHEME_PBRPCG + "://")) { gridSSL = true; } diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_scrub/xtfs_scrub.java b/java/servers/src/org/xtreemfs/utils/xtfs_scrub/xtfs_scrub.java index b008187b0..5c61043ef 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_scrub/xtfs_scrub.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_scrub/xtfs_scrub.java @@ -373,8 +373,14 @@ public class xtfs_scrub { || dirURL.contains(Schemes.SCHEME_PBRPCG + "://") && sslOptions == null) { String serviceCredsFile = options.get(utils.OPTION_USER_CREDS_FILE).stringValue; String serviceCredsPass = options.get(utils.OPTION_USER_CREDS_PASS).stringValue; + if(serviceCredsPass != null && serviceCredsPass.equals("-")) { + serviceCredsPass = new String(System.console().readPassword("Enter credentials password: ")); + } String trustedCAsFile = options.get(utils.OPTION_TRUSTSTORE_FILE).stringValue; String trustedCAsPass = options.get(utils.OPTION_TRUSTSTORE_PASS).stringValue; + if(trustedCAsPass != null && trustedCAsPass.equals("-")) { + trustedCAsPass = new String(System.console().readPassword("Enter trust store password: ")); + } if (dirURL.contains(Schemes.SCHEME_PBRPCG + "://")) { gridSSL = true; } -- GitLab From febbb0a070fb237dedafbe648a8eb68401104f95 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Thu, 27 Nov 2014 10:46:43 +0100 Subject: [PATCH 184/192] tests: updated cronjob description --- tests/cronjob/run_xtreemfs_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cronjob/run_xtreemfs_tests.sh b/tests/cronjob/run_xtreemfs_tests.sh index a458fd13b..51daf3f7e 100755 --- a/tests/cronjob/run_xtreemfs_tests.sh +++ b/tests/cronjob/run_xtreemfs_tests.sh @@ -10,7 +10,7 @@ # As of April 2013, we run this script internally every night. The results of the # tests are posted to the internal mailing list xtreemfs-test@googlegroups.com. # -# Run it as cron job as follows: /usr/bin/wget http://xtreemfs.googlecode.com/git/tests/cronjob/run_xtreemfs_tests.sh -q -O - | bash -l +# Run it as cron job as follows: /usr/bin/wget https://raw.githubusercontent.com/xtreemfs/xtreemfs/master/tests/cronjob/run_xtreemfs_tests.sh -q -O - | bash -l # Environment export LANG=en_US.UTF-8 -- GitLab From 9aa0ffbb68d56aa32042928fc3a01aa73a745de3 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Thu, 27 Nov 2014 14:48:38 +0100 Subject: [PATCH 185/192] docs: Added description of setting passphrases for SSL support in command line tools --- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 855445 -> 851503 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 29 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index 1aa74339312388c605799ae4e21078f15bfbd0dc..e5fb6fb2ce3e31ddaedaffe614e8c456d3fd3bdc 100644 GIT binary patch delta 35538 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 delta 39361 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 cp SERVICE.p12 /etc/xos/xtreemfs/truststore/certs \end{enumerate} +\subsubsection{Setting passphrases in command line tools} + +There are two options to set the passhrase for the trusted certificates and the keystore in command line tools. +\begin{enumerate} +\item Set the passphrase with the corresponding parameter (See the man page of the corresponding tool). For example: +\begin{verbatim} + $> mount.xtreemfs --pkcs12-file-path=\ + /etc/xos/xtreemfs/truststore/certs/client.p12 \ + --pkcs12-passphrase=passphrase pbrpcs://localhost/test /mnt +\end{verbatim} +or +\begin{verbatim} + $> xtfs_chstatus \ + -c /etc/xos/xtreemfs/truststore/certs/client.p12 \ + -cpass phasphrase \ + -t /etc/xos/xtreemfs/truststore/certs/trusted.jks \ + -tpass jks_passpharase test-osd online +\end{verbatim} +\item Set the corresponding passphrase parameter to "-" and you will be prompted for the passphrase. For example: +\begin{verbatim} + $> mount.xtreemfs --pkcs12-file-path=\ + /etc/xos/xtreemfs/truststore/certs/client.p12 \ + --pkcs12-passphrase=- pbrpcs://localhost/test /mnt +\end{verbatim} +Press enter and you will be prompted for the passphrase: +\begin{verbatim} +No PKCS#12 certificate passphrase was given. Please enter it now: +\end{verbatim} +\end{enumerate} \subsection{Running XtreemFS on SSDs} \label{sec:ssds} -- GitLab From 64dc36f300cacdbada9fd5ff5d22926209519a0a Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Fri, 28 Nov 2014 15:29:11 +0100 Subject: [PATCH 186/192] cpp: fixed memory leak in fuse_operations_test (Issue #205) --- cpp/test/fuse/fuse_options_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/test/fuse/fuse_options_test.cpp b/cpp/test/fuse/fuse_options_test.cpp index 9502f19c9..bdddb50ed 100644 --- a/cpp/test/fuse/fuse_options_test.cpp +++ b/cpp/test/fuse/fuse_options_test.cpp @@ -56,14 +56,14 @@ TEST_F(FuseOptionsTest, TestCommandLineMultipleOptionsPerFuseOptionAndMinusoOpti // Split options are added to the end of fuse_options. EXPECT_EQ("allow_other", options.fuse_options[1]); EXPECT_EQ("bogus", options.fuse_options[2]); - + // when using -o, split options are ordered because they are processed in // Options::ParseCommandLine. free(argv[1]); argv[1] = strdup("-o"); free(argv[3]); - argv[1] = strdup("-o"); - + argv[3] = strdup("-o"); + ASSERT_NO_THROW({ options.ParseCommandLine(argc, argv); }); -- GitLab From a6c7c6fd5d60a27833aea70b4c29142da4e0ba9a Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Fri, 28 Nov 2014 16:09:26 +0100 Subject: [PATCH 187/192] Updated AUTHORS --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 87c76a793..03ff82871 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,6 +1,7 @@ Michael Berlin Eugenio Cesario Johannes Dillmann +Jan Fajerski Jens V. Fischer Juan Gonzalez Lukas Kairies -- GitLab From 257f46b1e5b0011ae0c0f08a55bd485fca156fdb Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Fri, 28 Nov 2014 15:36:03 +0100 Subject: [PATCH 188/192] tests: Run Valgrind memory-leak checks for C++ Unit Tests on Travis CI. --- .travis.yml | 8 +++++--- tests/test_config.py | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c97918536..dc032627b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ jdk: openjdk6 before_install: - sudo apt-get update -qq - - sudo apt-get install -y libboost-all-dev libfuse-dev fuse libssl-dev libattr1-dev make cmake automake python + - sudo apt-get install -y libboost-all-dev libfuse-dev fuse libssl-dev libattr1-dev make cmake automake python valgrind before_script: - TEST_DIR="/tmp/xtreemfs_xtestenv" @@ -18,6 +18,8 @@ script: after_failure: - JUNIT_RESULT=`./contrib/travis/parse_results.py $TEST_DIR/result.json 'JUnit tests'` - CPP_RESULT=`./contrib/travis/parse_results.py $TEST_DIR/result.json 'C++ Unit Tests'` - - if [ $JUNIT_RESULT = "false" ]; then cat $TEST_DIR/log/junit.log; fi - - if [ $CPP_RESULT = "false" ]; then cat cpp/build/Testing/Temporary/LastTest.log; fi + - VALGRIND_RESULT=`./contrib/travis/parse_results.py $TEST_DIR/result.json 'Valgrind memory-leak check for C++ Unit Tests'` + - if [[ $JUNIT_RESULT = "false" ]]; then cat $TEST_DIR/log/junit.log; fi + - if [[ $CPP_RESULT = "false" ]]; then cat cpp/build/Testing/Temporary/LastTest.log; fi + - if [[ $VALGRIND_RESULT = "false" ]]; then cat $TEST_DIR/log/valgrind.log; fi diff --git a/tests/test_config.py b/tests/test_config.py index d867133d4..04fc5cc20 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -286,7 +286,7 @@ Tests = [ 'name': 'Valgrind memory-leak check for C++ Unit Tests', 'file': 'cpp_unit_tests_valgrind.sh', 'VolumeConfigs': [], - 'TestSets': [ 'full' ] + 'TestSets': [ 'full', 'travis' ] }, { 'name': 'mkfs-lsfs-rmfs.xtreemfs test', -- GitLab From 8c1704389b016f9c8961f990f71d06162f1bfcf5 Mon Sep 17 00:00:00 2001 From: noma Date: Mon, 1 Dec 2014 17:33:39 +0100 Subject: [PATCH 189/192] test: Added valgrind suppressions for getpwnam_r https://sourceware.org/bugzilla/show_bug.cgi?id=2314 http://stackoverflow.com/questions/188591/is-there-a-fix-or-a-workaround-for-the-memory-leak-in-getpwnam --- cpp/valgrind.supp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/cpp/valgrind.supp b/cpp/valgrind.supp index aa0a8196e..31bec94be 100644 --- a/cpp/valgrind.supp +++ b/cpp/valgrind.supp @@ -1,3 +1,21 @@ +{ + getpwnam_r + Memcheck:Leak + fun:malloc + ... + fun:__nss_lookup_function + ... + fun:getpwnam_r@@GLIBC_* +} +{ + getpwnam_r static mem + Memcheck:Leak + fun:malloc + fun:nss_parse_service_list + fun:__nss_database_lookup + ... + fun:getpwnam_r@@GLIBC_* +} { getpwuid_r Memcheck:Leak -- GitLab From ed2c4160ce9cd95fb96d786ec0b34287cfa33a26 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Tue, 2 Dec 2014 14:19:53 +0100 Subject: [PATCH 190/192] tests: delete Hadoop tarballs after extracting --- tests/test_scripts/hadoop2_test.sh | 37 ++++++++++++------------ tests/test_scripts/hadoop_ssl_test.sh | 27 +++++++++--------- tests/test_scripts/hadoop_test.sh | 41 ++++++++++++++------------- 3 files changed, 54 insertions(+), 51 deletions(-) diff --git a/tests/test_scripts/hadoop2_test.sh b/tests/test_scripts/hadoop2_test.sh index 1863a948a..5380a08ef 100755 --- a/tests/test_scripts/hadoop2_test.sh +++ b/tests/test_scripts/hadoop2_test.sh @@ -16,6 +16,7 @@ for VERSION in $HADOOP_VERSIONS; do cd $TEST_DIR echo "Extract Hadoop $VERSION..." tar -zxf $TEST_DIR/hadoop-$VERSION.tar.gz + rm -rf $TEST_DIR/hadoop-$VERSION.tar.gz cd $VOLUME_DIR #configure hadoop @@ -30,12 +31,12 @@ for VERSION in $HADOOP_VERSIONS; do export HADOOP_CONF_DIR=$HADOOP_PREFIX/etc/hadoop echo "Set HADOOP_CONF_DIR=$HADOOP_CONF_DIR" - export HADOOP_LOG_DIR="$TEST_DIR/log/hadoop.log" + export HADOOP_LOG_DIR="$TEST_DIR/log/hadoop.log" echo "Set HADOOP_LOG_DIR=$HADOOP_LOG_DIR" echo "Copy XtreeemFSHadoopClient.jar to $HADOOP_PREFIX/share/hadoop/common" cp $XTREEMFS/contrib/hadoop/dist/XtreemFSHadoopClient.jar $HADOOP_PREFIX/share/hadoop/common - + echo "configure core-site.xml" CORE_SITE=" @@ -130,7 +131,7 @@ for VERSION in $HADOOP_VERSIONS; do " echo $MAPRED_SITE > $HADOOP_CONF_DIR/mapred-site.xml - + echo "configure yarn-site.xml" YARN_SITE=" @@ -153,12 +154,12 @@ for VERSION in $HADOOP_VERSIONS; do #prepare input mkdir input - wget -nv -O test.txt http://www.gutenberg.org/cache/epub/1661/pg1661.txt + wget -nv -O test.txt http://www.gutenberg.org/cache/epub/1661/pg1661.txt #test hadoop fs shell if [ -z "$($HADOOP_PREFIX/bin/hadoop fs -ls /hadoop2_test | grep test.txt)" ] then echo "hadoop fs -ls does not show test file!"; RESULT=-1; - fi + fi $HADOOP_PREFIX/bin/hadoop fs -copyFromLocal test.txt /hadoop2_test/input/ @@ -174,8 +175,8 @@ for VERSION in $HADOOP_VERSIONS; do $HADOOP_PREFIX/sbin/mr-jobhistory-daemon.sh start historyserver #wait for complete start up sleep 10s - - if [[ -z "$(jps | grep NodeManager)" || -z "$(jps | grep ResourceManager)" || -z "$(jps | grep JobHistoryServer)" ]] + + if [[ -z "$(jps | grep NodeManager)" || -z "$(jps | grep ResourceManager)" || -z "$(jps | grep JobHistoryServer)" ]] then echo "Hadoop start up failed!"; RESULT=-1; else echo "Run wordcount without buffer..." @@ -184,7 +185,7 @@ for VERSION in $HADOOP_VERSIONS; do if [ -z "$($HADOOP_PREFIX/bin/mapred job -list all | grep _0001.*SUCCEEDED)" ] then echo "Hadoop job without buffer failed!"; RESULT=-1; else echo "Hadoop job without buffer was successfull"; - + #verify output sed "s/^\(.*\)[[:space:]*]\(.*\)/\2 \1/" output/part-r-00000 | sort -bnr > hadoop_tmp.txt cat input/test.txt | tr -s [:space:] '\n' | grep -v "^\s*$" | sort | uniq -c | sort -bnr > cross_check.txt @@ -192,16 +193,16 @@ for VERSION in $HADOOP_VERSIONS; do then echo "Hadoop produced wrong output!"; RESULT=-1; fi fi - + $HADOOP_PREFIX/bin/hadoop fs -rm -r /hadoop2_test/output echo "Run wordcount with buffer..." $HADOOP_PREFIX/bin/hadoop jar $HADOOP_PREFIX/share/hadoop/mapreduce/hadoop-mapreduce-examples-$VERSION.jar wordcount -D xtreemfs.io.read.buffer=true -D xtreemfs.io.write.buffer=true /hadoop2_test/input /hadoop2_test/output - - + + if [ -z "$($HADOOP_PREFIX/bin/mapred job -list all | grep _0002.*SUCCEEDED)" ] then echo "Hadoop job with buffer failed!"; RESULT=-1; - else + else echo "Hadoop job with buffer was successfull" #verify output @@ -219,28 +220,28 @@ for VERSION in $HADOOP_VERSIONS; do # check if servers stop if [ -n "$(jps | grep NodeManager)" ] - then + then echo "NodeManager does not stop, kill manually" NODEMANAGER_PID=$(jps | grep NodeManager | cut -d ' ' -f1) kill $NODEMANAGER_PID - fi - + fi + if [ -n "$(jps | grep ResourceManager)" ] - then + then echo "ResourceManager does not stop, kill manually" RESOURCEMANAGER_PID=$(jps | grep ResourceManager | cut -d ' ' -f1) kill $RESOURCEMANAGER_PID fi if [ -n "$(jps | grep JobHistoryServer)" ] - then + then echo "JobHistoryServer does not stop, kill manually" HISTORYSERVER_PID=$(jps | grep JobHistoryServer | cut -d ' ' -f1) kill $HISTORYSERVER_PID fi #kill all remaining child processes CHILD_PIDS=$(jps | grep Child | cut -d ' ' -f1) - if [ -n "$CHILD_PIDS" ] + if [ -n "$CHILD_PIDS" ] then kill $CHILD_PIDS fi fi diff --git a/tests/test_scripts/hadoop_ssl_test.sh b/tests/test_scripts/hadoop_ssl_test.sh index db17c5511..2528809f1 100755 --- a/tests/test_scripts/hadoop_ssl_test.sh +++ b/tests/test_scripts/hadoop_ssl_test.sh @@ -16,6 +16,7 @@ for VERSION in $HADOOP_VERSIONS; do cd $TEST_DIR echo "Extract Hadoop $VERSION..." tar -zxf $TEST_DIR/hadoop-$VERSION.tar.gz + rm -rf $TEST_DIR/hadoop-$VERSION.tar.gz cd $VOLUME_DIR #configure hadoop @@ -26,13 +27,13 @@ for VERSION in $HADOOP_VERSIONS; do export HADOOP_CONF_DIR=$HADOOP_PREFIX/conf/ echo "Set HADOOP_CONF_DIR=$HADOOP_CONF_DIR" - export HADOOP_LOG_DIR="$TEST_DIR/log/hadoop.log" + export HADOOP_LOG_DIR="$TEST_DIR/log/hadoop.log" echo "Set HADOOP_LOG_DIR=$HADOOP_LOG_DIR" echo "Copy XtreeemFSHadoopClient.jar to $HADOOP_PREFIX/lib/" cp $XTREEMFS/contrib/hadoop/dist/XtreemFSHadoopClient.jar $HADOOP_PREFIX/lib/ - + echo "configure core-site.xml" CORE_SITE=" @@ -109,7 +110,7 @@ for VERSION in $HADOOP_VERSIONS; do " - + echo $CORE_SITE > $HADOOP_PREFIX/conf/core-site.xml echo "configure mapred-site.xml" @@ -125,16 +126,16 @@ for VERSION in $HADOOP_VERSIONS; do " echo $MAPRED_SITE > $HADOOP_PREFIX/conf/mapred-site.xml - + #prepare input mkdir input - wget -nv -O test.txt http://www.gutenberg.org/cache/epub/1661/pg1661.txt + wget -nv -O test.txt http://www.gutenberg.org/cache/epub/1661/pg1661.txt #test hadoop fs shell if [ -z "$($HADOOP_PREFIX/bin/hadoop fs -ls /hadoop_with_ssl_test | grep test.txt)" ] then echo hadoop fs -ls does not show test file!; RESULT=-1; - fi + fi $HADOOP_PREFIX/bin/hadoop fs -copyFromLocal test.txt /hadoop_with_ssl_test/input/ @@ -149,8 +150,8 @@ for VERSION in $HADOOP_VERSIONS; do $HADOOP_PREFIX/bin/hadoop-daemon.sh start tasktracker #wait for complete start up sleep 10s - - if [[ -z "$(jps | grep TaskTracker)" || -z "$(jps | grep JobTracker)" ]] + + if [[ -z "$(jps | grep TaskTracker)" || -z "$(jps | grep JobTracker)" ]] then echo "Hadoop start up failed!"; RESULT=-1; else echo "Run wordcount" @@ -170,14 +171,14 @@ for VERSION in $HADOOP_VERSIONS; do # check if JobTacker and TaskTracker stop if [ -n "$(jps | grep TaskTracker)" ] - then + then echo "TaskTracker does not stop, kill manually" TASKTRACKER_PID=$(jps | grep TaskTracker | cut -d ' ' -f1) kill $TASKTRACKER_PID - fi - + fi + if [ -n "$(jps | grep JobTracker)" ] - then + then echo "JobTracker does not stop, kill manually" JOBTRACKER_PID=$(jps | grep JobTracker | cut -d ' ' -f1) kill $JOBTRACKER_PID @@ -185,7 +186,7 @@ for VERSION in $HADOOP_VERSIONS; do #kill all remaining child processes CHILD_PIDS=$(jps | grep Child | cut -d ' ' -f1) - if [ -n "$CHILD_PIDS" ] + if [ -n "$CHILD_PIDS" ] then kill $CHILD_PIDS fi fi diff --git a/tests/test_scripts/hadoop_test.sh b/tests/test_scripts/hadoop_test.sh index bd2ee3f22..a22be540f 100755 --- a/tests/test_scripts/hadoop_test.sh +++ b/tests/test_scripts/hadoop_test.sh @@ -18,6 +18,7 @@ for VERSION in $HADOOP_VERSIONS; do cd $TEST_DIR echo "Extract Hadoop $VERSION..." tar -zxf $TEST_DIR/hadoop-$VERSION.tar.gz + rm -rf $TEST_DIR/hadoop-$VERSION.tar.gz cd $VOLUME_DIR #configure hadoop @@ -28,13 +29,13 @@ for VERSION in $HADOOP_VERSIONS; do export HADOOP_CONF_DIR=$HADOOP_PREFIX/conf/ echo "Set HADOOP_CONF_DIR=$HADOOP_CONF_DIR" - export HADOOP_LOG_DIR="$TEST_DIR/log/hadoop.log" + export HADOOP_LOG_DIR="$TEST_DIR/log/hadoop.log" echo "Set HADOOP_LOG_DIR=$HADOOP_LOG_DIR" echo "Copy XtreeemFSHadoopClient.jar to $HADOOP_PREFIX/lib/" cp $XTREEMFS/contrib/hadoop/dist/XtreemFSHadoopClient.jar $HADOOP_PREFIX/lib/ - + echo "configure core-site.xml" CORE_SITE=" @@ -119,16 +120,16 @@ for VERSION in $HADOOP_VERSIONS; do " echo $MAPRED_SITE > $HADOOP_PREFIX/conf/mapred-site.xml - + #prepare input mkdir input - wget -nv -O test.txt http://www.gutenberg.org/cache/epub/1661/pg1661.txt + wget -nv -O test.txt http://www.gutenberg.org/cache/epub/1661/pg1661.txt #test hadoop fs shell if [ -z "$($HADOOP_PREFIX/bin/hadoop fs -ls /hadoop_test | grep test.txt)" ] then echo hadoop fs -ls does not show test file!; RESULT=-1; - fi + fi $HADOOP_PREFIX/bin/hadoop fs -copyFromLocal test.txt /hadoop_test/input/ @@ -143,8 +144,8 @@ for VERSION in $HADOOP_VERSIONS; do $HADOOP_PREFIX/bin/hadoop-daemon.sh start tasktracker #wait for complete start up sleep 10s - - if [[ -z "$(jps | grep TaskTracker)" || -z "$(jps | grep JobTracker)" ]] + + if [[ -z "$(jps | grep TaskTracker)" || -z "$(jps | grep JobTracker)" ]] then echo "Hadoop start up failed!"; RESULT=-1; else echo "Run wordcount without buffer..." @@ -154,7 +155,7 @@ for VERSION in $HADOOP_VERSIONS; do if [ "$JOB_STATUS" != "2" ] then echo "Hadoop job without buffer failed!"; RESULT=-1; else echo "Hadoop job without buffer was successfull"; - + #verify output sed "s/^\(.*\)[[:space:]*]\(.*\)/\2 \1/" output/part-r-00000 | sort -bnr > hadoop_tmp.txt cat input/test.txt | tr -s [:space:] '\n' | grep -v "^\s*$" | sort | uniq -c | sort -bnr > cross_check.txt @@ -162,17 +163,17 @@ for VERSION in $HADOOP_VERSIONS; do then echo "Hadoop produced wrong output!"; RESULT=-1; fi fi - + $HADOOP_PREFIX/bin/hadoop fs -rmr /hadoop_test/output echo "Run wordcount with buffer..." $HADOOP_PREFIX/bin/hadoop jar $HADOOP_PREFIX/hadoop-examples-$VERSION.jar wordcount -D xtreemfs.io.read.buffer=true -D xtreemfs.io.write.buffer=true /hadoop_test/input /hadoop_test/output - - JOB_STATUS=$($HADOOP_PREFIX/bin/hadoop job -list all | grep _0002 | cut -c 23) - + + JOB_STATUS=$($HADOOP_PREFIX/bin/hadoop job -list all | grep _0002 | cut -c 23) + if [ "$JOB_STATUS" != "2" ] then echo "Hadoop job with buffer failed!"; RESULT=-1; - else + else echo "Hadoop job with buffer was successfull" #verify output @@ -183,22 +184,22 @@ for VERSION in $HADOOP_VERSIONS; do fi fi - $HADOOP_PREFIX/bin/hadoop fs -rmr /hadoop_test/output - + $HADOOP_PREFIX/bin/hadoop fs -rmr /hadoop_test/output + echo "Stop JobTracker and TaskTracker..." $HADOOP_PREFIX/bin/hadoop-daemon.sh stop jobtracker $HADOOP_PREFIX/bin/hadoop-daemon.sh stop tasktracker # check if JobTacker and TaskTracker stop if [ -n "$(jps | grep TaskTracker)" ] - then + then echo "TaskTracker does not stop, kill manually" TASKTRACKER_PID=$(jps | grep TaskTracker | cut -d ' ' -f1) kill $TASKTRACKER_PID - fi - + fi + if [ -n "$(jps | grep JobTracker)" ] - then + then echo "JobTracker does not stop, kill manually" JOBTRACKER_PID=$(jps | grep JobTracker | cut -d ' ' -f1) kill $JOBTRACKER_PID @@ -206,7 +207,7 @@ for VERSION in $HADOOP_VERSIONS; do #kill all remaining child processes CHILD_PIDS=$(jps | grep Child | cut -d ' ' -f1) - if [ -n "$CHILD_PIDS" ] + if [ -n "$CHILD_PIDS" ] then kill $CHILD_PIDS fi fi -- GitLab From 0c3fc2ee48ece4e37cfed340995b2c34c38df85c Mon Sep 17 00:00:00 2001 From: Johannes Dillmann Date: Wed, 3 Dec 2014 15:17:24 +0100 Subject: [PATCH 191/192] tests: Fix xtestenv progress for volume tests. --- tests/xtestenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xtestenv b/tests/xtestenv index 0f9e7c8e7..22592b24f 100755 --- a/tests/xtestenv +++ b/tests/xtestenv @@ -295,7 +295,7 @@ class TestEnvironment: # Execute test... t_start = time.time() try: - testprocess = subprocess.Popen(testargs, stdout=testlog, stderr=testlog) + testprocess = subprocess.Popen(testargs, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) for line in iter(testprocess.stdout.readline,''): testlog.write(line) testprocess.wait() -- GitLab From fd33726309269096dd8b03e4a1509298653df10e Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Wed, 3 Dec 2014 15:47:22 +0100 Subject: [PATCH 192/192] tests: updated Hadoop version in test script --- tests/test_scripts/hadoop2_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_scripts/hadoop2_test.sh b/tests/test_scripts/hadoop2_test.sh index 5380a08ef..eda1bd132 100755 --- a/tests/test_scripts/hadoop2_test.sh +++ b/tests/test_scripts/hadoop2_test.sh @@ -2,7 +2,7 @@ XTREEMFS=$1 TEST_DIR=$4 -HADOOP_VERSIONS="2.2.0" +HADOOP_VERSIONS="2.6.0" VOLUME="$(basename $(dirname $(pwd)))" for VERSION in $HADOOP_VERSIONS; do -- GitLab

Xj8iErzx z?t!w^->~r3vthf{eXoChop*k1zu1zR`Uoen+k9F)k3IZiJPyXW~gsueq)oXO#{WODQTm%6`a%}M6> zTT$5J0F{84Esn>tUf+sZeY4-YeL?fpM57lepeBcyr<3D!iE{Pm$&oYX^88=3i$(Sq z^RLB=44XZ6-;l02{M+dL=h`#XpnK{zv~M-h;g&p;Zoq!~NK>bb<0}P`g;pvCUD4B7 zJk7Z*8ZWP@>R-6adi7gl!7F>Fb*f6U>fH87JbFaS(R7mRtv}XCBwz%;-7xkKp|7-ZSBIAt0CcSTL`woBq`0TUX=X>|! z;~1xGnAVc2*!olCS;FiHgNdphZ`hRr*jd~XUpFbdYq3*5VY2$2^MbtdS=By2beE?j zoph5sZ6*|9xX~+sH+6d1q3VadHexI7mfQAUZschPwK)p!n0;3XUtUvk#zyqi#bs@A zehb{^U+|p2a!RatllSuTi#ps{+W%*Le#>zwxbD07MAt@8%ml7m%d=lpXAI5`+FiQV<^IjLGL=p`c@i_dmVM%R{BgC#V$=2+b@PrX>F|1H z=R?j_*DX490Mu5*-{_zy%Rw&-fE{K(7kci1RYZ?N~e)1+}@^0@=a_Y6L#RlJv9pU?2^qRwKO1svep zqnj=*47nsDXt8##c2m*}KbC{X7D(HA6_;D3*GTX$>W=%Ju%1c0l%KaLZ`JaWId&TJ zil@zVxgaV2C2l#lrQoc2trtBCbkFQO;V)sn^4#{d54MW_5mR2Vew)_DAg6ZD(?$~o zW&XcD!>_#J-=o0Q_Q~9C!poMGq-+Vf>{tJk>vYKMZ;Kv2tx((1sqQ3MsonbS&JnX| zW?TRNk=*tm;{J5UoLw4`UvzG}+zfNb-R{}(co(mYrM`wueQ%hqS>T4#j9MSox->}r z@dvftuh%^Hm11OIxQO=@4JS$(f$*E4=1zcKzLk6FS^wYU;;$+dE8?bAM?a-FUy`v$ubriXPBYlCR?sZ)`W^ z&uuyupq2TJW6r&As*ToKX-x}i>m=+wimmr0+sMkB1Rmeju6J<51GI^jIb7>nEk&;yK3;a=>NMBb$SFq!TJHNA2YS7@IA`io4bE@>TmKcY ztd+NW=UcQbrQ}?QTkztgr`RUPM@Ovu^+jW!#q4KIvs2WjOf(OAaj-OLYn9jk^V1WB z`~H6NI^rhFJKOfP*@N3$FW$JcSd?z>c7HCpb@};g)6NQJm07q5H@ddGP=K@-vfeG$ z1RbNXA8!nJQWyhPqOu}mtypB&@J){G4Z7Z|qnNpHfp^dD$!kxp zIpfzR4=T#+9OSj6ygSx(?`{15p?=TLy~p=#2VEat9pQa=(}aUHY{eUVb!MCpUh>UZ za20b?O6KdP0|kp3grD3l{jM0Y{a)ePGcFejY=ynerUh=9c&Mv0lt~@b?|s*b-tRpE z?)Uore9`e!Ytmw0-@S7Jvgcn}?|0d9w3b9Xs!xcqDO)q?ZOHAR`WUwO4radEBM zt}DStB6m;mG^}3M_i@%K<9bfBgcp1Jn?ZGu>Ds%y!WO;%Q`Tssn5fblV;WxT_Ng#v z&gCcvC;RhBg45bkwr+=V zjtWer9s>GrVgw{i-V`3?($yRKBv)laTGHHxwoT7V4pl$w zuN7O#SpLhdyv<04HCAt~@vACu>)}VsPpv7BbA9*D30e(`xXqTk^;o8t901ip?*FsC zyyduLT=yST2fg5V|K~)e>5B4uFN@=^?uOSvWuS=5>=k-r`aex}_uELXnFn-De&-yS z!zgTfJlIHJ?Chj5m$ZlUo7E>3#Kr~8JU_P_kEq5VSQd-Z_rg0x0m@w2b=Eg zTJT^YS8ArCpqAHWw>4oR%v|@joxGK&A$@aA>%BkT^H}&nM^Nuzbqo+GNvk-MY&WyA zwz`h-g5%;QFJ8V?dSWp;LQ}pknUpqv!Hqk6lnNrIaWrl1R@gHwO-A;+)op9rsavdf zH=67<$lBPjmFd~SmQ-=OgOSVJOJ>|%T_N`Qjt`4(vg7*_v#FgIzO=MX?AU6sJgMwR z^5mB{kM*BrcH8hN`^sx=Rg>8tY{V@O9^BtnZ`AZlT+WPLbAFN4!z>r&#Y?41+3zp= z5VQ4VVnwB$k894a&H%T2UJG}d*J^)u-u8cwiUDEp?C)-~ooYuOb2 zPJaEE@Rqanc>j}KN7=Zx?P22&y}hJOHRL{cRYmG7)eB0D3=CiK7K&7gB3PdnBZ}6m zYz@7P;%T(EwOKz%am|fTB@Y3;SIe02kAkM2;SoWLM>}cDmTee%n zV<^m7vYW4_X|hlM3xnOkA5EU^l;oautm)pX93|m}F9o@k1+x?Tj(%x4u6FtIR{7cN zJqa(bXRKX6-Ju^eH#9Y(?|>lan7D#l}3?QN43Pxz+5GAsJO?7DcE;%@7Wh`E(>@*Nq>6HYqIH`_pDK zFKtN+p7&fy{l@?6AN<`e{5rJwTfw39Iet5(F5k#ldF=1Q?V2{>u~h=Gb9&X344XqV zl=GKd`1`tX>rchq_4jyQYurA6rZ-~!f~<>Mb3{$08ShQ=?+7k@d(qa$X5p6~fp<2& zSe$ZOI%83ut5k&3Us+JoZr3I~W5O{MKw&Y5y^MoLk971_+sZ%zn~;S%FFjXioR!+R zb%8{{hi$&sb}8nhY!<8fJl%#<4s_Yvou+_5n-^yc&LpSZ<1x;EufLw5D&u;<=LZYk zB^^Dg<@nV>E0d4&)ZDw;OzlrQ6>jX}IFz0FZqemN`+&~-xA~VywggURT_e4LO)H}O zqLReZDlhe)&0Wt8^?lSbq`0frf1c^nvP@abP3hX9Ih{W_`+e6vxAuOu{tTn?jUTpG zCA3scPFDnWG(C6`pFF)|!B5`yxrL|F=cL8>W`Y{t|9%`7iPM-b*FOFE^P^V$AQ};q0zpS$9{<03`SY8RS*Z`51->M> z#{3eIm>MTO%juD$qkiGN+-+*rMcXC!eVzJB^#!;c5yr)}nSFL+loCn0MDuKZb$UGm5JU0;m4NNv`am@FQq`V%%%63dsR2AeNf^k-xBwH4qMuNPG>10nSZZO=DSXqbz%4Z4!;xK#~xhc?F~D; z<-C>ctFB${I}@(=ux;x6v%q<|NwsRb%Z9si_-wY_n!LiOF*M`boQ26>Wbc{g2pZhe zJcl|z{lDp^Nf7^IZwJm&15u_S!m^UVQ9SJN(^RtVWR z=bf&bu!XMTj1qUpNgG-o{E2@O?>=GvXZQLJMkRMR+D>_g6;gB3qB<1RCM|Xj4mA@whf*N?PxYr~n>~irZ@0cZ19}MRM=`32Fj9y4f$Z zT_Hq---`LLP1>`)iO=5t{mJSeUB^0AN+u+B&5j6FjrZQFXBizg?yUBFut7(ZCHi?{ ziR#(hnoHbOTD(?o17^jEY>zk*rMP-=OR2crK?O+dW#nIxx2(xe2-E_cyz)ZH0dVaV zY-sMBbkDz2EmK&e_fLOS3#-2@{!D)(Bxthl;R?$+A0(FtuRCU97PYFd{D*Vv zbFBsL7mwb|P!hWA-)i*9jqC2-chS)@20uQh-Eg~Dmy&p-iZfL@w%aUlqvV6PKU*wR zj~`y$-mWepXFpro?3c!kk5aEzL`{;q7VsCGtNxfo$tyE5FyJpAsSrW3I&g^AdgxOC&09KP*3JuYinErmY|%gy#VUq0AW7pI)J@ZCAcetw#-W?ep7mMc%rLxviNVufa8;-?I7Fhn|MzQ&aA3cXIrx)Kn zrp8sar%Os}+LA8Q5J(SL(MamP3c(m6>I6`XrLEA3-(U|%$Gj911ERr!|$yZfhTws6U?5fP#bnW211NA@n z^XooWe73W@e~)p>2Eq1aij7BE7F`I{S?M8sgwOU}r*e}=-Sb%vhPBfLpUeu)e$mPP zdy&)5>VOqhi&Ce3JG*LSlIwA;O;$+}!5jSw-m%LrersQt{^UZyml+pJXI$j})A)ST zfgL8gvn?5gOUntWD^Z)h1PGt|jpNDuR zw(ZIIB0u*+#x>vHtL~=ut=QSa{r+BZqmI(`{LK%2)|PK_W~uJIU%5Oidsc|rhEKhE zvH^?TE01q*eelt*lJ7vS@39}RyNb87Mh866>1jS8+N@=&cXwHc()TZUZF>?NJGEBU zym}%!@%j8GQ?BrcJ^89KZK0<}P}N)THYCxj&6j-`85nZ#mW0%cMp*4N2^x)yLD86& zDZ2|a3bp!?q5;?4ZAPs}TAT7-ze`C5jb=Q6k7l@WDQ#}v%l`kN{h8lqAD;zhvlR)( ztcM+>yfal2UPWBn=rzG6WzI?Eri#MvT@ITMHwcMX@jjn*()#Li!LN=$__7G zGc&^do{JExtTapd!WYqdKQ#UpzTf?1LKO4-C}qLENQc(aL~FgTtW$NZEWg%BcAY%O zU$XU!r`n1C8}rR9mmiX=3UpC!dR!m-<1L4g@xCwJFI@NJ^uGIh;?%7arH1p4#-WE|>9uZ}8DC7f*4Y zXSsdhivA3?z?m)UOqSl67PRQvo47t3#bv5nat#0V{CIr*=9)_~Nvo`yMJ2i>2Ht~= zA5QykF&i|Zo{Bg2d?;^5y0``#!FQL#-rArwT}v3PRmQ$@pJl@q(=wkAM_hd%TRID`(^rb*7m=@zMQ?juYS)y#uW=@ zG%Zr-Z8Z@JNYy!YLQsW2=9ybN%g0OKR2!H4=2O)udwr}~`tB@s({4-N!)vy@tngp| z+Gtv+$c9BqouQK1EWY#kx9qDw|7K%u>qPgh3w^gX{8qlcFvj{S@8nx^+?XzGd2{0V zV_nAmznZSsJz#15c{;1x@Kot}E>HvV@9SMFl}?;_@i*Q@J0(?j$7biXx38Vu{BOdo zz|#wLit=MlwRZL{@LwLLZQHo}LEeMFhr85wxoo&S(?3_@`Q|-Zje)Ot)=penDJGqf zb|ltp#XrV^yF!MQdq2&e-R$e}$l9l=V`7U=k=KgSiJdb(TUUPSnK5NTQNu`JhJ0+sNSA!Hf(H1$2l^W2DGD=zqvSRj|_iuqt#dG`9gf4`n? zm7l*ppMfvH!y$0O5ho$TB`G?mP6!?0mwnda&T{e5H_^r=m1e3MC0V}~3*VDm9y0OQOFEadBXBtflK9Q{2Y7v&YM$p9OUU>CA=FM)?BwO@C*~LO@-|@=MF8b|MrTm zm^&?P&UdyeT(iwm7Z$$`(DTXpVQaN9>K)e|)$*F@T-ReSsy5yImXj5`f5x*=jxR~o z34Fd+O(Ww?o!)JzOXWM@8+_!)SFd7o_SqATluNJ+D)U7?X$g3(By9M+tmuiPpr%^t z$9a~Oj$d9bw=%xx>N3YanX_xblGZTD*}jjM>~|23OiBlc9rIE=U0fZZql*FXre##H zFY~=U9CE7^y!UQfktt;u6`%udS>6G)EVXxnTb7`+;PX~0tPr2uczjRdv$G$-QMgzZ*SnWSjMzRcD}&sw5=as$l5Lb^u_YF z(Tl}N+h!MBG?4OLv+yH$Sdm?EmV`7T1H)CkU2ZCrl_BN%X_>_t&`1e{Mv9tmRJ7^A zW^w+ecC8aZ>qVFLYKC!liGoI}X6JE8-&~^$Y43w$B~au__qhWG`7XH-_!RI|U8%?dv(#DD+z%{8ec_htpP4u6#z1e)`V{k;!)#NMA`z zzS`)1;dH2z`_H*O&jhtgj%7*}R;~WDvSa5Wbw`UQ6CeGWa=u#U(#~1=l9yhWUpl9* zdGOZzr&aM@>zaB*S@k*i{;Pg(<&e5xa6@KE&Z&%JDNgNCoHMtu+lNFbMt{-RVXK|72lg{rq<~AH?ehJ&y3;ti)P&T-;d`?>i?;LY8Ss}=P_y_WTHMcLirX+E>0 zW{zz}q{qbDk{?&9*qPsS@;&ikvWDD5lNA4z7DAWOmfa}Ykj?&^$?!^e&LY#98ET*A z6t(@We^@W$oP6~7-G?DMEb}?%ewt|NwfyhH^}0&eZR;fB=kzXD$u&~Uy}DNE@_x@b z)7HQI`_m}rQ1Sk_uAM6uyxR2s4jWTA9h?2V=hEf!?88s_yz(quWKG*S zF1oxG230*pD{lr0FfuS4#Tx@e9TA4!n1^J8wbNfl3x|swyU%^F({RC}MHyFbM5SK# z2w0UADzs?PqGROeb6aEyvw|s8<{NBuybAEr{FTRf9!$W`ZX^M8Tax$j-OE@_>+gcLU`*s@eD*MTl zCtYdPvN2&6t+>I;E;sSRik9PNP99gad3b1Yh1a3WLh}j}_2y0eFo)Yz!tn3>@`tQ@ zG#;voiz&T3a#}6E@KNaGFEzf0UJKou@L^d)`h5Ee2UEWC(ly!Ff7QN@`n&3)91rWC z#=V8E+^uEYJFHE8FER&OP7H{65q;C~taQyyN1=P?K7Lwz{%e(c!o;_tw=SN0^V0MO zvyk7DLXW4$viHtDH<);;q{2Vp;1cI;|9;=R#`AHq<+YNh!FQx?-&*V@5_gQBC1&zJ zAv=*7sr|dHzq9VPniYNB1AerdhOkH7_YX8q}0_s20mY?m*e zwBcOV|2hFP4OJCRUOXXJ=^?n{o~?%b#`=AX8=54_@_o_1jIHl+Q?Mhq0ylT-cP%ve%Ips9ME!6HrQ5G`9~b6F$oEPc z<{NdmO^c8;dh%hSp5;Ad`L3Y*qBe42kJ_Xz3*Fh>nbNjaWy9We6T)tBt=-RUo!vO; z$MvIo{a$^4v1wXIk*NvS53V$g9X#g0K6Xp+wN4FpL-B) zUUxV$_>s)i&1Jz0)|`KTOyXE&q+0IDXxBsU^X439ZES7b9+Pk`B_@kEFXo79W9rPp z$=rU$dwRTu*6k=1z0UG1{r>rXiKe&KzgW{3D5slNk;E*QY_hK6&W=8NmLpk>&*oIu z8LX*zT=izgsfhRI91KcTgZh`L|DU?)?ZO?WUghhYPLEyids(pl|Nq;QH!iBYH&0dI zZ0$|165mLZ`@46lRAuJhzVyO(-+b0GvBlH(-bgxX6c)85;+K)Rf8?20Q7mSn!MzRj zryj1H*YSReQhCavR-qe#llE?1!sO~TlXupEZAzhU>ei)HKheG`_p>X0?%kMaE-Q`- zX}wx?b8R+fNQA%PdAC)DdT~o$c-1Ujal}0E3trxxk(UV$TvAjtjcS*3O@Q zHX?Su{r)`Bz07Z(^48v1B3ZyosYO@xx8t12`Wf1S%QXQ_atd zZI~0l_2!e~X9@9i`y;i{Q_m}=pUTU;y@5xrjwR1kQs$WAANE4dA)Ypv4?xS zx*JZtFXAv~Tbpq0{Cnk&TSDpT=oXfmfsL*o~d5XNC19UUOqlPs?AkVy%Y1Ra=(qR?*}Y``Rp*f1fey z%dGUN$JK8}eT~_D=4C-hs9u+s#3_w1=QDa?Pfx_;YedHNhTi+L`pjm9$O{r#{)w%b zJ3CtUK8^^fJuM-ouG_tO`iE>D@3Rx`lrAyr)?8Jyk}2!Q&bj;l9~8QCOnb+i&~*yo zlS)%;Z#tMw@_nLJWcpI|`h>Gf`g0VoPkMbK>=R#+?aszK9@{3)K4E?G>=Usf?VEnT zPBPqdWILJrq^yYjrsq4A@`<}o>J{;W?jyYCS~gj6Q~RFTcl_lP-YZt0Y)+A{)UTAU zwExMl>_0oGs*-G)Fxicbfgw+X0nbJ)qOSf4E-6Y)%!OVV=9H6P4r;c=BQE5g8hF}^ z*-*rG`})k|nX>W^qDn3bnqHV1Aowz1;Uhnd64l2h+b(7rsVu&9zQ{BIJkQv}FR+xm z_~8WSca}TVA+z-dmo$p?bo0fn)c4sHmkYv9b;Z=v$ zUESOByf9@`%jSslmwh(Qv^CSQdHq#L^nR<-+#+9#m}}>rx_D@BxZ7`j$mh5G9cS5I zCNqw^_LpwY*c`H&-SFA0x$S>X`+Uy$R(bW^_KQ?F;DRYjQ zS^2i5g#3zJ$ENdxv2MzYkBo~-67^(?PS~n{R{>u+&$r=S!pX+xi&~a(JDqNAp4Obo zzPjbs#0g5)YEy0>YzW}I+96yvRc>>3ss7_gnVC8db*^nT3C_vt=iP1bwoDit@CCj% z;;)>08UYLVDoDUz;|0*a4K* zml$6A!Ek+1x7(CPJ(mC%DdmtmqFk|_KJ8Mz>4#Lf{_2D?a)UZ4_f{-Wh_w*sdtUT> z&hHA)l;DNK(^^Hj*ELIp$qHEU>6GZKiM*k(#ZP#uNP0`vb$LOl#(5rx8qIg>N^FGlbilJ-)#)K#F9DXxskfeztfZ0-^b}o|GnO% z&RpLjyX8mTRb{?=O&1^Li2J4;`1X&L6tXZfFwDc7%*hLFq!f-Nv>C;fG?aP;wVJw}7HW6C3|RcqXNJqd`A@YVC5yDE z$P(`7haSefn^P>G51Jw8+mM)evg!4Lwp8|(K4xxNZf&t^9BU`Ls2vHFnyXg5x8u~$+NyewSbeF}PJNngi{d9P6FM1#3D|EE!bAbRPxYr2t{f7nj zMw3TI9PF(VFMe5lnhzA*%Anxh2Mg{u|G~knEA{t!)A8E+4qc?+miA3M@a&z8$*jd@ zT9Dvg0}k#}$iaO~d!sWe!Qi$hs_Tbbn!C6Lr>3MLr*H5zZX$E8uiuin<|DIBx13a< zSXGe7#A6(y`K?a=LX+Klx9v_8ZvCg@&&Um4cePPYB(Ol9C;!IW$}_jGZ+|Y%V4D+_ z5nYfIvLUJY!p6jf;OWwZg_BOG*sF%@zSj}(IrL0R?NaqeZnh^fZ_84W7(s=6|-JGmKNZWwHFB-5sv0t|kj@7MosY zaK^NK^V0=)m!91!S?`fipM1{2>)Jn)Ge+k)*#8@;Roq>D->Am3%I1UH4Y$KO8*EZe zr5I*NZ)@K5vSICB){H$4sWA&)nQ>pavzh7Za{rUF4t|pM5*A-u4l2h#o-Hv0h4^y3 z37qT@M@r+^Lfl5P%Okm^>%qc+7oJI?GICe{A;mWVlvXAIyV(caw1+tL~PsOl_8^Ubkd*W>N<0kD>b6ViQz9d?g->J zn&p}}%|F7WYT7d|pR=WE>&{j0?L-9mV;8A|kp>T7L7v@m7%9lb>kLkqwqHKF;B6}? z$Q?53ll|houKiO11$i|%$WMcV{L1&X8!kve-n#2$L+@P63={X%5J-?;1_yZ;a*!*X zlFDIYWMIG_o3)%?A( z=gXNrSCVS^)18&M!wuTo8+#jNT{sMkB$8j8_VT-`uW?HMw2!CmrSC;$yn32mzGq6$ z>74M;4Pu;q=)?i8rIj|HKLvHqDHiJP4(^teEb%nzndsJoMe3BX=uP4$-`3sr%KR(G)BQIPE9lI zek*&xuuS5bgp9Q5n%fE`IR+&XW)j;t)^2uDJ8HS`-q*I4w)MxF3RZk+v0ouB39jl6 zCflCoI=cLs)$@N}6DF+sanpa3`$EpWp--Lsgfdwkh89TH6tm|>h~^0U{W~!)>7eo2 zxXBwY{5i(|j!SpZOaIx;r=Hx~Vy7D6eTQ?Y$SwcHHsY2KU&JqCSzo>T)mLxhZ_fE0 zwp-4;TBR^Kjjwr|<=e%X5*uzuH@IOWzC&@ zmn_a#`dR##u6gi%oPPD+Lp{eQ+8^PIN-GVW;A!0MczjOTMH8MI@6I|dw#-^ARJuNP z(Zjh@Gxq)Sx&{vNiVge0L4MQhr3MGVAon6Uk)y0ofb4M&a)!=rPlaweO3q47es$dS zgGNOL*QN*?j;;&q7`5e&I2}#)X)9a$uI;SWm-I?44e*VzZZ;g3nvFlqNW3>Y@!s+0 zudN&8wmEN65?I8sI)Y!Y{f3H(|J1N|Jpv_@3>PZ;9&9;sqjQJ3zt#Nbkx$cfimdhL z3a(N2Dpt*V68J0jSccM?#O{KB?q4Tt)>vB^#u{Cyd3oaIIksM*emCF6^IwX7x@>WG zUA%bv-p7qab-Ib^Hx=Zv&W4@awCYh;!H4z5EqTwgZbt9#R6m^3V{5X)_l>T9vpxAU0|P@9-qcOpj2CiK4kf6e zi$So4^ucELgU-PdL|^&}-cn6C+8nW>qUYp=byx0ghy=CjTE+e_{?jN_mScH&P_p6- z&-=3m?;jWcn#b%cH-1DE; z6d8-{oICv-$2H-lJB7+OO|P47IEy3uhVlvfRmDk4ESLZRZf;=779f7dR}-2y2_vZs~p|HQz+P=Pm~i5sj( z4rrtVZ0pVJC{X+O=p0M^KyUAZO5z;dll(k4FX@QTWYIZ)TEP6s-Q@2)PtuoiL6UFG z1`ZFd^aqB_@Av-v@vH7XOF{2uiM1>(DhCz&l9w3zah#1#_BB;;xtrsZkztO;!q#r8^;IA^cHBEC?N4AA(%-_JX++j=0y^T}Xzx(oH{p_2q+ZV8lCON%0`62bA<4a$GsyWxXeRGUYpAq{JY0Jr0+aRxc zw#y};QeWm=V>SQxd1uT1axUmEZcO8Gl6fql&eVB8a$()_UcL5~6_@7r_9Jvc2Ser!*AE06(8GF@Xh!9&6A#1 zv!?Z3^7hcCqu9VzLInm=}fBI?ztNnp~A!9p-DSBsG58J9dS9$*I>)W5K z4(z-6%w#I`yfStvY>BbRu)I;S!FR=6Z`IA*PCI3LIHm^pvpkHLt-1R$f0uscl(gc5 zJ0jI)rg86{yXnKK>$9`v+KqOKw-xMqw<92U<(dSE(fk%5w`3 z3N4m@>LO7l`>lPZ;KfIuR~^n@9R0h+*y*$QcQ!9h;d6^kL^U5iiGS9zpmwv~$^Jce z9SsiIWtH_DRf;z2cfG!eIV6|;jqF;7$D&@3Wm5OgTl^^g*$TT_&uuzl^8;u6$k+p( zH%*h@&QEw`h=PDeZc|_hc=(W<2v_XM8Ev!tX7kJpe38CWY6ECZWYRJAj!UgO3wE?W zne*h%o_)6a87vNNYc@q53%w?rBb1dMbn?v{$XMu=WJilDX@}l@X@0~lxAdluL7tfB zvYU7EmcMzn>Gs@AXvpt*wIe`y<(dS6(r zJoCqhE^dNjatVE>n(pnukV!M&SVYue-$>v^Zn$i6^o`FR(tqj`X{|dIu~CB_UuS|?)cv5s?D6b zy;tIX#oT7&&zJhg?{*VkpouD{2^pSzIf z%c=^=suda>hnkL;O26{3-h5__ll|#nN61`DmB5i^&OIs03!fNgi(}_uZDlZs+u`tgYVgb=Nwl-6^5JOD|g;Elbp44~>g^ z`7(X};%*Zs#~FVX-Mzj>>b>0AIeV?HUw(b9cc24Ux|y(A!^~seKJ(vAAL}RX zZodbfyRu<$Onkt=zz~5q`I0`k3<^c>U`Jy}vxB?=jJ*WLg8mxZXGnja;GP_AFdse~ zG$S$NEWY8OM#&>54m2iws(AKvshH(+6*2MUV#Y=RYU_6V+;#P88`NNCCQ>5anR z?%mvjOA4PeFfgRx4N#&kQ9zy>frR7I2+j)OoOa zPTkoGe9i(BthRVw|CGf2WUA6yUcdKddvBX8RNs<$>2j`9)MPfxBb@G+oo36uoICI3 z#AV-Wr$2i!`>NM8U1=Sr`On{;+w*;YaoY2jAD_$H@h+IR&2po(vyh)hg~OreDmEGq zQw*IvIuj#!_&Xm?k&v5a@TjH7{mALXert}t6q<7|@?+Jx#`D%6CH5(_>3dncKftQK zuSMUxBIZ!|oPy*NjqAC7nHtvI?YvoWs4?H;$1>*oMGtQKReWe^dGGOK9rJzR1O8SY zYSpK8+?2O?c$k0g55YQ}dGkaL`ycr*MWXIii>$r&!Sf%v)#n}4SG9S3VEvqo1Hwr^ zuM5>FKiuxO=J5MD8y;>k`1_sjkK-Zvxi>l#4gZ{MwC8TwFYe~%yQ8TM&Z{8xV%$$8##qpbMc4Dnk|6>)3!Cx;l>q{d{%jOu3=dnG3A8YhFrcY>*JIs-mQp<+#jaYC>*rNb7@_x3!l@` zbJMm-D^>Yt6c=y4c6Gxd)kW{QOgut-W>}_mE;Y{fYdTt?p(w&0eS22^y^SkdH>Pe& z`@ZnTKaWkv=gf4QaZRXK_S8(RrztWS8L=>#C8N%e^vom8Ica+b5i#*Xk@* zP1v)mXv>oHQ^i}CEKhrq<>?>VljZ4u#$;=Uxzox^>s=OkrHAkyy;?Bo!L99Y8P5M) z+;#1(`J>w|8`_mW%9%Pw?9!d~;#>K#Ut2ynM0mamyejXqoPtW_ zrSm^eIdSMsn;yBq@|LW(fx_$urwTjY_GH{WwEU}}?xK8^AA5p}wIcRTU#%nXI*9Y? zCvj2Qg+{aic`$wt!lzNpQyc=+jXjQQ9)*COK33T zIpYtK>u#2~d^@sRWG?gT5AU)$*?OA_r27Aa%RZTGG`soQjb$CnTvGSUeI~F@YI`Q*F-sJWIgn6a9`HC#bepgkfWmZQqyz(e*Bir zy~SgT%d(|g&TO$gE8OFDHBa@{oEPt2hnm{Dr(FACmH)EaW%rSV5prQ$Qg^A}6z@MS zv}^fvbGF$JmS)YY2|3L6SkLbC?c|$tH&pnnxs|+dUqS!Q8H+C@`c+2UxV&8UN>cll zr+Ypg=O|WH?Fl}3=2Av4>()9|sh5wI%J_)yuljaeNKQ5QR!*kw)ek4%T}(RE-l69w z+pKPR;q*>#mqT))!nY(Ezv`d%zS_9qRlj=DU%|e%dhZ3jpU-8btXlk3=x1uwLB|DC zL-a3eO~ zmA2g}w_L7od{<)o%|I=^=n8}6_Xo;*t}m-ucWO)I57%>)ZSDo^yMC7sM=E`{>Q8-8r65>pIjorSkmeGc-R5wGqvhd;UL9I;#@k3SV8)%6@0m`oyB$u(?fuCYDbb@?T$*Tf zliPOTMuU@gcH1vpY4Ff6*XiJ;WGk*iyACZWp4Hz}?y$^%=OzpGIG;Jp`da70Rcx0n z-*w4?eVxg<%!5jWqB^H{M+xnjJoijy$DMAwa@jw=pZ(TW3a;7qt|a?W%B^LsKhrKx z-Mdoi0MD)puI{Cgv^~Eqq=hKm+jl$-nv-Xpf7k(Z{H2KZ|*$4KgHjloN+cOAz$Wh z+Ha2)b3N{=JXNm~P4N78s6g!$i`aRsM|uJYne#Sx+qt{!&C>d7k*;LU_I6F{`sV3> zuZ6$8s2r%*VWRmulyB9}TCVVi6FIjXKN5cDQ1q3JtN{*Bx?K1Cy1aK!?_-riPv+Oi zKUZ9$+GYB6!#$$~t35Z0=grym_N!hyUb))iw^--T@=eKAR-V2yuVug4 z^25-5kL%Wwf5%EEO7E@QZ`XVO!E~;oUkh%nQ=9CyU8|1G>&T%$NmVwt+`A|D{$>q5 z?$okDy2WD8fnhT2X|v?6#sCPO{&MZaAwe{?t)__~D|bNcX{)t1UZ)?#IltX8h>? z;9lONxco=kVma3}eCc&~w?gum$+d}%_2Tag9(vE5RB)>3PRwp$_cL3gir3!xuHbb( zd6t4^j46jU??;n|cWt~hw04Ibs*d=yw_?7gWp{JPku6J}i7XTL^DqCB^5A|y|C1GB zKCV+|Ze47Vwl3F{v1ZNYH%wwins)t`K6CW0J8RqzQ%(z-5oo-nw~ghpfcLZ_JMo1{ zS2p=^%IhRO;D4wmykp{hmJgGpuAdP}lRf-L@XR}j#@)#h#W7Pg&#Zm8U*s8Y^1qqF zk@~s|w5I(rcq}4maeaoxKB?ti}bt8`nJC9X*qU9550WnGN4OV$mZ8gAcSy8dJ;-;&}d41ifJxzk`SAt4H7U!@02doL;IY`>ZLp>_EkvwPu( zp8Gh)9#;*Se(0Hx>RQXktJggBhz#cVwIl45-v)c*itfoyR z?oV(2l$0I6@x#7-Lf}iCZ5viSP>AUb3%ufVGAwY9de4OEAHwn^?jCz9^iKEeyBVrB z_u3ynYl}N`isj9k$~noaPq?1FQ<=B=smQjQ54Z8nbU$6YZP3H+db>rmQWtwFd^f>3AjJkC0ar)+ICLd>SNO`$u@r<|0Pej)F zN0)Hz_P8;rcAL#330udX76sA{-)B4Ut~qh8gpqk_|8}Ep!}k?>hj{90IPLG9-g)!1 z{8s55r>th&J5eHkdAd=pyE8k-%fig{xeiK z^_b+(j7RxO$1WR9Fz-B8w`2M9d6%DCp5OcY%klI2_ZfVYl^02KGG0HtLva!7VZo9_ zmjk|niYj}ahDn?>aC2Q^pq3ER(!zOuricRf4532K?XE6{Itft+WZN#x$$Rn6##zDg zSCit76fukD6TH6W71Nw}R-fD|yL8bBzVOrA-d#&M{%F;nh$}vy;-=5j+!pjmZ+r2U zxpq@$eUAIFEJ@@{&@E+w@KsvdWA2*BwEbhArGDqZwnv|oRk(Up-2ENrs+L^hd21OS zcz=!dwc^y>Cs^-%Z9V7p!cqV570-?}fq`9B4|OgD2J&=Er`^$vo|d_LkAQuA>Yu5Z z$ESxE6}~PoUniTP(BawtdtS@$iUS58op!GcG3rt1DzmNrQq74o5}SJy?Z zt1P&6^He93P1lx|N}IG7pESF=7M?tw!t>|eT^;FlagW>`Ik_WJA`EhU@0p!$iwYJ! zu3J>;{&Z97Y|*_3aw|)JzKr~McDB*m#Qj;C*%S7MgvhjCo_qE$ztY@;VarzjJ>;GK zBGYWidcEhjb}jt5S9H_g=2VG2E4U?<*w*iwIqUV+JG1Vbs<^)`^UhhRzSR<1U+cfg zv=v+YU*+7q%ieYJe9)-@ zl>PSub(V|$r@x&3aA@xoIR$OA3zPa;Uva$qX~|qC7t69X+~5XFwRhZvH(n-xO!rLt z)p70p3lCF)Q`Z%1l=yB*-gdPR>+GC=ahu(}hAHx^7uSl*z8AQgp)hOy4cBzpje9?S zXR&ILJaehP7D84i_aB*w>Vv?6$Ox@_ z%@^B+EfzmWW=$8iSgzFfSu1IW!dvmDuO`LBhJEPls*@<%u_(doXhO2_+yhrx)~(#p z=P!C@#f+nKWQw$cW=wx}UgU|W&I*aPl}RkmMRl|yk`h#_eA@119xpwV&9m{#kKDE& zbG9o=ggm^}r|n~v6yc+P_u=h394%X)T0dMT7}An@W=c+f+3csG?>=whXpL9+d_{X5 z>rR2}J9j^v3KmLOAW-!BozeO`PhP8bn(R;R^m$xr0UPq z3v)SHf{%oRJSYnJ*3}j`=gJ4Wk~YJi-}(}N?w)!fd&-1pg(bBwjpy9tPug{R&y$>z zq^+0JPCOU;;&po6?cOK0@!yZ0kM7fFn)`aL$1ndUiYv=C>JFr;%zXP?D(quxo9PQF zuA)-m?Gk#``*PP*N3YwO{ZT=uGfXyjOT(&4N0)u6*9xTLje7R{3p1%{RdV*vYizr@ zvt#S}kGzL7%nyCL>R^-oL+pO$k2t=?KO7JJJyBrMq+NL3EbdX}lh)GQ)4X#xWyohe zh)CaYFYuYHw}j~Z+ht}g`8v2r6-5szCwEDQa+ILsyaF8%!DceJ=w z+AOB(?~7j&efvF&mSm_4eayIJ^51v1=kD$gJVN)PFF17kowE8Rn_{`{smpJI3dQ;U zHSbs{c2a0-XPCam=Yq>KN^>srw(9;_<~}cE&bxOP?q;2O zW#VS8Q4XE6;t_|f`^nAA+sap2l<}X`{%Gaab@-#!y|oX2EIxUk^M_Ji;C{)xv~r=3 z&o79kwEbIF>*F}>8kgDu5g)tb3z{xJsdP4S+5F^_)-T9Sc#a?UTTEqUU~pllZ4DU= z-RrtEG&lIRn?T(;i4>8ENz9oCGL=4ElK8B&z(IO}=K7^d4xE0McD;A9YYB?JB-FWjG!xm!J_y(#$A6}h)Bzva!pTl=o;>+$*f|FIO{=xGxl;6~^}U4OLEW>Qo7cr;%!tpIx~H7H-Q(NqnZaU> z$9;1*X6!V%t)DBsFYuA#_u?h)0yoaRu-NPZQk^J zXWa?ztZbvJw%5bMi@H}`zp(0>VJM5?v4Znob#t%lT0dKu$&xrRds+R9)^%a`pZ;oe zd#3+0D*J`#8-?QrA6^{}`oPiuQfZ>Cb55pZ(sxd~q#aiu8O`~kq_kW(@PpweE<3?T z!HRhgj30h0ZkxxkFvDV6S<}SE>9^)?627H+FDB#z>%No-i^=bUCuh%lFL#6WUG{5j z{&Syh`1~xJ(z(dmBwkO-@xaSzXaCE)v`q|`btp+#ej;7M=DU;em#f{nj}*m!ZA*47 zot$wegl$>y(%%;~4P$<9Z(1yt;2vr}Jx zRdv@yrTmc3nmbAHN$xAD-fICyhiY?AZYxoLBKG~YwVWJ(HqYvr*M93Q5Cj|qYqy^gr-<@nR^tj*hT42A$jEra%_RMKZCSJTTZ*9}xkoyI~+h3jL&RA?e z!B;)`2j9sOqrUfw%Xf?K$-fxttTR7rwNl*_UwieAiO*jMNbqb|o)ZzD-cr_X=gaig zOV)RtAtSKv0L66y=>F2$Thw?*Xv)?m1`Niwm&CwRlR(<__>$p`tX9Ul0ln4O0j+V`;qHX zXpFVg--$Bk9~hcW`d7teE?CbPdMMy~yhzII7M;D`5^R$VJ~2&K?YZO^yToO2LWS7e zdS*}q`p(xMn^rS3FwDbSJa|#sfOgGsPs~lsfwvXHr9%bk^gM5F(3!FWeQc0n8u`(x%%VZO)=Bg&c3^2cfo=AkIMb`-zrx5IHPz?-N)wrE8XYruFTB5 zl+}OoX7%%PbLXZ%n>qLA=k@V*tOcUex~3=aJYZUr>7iAQ?6Snf^vl^s;& z?Uk=x;eJ$sXJ<^f!Rn+Pl{35(?OLU^?j5b>5)08u^3-D$mDKV6`kSkZD=ehvP>5lh zBF#^$wd5(Y zcZl-w?@n#SzBd+qa5|ky)Yu;;_BSJdFIXEnQaB`zq4%QC|y^s z{4#!W>ymql{}rdtOW7iyapOq4)V2lL8lEr3@{G^?Zp_X3T|KWf`4_D~F>PvO*$^OAJKl_K1 z-s2xZNp(jHtd5oJOqcFAH2dbUd+T#oKi3jH(}EmhkzGRjvN;z^{rG*ZkE7@6p|kHM zm3*4}V#&gpaxbUF$h9@uE!z42@zj02%R?2{)%A02SyBDW{B*&xtMP{NOEn5?tn)R(iOc?7wBUTmwPWpm3^O!oE{ zrNr(9sewy`(yFDuT$?qi@$`A)e^0oz9M^UmJTXh1nc4oOBIt^Oc*Z~GD;Y&r6Q?N5 zY!h9({=!S0my&O@*6~gAmRb1T?umXUXUrn&%*_t(RWj$F`rmityF`{kq~H7%i~l?R zGgmPyx@@Z9?s2lVLFUP_z6JOC4dZhk%{`R8(OaqgU!>2r1N9E}eiz=E7(}ddjz0aD zgI|6*Z?V_#uER2$(8H2d=O(4b%j#b# zcqe!1`efdosqT|a_e323$$r^h=!5BG;$NtJqW6#Q^Oh!?lU&OVi1^qa z+0b-4r83yaW%rXJIcCU}h??!MZ_Z_AV2EYM*Jkjhv`}#O4-PRlF*Jad3Zc2hm)!*F z^vaanH5x7Us5CY>R~E)iby#4+*QnAGQmK4IbFJo<#V6X8vb^P9&dID3H2!<#TuBbw z`2*&5A7)Fum?v{vWcDN<)5Ujp-`;z-x-9?uz1oVeQU^@`tV$9{<~o)jWR|JyR9k*s)Ms^op_;mR(hkYP+qLo@TC*B+1!<)fMo+Tze7EAo!B|ms1N~Al z5gn}^%NOx`YyDc<{hMoF`imK*G45v!T_zpwmsr#tH_dp(ovpIdrB#w5JlENpfA_I{ z5O%Tr$UZrd9ZSzY&*@Lw{nPid`RAAdd*9P5&xc$tI^{nU=;NJ+ zh3j9X&D?#*oOOM)(#5AwKBO<3CCjGSwr-2T+WXhe9@@5Z@?()50y6{;#a=9s6PHl? zpL?R<`Blplg-`Qex_y25ay8-BSsIDq4=2p! ztZWEvvpm23tL*w0QNO22cF0`Ut>3R;^Vi|(XXd?WD;o25s$JR8R>~_~u^>^HUy^N~ zObTzbhw+iDXA-x>RxP}7jGw3Kvgf?$J+m$>WA^CbS?T;nJ_ z9O{>$SgEWXJcHRZT`FdjFC^R=Ea9^Gp44rEnFX0+!oBPD&eN0 zTXTHt;jC954lgmD^LzcS#jgc8=4bi7F*0agb%&F?S|d{;e)aVocNbaY2NcRlYRW#I zaklj#+o2NOEF(AW0Nn(+RlF`IKdG5ciMoDbc2anJLC#^(JJ0?#9y_cxd-?0hIcv+O zgi6laee#)u%sx9OVPW^o^@-f79ItISd}cRQY-;;)c}8N#y&lIC`b=uG6)v)zt?Dp- z^j0}_!+xh$4bAu^?(SXwldD>GL^(#Q$!RM8QoHg~?aJaXr!PW!@)Ez94XZjBwl{tA zk(A9=u6M5Nz8CmtW0|Gq!q2X`agAPH$1^gwu;kj_6MbLT`B?g~=$sQF7bZ(;EBe*z z|5ZP25qj*U(78PhHEL0g^~>y|4mn7s-|zYFd2jj08M_?hd)H0)-`%nAI4f&-fBg{) zC9X*(VFoR{z24ECn67C9;_r7;5q6ad%4dIB3rSG=Jk9 zI#a+HIurZW{byCD(c_*PlaJy43P(>ba?O3Rq9G)yv+2@pygSK zbNO>grjr-Nc@C;>J|O9mm$B>MW|5=_-*s;_L|w~vL~SeGu4OG2{`Bagv`gv*=>g}++R?6h&NAL&)#X#1&^XHB3B}v z)X!d+S1kJV?5-r+@NL~O2V&!2tZ9+^V&pTo<%E>z(iP(8lw?JZPPl3C*ze{hpW9Dc zfBe*XyxzxpUTj=sPjvgc9oGaLB__-LwB`K%u_5un`R9rc6+Ij;Fehc4)cIL@{-L1r zq2F2IVQ*JGoz?sKT$taK2Zc*i&m=c4JpEilt4&Q_*yzLU-H~Q7dyn)t3CT5Ui2FuQ z-hOt|!m!Yzh21gt0(a)zOmo#Qh>nY`s|u_8yw0b3N8q+8rYAOn$IiB%{mZW+dnjy~ z=D$PL=`S+BEz#EpkDa|0-Sl@cXzWZ-Qi<(;sd4D_)jLghPW`wq_wtU}rZVA%AySQR zEP0+6{0p7TR$4zn?SJZoKZy&wuI+rRAtidH)p}7tf62)#87|ao$GTmgI>uen{rNeq8GDbEDL)?-xGuUF@}5^t02p3 z`Fj5a&NB|`>~-Y{=QL|O!1#+Lrdl)M1;eBU3)i$gpH5W$n$+=!3DhbMI1;M6f{B5F z74P5~#ly-$&PK4jQSC46DDXd*JI0dl$R`28t$VzqEskurX%Rc3q`FK(*vUlh`c}DV zyPv&N_z?Jq<3&Y(QVv}BQJMb=uKPJlKu|sPy+x3=$*h9RW=Baaz>PkAg zsNR`oa3bK@lbz=-817xMHe>awy!B6Gy+yrD=SozpxOq#ce5b89*QRw6Mm~pS6F;<9 z%UyohGW8*kk@@Dflasd`H4y!_Af)~E>1_|!P2F&;D6)HrxOcl?|BQ28tp3?)$D*V} zSgvkfw`{*p=1=!qPJRZyYhKyBmzws{z+`HM`p%QNXP^E)vE{1dJ4>e8JB;Z8hbBxH zJ9T73)8~w^0zO}!-1>8@&i@ntEZMo}Y0sI$S+)I=$I{kJ*gWTa^tRK+3nvE)Rps4O zOyYj}eapfeO^2oz!f|~XJGukgp51@$cTnO{iD%2<2i@v>eh5jVXV}U`6+NB6+@!QF zf$6)%E1Rx4X=zuP6HWeKS~lJHdc>pOv$@m?=Os>lrs?=Uw-@q+&VovP}EsR=&UdN>3B)_DTO8^6TOZE%Y4Oy!X>L_D5`R}}W_-CktE%M~w~FbZ=WkC= zWQu6XJ@B3FQFxnJ%o5wg#g`=Q&z`;L|6zZVP-k6Be1uq_nYfPrf~4EYJ3^e+A5G z<~btnyumwQ4b5-CvHn*aL~P5q8@vl*{lmm6%2K*raV3+#$Ca~Xn?-z8u6(e2=QnLq zp7*lWmibSa4L=@~f6#9H#B4FoE3{Nh+S#2J-FrSO9N@{Y5V8AD1Q4qtsw33qeK0tj>!0}dcSg___ZaA zA4MoAZhw0$Gp1%i)au$Jvr9KG6f`;65iGn(B_gwRyXUt47@LE^;@lA>A36G2ch8jl zd4Kcfk^;jEl@lfYrzHFdo;~-tbMoK64~o?#Q>R$T$!DxSzRX}-{tvNTC)Ol9{(m{| zq1*C}3xc0+`T9DnX4R5|>q4g{>}PdU?UY{5Q8hK?U*(!l@~$=4`>(2en-ki1PUQJY zw|>$u?#ZSPs_Yf-?P>PDQpX_t&uHG=4Pqx&38(K-y|%a4`^tLH zIo!u&HGGPjotU4VF_TR1(EF(OQLb>Bh5H=!d+K%yb}o;(KqUWBtIhZ>nJjC+B1%sUsGuhubqbuSXSd>7RUYq(^{Laoy>RW4sFuw2zz? zikmp$%j0D|d}lZt!c#ZxQazF_6gT}toBXUEy)!=z^%YeYvu7&qXklfXCirNZfU(mA zaoO%eS9ukusigdkn0B$xlC!PBRP{+pi{ZoLvW8JkH|i{eJ_&_MMg>=%e$+Pk#7B|C z7du^ZU86&TuSK0R44o}@_2S0tSxa?`+oPQ_I~M+2l=tGCYTL1Z_d3n_M|_IgV(*-I z!M6X<+!+%WO*MJjQuTZhPcEmsx2|v2&eykUrtO}m-f5}SE0OquYiHcmHEAhVT9RM7 zrJdMnJ;5|M$}Ft$t`OVdrCFONu1UM?y!T$$SxwEmk)I#QpG)(ZbvJIEuXEqpWfkWx z`W{}^DPB8AC|QETmT|&@1)3(}Z|5!*UM#HeO!C`Br@3o9w%#o+x%=gs#J9Gp?b%uu z&FPYSJEeE6bh|ENmlJvGR>{4SPh~GXx@B~@@bak@pVRJntX*ny`(#n*=3d8A6SLs8 z>Ibe#_+1G-R-Q%By&Sp=VmKx=#*VP=v6Si{;>pylbyCapX@(+_)pBKz~_@Q1*`S40Bc2V=N zEoDKpA@6V@#f5J@xHnmdorO09L<&UE&(KV9b)u}KJ--fI@yKl!@u zdAAtOxp!{atYCHj+R8fjd;iCrvPk2msHH{Q4!^5tJKVYQ;Es(?d6K#84ld_$FWcr3 z;Bv%3{MG!<#kE@%^!#g8U18dA6%P zcAK?6=%BB@i{^?gdmEQ0uo&**+4@xW?CYB*+a-48=U8{KUXHppXF=2Y4_lk^4g8`^ zOY*Mq9^RQ7qqA(stj%Xc=i00YcR#*8KKl2K7ZT3R0$z6vc04sY$oclnf5*iPr~fv+ zbN;%w`2B8u=ega9^-re-7j3_~VqT{--}!><6PI^9;uX&G?+uP@f0cbbzL(p5ZMmkN zUF^D5=U%;gp<6XqYpQ8(+~)YJ^P*&n7hgAEDTxlbn)=;Gi+A<9m%dpGrxfpc^k3uY z?&9K4j}k2;Z#k~qHSO+>Z`Zu%99%DbZq2l_!EUdF1Jw*>Z;k1b{xa{?`so+9EiJkl zbfa$hoxO!K?rm)Tl6c@wfAeLPzh8Xz&VCX(>+Q0@H>R!K3H*xxY8LIBy8Zp)&VP*` zg`_6An)pq5;O*9xF-vEmrQ|=(AjZ1NYAT6&gan5F!O2Rr#8wgem{{-%K8w? z=I7R*q7U3F-S#d`y+G>VtrL%2c_z=>&~ahXh8JCL9G~~cEqJY3qRRZc>&E{Tw*nlm z_|CoeO~u_Hsx9EOfbGQl7k=8_ig}%vDBEY__Wb+=xv;};)-`rcO{`ncuPEPJ#cA8L zpINW|$c2N)Ekce22fN(3ykA*DZ=td0dB#b+yp3C%q?b-#zj8>50WA z*-JL+-+8|2p4N@`wGGQ#)(ag95uM18`?Wisk$K){E>$~|H?M9s)rdZR`uUB<^tfb) z*mCavhkBkf-2yjjXZ#cgmFSz-3m2xdGB8}_!dIf(k=N-gR&jw%Ld^|(9WLxH@}HM8 zCt_N-fJlu=*R=^6g7RM*ZwYmnaXIovE&jGqB{_y?cVT(+h4$K8-yd)O$M{uy-etAt zCeK5DZ>1Q6!ELC1BsB5qEEe4cR>{~Mst@xRSS7nJu&z*CsG;06 zli^+GMUg{X2c`u~+HmH=MBSNc*WZ>*OqcxTtG~iK>&&Aqt8Qu=c84VgzwGp0wNkHW z_H3uzISb!zS(g1Rk}baCiBxm_r4xm1a_gR(&Yl0f%<23kufDQF%I1%G=4M8py*D?o zyZBX2qxH665lb#9*Oo+uH@9?GRM}12=IeXD-}?DB@t!qN9#;~tUrexgZEF@8pqpK@ zWG1t4>mJ9=*4@2%Cpw?%=--;PFxsT>rus?4wu>LM89D{FwB;Xj*AUd6V&cWVv@ub8 zt!ZJ;mfbPY#cjKfZBVt@6c~IkP$v1t%bW~1oqb84IWLEVr+JrcOqnbeF0Pr`Hnab% zw5sjyNuj#C4)Qf6q>x-Y;vlQ|}^I=r2KVX*{3fqeI8yA0Y?R zf5aRVZ;Fhc8(CDQJBi0xUv_8ErQF!gV?;Q9N_@JtrKM3{w5C;+!;-#2@xoR1Pmxi}I}X)XmsgI!jLPxc9HvyF1pmca^qIuy6}L{b=WeT#hn*^R*KU z_aE5&O~ZN9#kvzuzI)AjIZvqES^2OS|4P1=sP(gZ6J{^VSDGv3{p$6l=>Z>j_od$0 z{Ik>K;({AR3;)Tw?tWP3GijGP!(q+CYF&O4WEN%HtyS%q!@HlQaFzbb=Rb_5UVHP_ zqVPnd+<|Ma7l(KV?F;|VeB!=}PzkRTw{_elF3UV4p18Xc8g94kTyaa0)&7w>t9|k; zz0+1{CBgnVAL2{ertFUT zx|(fa@qh2>z0}(!s~v5ib8o}@mw~d|HeM@`Xqu(^>h+w-^Qx|ARefRG8pP$eF0X#Z zo%?&7ch;=XZ#5766t?y7>g5-gR8+j1dZlUVnb&P6R~|dL+H7mY6RW)r?6V8+YzWcz zR1(^d?JK$ahmqn{}Y_V_{&ds<`Zd?*GmK6Y<1I0@K^lzXHoLiZSo7I{%h$5l1o z^)$yip)VRUEnM|&4|_7nyPW2p^-FcmBm=#NTUv}0gwB;&#N1m`c+-2oNmRz0J^`Qm z%A2B(O$*)jszSY>CSh*LBVC^f^DG3Hsum_G+-m<9AG>IEC{IdLwDyf}XQ~4n?-b6x zS2$_%j8%?DvILwj?!WL~V(z(@j)hi2wSE8YE82cN^u_FeN|pit%k;ka$5KR{mFjNK z{SnwwW^?=;SJ_gf&@bs4S?e#VyUf2U`bP1Cx`a>Y#i^X{)+XFHK7V~V%N@Tre91Q? z&p-Go)vfp=?!u0Ccxqjm7q7$(zCeB_qv;SDKpwgA^GmOOV#Jl|v zv~pSEJ}+VVhG^FoEd?o+xy_G)kFD@t@~%$1X78m7R?^~}w|(Qv*Pg36cw<#?D$jS% zQzl(Zu};7Dg9_~@UQYr%Ss57S;4QSt?3fj+piB+U4SQKG6fW|AZ%fLF6d~R$jzZ16 zsSZ3F_0}G{m3FX0?TD1HYxZqUn?j|T2WKjJn`fKv-X8yz-yr_6rS6>Ib1T1P|6g(I zcNzod1paBoJMwqGFRw4J6#w`0`}zG0dm8Vj$Q#ZJMI}{%-6MujD#WCH&@60pxYF-?5Hww||aP@MEVw(Q&xGCrMy(dm^ zJeVe4e&pI5fzM2{`Aj7pb+`({ox*NJ2_^Y;RC4YTZ|l*!GiieGiSH^ijMxkxx2n2D zckB^AEfl6wbLPU#Q?u2szr88rZ^+{>nWnZY;mOx4QC?f$==AF?tGKf0aE6ZcO1+gg zPp?|3S2%n2qhlP-zaxFGzbWQfyRfm6?fj03&v*Pls6O&%>`s%Jaon^B6)yx-ba7Ndg?mhV;Tn^?9z`}L}a?+oAY@S0?4S+trEoxz(aNhwB`(OlKKgFWUA{%P(fdWy!or zA9n0pleYDX+F7Y`w@<%f??zl~-r4085VLq`>c^4`W?FpvLN+uVJEY`))0ro@RHR95 z|McrV-xpQHOWoX75wLdAimAV{kKEqGc$0c``cS;ik59$BUtj~(UGOc z+Vf z@rl`9**05w9hjY%&g7p^0Zsomtw`6v-R(8amcYBu2ExqNo)jaTw zsrQr%mFm({*{*-l+WPP9*WHiOpTxzTjr!P=H)D=gFVAU_?vmE0j$MbZ>7GyZHI=;O zv~t@X*>7*N^p2PQ+GusFC;4#LPNtJB*Y&>VzgZrC_wkqZ#*5Qusd?(3U0FT3raR2m zq-*oG0>L+$M~*8;MgFX44a+t0n{r{2&Z5#)EdEA8F1JfK-=6&NegfBrUC!=;MM)nr z80R*#YP`Ntb}ZPb{L=Qd9dFMov3|)BcqYgrJXdd4uRs=qu71YLi3MSYZVR3BtYG&! zw0kaJ=S8DV#b47eIVH!>NT}&w=u%_Nb>nA;j`)V`=3I+^y%txZt87$`8~B+Yxx3@W z;*S+6>{au3#F%Hit8a4P{KqE#%gl>IrS`Auo4PRW)o%{A7%ygbG-~^t%51J-x7MW3 z{h!wMOTz)82HCbfk-Y<8?xlS@F{@sN+Rlq zoAc(eovwT((%HQxdH#mzLkgjn0`CVf243nGGk7DkvT&dKtNSU*Qk_M*Ioj8=SHHi} z7QB`xTP0P>b>aF&kL^LFzQN?LK5eWF3`*Sin(EHvHq}w*ez%6*EWYd}@jv&Cg0l7m z3kMH{D*=4+ihifA3N1LxDlti-z=B8Db)&i4!D&4z?3Z>=xp&-q{weu@xWhiu#%FyN zuK&CER-N|g@HajSjlcGke|=l`eP{i@ueaYb#2w~0O6u^oP+#o(=6Py`p=x5(p)+ng zN{Wl+#Zx?XXzbJLRMkvoPGfzPx-n*ALFge<`5>cREK$?ZFz)hz}3@di)wE3Aa>o?&=YEWG9iN-|=)E|1uWu zLrTr|u_nIjZl7fGHwG2;W@hOkU%v!JZG9utue+r3%%ambX1Wx8yYTSgLhe;7pY1&B z>u7Xn!^4(k+21tT{55J?4_fD?SU9U+-#qKw`GV>o|I40jc}@?dlX+x4qkZqs4CCJX zDyGl6YL4=GOTXQxHt3pcU7)vWPa3oxyx?shq?f^eSAsh@ zMqGn~$ChQQLFWgvsY}mDJvDCAU07he%&D@hW8wXs7kX~om~__NH#pWyQ`BJ&h1Nvx zTrRV5wp@BP`%Z{KOCsy{!mtx@K_BM*sM^m{x8Q+u&5{SniHYS$4^=FZ;%?hF%UMsf zGkxCm*mv_xd=K*!O-y>SIw80(ip%a`AnW``j7Oi|dN6UJxk}Bl2a0kU7EOzJl=UZk z6ji_CboOqOWY$E@>F-|>7B&fpq_9MZooC5ioaM@Um`kcJ znq4wUKXM_@$!X6WC*Rl2N{d{yBB6H*s1E21*VeqZrlaM&XicNOFS1&tU$gw-mz0(HW-7+2 zMM`!DH*5{PuG*#RVz@AMXR7&v{PR||v0J!{3JzaA9PpVZa=m%aANv(fh5v0o@#x2| zHC$g4@$SmYIf)mye7fznb*&MLiT9HCnd-)nxq*M@Fc>h-~A?V;IS(=OQU?c!Y->ap^K{)e>*$(%*JpUfS& z992us@W{j*T-GR>Q`d9$_}5JY7JajHS)Qf*c({>p#lZ;H+qcct`J=^r6 z`(NWf_ZI~#$~j+oe6jph-}>IucJ?~coMW+O=A54{*vZs(h0jyAkQICH1k z|3z=U_dcxOrfqm1dH1=ndlmo2>Z>=uC+^oi%YVL^U zZ&JjaCx*=|n>fSF>>qeVpjhgW=^d;L3~D_13jQE+3x3do0L-m6#gKWKxgpWzx7-B& zU3*?SVMi{mGC1#5p^_YQ!|&0? zmh&uaYSThF{hcbb9xvJuF?oaDL&?JvDjiP0GdetzeOYQ%H&5e_JABRsNA(KY3iCvL zyX~LFT{C*I#KHWdWi7oQQOcJ7=5cFY zPtC1e?@}?{Yum!;%UnWicVd{=uGe~Jw)(~7g~(oBy;4temG{y` zzPsg5slO4|SP`~ED)rEWzW?me6F(Q!lt-TUtit}p*?h6?pWNN0#|$LrzrG$)zfc(mYfS=Xz1v0Hm)E!-W~xq4T2>Xl6|rB-d56&n>9w{XP@mT2#I zjtN_uWYSb~v@7~#Sq*)>7tGe5m_9?SE`C*8@al>(ZS%Ja+ArK@=D4tid2foCUq)Hh z$%5@!dpEq9zb4{ogreG+jMuyN2z-7sW83HVbEP+b|F-ktQr8{vhB;qb1d4z3hhEN< z>|!%Mx&3r<6@OP<%+$IJ*4;BgCpi5IVd{L*lNP#4PPE~5Dr@{>>9*|U+Rrt#@+4zi z{^~kkS$=X$Xzu3j&NH9m)b8B)zAgBg?Wq(6Zl2^tJsbI0znEP6wdjWVj;O*n%$pC$ zem(i>^1r^4be1y>#jnl==Zl=(wBzx9DZks+|BvfCA1PsV?Ehoazx&Ud1 zPTUjTn#Of;&Gb8R4ZicWkGl;!1?xw%P3^K%}&X?yS`O!oP`hc(RN@7RTd4_Ym2$rBd;JkgssrtY@y z!-!8Ur*EIw^4jj&x@v`@rJ*5hzEP=@7A2Yq{9^|-JhR$ogfOr$Fz|5TD}TryBldI+ zhL$y9FUy5PMgH$ymU`*smJ1B5T+a%qJu)2Oq#r-oXzO$z_Kbv!AcKQ9-`tr)p-|g%Fa3)CCP2DK$ zt|BuvQ2AQ2QP#&DEsu@FI%^lnSr<6DN&B7p@R-xFE+}XIqyn!s{--mVv=V*Xj3+r+ zsmjG1%H+(nKX)RdQEf~A=_Rk$$V*BJUpRVf!i1>>=lFw+9uB&3#_ zbEuM2Jf+1zRVQ}JN1l12ZSyC8*dwohB7)ENP`A^4Z=twpnk$s+_9$HoKl<3z9yFWS zvRzVYlI7(myJXLQQgQx1A#vH^WHKh@CF=RSO>nAEOo#dCboN9R>5{R(E!ZmJeP zyy)(%bvLUeY8Lh-^K4~y>oV4PSQT~oXI-BASCzn^5}{WXl8G5Tx3fOI*)Yp?QD5qg z$AYV?=UPI{P^;SPOD~(y@8tGHG zyciF2EjlYKQE0w%Tc3npZ(`(%#j}DB=GmMnm|wg=^5KaoXMg(!&y_lR^X44in3%Z< zHzKB*U%j-wjeT*u_Rp40<&sv<(%<#>=ad?$O)BnD&pn)SW5b3=OU~wA_h#j9w5jE< zZf#X$egBx5RX$1Ixxn$~jJ(e#=Atz%{jE3Dd0va9^nEV2T&KP>;ZMlH^c_nc6f>T= zBxJDhVv&+$RCRbB;^A{OOm?y9(p@)4X{c72TpwKU%pU zmu2zHzpq+m%}m_TbnJ$O>e}gwX4l&ncz(!SrmYzjru2@f<-#1Q$@8b8Wgjh?mR1bGIOTLa<$0PEn2b5 zd5fL4HgnY-I?q+-I7g~(nz~7D*_mk9$jdXXc;x;#@ZjL9#N=EBU6X>j%Y`nN=2>wR zT-yHk|BK`mg281|&EKq;tfk&&z4Fo>xhKoaR&tqiJO~apxnkbFD!)5u|Fq{Fiyb_x z%NZNpZoA#$TYa**Mr&Q{lXGtch09%hK76~=9ae5-xl8(7utUui?dwmcUT^d+aW6JX zj;J|TdDI|pL+_`QRE~^kD~{Cq@p(V4jJqgYa`)`gF6j?3erF>#ZpoW5Cu=g#>6Wxr zPg1RYf3-ee_1g5Oi^0y>b$r{ z`RwL-bydr|`{q?=T=!XRvHG=6!`+r2SGx|rmW^K=tGhN$(6p1O#@Y3X+AgjY(t1gP zf=edOQ~J|+?tZ}h_813eIWN|w8+|fAX>@Z(I8Aw{G)vf)mE}{!t+~fHNoPoDE>abY z2t05qI<|7nEH(aFgg%H~>3+kWHz-^*@pVRqdwoa(!|BiCL|l~eIH>wM+gm$r)JUiWO0nWvYO zt0bV4aChydCHy{)X95qtIK6S2+cigj*BikXZ+#WNwQj-1iE;W%tas-vep`O!{+f`> zHtuI9EPp1X!v0m*bqn_va~@$g>HOr&9_fO)opSMVv-6dwxVwMN4we(q;w+uKRXW0T zgPuQ26*tHIRTXjT%vGhi7~U8{So$> zSCea7x0)16imzS&PeuMptr{n<;@hZM?VF3g-K?&!u1}wDTmSFxZOMkh9ZGEl#vRd0 zY#&+U^SEd5Ci%HAe6EQU*w|t1Te3;zk+%wqPWJ=@{Reph+DcIyq>f01ujSsMu5{+^ zp&woc+B)=dKFx?`ddGc3?1O`ge*5oPr&Z$RKBc-J36*;mC~%*nLdPLB!=NwY=FH@b zIfg!m_a1%F&6jWdnbKbW#v&>^dZ^wsjj((Nb_ULPxj_+BWu%>&#xnCX1ORJ4nXY*`d zb@)tr$nlwSdYLk@)?0YZms_N)IFois?Cm_cm=E)pE%AD(wnC`w;*0tZPfghuSr^BY zOL291K0U?W29v#3mjg-!h7V&g4E?x zV_#pmQZ(z;4$0U+*vi?t!72>WdEHJuT`U-ak5?e+p@8v~8>7 z`yF%fP0Y2eUQ^ZjvR>?sYwv5RT$0vvh4u93*{M4UGv3X<_B~A{+OVU*{FYVUysjN# zDjWYkJJT7lyL#8NzE36JCC##eI&S>h?0i_y@>7{H$L)*CS-v7$i`=I>d!JA^XAm;q zYEgwwVj90?`K~I3hYZiGdslZ%OHkCim_0XzWB<-0T1H+`hl7M(hu(U3i+jGciIL{r zWqB6cyOxwx*_N1zPMmPmc;5{nnKK4Gch@hy(P^{s4f9piu2+}5&v#vUe&*8e=zSp% z=PlEYylrKqA)H$I@ZHmGx*n<~t8T8z3kp>JTA;V`RIFKS za{S7_vfmuH+pNFfAK$C^%ju$egTL@E@g@IF)@Dr2yzVz?BF_od4Z$Dg&wmy^=giN- z87lT-PXe6f_6eU)IAWaiW#z+Vi&HQA{yO&4p}+oevfWl-#Y;MtQu ztFO@apX8&P?+=FR)fUd*{#W$7rg6*cxJm)?ksHmK&Yd^TGkE07wgcZFpzB^ik1&*EZRHsuET&QaItcLV@dq`x*;Y zuNo)E7dNb{d%9f?&3zse_U)Umc%SvR4$X1mtcg%Aa zmj7?~C%81fEVVkzfBE&21O=?^AuxLv)*esxrs|7!1z7B`pQ+`LY6 z@68^^)rT*iemgPQSaaTHQ|Ij&4`&IgbE}rPg(-UcSfp39V*OWz!{;>*hzN1Dw)DEJ zPLL>EUt0RsJZ4r4@5F0U=Wu;Xn%|;(t}V^wcUtbf>{+kgWZXOVH22Y?S0=9K4U8{x zDz9Ij7Q8Aoy)tC$mvt{3a_*c~Z~5EAv-*rp@!P)G?q^3YPm#K{r~eLM>`m5ceiXi#aQAw2QBA>f9UB5`dl;R(PHjM)rF~sD;`&VdTH`KC$Dqnvc$F>E2Nx+ zqJoP0+U{%q*z53JXWn9w-AgAgI`UypllX@@O^H1oH>w1uYA3q4Ivn|$oE7G+|L{x0 zZoBpVFOL=4PMMv~(V4tOg@3v8wuc8|?`(BCc0_RACTmrmwGIMCKQHb{+x6Uq|Dwm% zqt2_|c?CW<&R@D`)z7=LC0=&Dp7*CtP~UUMCadBmg9+<*7Q8vl6?bqoSKQ&(Joy?G z!Y*~*0sk88wSEZS3;Vzqm-=IK#2?p#@pn~z&Tct-y2{Uf<;NeoHc2-WO`rU@W}0_U zn0um{ysOw!3su?cmuuQym6mMkKd@Z4|A-aS{hLc4m`z+HJ-xhh-=1l{#lcP=4s)h_Z!_J6*e*!jk*Ysu`h|aTr+y{Bo5;Lv+EVRqm!4znDt97Y z_DQa~r#R9sR%g-fO%_47S*aMkQDMhXm;{=dIXe$bp{<{$k%thjiq z^{QFx|L6Zv^6Nd`dCL8??n|M3qn$3_MJJq+5{uvVe&=`T+~kKs%fDRHxj6lsMX1$( zp%oQh!n~$D4f*)NYF7B>Fq_5FYRk=Bx>8ro{bF-!?Zods1zeY}Uj6g-?M&{SRhzS9 zzll6Pw@PbO)#N=2S)1m>>3i*`6!Pjq=sRnsx7$yjPmgh&Z`1rmR^wuQ)%r^>mf!zUv8=Eo z>~*GCb!o1vN4mnlt6k57D}UcVqIda^2dC*tr5b0|D{8m9S4itEw7dC@C4%wa<_rzT zWp9ruO%a^Fdau8gv;1XcvF6IK>|K^OX}hK5ji4h>pWouHxG(c?AN%)*b-!Lr zHt;&3yrOdYG+v%$9{D7RbPt0!<;R%MRR{2|Xi*L^?{*fSA z!CmuS=;m{l7kq8~T?H$uCDop=R-0LVTXO0f&*f9@pG#%^0yL~-8}Is+NV)FFv*|tE z`ba2mk0G~Fb;&ifnIXeSGmLR@1feX29f&g#lU_+w-Cs)1XoW$bdxuKcix7|ec z9#&i2A#fmvb4lBTYZ4tyzSE~T9C)yVFWYco=?k?doq`gc6H}(;{gi#npRxat<=VT! z^Dl3S|GoIuzKPQ%3@m+X`<`c}-P@Z#voinRuixA6Gx|K(*~5{h>XLee(^7pg!N7{MdOlBj@V%c`A2o51Z`CZ2R@$ z1Do^VIa43;gzuPX=JRhtwPEn`sUmM%+RYd9=yLjBE}w2v9eev!!TqW!K`xewFSzvI zW&EBs>*AR$vp&ci_VNF;7>vqJPw`wb2 zvTMnTb7_~v&Tjke_fV6~vTQ~1ZDXCukEVC8JFcnK7X9$Lg3w3vHuJ?!Ws}zk^1O}F z`?Nm#sA*e5#g9G9nhftGz4&g<P4c$FW zwr4n+moafa=E|`NE|7lA)7fB#a#3yRO^!U)^385SMnH@_{6zo1` zc;sxYZt@a8!H`Ouxu)g5uMhCtOl_UeaPdlMrPh*3P=N&73W z?VfOWek$*B4zcU^6n^XRXNntSKCLdAH&5}?{nI`NC!RPJZn5LTk#ynHj|)Fv>Gaq9 zA$4ElhuD418An78-#wmg{HSeS)VX=j0!`MRVRKHuTBfQQqIdcEpPLtVW?5g`=eXUu z)?|OdzNkA3y&8DVhTiwOW3uz{bOZHw*8kgQFWerorDXr=)d$w^^JZUiF8q{ZXnEhG zMeDCFxoKv;GPC#UE05>Xyp}r5Re2D4YS(75kctP9QLS^wyeZRZZ* zsJ2O$!*Wym{2H&Nc%`hGvsXIh+oONMXVi{rXZT#d>@#=G*(;}hyxwE+WdiTz&s+w- zg54JzI^4gan;DXM%`NDSsoSRnb%FhC7wf%lo1K;NI42S?{mkOJjSX#2Jmh-47f+mj zaZ2+SVYcbq8Gd34lMgK|Q*EENQATg_iG`;9+WKxq8P;n1%&N+N*L)T}a-(%ueMXf2 z!(7gCl|9UA5AVL-_w~Eiwe}aG>y>XxDfWGPFWB+qLgAUdzZEQ=wh`Ql_m0P267KkI zBHVGpgT2Xq(fWpjO)oOi152J>nCpJNka6$HZ>uX~ssnw+4zbrUt?Yb12XZa;PsdX@C8tUb+8*eumY`Wx3YQ)}f1J7x+5fjy%wC;?;wo z7Kyw+T?>VnwGK4!&(UK%?sY(Jp?_zl80W6aAP0q;|I+00=W@OJq&eyL49(Q-TT8xt zefu!^zS!Ylsnki2&J~#a=LQWd$(~TYw2g&0Ex~Tjs)llAPzgD$eyjPrZ`pb4YUGcUHqa8V^+^cVBpY>~vC{E6@5}A7`~(SKV`T zgU%cS-@F?OE%=RdvgE^#Uu`(rx$5R}X0br#<4y~cSFP+TnmxNI*WUT1?5u@1*(GBB zt+H!-v@D{%EwlQL<04 zh%Ik|PU4EM`VZG_*m&l#^8y<%QocJ1w4SFxUeFIyaYXLH?i>~AR--P8VE z^4gRAckf)fJM%*6!slz6ihndDCd-|+=G%VlykXR#b}qX^$9b;)WIgVFC~SfC6#*{O zfMZ9F#&T_2uh6w1@$(9YznpfW8Fs-1cAJ0A`P3yLQqve#^yOoeQN*F?TzUyj-*^|E zyH&;Nn~`>7Lq|>OiqnThO^$`ecAt4T=VVaZUC!hq9kv-i9$n_KE9~7i?WnSy^)qGD z&F$0l%?!>QE?axxzo_%=8Uee>{i-I$#i1hoZnt#b1@pR3u#!F3s<|4QyD$6$bKMk!l@FAvMEGH0$g z-R7Q_HGOi&=DBUN(zn-hzG;n|+wN3Sz1(%3O3jsuBH#PZ;-iAs@AfLTD%+xIA}_si z!j=<%7hgPB_37E9m;k>F=T&*zgOj(n&)IIE5w~Z7K`N{4w;8LJ6>koGY-QUj+-eiH zV!n9M?Vz9O)o+z7SjsGCeQsJmXTHXxx$@pCc8T^#8BPv9dpWq)d0&fFV1r&r!11n< z)Ze$+{+kx}-`Tr#!vCV(w|t~z1J^E`V|6nwz|}GT()NiO({t_^&)hNP%Zexy+;-t^bSQ>{|;?0{c^EZ{cruj7yWjRGD@Zt*#|dHs>-M=L#&zAkBAeDt7`?iI%?vs^_M z?CeO(?|t5;l4rxd^jNX5?zuy;bB~;zoO5a8w++QRPXybzpAlr)oV4w7y`j^YS+lq* z^b=Y)yw4YMyqqF6_3ymspdDX7^=ODk9PL@+C3U-?ge|}=DD`aohk4FBi>rHg#Kso0 z-t*SjHA6e?s*T~>NW`G&tm=RPSVY93~= zkW_tUk$0YHeamZmrQIqe9xtX`U{!k4?)gGxF=j@R91vsm2BUycv|JK z!@kK3n_M_&r!Xoh{GPXg_qUZqLE;RaM1?agGd)$-mENDeYw^}in+Rx)z(<2{iu zbDF-pm#DMp;gU8<#+jO%nSPku)>ka@bNG~^ci5)wXXPdZ1@6>|@nY;t9G?A7^>pYt z^Y!#4n@F(fq&P?Y_>ZM(3VUz*KT@ESgNMS{A2Z0|1FA>x^j9_lU5e!Ozl$_ zw)@yxGs)U;UPrpx<3E=+ZSdc;dh*r`$K=jk6-s8>(`HWWc;um5r>UE4Z0q%WZNG`D z)@$X?U8k1L46z9`KltxLYNnddT?6||8_w`586+2*T$|wNo;m-^N`E)yuf}|4yIwp9 zm}Yilk=@KY+s?lFJ`>re)YQQ$K1Qe-pAN8*6w`RR-kSt z8TQLQ=5+Nr&Dc;^IkvKb;zS?Lv>WQNvHGVcy%V2bqOEKF<r{JQ}^b4@T@cn4d1DDb4G`myYfq)+BHU#{CL*q+z{{$*IOwU7#n)m z>XO2>haTIykG;OTym!V1)yrW&R0XFjG5N8?o_*6!qgh#bCsgk0E}mM(zw7=&_10Op z<`##r^XpH^=(=(|dw+4->o31je3Fx#l`4}KEh+7s`oXBicX{$w)tM=rZJ+MTUsgS7 z`a1dI8H0N#mMvIP;hlN#%GIsXzMe**m;UK_1#R^0{Wv9idbWAr!llWo6Ti)M;XC(Z zq3!RKfaCu4w=S_BcJ6FD#-nB|c2i=CTPD}3&P|pYXNxAq`|+L9oWyy`;@~RnP5xT* z*6`@&d^Tv)&;M_5Ni}=&%HD}QZqY(qb`KF2Cz+uW9&EM%?u?5%6VK~RymP?jqv2~sKJk}X zD(v%@Wc&Th`#4p4{+qMwPa1s+*r67E_~9%W<$CVxPo#co#5^|NWEwL${mJ2i-bWW= z8{$t37Url=$baIcknqIZAzj&=$?pD!Fc)c;N zN-L>cIiJb4gym79mH5Wx6VErqxy@s&dd+jh&Ml9jtJLDrL$_}X?iuz+_U#hd=(1e# zn{koxh5IMwH!!-zF|xgqIpSy~|ItI)oUyrg57!i_ova#{OFN!gv1~kaLim7yY>!2V zzk^KL6LyECeQq{h>dJiPpUM+jCa!Oo=(din@7leN#XU9LJ!YR|433?6dmzGAs&LLk z>xPd}Efxn)*f(~%ZDXEX!u2RcS)V!Bq{AZAT-on(V@IglJH}O|43A1;n=B5WNIu}R z)_Km-cExjMpEw0BZS5%TiQzkA`bp2={E7I6pQkb-5}q(7EL`Unvt+ZNxb#os4KDo- zF{``%y}>ECc&7T+a-n@&z`vZq<^da##n1%>n|0L%4`@v@hQKbP%c$D=TGN4 zg?E=U3b#*OescaRl}B=G)yt%I_TNcOk^gC|ykF`4RklZVGK%kyA6AIo(spBQYzKRZ z*vDdBMLCmCB0Js1g{r?wJW^DySCK!LR&(S8xN0mME|7?}>`{Q=`NPcgP z-@kJws-L|7>hXxR#C2assms2WnX2*E9FJ)4>ZuU*@2TE!nkiH~-_ zRO~OPJ$hfI^O1k8%D+xgr@9qKkGNN4Jvlzh|Bv_MBkB=Lo-Dr+`Xs#~?#c5gx0;2I zJM;}tKM9xM{JHg<@;<{)`JbZKs{QLV72g+cB|Al4ynfr<4Kk~z#q3W0b4IjMPw>gD zDbKdwJMs9|qMvqU&#aHn%-?M)A6zaz-E`Nji9xl$SJ+KA;873d-g$g$hbQx^#f7_~ zi@$D=mV7n)=@ob7uaD*&sM+EspWU4F{PE$r!TlS!USy{Sc)$6ZZ9jYW@7p>{m@6(D z$S<`x5&6`^da2cotaVqO-Za{MZh>9a!lsp+&lbOGzs2kMb+7x^n?KurPkHya=Oss; zknG95Y#)1<{#YaBR$R4mFZT-D=PL@!PQI>qevz}x`K8M`^SLS0d;GSU9uj$1H}};U z%Uzgyn^k3*a-*hvKPceO`<+Yi`YlWZRbm9KUyXeP`_R@u` z<-`nwgKD-%e)P@P-WNXS$F`uFn^)w-`@i0ct2#f`P3{Y`n&8x z?HPt$vn<_}*L{k3d_=gkG<2=6!<74Vr}}SuzMkQ;V4u-)yQt#5!dKXqpREe#$tiL5 zYtoFJye=oR;NI;cQ<#6RUGO(%=Cp-!8T+N@{pVJ=`4DsFCQDd&i~PWbQoZ9x=9KV4;=`?CA$6V>IrO|E~wZ}!?gx;?ldG^}CP^PlfS&)0vq z{Ga>j&-Tlo?|(j5-+HcI-SWTghJTx%inF|!vg>$e+WNI;6%OdEw)gMr-(cZv_NnHV z1b4pn0qeO8+G`kW8{dD{*?fOBXWhe4KL4ASc)XA9^HJ!nxO&i7=kpr2wOi(=-u2?{ z`=;|_=H`UP%?SrKKM=jvR1@g%?Nir8aht}yFP{FMp0m`O+pkPaCPDWE*F2$^Y}FI9 zZd-k*J>PgOJ%3Z#QMoPoP9+Q0PUEX!y%+s0w@Jw6?BoZseofonR8D`dRr0{*d}Dkh z`>m{3w$TQQjKf#fB%DstD%cUaVC~6`b}_mi7tVdsUo`jsG|T^MxBW}b?c;sAs^@%+ z;J2OOA8He`Q+)K}gDzOdFPQKqrsv~xf0`uqn@=k!H149(KV2h{=V|4; zT)Dn`#Q9csKY2gRp}XW>=Ke?O*r>x9`&=9S^;XUiw^4Ga+22^qU4>?e-Ub?-RZqe81yX z&h#eRq^vs&o#q6E1mDQrUQ)m0tw)=v$hN*E9EEdwzPnx0iTv@{Lr!?Jt54<8#Ys_1 zj{lvs**WcT!a*^~=44jgq8m$+dN%I3!547)V)F7wfis$9cl=D+aA)qd%W=1k@+}c( z-?X|^#qs3Je_MIJrPgc4e!9(@(PX}$@!prOI_nQSS*UAXy!P^QwLNc>Wz~hF<+H`s ziABcP9Xa>-gzcr>%aXQ#i8R>a+9f~X@bUETr}8E$fAe4T@DIzr9}Dyi790OsW?ZLn{4$fMfq&+* zpQ^i`&#|qx{Qu|Q=daccI$?`C9u!JE4)k%DXejBX#>IJ4x~8%hivihG|0FV|gn;q{bT z6CX`l_^EyoZ++C<6~E%dP0w%8ofXoTcw#7ZVTGG|E!kg4qm0tIb*fw3GyT$ciZ{QV)OCCl(xBXl- zZr>YVUm$SR+uW#t@4KtQVYj%;(l{>Z5VO?*rbV-EO zOCIjVnDbf9iG~w?SDLb(o%5ehdTRrj3LrS8x7o8=_Fadt)T4d*wi$2x0|)IDM-oM7Ry$8V409#0vydrJ4z?kV0= zRTKCL9>~A(>!Q&qCI*I|Z1{4F2{AdwCD<{bD6=fFB-J~$5|USzhW(5e4j1@u*P)}6 z{qfN1Yr-ZnyRue`KIUB^_+F!H+g9&QEg3hC+~xIpf9dy@^3{9&s}oj-IZu`QcKx64 z-!GSE+In4O!{_FkB5uNu_S_+(;g4`tiLK1aObXYJGLrbT2JjfN7 zn!DbxBKDA^P(Y$ z?)qe$^t-!7Nb_;R4qt~i0yA#RGSZ1Qe&eS*^P>76!^NwX*8OdL-D0C_Q2V@aZG7-= zlilHWCv~**M)$u?^Kj^jj8a+a&iX1w$h$x7OpEOTwT@$NE-u=&bepT$`>Q@{&nvZM zo!xde?5v6KF3k;f>8E;D-(A@wDBF=WZSIw;j{{?UXRrL{;$wbwuk6~1qT1UtKAt@? z^~JdxyN*k}^H%qaI=ZW6;s$e$DeTf#tW0ZH&d|FcvS+Jq+M@W)U-@bkj`;AlUJ<*S zt|NQ@!opawJvS518ilQRDIDm1*07~_-ju@vT89Ko*)NrO`C98qu0ByX+3#2s-*%zv zZ_l2r=sNT2t?&%7oC06pEVr263GO`>mJ7R9Y+L5T)z{$jyG+?DuVbQh6R-RB9TnIA zGj-PrZto6mn8C+==F7``zS`D0qs6M8X}JdHSJ~b@{&j_HmW7j~=*F!tI%A`LHC&r} zMYEVytJ-w+bzUJ?9i4#Wmt}Potly>=6-NKA3$L(PCSA6ueUn1StSf~~uS;bjh4n)= zzxTUh(&OHL;0lwjNI=nfo%^kl))PZ+_xjAw%QCaIeKf&0wtMF*mSim zEi-r>HNTj9=iibLf8*7v4}&@9Uo5tAb-Yr``I$@g&B+@-l|*vbEp5Np%gt?Cdt=!G z;dYT6$JI^D7AqF;z7?_)j|h3B`ZMz^zvn^mGk;W@*GuFazs}^{RsG}3s;9ciDjGl7 zo{QFWzh@B>dwx^q=3XVIlPjeI=Ps>Z|A3u`^NhZvi~dT{m;;KO_M3jpSBY7oqIz}8 z%Qq8UvsZ-l{Qelca>vnDxBDe}$5mp23MB2lcPx6K)pp}UGS4QSHqk##9JcpAUNvQH zzqs@Pqs@v3iejG)Ojz%BcwLHANM0fsCeM6Z(Y~0Y2!;NH4d%yqI)J+gwK3@ z?`2_oz{7&o=7s5jNB1aC*qssYJKyR4k;FTuZWr|YFE|Q`EHI5x$Y3!&W3SnL(%c|b zBDnlw<}KbU@A6`19W9A>EfzC=G28S08Yj`+wxYT7)@FCzu(CdXZTIFGkM+LqIDMz4 zlc{>c^~n*=+SNO2PVMQID~cCU z?*-@iijPlan$G@rWK;2s0J|$C%%{sXUQ1Kg-4t;Ck;2^R*4s?2B_HL;`kXj=<*7lb zTv}uI%JYe@Y{-oYVdR;a~r*E4BTyafd|}=cPLj zH8Vf!#9lsPcy?Fz(&ya&1LoHk#B4h@`QD_-atmG`X{-ky75=HGZh03Q1B0XhzPgTx zyS!bzL3LeeQch+vysDcU{QfWko^x{A!i7g>?E2`cb>NYJ zgwHIs?95#K6O(SlO0Le#oFwNtdv)gIZ5MtoVbA5{4LXqf=!?gtFZ+HM|L^!W#sBuq zyHodYoSgCM^UccRXKL=BsW$#R@7}NTTf-T0j@zg5Jlw*=oF>ec=y~E}Lfc76warGa zCZ^wGpM8;i^2x(Sb}W-mwx`ZXeYjbtW?HNHV`U+^i62(99RKrUMNjCD89in-b0X(Y z*vQ&{n&n$di@(>8DLthXlTPwXHug!I{Xt~jv`(AH$2Zs2L>(#?vb)@J{!wLEed9&D z;~DeQKeeXKISf`PsdWB{4R?Luq3J0_pSQ@zPx~lZbG3i{#~-ijYMRd~sQ>!tJMX91 z_kCxJ`MrPe@z0xB$asJ12V2Se$N5!arhIU23=1|cF*RK!xon=Nd@mno$6lt>Y{r?F zgDziNG3!(&?`r-b)m;Y$rC^N=*>N$9&*_$b7ITH^HDQBu5Ej2 zC3@SY_kvIKPW_0x_oKw7Z#gY?KQ^`Ws!x9RnRhSVbsi~xtiH7+G|qO`yc0LFPCuG9 z%ffU~TK|g2nrH1cJb&X*?b z8k%^#L^3lq4kSQ!>_n8>_Wa%nuFt2W8ux{}n>m=3kf^e>#T#wve;4zB-T zHTx6WWb>JSq7Ft^cpSxY0KK%K#n~BThPwPo$E;Waj8!A0p{SL*8&N*~nWBuyX87=#@ zPdt!knrr^%#K{)1lTtG!ZC6T8-0S>%&xR7$kTjX2PY+#5@G{*g_Ez!067?M#h3?tv zt=m^wAAPvsvP{ve-z;t7y1Tt+rwW(-iJvy#uc!P{y<^;c$NgT&_S`*- z)#ep%{<(PLkBR?oJTM4-aw~gt&egMJHm^Em-WR@a*krxsW^dIe$EtN4EqU8cUVrO! zU1|DT-bZg9&yq?!vnRRRj%StZ;YoSF0@W+LC)bqb@A#?u_DK9q-p0e*AH53V{VX!M z;@%dMsy3728`3k^q(xNnZPxl2^LFN?6=|EJX4P=(dmh$2S9Zu{^`o^beue{#t z_K0D&RhNM5LZ(;i4qP{E|7G~f{K9pQ`5`U;xn{++eC~cYVfEgbC6U#=i)%$UF}x05 zKeJkH>fv=>{ks#=GaZj^ez1vYnze8DN5BnxXF6%QordAf)kl`b>Apc_P8l3e*leBho%6+ewpg#BIx#Wf0s#ho~S4Bm0-w2(jw_rPqd%vRi zy6Jq);oTc*7?WwH0^QLi~0PDjSa?L6|b#ByrjWuExUw`WW!n3S}hN1=nTJ0wfEx2sG zK~^@xVXgY&aHjv@^FHQju}%hE0#b-~>8=rxJ=x&Q^t{v}6+=ir*7|GybvrgTHf1)w zGPbZXHa<7Dy6bzM%=z=^%$}0_S0?rR5h-Kyb7PzPXHm)DC4VmMd2;H>kw=r}g#2Ce zB;;??qCcC?Ou3>|t1q5EJ>mF+Ghg;xQ4)1_V`Fn;lRIytaNJUT;|`0hGbTDJXm8XB zv{yIOkG*fNscpKmWujwug)ys0gPM_{1A{QL@q`pcCpNY+g=b8s44W#LWEeoBUeB5y zEStr^z;KQMU%SSdG@tvG=H$3!rl%H{K!RZEB=C*F$N!h}muR!H^EjHziCoDu(9*Eu z^_4i1va3hDTcs`hZdtJRuCmPc2A_?8Itj5ZK55q=f2tzyWxz#=%*(f{&;6bI{P)}6 z(-|9hZ9)y(R7D?01Z`NO)VI_mGjC}@G*|hPMW>f4OkdO`y5>}@XXC&)=lw{8_)5i7BVcazFMct`q-uGVgeHaa+&PquY`z z_vzj%d6m{461lhF*%`yw(+btMx1Ol$IT3sNQDer9_Z2UedBs)V-KOc`^Fs7x*hPM= zt64j;tIy|NFX@`Bt+l+9XC%$|o&HqHXvTssuhwUo@_sj5ohZ!z zWYXmi0{tR3*FLbM@_wEXwBhK6%1)D4w#O~Axtf2ip78VL!M)EE^CxEgIW0|`Pa)^`iVx?0D@<)|K9zsd8+@$;2Fa-K{+ z(Vi$3t{n7hLP|~16Xz0(=9@1Jq-B?N$xpOt{A8!J?qQXSPw)+izn3SSn5$4))AvLv zg^jbSF|c#ZljnXDW^1kW%pEO*mX&t}szTY=c`x*RCCHy94UMiFbP21i=s{1_nzOe2Lebw8WcIoM>cZ z0!g^Nf!^MS9R&UzJF>3#W8{0Kij1xe5_`6GEVTTwid`Yj=iul0( z#l3U#uN@u-B4_+eOW${M=G?2tZ(BDAxHH|B)ZKJbO`V#Nhc%eCU z28uf#YlXLLJ|*&LW0l_K%4xT%R;8pp+q`SiPQ58>*ZQnmY_O-}`n-PK5>7|yW|r&HQKfr1!@!Ux`ZPZ2o^; zDdy|@+f{#OW!#YSUzBKYkkjfV@q^C6Ek~Q;w30IT z>h3bJ_8UezElD|@rv(b%Ef4rVfWo(MV#8*G&uQuR-kdr2`}il`0}Sn`;oEnBabaoX z6xUMMf~tcv9`uzg<5+&{$tTbAr%L9jZJVVrbJou-myEQFQnj@o&n_sa6I^R6ADtoG zq}HeVDM(U#u|?1I4QeHv>Gd4vS569E9N*<5St)+^zmcEO><`s<-tm9P_ueP(E0jG| z^~?YG?t;738Lz%(FG?)7;cGuAaXjOr`ZcGTikfS3)$Rq7jCcQWec5r~7#E*(dE?pZ z@4wVu`)c)ysXC(`e8o^`?tYs|UIM;f|zIfI3prl#w zpzJIkK|i0Fr`3&hFGbF}k+miz>YUoti8IelUAv|y|Ip`uu3J9U+>Sx&{Ml#{F`1l=Vr_O$7S^m_0b>x7R-rQt+Vj^|EQMN z@0^3z#|!h$dR%D1;b!5~ZNE|M(c#CNzumBIInD9n%d`c@S+7kixUqwK&H4S8zeiku zy@LDAqQ9J=6nrYc|068|*woMnmVz-0h%FCR2JxIdcwIN(gT!RjHB)j<9&@Unw!De8 z-l2Yq#mfF}mN~66^UI#io_jO0e$QTJi3ctT*O?EB-}wCCz;}fW`UMIFJ{hquox+uy zF7v9fl;;?^?l4Hzn}5c8qTZz=VZo}GiwsxyoGDqClbTv19QTd=;<3*go6Qt69!1O* zU$w=k>u?2gwp06s|IQVDQ|C-gTL%l@c}U?~F$+C>XFo2q;8C-1Mhf3nQ22%|IIg-a ztl-8D@0|U0%jGw&yB;WR;qqG;6uv7a#BTjfFaev9Rsg3a!_TlU4TKgDmyR9#0WN=E zCtl5V<>`C?3f%~E?+DGCn`U$Ujhx3N_J{GGMqyC5_*tDZ)yA9iXWabzr|LgLLE~YD zXhn{|hPMK8iv$?UnBK5iC~VO$UAbDj>H6z_j=H2GR|$#ej&x(~r!jr8rh!hker_>R zy53qeRrqFZ&AfFLExsij%YC_)cLznP=S?!{-W(d>y{l!j{Uq^~N3P5YpR29??s9wl z(auR{IM)4aw;rL?RuiXoTJ*$7WeW!+~Jwry(i?@snr^Ohf-X#Jf|1@a{n|% z%hL4M&J$B6ZvS|<|B=Vio}a!>zr}xWR9 znEF+5-yW82a+{fV^fbIn;H-*B$mMLGyZgYe)8)VPZvP5?#bo`W23!Dt4fnkEmw|y{ zE%n0~vyQubYz4TEi*9Z0iidLhc|In2xotK%)i+d4+*SoVwLJLp+c6gNOEXnuvL|=5{|#C4xg_cI zN|BW_&wJ?_P4$kBni$jCe0g)lQ6`g%N-|e7*PPh&u9D@BYK z&kt4W-O-s}FVb$5dM00J)_#K>dKO~7>esxyU;N)M_i#~l`1Oz1V-EkS5aO#&mRWFc z^%}m9PgOU3o%!}~Doe>P?+bsKvb`IzwdJSjj;Jaq8W?7f(zk2%j*vQqe&nm z)pM8$`Cyes2y!5Mp2`zJs^>5Q`GLr9CTUPZZ5gzQlL6{W7(!?oC= zBYerEEu4StCoOk5xl%K(WL3|e-gk8(?plf9K)$g5q@|eOv1?l1FaGYAd$_4M9va9p zJiC=;7Qq8~hU|el*C6=7d~qX1UWk^ZSg-&BmMG%dgL8_;o}4#s`NFtY)?rA8a{t zICHq)2ueM-y8e{);L8$s7IU2-R|`!aHTmx6HZxU|qy47%oXLq2GrBr+)6%IQOARdE zx@$jM+$r{OhhK8(H0|W4p%O49a4{oqNq$suL)GLAbIHu_Sn~X7T4!gI5 z+QZvg4xfunsQov0-|20?rmQ-^7X@w)PqZpHNVv2h>d+6DU`OaE0l2mc$}C9rbul!9 zUIW}4c-rf*gNW_*BYnLa?Ow&Pi08)k>=Ia_G;K-uFNVwo4>tL=83Y+A3b)oxTiwKJ zf1qDTJupUtG5vwv`JKh@=YH?MZqA^7BQ@f?!v{$-8;cLN23sV|B+EE@i>I!7)byZa zmvEExiwL0|=Y;<)m>*;)9vpl|Mf|6Ywn=}el5gUViW2iZy#4d4PXRMzR6=N`4 zN||@z_y4zAPM`CQ{T^@p?e*u23+~TNkmucf^V5XAWr|@{*KRjw>n^w(-Skd8BJ$A2 zQ?UtOpGxn`P5tSf+Nf({51w|hzg*JE#>l|12X6swN@^wO7X)d()k51B*-6)-h4byx zi>`M`2p!a~%2@DVW8Sn4L7P&|Aq|XQ%zpwOE%~^tkS*=ryEC)r-u(IJR|NBp1BS=* z7}_Qz>o>F;FdVl#&UjqV`E`)^u02T~s{V2|%g^>P5*Nf$E6i% zb2Kfbf{V9uzvtT3ogVyr%J0`tk6H0t-+O$S+v~!%vmZ^QzNuTdcK=&1?F1_sdeasl4VEFugX z3>*w|f@&=okN}92UzDz&lwX>cT$!9$T#}QjpOu`dUr>}^mYI@Tr0)fu(t;;vzaS%6 z_Zi-NOS%qizIAU9*b@pWl`lFov-X#6ZkakscX!|mcmrd0*q)5CglD|Q@6Wz_^Zfd6 z_681jp4*HZiiiCe_!Al0V%u!noSj}fOXBNT4B!_?uESjJKGkg^lH0x3;apkv!v<#ma54!FZ{8q z>zG_{*h2heL5jN24gF8=xuQFl2`9Jw%&%K3^>EkUi1NE<7ytVDRpm|jF$?Fz?>1Vc zoXtB>bv|u*fi6?jUC|erjcY|^r0=k9yI+5+f6e;3B|;W1pQS-b`KsKEJO)M@gfhH^ zfi08+Y&k^Xp?nwAl|Bt>V%Ui4UmvGq;^(Xqk|x4Js-Qn;qsmY`3s*Ay;Ue z(4Mk%mk-HvJr8x7S=L|DZ=KP(QCEEuxAE+0v(mMuZ`)$Cx6|+Z`AMl_NzA@Z+xwD3 z<2;gomfA=x^Nul$YPlzWZ1aSgtS_riEqPdevUZZ2_OXp3%?oFHB<$DNqZ^|-uV?Ml zZ~K34&1zZw&G~L=c>k;G*DtTQFZqyzcl+^I6O6YrK4+dTd#Icvqf~ssam#CBA7VZ{ zkEs8hdB1qyuZdm>;%DRaa)ss4-ud?M$XM%P=DHq z`yWI7lpUEzyVKay?iqZ(_vTz(ovu9ti$&s%uMQt1zk%z$H^wpsGQv{KktaTNJ=kKM z+$6oyM?i1Nxu2V>bT3s}89oj95OO|!>7$uvS~Yq7^A6uj6gG5+j66t?K)5sAcqv*TC0 z?Z~sg7F+&#MP02e=kK|O=PqohUc(o;S$f00%{Mh;x*NjES*xNFvRRL_l{dcqKL4BY z>(%lrS@Zy~?dmVNVIJVz#V|4PBRiazfS^0A{Tf}Ta zk6eoR(>%T5LbC640nVF~d|U0NEpK3zKhQ3eo~_x$RVLmhS+@WFo4VcL#+=m(&KxU+ z9PT$38v+UyHfV294^W+=_sHa&K4;k8j}9AtXQ^;L*XrKmZt8hB)8a~{(%$6(RgZma zk1NltH2=3&{!5dES87?Ay{C|U-;#5j=e{4>>sPsVKF`)^w_GLLTaNJ;%$De9=R`Pu)cOvhQwR>$s-UYNc+d(ZA)uA6tI$bM28>@2fo>8sr9jp0#?wR$M61N>Q+;%}#C6{OU>ZnNd%{FJR zZ&3WgaoE1)xYNm<+56IA zzR&IL`${V>H4Ddf_Zu=vkH6h?pChZB!t#Yp`@&x#X>AsnL#k%+`}WIk$e(smWBxiIeNu*$b;WkCC z8_UE_Unrd>_vnC~=JLtSnX{&tz08~3x5anYCC|*uVo@6k=dfIwxb3CS_j|d!zUy)R zytjL@&do`^N&oA<-~ImOZQ=Xha@DUI+ZkDI+KA3B2xm2W#QW%@8*6^h$Fw_ZALwe` z(|T|_mJEgEN?2G`uMJv$(`j7Y^PS}-wW^j{+PMxZ?l$dpZ1Rl6AGO; zEEIS6Yy8;I#rmUT!M=DKJ1seR;r@Q^XOo-WPigXBvErb5=#PT=7M8Jn#*dx{vL-*Z zSe-QUg5|nJg5{bO4z9*(A~q`)xjx`u$?+huaZYeSoU1@TN0&e6Cx7i9JzZOWtf{bB z^`Mx`ZheyNK7|Uo;18~>@j)L_S>ppggt8fAC|-UNc6`A+pHEAg)*G&{U3u`JpYpNE z+nSC`ipafu8GTtQ<{Pi@NC$3TBhncf!e@WZz-#skv z-{r*a4mwyaaq8(zk)L->)Kcs8dp#H4KcC?AieJJ@b=iaVC1-nP$0*q+X>_ZVYQ8;w zZugY0!p~#9ey#ki_vBB{y~$-$DvmBJnS5}&ZQfBP=8sb(B|BeuR!?A8y5@1HkA05A z7EU!~w~0v+F*D5W=yB-Y?K##iA(m^ug#UG;O8*j_!*ZN0N4eim-p{q`HP7V@=7ur% z4Q79nG&Os-tfKtL;yHO%-+gb7BGOPX8Z57f|-}BFXSQ4wR`si3KSKZNo*FnYA z?RhVq?}&BA7+!5jX>wO{!oru!K` zbnD7FW1_1MTZgaBi`Cp&cfKGsPi&LM$~~$Vi?D|3OGykJrZlnPVX0#T>9|-5B|feoNDI?v`*wnd8NFwUF*V2 zvBc~3rhoXicOB1_`q$4bHSb8Ul-?sh-t`BwU;Z{-di#X(-DPd3cPub8SoZMij>(VC z>T2ixT(n4K#hWGnC*3kPNc#MQt9Pmaf9UTNm9m*9LzD!!ub5LUeCJZ@ku?_jGw;Rj zyQ0Evx?3dm2=i=D$K9zfmG^2|Pu#Tf-A=nH`W;o5a(GM1zNTIdRGBe-p`m?Y^^WDC z-#ULxc)RRgXYll&TwG<{aVK=HMo0#)Si&XL{?k`8&uzy7z3UOI!KPuI$*jEM+gi@Z z95(F@-I&$3n!9+(R)d&n>+Ma$4nNDt(OaFGaVol$Q`;^lU^9E(n>%h#Wy|!}w6b<7 z&oOv0dD8uPM;>xaeY~x2!)IA8*PWTt>^!T^H0iisTN5LH!@J)`=b!iX@=Wc+vy@J# zFBfe~5UhC@5^N*vD}L1YqQobj8BI$x15|`#PrDYT_^1Ee7qI!mDFLyws>u;1(|M9U z#wc}N&Mp&M_h{2ozr{RjT@5UQvoG2hmAQU8aYFR8uuhPF)ha!~%{Trq1**?LifiVF zZ^RTxmFIu__T+>>=f)!rLiN|BGqcspMII4~x@DJKB_(u*2p)hxf;Lqt9l}%{z}yo|EvGC!3e|Ym%){ z@UMMMjPs)mgKBHl*3ax!(%$%R=C{7|IX43yissGg-JI)|s#*Sg<)SlIirmufJJ-Au zSnF`{huGmOnx9jXB!%3IFUzH`E4wx4?T*Ppv(%)dmaBIyOpAEu8ELatWy1>AWO?Vg z(*9XT-$eRW1%)TX3huA`k`a;@!rH#>jDh;gXuZ};lD}1IpPm(oeb=KD>}8tmzk18# znG>(XN*w*>Cg*Z_&2^I}n%!qAX5G7_r5Vn5DUW-*ld*xXm0PCLzPrB?x)$wMn7eG{ z!$YArI(#(_ZZ5R7Vaar6=D0LTO)*!QW%Yxlp^AKMEQw!B-YG_0HetJVrG`z__n+~H zIZZ!4KT?ZuQQ(kQH_|_Nd$xSzcexO=`L3DY3tc#LivwCO%x#%wox!>=_Uz*T$*QPx zi;AlC9xsYHwTd(2@7B=d6?Ww^S8XRpT+W=*lgw8u>VNq0$NuDX?8{I55PQ+FsO{dQ zl&e}(u7`x%ceVy3gvYzE+HeJNwTa&0iE8i)c=RBFt1qTO>zwPl;1JKka>TKDEz&`eggh>W_<97d~ZqUY`Ct=(mO#=kz_o z5f|QzvnQ{Zd~f3aPwiXQ7t~$}hzhP{j5FHncy{BnqdQDb{}9TwS-DF7_#vSuQtu}} z*}n5hX-nslFwRfUT)U44zCU~TgOE(IWKs)f{%x6XF+-b(eX&N>$2Q(*wmnqj^=pz) ziTO`k$NlCOZQA~2{s*qVmp>YsyyKS)XRO1^=!u?jx;I>%=JMP$a<+UG-!*;btH~Nm z>l1>fRY``{N7a6oSohMhZx(Od!cAo>12l3zZLet3z4yRk-PcETnFoblP2a+Lg;kuh zH0zk3bRpwZuDtVxPx`NA=zam{z7iW|T z?C%x`+^~OL3D0V`jk{7svi+W={4QP6I;}oDTzzh5!TQ+;q7>gn-kox|^!dhp%fBe* z+<36|b5)eh;tcEl0~+hNuUGEXy_Zw6DyNOFYQOmB3x4yp&SYxata5S{)|?0|(yybKVRL41|Z1z-xyl9tWlOuV6 z=wXxRtqd`5J#n+mt1tT;D3O^V-1LfRN4lZahrQ-`#`Eumy)rKKeb=!~>em||?z(5I zR(EG{G75fYajdGeiWF}8nYvw9b@J&Y{|+yUzO|j3MZBE*#5R%2sFh}NR<>y?XPs?% zq(A3pI7{oBN1rSGyNa&7H-1{Y`bpKb?3w(#q=f$5`YjZo;hyn#=D!cW4eI8+$}|?# zS+re_HTQbyl;(xD3dR38jShNc_nct4c#XyI?Xlwq$0GjDVE(?<^sD5QTh5Qb`y}nk zma^tEGBBLM+dU#Po=phE^V959SJ$KYmNP0CY(qHAdpYCTT^2XG92P8l9n_+CGfbH8 zpT^z^9*_7xxJ&Lnz-zYcWJ%gB^Y^J%_WR@SGko$mE_i%bBd@Tc3U7|o4I@FD}at!A0> zeHq~p@dLKq7Z*O?S2(-!%d(*PE3=E-w_II)+;8gx^>w>;t(f*exG-E`$+YFdriwGd z-)&!-QZ(~Q{f!cD_OiwYf65qdPE&H%zIv>7`Ei}l%`*f3%rt&KNnw6ujoo|Cz&IX6hrD{#EuSCVFV?y{-Zqs@P0Zl;m|xrE zBaqcAI8WiyEQM8fZ%7=I(3UTLFmKy3yT3uZJN|>m-pg+P-CRJch&Cl9qCG4!eSTOe zNb#yj^=*iru2gbz+pK~Q?k`(igz6jYPu*b6+py7hnepX)mHL-|{`~ukZGyX1pT#xa zoEaR7nF*H(+4|n)ycAamkxoI*rUSLMgH57s`GQ zjZj{#8#+Jmv^4Kj@7#9=D^>Qc7SReeZwyu8$Pj4YJiT>iflBR)>9cpfvQgQ=;bswI z;3<7JY32FWvu|FRJT{j7`E165T@3Fcd-!a>_uf9U*nH|QpV-OPi`K^3maSs7FT8ry zbt}vKj@?ZPTW#j9;5@jeXg@qhTW#QGdA=Q#qb;LWn!U4z=IHZtDyOsjJOjzmCK3iu z3s+w$Upw7MzRdK<|E=Fu7dZ4C_+|X};CIJA78ft49g26!x8=IE?xhB|bG5^-H^M1R z0ogqtSSDU$34D9(n8C4#pEH=hZ!!J)a{4XTKj0jFRpg{G;fM|-r{oUu3~=>zF*LHk z6W!8=0<~=i%)A#|;MbVKANq>%#X(=c6(LgM*@U7O{aVvK zdauY|kZ+yQx`KTYYqZq)_WOI5U;MNC?`LrbPU*@s50|!A$_qz)_;BiQwtR5Jhlz)! z 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%0D`n%@uFNWAX7*g3*+|4#lp%ns}*a=hB_JFFQ>> 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

*(EXh-=s-M2=>C9Jp|4Qp+Z8#r(<}QEsXyKcU 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 diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index 0a707bdd4..4e116f3a9 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -2248,6 +2248,15 @@ The following values (or its aliases stated in parentheses) can be passed to \ve \item[WqRq (quorum), WaR1 (all)] New files are read-write replicated and can be modified. Please refer to the Section \ref{sec:readwrite_replication} for more information on both policies and their properties. \end{description} +\subsubsection{Setting Volume Quota} +By default no quota is set for Volumes. If a quota for a volume is set and a client wants to open a file the MRC will check if the quota is exceeded and responses accordingly. The quota of a volume can be set as follows. In this example the quota of the a volume will be set to 1 GB +\begin{verbatim} +$>xtfsutil --set-quota 1G /xtreemfs +\end{verbatim} +M(B), G(B) and T(B) can be used as multipliers. To disable a previously set quota the quota can be set to 0, i.e. the following command can be used +\begin{verbatim} +$>xtfsutil --set-quota 0 /xtreemfs +\end{verbatim} \subsection{Changing OSD and Replica Selection Policies}\label{sec:osd_select_policy} -- GitLab From 73cc9155ad3d50048e4e69b1a2d9040dd63853fa Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Tue, 23 Sep 2014 12:18:31 +0200 Subject: [PATCH 119/192] packaging: fixed dependencies for RHEL7 --- packaging/build-service/xtreemfs/xtreemfs.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/build-service/xtreemfs/xtreemfs.spec b/packaging/build-service/xtreemfs/xtreemfs.spec index 656eb64ff..cf3512e3d 100644 --- a/packaging/build-service/xtreemfs/xtreemfs.spec +++ b/packaging/build-service/xtreemfs/xtreemfs.spec @@ -11,12 +11,12 @@ Summary: XtreemFS base package Source0: XtreemFS-%{version}.tar.gz #requires for any distribution -%if 0%{?sles_version} == 10 || 0%{?fedora_version} >= 20 +%if 0%{?sles_version} == 10 || 0%{?fedora_version} >= 20 || 0%{?rhel_version} >= 700 # no need for ant-nodeps for SLE 10 %else BuildRequires: ant-nodeps >= 1.6.5 %endif -BuildRequires: ant >= 1.6.5 ant-apache-regexp >= 1.6.5 java-devel >= 1.6.0 +BuildRequires: ant >= 1.6.5 java-devel >= 1.6.0 # Client dependencies. BuildRequires: gcc-c++ >= 4.1 fuse >= 2.6 fuse-devel >= 2.6 openssl-devel >= 0.9.8 cmake >= 2.6 boost-devel >= 1.35 libattr-devel >= 2 -- GitLab From 1c256f191e0d8f400e3ded3fb3e9b7fe36fbbcbe Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Wed, 24 Sep 2014 11:03:09 +0200 Subject: [PATCH 120/192] Updated .gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7d29fc82d..146e35704 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,5 @@ *.iml /java/flease/nbproject/private/ /java/pbrpcgen/nbproject/private/ -/java/pbrpcgen/dist/ \ No newline at end of file +/java/pbrpcgen/dist/ +/build -- GitLab From 240f844a72f728813a282ca7e34ad0164eac3547 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Fri, 26 Sep 2014 11:47:55 +0200 Subject: [PATCH 121/192] servers: fixed log message in SortFQDNPolicy --- .../src/org/xtreemfs/mrc/osdselection/SortFQDNPolicy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/servers/src/org/xtreemfs/mrc/osdselection/SortFQDNPolicy.java b/java/servers/src/org/xtreemfs/mrc/osdselection/SortFQDNPolicy.java index 3bb565943..26b29f796 100644 --- a/java/servers/src/org/xtreemfs/mrc/osdselection/SortFQDNPolicy.java +++ b/java/servers/src/org/xtreemfs/mrc/osdselection/SortFQDNPolicy.java @@ -48,7 +48,7 @@ public class SortFQDNPolicy extends FQDNPolicyBase { - getMatch(new ServiceUUID(o1.getUuid()).getAddress().getHostName(), clientIP .getCanonicalHostName()); } catch (UnknownUUIDException e) { - Logging.logMessage(Logging.LEVEL_WARN, Category.misc, this, "cannot compare UUIDs"); + Logging.logMessage(Logging.LEVEL_WARN, Category.misc, this, "cannot compare FQDNs"); Logging.logMessage(Logging.LEVEL_WARN, this, OutputUtils.stackTraceToString(e)); return 0; } -- GitLab From 7b8f15ad8e109357abb2421d7cd5cfe14d07e31f Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 30 Sep 2014 14:14:04 +0200 Subject: [PATCH 122/192] servers: Added policy attribute for osd health status to FilterDefaultPolicy --- .../mrc/osdselection/FilterDefaultPolicy.java | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java index 5e48ceea2..52c4e9083 100644 --- a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java +++ b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java @@ -41,6 +41,8 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { private static final String FREE_CAPACITY_BYTES = "free_capacity_bytes"; + private static final String OSD_HEALTH_STATUS = "osd_health_status"; + private static final String NOT_IN = "not."; // default: 2GB private long minFreeCapacity = 2 * 1024 * 1024 * 1024; @@ -48,6 +50,9 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { // default: 5 min private long maxOfflineTime = 300; + // default: WARNING + private OSDHealthResult osdHealthStatus = OSDHealthResult.OSD_HEALTH_RESULT_WARNING; + private HashMap customFilter = new HashMap(); private HashMap customNotFilter = new HashMap(); @@ -123,8 +128,16 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { if (OFFLINE_TIME_SECS.equals(key)) { maxOfflineTime = Long.parseLong(value); } - else if (FREE_CAPACITY_BYTES.equals(key)) + else if (FREE_CAPACITY_BYTES.equals(key)) { minFreeCapacity = Long.parseLong(value); + } + else if (OSD_HEALTH_STATUS.equals(key)){ + if (value.toUpperCase().equals("WARNING")) { + osdHealthStatus = OSDHealthResult.OSD_HEALTH_RESULT_WARNING; + } else if (value.toUpperCase().equals("FAILED")) { + osdHealthStatus = OSDHealthResult.OSD_HEALTH_RESULT_FAILED; + } + } else { if (value == null) { if (key.toLowerCase().startsWith(NOT_IN)) { @@ -182,8 +195,13 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { if (smartTestResult == null) { return true; } - return Integer.valueOf(smartTestResult) != OSDHealthResult.OSD_HEALTH_RESULT_FAILED_VALUE - || Integer.valueOf(smartTestResult) != OSDHealthResult.OSD_HEALTH_RESULT_WARNING_VALUE; + + if (osdHealthStatus == OSDHealthResult.OSD_HEALTH_RESULT_WARNING) { + return Integer.valueOf(smartTestResult) != OSDHealthResult.OSD_HEALTH_RESULT_FAILED_VALUE + && Integer.valueOf(smartTestResult) != OSDHealthResult.OSD_HEALTH_RESULT_WARNING_VALUE; + } else { + return Integer.valueOf(smartTestResult) != OSDHealthResult.OSD_HEALTH_RESULT_FAILED_VALUE; + } } private static boolean matches(String filterString, String customProperty) { -- GitLab From dfa42378e71f30c665fb1cdc4ae5e5e62092aaf1 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 30 Sep 2014 14:52:57 +0200 Subject: [PATCH 123/192] docs: Added description of osd_healt_status policy attribute to the user guide --- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 844132 -> 844764 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 9 +++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index a2e8076819be17f84e31563ea9b718ecea494760..49c658c1f16078e66d7c60d258d55b37e7d4e49d 100644 GIT binary patch delta 39230 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 delta 38581 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 diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index 340f7e5d8..8a48e9d9d 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -1425,14 +1425,14 @@ Using the \texttt{xtreemfs-osd-farm} script demands two steps. First, a list nam \subsection{Monitoring OSD's storage devices} \label{sec:osd-health-script} -The health status of OSDs storage devices (e.g. SMART health test) can be used to determine if an OSD will fail soon or actually failed. If the health status is available, the default OSD selection policy will use it to exclude OSDs with a critical status (WARNING or FAILED). To test the health status, the OSD executes a user-defined script, that can be configurated in the OSD config with the \texttt{health\_script} parameter. If you want to write such a script you must consider the following thinks: +The health status of OSDs storage devices (e.g. SMART health test) can be used to determine if an OSD will fail soon or actually failed. If the health status is available, the default OSD selection policy will use it to exclude OSDs with a critical status (WARNING and/or FAILED). To test the health status, the OSD executes a user-defined script, that can be configurated in the OSD config with the \texttt{health\_script} parameter. If you want to write such a script you must consider the following thinks: \begin{itemize} \item The script will be executed with the object dir as the first (and only) parameter \item The script must print one of the following numbers to stdout: \begin{itemize} \item \texttt{0} - PASSED: Storage device is in an uncritical state. The OSD will not filtered out when the default OSD selection policy is used. \item \texttt{1} - FAILED: Storage device is in an critical state. The OSD will filtered out when the default OSD selection policy is used. -\item \texttt{2} - WARNING: Storage could be in an critical state soon. The OSD will filtered out when the default OSD selection policy is used. +\item \texttt{2} - WARNING: Storage could be in an critical state soon. The OSD will (not) filtered out (depending on the osd\_health\_status attribute) when the default OSD selection policy is used. \item \texttt{3} - Not Available: The health status is not available. Also used when an error occurs or an invalid value is returned from the script. \end{itemize} \end{itemize} @@ -2618,6 +2618,11 @@ The following predefined policies exist: \begin{itemize} \item \emph{free\_capacity\_bytes}: the lower space limit in bytes \item \emph{offline\_time\_secs}: the upper response time limit in seconds + \item \emph{osd\_health\_status}: OSD Health status which is excluded (see section \ref{sec:osd-health-script}). Possible Values: + \begin{itemize} + \item \emph{warning}: WARNING and FAILED OSDs are excluded + \item \emph{failed}: FAILED OSDs are excluded + \end{itemize} \item custom attributes (see Section \ref{sec:custom_osd_selection}) \end{itemize} -- GitLab From 2c13c4efd612a2238822208496a2c79e4a73d144 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 6 Oct 2014 15:18:50 +0200 Subject: [PATCH 124/192] servers: Fixed false positives in osd health script --- contrib/osd-health/osd_health_example_script.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/contrib/osd-health/osd_health_example_script.sh b/contrib/osd-health/osd_health_example_script.sh index 0f53f6304..037de5fc4 100755 --- a/contrib/osd-health/osd_health_example_script.sh +++ b/contrib/osd-health/osd_health_example_script.sh @@ -8,7 +8,7 @@ IFS=' ' read -r DEVICE TMP <<< $(df $OBJECT_DIR | grep dev) # Determine device type if [[ $DEVICE == *md* ]]; then # DEVICE is a RAID configuration - DEVICES=$(IFS=' ' read -a FOO <<< $(cat /proc/mdstat | grep md0)) + DEVICES=$(IFS=' ' read -a TMP <<< $(cat /proc/mdstat | grep $DEVICE)) DEVICES=${DEVICES[@]:4} elif [[ $DEVICE == *sd* || $DEVICE == *hd* ]]; then # DEVICE is a single disk @@ -20,8 +20,14 @@ fi for DEVICE in $DEVICES; do SMART_STATUS="$(sudo smartctl --health $DEVICE)" - if [[ $SMART_STATUS == *FAILED* ]]; then - echo 1; exit; + if [[ $SMART_STATUS == *PASSED* ]] + then + continue; + elif [[ $SMART_STATUS == *FAILED* ]] + then + echo 1; exit; + else + echo 3; exit; fi done -- GitLab From 1fc96961f586fdd5fbc768a793a10165d504598b Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 6 Oct 2014 15:31:15 +0200 Subject: [PATCH 125/192] servers: Renamed osd_health_example_script.sh to osd_health_check.sh --- .../{osd_health_example_script.sh => osd_health_check.sh} | 0 etc/xos/xtreemfs/osdconfig.properties | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename contrib/osd-health/{osd_health_example_script.sh => osd_health_check.sh} (100%) diff --git a/contrib/osd-health/osd_health_example_script.sh b/contrib/osd-health/osd_health_check.sh similarity index 100% rename from contrib/osd-health/osd_health_example_script.sh rename to contrib/osd-health/osd_health_check.sh diff --git a/etc/xos/xtreemfs/osdconfig.properties b/etc/xos/xtreemfs/osdconfig.properties index 904ece410..02721816f 100644 --- a/etc/xos/xtreemfs/osdconfig.properties +++ b/etc/xos/xtreemfs/osdconfig.properties @@ -126,6 +126,6 @@ policy_dir = /etc/xos/xtreemfs/policies # The health status will be used in the default OSD selection policy to # exclude OSDs with FAILED or WARNING health status. # See the xtreemfs user guide for more information. -#health_script = /usr/share/xtreemfs/osd_health_example_script.sh +#health_script = /usr/share/xtreemfs/osd_health_check.sh uuid = default-OSD -- GitLab From 3e06f1379169067325baef610b55690ce55944a5 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 6 Oct 2014 15:52:23 +0200 Subject: [PATCH 126/192] servers: Changed numbers of FAILED and WARNING OSD health status --- cpp/generated/xtreemfs/OSD.pb.cc | 4 ++-- cpp/generated/xtreemfs/OSD.pb.h | 4 ++-- interface/xtreemfs/OSD.proto | 4 ++-- .../pbrpc/generatedinterfaces/OSD.java | 24 +++++++++---------- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/cpp/generated/xtreemfs/OSD.pb.cc b/cpp/generated/xtreemfs/OSD.pb.cc index 33f73b953..347251097 100644 --- a/cpp/generated/xtreemfs/OSD.pb.cc +++ b/cpp/generated/xtreemfs/OSD.pb.cc @@ -1099,8 +1099,8 @@ void protobuf_AddDesc_xtreemfs_2fOSD_2eproto() { "treemfs.pbrpc.FileCredentials\022\017\n\007file_id" "\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007*\215\001\n\017OSDHea" "lthResult\022\034\n\030OSD_HEALTH_RESULT_PASSED\020\000\022" - "\034\n\030OSD_HEALTH_RESULT_FAILED\020\001\022\035\n\031OSD_HEA" - "LTH_RESULT_WARNING\020\002\022\037\n\033OSD_HEALTH_RESUL" + "\035\n\031OSD_HEALTH_RESULT_WARNING\020\001\022\034\n\030OSD_HE" + "ALTH_RESULT_FAILED\020\002\022\037\n\033OSD_HEALTH_RESUL" "T_NOT_AVAIL\020\0032\253\034\n\nOSDService\022L\n\004read\022\033.x" "treemfs.pbrpc.readRequest\032\032.xtreemfs.pbr" "pc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010truncate\022\037" diff --git a/cpp/generated/xtreemfs/OSD.pb.h b/cpp/generated/xtreemfs/OSD.pb.h index 62f7fad76..b247ccc09 100644 --- a/cpp/generated/xtreemfs/OSD.pb.h +++ b/cpp/generated/xtreemfs/OSD.pb.h @@ -79,8 +79,8 @@ class xtreemfs_rwr_reset_completeRequest; enum OSDHealthResult { OSD_HEALTH_RESULT_PASSED = 0, - OSD_HEALTH_RESULT_FAILED = 1, - OSD_HEALTH_RESULT_WARNING = 2, + OSD_HEALTH_RESULT_WARNING = 1, + OSD_HEALTH_RESULT_FAILED = 2, OSD_HEALTH_RESULT_NOT_AVAIL = 3 }; bool OSDHealthResult_IsValid(int value); diff --git a/interface/xtreemfs/OSD.proto b/interface/xtreemfs/OSD.proto index 22a31ac84..9da006f3f 100644 --- a/interface/xtreemfs/OSD.proto +++ b/interface/xtreemfs/OSD.proto @@ -337,8 +337,8 @@ message xtreemfs_rwr_reset_completeRequest { // Status of OSD health test enum OSDHealthResult { OSD_HEALTH_RESULT_PASSED = 0; - OSD_HEALTH_RESULT_FAILED = 1; - OSD_HEALTH_RESULT_WARNING = 2; + OSD_HEALTH_RESULT_WARNING = 1; + OSD_HEALTH_RESULT_FAILED = 2; // Status is not available, // i.e. the test is disabled or an error occurred OSD_HEALTH_RESULT_NOT_AVAIL = 3; diff --git a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java index 600d590a9..23d85121f 100644 --- a/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java +++ b/java/servers/src/org/xtreemfs/pbrpc/generatedinterfaces/OSD.java @@ -22,13 +22,13 @@ public final class OSD { */ OSD_HEALTH_RESULT_PASSED(0, 0), /** - * OSD_HEALTH_RESULT_FAILED = 1; + * OSD_HEALTH_RESULT_WARNING = 1; */ - OSD_HEALTH_RESULT_FAILED(1, 1), + OSD_HEALTH_RESULT_WARNING(1, 1), /** - * OSD_HEALTH_RESULT_WARNING = 2; + * OSD_HEALTH_RESULT_FAILED = 2; */ - OSD_HEALTH_RESULT_WARNING(2, 2), + OSD_HEALTH_RESULT_FAILED(2, 2), /** * OSD_HEALTH_RESULT_NOT_AVAIL = 3; * @@ -45,13 +45,13 @@ public final class OSD { */ public static final int OSD_HEALTH_RESULT_PASSED_VALUE = 0; /** - * OSD_HEALTH_RESULT_FAILED = 1; + * OSD_HEALTH_RESULT_WARNING = 1; */ - public static final int OSD_HEALTH_RESULT_FAILED_VALUE = 1; + public static final int OSD_HEALTH_RESULT_WARNING_VALUE = 1; /** - * OSD_HEALTH_RESULT_WARNING = 2; + * OSD_HEALTH_RESULT_FAILED = 2; */ - public static final int OSD_HEALTH_RESULT_WARNING_VALUE = 2; + public static final int OSD_HEALTH_RESULT_FAILED_VALUE = 2; /** * OSD_HEALTH_RESULT_NOT_AVAIL = 3; * @@ -68,8 +68,8 @@ public final class OSD { public static OSDHealthResult valueOf(int value) { switch (value) { case 0: return OSD_HEALTH_RESULT_PASSED; - case 1: return OSD_HEALTH_RESULT_FAILED; - case 2: return OSD_HEALTH_RESULT_WARNING; + case 1: return OSD_HEALTH_RESULT_WARNING; + case 2: return OSD_HEALTH_RESULT_FAILED; case 3: return OSD_HEALTH_RESULT_NOT_AVAIL; default: return null; } @@ -30886,8 +30886,8 @@ public final class OSD { "treemfs.pbrpc.FileCredentials\022\017\n\007file_id" + "\030\002 \002(\t\022\025\n\rprimary_epoch\030\003 \002(\007*\215\001\n\017OSDHea" + "lthResult\022\034\n\030OSD_HEALTH_RESULT_PASSED\020\000\022", - "\034\n\030OSD_HEALTH_RESULT_FAILED\020\001\022\035\n\031OSD_HEA" + - "LTH_RESULT_WARNING\020\002\022\037\n\033OSD_HEALTH_RESUL" + + "\035\n\031OSD_HEALTH_RESULT_WARNING\020\001\022\034\n\030OSD_HE" + + "ALTH_RESULT_FAILED\020\002\022\037\n\033OSD_HEALTH_RESUL" + "T_NOT_AVAIL\020\0032\253\034\n\nOSDService\022L\n\004read\022\033.x" + "treemfs.pbrpc.readRequest\032\032.xtreemfs.pbr" + "pc.ObjectData\"\013\215\265\030\n\000\000\000\230\265\030\001\022V\n\010truncate\022\037" + -- GitLab From e8d229b767a770517a53ccbc192ec681356475d9 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Mon, 6 Oct 2014 15:57:28 +0200 Subject: [PATCH 127/192] servers: Renamed health_script parameter to health_check --- etc/xos/xtreemfs/osdconfig.properties | 2 +- .../servers/src/org/xtreemfs/common/config/ServiceConfig.java | 2 +- java/servers/src/org/xtreemfs/osd/OSDConfig.java | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/xos/xtreemfs/osdconfig.properties b/etc/xos/xtreemfs/osdconfig.properties index 02721816f..e91c4c3f2 100644 --- a/etc/xos/xtreemfs/osdconfig.properties +++ b/etc/xos/xtreemfs/osdconfig.properties @@ -126,6 +126,6 @@ policy_dir = /etc/xos/xtreemfs/policies # The health status will be used in the default OSD selection policy to # exclude OSDs with FAILED or WARNING health status. # See the xtreemfs user guide for more information. -#health_script = /usr/share/xtreemfs/osd_health_check.sh +#health_check = /usr/share/xtreemfs/osd_health_check.sh uuid = default-OSD diff --git a/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java b/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java index 2947ab9fc..879ce82ec 100644 --- a/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java +++ b/java/servers/src/org/xtreemfs/common/config/ServiceConfig.java @@ -121,7 +121,7 @@ public class ServiceConfig extends Config { VIVALDI_MAX_REQUEST_TIMEOUT_IN_MS("vivaldi.max_request_timeout_ms", 10000, Integer.class, false), VIVALDI_TIMER_INTERVAL_IN_MS("vivaldi.timer_interval_ms", 60000, Integer.class, false), STORAGE_THREADS("storage_threads", 1, Integer.class, false), - HEALTH_SCRIPT("health_script", "", String.class, false), + HEALTH_CHECK("health_check", "", String.class, false), /* * Benchmark specific configuration parameter diff --git a/java/servers/src/org/xtreemfs/osd/OSDConfig.java b/java/servers/src/org/xtreemfs/osd/OSDConfig.java index cea045ac6..e11acc344 100644 --- a/java/servers/src/org/xtreemfs/osd/OSDConfig.java +++ b/java/servers/src/org/xtreemfs/osd/OSDConfig.java @@ -80,7 +80,7 @@ public class OSDConfig extends ServiceConfig { Parameter.STORAGE_THREADS, Parameter.USE_RENEWAL_SIGNAL, Parameter.USE_MULTIHOMING, - Parameter.HEALTH_SCRIPT + Parameter.HEALTH_CHECK }; /* * @formatter:on @@ -288,6 +288,6 @@ public class OSDConfig extends ServiceConfig { } public String getSmartScript() { - return (String) parameter.get(Parameter.HEALTH_SCRIPT); + return (String) parameter.get(Parameter.HEALTH_CHECK); } } -- GitLab From 9844b3b8a2aea1181c5905be735151ba0c3c754a Mon Sep 17 00:00:00 2001 From: Jan Fajerski Date: Mon, 6 Oct 2014 17:13:34 +0200 Subject: [PATCH 128/192] Update .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 146e35704..3ead74408 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,6 @@ /java/pbrpcgen/nbproject/private/ /java/pbrpcgen/dist/ /build +[._]*.s[a-w][a-z] +.clang_complete +cscope.out -- GitLab From 488837abb0daa99551d0b10d6fd630b806cb7753 Mon Sep 17 00:00:00 2001 From: Lukas Kairies Date: Tue, 7 Oct 2014 14:34:59 +0200 Subject: [PATCH 129/192] servers, doc: Added health check script output to DIR statuspage --- contrib/osd-health/osd_health_check.sh | 10 ++-- doc/xtreemfs-userguide/xtfs-guide.pdf | Bin 844764 -> 844974 bytes doc/xtreemfs-userguide/xtfs-guide.tex | 11 ++-- .../src/org/xtreemfs/dir/StatusPage.java | 15 +++--- .../mrc/osdselection/FilterDefaultPolicy.java | 14 ++--- .../src/org/xtreemfs/osd/OSDConfig.java | 2 +- .../xtreemfs/osd/OSDRequestDispatcher.java | 50 ++++++++++++------ 7 files changed, 62 insertions(+), 40 deletions(-) diff --git a/contrib/osd-health/osd_health_check.sh b/contrib/osd-health/osd_health_check.sh index 037de5fc4..068de1c30 100755 --- a/contrib/osd-health/osd_health_check.sh +++ b/contrib/osd-health/osd_health_check.sh @@ -15,21 +15,23 @@ elif [[ $DEVICE == *sd* || $DEVICE == *hd* ]]; then DEVICES=$DEVICE else # unsupported device type - echo 3; exit + echo "unsupported device type" + exit 3 fi for DEVICE in $DEVICES; do SMART_STATUS="$(sudo smartctl --health $DEVICE)" + echo $SMART_STATUS if [[ $SMART_STATUS == *PASSED* ]] then continue; elif [[ $SMART_STATUS == *FAILED* ]] then - echo 1; exit; + exit 1 else - echo 3; exit; + exit 3 fi done # If no device's health test failed, return 0 (i.e. health test PASSED). -echo 0 +exit 0 diff --git a/doc/xtreemfs-userguide/xtfs-guide.pdf b/doc/xtreemfs-userguide/xtfs-guide.pdf index 49c658c1f16078e66d7c60d258d55b37e7d4e49d..83286518a9e196910c78c351fa0d20d5f235411d 100644 GIT binary patch delta 12035 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 delta 11764 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 diff --git a/doc/xtreemfs-userguide/xtfs-guide.tex b/doc/xtreemfs-userguide/xtfs-guide.tex index 8a48e9d9d..30da6cad0 100644 --- a/doc/xtreemfs-userguide/xtfs-guide.tex +++ b/doc/xtreemfs-userguide/xtfs-guide.tex @@ -1425,18 +1425,19 @@ Using the \texttt{xtreemfs-osd-farm} script demands two steps. First, a list nam \subsection{Monitoring OSD's storage devices} \label{sec:osd-health-script} -The health status of OSDs storage devices (e.g. SMART health test) can be used to determine if an OSD will fail soon or actually failed. If the health status is available, the default OSD selection policy will use it to exclude OSDs with a critical status (WARNING and/or FAILED). To test the health status, the OSD executes a user-defined script, that can be configurated in the OSD config with the \texttt{health\_script} parameter. If you want to write such a script you must consider the following thinks: +The health status of OSDs storage devices (e.g. SMART health test) can be used to determine if an OSD will fail soon or actually failed. If the health status is available, the default OSD selection policy will use it to exclude OSDs with a critical status (WARNING and/or FAILED). To test the health status, the OSD executes a user-defined script, that can be configurated in the OSD config with the \texttt{health\_check} parameter. If you want to write such a script you must consider the following thinks: \begin{itemize} \item The script will be executed with the object dir as the first (and only) parameter -\item The script must print one of the following numbers to stdout: +\item The script must exit with one of the following numbers: \begin{itemize} \item \texttt{0} - PASSED: Storage device is in an uncritical state. The OSD will not filtered out when the default OSD selection policy is used. -\item \texttt{1} - FAILED: Storage device is in an critical state. The OSD will filtered out when the default OSD selection policy is used. -\item \texttt{2} - WARNING: Storage could be in an critical state soon. The OSD will (not) filtered out (depending on the osd\_health\_status attribute) when the default OSD selection policy is used. +\item \texttt{1} - WARNING: Storage could be in an critical state soon. The OSD will (not) filtered out (depending on the osd\_health\_status attribute) when the default OSD selection policy is used. +\item \texttt{2} - FAILED: Storage device is in an critical state. The OSD will filtered out when the default OSD selection policy is used. \item \texttt{3} - Not Available: The health status is not available. Also used when an error occurs or an invalid value is returned from the script. \end{itemize} +\item Additionally the output of the script (stdout) is send to the DIR and is displayed in the web interface \end{itemize} -An example script for Linux systems is provided in \texttt{/usr/share/xtreemfs/osd\_health\_example\_script.sh}. This script uses the SMART health test result of the devices which stores the object dir. The Script supports software RAID configurations (\texttt{/dev/md*}) and single devices(\texttt{/dev/sd*} or \texttt{/dev/hd*}). In order to use this script the package smartmontools must be installed. +An example script for Linux systems is provided in \texttt{/usr/share/xtreemfs/osd\_health\_check.sh}. This script uses the SMART health test result of the devices which stores the object dir. The Script supports software RAID configurations (\texttt{/dev/md*}) and single devices(\texttt{/dev/sd*} or \texttt{/dev/hd*}). In order to use this script the package \texttt{smartmontools} must be installed and the command \texttt{smartctl} must be executable without root password. \subsection{Web-based Status Page} diff --git a/java/servers/src/org/xtreemfs/dir/StatusPage.java b/java/servers/src/org/xtreemfs/dir/StatusPage.java index 0611e4686..29f361bd1 100644 --- a/java/servers/src/org/xtreemfs/dir/StatusPage.java +++ b/java/servers/src/org/xtreemfs/dir/StatusPage.java @@ -202,7 +202,10 @@ public class StatusPage extends StatusServerModule { SortedMap sMap = new TreeMap(); for (Entry entry : sreg.getData().entrySet()) sMap.put(entry.getKey(), entry.getValue()); - + + //remove osd_health_check_output from map to display it together with osd_health_check_result + String osdHealthCheckOutput = sMap.remove("osd_health_check_output"); + for (Entry dataEntry : sMap.entrySet()) { dump.append(""); dump.append(dataEntry.getKey()); @@ -215,7 +218,7 @@ public class StatusPage extends StatusServerModule { } if (!(dataEntry.getKey().equals(HeartbeatThread.STATUS_ATTR) || dataEntry.getKey().equals( - "osd_health_test"))) { + "osd_health_check"))) { dump.append(dataEntry.getValue()); } @@ -252,16 +255,16 @@ public class StatusPage extends StatusServerModule { dump.append(" err "); dump.append(coord.getLocalError()); dump.append(")"); - } else if (dataEntry.getKey().equals("osd_health_test")) { + } else if (dataEntry.getKey().equals("osd_health_check")) { switch (OSDHealthResult.valueOf(Integer.valueOf(dataEntry.getValue()))) { case OSD_HEALTH_RESULT_PASSED: - dump.append("passed (" + dataEntry.getValue() + ")"); + dump.append("passed (" + osdHealthCheckOutput + ")"); break; case OSD_HEALTH_RESULT_FAILED: - dump.append("failed (" + dataEntry.getValue() + ")"); + dump.append("failed (" + osdHealthCheckOutput + ")"); break; case OSD_HEALTH_RESULT_WARNING: - dump.append("warning (" + dataEntry.getValue() + ")"); + dump.append("warning (" + osdHealthCheckOutput + ")"); break; case OSD_HEALTH_RESULT_NOT_AVAIL: dump.append("Not available (" + dataEntry.getValue() + ")"); diff --git a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java index 52c4e9083..f749d3b3b 100644 --- a/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java +++ b/java/servers/src/org/xtreemfs/mrc/osdselection/FilterDefaultPolicy.java @@ -41,7 +41,7 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { private static final String FREE_CAPACITY_BYTES = "free_capacity_bytes"; - private static final String OSD_HEALTH_STATUS = "osd_health_status"; + private static final String OSD_HEALTH_CHECK = "osd_health_check"; private static final String NOT_IN = "not."; // default: 2GB @@ -51,7 +51,7 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { private long maxOfflineTime = 300; // default: WARNING - private OSDHealthResult osdHealthStatus = OSDHealthResult.OSD_HEALTH_RESULT_WARNING; + private OSDHealthResult osdHealthCheck = OSDHealthResult.OSD_HEALTH_RESULT_WARNING; private HashMap customFilter = new HashMap(); private HashMap customNotFilter = new HashMap(); @@ -131,11 +131,11 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { else if (FREE_CAPACITY_BYTES.equals(key)) { minFreeCapacity = Long.parseLong(value); } - else if (OSD_HEALTH_STATUS.equals(key)){ + else if (OSD_HEALTH_CHECK.equals(key)){ if (value.toUpperCase().equals("WARNING")) { - osdHealthStatus = OSDHealthResult.OSD_HEALTH_RESULT_WARNING; + osdHealthCheck = OSDHealthResult.OSD_HEALTH_RESULT_WARNING; } else if (value.toUpperCase().equals("FAILED")) { - osdHealthStatus = OSDHealthResult.OSD_HEALTH_RESULT_FAILED; + osdHealthCheck = OSDHealthResult.OSD_HEALTH_RESULT_FAILED; } } else { @@ -191,12 +191,12 @@ public class FilterDefaultPolicy implements OSDSelectionPolicy { } private boolean isHealthy(Service osd) { - String smartTestResult = KeyValuePairs.getValue(osd.getData().getDataList(), "osd_health_test"); + String smartTestResult = KeyValuePairs.getValue(osd.getData().getDataList(), OSD_HEALTH_CHECK); if (smartTestResult == null) { return true; } - if (osdHealthStatus == OSDHealthResult.OSD_HEALTH_RESULT_WARNING) { + if (osdHealthCheck == OSDHealthResult.OSD_HEALTH_RESULT_WARNING) { return Integer.valueOf(smartTestResult) != OSDHealthResult.OSD_HEALTH_RESULT_FAILED_VALUE && Integer.valueOf(smartTestResult) != OSDHealthResult.OSD_HEALTH_RESULT_WARNING_VALUE; } else { diff --git a/java/servers/src/org/xtreemfs/osd/OSDConfig.java b/java/servers/src/org/xtreemfs/osd/OSDConfig.java index e11acc344..4dde98bfe 100644 --- a/java/servers/src/org/xtreemfs/osd/OSDConfig.java +++ b/java/servers/src/org/xtreemfs/osd/OSDConfig.java @@ -287,7 +287,7 @@ public class OSDConfig extends ServiceConfig { return (Integer) parameter.get(Parameter.STORAGE_THREADS); } - public String getSmartScript() { + public String getHealthCheckScript() { return (String) parameter.get(Parameter.HEALTH_CHECK); } } diff --git a/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java b/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java index d97f13b2f..9b53cfd3b 100644 --- a/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java +++ b/java/servers/src/org/xtreemfs/osd/OSDRequestDispatcher.java @@ -8,6 +8,8 @@ package org.xtreemfs.osd; +import java.io.BufferedInputStream; +import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.IOException; @@ -386,28 +388,40 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle long totalRAM = Runtime.getRuntime().maxMemory(); long usedRAM = Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory(); - // Get OSD health result from user-defined script. - OSDHealthResult smartTestResult = OSDHealthResult.OSD_HEALTH_RESULT_NOT_AVAIL; - InputStreamReader scriptOutputStream = null; - if (!config.getSmartScript().equals("")) { + // Get OSD health check result from user-defined script. + OSDHealthResult healthCheckResult = OSDHealthResult.OSD_HEALTH_RESULT_NOT_AVAIL; + BufferedReader scriptOutputReader = null; + String scriptOutput = ""; + if (!config.getHealthCheckScript().equals("")) { try { - scriptOutputStream = new InputStreamReader(Runtime.getRuntime() - .exec(new String[] { config.getSmartScript(), config.getObjDir() }).getInputStream()); - int scriptOutput = Integer.parseInt(String.valueOf((char) scriptOutputStream.read())); - smartTestResult = OSDHealthResult.valueOf(scriptOutput); - if (smartTestResult == null) { + Process scriptProcess = Runtime.getRuntime() + .exec(new String[] { config.getHealthCheckScript(), config.getObjDir() }); + + // wait until the health check is terminated and get exit value (i.e. health check result) + int healthCheckExitValue = scriptProcess.waitFor(); + healthCheckResult = OSDHealthResult.valueOf(healthCheckExitValue); + + // get output of the health check script + scriptOutputReader = new BufferedReader (new InputStreamReader(scriptProcess.getInputStream())); + String line = ""; + while(( line = scriptOutputReader.readLine()) != null) { + scriptOutput += line; + scriptOutput += "\n"; + } + + if (healthCheckResult == null) { Logging.logMessage(Logging.LEVEL_WARN, Category.misc, this, - "SMART script returns invalid value (" + scriptOutput + ")"); - smartTestResult = OSDHealthResult.OSD_HEALTH_RESULT_NOT_AVAIL; + "Health check script returns invalid value (" + healthCheckExitValue + ")"); + healthCheckResult = OSDHealthResult.OSD_HEALTH_RESULT_NOT_AVAIL; } } catch (Exception e) { Logging.logMessage(Logging.LEVEL_WARN, Category.misc, this, - "Exception while reading SMART health result: " + e.getMessage()); + "Exception while reading health check result: " + e.getMessage()); } finally { - if (scriptOutputStream != null) { + if (scriptOutputReader != null) { try { - scriptOutputStream.close(); - } catch (IOException e1) { + scriptOutputReader.close(); + } catch (IOException e) { // do nothing } } @@ -425,8 +439,10 @@ public class OSDRequestDispatcher implements RPCServerRequestListener, LifeCycle .build()); dmap.addData(KeyValuePair.newBuilder().setKey("usedRAM").setValue(Long.toString(usedRAM)) .build()); - dmap.addData(KeyValuePair.newBuilder().setKey("osd_health_test") - .setValue(String.valueOf(smartTestResult.getNumber())).build()); + dmap.addData(KeyValuePair.newBuilder().setKey("osd_health_check") + .setValue(String.valueOf(healthCheckResult.getNumber())).build()); + dmap.addData(KeyValuePair.newBuilder().setKey("osd_health_check_output") + .setValue(scriptOutput).build()); dmap.addData(KeyValuePair.newBuilder().setKey("proto_version").setValue( Integer.toString(OSDServiceConstants.INTERFACE_ID)).build()); VivaldiCoordinates coord = myCoordinates.get(); -- GitLab From 520489bf9d50f92c7e9e5aafbb375161a61fe1f3 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Wed, 8 Oct 2014 10:26:53 +0200 Subject: [PATCH 130/192] .gitignoring eclipse settings --- java/flease/.gitignore | 1 + java/pbrpcgen/.gitignore | 1 + 2 files changed, 2 insertions(+) diff --git a/java/flease/.gitignore b/java/flease/.gitignore index a0f256663..7c07e878e 100644 --- a/java/flease/.gitignore +++ b/java/flease/.gitignore @@ -3,3 +3,4 @@ /.classpath /.project /bin/ +/.settings/ diff --git a/java/pbrpcgen/.gitignore b/java/pbrpcgen/.gitignore index 6fa5c5ec6..fe0266d96 100644 --- a/java/pbrpcgen/.gitignore +++ b/java/pbrpcgen/.gitignore @@ -1,3 +1,4 @@ /build /.classpath /.project +/.settings/ -- GitLab From 732345b003f78f4f78e73043b59f01b8b286d456 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Wed, 8 Oct 2014 10:27:22 +0200 Subject: [PATCH 131/192] added second OSD configuration --- etc/xos/xtreemfs/osdconfig2.test | 99 ++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 etc/xos/xtreemfs/osdconfig2.test diff --git a/etc/xos/xtreemfs/osdconfig2.test b/etc/xos/xtreemfs/osdconfig2.test new file mode 100644 index 000000000..dcff2d867 --- /dev/null +++ b/etc/xos/xtreemfs/osdconfig2.test @@ -0,0 +1,99 @@ +# optional debug level +# 0: emergency +# 1: alert +# 2: critical +# 3: error +# 4: warning +# 5: notice +# 6: info (default) +# 7: debug +#debug.level = 7 + +# optional debug categories - a space or comma-separated list of log message categories +# all (default) - enable logging for all categories +# lifecycle - log messaages pertaining to service lifecycles (threads) +# buffer - logs messages pertaining to buffers +# net - network-related log messages +# auth - authorization-related log messages +# stage - log messages pertaining to the request flow through the stages +# proc - log messages pertaining to any kind of request processing +# db - log messages pertaining storage on OSD or database access on MRC/DIR +# replication - logs messages pertaining to replication +# misc - any other log messages +#debug.categories = all + +# port for the service to listen on +listen.port = 32641 + +http_port = 30641 + +# optional address for network device, "any" if not specified +#listen.address = 127.0.0.1 + +# optinal host name that is used to register the service at the DIR +# hostname = foo.bar.com + +# Directory Service endpoint +dir_service.host = localhost +dir_service.port = 32638 + +# directory containing XtreemFS file content +object_dir = /tmp/xtreemfs-test/osd2/ + +# Number of storage threads. Increase it to improve concurrency in case of multiple open files. +# Set it to a value >1 only if the underlying device can cope with concurrency, e.g. an SSD. +#storage_threads = 1 + +# granularity of the local clock (in ms) (0 disables it to always use the current system time) +local_clock_renewal = 0 + +# interval between two remote clock syncs (in ms) +remote_time_sync = 60000 + +# specify whether SSL is required +ssl.enabled = false + +# send and receive buffer sizes of sockets +#socket.send_buffer_size = 262144 +#socket.recv_buffer_size = 262144 + +report_free_space = true + +# specify whether internal OSD checksums are required +# if the flag is set to true, the OSD will calculate checksums for +# newly created objects, which will be checked when the object is read +checksums.enabled = false + +# algorithm used for checksum calculation +# by default, Adler32, CRC32, MD5 and SHA-1 are supported +checksums.algorithm = Adler32 + +checksums.enabled = false + +geographic_coordinates = 41.388417,2.114632 + +capability_secret = Yagga + +# administrator password for privileged operations +#admin_password = blub + +# Optional directory containing deployable policy implementations. +# Policies can be directly deployed as .java or .class files in this directory +# or one of its subdirectories. They will be compiled at startup time and +# loaded at runtime. Policies may have external dependencies that can be +# deployed either as .java, .class or .jar files. While Java and Class files +# may be located in subdirectories, JAR files mustn't. +policy_dir = /etc/xos/xtreemfs/policies + +# If you want to monitor your XtreemFS installation through SNMP +# uncomment the following lines. You have to set snmp.enabled = true +# and provide a listen port and optional a address. Also optional +# is a path to an aclfile which controls which hosts can access the +# monitoring information via SNMP. +#snmp.enabled = true +#snmp.address = localhost +#snmp.port = 34640 +#snmp.aclfile = etc/xos/xtreemfs/snmp.acl + +# UUID for the OSD +uuid = test-localhost-OSD2 -- GitLab From 6c90f7ffc4bfdfaa13f31b44dfabe74909657d20 Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Thu, 9 Oct 2014 11:27:09 +0200 Subject: [PATCH 132/192] example_libxtreemfs: extended example with manual file ronly replication if 2 OSDs are present --- .../example_libxtreemfs.cpp | 71 ++++++++++++++++++- 1 file changed, 70 insertions(+), 1 deletion(-) diff --git a/cpp/src/example_libxtreemfs/example_libxtreemfs.cpp b/cpp/src/example_libxtreemfs/example_libxtreemfs.cpp index 119d93459..836fedd3d 100644 --- a/cpp/src/example_libxtreemfs/example_libxtreemfs.cpp +++ b/cpp/src/example_libxtreemfs/example_libxtreemfs.cpp @@ -8,6 +8,7 @@ #include #include +#include #include #include "libxtreemfs/client.h" @@ -54,7 +55,21 @@ int main(int argc, char* argv[]) { // Start the client (a connection to the DIR service will be setup). client->Start(); - // Open a volume named 'demo'. + xtreemfs::pbrpc::Auth auth = xtreemfs::pbrpc::Auth::default_instance(); + auth.set_auth_type(xtreemfs::pbrpc::AUTH_NONE); + + // Create a new volume named 'demo'. + xtreemfs::pbrpc::Volumes *volumes = client->ListVolumes("localhost:32636", auth); + bool has_volume = false; + for(int i = 0; i < volumes->volumes_size() && !has_volume; ++i) { + has_volume = volumes->volumes(i).name().compare("demo") == 0; + } + + if(has_volume) { + client->DeleteVolume("localhost:32636", auth, user_credentials, "demo"); + } + client->CreateVolume("localhost:32636", auth, user_credentials, "demo"); + xtreemfs::Volume *volume = NULL; volume = client->OpenVolume("demo", NULL, // No SSL options. @@ -85,6 +100,7 @@ int main(int argc, char* argv[]) { volume->GetAttr(user_credentials, "/example_libxtreemfs.txt", &stat); cout << "\nNew file size of example_libxtreemfs.txt: " << stat.size() << " Bytes." << endl; + // Once again, now hopefully from the Cache. volume->GetAttr(user_credentials, "/example_libxtreemfs.txt", &stat); cout << "\nFile size of example_libxtreemfs.txt again (this time retrieved" @@ -99,6 +115,59 @@ int main(int argc, char* argv[]) { 0); // Offset. cout << "\nReading the content of the file example_libxtreemfs.txt:\n\n" << read_buf << endl; + + cout << endl << "Closing /example_libxtreemfs.txt... "; + file->Close(); + file = NULL; + cout << "ok!" << endl; + + // mark the file as read-only + cout << endl << "Marking /example_libxtreemfs.txt read only... "; + volume->SetXAttr(user_credentials, "/example_libxtreemfs.txt", "xtreemfs.read_only", "true", xtreemfs::pbrpc::XATTR_FLAGS_CREATE); + cout << "ok!" << endl; + + // list replica(s) and their OSD(s) + // we expect one replica and one OSD here because we created a new volume above + xtreemfs::pbrpc::Replicas* replicas = volume->ListReplicas(user_credentials, "/example_libxtreemfs.txt"); + const int repls = replicas->replicas_size(); + cout << endl << repls << " replica(s) for /example_libxtreemfs.txt:" << endl; + for(int i = 0; i < repls; ++i) { + xtreemfs::pbrpc::Replica replica = replicas->replicas(i); + const int osds = replica.osd_uuids_size(); + cout << "\t" << osds << " OSD(s) for replica " << i << ":"; + for(int j = 0; j < osds; ++j) { + cout << " " << replica.osd_uuids(j); + } + cout << endl; + } + + // grab one suitable OSD which we can use for manual replication of the file + list osd_uuids; + volume->GetSuitableOSDs(user_credentials, "/example_libxtreemfs.txt", 1, &osd_uuids); + + // replicate to second OSD if available + if(osd_uuids.size() > 0) { + string osd_uuid = osd_uuids.front(); + cout << endl << "Replicating to suitable OSD " << osd_uuid << "... "; + + // add replication + xtreemfs::pbrpc::Replica replica; + replica.add_osd_uuids(osd_uuid); + + // read-only files have partial replication by default, we want full + replica.set_replication_flags(xtreemfs::pbrpc::REPL_FLAG_FULL_REPLICA | xtreemfs::pbrpc::REPL_FLAG_STRATEGY_RAREST_FIRST); + xtreemfs::pbrpc::StripingPolicy *striping = new xtreemfs::pbrpc::StripingPolicy; + striping->set_type(xtreemfs::pbrpc::STRIPING_POLICY_RAID0); + striping->set_stripe_size(128); + striping->set_width(1); + replica.set_allocated_striping_policy(striping); + + volume->AddReplica(user_credentials, "/example_libxtreemfs.txt", replica); + cout << "ok!" << endl; + } else { + cout << endl << "No second OSD found for replication." << endl; + } + } catch(const xtreemfs::XtreemFSException& e) { cout << "An error occurred:\n" << e.what() << endl; return_code = 1; -- GitLab From 7a95fd1a8cb226cafab51cfcf86fc660a294821f Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Thu, 9 Oct 2014 13:28:26 +0200 Subject: [PATCH 133/192] example_libxtreemfs: moving complex operations to separate example --- .../example_libxtreemfs.cpp | 71 +------------------ 1 file changed, 1 insertion(+), 70 deletions(-) diff --git a/cpp/src/example_libxtreemfs/example_libxtreemfs.cpp b/cpp/src/example_libxtreemfs/example_libxtreemfs.cpp index 836fedd3d..119d93459 100644 --- a/cpp/src/example_libxtreemfs/example_libxtreemfs.cpp +++ b/cpp/src/example_libxtreemfs/example_libxtreemfs.cpp @@ -8,7 +8,6 @@ #include #include -#include #include #include "libxtreemfs/client.h" @@ -55,21 +54,7 @@ int main(int argc, char* argv[]) { // Start the client (a connection to the DIR service will be setup). client->Start(); - xtreemfs::pbrpc::Auth auth = xtreemfs::pbrpc::Auth::default_instance(); - auth.set_auth_type(xtreemfs::pbrpc::AUTH_NONE); - - // Create a new volume named 'demo'. - xtreemfs::pbrpc::Volumes *volumes = client->ListVolumes("localhost:32636", auth); - bool has_volume = false; - for(int i = 0; i < volumes->volumes_size() && !has_volume; ++i) { - has_volume = volumes->volumes(i).name().compare("demo") == 0; - } - - if(has_volume) { - client->DeleteVolume("localhost:32636", auth, user_credentials, "demo"); - } - client->CreateVolume("localhost:32636", auth, user_credentials, "demo"); - + // Open a volume named 'demo'. xtreemfs::Volume *volume = NULL; volume = client->OpenVolume("demo", NULL, // No SSL options. @@ -100,7 +85,6 @@ int main(int argc, char* argv[]) { volume->GetAttr(user_credentials, "/example_libxtreemfs.txt", &stat); cout << "\nNew file size of example_libxtreemfs.txt: " << stat.size() << " Bytes." << endl; - // Once again, now hopefully from the Cache. volume->GetAttr(user_credentials, "/example_libxtreemfs.txt", &stat); cout << "\nFile size of example_libxtreemfs.txt again (this time retrieved" @@ -115,59 +99,6 @@ int main(int argc, char* argv[]) { 0); // Offset. cout << "\nReading the content of the file example_libxtreemfs.txt:\n\n" << read_buf << endl; - - cout << endl << "Closing /example_libxtreemfs.txt... "; - file->Close(); - file = NULL; - cout << "ok!" << endl; - - // mark the file as read-only - cout << endl << "Marking /example_libxtreemfs.txt read only... "; - volume->SetXAttr(user_credentials, "/example_libxtreemfs.txt", "xtreemfs.read_only", "true", xtreemfs::pbrpc::XATTR_FLAGS_CREATE); - cout << "ok!" << endl; - - // list replica(s) and their OSD(s) - // we expect one replica and one OSD here because we created a new volume above - xtreemfs::pbrpc::Replicas* replicas = volume->ListReplicas(user_credentials, "/example_libxtreemfs.txt"); - const int repls = replicas->replicas_size(); - cout << endl << repls << " replica(s) for /example_libxtreemfs.txt:" << endl; - for(int i = 0; i < repls; ++i) { - xtreemfs::pbrpc::Replica replica = replicas->replicas(i); - const int osds = replica.osd_uuids_size(); - cout << "\t" << osds << " OSD(s) for replica " << i << ":"; - for(int j = 0; j < osds; ++j) { - cout << " " << replica.osd_uuids(j); - } - cout << endl; - } - - // grab one suitable OSD which we can use for manual replication of the file - list osd_uuids; - volume->GetSuitableOSDs(user_credentials, "/example_libxtreemfs.txt", 1, &osd_uuids); - - // replicate to second OSD if available - if(osd_uuids.size() > 0) { - string osd_uuid = osd_uuids.front(); - cout << endl << "Replicating to suitable OSD " << osd_uuid << "... "; - - // add replication - xtreemfs::pbrpc::Replica replica; - replica.add_osd_uuids(osd_uuid); - - // read-only files have partial replication by default, we want full - replica.set_replication_flags(xtreemfs::pbrpc::REPL_FLAG_FULL_REPLICA | xtreemfs::pbrpc::REPL_FLAG_STRATEGY_RAREST_FIRST); - xtreemfs::pbrpc::StripingPolicy *striping = new xtreemfs::pbrpc::StripingPolicy; - striping->set_type(xtreemfs::pbrpc::STRIPING_POLICY_RAID0); - striping->set_stripe_size(128); - striping->set_width(1); - replica.set_allocated_striping_policy(striping); - - volume->AddReplica(user_credentials, "/example_libxtreemfs.txt", replica); - cout << "ok!" << endl; - } else { - cout << endl << "No second OSD found for replication." << endl; - } - } catch(const xtreemfs::XtreemFSException& e) { cout << "An error occurred:\n" << e.what() << endl; return_code = 1; -- GitLab From c3cce13e3a4c28eae44d8bf014d7000719064e45 Mon Sep 17 00:00:00 2001 From: Christoph Kleineweber Date: Thu, 9 Oct 2014 14:34:45 +0200 Subject: [PATCH 134/192] servers: corrected xtfs_benchmark --help output --- .../utils/xtfs_benchmark/CLIOptions.java | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java index 72c0cbbcf..b18cc2d81 100644 --- a/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java +++ b/java/servers/src/org/xtreemfs/utils/xtfs_benchmark/CLIOptions.java @@ -8,22 +8,23 @@ package org.xtreemfs.utils.xtfs_benchmark; -import static org.xtreemfs.common.benchmark.BenchmarkConfig.ConfigBuilder; -import static org.xtreemfs.foundation.util.CLIParser.CliOption.OPTIONTYPE.STRING; -import static org.xtreemfs.foundation.util.CLIParser.CliOption.OPTIONTYPE.SWITCH; -import static org.xtreemfs.foundation.util.CLIParser.parseCLI; +import org.xtreemfs.common.benchmark.BenchmarkConfig; +import org.xtreemfs.common.benchmark.BenchmarkUtils; +import org.xtreemfs.common.config.ServiceConfig; +import org.xtreemfs.foundation.pbrpc.Schemes; +import org.xtreemfs.foundation.util.CLIParser; +import org.xtreemfs.utils.DefaultDirConfig; +import org.xtreemfs.utils.utils; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Map; -import org.xtreemfs.common.benchmark.*; -import org.xtreemfs.common.config.ServiceConfig; -import org.xtreemfs.foundation.pbrpc.Schemes; -import org.xtreemfs.foundation.util.CLIParser; -import org.xtreemfs.utils.DefaultDirConfig; -import org.xtreemfs.utils.utils; +import static org.xtreemfs.common.benchmark.BenchmarkConfig.ConfigBuilder; +import static org.xtreemfs.foundation.util.CLIParser.CliOption.OPTIONTYPE.STRING; +import static org.xtreemfs.foundation.util.CLIParser.CliOption.OPTIONTYPE.SWITCH; +import static org.xtreemfs.foundation.util.CLIParser.parseCLI; /** * Class implementing the commandline options for {@link xtfs_benchmark}. @@ -204,7 +205,7 @@ class CLIOptions { System.out.println(" " + "options:"); utils.printOptions(options); System.out.println(); - System.out.println("example: xtfs_benchmark -sw -sr -t 3 -ssize 3G volume1 volume2 volume3"); + System.out.println("example: xtfs_benchmark -sw -sr -n 3 -ssize 3G volume1 volume2 volume3"); System.out .println("\t\t starts a sequential write and read benchmark of 3 GiB with 3 benchmarks in parallel on volume1, volume2 and volume3\n"); } -- GitLab From 2ba668e710b62293ba0c67f4874de0ee17f244ae Mon Sep 17 00:00:00 2001 From: Robert Schmidtke Date: Thu, 9 Oct 2014 17:00:31 +0200 Subject: [PATCH 135/192] added replication example --- cpp/CMakeLists.txt | 4 + .../example_replication.cpp | 171 ++++++++++++++++++ 2 files changed, 175 insertions(+) create mode 100644 cpp/src/example_libxtreemfs/example_replication.cpp diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 440679fa8..de09b5a54 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -240,6 +240,10 @@ ADD_EXECUTABLE(example_libxtreemfs src/example_libxtreemfs/example_libxtreemfs.c SET_TARGET_PROPERTIES(example_libxtreemfs PROPERTIES COMPILE_DEFINITIONS ${COMPILE_DEFS}) TARGET_LINK_LIBRARIES(example_libxtreemfs xtreemfs) +ADD_EXECUTABLE(example_replication src/example_libxtreemfs/example_replication.cpp) +SET_TARGET_PROPERTIES(example_replication PROPERTIES COMPILE_DEFINITIONS ${COMPILE_DEFS}) +TARGET_LINK_LIBRARIES(example_replication xtreemfs) + file(GLOB_RECURSE SRCS_MKFS src/mkfs.xtreemfs/*.cpp) ADD_EXECUTABLE(mkfs.xtreemfs ${SRCS_MKFS}) SET_TARGET_PROPERTIES(mkfs.xtreemfs PROPERTIES COMPILE_DEFINITIONS ${COMPILE_DEFS}) diff --git a/cpp/src/example_libxtreemfs/example_replication.cpp b/cpp/src/example_libxtreemfs/example_replication.cpp new file mode 100644 index 000000000..6a7468ce6 --- /dev/null +++ b/cpp/src/example_libxtreemfs/example_replication.cpp @@ -0,0 +1,171 @@ +/* + * Copyright (c) 2011 by Michael Berlin, Zuse Institute Berlin + * + * Licensed under the BSD License, see LICENSE file for details. + * + */ + +#include + +#include +#include +#include + +#include "libxtreemfs/client.h" +#include "libxtreemfs/file_handle.h" +#include "libxtreemfs/options.h" +#include "libxtreemfs/volume.h" +#include "libxtreemfs/xtreemfs_exception.h" +#include "pbrpc/RPC.pb.h" // xtreemfs::pbrpc::UserCredentials +#include "xtreemfs/MRC.pb.h" // xtreemfs::pbrpc::Stat + +using namespace std; + +int main(int argc, char* argv[]) { + // Every operation is executed in the context of a given user and his groups. + // The UserCredentials object does store this information and is currently + // (08/2011) *only* evaluated by the MRC (although the protocol requires to + // send user_credentials to DIR and OSD, too). + xtreemfs::pbrpc::UserCredentials user_credentials; + user_credentials.set_username("example_libxtreemfs"); + user_credentials.add_groups("example_libxtreemfs"); + + // Class which allows to change options of the library. + xtreemfs::Options options; + + try { + options.ParseCommandLine(argc, argv); + } catch(const xtreemfs::XtreemFSException& e) { + cout << "Invalid parameters found, error: " << e.what() << endl << endl; + return 1; + } + + xtreemfs::Client* client = NULL; + xtreemfs::FileHandle* file = NULL; + int return_code = 0; + try { + // Create a new instance of a client using the DIR service at + // localhost because we need extended priviliges. + // This requires the DIR with etc/xos/xtreemfs/dirconfig.test, + // an OSD with osdconfig.test, an OSD with osdconfig2.test and + // an MRC with mrcconfig.test, all of them on localhost. + client = xtreemfs::Client::CreateClient( + "localhost:32638", + user_credentials, + NULL, // No SSL options. + options); + + // Start the client (a connection to the DIR service will be setup). + client->Start(); + + // setup the auth object + xtreemfs::pbrpc::Auth auth = xtreemfs::pbrpc::Auth::default_instance(); + auth.set_auth_type(xtreemfs::pbrpc::AUTH_NONE); + + // Create a new volume named 'demo'. + xtreemfs::pbrpc::Volumes *volumes = client->ListVolumes("localhost:32636", auth); + bool has_volume = false; + for(int i = 0; i < volumes->volumes_size() && !has_volume; ++i) { + has_volume = volumes->volumes(i).name().compare("demo") == 0; + } + if(has_volume) { + client->DeleteVolume("localhost:32636", auth, user_credentials, "demo"); + } + client->CreateVolume("localhost:32636", auth, user_credentials, "demo"); + + // Open the volume. + xtreemfs::Volume *volume = NULL; + volume = client->OpenVolume("demo", + NULL, // No SSL options. + options); + + // Open a file. + file = volume->OpenFile(user_credentials, + "/example_replication.txt", + static_cast( + xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_CREAT | + xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_TRUNC | + xtreemfs::pbrpc::SYSTEM_V_FCNTL_H_O_RDWR), + 511); // = 777 Octal. + + // Write to file. + cout << "Writing the string\n" + "\n" + "\t\"Replication Example.\"\n" + "\n" + "to the file example_replication.txt..." << endl; + char write_buf[] = "Replication Example."; + file->Write(reinterpret_cast(&write_buf), + sizeof(write_buf), + 0); + + cout << endl << "Closing /example_replication.txt... "; + file->Close(); + file = NULL; + cout << "ok!" << endl; + + // mark the file as read-only + cout << endl << "Marking /example_replication.txt read only... "; + volume->SetXAttr(user_credentials, "/example_replication.txt", "xtreemfs.read_only", "true", xtreemfs::pbrpc::XATTR_FLAGS_CREATE); + cout << "ok!" << endl; + + // list replica(s) and their OSD(s) + // we expect one replica and one OSD here because we created a new volume above + xtreemfs::pbrpc::Replicas* replicas = volume->ListReplicas(user_credentials, "/example_replication.txt"); + const int repls = replicas->replicas_size(); + cout << endl << repls << " replica(s) for /example_replication.txt:" << endl; + for(int i = 0; i < repls; ++i) { + xtreemfs::pbrpc::Replica replica = replicas->replicas(i); + const int osds = replica.osd_uuids_size(); + cout << "\t" << osds << " OSD(s) for replica " << i << ":"; + for(int j = 0; j < osds; ++j) { + cout << " " << replica.osd_uuids(j); + } + cout << endl; + } + + // grab one suitable OSD which we can use for manual replication of the file + list osd_uuids; + volume->GetSuitableOSDs(user_credentials, "/example_replication.txt", 1, &osd_uuids); + + // replicate to second OSD if available + if(osd_uuids.size() > 0) { + string osd_uuid = osd_uuids.front(); + cout << endl << "Replicating to suitable OSD " << osd_uuid << "... "; + + // add replication + xtreemfs::pbrpc::Replica replica; + replica.add_osd_uuids(osd_uuid); + + // read-only files have partial replication by default, we want full + replica.set_replication_flags(xtreemfs::pbrpc::REPL_FLAG_FULL_REPLICA | xtreemfs::pbrpc::REPL_FLAG_STRATEGY_RAREST_FIRST); + xtreemfs::pbrpc::StripingPolicy *striping = new xtreemfs::pbrpc::StripingPolicy; + striping->set_type(xtreemfs::pbrpc::STRIPING_POLICY_RAID0); + striping->set_stripe_size(128); + striping->set_width(1); + replica.set_allocated_striping_policy(striping); + + volume->AddReplica(user_credentials, "/example_replication.txt", replica); + cout << "ok!" << endl; + } else { + cout << endl << "No second OSD found for replication." << endl; + } + + } catch(const xtreemfs::XtreemFSException& e) { + cout << "An error occurred:\n" << e.what() << endl; + return_code = 1; + } + + if (file != NULL) { + // Close the file (no need to delete it, see documentation volume.h). + file->Close(); + } + + if (client != NULL) { + // Shutdown() does also invoke a volume->Close(). + client->Shutdown(); + delete client; + } + + return return_code; +} -- GitLab From 13b4ec4d23dfb146c68af0eba64f45e3fc6ade2b Mon Sep 17 00:00:00 2001 From: Thorsten Schuett Date: Fri, 10 Oct 2014 14:26:18 +0200 Subject: [PATCH 136/192] add gtest-1.7.0 --- cpp/thirdparty/gtest-1.7.0/CHANGES | 157 + cpp/thirdparty/gtest-1.7.0/CMakeLists.txt | 252 + cpp/thirdparty/gtest-1.7.0/CONTRIBUTORS | 37 + cpp/thirdparty/gtest-1.7.0/LICENSE | 28 + cpp/thirdparty/gtest-1.7.0/Makefile.am | 306 + cpp/thirdparty/gtest-1.7.0/Makefile.in | 1360 ++ cpp/thirdparty/gtest-1.7.0/README | 435 + cpp/thirdparty/gtest-1.7.0/aclocal.m4 | 1198 + .../gtest-1.7.0/build-aux/config.guess | 1530 ++ .../gtest-1.7.0/build-aux/config.h.in | 69 + .../gtest-1.7.0/build-aux/config.sub | 1773 ++ cpp/thirdparty/gtest-1.7.0/build-aux/depcomp | 688 + .../gtest-1.7.0/build-aux/install-sh | 527 + .../gtest-1.7.0/build-aux/ltmain.sh | 9661 ++++++++ cpp/thirdparty/gtest-1.7.0/build-aux/missing | 331 + .../gtest-1.7.0/cmake/internal_utils.cmake | 227 + .../gtest-1.7.0/codegear/gtest.cbproj | 138 + .../gtest-1.7.0/codegear/gtest.groupproj | 54 + .../gtest-1.7.0/codegear/gtest_all.cc | 38 + .../gtest-1.7.0/codegear/gtest_link.cc | 40 + .../gtest-1.7.0/codegear/gtest_main.cbproj | 82 + .../codegear/gtest_unittest.cbproj | 88 + cpp/thirdparty/gtest-1.7.0/configure | 18222 ++++++++++++++ cpp/thirdparty/gtest-1.7.0/configure.ac | 68 + .../gtest-1.7.0/fused-src/gtest/gtest-all.cc | 9592 ++++++++ .../gtest-1.7.0/fused-src/gtest/gtest.h | 20061 ++++++++++++++++ .../gtest-1.7.0/fused-src/gtest/gtest_main.cc | 38 + .../include/gtest/gtest-death-test.h | 294 + .../gtest-1.7.0/include/gtest/gtest-message.h | 250 + .../include/gtest/gtest-param-test.h | 1421 ++ .../include/gtest/gtest-param-test.h.pump | 487 + .../include/gtest/gtest-printers.h | 855 + .../gtest-1.7.0/include/gtest/gtest-spi.h | 232 + .../include/gtest/gtest-test-part.h | 179 + .../include/gtest/gtest-typed-test.h | 259 + .../gtest-1.7.0/include/gtest/gtest.h | 2291 ++ .../include/gtest/gtest_pred_impl.h | 358 + .../gtest-1.7.0/include/gtest/gtest_prod.h | 58 + .../internal/gtest-death-test-internal.h | 319 + .../include/gtest/internal/gtest-filepath.h | 206 + .../include/gtest/internal/gtest-internal.h | 1158 + .../include/gtest/internal/gtest-linked_ptr.h | 233 + .../internal/gtest-param-util-generated.h | 5143 ++++ .../gtest-param-util-generated.h.pump | 301 + .../include/gtest/internal/gtest-param-util.h | 619 + .../include/gtest/internal/gtest-port.h | 1947 ++ .../include/gtest/internal/gtest-string.h | 167 + .../include/gtest/internal/gtest-tuple.h | 1012 + .../include/gtest/internal/gtest-tuple.h.pump | 339 + .../include/gtest/internal/gtest-type-util.h | 3331 +++ .../gtest/internal/gtest-type-util.h.pump | 297 + cpp/thirdparty/gtest-1.7.0/m4/acx_pthread.m4 | 363 + cpp/thirdparty/gtest-1.7.0/m4/gtest.m4 | 74 + cpp/thirdparty/gtest-1.7.0/m4/libtool.m4 | 8001 ++++++ cpp/thirdparty/gtest-1.7.0/m4/ltoptions.m4 | 384 + cpp/thirdparty/gtest-1.7.0/m4/ltsugar.m4 | 123 + cpp/thirdparty/gtest-1.7.0/m4/ltversion.m4 | 23 + cpp/thirdparty/gtest-1.7.0/m4/lt~obsolete.m4 | 98 + cpp/thirdparty/gtest-1.7.0/make/Makefile | 82 + cpp/thirdparty/gtest-1.7.0/msvc/gtest-md.sln | 45 + .../gtest-1.7.0/msvc/gtest-md.vcproj | 126 + cpp/thirdparty/gtest-1.7.0/msvc/gtest.sln | 45 + cpp/thirdparty/gtest-1.7.0/msvc/gtest.vcproj | 126 + .../gtest-1.7.0/msvc/gtest_main-md.vcproj | 129 + .../gtest-1.7.0/msvc/gtest_main.vcproj | 129 + .../msvc/gtest_prod_test-md.vcproj | 164 + .../gtest-1.7.0/msvc/gtest_prod_test.vcproj | 164 + .../gtest-1.7.0/msvc/gtest_unittest-md.vcproj | 147 + .../gtest-1.7.0/msvc/gtest_unittest.vcproj | 147 + .../gtest-1.7.0/samples/prime_tables.h | 123 + cpp/thirdparty/gtest-1.7.0/samples/sample1.cc | 68 + cpp/thirdparty/gtest-1.7.0/samples/sample1.h | 43 + .../gtest-1.7.0/samples/sample10_unittest.cc | 144 + .../gtest-1.7.0/samples/sample1_unittest.cc | 153 + cpp/thirdparty/gtest-1.7.0/samples/sample2.cc | 56 + cpp/thirdparty/gtest-1.7.0/samples/sample2.h | 85 + .../gtest-1.7.0/samples/sample2_unittest.cc | 109 + .../gtest-1.7.0/samples/sample3-inl.h | 172 + .../gtest-1.7.0/samples/sample3_unittest.cc | 151 + cpp/thirdparty/gtest-1.7.0/samples/sample4.cc | 46 + cpp/thirdparty/gtest-1.7.0/samples/sample4.h | 53 + .../gtest-1.7.0/samples/sample4_unittest.cc | 45 + .../gtest-1.7.0/samples/sample5_unittest.cc | 199 + .../gtest-1.7.0/samples/sample6_unittest.cc | 224 + .../gtest-1.7.0/samples/sample7_unittest.cc | 130 + .../gtest-1.7.0/samples/sample8_unittest.cc | 173 + .../gtest-1.7.0/samples/sample9_unittest.cc | 160 + .../gtest-1.7.0/scripts/fuse_gtest_files.py | 250 + .../scripts/gen_gtest_pred_impl.py | 730 + .../gtest-1.7.0/scripts/gtest-config.in | 274 + cpp/thirdparty/gtest-1.7.0/scripts/pump.py | 855 + .../gtest-1.7.0/scripts/test/Makefile | 59 + cpp/thirdparty/gtest-1.7.0/src/gtest-all.cc | 48 + .../gtest-1.7.0/src/gtest-death-test.cc | 1344 ++ .../gtest-1.7.0/src/gtest-filepath.cc | 382 + .../gtest-1.7.0/src/gtest-internal-inl.h | 1218 + cpp/thirdparty/gtest-1.7.0/src/gtest-port.cc | 805 + .../gtest-1.7.0/src/gtest-printers.cc | 363 + .../gtest-1.7.0/src/gtest-test-part.cc | 110 + .../gtest-1.7.0/src/gtest-typed-test.cc | 110 + cpp/thirdparty/gtest-1.7.0/src/gtest.cc | 5015 ++++ cpp/thirdparty/gtest-1.7.0/src/gtest_main.cc | 38 + .../test/gtest-death-test_ex_test.cc | 93 + .../gtest-1.7.0/test/gtest-death-test_test.cc | 1367 ++ .../gtest-1.7.0/test/gtest-filepath_test.cc | 680 + .../gtest-1.7.0/test/gtest-linked_ptr_test.cc | 154 + .../gtest-1.7.0/test/gtest-listener_test.cc | 310 + .../gtest-1.7.0/test/gtest-message_test.cc | 159 + .../gtest-1.7.0/test/gtest-options_test.cc | 215 + .../test/gtest-param-test2_test.cc | 65 + .../gtest-1.7.0/test/gtest-param-test_test.cc | 904 + .../gtest-1.7.0/test/gtest-param-test_test.h | 57 + .../gtest-1.7.0/test/gtest-port_test.cc | 1253 + .../gtest-1.7.0/test/gtest-printers_test.cc | 1566 ++ .../gtest-1.7.0/test/gtest-test-part_test.cc | 208 + .../gtest-1.7.0/test/gtest-tuple_test.cc | 320 + .../test/gtest-typed-test2_test.cc | 45 + .../gtest-1.7.0/test/gtest-typed-test_test.cc | 360 + .../gtest-1.7.0/test/gtest-typed-test_test.h | 66 + .../test/gtest-unittest-api_test.cc | 341 + .../gtest-1.7.0/test/gtest_all_test.cc | 47 + .../test/gtest_break_on_failure_unittest.py | 212 + .../test/gtest_break_on_failure_unittest_.cc | 88 + .../test/gtest_catch_exceptions_test.py | 237 + .../test/gtest_catch_exceptions_test_.cc | 311 + .../gtest-1.7.0/test/gtest_color_test.py | 130 + .../gtest-1.7.0/test/gtest_color_test_.cc | 71 + .../gtest-1.7.0/test/gtest_env_var_test.py | 103 + .../gtest-1.7.0/test/gtest_env_var_test_.cc | 126 + .../test/gtest_environment_test.cc | 192 + .../gtest-1.7.0/test/gtest_filter_unittest.py | 633 + .../test/gtest_filter_unittest_.cc | 140 + .../gtest-1.7.0/test/gtest_help_test.py | 172 + .../gtest-1.7.0/test/gtest_help_test_.cc | 46 + .../test/gtest_list_tests_unittest.py | 207 + .../test/gtest_list_tests_unittest_.cc | 157 + .../gtest-1.7.0/test/gtest_main_unittest.cc | 45 + .../test/gtest_no_test_unittest.cc | 56 + .../gtest-1.7.0/test/gtest_output_test.py | 335 + .../gtest-1.7.0/test/gtest_output_test_.cc | 1034 + .../test/gtest_output_test_golden_lin.txt | 720 + .../test/gtest_pred_impl_unittest.cc | 2427 ++ .../test/gtest_premature_exit_test.cc | 141 + .../gtest-1.7.0/test/gtest_prod_test.cc | 57 + .../gtest-1.7.0/test/gtest_repeat_test.cc | 253 + .../gtest-1.7.0/test/gtest_shuffle_test.py | 325 + .../gtest-1.7.0/test/gtest_shuffle_test_.cc | 103 + .../test/gtest_sole_header_test.cc | 57 + .../gtest-1.7.0/test/gtest_stress_test.cc | 256 + .../gtest-1.7.0/test/gtest_test_utils.py | 320 + .../test/gtest_throw_on_failure_ex_test.cc | 92 + .../test/gtest_throw_on_failure_test.py | 171 + .../test/gtest_throw_on_failure_test_.cc | 72 + .../test/gtest_uninitialized_test.py | 70 + .../test/gtest_uninitialized_test_.cc | 43 + .../gtest-1.7.0/test/gtest_unittest.cc | 7415 ++++++ .../test/gtest_xml_outfile1_test_.cc | 49 + .../test/gtest_xml_outfile2_test_.cc | 49 + .../test/gtest_xml_outfiles_test.py | 132 + .../test/gtest_xml_output_unittest.py | 307 + .../test/gtest_xml_output_unittest_.cc | 181 + .../gtest-1.7.0/test/gtest_xml_test_utils.py | 194 + cpp/thirdparty/gtest-1.7.0/test/production.cc | 36 + cpp/thirdparty/gtest-1.7.0/test/production.h | 55 + .../xcode/Config/DebugProject.xcconfig | 30 + .../xcode/Config/FrameworkTarget.xcconfig | 17 + .../gtest-1.7.0/xcode/Config/General.xcconfig | 41 + .../xcode/Config/ReleaseProject.xcconfig | 32 + .../xcode/Config/StaticLibraryTarget.xcconfig | 18 + .../xcode/Config/TestTarget.xcconfig | 8 + .../gtest-1.7.0/xcode/Resources/Info.plist | 30 + .../xcode/Samples/FrameworkSample/Info.plist | 28 + .../WidgetFramework.xcodeproj/project.pbxproj | 457 + .../xcode/Samples/FrameworkSample/runtests.sh | 62 + .../xcode/Samples/FrameworkSample/widget.cc | 63 + .../xcode/Samples/FrameworkSample/widget.h | 59 + .../Samples/FrameworkSample/widget_test.cc | 68 + .../gtest-1.7.0/xcode/Scripts/runtests.sh | 65 + .../xcode/Scripts/versiongenerate.py | 100 + .../xcode/gtest.xcodeproj/project.pbxproj | 1135 + 180 files changed, 141104 insertions(+) create mode 100644 cpp/thirdparty/gtest-1.7.0/CHANGES create mode 100644 cpp/thirdparty/gtest-1.7.0/CMakeLists.txt create mode 100644 cpp/thirdparty/gtest-1.7.0/CONTRIBUTORS create mode 100644 cpp/thirdparty/gtest-1.7.0/LICENSE create mode 100644 cpp/thirdparty/gtest-1.7.0/Makefile.am create mode 100644 cpp/thirdparty/gtest-1.7.0/Makefile.in create mode 100644 cpp/thirdparty/gtest-1.7.0/README create mode 100644 cpp/thirdparty/gtest-1.7.0/aclocal.m4 create mode 100755 cpp/thirdparty/gtest-1.7.0/build-aux/config.guess create mode 100644 cpp/thirdparty/gtest-1.7.0/build-aux/config.h.in create mode 100755 cpp/thirdparty/gtest-1.7.0/build-aux/config.sub create mode 100755 cpp/thirdparty/gtest-1.7.0/build-aux/depcomp create mode 100755 cpp/thirdparty/gtest-1.7.0/build-aux/install-sh create mode 100644 cpp/thirdparty/gtest-1.7.0/build-aux/ltmain.sh create mode 100755 cpp/thirdparty/gtest-1.7.0/build-aux/missing create mode 100644 cpp/thirdparty/gtest-1.7.0/cmake/internal_utils.cmake create mode 100644 cpp/thirdparty/gtest-1.7.0/codegear/gtest.cbproj create mode 100644 cpp/thirdparty/gtest-1.7.0/codegear/gtest.groupproj create mode 100644 cpp/thirdparty/gtest-1.7.0/codegear/gtest_all.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/codegear/gtest_link.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/codegear/gtest_main.cbproj create mode 100644 cpp/thirdparty/gtest-1.7.0/codegear/gtest_unittest.cbproj create mode 100755 cpp/thirdparty/gtest-1.7.0/configure create mode 100644 cpp/thirdparty/gtest-1.7.0/configure.ac create mode 100644 cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest-all.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest.h create mode 100644 cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest_main.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-death-test.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-message.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-param-test.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-param-test.h.pump create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-printers.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-spi.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-test-part.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-typed-test.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest_pred_impl.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/gtest_prod.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-filepath.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-internal.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-port.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-string.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h create mode 100644 cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump create mode 100644 cpp/thirdparty/gtest-1.7.0/m4/acx_pthread.m4 create mode 100644 cpp/thirdparty/gtest-1.7.0/m4/gtest.m4 create mode 100644 cpp/thirdparty/gtest-1.7.0/m4/libtool.m4 create mode 100644 cpp/thirdparty/gtest-1.7.0/m4/ltoptions.m4 create mode 100644 cpp/thirdparty/gtest-1.7.0/m4/ltsugar.m4 create mode 100644 cpp/thirdparty/gtest-1.7.0/m4/ltversion.m4 create mode 100644 cpp/thirdparty/gtest-1.7.0/m4/lt~obsolete.m4 create mode 100644 cpp/thirdparty/gtest-1.7.0/make/Makefile create mode 100755 cpp/thirdparty/gtest-1.7.0/msvc/gtest-md.sln create mode 100755 cpp/thirdparty/gtest-1.7.0/msvc/gtest-md.vcproj create mode 100755 cpp/thirdparty/gtest-1.7.0/msvc/gtest.sln create mode 100755 cpp/thirdparty/gtest-1.7.0/msvc/gtest.vcproj create mode 100755 cpp/thirdparty/gtest-1.7.0/msvc/gtest_main-md.vcproj create mode 100755 cpp/thirdparty/gtest-1.7.0/msvc/gtest_main.vcproj create mode 100755 cpp/thirdparty/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj create mode 100755 cpp/thirdparty/gtest-1.7.0/msvc/gtest_prod_test.vcproj create mode 100755 cpp/thirdparty/gtest-1.7.0/msvc/gtest_unittest-md.vcproj create mode 100755 cpp/thirdparty/gtest-1.7.0/msvc/gtest_unittest.vcproj create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/prime_tables.h create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample1.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample1.h create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample10_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample1_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample2.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample2.h create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample2_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample3-inl.h create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample3_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample4.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample4.h create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample4_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample5_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample6_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample7_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample8_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/samples/sample9_unittest.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/scripts/fuse_gtest_files.py create mode 100755 cpp/thirdparty/gtest-1.7.0/scripts/gen_gtest_pred_impl.py create mode 100755 cpp/thirdparty/gtest-1.7.0/scripts/gtest-config.in create mode 100755 cpp/thirdparty/gtest-1.7.0/scripts/pump.py create mode 100644 cpp/thirdparty/gtest-1.7.0/scripts/test/Makefile create mode 100644 cpp/thirdparty/gtest-1.7.0/src/gtest-all.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/src/gtest-death-test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/src/gtest-filepath.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/src/gtest-internal-inl.h create mode 100644 cpp/thirdparty/gtest-1.7.0/src/gtest-port.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/src/gtest-printers.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/src/gtest-test-part.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/src/gtest-typed-test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/src/gtest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/src/gtest_main.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-death-test_ex_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-death-test_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-filepath_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-linked_ptr_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-listener_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-message_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-options_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-param-test2_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-param-test_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-param-test_test.h create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-port_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-printers_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-test-part_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-tuple_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test2_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-typed-test_test.h create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest-unittest-api_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_all_test.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_break_on_failure_unittest_.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_catch_exceptions_test.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_catch_exceptions_test_.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_color_test.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_color_test_.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_env_var_test.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_env_var_test_.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_environment_test.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_filter_unittest.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_filter_unittest_.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_help_test.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_help_test_.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_list_tests_unittest.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_list_tests_unittest_.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_main_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_no_test_unittest.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_output_test.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_output_test_.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_output_test_golden_lin.txt create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_pred_impl_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_premature_exit_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_prod_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_repeat_test.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_shuffle_test.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_shuffle_test_.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_sole_header_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_stress_test.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_test_utils.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_ex_test.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_test.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_throw_on_failure_test_.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_uninitialized_test.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_uninitialized_test_.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_unittest.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfile1_test_.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfile2_test_.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_xml_outfiles_test.py create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_xml_output_unittest.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/gtest_xml_output_unittest_.cc create mode 100755 cpp/thirdparty/gtest-1.7.0/test/gtest_xml_test_utils.py create mode 100644 cpp/thirdparty/gtest-1.7.0/test/production.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/test/production.h create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Config/DebugProject.xcconfig create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Config/FrameworkTarget.xcconfig create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Config/General.xcconfig create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Config/ReleaseProject.xcconfig create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Config/StaticLibraryTarget.xcconfig create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Config/TestTarget.xcconfig create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Resources/Info.plist create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/Info.plist create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/runtests.sh create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget.h create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Samples/FrameworkSample/widget_test.cc create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/Scripts/runtests.sh create mode 100755 cpp/thirdparty/gtest-1.7.0/xcode/Scripts/versiongenerate.py create mode 100644 cpp/thirdparty/gtest-1.7.0/xcode/gtest.xcodeproj/project.pbxproj diff --git a/cpp/thirdparty/gtest-1.7.0/CHANGES b/cpp/thirdparty/gtest-1.7.0/CHANGES new file mode 100644 index 000000000..055213242 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/CHANGES @@ -0,0 +1,157 @@ +Changes for 1.7.0: + +* New feature: death tests are supported on OpenBSD and in iOS + simulator now. +* New feature: Google Test now implements a protocol to allow + a test runner to detect that a test program has exited + prematurely and report it as a failure (before it would be + falsely reported as a success if the exit code is 0). +* New feature: Test::RecordProperty() can now be used outside of the + lifespan of a test method, in which case it will be attributed to + the current test case or the test program in the XML report. +* New feature (potentially breaking): --gtest_list_tests now prints + the type parameters and value parameters for each test. +* Improvement: char pointers and char arrays are now escaped properly + in failure messages. +* Improvement: failure summary in XML reports now includes file and + line information. +* Improvement: the XML element now has a timestamp attribute. +* Improvement: When --gtest_filter is specified, XML report now doesn't + contain information about tests that are filtered out. +* Fixed the bug where long --gtest_filter flag values are truncated in + death tests. +* Potentially breaking change: RUN_ALL_TESTS() is now implemented as a + function instead of a macro in order to work better with Clang. +* Compatibility fixes with C++ 11 and various platforms. +* Bug/warning fixes. + +Changes for 1.6.0: + +* New feature: ADD_FAILURE_AT() for reporting a test failure at the + given source location -- useful for writing testing utilities. +* New feature: the universal value printer is moved from Google Mock + to Google Test. +* New feature: type parameters and value parameters are reported in + the XML report now. +* A gtest_disable_pthreads CMake option. +* Colored output works in GNU Screen sessions now. +* Parameters of value-parameterized tests are now printed in the + textual output. +* Failures from ad hoc test assertions run before RUN_ALL_TESTS() are + now correctly reported. +* Arguments of ASSERT_XY and EXPECT_XY no longer need to support << to + ostream. +* More complete handling of exceptions. +* GTEST_ASSERT_XY can be used instead of ASSERT_XY in case the latter + name is already used by another library. +* --gtest_catch_exceptions is now true by default, allowing a test + program to continue after an exception is thrown. +* Value-parameterized test fixtures can now derive from Test and + WithParamInterface separately, easing conversion of legacy tests. +* Death test messages are clearly marked to make them more + distinguishable from other messages. +* Compatibility fixes for Android, Google Native Client, MinGW, HP UX, + PowerPC, Lucid autotools, libCStd, Sun C++, Borland C++ Builder (Code Gear), + IBM XL C++ (Visual Age C++), and C++0x. +* Bug fixes and implementation clean-ups. +* Potentially incompatible changes: disables the harmful 'make install' + command in autotools. + +Changes for 1.5.0: + + * New feature: assertions can be safely called in multiple threads + where the pthreads library is available. + * New feature: predicates used inside EXPECT_TRUE() and friends + can now generate custom failure messages. + * New feature: Google Test can now be compiled as a DLL. + * New feature: fused source files are included. + * New feature: prints help when encountering unrecognized Google Test flags. + * Experimental feature: CMake build script (requires CMake 2.6.4+). + * Experimental feature: the Pump script for meta programming. + * double values streamed to an assertion are printed with enough precision + to differentiate any two different values. + * Google Test now works on Solaris and AIX. + * Build and test script improvements. + * Bug fixes and implementation clean-ups. + + Potentially breaking changes: + + * Stopped supporting VC++ 7.1 with exceptions disabled. + * Dropped support for 'make install'. + +Changes for 1.4.0: + + * New feature: the event listener API + * New feature: test shuffling + * New feature: the XML report format is closer to junitreport and can + be parsed by Hudson now. + * New feature: when a test runs under Visual Studio, its failures are + integrated in the IDE. + * New feature: /MD(d) versions of VC++ projects. + * New feature: elapsed time for the tests is printed by default. + * New feature: comes with a TR1 tuple implementation such that Boost + is no longer needed for Combine(). + * New feature: EXPECT_DEATH_IF_SUPPORTED macro and friends. + * New feature: the Xcode project can now produce static gtest + libraries in addition to a framework. + * Compatibility fixes for Solaris, Cygwin, minGW, Windows Mobile, + Symbian, gcc, and C++Builder. + * Bug fixes and implementation clean-ups. + +Changes for 1.3.0: + + * New feature: death tests on Windows, Cygwin, and Mac. + * New feature: ability to use Google Test assertions in other testing + frameworks. + * New feature: ability to run disabled test via + --gtest_also_run_disabled_tests. + * New feature: the --help flag for printing the usage. + * New feature: access to Google Test flag values in user code. + * New feature: a script that packs Google Test into one .h and one + .cc file for easy deployment. + * New feature: support for distributing test functions to multiple + machines (requires support from the test runner). + * Bug fixes and implementation clean-ups. + +Changes for 1.2.1: + + * Compatibility fixes for Linux IA-64 and IBM z/OS. + * Added support for using Boost and other TR1 implementations. + * Changes to the build scripts to support upcoming release of Google C++ + Mocking Framework. + * Added Makefile to the distribution package. + * Improved build instructions in README. + +Changes for 1.2.0: + + * New feature: value-parameterized tests. + * New feature: the ASSERT/EXPECT_(NON)FATAL_FAILURE(_ON_ALL_THREADS) + macros. + * Changed the XML report format to match JUnit/Ant's. + * Added tests to the Xcode project. + * Added scons/SConscript for building with SCons. + * Added src/gtest-all.cc for building Google Test from a single file. + * Fixed compatibility with Solaris and z/OS. + * Enabled running Python tests on systems with python 2.3 installed, + e.g. Mac OS X 10.4. + * Bug fixes. + +Changes for 1.1.0: + + * New feature: type-parameterized tests. + * New feature: exception assertions. + * New feature: printing elapsed time of tests. + * Improved the robustness of death tests. + * Added an Xcode project and samples. + * Adjusted the output format on Windows to be understandable by Visual Studio. + * Minor bug fixes. + +Changes for 1.0.1: + + * Added project files for Visual Studio 7.1. + * Fixed issues with compiling on Mac OS X. + * Fixed issues with compiling on Cygwin. + +Changes for 1.0.0: + + * Initial Open Source release of Google Test diff --git a/cpp/thirdparty/gtest-1.7.0/CMakeLists.txt b/cpp/thirdparty/gtest-1.7.0/CMakeLists.txt new file mode 100644 index 000000000..57470c84f --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/CMakeLists.txt @@ -0,0 +1,252 @@ +######################################################################## +# CMake build script for Google Test. +# +# To run the tests for Google Test itself on Linux, use 'make test' or +# ctest. You can select which tests to run using 'ctest -R regex'. +# For more options, run 'ctest --help'. + +# BUILD_SHARED_LIBS is a standard CMake variable, but we declare it here to +# make it prominent in the GUI. +option(BUILD_SHARED_LIBS "Build shared libraries (DLLs)." OFF) + +# When other libraries are using a shared version of runtime libraries, +# Google Test also has to use one. +option( + gtest_force_shared_crt + "Use shared (DLL) run-time lib even when Google Test is built as static lib." + OFF) + +option(gtest_build_tests "Build all of gtest's own tests." OFF) + +option(gtest_build_samples "Build gtest's sample programs." OFF) + +option(gtest_disable_pthreads "Disable uses of pthreads in gtest." OFF) + +# Defines pre_project_set_up_hermetic_build() and set_up_hermetic_build(). +include(cmake/hermetic_build.cmake OPTIONAL) + +if (COMMAND pre_project_set_up_hermetic_build) + pre_project_set_up_hermetic_build() +endif() + +######################################################################## +# +# Project-wide settings + +# Name of the project. +# +# CMake files in this project can refer to the root source directory +# as ${gtest_SOURCE_DIR} and to the root binary directory as +# ${gtest_BINARY_DIR}. +# Language "C" is required for find_package(Threads). +project(gtest CXX C) +cmake_minimum_required(VERSION 2.6.2) + +if (COMMAND set_up_hermetic_build) + set_up_hermetic_build() +endif() + +# Define helper functions and macros used by Google Test. +include(cmake/internal_utils.cmake) + +config_compiler_and_linker() # Defined in internal_utils.cmake. + +# Where Google Test's .h files can be found. +include_directories( + ${gtest_SOURCE_DIR}/include + ${gtest_SOURCE_DIR}) + +# Where Google Test's libraries can be found. +link_directories(${gtest_BINARY_DIR}/src) + +######################################################################## +# +# Defines the gtest & gtest_main libraries. User tests should link +# with one of them. + +# Google Test libraries. We build them using more strict warnings than what +# are used for other targets, to ensure that gtest can be compiled by a user +# aggressive about warnings. +cxx_library(gtest "${cxx_strict}" src/gtest-all.cc) +cxx_library(gtest_main "${cxx_strict}" src/gtest_main.cc) +target_link_libraries(gtest_main gtest) + +######################################################################## +# +# Samples on how to link user tests with gtest or gtest_main. +# +# They are not built by default. To build them, set the +# gtest_build_samples option to ON. You can do it by running ccmake +# or specifying the -Dgtest_build_samples=ON flag when running cmake. + +if (gtest_build_samples) + cxx_executable(sample1_unittest samples gtest_main samples/sample1.cc) + cxx_executable(sample2_unittest samples gtest_main samples/sample2.cc) + cxx_executable(sample3_unittest samples gtest_main) + cxx_executable(sample4_unittest samples gtest_main samples/sample4.cc) + cxx_executable(sample5_unittest samples gtest_main samples/sample1.cc) + cxx_executable(sample6_unittest samples gtest_main) + cxx_executable(sample7_unittest samples gtest_main) + cxx_executable(sample8_unittest samples gtest_main) + cxx_executable(sample9_unittest samples gtest) + cxx_executable(sample10_unittest samples gtest) +endif() + +######################################################################## +# +# Google Test's own tests. +# +# You can skip this section if you aren't interested in testing +# Google Test itself. +# +# The tests are not built by default. To build them, set the +# gtest_build_tests option to ON. You can do it by running ccmake +# or specifying the -Dgtest_build_tests=ON flag when running cmake. + +if (gtest_build_tests) + # This must be set in the root directory for the tests to be run by + # 'make test' or ctest. + enable_testing() + + ############################################################ + # C++ tests built with standard compiler flags. + + cxx_test(gtest-death-test_test gtest_main) + cxx_test(gtest_environment_test gtest) + cxx_test(gtest-filepath_test gtest_main) + cxx_test(gtest-linked_ptr_test gtest_main) + cxx_test(gtest-listener_test gtest_main) + cxx_test(gtest_main_unittest gtest_main) + cxx_test(gtest-message_test gtest_main) + cxx_test(gtest_no_test_unittest gtest) + cxx_test(gtest-options_test gtest_main) + cxx_test(gtest-param-test_test gtest + test/gtest-param-test2_test.cc) + cxx_test(gtest-port_test gtest_main) + cxx_test(gtest_pred_impl_unittest gtest_main) + cxx_test(gtest_premature_exit_test gtest + test/gtest_premature_exit_test.cc) + cxx_test(gtest-printers_test gtest_main) + cxx_test(gtest_prod_test gtest_main + test/production.cc) + cxx_test(gtest_repeat_test gtest) + cxx_test(gtest_sole_header_test gtest_main) + cxx_test(gtest_stress_test gtest) + cxx_test(gtest-test-part_test gtest_main) + cxx_test(gtest_throw_on_failure_ex_test gtest) + cxx_test(gtest-typed-test_test gtest_main + test/gtest-typed-test2_test.cc) + cxx_test(gtest_unittest gtest_main) + cxx_test(gtest-unittest-api_test gtest) + + ############################################################ + # C++ tests built with non-standard compiler flags. + + # MSVC 7.1 does not support STL with exceptions disabled. + if (NOT MSVC OR MSVC_VERSION GREATER 1310) + cxx_library(gtest_no_exception "${cxx_no_exception}" + src/gtest-all.cc) + cxx_library(gtest_main_no_exception "${cxx_no_exception}" + src/gtest-all.cc src/gtest_main.cc) + endif() + cxx_library(gtest_main_no_rtti "${cxx_no_rtti}" + src/gtest-all.cc src/gtest_main.cc) + + cxx_test_with_flags(gtest-death-test_ex_nocatch_test + "${cxx_exception} -DGTEST_ENABLE_CATCH_EXCEPTIONS_=0" + gtest test/gtest-death-test_ex_test.cc) + cxx_test_with_flags(gtest-death-test_ex_catch_test + "${cxx_exception} -DGTEST_ENABLE_CATCH_EXCEPTIONS_=1" + gtest test/gtest-death-test_ex_test.cc) + + cxx_test_with_flags(gtest_no_rtti_unittest "${cxx_no_rtti}" + gtest_main_no_rtti test/gtest_unittest.cc) + + cxx_shared_library(gtest_dll "${cxx_default}" + src/gtest-all.cc src/gtest_main.cc) + + cxx_executable_with_flags(gtest_dll_test_ "${cxx_default}" + gtest_dll test/gtest_all_test.cc) + set_target_properties(gtest_dll_test_ + PROPERTIES + COMPILE_DEFINITIONS "GTEST_LINKED_AS_SHARED_LIBRARY=1") + + if (NOT MSVC OR NOT MSVC_VERSION EQUAL 1600) + # The C++ Standard specifies tuple_element. + # Yet MSVC 10's declares tuple_element. + # That declaration conflicts with our own standard-conforming + # tuple implementation. Therefore using our own tuple with + # MSVC 10 doesn't compile. + cxx_library(gtest_main_use_own_tuple "${cxx_use_own_tuple}" + src/gtest-all.cc src/gtest_main.cc) + + cxx_test_with_flags(gtest-tuple_test "${cxx_use_own_tuple}" + gtest_main_use_own_tuple test/gtest-tuple_test.cc) + + cxx_test_with_flags(gtest_use_own_tuple_test "${cxx_use_own_tuple}" + gtest_main_use_own_tuple + test/gtest-param-test_test.cc test/gtest-param-test2_test.cc) + endif() + + ############################################################ + # Python tests. + + cxx_executable(gtest_break_on_failure_unittest_ test gtest) + py_test(gtest_break_on_failure_unittest) + + # MSVC 7.1 does not support STL with exceptions disabled. + if (NOT MSVC OR MSVC_VERSION GREATER 1310) + cxx_executable_with_flags( + gtest_catch_exceptions_no_ex_test_ + "${cxx_no_exception}" + gtest_main_no_exception + test/gtest_catch_exceptions_test_.cc) + endif() + + cxx_executable_with_flags( + gtest_catch_exceptions_ex_test_ + "${cxx_exception}" + gtest_main + test/gtest_catch_exceptions_test_.cc) + py_test(gtest_catch_exceptions_test) + + cxx_executable(gtest_color_test_ test gtest) + py_test(gtest_color_test) + + cxx_executable(gtest_env_var_test_ test gtest) + py_test(gtest_env_var_test) + + cxx_executable(gtest_filter_unittest_ test gtest) + py_test(gtest_filter_unittest) + + cxx_executable(gtest_help_test_ test gtest_main) + py_test(gtest_help_test) + + cxx_executable(gtest_list_tests_unittest_ test gtest) + py_test(gtest_list_tests_unittest) + + cxx_executable(gtest_output_test_ test gtest) + py_test(gtest_output_test) + + cxx_executable(gtest_shuffle_test_ test gtest) + py_test(gtest_shuffle_test) + + # MSVC 7.1 does not support STL with exceptions disabled. + if (NOT MSVC OR MSVC_VERSION GREATER 1310) + cxx_executable(gtest_throw_on_failure_test_ test gtest_no_exception) + set_target_properties(gtest_throw_on_failure_test_ + PROPERTIES + COMPILE_FLAGS "${cxx_no_exception}") + py_test(gtest_throw_on_failure_test) + endif() + + cxx_executable(gtest_uninitialized_test_ test gtest) + py_test(gtest_uninitialized_test) + + cxx_executable(gtest_xml_outfile1_test_ test gtest_main) + cxx_executable(gtest_xml_outfile2_test_ test gtest_main) + py_test(gtest_xml_outfiles_test) + + cxx_executable(gtest_xml_output_unittest_ test gtest) + py_test(gtest_xml_output_unittest) +endif() diff --git a/cpp/thirdparty/gtest-1.7.0/CONTRIBUTORS b/cpp/thirdparty/gtest-1.7.0/CONTRIBUTORS new file mode 100644 index 000000000..feae2fc04 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/CONTRIBUTORS @@ -0,0 +1,37 @@ +# This file contains a list of people who've made non-trivial +# contribution to the Google C++ Testing Framework project. People +# who commit code to the project are encouraged to add their names +# here. Please keep the list sorted by first names. + +Ajay Joshi +Balázs Dán +Bharat Mediratta +Chandler Carruth +Chris Prince +Chris Taylor +Dan Egnor +Eric Roman +Hady Zalek +Jeffrey Yasskin +Jói Sigurðsson +Keir Mierle +Keith Ray +Kenton Varda +Manuel Klimek +Markus Heule +Mika Raento +Miklós Fazekas +Pasi Valminen +Patrick Hanna +Patrick Riley +Peter Kaminski +Preston Jackson +Rainer Klaffenboeck +Russ Cox +Russ Rufer +Sean Mcafee +Sigurður Ásgeirsson +Tracy Bialik +Vadim Berman +Vlad Losev +Zhanyong Wan diff --git a/cpp/thirdparty/gtest-1.7.0/LICENSE b/cpp/thirdparty/gtest-1.7.0/LICENSE new file mode 100644 index 000000000..1941a11f8 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/LICENSE @@ -0,0 +1,28 @@ +Copyright 2008, Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/cpp/thirdparty/gtest-1.7.0/Makefile.am b/cpp/thirdparty/gtest-1.7.0/Makefile.am new file mode 100644 index 000000000..9c96b4257 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/Makefile.am @@ -0,0 +1,306 @@ +# Automake file + +ACLOCAL_AMFLAGS = -I m4 + +# Nonstandard package files for distribution +EXTRA_DIST = \ + CHANGES \ + CONTRIBUTORS \ + LICENSE \ + include/gtest/gtest-param-test.h.pump \ + include/gtest/internal/gtest-param-util-generated.h.pump \ + include/gtest/internal/gtest-tuple.h.pump \ + include/gtest/internal/gtest-type-util.h.pump \ + make/Makefile \ + scripts/fuse_gtest_files.py \ + scripts/gen_gtest_pred_impl.py \ + scripts/pump.py \ + scripts/test/Makefile + +# gtest source files that we don't compile directly. They are +# #included by gtest-all.cc. +GTEST_SRC = \ + src/gtest-death-test.cc \ + src/gtest-filepath.cc \ + src/gtest-internal-inl.h \ + src/gtest-port.cc \ + src/gtest-printers.cc \ + src/gtest-test-part.cc \ + src/gtest-typed-test.cc \ + src/gtest.cc + +EXTRA_DIST += $(GTEST_SRC) + +# Sample files that we don't compile. +EXTRA_DIST += \ + samples/prime_tables.h \ + samples/sample2_unittest.cc \ + samples/sample3_unittest.cc \ + samples/sample4_unittest.cc \ + samples/sample5_unittest.cc \ + samples/sample6_unittest.cc \ + samples/sample7_unittest.cc \ + samples/sample8_unittest.cc \ + samples/sample9_unittest.cc + +# C++ test files that we don't compile directly. +EXTRA_DIST += \ + test/gtest-death-test_ex_test.cc \ + test/gtest-death-test_test.cc \ + test/gtest-filepath_test.cc \ + test/gtest-linked_ptr_test.cc \ + test/gtest-listener_test.cc \ + test/gtest-message_test.cc \ + test/gtest-options_test.cc \ + test/gtest-param-test2_test.cc \ + test/gtest-param-test2_test.cc \ + test/gtest-param-test_test.cc \ + test/gtest-param-test_test.cc \ + test/gtest-param-test_test.h \ + test/gtest-port_test.cc \ + test/gtest_premature_exit_test.cc \ + test/gtest-printers_test.cc \ + test/gtest-test-part_test.cc \ + test/gtest-tuple_test.cc \ + test/gtest-typed-test2_test.cc \ + test/gtest-typed-test_test.cc \ + test/gtest-typed-test_test.h \ + test/gtest-unittest-api_test.cc \ + test/gtest_break_on_failure_unittest_.cc \ + test/gtest_catch_exceptions_test_.cc \ + test/gtest_color_test_.cc \ + test/gtest_env_var_test_.cc \ + test/gtest_environment_test.cc \ + test/gtest_filter_unittest_.cc \ + test/gtest_help_test_.cc \ + test/gtest_list_tests_unittest_.cc \ + test/gtest_main_unittest.cc \ + test/gtest_no_test_unittest.cc \ + test/gtest_output_test_.cc \ + test/gtest_pred_impl_unittest.cc \ + test/gtest_prod_test.cc \ + test/gtest_repeat_test.cc \ + test/gtest_shuffle_test_.cc \ + test/gtest_sole_header_test.cc \ + test/gtest_stress_test.cc \ + test/gtest_throw_on_failure_ex_test.cc \ + test/gtest_throw_on_failure_test_.cc \ + test/gtest_uninitialized_test_.cc \ + test/gtest_unittest.cc \ + test/gtest_unittest.cc \ + test/gtest_xml_outfile1_test_.cc \ + test/gtest_xml_outfile2_test_.cc \ + test/gtest_xml_output_unittest_.cc \ + test/production.cc \ + test/production.h + +# Python tests that we don't run. +EXTRA_DIST += \ + test/gtest_break_on_failure_unittest.py \ + test/gtest_catch_exceptions_test.py \ + test/gtest_color_test.py \ + test/gtest_env_var_test.py \ + test/gtest_filter_unittest.py \ + test/gtest_help_test.py \ + test/gtest_list_tests_unittest.py \ + test/gtest_output_test.py \ + test/gtest_output_test_golden_lin.txt \ + test/gtest_shuffle_test.py \ + test/gtest_test_utils.py \ + test/gtest_throw_on_failure_test.py \ + test/gtest_uninitialized_test.py \ + test/gtest_xml_outfiles_test.py \ + test/gtest_xml_output_unittest.py \ + test/gtest_xml_test_utils.py + +# CMake script +EXTRA_DIST += \ + CMakeLists.txt \ + cmake/internal_utils.cmake + +# MSVC project files +EXTRA_DIST += \ + msvc/gtest-md.sln \ + msvc/gtest-md.vcproj \ + msvc/gtest.sln \ + msvc/gtest.vcproj \ + msvc/gtest_main-md.vcproj \ + msvc/gtest_main.vcproj \ + msvc/gtest_prod_test-md.vcproj \ + msvc/gtest_prod_test.vcproj \ + msvc/gtest_unittest-md.vcproj \ + msvc/gtest_unittest.vcproj + +# xcode project files +EXTRA_DIST += \ + xcode/Config/DebugProject.xcconfig \ + xcode/Config/FrameworkTarget.xcconfig \ + xcode/Config/General.xcconfig \ + xcode/Config/ReleaseProject.xcconfig \ + xcode/Config/StaticLibraryTarget.xcconfig \ + xcode/Config/TestTarget.xcconfig \ + xcode/Resources/Info.plist \ + xcode/Scripts/runtests.sh \ + xcode/Scripts/versiongenerate.py \ + xcode/gtest.xcodeproj/project.pbxproj + +# xcode sample files +EXTRA_DIST += \ + xcode/Samples/FrameworkSample/Info.plist \ + xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj \ + xcode/Samples/FrameworkSample/runtests.sh \ + xcode/Samples/FrameworkSample/widget.cc \ + xcode/Samples/FrameworkSample/widget.h \ + xcode/Samples/FrameworkSample/widget_test.cc + +# C++Builder project files +EXTRA_DIST += \ + codegear/gtest.cbproj \ + codegear/gtest.groupproj \ + codegear/gtest_all.cc \ + codegear/gtest_link.cc \ + codegear/gtest_main.cbproj \ + codegear/gtest_unittest.cbproj + +# Distribute and install M4 macro +m4datadir = $(datadir)/aclocal +m4data_DATA = m4/gtest.m4 +EXTRA_DIST += $(m4data_DATA) + +# We define the global AM_CPPFLAGS as everything we compile includes from these +# directories. +AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/include + +# Modifies compiler and linker flags for pthreads compatibility. +if HAVE_PTHREADS + AM_CXXFLAGS = @PTHREAD_CFLAGS@ -DGTEST_HAS_PTHREAD=1 + AM_LIBS = @PTHREAD_LIBS@ +else + AM_CXXFLAGS = -DGTEST_HAS_PTHREAD=0 +endif + +# Build rules for libraries. +lib_LTLIBRARIES = lib/libgtest.la lib/libgtest_main.la + +lib_libgtest_la_SOURCES = src/gtest-all.cc + +pkginclude_HEADERS = \ + include/gtest/gtest-death-test.h \ + include/gtest/gtest-message.h \ + include/gtest/gtest-param-test.h \ + include/gtest/gtest-printers.h \ + include/gtest/gtest-spi.h \ + include/gtest/gtest-test-part.h \ + include/gtest/gtest-typed-test.h \ + include/gtest/gtest.h \ + include/gtest/gtest_pred_impl.h \ + include/gtest/gtest_prod.h + +pkginclude_internaldir = $(pkgincludedir)/internal +pkginclude_internal_HEADERS = \ + include/gtest/internal/gtest-death-test-internal.h \ + include/gtest/internal/gtest-filepath.h \ + include/gtest/internal/gtest-internal.h \ + include/gtest/internal/gtest-linked_ptr.h \ + include/gtest/internal/gtest-param-util-generated.h \ + include/gtest/internal/gtest-param-util.h \ + include/gtest/internal/gtest-port.h \ + include/gtest/internal/gtest-string.h \ + include/gtest/internal/gtest-tuple.h \ + include/gtest/internal/gtest-type-util.h + +lib_libgtest_main_la_SOURCES = src/gtest_main.cc +lib_libgtest_main_la_LIBADD = lib/libgtest.la + +# Bulid rules for samples and tests. Automake's naming for some of +# these variables isn't terribly obvious, so this is a brief +# reference: +# +# TESTS -- Programs run automatically by "make check" +# check_PROGRAMS -- Programs built by "make check" but not necessarily run + +noinst_LTLIBRARIES = samples/libsamples.la + +samples_libsamples_la_SOURCES = \ + samples/sample1.cc \ + samples/sample1.h \ + samples/sample2.cc \ + samples/sample2.h \ + samples/sample3-inl.h \ + samples/sample4.cc \ + samples/sample4.h + +TESTS= +TESTS_ENVIRONMENT = GTEST_SOURCE_DIR="$(srcdir)/test" \ + GTEST_BUILD_DIR="$(top_builddir)/test" +check_PROGRAMS= + +# A simple sample on using gtest. +TESTS += samples/sample1_unittest +check_PROGRAMS += samples/sample1_unittest +samples_sample1_unittest_SOURCES = samples/sample1_unittest.cc +samples_sample1_unittest_LDADD = lib/libgtest_main.la \ + lib/libgtest.la \ + samples/libsamples.la + +# Another sample. It also verifies that libgtest works. +TESTS += samples/sample10_unittest +check_PROGRAMS += samples/sample10_unittest +samples_sample10_unittest_SOURCES = samples/sample10_unittest.cc +samples_sample10_unittest_LDADD = lib/libgtest.la + +# This tests most constructs of gtest and verifies that libgtest_main +# and libgtest work. +TESTS += test/gtest_all_test +check_PROGRAMS += test/gtest_all_test +test_gtest_all_test_SOURCES = test/gtest_all_test.cc +test_gtest_all_test_LDADD = lib/libgtest_main.la \ + lib/libgtest.la + +# Tests that fused gtest files compile and work. +FUSED_GTEST_SRC = \ + fused-src/gtest/gtest-all.cc \ + fused-src/gtest/gtest.h \ + fused-src/gtest/gtest_main.cc + +if HAVE_PYTHON +TESTS += test/fused_gtest_test +check_PROGRAMS += test/fused_gtest_test +test_fused_gtest_test_SOURCES = $(FUSED_GTEST_SRC) \ + samples/sample1.cc samples/sample1_unittest.cc +test_fused_gtest_test_CPPFLAGS = -I"$(srcdir)/fused-src" + +# Build rules for putting fused Google Test files into the distribution +# package. The user can also create those files by manually running +# scripts/fuse_gtest_files.py. +$(test_fused_gtest_test_SOURCES): fused-gtest + +fused-gtest: $(pkginclude_HEADERS) $(pkginclude_internal_HEADERS) \ + $(GTEST_SRC) src/gtest-all.cc src/gtest_main.cc \ + scripts/fuse_gtest_files.py + mkdir -p "$(srcdir)/fused-src" + chmod -R u+w "$(srcdir)/fused-src" + rm -f "$(srcdir)/fused-src/gtest/gtest-all.cc" + rm -f "$(srcdir)/fused-src/gtest/gtest.h" + "$(srcdir)/scripts/fuse_gtest_files.py" "$(srcdir)/fused-src" + cp -f "$(srcdir)/src/gtest_main.cc" "$(srcdir)/fused-src/gtest/" + +maintainer-clean-local: + rm -rf "$(srcdir)/fused-src" +endif + +# Death tests may produce core dumps in the build directory. In case +# this happens, clean them to keep distcleancheck happy. +CLEANFILES = core + +# Disables 'make install' as installing a compiled version of Google +# Test can lead to undefined behavior due to violation of the +# One-Definition Rule. + +install-exec-local: + echo "'make install' is dangerous and not supported. Instead, see README for how to integrate Google Test into your build system." + false + +install-data-local: + echo "'make install' is dangerous and not supported. Instead, see README for how to integrate Google Test into your build system." + false diff --git a/cpp/thirdparty/gtest-1.7.0/Makefile.in b/cpp/thirdparty/gtest-1.7.0/Makefile.in new file mode 100644 index 000000000..874de7473 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/Makefile.in @@ -0,0 +1,1360 @@ +# Makefile.in generated by automake 1.11.3 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +# Automake file + + + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +TESTS = samples/sample1_unittest$(EXEEXT) \ + samples/sample10_unittest$(EXEEXT) \ + test/gtest_all_test$(EXEEXT) $(am__EXEEXT_1) +check_PROGRAMS = samples/sample1_unittest$(EXEEXT) \ + samples/sample10_unittest$(EXEEXT) \ + test/gtest_all_test$(EXEEXT) $(am__EXEEXT_1) +@HAVE_PYTHON_TRUE@am__append_1 = test/fused_gtest_test +@HAVE_PYTHON_TRUE@am__append_2 = test/fused_gtest_test +subdir = . +DIST_COMMON = README $(am__configure_deps) $(pkginclude_HEADERS) \ + $(pkginclude_internal_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(top_srcdir)/build-aux/config.h.in \ + $(top_srcdir)/configure $(top_srcdir)/scripts/gtest-config.in \ + build-aux/config.guess build-aux/config.sub build-aux/depcomp \ + build-aux/install-sh build-aux/ltmain.sh build-aux/missing +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/acx_pthread.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/build-aux/config.h +CONFIG_CLEAN_FILES = scripts/gtest-config +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(m4datadir)" \ + "$(DESTDIR)$(pkgincludedir)" \ + "$(DESTDIR)$(pkginclude_internaldir)" +LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES) +lib_libgtest_la_LIBADD = +am__dirstamp = $(am__leading_dot)dirstamp +am_lib_libgtest_la_OBJECTS = src/gtest-all.lo +lib_libgtest_la_OBJECTS = $(am_lib_libgtest_la_OBJECTS) +lib_libgtest_main_la_DEPENDENCIES = lib/libgtest.la +am_lib_libgtest_main_la_OBJECTS = src/gtest_main.lo +lib_libgtest_main_la_OBJECTS = $(am_lib_libgtest_main_la_OBJECTS) +samples_libsamples_la_LIBADD = +am_samples_libsamples_la_OBJECTS = samples/sample1.lo \ + samples/sample2.lo samples/sample4.lo +samples_libsamples_la_OBJECTS = $(am_samples_libsamples_la_OBJECTS) +@HAVE_PYTHON_TRUE@am__EXEEXT_1 = test/fused_gtest_test$(EXEEXT) +am_samples_sample10_unittest_OBJECTS = \ + samples/sample10_unittest.$(OBJEXT) +samples_sample10_unittest_OBJECTS = \ + $(am_samples_sample10_unittest_OBJECTS) +samples_sample10_unittest_DEPENDENCIES = lib/libgtest.la +am_samples_sample1_unittest_OBJECTS = \ + samples/sample1_unittest.$(OBJEXT) +samples_sample1_unittest_OBJECTS = \ + $(am_samples_sample1_unittest_OBJECTS) +samples_sample1_unittest_DEPENDENCIES = lib/libgtest_main.la \ + lib/libgtest.la samples/libsamples.la +am__test_fused_gtest_test_SOURCES_DIST = fused-src/gtest/gtest-all.cc \ + fused-src/gtest/gtest.h fused-src/gtest/gtest_main.cc \ + samples/sample1.cc samples/sample1_unittest.cc +am__objects_1 = \ + fused-src/gtest/test_fused_gtest_test-gtest-all.$(OBJEXT) \ + fused-src/gtest/test_fused_gtest_test-gtest_main.$(OBJEXT) +@HAVE_PYTHON_TRUE@am_test_fused_gtest_test_OBJECTS = $(am__objects_1) \ +@HAVE_PYTHON_TRUE@ samples/test_fused_gtest_test-sample1.$(OBJEXT) \ +@HAVE_PYTHON_TRUE@ samples/test_fused_gtest_test-sample1_unittest.$(OBJEXT) +test_fused_gtest_test_OBJECTS = $(am_test_fused_gtest_test_OBJECTS) +test_fused_gtest_test_LDADD = $(LDADD) +am_test_gtest_all_test_OBJECTS = test/gtest_all_test.$(OBJEXT) +test_gtest_all_test_OBJECTS = $(am_test_gtest_all_test_OBJECTS) +test_gtest_all_test_DEPENDENCIES = lib/libgtest_main.la \ + lib/libgtest.la +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/build-aux +depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ + $(LDFLAGS) -o $@ +SOURCES = $(lib_libgtest_la_SOURCES) $(lib_libgtest_main_la_SOURCES) \ + $(samples_libsamples_la_SOURCES) \ + $(samples_sample10_unittest_SOURCES) \ + $(samples_sample1_unittest_SOURCES) \ + $(test_fused_gtest_test_SOURCES) \ + $(test_gtest_all_test_SOURCES) +DIST_SOURCES = $(lib_libgtest_la_SOURCES) \ + $(lib_libgtest_main_la_SOURCES) \ + $(samples_libsamples_la_SOURCES) \ + $(samples_sample10_unittest_SOURCES) \ + $(samples_sample1_unittest_SOURCES) \ + $(am__test_fused_gtest_test_SOURCES_DIST) \ + $(test_gtest_all_test_SOURCES) +DATA = $(m4data_DATA) +HEADERS = $(pkginclude_HEADERS) $(pkginclude_internal_HEADERS) +ETAGS = etags +CTAGS = ctags +am__tty_colors = \ +red=; grn=; lgn=; blu=; std= +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 $(distdir).zip +GZIP_ENV = --best +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ +PYTHON = @PYTHON@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +acx_pthread_config = @acx_pthread_config@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +ACLOCAL_AMFLAGS = -I m4 + +# Nonstandard package files for distribution + +# Sample files that we don't compile. + +# C++ test files that we don't compile directly. + +# Python tests that we don't run. + +# CMake script + +# MSVC project files + +# xcode project files + +# xcode sample files + +# C++Builder project files +EXTRA_DIST = CHANGES CONTRIBUTORS LICENSE \ + include/gtest/gtest-param-test.h.pump \ + include/gtest/internal/gtest-param-util-generated.h.pump \ + include/gtest/internal/gtest-tuple.h.pump \ + include/gtest/internal/gtest-type-util.h.pump make/Makefile \ + scripts/fuse_gtest_files.py scripts/gen_gtest_pred_impl.py \ + scripts/pump.py scripts/test/Makefile $(GTEST_SRC) \ + samples/prime_tables.h samples/sample2_unittest.cc \ + samples/sample3_unittest.cc samples/sample4_unittest.cc \ + samples/sample5_unittest.cc samples/sample6_unittest.cc \ + samples/sample7_unittest.cc samples/sample8_unittest.cc \ + samples/sample9_unittest.cc test/gtest-death-test_ex_test.cc \ + test/gtest-death-test_test.cc test/gtest-filepath_test.cc \ + test/gtest-linked_ptr_test.cc test/gtest-listener_test.cc \ + test/gtest-message_test.cc test/gtest-options_test.cc \ + test/gtest-param-test2_test.cc test/gtest-param-test2_test.cc \ + test/gtest-param-test_test.cc test/gtest-param-test_test.cc \ + test/gtest-param-test_test.h test/gtest-port_test.cc \ + test/gtest_premature_exit_test.cc test/gtest-printers_test.cc \ + test/gtest-test-part_test.cc test/gtest-tuple_test.cc \ + test/gtest-typed-test2_test.cc test/gtest-typed-test_test.cc \ + test/gtest-typed-test_test.h test/gtest-unittest-api_test.cc \ + test/gtest_break_on_failure_unittest_.cc \ + test/gtest_catch_exceptions_test_.cc test/gtest_color_test_.cc \ + test/gtest_env_var_test_.cc test/gtest_environment_test.cc \ + test/gtest_filter_unittest_.cc test/gtest_help_test_.cc \ + test/gtest_list_tests_unittest_.cc test/gtest_main_unittest.cc \ + test/gtest_no_test_unittest.cc test/gtest_output_test_.cc \ + test/gtest_pred_impl_unittest.cc test/gtest_prod_test.cc \ + test/gtest_repeat_test.cc test/gtest_shuffle_test_.cc \ + test/gtest_sole_header_test.cc test/gtest_stress_test.cc \ + test/gtest_throw_on_failure_ex_test.cc \ + test/gtest_throw_on_failure_test_.cc \ + test/gtest_uninitialized_test_.cc test/gtest_unittest.cc \ + test/gtest_unittest.cc test/gtest_xml_outfile1_test_.cc \ + test/gtest_xml_outfile2_test_.cc \ + test/gtest_xml_output_unittest_.cc test/production.cc \ + test/production.h test/gtest_break_on_failure_unittest.py \ + test/gtest_catch_exceptions_test.py test/gtest_color_test.py \ + test/gtest_env_var_test.py test/gtest_filter_unittest.py \ + test/gtest_help_test.py test/gtest_list_tests_unittest.py \ + test/gtest_output_test.py \ + test/gtest_output_test_golden_lin.txt \ + test/gtest_shuffle_test.py test/gtest_test_utils.py \ + test/gtest_throw_on_failure_test.py \ + test/gtest_uninitialized_test.py \ + test/gtest_xml_outfiles_test.py \ + test/gtest_xml_output_unittest.py test/gtest_xml_test_utils.py \ + CMakeLists.txt cmake/internal_utils.cmake msvc/gtest-md.sln \ + msvc/gtest-md.vcproj msvc/gtest.sln msvc/gtest.vcproj \ + msvc/gtest_main-md.vcproj msvc/gtest_main.vcproj \ + msvc/gtest_prod_test-md.vcproj msvc/gtest_prod_test.vcproj \ + msvc/gtest_unittest-md.vcproj msvc/gtest_unittest.vcproj \ + xcode/Config/DebugProject.xcconfig \ + xcode/Config/FrameworkTarget.xcconfig \ + xcode/Config/General.xcconfig \ + xcode/Config/ReleaseProject.xcconfig \ + xcode/Config/StaticLibraryTarget.xcconfig \ + xcode/Config/TestTarget.xcconfig xcode/Resources/Info.plist \ + xcode/Scripts/runtests.sh xcode/Scripts/versiongenerate.py \ + xcode/gtest.xcodeproj/project.pbxproj \ + xcode/Samples/FrameworkSample/Info.plist \ + xcode/Samples/FrameworkSample/WidgetFramework.xcodeproj/project.pbxproj \ + xcode/Samples/FrameworkSample/runtests.sh \ + xcode/Samples/FrameworkSample/widget.cc \ + xcode/Samples/FrameworkSample/widget.h \ + xcode/Samples/FrameworkSample/widget_test.cc \ + codegear/gtest.cbproj codegear/gtest.groupproj \ + codegear/gtest_all.cc codegear/gtest_link.cc \ + codegear/gtest_main.cbproj codegear/gtest_unittest.cbproj \ + $(m4data_DATA) + +# gtest source files that we don't compile directly. They are +# #included by gtest-all.cc. +GTEST_SRC = \ + src/gtest-death-test.cc \ + src/gtest-filepath.cc \ + src/gtest-internal-inl.h \ + src/gtest-port.cc \ + src/gtest-printers.cc \ + src/gtest-test-part.cc \ + src/gtest-typed-test.cc \ + src/gtest.cc + + +# Distribute and install M4 macro +m4datadir = $(datadir)/aclocal +m4data_DATA = m4/gtest.m4 + +# We define the global AM_CPPFLAGS as everything we compile includes from these +# directories. +AM_CPPFLAGS = -I$(srcdir) -I$(srcdir)/include +@HAVE_PTHREADS_FALSE@AM_CXXFLAGS = -DGTEST_HAS_PTHREAD=0 + +# Modifies compiler and linker flags for pthreads compatibility. +@HAVE_PTHREADS_TRUE@AM_CXXFLAGS = @PTHREAD_CFLAGS@ -DGTEST_HAS_PTHREAD=1 +@HAVE_PTHREADS_TRUE@AM_LIBS = @PTHREAD_LIBS@ + +# Build rules for libraries. +lib_LTLIBRARIES = lib/libgtest.la lib/libgtest_main.la +lib_libgtest_la_SOURCES = src/gtest-all.cc +pkginclude_HEADERS = \ + include/gtest/gtest-death-test.h \ + include/gtest/gtest-message.h \ + include/gtest/gtest-param-test.h \ + include/gtest/gtest-printers.h \ + include/gtest/gtest-spi.h \ + include/gtest/gtest-test-part.h \ + include/gtest/gtest-typed-test.h \ + include/gtest/gtest.h \ + include/gtest/gtest_pred_impl.h \ + include/gtest/gtest_prod.h + +pkginclude_internaldir = $(pkgincludedir)/internal +pkginclude_internal_HEADERS = \ + include/gtest/internal/gtest-death-test-internal.h \ + include/gtest/internal/gtest-filepath.h \ + include/gtest/internal/gtest-internal.h \ + include/gtest/internal/gtest-linked_ptr.h \ + include/gtest/internal/gtest-param-util-generated.h \ + include/gtest/internal/gtest-param-util.h \ + include/gtest/internal/gtest-port.h \ + include/gtest/internal/gtest-string.h \ + include/gtest/internal/gtest-tuple.h \ + include/gtest/internal/gtest-type-util.h + +lib_libgtest_main_la_SOURCES = src/gtest_main.cc +lib_libgtest_main_la_LIBADD = lib/libgtest.la + +# Bulid rules for samples and tests. Automake's naming for some of +# these variables isn't terribly obvious, so this is a brief +# reference: +# +# TESTS -- Programs run automatically by "make check" +# check_PROGRAMS -- Programs built by "make check" but not necessarily run +noinst_LTLIBRARIES = samples/libsamples.la +samples_libsamples_la_SOURCES = \ + samples/sample1.cc \ + samples/sample1.h \ + samples/sample2.cc \ + samples/sample2.h \ + samples/sample3-inl.h \ + samples/sample4.cc \ + samples/sample4.h + +TESTS_ENVIRONMENT = GTEST_SOURCE_DIR="$(srcdir)/test" \ + GTEST_BUILD_DIR="$(top_builddir)/test" + +samples_sample1_unittest_SOURCES = samples/sample1_unittest.cc +samples_sample1_unittest_LDADD = lib/libgtest_main.la \ + lib/libgtest.la \ + samples/libsamples.la + +samples_sample10_unittest_SOURCES = samples/sample10_unittest.cc +samples_sample10_unittest_LDADD = lib/libgtest.la +test_gtest_all_test_SOURCES = test/gtest_all_test.cc +test_gtest_all_test_LDADD = lib/libgtest_main.la \ + lib/libgtest.la + + +# Tests that fused gtest files compile and work. +FUSED_GTEST_SRC = \ + fused-src/gtest/gtest-all.cc \ + fused-src/gtest/gtest.h \ + fused-src/gtest/gtest_main.cc + +@HAVE_PYTHON_TRUE@test_fused_gtest_test_SOURCES = $(FUSED_GTEST_SRC) \ +@HAVE_PYTHON_TRUE@ samples/sample1.cc samples/sample1_unittest.cc + +@HAVE_PYTHON_TRUE@test_fused_gtest_test_CPPFLAGS = -I"$(srcdir)/fused-src" + +# Death tests may produce core dumps in the build directory. In case +# this happens, clean them to keep distcleancheck happy. +CLEANFILES = core +all: all-am + +.SUFFIXES: +.SUFFIXES: .cc .lo .o .obj +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +build-aux/config.h: build-aux/stamp-h1 + @if test ! -f $@; then rm -f build-aux/stamp-h1; else :; fi + @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) build-aux/stamp-h1; else :; fi + +build-aux/stamp-h1: $(top_srcdir)/build-aux/config.h.in $(top_builddir)/config.status + @rm -f build-aux/stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status build-aux/config.h +$(top_srcdir)/build-aux/config.h.in: $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f build-aux/stamp-h1 + touch $@ + +distclean-hdr: + -rm -f build-aux/config.h build-aux/stamp-h1 +scripts/gtest-config: $(top_builddir)/config.status $(top_srcdir)/scripts/gtest-config.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +src/$(am__dirstamp): + @$(MKDIR_P) src + @: > src/$(am__dirstamp) +src/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) src/$(DEPDIR) + @: > src/$(DEPDIR)/$(am__dirstamp) +src/gtest-all.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) +lib/$(am__dirstamp): + @$(MKDIR_P) lib + @: > lib/$(am__dirstamp) +lib/libgtest.la: $(lib_libgtest_la_OBJECTS) $(lib_libgtest_la_DEPENDENCIES) $(EXTRA_lib_libgtest_la_DEPENDENCIES) lib/$(am__dirstamp) + $(CXXLINK) -rpath $(libdir) $(lib_libgtest_la_OBJECTS) $(lib_libgtest_la_LIBADD) $(LIBS) +src/gtest_main.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) +lib/libgtest_main.la: $(lib_libgtest_main_la_OBJECTS) $(lib_libgtest_main_la_DEPENDENCIES) $(EXTRA_lib_libgtest_main_la_DEPENDENCIES) lib/$(am__dirstamp) + $(CXXLINK) -rpath $(libdir) $(lib_libgtest_main_la_OBJECTS) $(lib_libgtest_main_la_LIBADD) $(LIBS) +samples/$(am__dirstamp): + @$(MKDIR_P) samples + @: > samples/$(am__dirstamp) +samples/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) samples/$(DEPDIR) + @: > samples/$(DEPDIR)/$(am__dirstamp) +samples/sample1.lo: samples/$(am__dirstamp) \ + samples/$(DEPDIR)/$(am__dirstamp) +samples/sample2.lo: samples/$(am__dirstamp) \ + samples/$(DEPDIR)/$(am__dirstamp) +samples/sample4.lo: samples/$(am__dirstamp) \ + samples/$(DEPDIR)/$(am__dirstamp) +samples/libsamples.la: $(samples_libsamples_la_OBJECTS) $(samples_libsamples_la_DEPENDENCIES) $(EXTRA_samples_libsamples_la_DEPENDENCIES) samples/$(am__dirstamp) + $(CXXLINK) $(samples_libsamples_la_OBJECTS) $(samples_libsamples_la_LIBADD) $(LIBS) + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +samples/sample10_unittest.$(OBJEXT): samples/$(am__dirstamp) \ + samples/$(DEPDIR)/$(am__dirstamp) +samples/sample10_unittest$(EXEEXT): $(samples_sample10_unittest_OBJECTS) $(samples_sample10_unittest_DEPENDENCIES) $(EXTRA_samples_sample10_unittest_DEPENDENCIES) samples/$(am__dirstamp) + @rm -f samples/sample10_unittest$(EXEEXT) + $(CXXLINK) $(samples_sample10_unittest_OBJECTS) $(samples_sample10_unittest_LDADD) $(LIBS) +samples/sample1_unittest.$(OBJEXT): samples/$(am__dirstamp) \ + samples/$(DEPDIR)/$(am__dirstamp) +samples/sample1_unittest$(EXEEXT): $(samples_sample1_unittest_OBJECTS) $(samples_sample1_unittest_DEPENDENCIES) $(EXTRA_samples_sample1_unittest_DEPENDENCIES) samples/$(am__dirstamp) + @rm -f samples/sample1_unittest$(EXEEXT) + $(CXXLINK) $(samples_sample1_unittest_OBJECTS) $(samples_sample1_unittest_LDADD) $(LIBS) +fused-src/gtest/$(am__dirstamp): + @$(MKDIR_P) fused-src/gtest + @: > fused-src/gtest/$(am__dirstamp) +fused-src/gtest/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) fused-src/gtest/$(DEPDIR) + @: > fused-src/gtest/$(DEPDIR)/$(am__dirstamp) +fused-src/gtest/test_fused_gtest_test-gtest-all.$(OBJEXT): \ + fused-src/gtest/$(am__dirstamp) \ + fused-src/gtest/$(DEPDIR)/$(am__dirstamp) +fused-src/gtest/test_fused_gtest_test-gtest_main.$(OBJEXT): \ + fused-src/gtest/$(am__dirstamp) \ + fused-src/gtest/$(DEPDIR)/$(am__dirstamp) +samples/test_fused_gtest_test-sample1.$(OBJEXT): \ + samples/$(am__dirstamp) samples/$(DEPDIR)/$(am__dirstamp) +samples/test_fused_gtest_test-sample1_unittest.$(OBJEXT): \ + samples/$(am__dirstamp) samples/$(DEPDIR)/$(am__dirstamp) +test/$(am__dirstamp): + @$(MKDIR_P) test + @: > test/$(am__dirstamp) +test/fused_gtest_test$(EXEEXT): $(test_fused_gtest_test_OBJECTS) $(test_fused_gtest_test_DEPENDENCIES) $(EXTRA_test_fused_gtest_test_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/fused_gtest_test$(EXEEXT) + $(CXXLINK) $(test_fused_gtest_test_OBJECTS) $(test_fused_gtest_test_LDADD) $(LIBS) +test/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) test/$(DEPDIR) + @: > test/$(DEPDIR)/$(am__dirstamp) +test/gtest_all_test.$(OBJEXT): test/$(am__dirstamp) \ + test/$(DEPDIR)/$(am__dirstamp) +test/gtest_all_test$(EXEEXT): $(test_gtest_all_test_OBJECTS) $(test_gtest_all_test_DEPENDENCIES) $(EXTRA_test_gtest_all_test_DEPENDENCIES) test/$(am__dirstamp) + @rm -f test/gtest_all_test$(EXEEXT) + $(CXXLINK) $(test_gtest_all_test_OBJECTS) $(test_gtest_all_test_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + -rm -f fused-src/gtest/test_fused_gtest_test-gtest-all.$(OBJEXT) + -rm -f fused-src/gtest/test_fused_gtest_test-gtest_main.$(OBJEXT) + -rm -f samples/sample1.$(OBJEXT) + -rm -f samples/sample1.lo + -rm -f samples/sample10_unittest.$(OBJEXT) + -rm -f samples/sample1_unittest.$(OBJEXT) + -rm -f samples/sample2.$(OBJEXT) + -rm -f samples/sample2.lo + -rm -f samples/sample4.$(OBJEXT) + -rm -f samples/sample4.lo + -rm -f samples/test_fused_gtest_test-sample1.$(OBJEXT) + -rm -f samples/test_fused_gtest_test-sample1_unittest.$(OBJEXT) + -rm -f src/gtest-all.$(OBJEXT) + -rm -f src/gtest-all.lo + -rm -f src/gtest_main.$(OBJEXT) + -rm -f src/gtest_main.lo + -rm -f test/gtest_all_test.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/sample1.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/sample10_unittest.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/sample1_unittest.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/sample2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/sample4.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/test_fused_gtest_test-sample1.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/gtest-all.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/gtest_main.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/gtest_all_test.Po@am__quote@ + +.cc.o: +@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< + +.cc.obj: +@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cc.lo: +@am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< + +fused-src/gtest/test_fused_gtest_test-gtest-all.o: fused-src/gtest/gtest-all.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/gtest/test_fused_gtest_test-gtest-all.o -MD -MP -MF fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Tpo -c -o fused-src/gtest/test_fused_gtest_test-gtest-all.o `test -f 'fused-src/gtest/gtest-all.cc' || echo '$(srcdir)/'`fused-src/gtest/gtest-all.cc +@am__fastdepCXX_TRUE@ $(am__mv) fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Tpo fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gtest/gtest-all.cc' object='fused-src/gtest/test_fused_gtest_test-gtest-all.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/gtest/test_fused_gtest_test-gtest-all.o `test -f 'fused-src/gtest/gtest-all.cc' || echo '$(srcdir)/'`fused-src/gtest/gtest-all.cc + +fused-src/gtest/test_fused_gtest_test-gtest-all.obj: fused-src/gtest/gtest-all.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/gtest/test_fused_gtest_test-gtest-all.obj -MD -MP -MF fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Tpo -c -o fused-src/gtest/test_fused_gtest_test-gtest-all.obj `if test -f 'fused-src/gtest/gtest-all.cc'; then $(CYGPATH_W) 'fused-src/gtest/gtest-all.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gtest/gtest-all.cc'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Tpo fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest-all.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gtest/gtest-all.cc' object='fused-src/gtest/test_fused_gtest_test-gtest-all.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/gtest/test_fused_gtest_test-gtest-all.obj `if test -f 'fused-src/gtest/gtest-all.cc'; then $(CYGPATH_W) 'fused-src/gtest/gtest-all.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gtest/gtest-all.cc'; fi` + +fused-src/gtest/test_fused_gtest_test-gtest_main.o: fused-src/gtest/gtest_main.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/gtest/test_fused_gtest_test-gtest_main.o -MD -MP -MF fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Tpo -c -o fused-src/gtest/test_fused_gtest_test-gtest_main.o `test -f 'fused-src/gtest/gtest_main.cc' || echo '$(srcdir)/'`fused-src/gtest/gtest_main.cc +@am__fastdepCXX_TRUE@ $(am__mv) fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Tpo fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gtest/gtest_main.cc' object='fused-src/gtest/test_fused_gtest_test-gtest_main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/gtest/test_fused_gtest_test-gtest_main.o `test -f 'fused-src/gtest/gtest_main.cc' || echo '$(srcdir)/'`fused-src/gtest/gtest_main.cc + +fused-src/gtest/test_fused_gtest_test-gtest_main.obj: fused-src/gtest/gtest_main.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fused-src/gtest/test_fused_gtest_test-gtest_main.obj -MD -MP -MF fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Tpo -c -o fused-src/gtest/test_fused_gtest_test-gtest_main.obj `if test -f 'fused-src/gtest/gtest_main.cc'; then $(CYGPATH_W) 'fused-src/gtest/gtest_main.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gtest/gtest_main.cc'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Tpo fused-src/gtest/$(DEPDIR)/test_fused_gtest_test-gtest_main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fused-src/gtest/gtest_main.cc' object='fused-src/gtest/test_fused_gtest_test-gtest_main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o fused-src/gtest/test_fused_gtest_test-gtest_main.obj `if test -f 'fused-src/gtest/gtest_main.cc'; then $(CYGPATH_W) 'fused-src/gtest/gtest_main.cc'; else $(CYGPATH_W) '$(srcdir)/fused-src/gtest/gtest_main.cc'; fi` + +samples/test_fused_gtest_test-sample1.o: samples/sample1.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT samples/test_fused_gtest_test-sample1.o -MD -MP -MF samples/$(DEPDIR)/test_fused_gtest_test-sample1.Tpo -c -o samples/test_fused_gtest_test-sample1.o `test -f 'samples/sample1.cc' || echo '$(srcdir)/'`samples/sample1.cc +@am__fastdepCXX_TRUE@ $(am__mv) samples/$(DEPDIR)/test_fused_gtest_test-sample1.Tpo samples/$(DEPDIR)/test_fused_gtest_test-sample1.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='samples/sample1.cc' object='samples/test_fused_gtest_test-sample1.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o samples/test_fused_gtest_test-sample1.o `test -f 'samples/sample1.cc' || echo '$(srcdir)/'`samples/sample1.cc + +samples/test_fused_gtest_test-sample1.obj: samples/sample1.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT samples/test_fused_gtest_test-sample1.obj -MD -MP -MF samples/$(DEPDIR)/test_fused_gtest_test-sample1.Tpo -c -o samples/test_fused_gtest_test-sample1.obj `if test -f 'samples/sample1.cc'; then $(CYGPATH_W) 'samples/sample1.cc'; else $(CYGPATH_W) '$(srcdir)/samples/sample1.cc'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) samples/$(DEPDIR)/test_fused_gtest_test-sample1.Tpo samples/$(DEPDIR)/test_fused_gtest_test-sample1.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='samples/sample1.cc' object='samples/test_fused_gtest_test-sample1.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o samples/test_fused_gtest_test-sample1.obj `if test -f 'samples/sample1.cc'; then $(CYGPATH_W) 'samples/sample1.cc'; else $(CYGPATH_W) '$(srcdir)/samples/sample1.cc'; fi` + +samples/test_fused_gtest_test-sample1_unittest.o: samples/sample1_unittest.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT samples/test_fused_gtest_test-sample1_unittest.o -MD -MP -MF samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Tpo -c -o samples/test_fused_gtest_test-sample1_unittest.o `test -f 'samples/sample1_unittest.cc' || echo '$(srcdir)/'`samples/sample1_unittest.cc +@am__fastdepCXX_TRUE@ $(am__mv) samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Tpo samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='samples/sample1_unittest.cc' object='samples/test_fused_gtest_test-sample1_unittest.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o samples/test_fused_gtest_test-sample1_unittest.o `test -f 'samples/sample1_unittest.cc' || echo '$(srcdir)/'`samples/sample1_unittest.cc + +samples/test_fused_gtest_test-sample1_unittest.obj: samples/sample1_unittest.cc +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT samples/test_fused_gtest_test-sample1_unittest.obj -MD -MP -MF samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Tpo -c -o samples/test_fused_gtest_test-sample1_unittest.obj `if test -f 'samples/sample1_unittest.cc'; then $(CYGPATH_W) 'samples/sample1_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/samples/sample1_unittest.cc'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Tpo samples/$(DEPDIR)/test_fused_gtest_test-sample1_unittest.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='samples/sample1_unittest.cc' object='samples/test_fused_gtest_test-sample1_unittest.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_fused_gtest_test_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o samples/test_fused_gtest_test-sample1_unittest.obj `if test -f 'samples/sample1_unittest.cc'; then $(CYGPATH_W) 'samples/sample1_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/samples/sample1_unittest.cc'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + -rm -rf lib/.libs lib/_libs + -rm -rf samples/.libs samples/_libs + -rm -rf src/.libs src/_libs + -rm -rf test/.libs test/_libs + +distclean-libtool: + -rm -f libtool config.lt +install-m4dataDATA: $(m4data_DATA) + @$(NORMAL_INSTALL) + test -z "$(m4datadir)" || $(MKDIR_P) "$(DESTDIR)$(m4datadir)" + @list='$(m4data_DATA)'; test -n "$(m4datadir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(m4datadir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(m4datadir)" || exit $$?; \ + done + +uninstall-m4dataDATA: + @$(NORMAL_UNINSTALL) + @list='$(m4data_DATA)'; test -n "$(m4datadir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(m4datadir)'; $(am__uninstall_files_from_dir) +install-pkgincludeHEADERS: $(pkginclude_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" + @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ + done + +uninstall-pkgincludeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) +install-pkginclude_internalHEADERS: $(pkginclude_internal_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(pkginclude_internaldir)" || $(MKDIR_P) "$(DESTDIR)$(pkginclude_internaldir)" + @list='$(pkginclude_internal_HEADERS)'; test -n "$(pkginclude_internaldir)" || list=; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkginclude_internaldir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkginclude_internaldir)" || exit $$?; \ + done + +uninstall-pkginclude_internalHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(pkginclude_internal_HEADERS)'; test -n "$(pkginclude_internaldir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pkginclude_internaldir)'; $(am__uninstall_files_from_dir) + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + set x; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +check-TESTS: $(TESTS) + @failed=0; all=0; xfail=0; xpass=0; skip=0; \ + srcdir=$(srcdir); export srcdir; \ + list=' $(TESTS) '; \ + $(am__tty_colors); \ + if test -n "$$list"; then \ + for tst in $$list; do \ + if test -f ./$$tst; then dir=./; \ + elif test -f $$tst; then dir=; \ + else dir="$(srcdir)/"; fi; \ + if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + col=$$red; res=XPASS; \ + ;; \ + *) \ + col=$$grn; res=PASS; \ + ;; \ + esac; \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ + case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$tst[\ \ ]*) \ + xfail=`expr $$xfail + 1`; \ + col=$$lgn; res=XFAIL; \ + ;; \ + *) \ + failed=`expr $$failed + 1`; \ + col=$$red; res=FAIL; \ + ;; \ + esac; \ + else \ + skip=`expr $$skip + 1`; \ + col=$$blu; res=SKIP; \ + fi; \ + echo "$${col}$$res$${std}: $$tst"; \ + done; \ + if test "$$all" -eq 1; then \ + tests="test"; \ + All=""; \ + else \ + tests="tests"; \ + All="All "; \ + fi; \ + if test "$$failed" -eq 0; then \ + if test "$$xfail" -eq 0; then \ + banner="$$All$$all $$tests passed"; \ + else \ + if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ + banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ + fi; \ + else \ + if test "$$xpass" -eq 0; then \ + banner="$$failed of $$all $$tests failed"; \ + else \ + if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ + banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ + fi; \ + fi; \ + dashes="$$banner"; \ + skipped=""; \ + if test "$$skip" -ne 0; then \ + if test "$$skip" -eq 1; then \ + skipped="($$skip test was not run)"; \ + else \ + skipped="($$skip tests were not run)"; \ + fi; \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$skipped"; \ + fi; \ + report=""; \ + if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ + report="Please report to $(PACKAGE_BUGREPORT)"; \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ + dashes="$$report"; \ + fi; \ + dashes=`echo "$$dashes" | sed s/./=/g`; \ + if test "$$failed" -eq 0; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + fi; \ + echo "$${col}$$dashes$${std}"; \ + echo "$${col}$$banner$${std}"; \ + test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \ + test -z "$$report" || echo "$${col}$$report$${std}"; \ + echo "$${col}$$dashes$${std}"; \ + test "$$failed" -eq 0; \ + else :; fi + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__remove_distdir) + +dist-lzma: distdir + tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma + $(am__remove_distdir) + +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__remove_distdir) + +dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__remove_distdir) +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + +dist dist-all: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lzma*) \ + lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir); chmod a+w $(distdir) + mkdir $(distdir)/_build + mkdir $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(m4datadir)" "$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(pkginclude_internaldir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -rm -f fused-src/gtest/$(DEPDIR)/$(am__dirstamp) + -rm -f fused-src/gtest/$(am__dirstamp) + -rm -f lib/$(am__dirstamp) + -rm -f samples/$(DEPDIR)/$(am__dirstamp) + -rm -f samples/$(am__dirstamp) + -rm -f src/$(DEPDIR)/$(am__dirstamp) + -rm -f src/$(am__dirstamp) + -rm -f test/$(DEPDIR)/$(am__dirstamp) + -rm -f test/$(am__dirstamp) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +@HAVE_PYTHON_FALSE@maintainer-clean-local: +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \ + clean-libtool clean-noinstLTLIBRARIES mostlyclean-am + +distclean: distclean-am + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf fused-src/gtest/$(DEPDIR) samples/$(DEPDIR) src/$(DEPDIR) test/$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-hdr distclean-libtool distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-data-local install-m4dataDATA \ + install-pkgincludeHEADERS install-pkginclude_internalHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-exec-local install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -rf fused-src/gtest/$(DEPDIR) samples/$(DEPDIR) src/$(DEPDIR) test/$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic \ + maintainer-clean-local + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES uninstall-m4dataDATA \ + uninstall-pkgincludeHEADERS \ + uninstall-pkginclude_internalHEADERS + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS all all-am am--refresh check check-TESTS check-am \ + clean clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \ + clean-libtool clean-noinstLTLIBRARIES ctags dist dist-all \ + dist-bzip2 dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ \ + dist-xz dist-zip distcheck distclean distclean-compile \ + distclean-generic distclean-hdr distclean-libtool \ + distclean-tags distcleancheck distdir distuninstallcheck dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-data-local install-dvi \ + install-dvi-am install-exec install-exec-am install-exec-local \ + install-html install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-m4dataDATA install-man \ + install-pdf install-pdf-am install-pkgincludeHEADERS \ + install-pkginclude_internalHEADERS install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ + maintainer-clean-local mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-libLTLIBRARIES \ + uninstall-m4dataDATA uninstall-pkgincludeHEADERS \ + uninstall-pkginclude_internalHEADERS + + +# Build rules for putting fused Google Test files into the distribution +# package. The user can also create those files by manually running +# scripts/fuse_gtest_files.py. +@HAVE_PYTHON_TRUE@$(test_fused_gtest_test_SOURCES): fused-gtest + +@HAVE_PYTHON_TRUE@fused-gtest: $(pkginclude_HEADERS) $(pkginclude_internal_HEADERS) \ +@HAVE_PYTHON_TRUE@ $(GTEST_SRC) src/gtest-all.cc src/gtest_main.cc \ +@HAVE_PYTHON_TRUE@ scripts/fuse_gtest_files.py +@HAVE_PYTHON_TRUE@ mkdir -p "$(srcdir)/fused-src" +@HAVE_PYTHON_TRUE@ chmod -R u+w "$(srcdir)/fused-src" +@HAVE_PYTHON_TRUE@ rm -f "$(srcdir)/fused-src/gtest/gtest-all.cc" +@HAVE_PYTHON_TRUE@ rm -f "$(srcdir)/fused-src/gtest/gtest.h" +@HAVE_PYTHON_TRUE@ "$(srcdir)/scripts/fuse_gtest_files.py" "$(srcdir)/fused-src" +@HAVE_PYTHON_TRUE@ cp -f "$(srcdir)/src/gtest_main.cc" "$(srcdir)/fused-src/gtest/" + +@HAVE_PYTHON_TRUE@maintainer-clean-local: +@HAVE_PYTHON_TRUE@ rm -rf "$(srcdir)/fused-src" + +# Disables 'make install' as installing a compiled version of Google +# Test can lead to undefined behavior due to violation of the +# One-Definition Rule. + +install-exec-local: + echo "'make install' is dangerous and not supported. Instead, see README for how to integrate Google Test into your build system." + false + +install-data-local: + echo "'make install' is dangerous and not supported. Instead, see README for how to integrate Google Test into your build system." + false + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/cpp/thirdparty/gtest-1.7.0/README b/cpp/thirdparty/gtest-1.7.0/README new file mode 100644 index 000000000..26f35a847 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/README @@ -0,0 +1,435 @@ +Google C++ Testing Framework +============================ + +http://code.google.com/p/googletest/ + +Overview +-------- + +Google's framework for writing C++ tests on a variety of platforms +(Linux, Mac OS X, Windows, Windows CE, Symbian, etc). Based on the +xUnit architecture. Supports automatic test discovery, a rich set of +assertions, user-defined assertions, death tests, fatal and non-fatal +failures, various options for running the tests, and XML test report +generation. + +Please see the project page above for more information as well as the +mailing list for questions, discussions, and development. There is +also an IRC channel on OFTC (irc.oftc.net) #gtest available. Please +join us! + +Requirements for End Users +-------------------------- + +Google Test is designed to have fairly minimal requirements to build +and use with your projects, but there are some. Currently, we support +Linux, Windows, Mac OS X, and Cygwin. We will also make our best +effort to support other platforms (e.g. Solaris, AIX, and z/OS). +However, since core members of the Google Test project have no access +to these platforms, Google Test may have outstanding issues there. If +you notice any problems on your platform, please notify +googletestframework@googlegroups.com. Patches for fixing them are +even more welcome! + +### Linux Requirements ### + +These are the base requirements to build and use Google Test from a source +package (as described below): + * GNU-compatible Make or gmake + * POSIX-standard shell + * POSIX(-2) Regular Expressions (regex.h) + * A C++98-standard-compliant compiler + +### Windows Requirements ### + + * Microsoft Visual C++ 7.1 or newer + +### Cygwin Requirements ### + + * Cygwin 1.5.25-14 or newer + +### Mac OS X Requirements ### + + * Mac OS X 10.4 Tiger or newer + * Developer Tools Installed + +Also, you'll need CMake 2.6.4 or higher if you want to build the +samples using the provided CMake script, regardless of the platform. + +Requirements for Contributors +----------------------------- + +We welcome patches. If you plan to contribute a patch, you need to +build Google Test and its own tests from an SVN checkout (described +below), which has further requirements: + + * Python version 2.3 or newer (for running some of the tests and + re-generating certain source files from templates) + * CMake 2.6.4 or newer + +Getting the Source +------------------ + +There are two primary ways of getting Google Test's source code: you +can download a stable source release in your preferred archive format, +or directly check out the source from our Subversion (SVN) repositary. +The SVN checkout requires a few extra steps and some extra software +packages on your system, but lets you track the latest development and +make patches much more easily, so we highly encourage it. + +### Source Package ### + +Google Test is released in versioned source packages which can be +downloaded from the download page [1]. Several different archive +formats are provided, but the only difference is the tools used to +manipulate them, and the size of the resulting file. Download +whichever you are most comfortable with. + + [1] http://code.google.com/p/googletest/downloads/list + +Once the package is downloaded, expand it using whichever tools you +prefer for that type. This will result in a new directory with the +name "gtest-X.Y.Z" which contains all of the source code. Here are +some examples on Linux: + + tar -xvzf gtest-X.Y.Z.tar.gz + tar -xvjf gtest-X.Y.Z.tar.bz2 + unzip gtest-X.Y.Z.zip + +### SVN Checkout ### + +To check out the main branch (also known as the "trunk") of Google +Test, run the following Subversion command: + + svn checkout http://googletest.googlecode.com/svn/trunk/ gtest-svn + +Setting up the Build +-------------------- + +To build Google Test and your tests that use it, you need to tell your +build system where to find its headers and source files. The exact +way to do it depends on which build system you use, and is usually +straightforward. + +### Generic Build Instructions ### + +Suppose you put Google Test in directory ${GTEST_DIR}. To build it, +create a library build target (or a project as called by Visual Studio +and Xcode) to compile + + ${GTEST_DIR}/src/gtest-all.cc + +with ${GTEST_DIR}/include in the system header search path and ${GTEST_DIR} +in the normal header search path. Assuming a Linux-like system and gcc, +something like the following will do: + + g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \ + -pthread -c ${GTEST_DIR}/src/gtest-all.cc + ar -rv libgtest.a gtest-all.o + +(We need -pthread as Google Test uses threads.) + +Next, you should compile your test source file with +${GTEST_DIR}/include in the system header search path, and link it +with gtest and any other necessary libraries: + + g++ -isystem ${GTEST_DIR}/include -pthread path/to/your_test.cc libgtest.a \ + -o your_test + +As an example, the make/ directory contains a Makefile that you can +use to build Google Test on systems where GNU make is available +(e.g. Linux, Mac OS X, and Cygwin). It doesn't try to build Google +Test's own tests. Instead, it just builds the Google Test library and +a sample test. You can use it as a starting point for your own build +script. + +If the default settings are correct for your environment, the +following commands should succeed: + + cd ${GTEST_DIR}/make + make + ./sample1_unittest + +If you see errors, try to tweak the contents of make/Makefile to make +them go away. There are instructions in make/Makefile on how to do +it. + +### Using CMake ### + +Google Test comes with a CMake build script (CMakeLists.txt) that can +be used on a wide range of platforms ("C" stands for cross-platofrm.). +If you don't have CMake installed already, you can download it for +free from http://www.cmake.org/. + +CMake works by generating native makefiles or build projects that can +be used in the compiler environment of your choice. The typical +workflow starts with: + + mkdir mybuild # Create a directory to hold the build output. + cd mybuild + cmake ${GTEST_DIR} # Generate native build scripts. + +If you want to build Google Test's samples, you should replace the +last command with + + cmake -Dgtest_build_samples=ON ${GTEST_DIR} + +If you are on a *nix system, you should now see a Makefile in the +current directory. Just type 'make' to build gtest. + +If you use Windows and have Vistual Studio installed, a gtest.sln file +and several .vcproj files will be created. You can then build them +using Visual Studio. + +On Mac OS X with Xcode installed, a .xcodeproj file will be generated. + +### Legacy Build Scripts ### + +Before settling on CMake, we have been providing hand-maintained build +projects/scripts for Visual Studio, Xcode, and Autotools. While we +continue to provide them for convenience, they are not actively +maintained any more. We highly recommend that you follow the +instructions in the previous two sections to integrate Google Test +with your existing build system. + +If you still need to use the legacy build scripts, here's how: + +The msvc\ folder contains two solutions with Visual C++ projects. +Open the gtest.sln or gtest-md.sln file using Visual Studio, and you +are ready to build Google Test the same way you build any Visual +Studio project. Files that have names ending with -md use DLL +versions of Microsoft runtime libraries (the /MD or the /MDd compiler +option). Files without that suffix use static versions of the runtime +libraries (the /MT or the /MTd option). Please note that one must use +the same option to compile both gtest and the test code. If you use +Visual Studio 2005 or above, we recommend the -md version as /MD is +the default for new projects in these versions of Visual Studio. + +On Mac OS X, open the gtest.xcodeproj in the xcode/ folder using +Xcode. Build the "gtest" target. The universal binary framework will +end up in your selected build directory (selected in the Xcode +"Preferences..." -> "Building" pane and defaults to xcode/build). +Alternatively, at the command line, enter: + + xcodebuild + +This will build the "Release" configuration of gtest.framework in your +default build location. See the "xcodebuild" man page for more +information about building different configurations and building in +different locations. + +If you wish to use the Google Test Xcode project with Xcode 4.x and +above, you need to either: + * update the SDK configuration options in xcode/Config/General.xconfig. + Comment options SDKROOT, MACOS_DEPLOYMENT_TARGET, and GCC_VERSION. If + you choose this route you lose the ability to target earlier versions + of MacOS X. + * Install an SDK for an earlier version. This doesn't appear to be + supported by Apple, but has been reported to work + (http://stackoverflow.com/questions/5378518). + +Tweaking Google Test +-------------------- + +Google Test can be used in diverse environments. The default +configuration may not work (or may not work well) out of the box in +some environments. However, you can easily tweak Google Test by +defining control macros on the compiler command line. Generally, +these macros are named like GTEST_XYZ and you define them to either 1 +or 0 to enable or disable a certain feature. + +We list the most frequently used macros below. For a complete list, +see file include/gtest/internal/gtest-port.h. + +### Choosing a TR1 Tuple Library ### + +Some Google Test features require the C++ Technical Report 1 (TR1) +tuple library, which is not yet available with all compilers. The +good news is that Google Test implements a subset of TR1 tuple that's +enough for its own need, and will automatically use this when the +compiler doesn't provide TR1 tuple. + +Usually you don't need to care about which tuple library Google Test +uses. However, if your project already uses TR1 tuple, you need to +tell Google Test to use the same TR1 tuple library the rest of your +project uses, or the two tuple implementations will clash. To do +that, add + + -DGTEST_USE_OWN_TR1_TUPLE=0 + +to the compiler flags while compiling Google Test and your tests. If +you want to force Google Test to use its own tuple library, just add + + -DGTEST_USE_OWN_TR1_TUPLE=1 + +to the compiler flags instead. + +If you don't want Google Test to use tuple at all, add + + -DGTEST_HAS_TR1_TUPLE=0 + +and all features using tuple will be disabled. + +### Multi-threaded Tests ### + +Google Test is thread-safe where the pthread library is available. +After #include "gtest/gtest.h", you can check the GTEST_IS_THREADSAFE +macro to see whether this is the case (yes if the macro is #defined to +1, no if it's undefined.). + +If Google Test doesn't correctly detect whether pthread is available +in your environment, you can force it with + + -DGTEST_HAS_PTHREAD=1 + +or + + -DGTEST_HAS_PTHREAD=0 + +When Google Test uses pthread, you may need to add flags to your +compiler and/or linker to select the pthread library, or you'll get +link errors. If you use the CMake script or the deprecated Autotools +script, this is taken care of for you. If you use your own build +script, you'll need to read your compiler and linker's manual to +figure out what flags to add. + +### As a Shared Library (DLL) ### + +Google Test is compact, so most users can build and link it as a +static library for the simplicity. You can choose to use Google Test +as a shared library (known as a DLL on Windows) if you prefer. + +To compile *gtest* as a shared library, add + + -DGTEST_CREATE_SHARED_LIBRARY=1 + +to the compiler flags. You'll also need to tell the linker to produce +a shared library instead - consult your linker's manual for how to do +it. + +To compile your *tests* that use the gtest shared library, add + + -DGTEST_LINKED_AS_SHARED_LIBRARY=1 + +to the compiler flags. + +Note: while the above steps aren't technically necessary today when +using some compilers (e.g. GCC), they may become necessary in the +future, if we decide to improve the speed of loading the library (see +http://gcc.gnu.org/wiki/Visibility for details). Therefore you are +recommended to always add the above flags when using Google Test as a +shared library. Otherwise a future release of Google Test may break +your build script. + +### Avoiding Macro Name Clashes ### + +In C++, macros don't obey namespaces. Therefore two libraries that +both define a macro of the same name will clash if you #include both +definitions. In case a Google Test macro clashes with another +library, you can force Google Test to rename its macro to avoid the +conflict. + +Specifically, if both Google Test and some other code define macro +FOO, you can add + + -DGTEST_DONT_DEFINE_FOO=1 + +to the compiler flags to tell Google Test to change the macro's name +from FOO to GTEST_FOO. Currently FOO can be FAIL, SUCCEED, or TEST. +For example, with -DGTEST_DONT_DEFINE_TEST=1, you'll need to write + + GTEST_TEST(SomeTest, DoesThis) { ... } + +instead of + + TEST(SomeTest, DoesThis) { ... } + +in order to define a test. + +Upgrating from an Earlier Version +--------------------------------- + +We strive to keep Google Test releases backward compatible. +Sometimes, though, we have to make some breaking changes for the +users' long-term benefits. This section describes what you'll need to +do if you are upgrading from an earlier version of Google Test. + +### Upgrading from 1.3.0 or Earlier ### + +You may need to explicitly enable or disable Google Test's own TR1 +tuple library. See the instructions in section "Choosing a TR1 Tuple +Library". + +### Upgrading from 1.4.0 or Earlier ### + +The Autotools build script (configure + make) is no longer officially +supportted. You are encouraged to migrate to your own build system or +use CMake. If you still need to use Autotools, you can find +instructions in the README file from Google Test 1.4.0. + +On platforms where the pthread library is available, Google Test uses +it in order to be thread-safe. See the "Multi-threaded Tests" section +for what this means to your build script. + +If you use Microsoft Visual C++ 7.1 with exceptions disabled, Google +Test will no longer compile. This should affect very few people, as a +large portion of STL (including ) doesn't compile in this mode +anyway. We decided to stop supporting it in order to greatly simplify +Google Test's implementation. + +Developing Google Test +---------------------- + +This section discusses how to make your own changes to Google Test. + +### Testing Google Test Itself ### + +To make sure your changes work as intended and don't break existing +functionality, you'll want to compile and run Google Test's own tests. +For that you can use CMake: + + mkdir mybuild + cd mybuild + cmake -Dgtest_build_tests=ON ${GTEST_DIR} + +Make sure you have Python installed, as some of Google Test's tests +are written in Python. If the cmake command complains about not being +able to find Python ("Could NOT find PythonInterp (missing: +PYTHON_EXECUTABLE)"), try telling it explicitly where your Python +executable can be found: + + cmake -DPYTHON_EXECUTABLE=path/to/python -Dgtest_build_tests=ON ${GTEST_DIR} + +Next, you can build Google Test and all of its own tests. On *nix, +this is usually done by 'make'. To run the tests, do + + make test + +All tests should pass. + +### Regenerating Source Files ### + +Some of Google Test's source files are generated from templates (not +in the C++ sense) using a script. A template file is named FOO.pump, +where FOO is the name of the file it will generate. For example, the +file include/gtest/internal/gtest-type-util.h.pump is used to generate +gtest-type-util.h in the same directory. + +Normally you don't need to worry about regenerating the source files, +unless you need to modify them. In that case, you should modify the +corresponding .pump files instead and run the pump.py Python script to +regenerate them. You can find pump.py in the scripts/ directory. +Read the Pump manual [2] for how to use it. + + [2] http://code.google.com/p/googletest/wiki/PumpManual + +### Contributing a Patch ### + +We welcome patches. Please read the Google Test developer's guide [3] +for how you can contribute. In particular, make sure you have signed +the Contributor License Agreement, or we won't be able to accept the +patch. + + [3] http://code.google.com/p/googletest/wiki/GoogleTestDevGuide + +Happy testing! diff --git a/cpp/thirdparty/gtest-1.7.0/aclocal.m4 b/cpp/thirdparty/gtest-1.7.0/aclocal.m4 new file mode 100644 index 000000000..e7df9fe0e --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/aclocal.m4 @@ -0,0 +1,1198 @@ +# generated automatically by aclocal 1.11.3 -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, +# Inc. +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, +[m4_warning([this file was generated for autoconf 2.68. +You have another version of autoconf. It may work, but is not guaranteed to. +If you have problems, you may need to regenerate the build system entirely. +To do so, use the procedure documented by the package, typically `autoreconf'.])]) + +# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software +# Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.11' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.11.3], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.11.3])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to +# `$srcdir', `$srcdir/..', or `$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is `.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 9 + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ(2.52)dnl + ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, +# 2010, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 12 + +# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "GCJ", or "OBJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +ifelse([$1], CC, [depcc="$CC" am_compiler_list=], + [$1], CXX, [depcc="$CXX" am_compiler_list=], + [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], UPC, [depcc="$UPC" am_compiler_list=], + [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE(dependency-tracking, +[ --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +AC_SUBST([am__nodep])dnl +_AM_SUBST_NOTMAKE([am__nodep])dnl +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +#serial 5 + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[{ + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking +# is enabled. FIXME. This creates each `.P' file that we will +# need in order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 16 + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.62])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +AM_MISSING_PROG(AUTOCONF, autoconf) +AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +AM_MISSING_PROG(AUTOHEADER, autoheader) +AM_MISSING_PROG(MAKEINFO, makeinfo) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +AC_REQUIRE([AM_PROG_MKDIR_P])dnl +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +]) +_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl +dnl The `parallel-tests' driver may need to know about EXEEXT, so add the +dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro +dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl +]) + +dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, +# Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +AC_SUBST(install_sh)]) + +# Copyright (C) 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 4 + +# AM_MAKE_INCLUDE() +# ----------------- +# Check to see how make treats includes. +AC_DEFUN([AM_MAKE_INCLUDE], +[am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +AC_MSG_CHECKING([for style of include used by $am_make]) +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 6 + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it supports --run. +# If it does, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + AC_MSG_WARN([`missing' script is too old or missing]) +fi +]) + +# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation, +# Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_MKDIR_P +# --------------- +# Check for `mkdir -p'. +AC_DEFUN([AM_PROG_MKDIR_P], +[AC_PREREQ([2.60])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, +dnl while keeping a definition of mkdir_p for backward compatibility. +dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. +dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of +dnl Makefile.ins that do not define MKDIR_P, so we do our own +dnl adjustment using top_builddir (which is defined more often than +dnl MKDIR_P). +AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl +case $mkdir_p in + [[\\/$]]* | ?:[[\\/]]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software +# Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# -------------------- +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) + +# _AM_SET_OPTIONS(OPTIONS) +# ------------------------ +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, +# 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# --------------------------------------------------------------------------- +# Adds support for distributing Python modules and packages. To +# install modules, copy them to $(pythondir), using the python_PYTHON +# automake variable. To install a package with the same name as the +# automake package, install to $(pkgpythondir), or use the +# pkgpython_PYTHON automake variable. +# +# The variables $(pyexecdir) and $(pkgpyexecdir) are provided as +# locations to install python extension modules (shared libraries). +# Another macro is required to find the appropriate flags to compile +# extension modules. +# +# If your package is configured with a different prefix to python, +# users will have to add the install directory to the PYTHONPATH +# environment variable, or create a .pth file (see the python +# documentation for details). +# +# If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will +# cause an error if the version of python installed on the system +# doesn't meet the requirement. MINIMUM-VERSION should consist of +# numbers and dots only. +AC_DEFUN([AM_PATH_PYTHON], + [ + dnl Find a Python interpreter. Python versions prior to 2.0 are not + dnl supported. (2.0 was released on October 16, 2000). + m4_define_default([_AM_PYTHON_INTERPRETER_LIST], +[python python2 python3 python3.2 python3.1 python3.0 python2.7 dnl + python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0]) + + AC_ARG_VAR([PYTHON], [the Python interpreter]) + + m4_if([$1],[],[ + dnl No version check is needed. + # Find any Python interpreter. + if test -z "$PYTHON"; then + AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) + fi + am_display_PYTHON=python + ], [ + dnl A version check is needed. + if test -n "$PYTHON"; then + # If the user set $PYTHON, use it and don't search something else. + AC_MSG_CHECKING([whether $PYTHON version >= $1]) + AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], + [AC_MSG_RESULT(yes)], + [AC_MSG_ERROR(too old)]) + am_display_PYTHON=$PYTHON + else + # Otherwise, try each interpreter until we find one that satisfies + # VERSION. + AC_CACHE_CHECK([for a Python interpreter with version >= $1], + [am_cv_pathless_PYTHON],[ + for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do + test "$am_cv_pathless_PYTHON" = none && break + AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) + done]) + # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. + if test "$am_cv_pathless_PYTHON" = none; then + PYTHON=: + else + AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) + fi + am_display_PYTHON=$am_cv_pathless_PYTHON + fi + ]) + + if test "$PYTHON" = :; then + dnl Run any user-specified action, or abort. + m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) + else + + dnl Query Python for its version number. Getting [:3] seems to be + dnl the best way to do this; it's what "site.py" does in the standard + dnl library. + + AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], + [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`]) + AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) + + dnl Use the values of $prefix and $exec_prefix for the corresponding + dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made + dnl distinct variables so they can be overridden if need be. However, + dnl general consensus is that you shouldn't need this ability. + + AC_SUBST([PYTHON_PREFIX], ['${prefix}']) + AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) + + dnl At times (like when building shared libraries) you may want + dnl to know which OS platform Python thinks this is. + + AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], + [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`]) + AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) + + + dnl Set up 4 directories: + + dnl pythondir -- where to install python scripts. This is the + dnl site-packages directory, not the python standard library + dnl directory like in previous automake betas. This behavior + dnl is more consistent with lispdir.m4 for example. + dnl Query distutils for this directory. + AC_CACHE_CHECK([for $am_display_PYTHON script directory], + [am_cv_python_pythondir], + [if test "x$prefix" = xNONE + then + am_py_prefix=$ac_default_prefix + else + am_py_prefix=$prefix + fi + am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null` + case $am_cv_python_pythondir in + $am_py_prefix*) + am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` + am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` + ;; + *) + case $am_py_prefix in + /usr|/System*) ;; + *) + am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages + ;; + esac + ;; + esac + ]) + AC_SUBST([pythondir], [$am_cv_python_pythondir]) + + dnl pkgpythondir -- $PACKAGE directory under pythondir. Was + dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is + dnl more consistent with the rest of automake. + + AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) + + dnl pyexecdir -- directory for installing python extension modules + dnl (shared libraries) + dnl Query distutils for this directory. + AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], + [am_cv_python_pyexecdir], + [if test "x$exec_prefix" = xNONE + then + am_py_exec_prefix=$am_py_prefix + else + am_py_exec_prefix=$exec_prefix + fi + am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null` + case $am_cv_python_pyexecdir in + $am_py_exec_prefix*) + am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` + am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` + ;; + *) + case $am_py_exec_prefix in + /usr|/System*) ;; + *) + am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages + ;; + esac + ;; + esac + ]) + AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) + + dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) + + AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) + + dnl Run any user-specified action. + $2 + fi + +]) + + +# AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) +# --------------------------------------------------------------------------- +# Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. +# Run ACTION-IF-FALSE otherwise. +# This test uses sys.hexversion instead of the string equivalent (first +# word of sys.version), in order to cope with versions such as 2.2c1. +# This supports Python 2.0 or higher. (2.0 was released on October 16, 2000). +AC_DEFUN([AM_PYTHON_CHECK_VERSION], + [prog="import sys +# split strings by '.' and convert to numeric. Append some zeros +# because we need at least 4 digits for the hex conversion. +# map returns an iterator in Python 3.0 and a list in 2.x +minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]] +minverhex = 0 +# xrange is not present in Python 3.0 and range returns an iterator +for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]] +sys.exit(sys.hexversion < minverhex)" + AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_RUN_LOG(COMMAND) +# ------------------- +# Run COMMAND, save the exit status in ac_status, and log it. +# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) +AC_DEFUN([AM_RUN_LOG], +[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +alias in your environment]) + fi + + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT(yes)]) + +# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 1 + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor `install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in `make install-strip', and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 3 + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# AM_SUBST_NOTMAKE(VARIABLE) +# -------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of `v7', `ustar', or `pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AC_SUBST([AMTAR], ['$${TAR-tar}']) +m4_if([$1], [v7], + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], + [m4_case([$1], [ustar],, [pax],, + [m4_fatal([Unknown tar format])]) +AC_MSG_CHECKING([how to create a $1 tar archive]) +# Loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' +_am_tools=${am_cv_prog_tar_$1-$_am_tools} +# Do not fold the above two line into one, because Tru64 sh and +# Solaris sh will not grok spaces in the rhs of `-'. +for _am_tool in $_am_tools +do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; + do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi +done +rm -rf conftest.dir + +AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + +m4_include([m4/libtool.m4]) +m4_include([m4/ltoptions.m4]) +m4_include([m4/ltsugar.m4]) +m4_include([m4/ltversion.m4]) +m4_include([m4/lt~obsolete.m4]) diff --git a/cpp/thirdparty/gtest-1.7.0/build-aux/config.guess b/cpp/thirdparty/gtest-1.7.0/build-aux/config.guess new file mode 100755 index 000000000..d622a44e5 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/build-aux/config.guess @@ -0,0 +1,1530 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011, 2012 Free Software Foundation, Inc. + +timestamp='2012-02-10' + +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Originally written by Per Bothner. Please send patches (context +# diff format) to and include a ChangeLog +# entry. +# +# This script attempts to guess a canonical system name similar to +# config.sub. If it succeeds, it prints the system name on stdout, and +# exits with 0. Otherwise, it exits with 1. +# +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 +Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm:riscos:*:*|arm:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + UNAME_PROCESSOR=`/usr/bin/uname -p` + case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + i*:MSYS*:*) + echo ${UNAME_MACHINE}-pc-msys + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + aarch64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + aarch64_be:Linux:*:*) + UNAME_MACHINE=aarch64_be + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + frv:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + hexagon:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; + x86_64:VMkernel:*:*) + echo ${UNAME_MACHINE}-unknown-esx + exit ;; +esac + +#echo '(No uname command or uname output not recognized.)' 1>&2 +#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 + +eval $set_cc_for_build +cat >$dummy.c < +# include +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix\n"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + c34*) + echo c34-convex-bsd + exit ;; + c38*) + echo c38-convex-bsd + exit ;; + c4*) + echo c4-convex-bsd + exit ;; + esac +fi + +cat >&2 < in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/cpp/thirdparty/gtest-1.7.0/build-aux/config.h.in b/cpp/thirdparty/gtest-1.7.0/build-aux/config.h.in new file mode 100644 index 000000000..843b5b10c --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/build-aux/config.h.in @@ -0,0 +1,69 @@ +/* build-aux/config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define if you have POSIX threads libraries and header files. */ +#undef HAVE_PTHREAD + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the home page for this package. */ +#undef PACKAGE_URL + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to necessary symbol if this constant uses a non-standard name on + your system. */ +#undef PTHREAD_CREATE_JOINABLE + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Version number of package */ +#undef VERSION diff --git a/cpp/thirdparty/gtest-1.7.0/build-aux/config.sub b/cpp/thirdparty/gtest-1.7.0/build-aux/config.sub new file mode 100755 index 000000000..c894da455 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/build-aux/config.sub @@ -0,0 +1,1773 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011, 2012 Free Software Foundation, Inc. + +timestamp='2012-02-10' + +# This file is (in principle) common to ALL GNU software. +# The presence of a machine in this file suggests that SOME GNU software +# can handle that machine. It does not imply ALL GNU software can. +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Please send patches to . Submit a context +# diff and a properly formatted GNU ChangeLog entry. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 +Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + android-linux) + os=-linux-android + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray | -microblaze) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ + | be32 | be64 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | epiphany \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 \ + | ns16k | ns32k \ + | open8 \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ + | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | we32k \ + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + xgate) + basic_machine=$basic_machine-unknown + os=-none + ;; + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | be32-* | be64-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ + | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | tahoe-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ + | tron-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + microblaze) + basic_machine=microblaze-xilinx + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + msys) + basic_machine=i386-pc + os=-msys + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc | ppcbe) basic_machine=powerpc-unknown + ;; + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -nacl*) + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/cpp/thirdparty/gtest-1.7.0/build-aux/depcomp b/cpp/thirdparty/gtest-1.7.0/build-aux/depcomp new file mode 100755 index 000000000..bd0ac0895 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/build-aux/depcomp @@ -0,0 +1,688 @@ +#! /bin/sh +# depcomp - compile a program generating dependencies as side-effects + +scriptversion=2011-12-04.11; # UTC + +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010, +# 2011 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Alexandre Oliva . + +case $1 in + '') + echo "$0: No command. Try \`$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: depcomp [--help] [--version] PROGRAM [ARGS] + +Run PROGRAMS ARGS to compile a file, generating dependencies +as side-effects. + +Environment variables: + depmode Dependency tracking mode. + source Source file read by `PROGRAMS ARGS'. + object Object file output by `PROGRAMS ARGS'. + DEPDIR directory where to store dependencies. + depfile Dependency file to output. + tmpdepfile Temporary file to use when outputting dependencies. + libtool Whether libtool is used (yes/no). + +Report bugs to . +EOF + exit $? + ;; + -v | --v*) + echo "depcomp $scriptversion" + exit $? + ;; +esac + +if test -z "$depmode" || test -z "$source" || test -z "$object"; then + echo "depcomp: Variables source, object and depmode must be set" 1>&2 + exit 1 +fi + +# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. +depfile=${depfile-`echo "$object" | + sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} +tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} + +rm -f "$tmpdepfile" + +# Some modes work just like other modes, but use different flags. We +# parameterize here, but still list the modes in the big case below, +# to make depend.m4 easier to write. Note that we *cannot* use a case +# here, because this file can only contain one case statement. +if test "$depmode" = hp; then + # HP compiler uses -M and no extra arg. + gccflag=-M + depmode=gcc +fi + +if test "$depmode" = dashXmstdout; then + # This is just like dashmstdout with a different argument. + dashmflag=-xM + depmode=dashmstdout +fi + +cygpath_u="cygpath -u -f -" +if test "$depmode" = msvcmsys; then + # This is just like msvisualcpp but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvisualcpp +fi + +if test "$depmode" = msvc7msys; then + # This is just like msvc7 but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvc7 +fi + +case "$depmode" in +gcc3) +## gcc 3 implements dependency tracking that does exactly what +## we want. Yay! Note: for some reason libtool 1.4 doesn't like +## it if -MD -MP comes after the -MF stuff. Hmm. +## Unfortunately, FreeBSD c89 acceptance of flags depends upon +## the command line argument order; so add the flags where they +## appear in depend2.am. Note that the slowdown incurred here +## affects only configure: in makefiles, %FASTDEP% shortcuts this. + for arg + do + case $arg in + -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; + *) set fnord "$@" "$arg" ;; + esac + shift # fnord + shift # $arg + done + "$@" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + mv "$tmpdepfile" "$depfile" + ;; + +gcc) +## There are various ways to get dependency output from gcc. Here's +## why we pick this rather obscure method: +## - Don't want to use -MD because we'd like the dependencies to end +## up in a subdir. Having to rename by hand is ugly. +## (We might end up doing this anyway to support other compilers.) +## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like +## -MM, not -M (despite what the docs say). +## - Using -M directly means running the compiler twice (even worse +## than renaming). + if test -z "$gccflag"; then + gccflag=-MD, + fi + "$@" -Wp,"$gccflag$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz +## The second -e expression handles DOS-style file names with drive letters. + sed -e 's/^[^:]*: / /' \ + -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" +## This next piece of magic avoids the `deleted header file' problem. +## The problem is that when a header file which appears in a .P file +## is deleted, the dependency causes make to die (because there is +## typically no way to rebuild the header). We avoid this by adding +## dummy dependencies for each header file. Too bad gcc doesn't do +## this for us directly. + tr ' ' ' +' < "$tmpdepfile" | +## Some versions of gcc put a space before the `:'. On the theory +## that the space means something, we add a space to the output as +## well. hp depmode also adds that space, but also prefixes the VPATH +## to the object. Take care to not repeat it in the output. +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +sgi) + if test "$libtool" = yes; then + "$@" "-Wp,-MDupdate,$tmpdepfile" + else + "$@" -MDupdate "$tmpdepfile" + fi + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + + if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files + echo "$object : \\" > "$depfile" + + # Clip off the initial element (the dependent). Don't try to be + # clever and replace this with sed code, as IRIX sed won't handle + # lines with more than a fixed number of characters (4096 in + # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; + # the IRIX cc adds comments like `#:fec' to the end of the + # dependency line. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ + tr ' +' ' ' >> "$depfile" + echo >> "$depfile" + + # The second pass generates a dummy entry for each header file. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ + >> "$depfile" + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +aix) + # The C for AIX Compiler uses -M and outputs the dependencies + # in a .u file. In older versions, this file always lives in the + # current directory. Also, the AIX compiler puts `$object:' at the + # start of each line; $object doesn't have directory information. + # Version 6 uses the directory in both cases. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.u + tmpdepfile2=$base.u + tmpdepfile3=$dir.libs/$base.u + "$@" -Wc,-M + else + tmpdepfile1=$dir$base.u + tmpdepfile2=$dir$base.u + tmpdepfile3=$dir$base.u + "$@" -M + fi + stat=$? + + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + # Each line is of the form `foo.o: dependent.h'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +icc) + # Intel's C compiler understands `-MD -MF file'. However on + # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c + # ICC 7.0 will fill foo.d with something like + # foo.o: sub/foo.c + # foo.o: sub/foo.h + # which is wrong. We want: + # sub/foo.o: sub/foo.c + # sub/foo.o: sub/foo.h + # sub/foo.c: + # sub/foo.h: + # ICC 7.1 will output + # foo.o: sub/foo.c sub/foo.h + # and will wrap long lines using \ : + # foo.o: sub/foo.c ... \ + # sub/foo.h ... \ + # ... + + "$@" -MD -MF "$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each line is of the form `foo.o: dependent.h', + # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | + sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp2) + # The "hp" stanza above does not work with aCC (C++) and HP's ia64 + # compilers, which have integrated preprocessors. The correct option + # to use with these is +Maked; it writes dependencies to a file named + # 'foo.d', which lands next to the object file, wherever that + # happens to be. + # Much of this is similar to the tru64 case; see comments there. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir.libs/$base.d + "$@" -Wc,+Maked + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + "$@" +Maked + fi + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" + # Add `dependent.h:' lines. + sed -ne '2,${ + s/^ *// + s/ \\*$// + s/$/:/ + p + }' "$tmpdepfile" >> "$depfile" + else + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" "$tmpdepfile2" + ;; + +tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. + # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put + # dependencies in `foo.d' instead, so we check for that too. + # Subdirectories are respected. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + + if test "$libtool" = yes; then + # With Tru64 cc, shared objects can also be used to make a + # static library. This mechanism is used in libtool 1.4 series to + # handle both shared and static libraries in a single compilation. + # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. + # + # With libtool 1.5 this exception was removed, and libtool now + # generates 2 separate objects for the 2 libraries. These two + # compilations output dependencies in $dir.libs/$base.o.d and + # in $dir$base.o.d. We have to check for both files, because + # one of the two compilations can be disabled. We should prefer + # $dir$base.o.d over $dir.libs/$base.o.d because the latter is + # automatically cleaned when .libs/ is deleted, while ignoring + # the former would cause a distcleancheck panic. + tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 + tmpdepfile2=$dir$base.o.d # libtool 1.5 + tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 + tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 + "$@" -Wc,-MD + else + tmpdepfile1=$dir$base.o.d + tmpdepfile2=$dir$base.d + tmpdepfile3=$dir$base.d + tmpdepfile4=$dir$base.d + "$@" -MD + fi + + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + else + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +msvc7) + if test "$libtool" = yes; then + showIncludes=-Wc,-showIncludes + else + showIncludes=-showIncludes + fi + "$@" $showIncludes > "$tmpdepfile" + stat=$? + grep -v '^Note: including file: ' "$tmpdepfile" + if test "$stat" = 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + # The first sed program below extracts the file names and escapes + # backslashes for cygpath. The second sed program outputs the file + # name when reading, but also accumulates all include files in the + # hold buffer in order to output them again at the end. This only + # works with sed implementations that can handle large buffers. + sed < "$tmpdepfile" -n ' +/^Note: including file: *\(.*\)/ { + s//\1/ + s/\\/\\\\/g + p +}' | $cygpath_u | sort -u | sed -n ' +s/ /\\ /g +s/\(.*\)/ \1 \\/p +s/.\(.*\) \\/\1:/ +H +$ { + s/.*/ / + G + p +}' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvc7msys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +#nosideeffect) + # This comment above is used by automake to tell side-effect + # dependency tracking mechanisms from slower ones. + +dashmstdout) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + test -z "$dashmflag" && dashmflag=-M + # Require at least two characters before searching for `:' + # in the target name. This is to cope with DOS-style filenames: + # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. + "$@" $dashmflag | + sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + tr ' ' ' +' < "$tmpdepfile" | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +dashXmstdout) + # This case only exists to satisfy depend.m4. It is never actually + # run, as this mode is specially recognized in the preamble. + exit 1 + ;; + +makedepend) + "$@" || exit $? + # Remove any Libtool call + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + # X makedepend + shift + cleared=no eat=no + for arg + do + case $cleared in + no) + set ""; shift + cleared=yes ;; + esac + if test $eat = yes; then + eat=no + continue + fi + case "$arg" in + -D*|-I*) + set fnord "$@" "$arg"; shift ;; + # Strip any option that makedepend may not understand. Remove + # the object too, otherwise makedepend will parse it as a source file. + -arch) + eat=yes ;; + -*|$object) + ;; + *) + set fnord "$@" "$arg"; shift ;; + esac + done + obj_suffix=`echo "$object" | sed 's/^.*\././'` + touch "$tmpdepfile" + ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" + rm -f "$depfile" + # makedepend may prepend the VPATH from the source file name to the object. + # No need to regex-escape $object, excess matching of '.' is harmless. + sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" + sed '1,2d' "$tmpdepfile" | tr ' ' ' +' | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" "$tmpdepfile".bak + ;; + +cpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + "$@" -E | + sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | + sed '$ s: \\$::' > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + cat < "$tmpdepfile" >> "$depfile" + sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvisualcpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + IFS=" " + for arg + do + case "$arg" in + -o) + shift + ;; + $object) + shift + ;; + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done + "$@" -E 2>/dev/null | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" + echo " " >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvcmsys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +none) + exec "$@" + ;; + +*) + echo "Unknown depmode $depmode" 1>&2 + exit 1 + ;; +esac + +exit 0 + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/cpp/thirdparty/gtest-1.7.0/build-aux/install-sh b/cpp/thirdparty/gtest-1.7.0/build-aux/install-sh new file mode 100755 index 000000000..a9244eb07 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/build-aux/install-sh @@ -0,0 +1,527 @@ +#!/bin/sh +# install - install a program, script, or datafile + +scriptversion=2011-01-19.21; # UTC + +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. +# +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# `make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. + +nl=' +' +IFS=" "" $nl" + +# set DOITPROG to echo to test this script + +# Don't use :- since 4.3BSD and earlier shells don't like it. +doit=${DOITPROG-} +if test -z "$doit"; then + doit_exec=exec +else + doit_exec=$doit +fi + +# Put in absolute file names if you don't have them in your path; +# or use environment vars. + +chgrpprog=${CHGRPPROG-chgrp} +chmodprog=${CHMODPROG-chmod} +chownprog=${CHOWNPROG-chown} +cmpprog=${CMPPROG-cmp} +cpprog=${CPPROG-cp} +mkdirprog=${MKDIRPROG-mkdir} +mvprog=${MVPROG-mv} +rmprog=${RMPROG-rm} +stripprog=${STRIPPROG-strip} + +posix_glob='?' +initialize_posix_glob=' + test "$posix_glob" != "?" || { + if (set -f) 2>/dev/null; then + posix_glob= + else + posix_glob=: + fi + } +' + +posix_mkdir= + +# Desired mode of installed file. +mode=0755 + +chgrpcmd= +chmodcmd=$chmodprog +chowncmd= +mvcmd=$mvprog +rmcmd="$rmprog -f" +stripcmd= + +src= +dst= +dir_arg= +dst_arg= + +copy_on_change=false +no_target_directory= + +usage="\ +Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE + or: $0 [OPTION]... SRCFILES... DIRECTORY + or: $0 [OPTION]... -t DIRECTORY SRCFILES... + or: $0 [OPTION]... -d DIRECTORIES... + +In the 1st form, copy SRCFILE to DSTFILE. +In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. +In the 4th, create DIRECTORIES. + +Options: + --help display this help and exit. + --version display version info and exit. + + -c (ignored) + -C install only if different (preserve the last data modification time) + -d create directories instead of installing files. + -g GROUP $chgrpprog installed files to GROUP. + -m MODE $chmodprog installed files to MODE. + -o USER $chownprog installed files to USER. + -s $stripprog installed files. + -t DIRECTORY install into DIRECTORY. + -T report an error if DSTFILE is a directory. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG + RMPROG STRIPPROG +" + +while test $# -ne 0; do + case $1 in + -c) ;; + + -C) copy_on_change=true;; + + -d) dir_arg=true;; + + -g) chgrpcmd="$chgrpprog $2" + shift;; + + --help) echo "$usage"; exit $?;; + + -m) mode=$2 + case $mode in + *' '* | *' '* | *' +'* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; + + -o) chowncmd="$chownprog $2" + shift;; + + -s) stripcmd=$stripprog;; + + -t) dst_arg=$2 + # Protect names problematic for `test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + shift;; + + -T) no_target_directory=true;; + + --version) echo "$0 $scriptversion"; exit $?;; + + --) shift + break;; + + -*) echo "$0: invalid option: $1" >&2 + exit 1;; + + *) break;; + esac + shift +done + +if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then + # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dst_arg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dst_arg" + shift # fnord + fi + shift # arg + dst_arg=$arg + # Protect names problematic for `test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + done +fi + +if test $# -eq 0; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 + fi + # It's OK to call `install-sh -d' without argument. + # This can happen when creating conditional directories. + exit 0 +fi + +if test -z "$dir_arg"; then + do_exit='(exit $ret); exit $ret' + trap "ret=129; $do_exit" 1 + trap "ret=130; $do_exit" 2 + trap "ret=141; $do_exit" 13 + trap "ret=143; $do_exit" 15 + + # Set umask so as not to create temps with too-generous modes. + # However, 'strip' requires both read and write access to temps. + case $mode in + # Optimize common cases. + *644) cp_umask=133;; + *755) cp_umask=22;; + + *[0-7]) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw='% 200' + fi + cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; + *) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw=,u+rw + fi + cp_umask=$mode$u_plus_rw;; + esac +fi + +for src +do + # Protect names problematic for `test' and other utilities. + case $src in + -* | [=\(\)!]) src=./$src;; + esac + + if test -n "$dir_arg"; then + dst=$src + dstdir=$dst + test -d "$dstdir" + dstdir_status=$? + else + + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dst_arg"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + dst=$dst_arg + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + if test -n "$no_target_directory"; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 + fi + dstdir=$dst + dst=$dstdir/`basename "$src"` + dstdir_status=0 + else + # Prefer dirname, but fall back on a substitute if dirname fails. + dstdir=` + (dirname "$dst") 2>/dev/null || + expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$dst" : 'X\(//\)[^/]' \| \ + X"$dst" : 'X\(//\)$' \| \ + X"$dst" : 'X\(/\)' \| . 2>/dev/null || + echo X"$dst" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q' + ` + + test -d "$dstdir" + dstdir_status=$? + fi + fi + + obsolete_mkdir_used=false + + if test $dstdir_status != 0; then + case $posix_mkdir in + '') + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + + if (umask $mkdir_umask && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writeable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + ls_ld_tmpdir=`ls -ld "$tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/d" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + fi + trap '' 0;; + esac;; + esac + + if + $posix_mkdir && ( + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + ) + then : + else + + # The umask is ridiculous, or mkdir does not conform to POSIX, + # or it failed possibly due to a race condition. Create the + # directory the slow way, step by step, checking for races as we go. + + case $dstdir in + /*) prefix='/';; + [-=\(\)!]*) prefix='./';; + *) prefix='';; + esac + + eval "$initialize_posix_glob" + + oIFS=$IFS + IFS=/ + $posix_glob set -f + set fnord $dstdir + shift + $posix_glob set +f + IFS=$oIFS + + prefixes= + + for d + do + test X"$d" = X && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ + done + + if test -n "$prefixes"; then + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true + fi + fi + fi + + if test -n "$dir_arg"; then + { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && + { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || + test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + else + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + + # Copy the file name to the temp name. + (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $cpprog $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && + { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && + { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + + # If -C, don't bother to copy if it wouldn't change the file. + if $copy_on_change && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + + eval "$initialize_posix_glob" && + $posix_glob set -f && + set X $old && old=:$2:$4:$5:$6 && + set X $new && new=:$2:$4:$5:$6 && + $posix_glob set +f && + + test "$old" = "$new" && + $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 + then + rm -f "$dsttmp" + else + # Rename the file to the real destination. + $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || + + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + { + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" + } + fi || exit 1 + + trap '' 0 + fi +done + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/cpp/thirdparty/gtest-1.7.0/build-aux/ltmain.sh b/cpp/thirdparty/gtest-1.7.0/build-aux/ltmain.sh new file mode 100644 index 000000000..c2852d856 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/build-aux/ltmain.sh @@ -0,0 +1,9661 @@ + +# libtool (GNU libtool) 2.4.2 +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, +# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, +# or obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +# Usage: $progname [OPTION]... [MODE-ARG]... +# +# Provide generalized library-building support services. +# +# --config show all configuration variables +# --debug enable verbose shell tracing +# -n, --dry-run display commands without modifying any files +# --features display basic configuration information and exit +# --mode=MODE use operation mode MODE +# --preserve-dup-deps don't remove duplicate dependency libraries +# --quiet, --silent don't print informational messages +# --no-quiet, --no-silent +# print informational messages (default) +# --no-warn don't display warning messages +# --tag=TAG use configuration variables from tag TAG +# -v, --verbose print more informational messages than default +# --no-verbose don't print the extra informational messages +# --version print version information +# -h, --help, --help-all print short, long, or detailed help message +# +# MODE must be one of the following: +# +# clean remove files from the build directory +# compile compile a source file into a libtool object +# execute automatically set library path, then run a program +# finish complete the installation of libtool libraries +# install install libraries or executables +# link create a library or an executable +# uninstall remove libraries from an installed directory +# +# MODE-ARGS vary depending on the MODE. When passed as first option, +# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. +# Try `$progname --help --mode=MODE' for a more detailed description of MODE. +# +# When reporting a bug, please describe a test case to reproduce it and +# include the following information: +# +# host-triplet: $host +# shell: $SHELL +# compiler: $LTCC +# compiler flags: $LTCFLAGS +# linker: $LD (gnu? $with_gnu_ld) +# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu1 +# automake: $automake_version +# autoconf: $autoconf_version +# +# Report bugs to . +# GNU libtool home page: . +# General help using GNU software: . + +PROGRAM=libtool +PACKAGE=libtool +VERSION="2.4.2 Debian-2.4.2-1ubuntu1" +TIMESTAMP="" +package_revision=1.3337 + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# NLS nuisances: We save the old values to restore during execute mode. +lt_user_locale= +lt_safe_locale= +for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test \"\${$lt_var+set}\" = set; then + save_$lt_var=\$$lt_var + $lt_var=C + export $lt_var + lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" + lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + fi" +done +LC_ALL=C +LANGUAGE=C +export LANGUAGE LC_ALL + +$lt_unset CDPATH + + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath="$0" + + + +: ${CP="cp -f"} +test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} +: ${Xsed="$SED -e 1s/^X//"} + +# Global variables: +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +exit_status=$EXIT_SUCCESS + +# Make sure IFS has a sensible default +lt_nl=' +' +IFS=" $lt_nl" + +dirname="s,/[^/]*$,," +basename="s,^.*/,," + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi +} # func_dirname may be replaced by extended shell implementation + + +# func_basename file +func_basename () +{ + func_basename_result=`$ECHO "${1}" | $SED "$basename"` +} # func_basename may be replaced by extended shell implementation + + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi + func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` +} # func_dirname_and_basename may be replaced by extended shell implementation + + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname may be replaced by extended shell implementation + + +# These SED scripts presuppose an absolute path with a trailing slash. +pathcar='s,^/\([^/]*\).*$,\1,' +pathcdr='s,^/[^/]*,,' +removedotparts=':dotsl + s@/\./@/@g + t dotsl + s,/\.$,/,' +collapseslashes='s@/\{1,\}@/@g' +finalslash='s,/*$,/,' + +# func_normal_abspath PATH +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +# value returned in "$func_normal_abspath_result" +func_normal_abspath () +{ + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` + while :; do + # Processed it all yet? + if test "$func_normal_abspath_tpath" = / ; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result" ; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + +# func_relative_path SRCDIR DSTDIR +# generates a relative path from SRCDIR to DSTDIR, with a trailing +# slash if non-empty, suitable for immediately appending a filename +# without needing to append a separator. +# value returned in "$func_relative_path_result" +func_relative_path () +{ + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=${func_dirname_result} + if test "x$func_relative_path_tlibdir" = x ; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test "x$func_stripname_result" != x ; then + func_relative_path_result=${func_relative_path_result}/${func_stripname_result} + fi + + # Normalisation. If bindir is libdir, return empty string, + # else relative path ending with a slash; either way, target + # file name can be directly appended. + if test ! -z "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result/" + func_relative_path_result=$func_stripname_result + fi +} + +# The name of this program: +func_dirname_and_basename "$progpath" +progname=$func_basename_result + +# Make sure we have an absolute path for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=$func_dirname_result + progdir=`cd "$progdir" && pwd` + progpath="$progdir/$progname" + ;; + *) + save_IFS="$IFS" + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS="$save_IFS" + test -x "$progdir/$progname" && break + done + IFS="$save_IFS" + test -n "$progdir" || progdir=`pwd` + progpath="$progdir/$progname" + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed="${SED}"' -e 1s/^X//' +sed_quote_subst='s/\([`"$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' + +# Sed substitution that converts a w32 file name or path +# which contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-`\' parameter expansions in output of double_quote_subst that were +# `\'-ed in input to the same. If an odd number of `\' preceded a '$' +# in input to double_quote_subst, that '$' was protected from expansion. +# Since each input `\' is now two `\'s, look for any number of runs of +# four `\'s followed by two `\'s and then a '$'. `\' that '$'. +bs='\\' +bs2='\\\\' +bs4='\\\\\\\\' +dollar='\$' +sed_double_backslash="\ + s/$bs4/&\\ +/g + s/^$bs2$dollar/$bs&/ + s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g + s/\n//g" + +# Standard options: +opt_dry_run=false +opt_help=false +opt_quiet=false +opt_verbose=false +opt_warning=: + +# func_echo arg... +# Echo program name prefixed message, along with the current mode +# name if it has been set yet. +func_echo () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }$*" +} + +# func_verbose arg... +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $opt_verbose && func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +# func_error arg... +# Echo program name prefixed message to standard error. +func_error () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 +} + +# func_warning arg... +# Echo program name prefixed warning message to standard error. +func_warning () +{ + $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 + + # bash bug again: + : +} + +# func_fatal_error arg... +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + +# func_fatal_help arg... +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + func_error ${1+"$@"} + func_fatal_error "$help" +} +help="Try \`$progname --help' for more information." ## default + + +# func_grep expression filename +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_mkdir_p directory-path +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + my_directory_path="$1" + my_dir_list= + + if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + + # Protect directory names starting with `-' + case $my_directory_path in + -*) my_directory_path="./$my_directory_path" ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$my_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + my_dir_list="$my_directory_path:$my_dir_list" + + # If the last portion added has no slash in it, the list is done + case $my_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` + done + my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` + + save_mkdir_p_IFS="$IFS"; IFS=':' + for my_dir in $my_dir_list; do + IFS="$save_mkdir_p_IFS" + # mkdir can fail with a `File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$my_dir" 2>/dev/null || : + done + IFS="$save_mkdir_p_IFS" + + # Bail out if we (or some other process) failed to create a directory. + test -d "$my_directory_path" || \ + func_fatal_error "Failed to create \`$1'" + fi +} + + +# func_mktempdir [string] +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, STRING is the basename for that directory. +func_mktempdir () +{ + my_template="${TMPDIR-/tmp}/${1-$progname}" + + if test "$opt_dry_run" = ":"; then + # Return a directory name, but don't create it in dry-run mode + my_tmpdir="${my_template}-$$" + else + + # If mktemp works, use that first and foremost + my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + + if test ! -d "$my_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + my_tmpdir="${my_template}-${RANDOM-0}$$" + + save_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$my_tmpdir" + umask $save_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$my_tmpdir" || \ + func_fatal_error "cannot create temporary directory \`$my_tmpdir'" + fi + + $ECHO "$my_tmpdir" +} + + +# func_quote_for_eval arg +# Aesthetically quote ARG to be evaled later. +# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT +# is double-quoted, suitable for a subsequent eval, whereas +# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters +# which are still active within double quotes backslashified. +func_quote_for_eval () +{ + case $1 in + *[\\\`\"\$]*) + func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; + *) + func_quote_for_eval_unquoted_result="$1" ;; + esac + + case $func_quote_for_eval_unquoted_result in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and and variable + # expansion for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" + ;; + *) + func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" + esac +} + + +# func_quote_for_expand arg +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + case $1 in + *[\\\`\"]*) + my_arg=`$ECHO "$1" | $SED \ + -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + *) + my_arg="$1" ;; + esac + + case $my_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + my_arg="\"$my_arg\"" + ;; + esac + + func_quote_for_expand_result="$my_arg" +} + + +# func_show_eval cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$my_cmd" + my_status=$? + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + +# func_show_eval_locale cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$lt_user_locale + $my_cmd" + my_status=$? + eval "$lt_safe_locale" + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + +# func_tr_sh +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_version +# Echo version message to standard output and exit. +func_version () +{ + $opt_debug + + $SED -n '/(C)/!b go + :more + /\./!{ + N + s/\n# / / + b more + } + :go + /^# '$PROGRAM' (GNU /,/# warranty; / { + s/^# // + s/^# *$// + s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ + p + }' < "$progpath" + exit $? +} + +# func_usage +# Echo short help message to standard output and exit. +func_usage () +{ + $opt_debug + + $SED -n '/^# Usage:/,/^# *.*--help/ { + s/^# // + s/^# *$// + s/\$progname/'$progname'/ + p + }' < "$progpath" + echo + $ECHO "run \`$progname --help | more' for full usage" + exit $? +} + +# func_help [NOEXIT] +# Echo long help message to standard output and exit, +# unless 'noexit' is passed as argument. +func_help () +{ + $opt_debug + + $SED -n '/^# Usage:/,/# Report bugs to/ { + :print + s/^# // + s/^# *$// + s*\$progname*'$progname'* + s*\$host*'"$host"'* + s*\$SHELL*'"$SHELL"'* + s*\$LTCC*'"$LTCC"'* + s*\$LTCFLAGS*'"$LTCFLAGS"'* + s*\$LD*'"$LD"'* + s/\$with_gnu_ld/'"$with_gnu_ld"'/ + s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ + s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ + p + d + } + /^# .* home page:/b print + /^# General help using/b print + ' < "$progpath" + ret=$? + if test -z "$1"; then + exit $ret + fi +} + +# func_missing_arg argname +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + $opt_debug + + func_error "missing argument for $1." + exit_cmd=exit +} + + +# func_split_short_opt shortopt +# Set func_split_short_opt_name and func_split_short_opt_arg shell +# variables after splitting SHORTOPT after the 2nd character. +func_split_short_opt () +{ + my_sed_short_opt='1s/^\(..\).*$/\1/;q' + my_sed_short_rest='1s/^..\(.*\)$/\1/;q' + + func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` + func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` +} # func_split_short_opt may be replaced by extended shell implementation + + +# func_split_long_opt longopt +# Set func_split_long_opt_name and func_split_long_opt_arg shell +# variables after splitting LONGOPT at the `=' sign. +func_split_long_opt () +{ + my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' + my_sed_long_arg='1s/^--[^=]*=//' + + func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` + func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` +} # func_split_long_opt may be replaced by extended shell implementation + +exit_cmd=: + + + + + +magic="%%%MAGIC variable%%%" +magic_exe="%%%MAGIC EXE variable%%%" + +# Global variables. +nonopt= +preserve_args= +lo2o="s/\\.lo\$/.${objext}/" +o2lo="s/\\.${objext}\$/.lo/" +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "${1}=\$${1}\${2}" +} # func_append may be replaced by extended shell implementation + +# func_append_quoted var value +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +func_append_quoted () +{ + func_quote_for_eval "${2}" + eval "${1}=\$${1}\\ \$func_quote_for_eval_result" +} # func_append_quoted may be replaced by extended shell implementation + + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=`expr "${@}"` +} # func_arith may be replaced by extended shell implementation + + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` +} # func_len may be replaced by extended shell implementation + + +# func_lo2o object +func_lo2o () +{ + func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` +} # func_lo2o may be replaced by extended shell implementation + + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` +} # func_xform may be replaced by extended shell implementation + + +# func_fatal_configuration arg... +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () +{ + func_error ${1+"$@"} + func_error "See the $PACKAGE documentation for more information." + func_fatal_error "Fatal configuration error." +} + + +# func_config +# Display the configuration for all the tags in this script. +func_config () +{ + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + +# func_features +# Display the features supported by this script. +func_features () +{ + echo "host: $host" + if test "$build_libtool_libs" = yes; then + echo "enable shared libraries" + else + echo "disable shared libraries" + fi + if test "$build_old_libs" = yes; then + echo "enable static libraries" + else + echo "disable static libraries" + fi + + exit $? +} + +# func_enable_tag tagname +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname="$1" + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf="/$re_begincf/,/$re_endcf/p" + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + +# func_check_version_match +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +# Shorthand for --mode=foo, only valid as the first argument +case $1 in +clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; +compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; +execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; +finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; +install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; +link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; +uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; +esac + + + +# Option defaults: +opt_debug=: +opt_dry_run=false +opt_config=false +opt_preserve_dup_deps=false +opt_features=false +opt_finish=false +opt_help=false +opt_help_all=false +opt_silent=: +opt_warning=: +opt_verbose=: +opt_silent=false +opt_verbose=false + + +# Parse options once, thoroughly. This comes as soon as possible in the +# script to make things like `--version' happen as quickly as we can. +{ + # this just eases exit handling + while test $# -gt 0; do + opt="$1" + shift + case $opt in + --debug|-x) opt_debug='set -x' + func_echo "enabling shell trace mode" + $opt_debug + ;; + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + --config) + opt_config=: +func_config + ;; + --dlopen|-dlopen) + optarg="$1" + opt_dlopen="${opt_dlopen+$opt_dlopen +}$optarg" + shift + ;; + --preserve-dup-deps) + opt_preserve_dup_deps=: + ;; + --features) + opt_features=: +func_features + ;; + --finish) + opt_finish=: +set dummy --mode finish ${1+"$@"}; shift + ;; + --help) + opt_help=: + ;; + --help-all) + opt_help_all=: +opt_help=': help-all' + ;; + --mode) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_mode="$optarg" +case $optarg in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $opt" + exit_cmd=exit + break + ;; +esac + shift + ;; + --no-silent|--no-quiet) + opt_silent=false +func_append preserve_args " $opt" + ;; + --no-warning|--no-warn) + opt_warning=false +func_append preserve_args " $opt" + ;; + --no-verbose) + opt_verbose=false +func_append preserve_args " $opt" + ;; + --silent|--quiet) + opt_silent=: +func_append preserve_args " $opt" + opt_verbose=false + ;; + --verbose|-v) + opt_verbose=: +func_append preserve_args " $opt" +opt_silent=false + ;; + --tag) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_tag="$optarg" +func_append preserve_args " $opt $optarg" +func_enable_tag "$optarg" + shift + ;; + + -\?|-h) func_usage ;; + --help) func_help ;; + --version) func_version ;; + + # Separate optargs to long options: + --*=*) + func_split_long_opt "$opt" + set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-n*|-v*) + func_split_short_opt "$opt" + set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognized option \`$opt'" ;; + *) set dummy "$opt" ${1+"$@"}; shift; break ;; + esac + done + + # Validate options: + + # save first non-option argument + if test "$#" -gt 0; then + nonopt="$opt" + shift + fi + + # preserve --debug + test "$opt_debug" = : || func_append preserve_args " --debug" + + case $host in + *cygwin* | *mingw* | *pw32* | *cegcc*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then + func_fatal_configuration "not configured to build any kind of library" + fi + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test "$opt_mode" != execute; then + func_error "unrecognized option \`-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help="$help" + help="Try \`$progname --help --mode=$opt_mode' for more information." + } + + + # Bail if the options were screwed + $exit_cmd $EXIT_FAILURE +} + + + + +## ----------- ## +## Main. ## +## ----------- ## + +# func_lalib_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null \ + | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if `file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case "$lalib_p_line" in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test "$lalib_p" = yes +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + func_lalib_p "$1" +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $opt_debug + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$save_ifs + eval cmd=\"$cmd\" + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# `FILE.' does not work on cygwin managed mounts. +func_source () +{ + $opt_debug + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_resolve_sysroot PATH +# Replace a leading = in PATH with a sysroot. Store the result into +# func_resolve_sysroot_result +func_resolve_sysroot () +{ + func_resolve_sysroot_result=$1 + case $func_resolve_sysroot_result in + =*) + func_stripname '=' '' "$func_resolve_sysroot_result" + func_resolve_sysroot_result=$lt_sysroot$func_stripname_result + ;; + esac +} + +# func_replace_sysroot PATH +# If PATH begins with the sysroot, replace it with = and +# store the result into func_replace_sysroot_result. +func_replace_sysroot () +{ + case "$lt_sysroot:$1" in + ?*:"$lt_sysroot"*) + func_stripname "$lt_sysroot" '' "$1" + func_replace_sysroot_result="=$func_stripname_result" + ;; + *) + # Including no sysroot. + func_replace_sysroot_result=$1 + ;; + esac +} + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $opt_debug + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case "$@ " in + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with \`--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=${1} + if test "$build_libtool_libs" = yes; then + write_lobj=\'${2}\' + else + write_lobj=none + fi + + if test "$build_old_libs" = yes; then + write_oldobj=\'${3}\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T </dev/null` + if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | + $SED -e "$lt_sed_naive_backslashify"` + else + func_convert_core_file_wine_to_w32_result= + fi + fi +} +# end: func_convert_core_file_wine_to_w32 + + +# func_convert_core_path_wine_to_w32 ARG +# Helper function used by path conversion functions when $build is *nix, and +# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly +# configured wine environment available, with the winepath program in $build's +# $PATH. Assumes ARG has no leading or trailing path separator characters. +# +# ARG is path to be converted from $build format to win32. +# Result is available in $func_convert_core_path_wine_to_w32_result. +# Unconvertible file (directory) names in ARG are skipped; if no directory names +# are convertible, then the result may be empty. +func_convert_core_path_wine_to_w32 () +{ + $opt_debug + # unfortunately, winepath doesn't convert paths, only file names + func_convert_core_path_wine_to_w32_result="" + if test -n "$1"; then + oldIFS=$IFS + IFS=: + for func_convert_core_path_wine_to_w32_f in $1; do + IFS=$oldIFS + func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" + if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -z "$func_convert_core_path_wine_to_w32_result"; then + func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + else + func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" + fi + fi + done + IFS=$oldIFS + fi +} +# end: func_convert_core_path_wine_to_w32 + + +# func_cygpath ARGS... +# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when +# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) +# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or +# (2), returns the Cygwin file name or path in func_cygpath_result (input +# file name or path is assumed to be in w32 format, as previously converted +# from $build's *nix or MSYS format). In case (3), returns the w32 file name +# or path in func_cygpath_result (input file name or path is assumed to be in +# Cygwin format). Returns an empty string on error. +# +# ARGS are passed to cygpath, with the last one being the file name or path to +# be converted. +# +# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH +# environment variable; do not put it in $PATH. +func_cygpath () +{ + $opt_debug + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then + func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` + if test "$?" -ne 0; then + # on failure, ensure result is empty + func_cygpath_result= + fi + else + func_cygpath_result= + func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + fi +} +#end: func_cygpath + + +# func_convert_core_msys_to_w32 ARG +# Convert file name or path ARG from MSYS format to w32 format. Return +# result in func_convert_core_msys_to_w32_result. +func_convert_core_msys_to_w32 () +{ + $opt_debug + # awkward: cmd appends spaces to result + func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | + $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` +} +#end: func_convert_core_msys_to_w32 + + +# func_convert_file_check ARG1 ARG2 +# Verify that ARG1 (a file name in $build format) was converted to $host +# format in ARG2. Otherwise, emit an error message, but continue (resetting +# func_to_host_file_result to ARG1). +func_convert_file_check () +{ + $opt_debug + if test -z "$2" && test -n "$1" ; then + func_error "Could not determine host file name corresponding to" + func_error " \`$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_file_result="$1" + fi +} +# end func_convert_file_check + + +# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH +# Verify that FROM_PATH (a path in $build format) was converted to $host +# format in TO_PATH. Otherwise, emit an error message, but continue, resetting +# func_to_host_file_result to a simplistic fallback value (see below). +func_convert_path_check () +{ + $opt_debug + if test -z "$4" && test -n "$3"; then + func_error "Could not determine the host path corresponding to" + func_error " \`$3'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This is a deliberately simplistic "conversion" and + # should not be "improved". See libtool.info. + if test "x$1" != "x$2"; then + lt_replace_pathsep_chars="s|$1|$2|g" + func_to_host_path_result=`echo "$3" | + $SED -e "$lt_replace_pathsep_chars"` + else + func_to_host_path_result="$3" + fi + fi +} +# end func_convert_path_check + + +# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG +# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT +# and appending REPL if ORIG matches BACKPAT. +func_convert_path_front_back_pathsep () +{ + $opt_debug + case $4 in + $1 ) func_to_host_path_result="$3$func_to_host_path_result" + ;; + esac + case $4 in + $2 ) func_append func_to_host_path_result "$3" + ;; + esac +} +# end func_convert_path_front_back_pathsep + + +################################################## +# $build to $host FILE NAME CONVERSION FUNCTIONS # +################################################## +# invoked via `$to_host_file_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# Result will be available in $func_to_host_file_result. + + +# func_to_host_file ARG +# Converts the file name ARG from $build format to $host format. Return result +# in func_to_host_file_result. +func_to_host_file () +{ + $opt_debug + $to_host_file_cmd "$1" +} +# end func_to_host_file + + +# func_to_tool_file ARG LAZY +# converts the file name ARG from $build format to toolchain format. Return +# result in func_to_tool_file_result. If the conversion in use is listed +# in (the comma separated) LAZY, no conversion takes place. +func_to_tool_file () +{ + $opt_debug + case ,$2, in + *,"$to_tool_file_cmd",*) + func_to_tool_file_result=$1 + ;; + *) + $to_tool_file_cmd "$1" + func_to_tool_file_result=$func_to_host_file_result + ;; + esac +} +# end func_to_tool_file + + +# func_convert_file_noop ARG +# Copy ARG to func_to_host_file_result. +func_convert_file_noop () +{ + func_to_host_file_result="$1" +} +# end func_convert_file_noop + + +# func_convert_file_msys_to_w32 ARG +# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_file_result. +func_convert_file_msys_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_to_host_file_result="$func_convert_core_msys_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_w32 + + +# func_convert_file_cygwin_to_w32 ARG +# Convert file name ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_file_cygwin_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # because $build is cygwin, we call "the" cygpath in $PATH; no need to use + # LT_CYGPATH in this case. + func_to_host_file_result=`cygpath -m "$1"` + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_cygwin_to_w32 + + +# func_convert_file_nix_to_w32 ARG +# Convert file name ARG from *nix to w32 format. Requires a wine environment +# and a working winepath. Returns result in func_to_host_file_result. +func_convert_file_nix_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_file_wine_to_w32 "$1" + func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_w32 + + +# func_convert_file_msys_to_cygwin ARG +# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_file_msys_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_cygpath -u "$func_convert_core_msys_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_cygwin + + +# func_convert_file_nix_to_cygwin ARG +# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed +# in a wine environment, working winepath, and LT_CYGPATH set. Returns result +# in func_to_host_file_result. +func_convert_file_nix_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. + func_convert_core_file_wine_to_w32 "$1" + func_cygpath -u "$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_cygwin + + +############################################# +# $build to $host PATH CONVERSION FUNCTIONS # +############################################# +# invoked via `$to_host_path_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# The result will be available in $func_to_host_path_result. +# +# Path separators are also converted from $build format to $host format. If +# ARG begins or ends with a path separator character, it is preserved (but +# converted to $host format) on output. +# +# All path conversion functions are named using the following convention: +# file name conversion function : func_convert_file_X_to_Y () +# path conversion function : func_convert_path_X_to_Y () +# where, for any given $build/$host combination the 'X_to_Y' value is the +# same. If conversion functions are added for new $build/$host combinations, +# the two new functions must follow this pattern, or func_init_to_host_path_cmd +# will break. + + +# func_init_to_host_path_cmd +# Ensures that function "pointer" variable $to_host_path_cmd is set to the +# appropriate value, based on the value of $to_host_file_cmd. +to_host_path_cmd= +func_init_to_host_path_cmd () +{ + $opt_debug + if test -z "$to_host_path_cmd"; then + func_stripname 'func_convert_file_' '' "$to_host_file_cmd" + to_host_path_cmd="func_convert_path_${func_stripname_result}" + fi +} + + +# func_to_host_path ARG +# Converts the path ARG from $build format to $host format. Return result +# in func_to_host_path_result. +func_to_host_path () +{ + $opt_debug + func_init_to_host_path_cmd + $to_host_path_cmd "$1" +} +# end func_to_host_path + + +# func_convert_path_noop ARG +# Copy ARG to func_to_host_path_result. +func_convert_path_noop () +{ + func_to_host_path_result="$1" +} +# end func_convert_path_noop + + +# func_convert_path_msys_to_w32 ARG +# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_path_result. +func_convert_path_msys_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from ARG. MSYS + # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; + # and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_msys_to_w32 + + +# func_convert_path_cygwin_to_w32 ARG +# Convert path ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_path_cygwin_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_cygwin_to_w32 + + +# func_convert_path_nix_to_w32 ARG +# Convert path ARG from *nix to w32 format. Requires a wine environment and +# a working winepath. Returns result in func_to_host_file_result. +func_convert_path_nix_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_nix_to_w32 + + +# func_convert_path_msys_to_cygwin ARG +# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_path_msys_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_msys_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_msys_to_cygwin + + +# func_convert_path_nix_to_cygwin ARG +# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a +# a wine environment, working winepath, and LT_CYGPATH set. Returns result in +# func_to_host_file_result. +func_convert_path_nix_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_nix_to_cygwin + + +# func_mode_compile arg... +func_mode_compile () +{ + $opt_debug + # Get the compilation command and the source file. + base_compile= + srcfile="$nonopt" # always keep a non-empty value in "srcfile" + suppress_opt=yes + suppress_output= + arg_mode=normal + libobj= + later= + pie_flag= + + for arg + do + case $arg_mode in + arg ) + # do not "continue". Instead, add this to base_compile + lastarg="$arg" + arg_mode=normal + ;; + + target ) + libobj="$arg" + arg_mode=normal + continue + ;; + + normal ) + # Accept any command-line options. + case $arg in + -o) + test -n "$libobj" && \ + func_fatal_error "you cannot specify \`-o' more than once" + arg_mode=target + continue + ;; + + -pie | -fpie | -fPIE) + func_append pie_flag " $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) + func_append later " $arg" + continue + ;; + + -no-suppress) + suppress_opt=no + continue + ;; + + -Xcompiler) + arg_mode=arg # the next one goes into the "base_compile" arg list + continue # The current "srcfile" will either be retained or + ;; # replaced later. I would guess that would be a bug. + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + lastarg= + save_ifs="$IFS"; IFS=',' + for arg in $args; do + IFS="$save_ifs" + func_append_quoted lastarg "$arg" + done + IFS="$save_ifs" + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result + + # Add the arguments to base_compile. + func_append base_compile " $lastarg" + continue + ;; + + *) + # Accept the current argument as the source file. + # The previous "srcfile" becomes the current argument. + # + lastarg="$srcfile" + srcfile="$arg" + ;; + esac # case $arg + ;; + esac # case $arg_mode + + # Aesthetically quote the previous argument. + func_append_quoted base_compile "$lastarg" + done # for arg + + case $arg_mode in + arg) + func_fatal_error "you must specify an argument for -Xcompile" + ;; + target) + func_fatal_error "you must specify a target with \`-o'" + ;; + *) + # Get the name of the library object. + test -z "$libobj" && { + func_basename "$srcfile" + libobj="$func_basename_result" + } + ;; + esac + + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + case $libobj in + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + func_xform "$libobj" + libobj=$func_xform_result + ;; + esac + + case $libobj in + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; + *) + func_fatal_error "cannot determine name of library object from \`$libobj'" + ;; + esac + + func_infer_tag $base_compile + + for arg in $later; do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + continue + ;; + + -static) + build_libtool_libs=no + build_old_libs=yes + continue + ;; + + -prefer-pic) + pic_mode=yes + continue + ;; + + -prefer-non-pic) + pic_mode=no + continue + ;; + esac + done + + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name \`$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname="$func_basename_result" + xdir="$func_dirname_result" + lobj=${xdir}$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test "$build_old_libs" = yes; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2* | cegcc*) + pic_mode=default + ;; + esac + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test "$compiler_c_o" = no; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} + lockfile="$output_obj.lock" + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test "$need_locks" = yes; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test "$need_locks" = warn; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + func_append removelist " $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + func_append removelist " $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 + srcfile=$func_to_tool_file_result + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test "$build_libtool_libs" = yes; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test "$pic_mode" != no; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + func_append command " -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test "$suppress_opt" = yes; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test "$build_old_libs" = yes; then + if test "$pic_mode" != yes; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test "$compiler_c_o" = yes; then + func_append command " -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + func_append command "$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test "$need_locks" != no; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { + test "$opt_mode" = compile && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $opt_mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to build PIC objects only + -prefer-non-pic try to build non-PIC objects only + -shared do not build a \`.o' file suitable for static linking + -static only build a \`.o' file suitable for static linking + -Wc,FLAG pass FLAG directly to the compiler + +COMPILE-COMMAND is a command to be used in creating a \`standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix \`.c' with the +library object suffix, \`.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to \`-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the \`--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the \`install' or \`cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -bindir BINDIR specify path to binaries directory (for systems where + libraries must be found in the PATH setting at runtime) + -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE Use a list of object files found in FILE to specify objects + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + -Wc,FLAG + -Xcompiler FLAG pass linker-specific FLAG directly to the compiler + -Wl,FLAG + -Xlinker FLAG pass linker-specific FLAG directly to the linker + -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) + +All other options (arguments beginning with \`-') are ignored. + +Every other argument is treated as a filename. Files ending in \`.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in \`.la', then a libtool library is created, +only library objects (\`.lo' files) may be specified, and \`-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created +using \`ar' and \`ranlib', or on Windows using \`lib'. + +If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode \`$opt_mode'" + ;; + esac + + echo + $ECHO "Try \`$progname --help' for more information about other modes." +} + +# Now that we've collected a possible --mode arg, show help if necessary +if $opt_help; then + if test "$opt_help" = :; then + func_mode_help + else + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + func_mode_help + done + } | sed -n '1p; 2,$s/^Usage:/ or: /p' + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + echo + func_mode_help + done + } | + sed '1d + /^When reporting/,/^Report/{ + H + d + } + $x + /information about other modes/d + /more detailed .*MODE/d + s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' + fi + exit $? +fi + + +# func_mode_execute arg... +func_mode_execute () +{ + $opt_debug + # The first argument is the command name. + cmd="$nonopt" + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $opt_dlopen; do + test -f "$file" \ + || func_fatal_help "\`$file' is not a file" + + dir= + case $file in + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "\`$file' was not linked with \`-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir="$func_dirname_result" + + if test -f "$dir/$objdir/$dlname"; then + func_append dir "/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir="$func_dirname_result" + ;; + + *) + func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir="$absdir" + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic="$magic" + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -* | *.la | *.lo ) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file="$progdir/$program" + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file="$progdir/$program" + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_append_quoted args "$file" + done + + if test "X$opt_dry_run" = Xfalse; then + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd="\$cmd$args" + else + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = execute && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $opt_debug + libs= + libdirs= + admincmds= + + for opt in "$nonopt" ${1+"$@"} + do + if test -d "$opt"; then + func_append libdirs " $opt" + + elif test -f "$opt"; then + if func_lalib_unsafe_p "$opt"; then + func_append libs " $opt" + else + func_warning "\`$opt' is not a valid libtool archive" + fi + + else + func_fatal_error "invalid argument \`$opt'" + fi + done + + if test -n "$libs"; then + if test -n "$lt_sysroot"; then + sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` + sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" + else + sysroot_cmd= + fi + + # Remove sysroot references + if $opt_dry_run; then + for lib in $libs; do + echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + done + else + tmpdir=`func_mktempdir` + for lib in $libs; do + sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + > $tmpdir/tmp-la + mv -f $tmpdir/tmp-la $lib + done + ${RM}r "$tmpdir" + fi + fi + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || func_append admincmds " + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_silent && exit $EXIT_SUCCESS + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" + echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " during execution" + fi + if test -n "$runpath_var"; then + echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the \`$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + fi + echo + + echo "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" + echo "pages." + ;; + *) + echo "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + echo "----------------------------------------------------------------------" + fi + exit $EXIT_SUCCESS +} + +test "$opt_mode" = finish && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $opt_debug + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac; then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + func_append install_prog "$func_quote_for_eval_result" + install_shared_prog=$install_prog + case " $install_prog " in + *[\\\ /]cp\ *) install_cp=: ;; + *) install_cp=false ;; + esac + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=no + stripme= + no_mode=: + for arg + do + arg2= + if test -n "$dest"; then + func_append files " $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=yes ;; + -f) + if $install_cp; then :; else + prev=$arg + fi + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + if test "x$prev" = x-m && test -n "$install_override_mode"; then + arg2=$install_override_mode + no_mode=false + fi + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + func_append install_prog " $func_quote_for_eval_result" + if test -n "$arg2"; then + func_quote_for_eval "$arg2" + fi + func_append install_shared_prog " $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the \`$prev' option requires an argument" + + if test -n "$install_override_mode" && $no_mode; then + if $install_cp; then :; else + func_quote_for_eval "$install_override_mode" + func_append install_shared_prog " -m $func_quote_for_eval_result" + fi + fi + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=yes + if test "$isdir" = yes; then + destdir="$dest" + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir="$func_dirname_result" + destname="$func_basename_result" + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "\`$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "\`$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + func_append staticlibs " $file" + ;; + + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) func_append current_libdirs " $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) func_append future_libdirs " $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir="$func_dirname_result" + func_append dir "$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking \`$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname="$1" + shift + + srcname="$realname" + test -n "$relink_command" && srcname="$realname"T + + # Install the shared library and build the symlinks. + func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme="$stripme" + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme="" + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try `ln -sf' first, because the `ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib="$destdir/$realname" + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name="$func_basename_result" + instname="$dir/$name"i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && func_append staticlibs " $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest="$destfile" + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to \`$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test "$build_old_libs" = yes; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext="" + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=".exe" + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script \`$wrapper'" + + finalize=yes + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "\`$lib' has not been installed in \`$libdir'" + finalize=no + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test "$fast_install" = no && test -n "$relink_command"; then + $opt_dry_run || { + if test "$finalize" = yes; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file="$func_basename_result" + outputname="$tmpdir/$file" + # Replace the output file specification. + relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_silent || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink \`$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file="$outputname" + else + func_warning "cannot relink \`$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name="$func_basename_result" + + # Set up the ranlib parameters. + oldlib="$destdir/$name" + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run \`$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = install && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $opt_debug + my_outputname="$1" + my_originator="$2" + my_pic_p="${3-no}" + my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms="${my_outputname}S.c" + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist="$output_objdir/${my_outputname}.nm" + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" +#endif + +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +/* External symbol declarations for the compiler. */\ +" + + if test "$dlself" = yes; then + func_verbose "generating symbol list for \`$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_to_tool_file "$progfile" func_convert_file_msys_to_w32 + func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols="$output_objdir/$outputname.exp" + $opt_dry_run || { + $RM $export_symbols + eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from \`$dlprefile'" + func_basename "$dlprefile" + name="$func_basename_result" + case $host in + *cygwin* | *mingw* | *cegcc* ) + # if an import library, we need to obtain dlname + if func_win32_import_lib_p "$dlprefile"; then + func_tr_sh "$dlprefile" + eval "curr_lafile=\$libfile_$func_tr_sh_result" + dlprefile_dlbasename="" + if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then + # Use subshell, to avoid clobbering current variable values + dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` + if test -n "$dlprefile_dlname" ; then + func_basename "$dlprefile_dlname" + dlprefile_dlbasename="$func_basename_result" + else + # no lafile. user explicitly requested -dlpreopen . + $sharedlib_from_linklib_cmd "$dlprefile" + dlprefile_dlbasename=$sharedlib_from_linklib_result + fi + fi + $opt_dry_run || { + if test -n "$dlprefile_dlbasename" ; then + eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' + else + func_warning "Could not compute DLL name from $name" + eval '$ECHO ": $name " >> "$nlist"' + fi + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | + $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" + } + else # not an import lib + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + fi + ;; + *) + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + ;; + esac + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + echo '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + echo >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +extern LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[]; +LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{\ + { \"$my_originator\", (void *) 0 }," + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + echo >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + if test "X$my_pic_p" != Xno; then + pic_flag_for_symtable=" $pic_flag" + fi + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) func_append symtab_cflags " $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + + # Transform the symbol file into the correct name. + symfileobj="$output_objdir/${my_outputname}S.$objext" + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for \`$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` + fi +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +# Despite the name, also deal with 64 bit binaries. +func_win32_libid () +{ + $opt_debug + win32_libid_type="unknown" + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' + 1,100{ + / I /{ + s,.*,import, + p + q + } + }'` + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + +# func_cygming_dll_for_implib ARG +# +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib () +{ + $opt_debug + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` +} + +# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs +# +# The is the core of a fallback implementation of a +# platform-specific function to extract the name of the +# DLL associated with the specified import library LIBNAME. +# +# SECTION_NAME is either .idata$6 or .idata$7, depending +# on the platform and compiler that created the implib. +# +# Echos the name of the DLL associated with the +# specified import library. +func_cygming_dll_for_implib_fallback_core () +{ + $opt_debug + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` + $OBJDUMP -s --section "$1" "$2" 2>/dev/null | + $SED '/^Contents of section '"$match_literal"':/{ + # Place marker at beginning of archive member dllname section + s/.*/====MARK====/ + p + d + } + # These lines can sometimes be longer than 43 characters, but + # are always uninteresting + /:[ ]*file format pe[i]\{,1\}-/d + /^In archive [^:]*:/d + # Ensure marker is printed + /^====MARK====/p + # Remove all lines with less than 43 characters + /^.\{43\}/!d + # From remaining lines, remove first 43 characters + s/^.\{43\}//' | + $SED -n ' + # Join marker and all lines until next marker into a single line + /^====MARK====/ b para + H + $ b para + b + :para + x + s/\n//g + # Remove the marker + s/^====MARK====// + # Remove trailing dots and whitespace + s/[\. \t]*$// + # Print + /./p' | + # we now have a list, one entry per line, of the stringified + # contents of the appropriate section of all members of the + # archive which possess that section. Heuristic: eliminate + # all those which have a first or second character that is + # a '.' (that is, objdump's representation of an unprintable + # character.) This should work for all archives with less than + # 0x302f exports -- but will fail for DLLs whose name actually + # begins with a literal '.' or a single character followed by + # a '.'. + # + # Of those that remain, print the first one. + $SED -e '/^\./d;/^.\./d;q' +} + +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + +# func_cygming_dll_for_implib_fallback ARG +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# +# This fallback implementation is for use when $DLLTOOL +# does not support the --identify-strict option. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib_fallback () +{ + $opt_debug + if func_cygming_gnu_implib_p "$1" ; then + # binutils import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` + elif func_cygming_ms_implib_p "$1" ; then + # ms-generated import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` + else + # unknown + sharedlib_from_linklib_result="" + fi +} + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $opt_debug + f_ex_an_ar_dir="$1"; shift + f_ex_an_ar_oldlib="$1" + if test "$lock_old_archive_extraction" = yes; then + lockfile=$f_ex_an_ar_oldlib.lock + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + fi + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ + 'stat=$?; rm -f "$lockfile"; exit $stat' + if test "$lock_old_archive_extraction" = yes; then + $opt_dry_run || rm -f "$lockfile" + fi + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $opt_debug + my_gentop="$1"; shift + my_oldlibs=${1+"$@"} + my_oldobjs="" + my_xlib="" + my_xabs="" + my_xdir="" + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib="$func_basename_result" + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir="$my_gentop/$my_xlib_u" + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + darwin_base_archive=`basename "$darwin_archive"` + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches ; do + func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" + $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" + cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" + func_extract_an_archive "`pwd`" "${darwin_base_archive}" + cd "$darwin_curdir" + $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` + done + + func_extract_archives_result="$my_oldobjs" +} + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory in which it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=${1-no} + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + file=\"\$0\"" + + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + $ECHO "\ + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + ECHO=\"$qECHO\" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ which is used only on +# windows platforms, and (c) all begin with the string "--lt-" +# (application programs are unlikely to have options which match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's $0 value, followed by "$@". +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=\$0 + shift + for lt_opt + do + case \"\$lt_opt\" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` + test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. + lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` + cat \"\$lt_dump_D/\$lt_dump_F\" + exit 0 + ;; + --lt-*) + \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n \"\$lt_option_debug\"; then + echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from \$@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case \" \$* \" in + *\\ --lt-*) + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done ;; + esac + func_exec_program_core \${1+\"\$@\"} +} + + # Parse options + func_parse_lt_options \"\$0\" \${1+\"\$@\"} + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test "$fast_install" = yes; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + $ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # fixup the dll searchpath if we need to. + # + # Fix the DLL searchpath if we need to. Do this before prepending + # to shlibpath, because on Windows, both are PATH and uninstalled + # libraries must come first. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + # Export our shlibpath_var if we have one. + if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` + + export $shlibpath_var +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. + func_exec_program \${1+\"\$@\"} + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} + + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +/* declarations of non-ANSI functions */ +#if defined(__MINGW32__) +# ifdef __STRICT_ANSI__ +int _putenv (const char *); +# endif +#elif defined(__CYGWIN__) +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +/* #elif defined (other platforms) ... */ +#endif + +/* portability defines, excluding path handling macros */ +#if defined(_MSC_VER) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +# define S_IXUSR _S_IEXEC +# ifndef _INTPTR_T_DEFINED +# define _INTPTR_T_DEFINED +# define intptr_t int +# endif +#elif defined(__MINGW32__) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +#elif defined(__CYGWIN__) +# define HAVE_SETENV +# define FOPEN_WB "wb" +/* #elif defined (other platforms) ... */ +#endif + +#if defined(PATH_MAX) +# define LT_PATHMAX PATH_MAX +#elif defined(MAXPATHLEN) +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +/* path handling portability macros */ +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ + defined (__OS2__) +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free ((void *) stale); stale = 0; } \ +} while (0) + +#if defined(LT_DEBUGWRAPPER) +static int lt_debug = 1; +#else +static int lt_debug = 0; +#endif + +const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_debugprintf (const char *file, int line, const char *fmt, ...); +void lt_fatal (const char *file, int line, const char *message, ...); +static const char *nonnull (const char *s); +static const char *nonempty (const char *s); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); +char **prepare_spawn (char **argv); +void lt_dump_script (FILE *f); +EOF + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", + nonempty (path)); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + int tmp_len; + char *concat_name; + + lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", + nonempty (wrapper)); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = q - p; + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + lt_debugprintf (__FILE__, __LINE__, + "checking path component for symlinks: %s\n", + tmp_pathspec); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + lt_fatal (__FILE__, __LINE__, + "error accessing file \"%s\": %s", + tmp_pathspec, nonnull (strerror (errno))); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal (__FILE__, __LINE__, + "could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (strcmp (str, pat) == 0) + *str = '\0'; + } + return str; +} + +void +lt_debugprintf (const char *file, int line, const char *fmt, ...) +{ + va_list args; + if (lt_debug) + { + (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); + } +} + +static void +lt_error_core (int exit_status, const char *file, + int line, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *file, int line, const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); + va_end (ap); +} + +static const char * +nonnull (const char *s) +{ + return s ? s : "(null)"; +} + +static const char * +nonempty (const char *s) +{ + return (s && !*s) ? "(empty)" : nonnull (s); +} + +void +lt_setenv (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_setenv) setting '%s' to '%s'\n", + nonnull (name), nonnull (value)); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + int len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + int orig_value_len = strlen (orig_value); + int add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + int len = strlen (new_value); + while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[len-1] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +EOF + case $host_os in + mingw*) + cat <<"EOF" + +/* Prepares an argument vector before calling spawn(). + Note that spawn() does not by itself call the command interpreter + (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : + ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + GetVersionEx(&v); + v.dwPlatformId == VER_PLATFORM_WIN32_NT; + }) ? "cmd.exe" : "command.com"). + Instead it simply concatenates the arguments, separated by ' ', and calls + CreateProcess(). We must quote the arguments since Win32 CreateProcess() + interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a + special way: + - Space and tab are interpreted as delimiters. They are not treated as + delimiters if they are surrounded by double quotes: "...". + - Unescaped double quotes are removed from the input. Their only effect is + that within double quotes, space and tab are treated like normal + characters. + - Backslashes not followed by double quotes are not special. + - But 2*n+1 backslashes followed by a double quote become + n backslashes followed by a double quote (n >= 0): + \" -> " + \\\" -> \" + \\\\\" -> \\" + */ +#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +char ** +prepare_spawn (char **argv) +{ + size_t argc; + char **new_argv; + size_t i; + + /* Count number of arguments. */ + for (argc = 0; argv[argc] != NULL; argc++) + ; + + /* Allocate new argument vector. */ + new_argv = XMALLOC (char *, argc + 1); + + /* Put quoted arguments into the new argument vector. */ + for (i = 0; i < argc; i++) + { + const char *string = argv[i]; + + if (string[0] == '\0') + new_argv[i] = xstrdup ("\"\""); + else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) + { + int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); + size_t length; + unsigned int backslashes; + const char *s; + char *quoted_string; + char *p; + + length = 0; + backslashes = 0; + if (quote_around) + length++; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + length += backslashes + 1; + length++; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + length += backslashes + 1; + + quoted_string = XMALLOC (char, length + 1); + + p = quoted_string; + backslashes = 0; + if (quote_around) + *p++ = '"'; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + { + unsigned int j; + for (j = backslashes + 1; j > 0; j--) + *p++ = '\\'; + } + *p++ = c; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + { + unsigned int j; + for (j = backslashes; j > 0; j--) + *p++ = '\\'; + *p++ = '"'; + } + *p = '\0'; + + new_argv[i] = quoted_string; + } + else + new_argv[i] = (char *) string; + } + new_argv[argc] = NULL; + + return new_argv; +} +EOF + ;; + esac + + cat <<"EOF" +void lt_dump_script (FILE* f) +{ +EOF + func_emit_wrapper yes | + $SED -n -e ' +s/^\(.\{79\}\)\(..*\)/\1\ +\2/ +h +s/\([\\"]\)/\\\1/g +s/$/\\n/ +s/\([^\n]*\).*/ fputs ("\1", f);/p +g +D' + cat <<"EOF" +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_win32_import_lib_p ARG +# True if ARG is an import lib, as indicated by $file_magic_cmd +func_win32_import_lib_p () +{ + $opt_debug + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in + *import*) : ;; + *) false ;; + esac +} + +# func_mode_link arg... +func_mode_link () +{ + $opt_debug + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # which system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll which has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + bindir= + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=no + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module="${wl}-single_module" + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg="$1" + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" + ;; + esac + + case $prev in + bindir) + bindir="$arg" + prev= + continue + ;; + dlfiles|dlprefiles) + if test "$preload" = no; then + # Add the symbol object into the linking commands. + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=yes + fi + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test "$dlself" = no; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test "$prev" = dlprefiles; then + dlself=yes + elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test "$prev" = dlfiles; then + func_append dlfiles " $arg" + else + func_append dlprefiles " $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols="$arg" + test -f "$arg" \ + || func_fatal_error "symbol file \`$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex="$arg" + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) func_append deplibs " $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir="$arg" + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# func_append moreargs " $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file \`$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + precious_regex) + precious_files_regex="$arg" + prev= + continue + ;; + release) + release="-$arg" + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test "$prev" = rpath; then + case "$rpath " in + *" $arg "*) ;; + *) func_append rpath " $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) func_append xrpath " $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds="$arg" + prev= + continue + ;; + weak) + func_append weak_libs " $arg" + prev= + continue + ;; + xcclinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xcompiler) + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xlinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $wl$qarg" + prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg="$arg" + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "\`-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -bindir) + prev=bindir + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test "X$arg" = "X-export-symbols"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + func_append compile_command " $arg" + func_append finalize_command " $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname "-L" '' "$arg" + if test -z "$func_stripname_result"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between \`-L' and \`$1'" + else + func_fatal_error "need path for \`-L' option" + fi + fi + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of \`$dir'" + dir="$absdir" + ;; + esac + case "$deplibs " in + *" -L$dir "* | *" $arg "*) + # Will only happen for absolute or sysroot arguments + ;; + *) + # Preserve sysroot, but never include relative directories + case $dir in + [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; + *) func_append deplibs " -L$dir" ;; + esac + func_append lib_search_path " $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + ::) dllsearchpath=$dir;; + *) func_append dllsearchpath ":$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test "X$arg" = "X-lc" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + test "X$arg" = "X-lc" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + func_append deplibs " System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test "X$arg" = "X-lc" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test "X$arg" = "X-lc" && continue + ;; + esac + elif test "X$arg" = "X-lc_r"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + func_append deplibs " $arg" + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot|--sysroot) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) func_append new_inherited_linker_flags " $arg" ;; + esac + continue + ;; + + -multi_module) + single_module="${wl}-multi_module" + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "\`-no-install' is ignored for $host" + func_warning "assuming \`-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + =*) + func_stripname '=' '' "$dir" + dir=$lt_sysroot$func_stripname_result + ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $func_quote_for_eval_result" + func_append compiler_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $wl$func_quote_for_eval_result" + func_append compiler_flags " $wl$func_quote_for_eval_result" + func_append linker_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + # Flags to be passed through unchanged, with rationale: + # -64, -mips[0-9] enable 64-bit mode for the SGI compiler + # -r[0-9][0-9]* specify processor for the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler + # +DA*, +DD* enable 64-bit mode for the HP compiler + # -q* compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* architecture-specific flags for GCC + # -F/path path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # @file GCC response files + # -tp=* Portland pgcc target processor selection + # --sysroot=* for sysroot support + # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-flto*|-fwhopr*|-fuse-linker-plugin) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + func_append compile_command " $arg" + func_append finalize_command " $arg" + func_append compiler_flags " $arg" + continue + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + *.$objext) + # A standard object. + func_append objs " $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + func_append deplibs " $arg" + func_append old_deplibs " $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + func_resolve_sysroot "$arg" + if test "$prev" = dlfiles; then + # This library was specified with -dlopen. + func_append dlfiles " $func_resolve_sysroot_result" + prev= + elif test "$prev" = dlprefiles; then + # The library was specified with -dlpreopen. + func_append dlprefiles " $func_resolve_sysroot_result" + prev= + else + func_append deplibs " $func_resolve_sysroot_result" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the \`$prevarg' option requires an argument" + + if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname="$func_basename_result" + libobjs_save="$libobjs" + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + func_dirname "$output" "/" "" + output_objdir="$func_dirname_result$objdir" + func_to_tool_file "$output_objdir/" + tool_output_objdir=$func_to_tool_file_result + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_preserve_dup_deps ; then + case "$libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append libs " $deplib" + done + + if test "$linkmode" = lib; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; + esac + func_append pre_post_deps " $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=no + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test "$linkmode,$pass" = "lib,link"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs="$tmp_deplibs" + fi + + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan"; then + libs="$deplibs" + deplibs= + fi + if test "$linkmode" = prog; then + case $pass in + dlopen) libs="$dlfiles" ;; + dlpreopen) libs="$dlprefiles" ;; + link) + libs="$deplibs %DEPLIBS%" + test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" + ;; + esac + fi + if test "$linkmode,$pass" = "lib,dlpreopen"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + func_resolve_sysroot "$lib" + case $lib in + *.la) func_source "$func_resolve_sysroot_result" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + func_basename "$deplib" + deplib_base=$func_basename_result + case " $weak_libs " in + *" $deplib_base "*) ;; + *) func_append deplibs " $deplib" ;; + esac + done + done + libs="$dlprefiles" + fi + if test "$pass" = dlopen; then + # Collect dlpreopened libraries + save_deplibs="$deplibs" + deplibs= + fi + + for deplib in $libs; do + lib= + found=no + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append compiler_flags " $deplib" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test "$linkmode" != lib && test "$linkmode" != prog; then + func_warning "\`-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test "$linkmode" = lib; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib="$searchdir/lib${name}${search_ext}" + if test -f "$lib"; then + if test "$search_ext" = ".la"; then + found=yes + else + found=no + fi + break 2 + fi + done + done + if test "$found" != yes; then + # deplib doesn't seem to be a libtool library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + else # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll="$l" + done + if test "X$ll" = "X$old_library" ; then # only static version available + found=no + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + lib=$ladir/$old_library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + fi + ;; # -l + *.ltframework) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test "$pass" = conv && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + prog) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + if test "$pass" = scan; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + *) + func_warning "\`-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test "$pass" = link; then + func_stripname '-R' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) + func_resolve_sysroot "$deplib" + lib=$func_resolve_sysroot_result + ;; + *.$libext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=no + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=yes + fi + ;; + pass_all) + valid_a_lib=yes + ;; + esac + if test "$valid_a_lib" != yes; then + echo + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because the file extensions .$libext of this argument makes me believe" + echo "*** that it is just a static archive that I should not use here." + else + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + fi + ;; + esac + continue + ;; + prog) + if test "$pass" != link; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + elif test "$linkmode" = prog; then + if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + func_append newdlprefiles " $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append newdlfiles " $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=yes + continue + ;; + esac # case $deplib + + if test "$found" = yes || test -f "$lib"; then : + else + func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" + fi + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "\`$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan" || + { test "$linkmode" != prog && test "$linkmode" != lib; }; then + test -n "$dlopen" && func_append dlfiles " $dlopen" + test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" + fi + + if test "$pass" = conv; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + # It is a libtool convenience library, so add in its objects. + func_append convenience " $ladir/$objdir/$old_library" + func_append old_convenience " $ladir/$objdir/$old_library" + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done + elif test "$linkmode" != prog && test "$linkmode" != lib; then + func_fatal_error "\`$lib' is not a convenience library" + fi + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + if test -n "$old_library" && + { test "$prefer_static_libs" = yes || + test "$prefer_static_libs,$installed" = "built,no"; }; then + linklib=$old_library + else + for l in $old_library $library_names; do + linklib="$l" + done + fi + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + + # This library was specified with -dlopen. + if test "$pass" = dlopen; then + if test -z "$libdir"; then + func_fatal_error "cannot -dlopen a convenience library: \`$lib'" + fi + if test -z "$dlname" || + test "$dlopen_support" != yes || + test "$build_libtool_libs" = no; then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + func_append dlprefiles " $lib $dependency_libs" + else + func_append newdlfiles " $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir="$ladir" + fi + ;; + esac + func_basename "$lib" + laname="$func_basename_result" + + # Find the relevant object directory and library name. + if test "X$installed" = Xyes; then + if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library \`$lib' was moved." + dir="$ladir" + absdir="$abs_ladir" + libdir="$abs_ladir" + else + dir="$lt_sysroot$libdir" + absdir="$lt_sysroot$libdir" + fi + test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir="$ladir" + absdir="$abs_ladir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + else + dir="$ladir/$objdir" + absdir="$abs_ladir/$objdir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test "$pass" = dlpreopen; then + if test -z "$libdir" && test "$linkmode" = prog; then + func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + fi + case "$host" in + # special handling for platforms with PE-DLLs. + *cygwin* | *mingw* | *cegcc* ) + # Linker will automatically link against shared library if both + # static and shared are present. Therefore, ensure we extract + # symbols from the import library if a shared library is present + # (otherwise, the dlopen module name will be incorrect). We do + # this by putting the import library name into $newdlprefiles. + # We recover the dlopen module name by 'saving' the la file + # name in a special purpose variable, and (later) extracting the + # dlname from the la file. + if test -n "$dlname"; then + func_tr_sh "$dir/$linklib" + eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" + func_append newdlprefiles " $dir/$linklib" + else + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + fi + ;; + * ) + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + func_append newdlprefiles " $dir/$dlname" + else + func_append newdlprefiles " $dir/$linklib" + fi + ;; + esac + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test "$linkmode" = lib; then + deplibs="$dir/$old_library $deplibs" + elif test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test "$linkmode" = prog && test "$pass" != link; then + func_append newlib_search_path " $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=no + if test "$link_all_deplibs" != no || test -z "$library_names" || + test "$build_libtool_libs" = no; then + linkalldeplibs=yes + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + esac + # Need to link against all dependency_libs? + if test "$linkalldeplibs" = yes; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test "$linkmode,$pass" = "prog,link"; then + if test -n "$library_names" && + { { test "$prefer_static_libs" = no || + test "$prefer_static_libs,$installed" = "built,yes"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + # Make sure the rpath contains only unique directories. + case "$temp_rpath:" in + *"$absdir:"*) ;; + *) func_append temp_rpath "$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if test "$alldeplibs" = yes && + { test "$deplibs_check_method" = pass_all || + { test "$build_libtool_libs" = yes && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test "$use_static_libs" = built && test "$installed" = yes; then + use_static_libs=no + fi + if test -n "$library_names" && + { test "$use_static_libs" = no || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw* | *cegcc*) + # No point in relinking DLLs because paths are not encoded + func_append notinst_deplibs " $lib" + need_relink=no + ;; + *) + if test "$installed" = no; then + func_append notinst_deplibs " $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule="" + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule="$dlpremoduletest" + break + fi + done + if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + echo + if test "$linkmode" = prog; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test "$linkmode" = lib && + test "$hardcode_into_libs" = yes; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname="$1" + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname="$dlname" + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw* | *cegcc*) + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + esac + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot="$soname" + func_basename "$soroot" + soname="$func_basename_result" + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from \`$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for \`$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test "$linkmode" = prog || test "$opt_mode" != relink; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test "$hardcode_direct" = no; then + add="$dir/$linklib" + case $host in + *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; + *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir="-L$dir" ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we can not + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null ; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library" ; then + echo + echo "*** And there doesn't seem to be a static archive available" + echo "*** The link will probably fail, sorry" + else + add="$dir/$old_library" + fi + elif test -n "$old_library"; then + add="$dir/$old_library" + fi + fi + esac + elif test "$hardcode_minus_L" = no; then + case $host in + *-*-sunos*) add_shlibpath="$dir" ;; + esac + add_dir="-L$dir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = no; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + relink) + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$dir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$absdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test "$lib_linked" != yes; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) func_append compile_shlibpath "$add_shlibpath:" ;; + esac + fi + if test "$linkmode" = prog; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test "$hardcode_direct" != yes && + test "$hardcode_minus_L" != yes && + test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + fi + fi + fi + + if test "$linkmode" = prog || test "$opt_mode" = relink; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$libdir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$libdir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + add="-l$name" + elif test "$hardcode_automatic" = yes; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib" ; then + add="$inst_prefix_dir$libdir/$linklib" + else + add="$libdir/$linklib" + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir="-L$libdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + fi + + if test "$linkmode" = prog; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test "$linkmode" = prog; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test "$hardcode_direct" != unsupported; then + test -n "$old_library" && linklib="$old_library" + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test "$build_libtool_libs" = yes; then + # Not a shared library + if test "$deplibs_check_method" != pass_all; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + echo + $ECHO "*** Warning: This system can not link to static lib archive $lib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have." + if test "$module" = yes; then + echo "*** But as you try to build a module library, libtool will still create " + echo "*** a static module, that should work as long as the dlopening application" + echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test "$linkmode" = lib; then + if test -n "$dependency_libs" && + { test "$hardcode_into_libs" != yes || + test "$build_old_libs" = yes || + test "$link_static" = yes; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) func_append xrpath " $temp_xrpath";; + esac;; + *) func_append temp_deplibs " $libdir";; + esac + done + dependency_libs="$temp_deplibs" + fi + + func_append newlib_search_path " $absdir" + # Link against this library + test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result";; + *) func_resolve_sysroot "$deplib" ;; + esac + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $func_resolve_sysroot_result "*) + func_append specialdeplibs " $func_resolve_sysroot_result" ;; + esac + fi + func_append tmp_libs " $func_resolve_sysroot_result" + done + + if test "$link_all_deplibs" != no; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + path= + case $deplib in + -L*) path="$deplib" ;; + *.la) + func_resolve_sysroot "$deplib" + deplib=$func_resolve_sysroot_result + func_dirname "$deplib" "" "." + dir=$func_dirname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of \`$dir'" + absdir="$dir" + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names" ; then + for tmp in $deplibrary_names ; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl" ; then + depdepl="$absdir/$objdir/$depdepl" + darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" + func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" + path= + fi + fi + ;; + *) + path="-L$absdir/$objdir" + ;; + esac + else + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "\`$deplib' seems to be moved" + + path="-L$absdir" + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test "$pass" = link; then + if test "$linkmode" = "prog"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs="$newdependency_libs" + if test "$pass" = dlpreopen; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test "$pass" != dlopen; then + if test "$pass" != conv; then + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) func_append lib_search_path " $dir" ;; + esac + done + newlib_search_path= + fi + + if test "$linkmode,$pass" != "prog,link"; then + vars="deplibs" + else + vars="compile_deplibs finalize_deplibs" + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) func_append tmp_libs " $deplib" ;; + esac + ;; + *) func_append tmp_libs " $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs ; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i="" + ;; + esac + if test -n "$i" ; then + func_append tmp_libs " $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test "$linkmode" = prog; then + dlfiles="$newdlfiles" + fi + if test "$linkmode" = prog || test "$linkmode" = lib; then + dlprefiles="$newdlprefiles" + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "\`-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "\`-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs="$output" + func_append objs "$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form `libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test "$module" = no && \ + func_fatal_help "libtool library \`$output' must begin with \`lib'" + + if test "$need_lib_prefix" != no; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test "$deplibs_check_method" != pass_all; then + func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + else + echo + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + func_append libobjs " $objs" + fi + fi + + test "$dlself" != no && \ + func_warning "\`-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test "$#" -gt 1 && \ + func_warning "ignoring multiple \`-rpath's for a libtool library" + + install_libdir="$1" + + oldlibs= + if test -z "$rpath"; then + if test "$build_libtool_libs" = yes; then + # Building a libtool convenience library. + # Some compilers have problems with a `.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "\`-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs="$IFS"; IFS=':' + set dummy $vinfo 0 0 0 + shift + IFS="$save_ifs" + + test -n "$7" && \ + func_fatal_help "too many parameters to \`-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major="$1" + number_minor="$2" + number_revision="$3" + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # which has an extra 1 added just for fun + # + case $version_type in + # correct linux to gnu/linux during the next big refactor + darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_revision" + ;; + freebsd-aout|freebsd-elf|qnx|sunos) + current="$number_major" + revision="$number_minor" + age="0" + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_minor" + lt_irix_increment=no + ;; + *) + func_fatal_configuration "$modename: unknown library version type \`$version_type'" + ;; + esac + ;; + no) + current="$1" + revision="$2" + age="$3" + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT \`$current' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION \`$revision' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE \`$age' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE \`$age' is greater than the current interface number \`$current'" + func_fatal_error "\`$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + + freebsd-aout) + major=".$current" + versuffix=".$current.$revision"; + ;; + + freebsd-elf) + major=".$current" + versuffix=".$current" + ;; + + irix | nonstopux) + if test "X$lt_irix_increment" = "Xno"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring="$verstring_prefix$major.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test "$loop" -ne 0; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring_prefix$major.$iface:$verstring" + done + + # Before this point, $major must not contain `.'. + major=.$major + versuffix="$major.$revision" + ;; + + linux) # correct to gnu/linux during the next big refactor + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=".$current.$age.$revision" + verstring="$current.$age.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$age + while test "$loop" -ne 0; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring:${iface}.0" + done + + # Make executables depend on our current version. + func_append verstring ":${current}.0" + ;; + + qnx) + major=".$current" + versuffix=".$current" + ;; + + sunos) + major=".$current" + versuffix=".$current.$revision" + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 filesystems. + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + + *) + func_fatal_configuration "unknown library version type \`$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring="0.0" + ;; + esac + if test "$need_version" = no; then + versuffix= + else + versuffix=".0.0" + fi + fi + + # Remove version info from name if versioning should be avoided + if test "$avoid_version" = yes && test "$need_version" = no; then + major= + versuffix= + verstring="" + fi + + # Check to see if the archive will have undefined symbols. + if test "$allow_undefined" = yes; then + if test "$allow_undefined_flag" = unsupported; then + func_warning "undefined symbols not allowed in $host shared libraries" + build_libtool_libs=no + build_old_libs=yes + fi + else + # Don't allow undefined symbols. + allow_undefined_flag="$no_undefined_flag" + fi + + fi + + func_generate_dlsyms "$libname" "$libname" "yes" + func_append libobjs " $symfileobj" + test "X$libobjs" = "X " && libobjs= + + if test "$opt_mode" != relink; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext | *.gcno) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) + if test "X$precious_files_regex" != "X"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + func_append removelist " $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + func_append oldlibs " $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` + # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` + # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + func_replace_sysroot "$libdir" + func_append temp_xrpath " -R$func_replace_sysroot_result" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles="$dlfiles" + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) func_append dlfiles " $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles="$dlprefiles" + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) func_append dlprefiles " $lib" ;; + esac + done + + if test "$build_libtool_libs" = yes; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + func_append deplibs " System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then + func_append deplibs " -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release="" + versuffix="" + major="" + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + $nocaseglob + else + potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` + fi + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib="$potent_lib" + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; + *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $a_deplib "*) + func_append newdeplibs " $a_deplib" + a_deplib="" + ;; + esac + fi + if test -n "$a_deplib" ; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib="$potent_lib" # see symlink-check above in file_magic test + if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs="" + tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + for i in $predeps $postdeps ; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + done + fi + case $tmp_deplibs in + *[!\ \ ]*) + echo + if test "X$deplibs_check_method" = "Xnone"; then + echo "*** Warning: inter-library dependencies are not supported in this platform." + else + echo "*** Warning: inter-library dependencies are not known to be supported." + fi + echo "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + ;; + esac + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + if test "$droppeddeps" = yes; then + if test "$module" = yes; then + echo + echo "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + echo "*** a static module, that should work as long as the dlopening" + echo "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." + + if test "$allow_undefined" = no; then + echo + echo "*** Since this library must not contain undefined symbols," + echo "*** because either the platform does not support them or" + echo "*** it was explicitly requested with -no-undefined," + echo "*** libtool will only create a static version of it." + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + deplibs="$new_libs" + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test "$build_libtool_libs" = yes; then + # Remove ${wl} instances when linking with ld. + # FIXME: should test the right _cmds variable. + case $archive_cmds in + *\$LD\ *) wl= ;; + esac + if test "$hardcode_into_libs" = yes; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath="$finalize_rpath" + test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + func_replace_sysroot "$libdir" + libdir=$func_replace_sysroot_result + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append dep_rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath="$finalize_shlibpath" + test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname="$1" + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib="$output_objdir/$realname" + linknames= + for link + do + func_append linknames " $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols="$output_objdir/$libname.uexp" + func_append delfiles " $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols="$export_symbols" + export_symbols= + always_export_symbols=yes + fi + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs="$IFS"; IFS='~' + for cmd1 in $cmds; do + IFS="$save_ifs" + # Take the normal branch if the nm_file_list_spec branch + # doesn't work or if tool conversion is not needed. + case $nm_file_list_spec~$to_tool_file_cmd in + *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) + try_normal_branch=yes + eval cmd=\"$cmd1\" + func_len " $cmd" + len=$func_len_result + ;; + *) + try_normal_branch=no + ;; + esac + if test "$try_normal_branch" = yes \ + && { test "$len" -lt "$max_cmd_len" \ + || test "$max_cmd_len" -le -1; } + then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + elif test -n "$nm_file_list_spec"; then + func_basename "$output" + output_la=$func_basename_result + save_libobjs=$libobjs + save_output=$output + output=${output_objdir}/${output_la}.nm + func_to_tool_file "$output" + libobjs=$nm_file_list_spec$func_to_tool_file_result + func_append delfiles " $output" + func_verbose "creating $NM input file list: $output" + for obj in $save_libobjs; do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > "$output" + eval cmd=\"$cmd1\" + func_show_eval "$cmd" 'exit $?' + output=$save_output + libobjs=$save_libobjs + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS="$save_ifs" + if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + func_append tmp_deplibs " $test_deplib" + ;; + esac + done + deplibs="$tmp_deplibs" + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test "$compiler_needs_object" = yes && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + func_append linker_flags " $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test "X$skipped_export" != "X:" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + func_basename "$output" + output_la=$func_basename_result + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then + output=${output_objdir}/${output_la}.lnkscript + func_verbose "creating GNU ld script: $output" + echo 'INPUT (' > $output + for obj in $save_libobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + echo ')' >> $output + func_append delfiles " $output" + func_to_tool_file "$output" + output=$func_to_tool_file_result + elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then + output=${output_objdir}/${output_la}.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test "$compiler_needs_object" = yes; then + firstobj="$1 " + shift + fi + for obj + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + func_append delfiles " $output" + func_to_tool_file "$output" + output=$firstobj\"$file_list_spec$func_to_tool_file_result\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-${k}.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test "X$objlist" = X || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test "$k" -eq 1 ; then + # The first file doesn't have a previous command to add. + reload_objs=$objlist + eval concat_cmds=\"$reload_cmds\" + else + # All subsequent reloadable object files will link in + # the last one created. + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-${k}.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-${k}.$objext + objlist=" $obj" + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + fi + func_append delfiles " $output" + + else + output= + fi + + if ${skipped_export-false}; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + fi + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs="$IFS"; IFS='~' + for cmd in $concat_cmds; do + IFS="$save_ifs" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + if ${skipped_export-false}; then + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + fi + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + eval cmd=\"$cmd\" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test "$module" = yes || test "$export_dynamic" = yes; then + # On all known operating systems, these are identical. + dlname="$soname" + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "\`-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object \`$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj="$output" + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # reload_cmds runs $LD directly, so let us get rid of + # -Wl from whole_archive_flag_spec and hope we can get by with + # turning comma into space.. + wl= + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + else + gentop="$output_objdir/${obj}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # If we're not building shared, we need to use non_pic_objs + test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + + # Create the old-style object. + reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + + output="$obj" + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + if test "$build_libtool_libs" != yes; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + fi + + if test -n "$pic_flag" || test "$pic_mode" != default; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output="$libobj" + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "\`-release' is ignored for programs" + + test "$preload" = yes \ + && test "$dlopen_support" = unknown \ + && test "$dlopen_self" = unknown \ + && test "$dlopen_self_static" = unknown && \ + func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test "$tagname" = CXX ; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + func_append compile_command " ${wl}-bind_at_load" + func_append finalize_command " ${wl}-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + compile_deplibs="$new_libs" + + + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; + *) func_append dllsearchpath ":$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath="$rpath" + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) func_append finalize_perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath="$rpath" + + if test -n "$libobjs" && test "$build_old_libs" = yes; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=yes + case $host in + *cegcc* | *mingw32ce*) + # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. + wrappers_required=no + ;; + *cygwin* | *mingw* ) + if test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + *) + if test "$need_relink" = no || test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + esac + if test "$wrappers_required" = no; then + # Replace the output file specification. + compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + link_command="$compile_command$compile_rpath" + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.${objext}"; then + func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + fi + + exit $exit_status + fi + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + func_append rpath "$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test "$no_install" = yes; then + # We don't need to create a wrapper script. + link_command="$compile_var$compile_command$compile_rpath" + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + exit $EXIT_SUCCESS + fi + + if test "$hardcode_action" = relink; then + # Fast installation is not supported + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "\`$output' will be relinked during installation" + else + if test "$fast_install" != no; then + link_command="$finalize_var$compile_command$finalize_rpath" + if test "$fast_install" = yes; then + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + else + # fast_install is set to needless + relink_command= + fi + else + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + fi + fi + + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output_objdir/$outputname" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource="$output_path/$objdir/lt-$output_name.c" + cwrapper="$output_path/$output_name.exe" + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host" ; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + if test "$build_libtool_libs" = convenience; then + oldobjs="$libobjs_save $symfileobj" + addlibs="$convenience" + build_libtool_libs=no + else + if test "$build_libtool_libs" = module; then + oldobjs="$libobjs_save" + build_libtool_libs=no + else + oldobjs="$old_deplibs $non_pic_objects" + if test "$preload" = yes && test -f "$symfileobj"; then + func_append oldobjs " $symfileobj" + fi + fi + addlibs="$old_convenience" + fi + + if test -n "$addlibs"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $addlibs + func_append oldobjs " $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append oldobjs " $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + echo "copying selected object files to avoid basename conflicts..." + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase="$func_basename_result" + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + func_append oldobjs " $gentop/$newobj" + ;; + *) func_append oldobjs " $obj" ;; + esac + done + fi + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + elif test -n "$archiver_list_spec"; then + func_verbose "using command file archive linking..." + for obj in $oldobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > $output_objdir/$libname.libcmd + func_to_tool_file "$output_objdir/$libname.libcmd" + oldobjs=" $archiver_list_spec$func_to_tool_file_result" + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj" ; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test "X$oldobjs" = "X" ; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test "$build_old_libs" = yes && old_library="$libname.$libext" + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + if test "$hardcode_automatic" = yes ; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test "$installed" = yes; then + if test -z "$install_libdir"; then + break + fi + output="$output_objdir/$outputname"i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name="$func_basename_result" + func_resolve_sysroot "$deplib" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" + ;; + -L*) + func_stripname -L '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -L$func_replace_sysroot_result" + ;; + -R*) + func_stripname -R '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -R$func_replace_sysroot_result" + ;; + *) func_append newdependency_libs " $deplib" ;; + esac + done + dependency_libs="$newdependency_libs" + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" + ;; + *) func_append newdlfiles " $lib" ;; + esac + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" + ;; + esac + done + dlprefiles="$newdlprefiles" + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlfiles " $abs" + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlprefiles " $abs" + done + dlprefiles="$newdlprefiles" + fi + $RM $output + # place dlname in correct position for cygwin + # In fact, it would be nice if we could use this code for all target + # systems that can't hard-code library paths into their executables + # and that have no shared library path variable independent of PATH, + # but it turns out we can't easily determine that from inspecting + # libtool variables, so we have to hard-code the OSs to which it + # applies here; at the moment, that means platforms that use the PE + # object format with DLL files. See the long comment at the top of + # tests/bindir.at for full details. + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) + # If a -bindir argument was supplied, place the dll there. + if test "x$bindir" != x ; + then + func_relative_path "$install_libdir" "$bindir" + tdlname=$func_relative_path_result$dlname + else + # Otherwise fall back on heuristic. + tdlname=../bin/$dlname + fi + ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test "$installed" = no && test "$need_relink" = yes; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +{ test "$opt_mode" = link || test "$opt_mode" = relink; } && + func_mode_link ${1+"$@"} + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $opt_debug + RM="$nonopt" + files= + rmforce= + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + for arg + do + case $arg in + -f) func_append RM " $arg"; rmforce=yes ;; + -*) func_append RM " $arg" ;; + *) func_append files " $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + for file in $files; do + func_dirname "$file" "" "." + dir="$func_dirname_result" + if test "X$dir" = X.; then + odir="$objdir" + else + odir="$dir/$objdir" + fi + func_basename "$file" + name="$func_basename_result" + test "$opt_mode" = uninstall && odir="$dir" + + # Remember odir for removal later, being careful to avoid duplicates + if test "$opt_mode" = clean; then + case " $rmdirs " in + *" $odir "*) ;; + *) func_append rmdirs " $odir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif test "$rmforce" = yes; then + continue + fi + + rmfiles="$file" + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + func_append rmfiles " $odir/$n" + done + test -n "$old_library" && func_append rmfiles " $odir/$old_library" + + case "$opt_mode" in + clean) + case " $library_names " in + *" $dlname "*) ;; + *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; + esac + test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && + test "$pic_object" != none; then + func_append rmfiles " $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && + test "$non_pic_object" != none; then + func_append rmfiles " $dir/$non_pic_object" + fi + fi + ;; + + *) + if test "$opt_mode" = clean ; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + func_append rmfiles " $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + func_append rmfiles " $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + func_append rmfiles " $odir/$name $odir/${name}S.${objext}" + if test "$fast_install" = yes && test -n "$relink_command"; then + func_append rmfiles " $odir/lt-$name" + fi + if test "X$noexename" != "X$name" ; then + func_append rmfiles " $odir/lt-${noexename}.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + + # Try to remove the ${objdir}s in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && + func_mode_uninstall ${1+"$@"} + +test -z "$opt_mode" && { + help="$generic_help" + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode \`$opt_mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# in which we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: +# vi:sw=2 + diff --git a/cpp/thirdparty/gtest-1.7.0/build-aux/missing b/cpp/thirdparty/gtest-1.7.0/build-aux/missing new file mode 100755 index 000000000..86a8fc31e --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/build-aux/missing @@ -0,0 +1,331 @@ +#! /bin/sh +# Common stub for a few missing GNU programs while installing. + +scriptversion=2012-01-06.13; # UTC + +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, +# 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. +# Originally by Fran,cois Pinard , 1996. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +if test $# -eq 0; then + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 +fi + +run=: +sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' +sed_minuso='s/.* -o \([^ ]*\).*/\1/p' + +# In the cases where this matters, `missing' is being run in the +# srcdir already. +if test -f configure.ac; then + configure_ac=configure.ac +else + configure_ac=configure.in +fi + +msg="missing on your system" + +case $1 in +--run) + # Try to run requested program, and just exit if it succeeds. + run= + shift + "$@" && exit 0 + # Exit code 63 means version mismatch. This often happens + # when the user try to use an ancient version of a tool on + # a file that requires a minimum version. In this case we + # we should proceed has if the program had been absent, or + # if --run hadn't been passed. + if test $? = 63; then + run=: + msg="probably too old" + fi + ;; + + -h|--h|--he|--hel|--help) + echo "\ +$0 [OPTION]... PROGRAM [ARGUMENT]... + +Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an +error status if there is no known handling for PROGRAM. + +Options: + -h, --help display this help and exit + -v, --version output version information and exit + --run try to run the given command, and emulate it if it fails + +Supported PROGRAM values: + aclocal touch file \`aclocal.m4' + autoconf touch file \`configure' + autoheader touch file \`config.h.in' + autom4te touch the output file, or create a stub one + automake touch all \`Makefile.in' files + bison create \`y.tab.[ch]', if possible, from existing .[ch] + flex create \`lex.yy.c', if possible, from existing .c + help2man touch the output file + lex create \`lex.yy.c', if possible, from existing .c + makeinfo touch the output file + yacc create \`y.tab.[ch]', if possible, from existing .[ch] + +Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and +\`g' are ignored when checking the name. + +Send bug reports to ." + exit $? + ;; + + -v|--v|--ve|--ver|--vers|--versi|--versio|--version) + echo "missing $scriptversion (GNU Automake)" + exit $? + ;; + + -*) + echo 1>&2 "$0: Unknown \`$1' option" + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 + ;; + +esac + +# normalize program name to check for. +program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + +# Now exit if we have it, but it failed. Also exit now if we +# don't have it and --version was passed (most likely to detect +# the program). This is about non-GNU programs, so use $1 not +# $program. +case $1 in + lex*|yacc*) + # Not GNU programs, they don't have --version. + ;; + + *) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + elif test "x$2" = "x--version" || test "x$2" = "x--help"; then + # Could not run --version or --help. This is probably someone + # running `$TOOL --version' or `$TOOL --help' to check whether + # $TOOL exists and not knowing $TOOL uses missing. + exit 1 + fi + ;; +esac + +# If it does not exist, or fails to run (possibly an outdated version), +# try to emulate it. +case $program in + aclocal*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acinclude.m4' or \`${configure_ac}'. You might want + to install the \`Automake' and \`Perl' packages. Grab them from + any GNU archive site." + touch aclocal.m4 + ;; + + autoconf*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`${configure_ac}'. You might want to install the + \`Autoconf' and \`GNU m4' packages. Grab them from any GNU + archive site." + touch configure + ;; + + autoheader*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acconfig.h' or \`${configure_ac}'. You might want + to install the \`Autoconf' and \`GNU m4' packages. Grab them + from any GNU archive site." + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` + test -z "$files" && files="config.h" + touch_files= + for f in $files; do + case $f in + *:*) touch_files="$touch_files "`echo "$f" | + sed -e 's/^[^:]*://' -e 's/:.*//'`;; + *) touch_files="$touch_files $f.in";; + esac + done + touch $touch_files + ;; + + automake*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. + You might want to install the \`Automake' and \`Perl' packages. + Grab them from any GNU archive site." + find . -type f -name Makefile.am -print | + sed 's/\.am$/.in/' | + while read f; do touch "$f"; done + ;; + + autom4te*) + echo 1>&2 "\ +WARNING: \`$1' is needed, but is $msg. + You might have modified some files without having the + proper tools for further handling them. + You can get \`$1' as part of \`Autoconf' from any GNU + archive site." + + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo "#! /bin/sh" + echo "# Created by GNU Automake missing as a replacement of" + echo "# $ $@" + echo "exit 0" + chmod +x $file + exit 1 + fi + ;; + + bison*|yacc*) + echo 1>&2 "\ +WARNING: \`$1' $msg. You should only need it if + you modified a \`.y' file. You may need the \`Bison' package + in order for those modifications to take effect. You can get + \`Bison' from any GNU archive site." + rm -f y.tab.c y.tab.h + if test $# -ne 1; then + eval LASTARG=\${$#} + case $LASTARG in + *.y) + SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.c + fi + SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.h + fi + ;; + esac + fi + if test ! -f y.tab.h; then + echo >y.tab.h + fi + if test ! -f y.tab.c; then + echo 'main() { return 0; }' >y.tab.c + fi + ;; + + lex*|flex*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.l' file. You may need the \`Flex' package + in order for those modifications to take effect. You can get + \`Flex' from any GNU archive site." + rm -f lex.yy.c + if test $# -ne 1; then + eval LASTARG=\${$#} + case $LASTARG in + *.l) + SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` + if test -f "$SRCFILE"; then + cp "$SRCFILE" lex.yy.c + fi + ;; + esac + fi + if test ! -f lex.yy.c; then + echo 'main() { return 0; }' >lex.yy.c + fi + ;; + + help2man*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a dependency of a manual page. You may need the + \`Help2man' package in order for those modifications to take + effect. You can get \`Help2man' from any GNU archive site." + + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo ".ab help2man is required to generate this page" + exit $? + fi + ;; + + makeinfo*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.texi' or \`.texinfo' file, or any other file + indirectly affecting the aspect of the manual. The spurious + call might also be the consequence of using a buggy \`make' (AIX, + DU, IRIX). You might want to install the \`Texinfo' package or + the \`GNU make' package. Grab either from any GNU archive site." + # The file to touch is that specified with -o ... + file=`echo "$*" | sed -n "$sed_output"` + test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -z "$file"; then + # ... or it is the one specified with @setfilename ... + infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` + file=`sed -n ' + /^@setfilename/{ + s/.* \([^ ]*\) *$/\1/ + p + q + }' $infile` + # ... or it is derived from the source name (dir/f.texi becomes f.info) + test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info + fi + # If the file does not exist, the user really needs makeinfo; + # let's fail without touching anything. + test -f $file || exit 1 + touch $file + ;; + + *) + echo 1>&2 "\ +WARNING: \`$1' is needed, and is $msg. + You might have modified some files without having the + proper tools for further handling them. Check the \`README' file, + it often tells you about the needed prerequisites for installing + this package. You may also peek at any GNU archive site, in case + some other package would contain this missing \`$1' program." + exit 1 + ;; +esac + +exit 0 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/cpp/thirdparty/gtest-1.7.0/cmake/internal_utils.cmake b/cpp/thirdparty/gtest-1.7.0/cmake/internal_utils.cmake new file mode 100644 index 000000000..8cb21894c --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/cmake/internal_utils.cmake @@ -0,0 +1,227 @@ +# Defines functions and macros useful for building Google Test and +# Google Mock. +# +# Note: +# +# - This file will be run twice when building Google Mock (once via +# Google Test's CMakeLists.txt, and once via Google Mock's). +# Therefore it shouldn't have any side effects other than defining +# the functions and macros. +# +# - The functions/macros defined in this file may depend on Google +# Test and Google Mock's option() definitions, and thus must be +# called *after* the options have been defined. + +# Tweaks CMake's default compiler/linker settings to suit Google Test's needs. +# +# This must be a macro(), as inside a function string() can only +# update variables in the function scope. +macro(fix_default_compiler_settings_) + if (MSVC) + # For MSVC, CMake sets certain flags to defaults we want to override. + # This replacement code is taken from sample in the CMake Wiki at + # http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace. + foreach (flag_var + CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE + CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO) + if (NOT BUILD_SHARED_LIBS AND NOT gtest_force_shared_crt) + # When Google Test is built as a shared library, it should also use + # shared runtime libraries. Otherwise, it may end up with multiple + # copies of runtime library data in different modules, resulting in + # hard-to-find crashes. When it is built as a static library, it is + # preferable to use CRT as static libraries, as we don't have to rely + # on CRT DLLs being available. CMake always defaults to using shared + # CRT libraries, so we override that default here. + string(REPLACE "/MD" "-MT" ${flag_var} "${${flag_var}}") + endif() + + # We prefer more strict warning checking for building Google Test. + # Replaces /W3 with /W4 in defaults. + string(REPLACE "/W3" "-W4" ${flag_var} "${${flag_var}}") + endforeach() + endif() +endmacro() + +# Defines the compiler/linker flags used to build Google Test and +# Google Mock. You can tweak these definitions to suit your need. A +# variable's value is empty before it's explicitly assigned to. +macro(config_compiler_and_linker) + if (NOT gtest_disable_pthreads) + # Defines CMAKE_USE_PTHREADS_INIT and CMAKE_THREAD_LIBS_INIT. + find_package(Threads) + endif() + + fix_default_compiler_settings_() + if (MSVC) + # Newlines inside flags variables break CMake's NMake generator. + # TODO(vladl@google.com): Add -RTCs and -RTCu to debug builds. + set(cxx_base_flags "-GS -W4 -WX -wd4127 -wd4251 -wd4275 -nologo -J -Zi") + if (MSVC_VERSION LESS 1400) + # Suppress spurious warnings MSVC 7.1 sometimes issues. + # Forcing value to bool. + set(cxx_base_flags "${cxx_base_flags} -wd4800") + # Copy constructor and assignment operator could not be generated. + set(cxx_base_flags "${cxx_base_flags} -wd4511 -wd4512") + # Compatibility warnings not applicable to Google Test. + # Resolved overload was found by argument-dependent lookup. + set(cxx_base_flags "${cxx_base_flags} -wd4675") + endif() + set(cxx_base_flags "${cxx_base_flags} -D_UNICODE -DUNICODE -DWIN32 -D_WIN32") + set(cxx_base_flags "${cxx_base_flags} -DSTRICT -DWIN32_LEAN_AND_MEAN") + set(cxx_exception_flags "-EHsc -D_HAS_EXCEPTIONS=1") + set(cxx_no_exception_flags "-D_HAS_EXCEPTIONS=0") + set(cxx_no_rtti_flags "-GR-") + elseif (CMAKE_COMPILER_IS_GNUCXX) + set(cxx_base_flags "-Wall -Wshadow") + set(cxx_exception_flags "-fexceptions") + set(cxx_no_exception_flags "-fno-exceptions") + # Until version 4.3.2, GCC doesn't define a macro to indicate + # whether RTTI is enabled. Therefore we define GTEST_HAS_RTTI + # explicitly. + set(cxx_no_rtti_flags "-fno-rtti -DGTEST_HAS_RTTI=0") + set(cxx_strict_flags + "-Wextra -Wno-unused-parameter -Wno-missing-field-initializers") + elseif (CMAKE_CXX_COMPILER_ID STREQUAL "SunPro") + set(cxx_exception_flags "-features=except") + # Sun Pro doesn't provide macros to indicate whether exceptions and + # RTTI are enabled, so we define GTEST_HAS_* explicitly. + set(cxx_no_exception_flags "-features=no%except -DGTEST_HAS_EXCEPTIONS=0") + set(cxx_no_rtti_flags "-features=no%rtti -DGTEST_HAS_RTTI=0") + elseif (CMAKE_CXX_COMPILER_ID STREQUAL "VisualAge" OR + CMAKE_CXX_COMPILER_ID STREQUAL "XL") + # CMake 2.8 changes Visual Age's compiler ID to "XL". + set(cxx_exception_flags "-qeh") + set(cxx_no_exception_flags "-qnoeh") + # Until version 9.0, Visual Age doesn't define a macro to indicate + # whether RTTI is enabled. Therefore we define GTEST_HAS_RTTI + # explicitly. + set(cxx_no_rtti_flags "-qnortti -DGTEST_HAS_RTTI=0") + elseif (CMAKE_CXX_COMPILER_ID STREQUAL "HP") + set(cxx_base_flags "-AA -mt") + set(cxx_exception_flags "-DGTEST_HAS_EXCEPTIONS=1") + set(cxx_no_exception_flags "+noeh -DGTEST_HAS_EXCEPTIONS=0") + # RTTI can not be disabled in HP aCC compiler. + set(cxx_no_rtti_flags "") + endif() + + if (CMAKE_USE_PTHREADS_INIT) # The pthreads library is available and allowed. + set(cxx_base_flags "${cxx_base_flags} -DGTEST_HAS_PTHREAD=1") + else() + set(cxx_base_flags "${cxx_base_flags} -DGTEST_HAS_PTHREAD=0") + endif() + + # For building gtest's own tests and samples. + set(cxx_exception "${CMAKE_CXX_FLAGS} ${cxx_base_flags} ${cxx_exception_flags}") + set(cxx_no_exception + "${CMAKE_CXX_FLAGS} ${cxx_base_flags} ${cxx_no_exception_flags}") + set(cxx_default "${cxx_exception}") + set(cxx_no_rtti "${cxx_default} ${cxx_no_rtti_flags}") + set(cxx_use_own_tuple "${cxx_default} -DGTEST_USE_OWN_TR1_TUPLE=1") + + # For building the gtest libraries. + set(cxx_strict "${cxx_default} ${cxx_strict_flags}") +endmacro() + +# Defines the gtest & gtest_main libraries. User tests should link +# with one of them. +function(cxx_library_with_type name type cxx_flags) + # type can be either STATIC or SHARED to denote a static or shared library. + # ARGN refers to additional arguments after 'cxx_flags'. + add_library(${name} ${type} ${ARGN}) + set_target_properties(${name} + PROPERTIES + COMPILE_FLAGS "${cxx_flags}") + if (BUILD_SHARED_LIBS OR type STREQUAL "SHARED") + set_target_properties(${name} + PROPERTIES + COMPILE_DEFINITIONS "GTEST_CREATE_SHARED_LIBRARY=1") + endif() + if (CMAKE_USE_PTHREADS_INIT) + target_link_libraries(${name} ${CMAKE_THREAD_LIBS_INIT}) + endif() +endfunction() + +######################################################################## +# +# Helper functions for creating build targets. + +function(cxx_shared_library name cxx_flags) + cxx_library_with_type(${name} SHARED "${cxx_flags}" ${ARGN}) +endfunction() + +function(cxx_library name cxx_flags) + cxx_library_with_type(${name} "" "${cxx_flags}" ${ARGN}) +endfunction() + +# cxx_executable_with_flags(name cxx_flags libs srcs...) +# +# creates a named C++ executable that depends on the given libraries and +# is built from the given source files with the given compiler flags. +function(cxx_executable_with_flags name cxx_flags libs) + add_executable(${name} ${ARGN}) + if (cxx_flags) + set_target_properties(${name} + PROPERTIES + COMPILE_FLAGS "${cxx_flags}") + endif() + if (BUILD_SHARED_LIBS) + set_target_properties(${name} + PROPERTIES + COMPILE_DEFINITIONS "GTEST_LINKED_AS_SHARED_LIBRARY=1") + endif() + # To support mixing linking in static and dynamic libraries, link each + # library in with an extra call to target_link_libraries. + foreach (lib "${libs}") + target_link_libraries(${name} ${lib}) + endforeach() +endfunction() + +# cxx_executable(name dir lib srcs...) +# +# creates a named target that depends on the given libs and is built +# from the given source files. dir/name.cc is implicitly included in +# the source file list. +function(cxx_executable name dir libs) + cxx_executable_with_flags( + ${name} "${cxx_default}" "${libs}" "${dir}/${name}.cc" ${ARGN}) +endfunction() + +# Sets PYTHONINTERP_FOUND and PYTHON_EXECUTABLE. +find_package(PythonInterp) + +# cxx_test_with_flags(name cxx_flags libs srcs...) +# +# creates a named C++ test that depends on the given libs and is built +# from the given source files with the given compiler flags. +function(cxx_test_with_flags name cxx_flags libs) + cxx_executable_with_flags(${name} "${cxx_flags}" "${libs}" ${ARGN}) + add_test(${name} ${name}) +endfunction() + +# cxx_test(name libs srcs...) +# +# creates a named test target that depends on the given libs and is +# built from the given source files. Unlike cxx_test_with_flags, +# test/name.cc is already implicitly included in the source file list. +function(cxx_test name libs) + cxx_test_with_flags("${name}" "${cxx_default}" "${libs}" + "test/${name}.cc" ${ARGN}) +endfunction() + +# py_test(name) +# +# creates a Python test with the given name whose main module is in +# test/name.py. It does nothing if Python is not installed. +function(py_test name) + # We are not supporting Python tests on Linux yet as they consider + # all Linux environments to be google3 and try to use google3 features. + if (PYTHONINTERP_FOUND) + # ${CMAKE_BINARY_DIR} is known at configuration time, so we can + # directly bind it from cmake. ${CTEST_CONFIGURATION_TYPE} is known + # only at ctest runtime (by calling ctest -c ), so + # we have to escape $ to delay variable substitution here. + add_test(${name} + ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/test/${name}.py + --build_dir=${CMAKE_CURRENT_BINARY_DIR}/\${CTEST_CONFIGURATION_TYPE}) + endif() +endfunction() diff --git a/cpp/thirdparty/gtest-1.7.0/codegear/gtest.cbproj b/cpp/thirdparty/gtest-1.7.0/codegear/gtest.cbproj new file mode 100644 index 000000000..285bb2a87 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/codegear/gtest.cbproj @@ -0,0 +1,138 @@ + + + + {bca37a72-5b07-46cf-b44e-89f8e06451a2} + Release + + + true + + + true + true + Base + + + true + true + Base + + + true + lib + JPHNE + NO_STRICT + true + true + CppStaticLibrary + true + rtl.bpi;vcl.bpi;bcbie.bpi;vclx.bpi;vclactnband.bpi;xmlrtl.bpi;bcbsmp.bpi;dbrtl.bpi;vcldb.bpi;bdertl.bpi;vcldbx.bpi;dsnap.bpi;dsnapcon.bpi;vclib.bpi;ibxpress.bpi;adortl.bpi;dbxcds.bpi;dbexpress.bpi;DbxCommonDriver.bpi;websnap.bpi;vclie.bpi;webdsnap.bpi;inet.bpi;inetdbbde.bpi;inetdbxpress.bpi;soaprtl.bpi;Rave75VCL.bpi;teeUI.bpi;tee.bpi;teedb.bpi;IndyCore.bpi;IndySystem.bpi;IndyProtocols.bpi;IntrawebDB_90_100.bpi;Intraweb_90_100.bpi;dclZipForged11.bpi;vclZipForged11.bpi;GR32_BDS2006.bpi;GR32_DSGN_BDS2006.bpi;Jcl.bpi;JclVcl.bpi;JvCoreD11R.bpi;JvSystemD11R.bpi;JvStdCtrlsD11R.bpi;JvAppFrmD11R.bpi;JvBandsD11R.bpi;JvDBD11R.bpi;JvDlgsD11R.bpi;JvBDED11R.bpi;JvCmpD11R.bpi;JvCryptD11R.bpi;JvCtrlsD11R.bpi;JvCustomD11R.bpi;JvDockingD11R.bpi;JvDotNetCtrlsD11R.bpi;JvEDID11R.bpi;JvGlobusD11R.bpi;JvHMID11R.bpi;JvInterpreterD11R.bpi;JvJansD11R.bpi;JvManagedThreadsD11R.bpi;JvMMD11R.bpi;JvNetD11R.bpi;JvPageCompsD11R.bpi;JvPluginD11R.bpi;JvPrintPreviewD11R.bpi;JvRuntimeDesignD11R.bpi;JvTimeFrameworkD11R.bpi;JvValidatorsD11R.bpi;JvWizardD11R.bpi;JvXPCtrlsD11R.bpi;VclSmp.bpi;CExceptionExpert11.bpi + false + $(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;.. + rtl.lib;vcl.lib + 32 + $(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk + + + false + false + true + _DEBUG;$(Defines) + true + false + true + None + DEBUG + true + Debug + true + true + true + $(BDS)\lib\debug;$(ILINK_LibraryPath) + Full + true + + + NDEBUG;$(Defines) + Release + $(BDS)\lib\release;$(ILINK_LibraryPath) + None + + + CPlusPlusBuilder.Personality + CppStaticLibrary + +FalseFalse1000FalseFalseFalseFalseFalse103312521.0.0.01.0.0.0FalseFalseFalseTrueFalse + + + CodeGear C++Builder Office 2000 Servers Package + CodeGear C++Builder Office XP Servers Package + FalseTrueTrue3$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\src;..\include1$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk1NO_STRICT13216 + + + + + 3 + + + 4 + + + 5 + + + 6 + + + 7 + + + 8 + + + 0 + + + 1 + + + 2 + + + 9 + + + 10 + + + 11 + + + 12 + + + 14 + + + 13 + + + 15 + + + 16 + + + 17 + + + 18 + + + Cfg_1 + + + Cfg_2 + + + \ No newline at end of file diff --git a/cpp/thirdparty/gtest-1.7.0/codegear/gtest.groupproj b/cpp/thirdparty/gtest-1.7.0/codegear/gtest.groupproj new file mode 100644 index 000000000..849f4c4b8 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/codegear/gtest.groupproj @@ -0,0 +1,54 @@ + + + {c1d923e0-6cba-4332-9b6f-3420acbf5091} + + + + + + + + + Default.Personality + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/cpp/thirdparty/gtest-1.7.0/codegear/gtest_all.cc b/cpp/thirdparty/gtest-1.7.0/codegear/gtest_all.cc new file mode 100644 index 000000000..ba7ad68ad --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/codegear/gtest_all.cc @@ -0,0 +1,38 @@ +// Copyright 2009, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: Josh Kelley (joshkel@gmail.com) +// +// Google C++ Testing Framework (Google Test) +// +// C++Builder's IDE cannot build a static library from files with hyphens +// in their name. See http://qc.codegear.com/wc/qcmain.aspx?d=70977 . +// This file serves as a workaround. + +#include "src/gtest-all.cc" diff --git a/cpp/thirdparty/gtest-1.7.0/codegear/gtest_link.cc b/cpp/thirdparty/gtest-1.7.0/codegear/gtest_link.cc new file mode 100644 index 000000000..b955ebf2f --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/codegear/gtest_link.cc @@ -0,0 +1,40 @@ +// Copyright 2009, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: Josh Kelley (joshkel@gmail.com) +// +// Google C++ Testing Framework (Google Test) +// +// Links gtest.lib and gtest_main.lib into the current project in C++Builder. +// This means that these libraries can't be renamed, but it's the only way to +// ensure that Debug versus Release test builds are linked against the +// appropriate Debug or Release build of the libraries. + +#pragma link "gtest.lib" +#pragma link "gtest_main.lib" diff --git a/cpp/thirdparty/gtest-1.7.0/codegear/gtest_main.cbproj b/cpp/thirdparty/gtest-1.7.0/codegear/gtest_main.cbproj new file mode 100644 index 000000000..fae32cb29 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/codegear/gtest_main.cbproj @@ -0,0 +1,82 @@ + + + + {bca37a72-5b07-46cf-b44e-89f8e06451a2} + Release + + + true + + + true + true + Base + + + true + true + Base + + + true + lib + JPHNE + NO_STRICT + true + true + CppStaticLibrary + true + rtl.bpi;vcl.bpi;bcbie.bpi;vclx.bpi;vclactnband.bpi;xmlrtl.bpi;bcbsmp.bpi;dbrtl.bpi;vcldb.bpi;bdertl.bpi;vcldbx.bpi;dsnap.bpi;dsnapcon.bpi;vclib.bpi;ibxpress.bpi;adortl.bpi;dbxcds.bpi;dbexpress.bpi;DbxCommonDriver.bpi;websnap.bpi;vclie.bpi;webdsnap.bpi;inet.bpi;inetdbbde.bpi;inetdbxpress.bpi;soaprtl.bpi;Rave75VCL.bpi;teeUI.bpi;tee.bpi;teedb.bpi;IndyCore.bpi;IndySystem.bpi;IndyProtocols.bpi;IntrawebDB_90_100.bpi;Intraweb_90_100.bpi;dclZipForged11.bpi;vclZipForged11.bpi;GR32_BDS2006.bpi;GR32_DSGN_BDS2006.bpi;Jcl.bpi;JclVcl.bpi;JvCoreD11R.bpi;JvSystemD11R.bpi;JvStdCtrlsD11R.bpi;JvAppFrmD11R.bpi;JvBandsD11R.bpi;JvDBD11R.bpi;JvDlgsD11R.bpi;JvBDED11R.bpi;JvCmpD11R.bpi;JvCryptD11R.bpi;JvCtrlsD11R.bpi;JvCustomD11R.bpi;JvDockingD11R.bpi;JvDotNetCtrlsD11R.bpi;JvEDID11R.bpi;JvGlobusD11R.bpi;JvHMID11R.bpi;JvInterpreterD11R.bpi;JvJansD11R.bpi;JvManagedThreadsD11R.bpi;JvMMD11R.bpi;JvNetD11R.bpi;JvPageCompsD11R.bpi;JvPluginD11R.bpi;JvPrintPreviewD11R.bpi;JvRuntimeDesignD11R.bpi;JvTimeFrameworkD11R.bpi;JvValidatorsD11R.bpi;JvWizardD11R.bpi;JvXPCtrlsD11R.bpi;VclSmp.bpi;CExceptionExpert11.bpi + false + $(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;.. + rtl.lib;vcl.lib + 32 + $(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk + + + false + false + true + _DEBUG;$(Defines) + true + false + true + None + DEBUG + true + Debug + true + true + true + $(BDS)\lib\debug;$(ILINK_LibraryPath) + Full + true + + + NDEBUG;$(Defines) + Release + $(BDS)\lib\release;$(ILINK_LibraryPath) + None + + + CPlusPlusBuilder.Personality + CppStaticLibrary + +FalseFalse1000FalseFalseFalseFalseFalse103312521.0.0.01.0.0.0FalseFalseFalseTrueFalse + CodeGear C++Builder Office 2000 Servers Package + CodeGear C++Builder Office XP Servers Package + FalseTrueTrue3$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\include;..$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\src;..\src;..\include1$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk1NO_STRICT13216 + + + + + 0 + + + Cfg_1 + + + Cfg_2 + + + diff --git a/cpp/thirdparty/gtest-1.7.0/codegear/gtest_unittest.cbproj b/cpp/thirdparty/gtest-1.7.0/codegear/gtest_unittest.cbproj new file mode 100644 index 000000000..33f705634 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/codegear/gtest_unittest.cbproj @@ -0,0 +1,88 @@ + + + + {eea63393-5ac5-4b9c-8909-d75fef2daa41} + Release + + + true + + + true + true + Base + + + true + true + Base + + + exe + true + NO_STRICT + JPHNE + true + ..\test + true + CppConsoleApplication + true + true + rtl.bpi;vcl.bpi;bcbie.bpi;vclx.bpi;vclactnband.bpi;xmlrtl.bpi;bcbsmp.bpi;dbrtl.bpi;vcldb.bpi;bdertl.bpi;vcldbx.bpi;dsnap.bpi;dsnapcon.bpi;vclib.bpi;ibxpress.bpi;adortl.bpi;dbxcds.bpi;dbexpress.bpi;DbxCommonDriver.bpi;websnap.bpi;vclie.bpi;webdsnap.bpi;inet.bpi;inetdbbde.bpi;inetdbxpress.bpi;soaprtl.bpi;Rave75VCL.bpi;teeUI.bpi;tee.bpi;teedb.bpi;IndyCore.bpi;IndySystem.bpi;IndyProtocols.bpi;IntrawebDB_90_100.bpi;Intraweb_90_100.bpi;Jcl.bpi;JclVcl.bpi;JvCoreD11R.bpi;JvSystemD11R.bpi;JvStdCtrlsD11R.bpi;JvAppFrmD11R.bpi;JvBandsD11R.bpi;JvDBD11R.bpi;JvDlgsD11R.bpi;JvBDED11R.bpi;JvCmpD11R.bpi;JvCryptD11R.bpi;JvCtrlsD11R.bpi;JvCustomD11R.bpi;JvDockingD11R.bpi;JvDotNetCtrlsD11R.bpi;JvEDID11R.bpi;JvGlobusD11R.bpi;JvHMID11R.bpi;JvInterpreterD11R.bpi;JvJansD11R.bpi;JvManagedThreadsD11R.bpi;JvMMD11R.bpi;JvNetD11R.bpi;JvPageCompsD11R.bpi;JvPluginD11R.bpi;JvPrintPreviewD11R.bpi;JvRuntimeDesignD11R.bpi;JvTimeFrameworkD11R.bpi;JvValidatorsD11R.bpi;JvWizardD11R.bpi;JvXPCtrlsD11R.bpi;VclSmp.bpi + false + $(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test;.. + $(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test + true + + + false + false + true + _DEBUG;$(Defines) + true + false + true + None + DEBUG + true + Debug + true + true + true + $(BDS)\lib\debug;$(ILINK_LibraryPath) + Full + true + + + NDEBUG;$(Defines) + Release + $(BDS)\lib\release;$(ILINK_LibraryPath) + None + + + CPlusPlusBuilder.Personality + CppConsoleApplication + +FalseFalse1000FalseFalseFalseFalseFalse103312521.0.0.01.0.0.0FalseFalseFalseTrueFalse + + + CodeGear C++Builder Office 2000 Servers Package + CodeGear C++Builder Office XP Servers Package + FalseTrueTrue3$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test;..$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include;..\test$(BDS)\include;$(BDS)\include\dinkumware;$(BDS)\include\vcl;..\include1$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;..\test$(BDS)\lib;$(BDS)\lib\obj;$(BDS)\lib\psdk;$(OUTPUTDIR);..\test2NO_STRICTSTRICT + + + + + 0 + + + 1 + + + Cfg_1 + + + Cfg_2 + + + \ No newline at end of file diff --git a/cpp/thirdparty/gtest-1.7.0/configure b/cpp/thirdparty/gtest-1.7.0/configure new file mode 100755 index 000000000..582a9a05f --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/configure @@ -0,0 +1,18222 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.68 for Google C++ Testing Framework 1.7.0. +# +# Report bugs to . +# +# +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software +# Foundation, Inc. +# +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 + + test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ + || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + # We cannot yet assume a decent shell, so we have to provide a + # neutralization value for shells without unset; and this also + # works around shells that cannot unset nonexistent variables. + # Preserve -v and -x to the replacement shell. + BASH_ENV=/dev/null + ENV=/dev/null + (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV + export CONFIG_SHELL + case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; + esac + exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: googletestframework@googlegroups.com about your system, +$0: including any error possibly output before this +$0: message. Then install a modern shell, or manually run +$0: the script under such a shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' + fi +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in #( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + +SHELL=${CONFIG_SHELL-/bin/sh} + + +test -n "$DJDIR" || exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='Google C++ Testing Framework' +PACKAGE_TARNAME='gtest' +PACKAGE_VERSION='1.7.0' +PACKAGE_STRING='Google C++ Testing Framework 1.7.0' +PACKAGE_BUGREPORT='googletestframework@googlegroups.com' +PACKAGE_URL='' + +ac_unique_file="./LICENSE" +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIBOBJS +HAVE_PTHREADS_FALSE +HAVE_PTHREADS_TRUE +PTHREAD_CFLAGS +PTHREAD_LIBS +PTHREAD_CC +acx_pthread_config +HAVE_PYTHON_FALSE +HAVE_PYTHON_TRUE +PYTHON +CXXCPP +CPP +OTOOL64 +OTOOL +LIPO +NMEDIT +DSYMUTIL +MANIFEST_TOOL +RANLIB +ac_ct_AR +AR +DLLTOOL +OBJDUMP +LN_S +NM +ac_ct_DUMPBIN +DUMPBIN +LD +FGREP +EGREP +GREP +SED +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +LIBTOOL +am__fastdepCXX_FALSE +am__fastdepCXX_TRUE +CXXDEPMODE +ac_ct_CXX +CXXFLAGS +CXX +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +am__nodep +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CC +CPPFLAGS +LDFLAGS +CFLAGS +CC +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_dependency_tracking +enable_shared +enable_static +with_pic +enable_fast_install +with_gnu_ld +with_sysroot +enable_libtool_lock +with_pthreads +' + ac_precious_vars='build_alias +host_alias +target_alias +CC +CFLAGS +LDFLAGS +LIBS +CPPFLAGS +CXX +CXXFLAGS +CCC +CPP +CXXCPP' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error $? "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used" >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error $? "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error $? "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures Google C++ Testing Framework 1.7.0 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/gtest] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of Google C++ Testing Framework 1.7.0:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors + --enable-shared[=PKGS] build shared libraries [default=yes] + --enable-static[=PKGS] build static libraries [default=yes] + --enable-fast-install[=PKGS] + optimize for fast installation [default=yes] + --disable-libtool-lock avoid locking (might break parallel builds) + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use + both] + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + --with-sysroot=DIR Search for dependent libraries within DIR + (or the compiler's sysroot if not specified). + --with-pthreads use pthreads (default is yes) + +Some influential environment variables: + CC C compiler command + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CXX C++ compiler command + CXXFLAGS C++ compiler flags + CPP C preprocessor + CXXCPP C++ preprocessor + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to . +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +Google C++ Testing Framework configure 1.7.0 +generated by GNU Autoconf 2.68 + +Copyright (C) 2010 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +# ac_fn_c_try_compile LINENO +# -------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_compile + +# ac_fn_cxx_try_compile LINENO +# ---------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_compile + +# ac_fn_c_try_link LINENO +# ----------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_link + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_compile + +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_try_run LINENO +# ---------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes +# that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_run + +# ac_fn_c_check_func LINENO FUNC VAR +# ---------------------------------- +# Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_func + +# ac_fn_cxx_try_cpp LINENO +# ------------------------ +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_cpp + +# ac_fn_cxx_try_link LINENO +# ------------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_link +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by Google C++ Testing Framework $as_me 1.7.0, which was +generated by GNU Autoconf 2.68. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + $as_echo "## ---------------- ## +## Cache variables. ## +## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + $as_echo "## ----------------- ## +## Output variables. ## +## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + $as_echo "## ------------------- ## +## File substitutions. ## +## ------------------- ##" + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + $as_echo "## ----------- ## +## confdefs.h. ## +## ----------- ##" + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5; } + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + +# Provide various options to initialize the Autoconf and configure processes. + + + +ac_aux_dir= +for ac_dir in build-aux "$srcdir"/build-aux; do + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi +done +if test -z "$ac_aux_dir"; then + as_fn_error $? "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +ac_config_headers="$ac_config_headers build-aux/config.h" + +ac_config_files="$ac_config_files Makefile" + +ac_config_files="$ac_config_files scripts/gtest-config" + + +# Initialize Automake with various options. We require at least v1.9, prevent +# pedantic complaints about package files, and enable various distribution +# targets. +am__api_version='1.11' + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if ${ac_cv_path_install+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error $? "ls -t appears to fail. Make sure there is not a broken +alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error $? "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} +fi + +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if ${ac_cv_path_mkdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +mkdir_p="$MKDIR_P" +case $mkdir_p in + [\\/$]* | ?:[\\/]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AWK+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE='gtest' + VERSION='1.7.0' + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AMTAR='$${TAR-tar}' + +am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' + + + + + + +# Check for programs used in building Google Test. +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +$as_echo_n "checking whether the C compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { { ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error 77 "C compiler cannot create executables +See \`config.log' for more details" "$LINENO" 5; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } +ac_exeext=$ac_cv_exeext + +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details" "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if ${ac_cv_objext+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of object files: cannot compile +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if ${ac_cv_c_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if ${ac_cv_prog_cc_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if ${ac_cv_prog_cc_c89+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 +$as_echo_n "checking for style of include used by $am_make... " >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 +$as_echo "$_am_result" >&6; } +rm -f confinc confmf + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CC_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC + else + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +$as_echo "$CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CXX" && break + done +fi +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CXX="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +$as_echo "$ac_ct_CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CXX" && break +done + + if test "x$ac_ct_CXX" = x; then + CXX="g++" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CXX=$ac_ct_CXX + fi +fi + + fi +fi +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 +$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } +if ${ac_cv_cxx_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GXX=yes +else + GXX= +fi +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +$as_echo_n "checking whether $CXX accepts -g... " >&6; } +if ${ac_cv_prog_cxx_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +else + CXXFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + +else + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +$as_echo "$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CXX" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CXX_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CXX_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +case `pwd` in + *\ * | *\ *) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 +$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; +esac + + + +macro_version='2.4.2' +macro_revision='1.3337' + + + + + + + + + + + + + +ltmain="$ac_aux_dir/ltmain.sh" + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if ${ac_cv_build+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if ${ac_cv_host+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 +$as_echo_n "checking how to print strings... " >&6; } +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "" +} + +case "$ECHO" in + printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 +$as_echo "printf" >&6; } ;; + print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 +$as_echo "print -r" >&6; } ;; + *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 +$as_echo "cat" >&6; } ;; +esac + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 +$as_echo_n "checking for a sed that does not truncate output... " >&6; } +if ${ac_cv_path_SED+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed + { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue +# Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_SED_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then + as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi +else + ac_cv_path_SED=$SED +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 +$as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if ${ac_cv_path_GREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_GREP=$GREP +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if ${ac_cv_path_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_EGREP=$EGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 +$as_echo_n "checking for fgrep... " >&6; } +if ${ac_cv_path_FGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 + then ac_cv_path_FGREP="$GREP -F" + else + if test -z "$FGREP"; then + ac_path_FGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in fgrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue +# Check for GNU ac_path_FGREP and select it if it is found. + # Check for GNU $ac_path_FGREP +case `"$ac_path_FGREP" --version 2>&1` in +*GNU*) + ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_FGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_FGREP="$ac_path_FGREP" + ac_path_FGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_FGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_FGREP"; then + as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_FGREP=$FGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 +$as_echo "$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" + + +test -z "$GREP" && GREP=grep + + + + + + + + + + + + + + + + + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 +$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } +if ${lt_cv_path_NM+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 +$as_echo "$lt_cv_path_NM" >&6; } +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + if test -n "$ac_tool_prefix"; then + for ac_prog in dumpbin "link -dump" + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DUMPBIN"; then + ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DUMPBIN=$ac_cv_prog_DUMPBIN +if test -n "$DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 +$as_echo "$DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$DUMPBIN" && break + done +fi +if test -z "$DUMPBIN"; then + ac_ct_DUMPBIN=$DUMPBIN + for ac_prog in dumpbin "link -dump" +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DUMPBIN"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN +if test -n "$ac_ct_DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 +$as_echo "$ac_ct_DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_DUMPBIN" && break +done + + if test "x$ac_ct_DUMPBIN" = x; then + DUMPBIN=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DUMPBIN=$ac_ct_DUMPBIN + fi +fi + + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 +$as_echo_n "checking the name lister ($NM) interface... " >&6; } +if ${lt_cv_nm_interface+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: output\"" >&5) + cat conftest.out >&5 + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 +$as_echo "$lt_cv_nm_interface" >&6; } + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +$as_echo_n "checking whether ln -s works... " >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +$as_echo "no, using $LN_S" >&6; } +fi + +# find the maximum length of command line arguments +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 +$as_echo_n "checking the maximum length of command line arguments... " >&6; } +if ${lt_cv_sys_max_cmd_len+:} false; then : + $as_echo_n "(cached) " >&6 +else + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac + +fi + +if test -n $lt_cv_sys_max_cmd_len ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 +$as_echo "$lt_cv_sys_max_cmd_len" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 +$as_echo "none" >&6; } +fi +max_cmd_len=$lt_cv_sys_max_cmd_len + + + + + + +: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 +$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 +$as_echo "$xsi_shell" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 +$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } +lt_shell_append=no +( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 +$as_echo "$lt_shell_append" >&6; } + + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi + + + + + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 +$as_echo_n "checking how to convert $build file names to $host format... " >&6; } +if ${lt_cv_to_host_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac + +fi + +to_host_file_cmd=$lt_cv_to_host_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 +$as_echo "$lt_cv_to_host_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 +$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } +if ${lt_cv_to_tool_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + #assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac + +fi + +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 +$as_echo "$lt_cv_to_tool_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 +$as_echo_n "checking for $LD option to reload object files... " >&6; } +if ${lt_cv_ld_reload_flag+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_reload_flag='-r' +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 +$as_echo "$lt_cv_ld_reload_flag" >&6; } +reload_flag=$lt_cv_ld_reload_flag +case $reload_flag in +"" | " "*) ;; +*) reload_flag=" $reload_flag" ;; +esac +reload_cmds='$LD$reload_flag -o $output$reload_objs' +case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + if test "$GCC" != yes; then + reload_cmds=false + fi + ;; + darwin*) + if test "$GCC" = yes; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' + else + reload_cmds='$LD$reload_flag -o $output$reload_objs' + fi + ;; +esac + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 +$as_echo_n "checking how to recognize dependent libraries... " >&6; } +if ${lt_cv_deplibs_check_method+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_deplibs_check_method='unknown' +# Need to set the preceding variable on all platforms that support +# interlibrary dependencies. +# 'none' -- dependencies not supported. +# `unknown' -- same as none, but documents that we really don't know. +# 'pass_all' -- all dependencies passed with no checks. +# 'test_compile' -- check by making test program. +# 'file_magic [[regex]]' -- check by looking for files in library path +# which responds to the $file_magic_cmd with a given extended regex. +# If you have `file' or equivalent on your system and you're not sure +# whether `pass_all' will *always* work, you probably want this one. + +case $host_os in +aix[4-9]*) + lt_cv_deplibs_check_method=pass_all + ;; + +beos*) + lt_cv_deplibs_check_method=pass_all + ;; + +bsdi[45]*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' + lt_cv_file_magic_cmd='/usr/bin/file -L' + lt_cv_file_magic_test_file=/shlib/libc.so + ;; + +cygwin*) + # func_win32_libid is a shell function defined in ltmain.sh + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + ;; + +mingw* | pw32*) + # Base MSYS/MinGW do not provide the 'file' command needed by + # func_win32_libid shell function, so use a weaker test based on 'objdump', + # unless we find 'file', for example because we are cross-compiling. + # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. + if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[3-9]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 +$as_echo "$lt_cv_deplibs_check_method" >&6; } + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + + + + + + + + + + + + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DLLTOOL=$ac_ct_DLLTOOL + fi +else + DLLTOOL="$ac_cv_prog_DLLTOOL" +fi + +test -z "$DLLTOOL" && DLLTOOL=dlltool + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 +$as_echo_n "checking how to associate runtime and link libraries... " >&6; } +if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 +$as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + + + + + + + + +if test -n "$ac_tool_prefix"; then + for ac_prog in ar + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AR="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AR=$ac_cv_prog_AR +if test -n "$AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 +$as_echo "$AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AR" && break + done +fi +if test -z "$AR"; then + ac_ct_AR=$AR + for ac_prog in ar +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_AR="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AR=$ac_cv_prog_ac_ct_AR +if test -n "$ac_ct_AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 +$as_echo "$ac_ct_AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_AR" && break +done + + if test "x$ac_ct_AR" = x; then + AR="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AR=$ac_ct_AR + fi +fi + +: ${AR=ar} +: ${AR_FLAGS=cru} + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 +$as_echo_n "checking for archiver @FILE support... " >&6; } +if ${lt_cv_ar_at_file+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ar_at_file=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 +$as_echo "$lt_cv_ar_at_file" >&6; } + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +test -z "$STRIP" && STRIP=: + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. +set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +RANLIB=$ac_cv_prog_RANLIB +if test -n "$RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 +$as_echo "$RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. +set dummy ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_RANLIB="ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB +if test -n "$ac_ct_RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 +$as_echo "$ac_ct_RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_RANLIB" = x; then + RANLIB=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + RANLIB=$ac_ct_RANLIB + fi +else + RANLIB="$ac_cv_prog_RANLIB" +fi + +test -z "$RANLIB" && RANLIB=: + + + + + + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + +# Check for command to grab the raw symbol name followed by C symbol from nm. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 +$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } +if ${lt_cv_sys_global_symbol_pipe+:} false; then : + $as_echo_n "(cached) " >&6 +else + +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[BCDEGRST]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([_A-Za-z][_A-Za-z0-9]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[BCDT]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[ABCDGISTW]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[ABCDEGRST]' + fi + ;; +irix* | nonstopux*) + symcode='[BCDEGRST]' + ;; +osf*) + symcode='[BCDEGQRST]' + ;; +solaris*) + symcode='[BDRT]' + ;; +sco3.2v5*) + symcode='[DT]' + ;; +sysv4.2uw2*) + symcode='[DT]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[ABDT]' + ;; +sysv4) + symcode='[DFNSTU]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[ABCDGIRSTW]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK '"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Now try to grab the symbols. + nlist=conftest.nm + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 + (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&5 + fi + else + echo "cannot find nm_test_var in $nlist" >&5 + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 + fi + else + echo "$progname: failed program was:" >&5 + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done + +fi + +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 +$as_echo "failed" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 +$as_echo "ok" >&6; } +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 +$as_echo_n "checking for sysroot... " >&6; } + +# Check whether --with-sysroot was given. +if test "${with_sysroot+set}" = set; then : + withval=$with_sysroot; +else + with_sysroot=no +fi + + +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 +$as_echo "${with_sysroot}" >&6; } + as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 + ;; +esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 +$as_echo "${lt_sysroot:-no}" >&6; } + + + + + + +# Check whether --enable-libtool-lock was given. +if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; +fi + +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*|powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 +$as_echo_n "checking whether the C compiler needs -belf... " >&6; } +if ${lt_cv_cc_needs_belf+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_cc_needs_belf=yes +else + lt_cv_cc_needs_belf=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 +$as_echo "$lt_cv_cc_needs_belf" >&6; } + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. +set dummy ${ac_tool_prefix}mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$MANIFEST_TOOL"; then + ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL +if test -n "$MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 +$as_echo "$MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_MANIFEST_TOOL"; then + ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL + # Extract the first word of "mt", so it can be a program name with args. +set dummy mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_MANIFEST_TOOL"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL +if test -n "$ac_ct_MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 +$as_echo "$ac_ct_MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_MANIFEST_TOOL" = x; then + MANIFEST_TOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL + fi +else + MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" +fi + +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 +$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } +if ${lt_cv_path_mainfest_tool+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&5 + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 +$as_echo "$lt_cv_path_mainfest_tool" >&6; } +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi + + + + + + + case $host_os in + rhapsody* | darwin*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. +set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DSYMUTIL=$ac_cv_prog_DSYMUTIL +if test -n "$DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 +$as_echo "$DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. +set dummy dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL +if test -n "$ac_ct_DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 +$as_echo "$ac_ct_DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DSYMUTIL" = x; then + DSYMUTIL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DSYMUTIL=$ac_ct_DSYMUTIL + fi +else + DSYMUTIL="$ac_cv_prog_DSYMUTIL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. +set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +NMEDIT=$ac_cv_prog_NMEDIT +if test -n "$NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 +$as_echo "$NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. +set dummy nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT +if test -n "$ac_ct_NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 +$as_echo "$ac_ct_NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_NMEDIT" = x; then + NMEDIT=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + NMEDIT=$ac_ct_NMEDIT + fi +else + NMEDIT="$ac_cv_prog_NMEDIT" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. +set dummy ${ac_tool_prefix}lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$LIPO"; then + ac_cv_prog_LIPO="$LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_LIPO="${ac_tool_prefix}lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +LIPO=$ac_cv_prog_LIPO +if test -n "$LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 +$as_echo "$LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_LIPO"; then + ac_ct_LIPO=$LIPO + # Extract the first word of "lipo", so it can be a program name with args. +set dummy lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_LIPO"; then + ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_LIPO="lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO +if test -n "$ac_ct_LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 +$as_echo "$ac_ct_LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_LIPO" = x; then + LIPO=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + LIPO=$ac_ct_LIPO + fi +else + LIPO="$ac_cv_prog_LIPO" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL"; then + ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OTOOL="${ac_tool_prefix}otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL=$ac_cv_prog_OTOOL +if test -n "$OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 +$as_echo "$OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL"; then + ac_ct_OTOOL=$OTOOL + # Extract the first word of "otool", so it can be a program name with args. +set dummy otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL"; then + ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OTOOL="otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL +if test -n "$ac_ct_OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 +$as_echo "$ac_ct_OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL" = x; then + OTOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL=$ac_ct_OTOOL + fi +else + OTOOL="$ac_cv_prog_OTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL64"; then + ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL64=$ac_cv_prog_OTOOL64 +if test -n "$OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 +$as_echo "$OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL64"; then + ac_ct_OTOOL64=$OTOOL64 + # Extract the first word of "otool64", so it can be a program name with args. +set dummy otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL64"; then + ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_OTOOL64="otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 +if test -n "$ac_ct_OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 +$as_echo "$ac_ct_OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL64" = x; then + OTOOL64=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL64=$ac_ct_OTOOL64 + fi +else + OTOOL64="$ac_cv_prog_OTOOL64" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 +$as_echo_n "checking for -single_module linker flag... " >&6; } +if ${lt_cv_apple_cc_single_mod+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&5 + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&5 + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 +$as_echo "$lt_cv_apple_cc_single_mod" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 +$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } +if ${lt_cv_ld_exported_symbols_list+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_ld_exported_symbols_list=yes +else + lt_cv_ld_exported_symbols_list=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 +$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 +$as_echo_n "checking for -force_load linker flag... " >&6; } +if ${lt_cv_ld_force_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 + echo "$AR cru libconftest.a conftest.o" >&5 + $AR cru libconftest.a conftest.o 2>&5 + echo "$RANLIB libconftest.a" >&5 + $RANLIB libconftest.a 2>&5 + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&5 + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&5 + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 +$as_echo "$lt_cv_ld_force_load" >&6; } + case $host_os in + rhapsody* | darwin1.[012]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[91]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[012]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if ${ac_cv_prog_CPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if ${ac_cv_header_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +for ac_header in dlfcn.h +do : + ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default +" +if test "x$ac_cv_header_dlfcn_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DLFCN_H 1 +_ACEOF + +fi + +done + + + +func_stripname_cnf () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname_cnf + + + + + +# Set options + + + + enable_dlopen=no + + + enable_win32_dll=no + + + # Check whether --enable-shared was given. +if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_shared=yes +fi + + + + + + + + + + # Check whether --enable-static was given. +if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_static=yes +fi + + + + + + + + + + +# Check whether --with-pic was given. +if test "${with_pic+set}" = set; then : + withval=$with_pic; lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + pic_mode=default +fi + + +test -z "$pic_mode" && pic_mode=default + + + + + + + + # Check whether --enable-fast-install was given. +if test "${enable_fast_install+set}" = set; then : + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_fast_install=yes +fi + + + + + + + + + + + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +test -z "$LN_S" && LN_S="ln -s" + + + + + + + + + + + + + + +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 +$as_echo_n "checking for objdir... " >&6; } +if ${lt_cv_objdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 +$as_echo "$lt_cv_objdir" >&6; } +objdir=$lt_cv_objdir + + + + + +cat >>confdefs.h <<_ACEOF +#define LT_OBJDIR "$lt_cv_objdir/" +_ACEOF + + + + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 +$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/${ac_tool_prefix}file; then + lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + + +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 +$as_echo_n "checking for file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/file; then + lt_cv_path_MAGIC_CMD="$ac_dir/file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + else + MAGIC_CMD=: + fi +fi + + fi + ;; +esac + +# Use C for the default configuration in the libtool script + +lt_save_CC="$CC" +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +objext=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + +lt_prog_compiler_no_builtin_flag= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; + *) + lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } +if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-fno-rtti -fno-exceptions" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + +if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +else + : +fi + +fi + + + + + + + lt_prog_compiler_wl= +lt_prog_compiler_pic= +lt_prog_compiler_static= + + + if test "$GCC" = yes; then + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_static='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + lt_prog_compiler_wl='-Xlinker ' + if test -n "$lt_prog_compiler_pic"; then + lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + else + lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='--shared' + lt_prog_compiler_static='--static' + ;; + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-qpic' + lt_prog_compiler_static='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='' + ;; + *Sun\ F* | *Sun*Fortran*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Wl,' + ;; + *Intel*\ [CF]*Compiler*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + *Portland\ Group*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + lt_prog_compiler_wl='-Qoption ld ';; + *) + lt_prog_compiler_wl='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl='-Qoption ld ' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + lt_prog_compiler_pic='-Kconform_pic' + lt_prog_compiler_static='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_can_build_shared=no + ;; + + uts4*) + lt_prog_compiler_pic='-pic' + lt_prog_compiler_static='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic= + ;; + *) + lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic=$lt_prog_compiler_pic +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 +$as_echo "$lt_cv_prog_compiler_pic" >&6; } +lt_prog_compiler_pic=$lt_cv_prog_compiler_pic + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } +if ${lt_cv_prog_compiler_pic_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works" = xyes; then + case $lt_prog_compiler_pic in + "" | " "*) ;; + *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; + esac +else + lt_prog_compiler_pic= + lt_prog_compiler_can_build_shared=no +fi + +fi + + + + + + + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works=yes + fi + else + lt_cv_prog_compiler_static_works=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 +$as_echo "$lt_cv_prog_compiler_static_works" >&6; } + +if test x"$lt_cv_prog_compiler_static_works" = xyes; then + : +else + lt_prog_compiler_static= +fi + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag= + always_export_symbols=no + archive_cmds= + archive_expsym_cmds= + compiler_needs_object=no + enable_shared_with_static_runtimes=no + export_dynamic_flag_spec= + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic=no + hardcode_direct=no + hardcode_direct_absolute=no + hardcode_libdir_flag_spec= + hardcode_libdir_separator= + hardcode_minus_L=no + hardcode_shlibpath_var=unsupported + inherit_rpath=no + link_all_deplibs=unknown + module_cmds= + module_expsym_cmds= + old_archive_from_new_cmds= + old_archive_from_expsyms_cmds= + thread_safe_flag_spec= + whole_archive_flag_spec= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs=no + ;; + esac + + ld_shlibs=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; + *\ \(GNU\ Binutils\)\ [3-9]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + export_dynamic_flag_spec='${wl}--export-all-symbols' + allow_undefined_flag=unsupported + always_export_symbols=no + enable_shared_with_static_runtimes=yes + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs=no + fi + ;; + + haiku*) + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + link_all_deplibs=yes + ;; + + interix[3-9]*) + hardcode_direct=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + whole_archive_flag_spec= + tmp_sharedflag='--shared' ;; + xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + + if test "$ld_shlibs" = no; then + runpath_var= + hardcode_libdir_flag_spec= + export_dynamic_flag_spec= + whole_archive_flag_spec= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag=unsupported + always_export_symbols=yes + archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds='' + hardcode_direct=yes + hardcode_direct_absolute=yes + hardcode_libdir_separator=':' + link_all_deplibs=yes + file_list_spec='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + link_all_deplibs=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag="-z nodefs" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag=' ${wl}-bernotok' + allow_undefined_flag=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec='$convenience' + fi + archive_cmds_need_lc=yes + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + always_export_symbols=yes + file_list_spec='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, )='true' + enable_shared_with_static_runtimes=yes + exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + old_postinstall_cmds='chmod 644 $oldlib' + postlink_cmds='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' + enable_shared_with_static_runtimes=yes + ;; + esac + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc=no + hardcode_direct=no + hardcode_automatic=yes + hardcode_shlibpath_var=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec='' + fi + link_all_deplibs=yes + allow_undefined_flag="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + + else + ld_shlibs=no + fi + + ;; + + dgux*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + hpux9*) + if test "$GCC" = yes; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + export_dynamic_flag_spec='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 +$as_echo_n "checking if $CC understands -b... " >&6; } +if ${lt_cv_prog_compiler__b+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler__b=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -b" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler__b=yes + fi + else + lt_cv_prog_compiler__b=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 +$as_echo "$lt_cv_prog_compiler__b" >&6; } + +if test x"$lt_cv_prog_compiler__b" = xyes; then + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' +else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' +fi + + ;; + esac + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + hardcode_shlibpath_var=no + ;; + *) + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 +$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } +if ${lt_cv_irix_exported_symbol+:} false; then : + $as_echo_n "(cached) " >&6 +else + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +int foo (void) { return 0; } +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_irix_exported_symbol=yes +else + lt_cv_irix_exported_symbol=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 +$as_echo "$lt_cv_irix_exported_symbol" >&6; } + if test "$lt_cv_irix_exported_symbol" = yes; then + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + inherit_rpath=yes + link_all_deplibs=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + newsos6) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_shlibpath_var=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct=yes + hardcode_shlibpath_var=no + hardcode_direct_absolute=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + else + case $host_os in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + else + ld_shlibs=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + archive_cmds_need_lc='no' + hardcode_libdir_separator=: + ;; + + solaris*) + no_undefined_flag=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_shlibpath_var=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + whole_archive_flag_spec='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds='$CC -r -o $output$reload_objs' + hardcode_direct=no + ;; + motorola) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var=no + ;; + + sysv4.3*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + export_dynamic_flag_spec='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag='${wl}-z,text' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag='${wl}-z,text' + allow_undefined_flag='${wl}-z,nodefs' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-R,$libdir' + hardcode_libdir_separator=':' + link_all_deplibs=yes + export_dynamic_flag_spec='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + *) + ld_shlibs=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec='${wl}-Blargedynsym' + ;; + esac + fi + fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 +$as_echo "$ld_shlibs" >&6; } +test "$ld_shlibs" = no && can_build_shared=no + +with_gnu_ld=$with_gnu_ld + + + + + + + + + + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl + pic_flag=$lt_prog_compiler_pic + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc=no + else + lt_cv_archive_cmds_need_lc=yes + fi + allow_undefined_flag=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } + archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[lt_foo]++; } + if (lt_freq[lt_foo] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([A-Za-z]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action= +if test -n "$hardcode_libdir_flag_spec" || + test -n "$runpath_var" || + test "X$hardcode_automatic" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && + test "$hardcode_minus_L" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 +$as_echo "$hardcode_action" >&6; } + +if test "$hardcode_action" = relink || + test "$inherit_rpath" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + +fi + + ;; + + *) + ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" +if test "x$ac_cv_func_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 +$as_echo_n "checking for shl_load in -ldld... " >&6; } +if ${ac_cv_lib_dld_shl_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char shl_load (); +int +main () +{ +return shl_load (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_shl_load=yes +else + ac_cv_lib_dld_shl_load=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 +$as_echo "$ac_cv_lib_dld_shl_load" >&6; } +if test "x$ac_cv_lib_dld_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" +else + ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" +if test "x$ac_cv_func_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 +$as_echo_n "checking for dlopen in -lsvld... " >&6; } +if ${ac_cv_lib_svld_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lsvld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_svld_dlopen=yes +else + ac_cv_lib_svld_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 +$as_echo "$ac_cv_lib_svld_dlopen" >&6; } +if test "x$ac_cv_lib_svld_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 +$as_echo_n "checking for dld_link in -ldld... " >&6; } +if ${ac_cv_lib_dld_dld_link+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dld_link (); +int +main () +{ +return dld_link (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_dld_link=yes +else + ac_cv_lib_dld_dld_link=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 +$as_echo "$ac_cv_lib_dld_dld_link" >&6; } +if test "x$ac_cv_lib_dld_dld_link" = xyes; then : + lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" +fi + + +fi + + +fi + + +fi + + +fi + + +fi + + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 +$as_echo_n "checking whether a program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 +$as_echo "$lt_cv_dlopen_self" >&6; } + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 +$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self_static+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self_static=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self_static=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 +$as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi + + + + + + + + + + + + + + + + + +striplib= +old_striplib= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 +$as_echo_n "checking whether stripping libraries is possible... " >&6; } +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + ;; + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + ;; + esac +fi + + + + + + + + + + + + + # Report which library types will actually be built + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 +$as_echo_n "checking if libtool supports shared libraries... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 +$as_echo "$can_build_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 +$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 +$as_echo "$enable_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 +$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 +$as_echo "$enable_static" >&6; } + + + + +fi +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +CC="$lt_save_CC" + + if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 +$as_echo_n "checking how to run the C++ preprocessor... " >&6; } +if test -z "$CXXCPP"; then + if ${ac_cv_prog_CXXCPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CXXCPP needs to be expanded + for CXXCPP in "$CXX -E" "/lib/cpp" + do + ac_preproc_ok=false +for ac_cxx_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CXXCPP=$CXXCPP + +fi + CXXCPP=$ac_cv_prog_CXXCPP +else + ac_cv_prog_CXXCPP=$CXXCPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 +$as_echo "$CXXCPP" >&6; } +ac_preproc_ok=false +for ac_cxx_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +else + _lt_caught_CXX_error=yes +fi + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +archive_cmds_need_lc_CXX=no +allow_undefined_flag_CXX= +always_export_symbols_CXX=no +archive_expsym_cmds_CXX= +compiler_needs_object_CXX=no +export_dynamic_flag_spec_CXX= +hardcode_direct_CXX=no +hardcode_direct_absolute_CXX=no +hardcode_libdir_flag_spec_CXX= +hardcode_libdir_separator_CXX= +hardcode_minus_L_CXX=no +hardcode_shlibpath_var_CXX=unsupported +hardcode_automatic_CXX=no +inherit_rpath_CXX=no +module_cmds_CXX= +module_expsym_cmds_CXX= +link_all_deplibs_CXX=unknown +old_archive_cmds_CXX=$old_archive_cmds +reload_flag_CXX=$reload_flag +reload_cmds_CXX=$reload_cmds +no_undefined_flag_CXX= +whole_archive_flag_spec_CXX= +enable_shared_with_static_runtimes_CXX=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +objext_CXX=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + + # save warnings/boilerplate of simple test code + ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + + ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + compiler_CXX=$CC + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' + else + lt_prog_compiler_no_builtin_flag_CXX= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec_CXX= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + ld_shlibs_CXX=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds_CXX='' + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + file_list_spec_CXX='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct_CXX=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L_CXX=yes + hardcode_libdir_flag_spec_CXX='-L$libdir' + hardcode_libdir_separator_CXX= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec_CXX='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + always_export_symbols_CXX=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag_CXX='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath__CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath__CXX +fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + + archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag_CXX="-z nodefs" + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath__CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath__CXX +fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag_CXX=' ${wl}-bernotok' + allow_undefined_flag_CXX=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec_CXX='$convenience' + fi + archive_cmds_need_lc_CXX=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag_CXX=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs_CXX=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec_CXX=' ' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=yes + file_list_spec_CXX='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' + enable_shared_with_static_runtimes_CXX=yes + # Don't use ranlib + old_postinstall_cmds_CXX='chmod 644 $oldlib' + postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec_CXX='-L$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=no + enable_shared_with_static_runtimes_CXX=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs_CXX=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + + + archive_cmds_need_lc_CXX=no + hardcode_direct_CXX=no + hardcode_automatic_CXX=yes + hardcode_shlibpath_var_CXX=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec_CXX='' + fi + link_all_deplibs_CXX=yes + allow_undefined_flag_CXX="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + if test "$lt_cv_apple_cc_single_mod" != "yes"; then + archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi + + else + ld_shlibs_CXX=no + fi + + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + ld_shlibs_CXX=no + ;; + + freebsd-elf*) + archive_cmds_need_lc_CXX=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + ld_shlibs_CXX=yes + ;; + + gnu*) + ;; + + haiku*) + archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + link_all_deplibs_CXX=yes + ;; + + hpux9*) + hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_CXX=: + export_dynamic_flag_spec_CXX='${wl}-E' + hardcode_direct_CXX=yes + hardcode_minus_L_CXX=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aCC*) + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_CXX=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + export_dynamic_flag_spec_CXX='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + ;; + *) + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_minus_L_CXX=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + interix[3-9]*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + fi + fi + link_all_deplibs_CXX=yes + ;; + esac + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_CXX=: + inherit_rpath_CXX=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + archive_cmds_need_lc_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [1-5].* | *pgcpp\ [1-5].*) + prelink_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + old_archive_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + archive_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + hardcode_libdir_flag_spec_CXX='-R$libdir' + whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object_CXX=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + ld_shlibs_CXX=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + ld_shlibs_CXX=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + hardcode_direct_absolute_CXX=yes + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + export_dynamic_flag_spec_CXX='${wl}-E' + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + ld_shlibs_CXX=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + hardcode_libdir_separator_CXX=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + cxx*) + case $host in + osf3*) + allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + ;; + *) + allow_undefined_flag_CXX=' -expect_unresolved \*' + archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + ;; + esac + + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + archive_cmds_need_lc_CXX=yes + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_shlibpath_var_CXX=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' + ;; + esac + link_all_deplibs_CXX=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + no_undefined_flag_CXX=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag_CXX='${wl}-z,text' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag_CXX='${wl}-z,text' + allow_undefined_flag_CXX='${wl}-z,nodefs' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + export_dynamic_flag_spec_CXX='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ + '"$old_archive_cmds_CXX" + reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ + '"$reload_cmds_CXX" + ;; + *) + archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + GCC_CXX="$GXX" + LD_CXX="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + # Dependencies to place before and after the object being linked: +predep_objects_CXX= +postdep_objects_CXX= +predeps_CXX= +postdeps_CXX= +compiler_lib_search_path_CXX= + +cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF + + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case ${prev}${p} in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test "$pre_test_object_deps_done" = no; then + case ${prev} in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$compiler_lib_search_path_CXX"; then + compiler_lib_search_path_CXX="${prev}${p}" + else + compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$postdeps_CXX"; then + postdeps_CXX="${prev}${p}" + else + postdeps_CXX="${postdeps_CXX} ${prev}${p}" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$predep_objects_CXX"; then + predep_objects_CXX="$p" + else + predep_objects_CXX="$predep_objects_CXX $p" + fi + else + if test -z "$postdep_objects_CXX"; then + postdep_objects_CXX="$p" + else + postdep_objects_CXX="$postdep_objects_CXX $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling CXX test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +case $host_os in +interix[3-9]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + predep_objects_CXX= + postdep_objects_CXX= + postdeps_CXX= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + postdeps_CXX='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + postdeps_CXX='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac + + +case " $postdeps_CXX " in +*" -lc "*) archive_cmds_need_lc_CXX=no ;; +esac + compiler_lib_search_dirs_CXX= +if test -n "${compiler_lib_search_path_CXX}"; then + compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lt_prog_compiler_wl_CXX= +lt_prog_compiler_pic_CXX= +lt_prog_compiler_static_CXX= + + + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_CXX='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic_CXX='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic_CXX='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + lt_prog_compiler_pic_CXX= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static_CXX= + ;; + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic_CXX=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + lt_prog_compiler_pic_CXX='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + *) + lt_prog_compiler_pic_CXX='-fPIC' + ;; + esac + else + case $host_os in + aix[4-9]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_CXX='-Bstatic' + else + lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + ;; + dgux*) + case $cc_basename in + ec++*) + lt_prog_compiler_pic_CXX='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + lt_prog_compiler_pic_CXX='+Z' + fi + ;; + aCC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic_CXX='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + lt_prog_compiler_wl_CXX='--backend -Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + lt_prog_compiler_static_CXX='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fpic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-qpic' + lt_prog_compiler_static_CXX='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + lt_prog_compiler_pic_CXX='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + lt_prog_compiler_wl_CXX='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + lt_prog_compiler_pic_CXX='-pic' + ;; + cxx*) + # Digital/Compaq C++ + lt_prog_compiler_wl_CXX='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + lt_prog_compiler_pic_CXX='-pic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + lcc*) + # Lucid + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + lt_prog_compiler_pic_CXX='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + lt_prog_compiler_can_build_shared_CXX=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic_CXX= + ;; + *) + lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } +lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } +if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works_CXX=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works_CXX=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then + case $lt_prog_compiler_pic_CXX in + "" | " "*) ;; + *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; + esac +else + lt_prog_compiler_pic_CXX= + lt_prog_compiler_can_build_shared_CXX=no +fi + +fi + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works_CXX=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works_CXX=yes + fi + else + lt_cv_prog_compiler_static_works_CXX=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } + +if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then + : +else + lt_prog_compiler_static_CXX= +fi + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + case $host_os in + aix[4-9]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + export_symbols_cmds_CXX="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + ;; + esac + ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs_CXX=no + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } +test "$ld_shlibs_CXX" = no && can_build_shared=no + +with_gnu_ld_CXX=$with_gnu_ld + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc_CXX" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc_CXX=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds_CXX in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl_CXX + pic_flag=$lt_prog_compiler_pic_CXX + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_CXX + allow_undefined_flag_CXX= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc_CXX=no + else + lt_cv_archive_cmds_need_lc_CXX=yes + fi + allow_undefined_flag_CXX=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } + archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action_CXX= +if test -n "$hardcode_libdir_flag_spec_CXX" || + test -n "$runpath_var_CXX" || + test "X$hardcode_automatic_CXX" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct_CXX" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && + test "$hardcode_minus_L_CXX" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action_CXX=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action_CXX=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action_CXX=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 +$as_echo "$hardcode_action_CXX" >&6; } + +if test "$hardcode_action_CXX" = relink || + test "$inherit_rpath_CXX" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + + + + + + + + + + + + + + + ac_config_commands="$ac_config_commands libtool" + + + + +# Only expand once: + + + +# TODO(chandlerc@google.com): Currently we aren't running the Python tests +# against the interpreter detected by AM_PATH_PYTHON, and so we condition +# HAVE_PYTHON by requiring "python" to be in the PATH, and that interpreter's +# version to be >= 2.3. This will allow the scripts to use a "/usr/bin/env" +# hashbang. +PYTHON= # We *do not* allow the user to specify a python interpreter +# Extract the first word of "python", so it can be a program name with args. +set dummy python; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_PYTHON+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $PYTHON in + [\\/]* | ?:[\\/]*) + ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_path_PYTHON" && ac_cv_path_PYTHON=":" + ;; +esac +fi +PYTHON=$ac_cv_path_PYTHON +if test -n "$PYTHON"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 +$as_echo "$PYTHON" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test "$PYTHON" != ":"; then : + prog="import sys +# split strings by '.' and convert to numeric. Append some zeros +# because we need at least 4 digits for the hex conversion. +# map returns an iterator in Python 3.0 and a list in 2.x +minver = list(map(int, '2.3'.split('.'))) + [0, 0, 0] +minverhex = 0 +# xrange is not present in Python 3.0 and range returns an iterator +for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] +sys.exit(sys.hexversion < minverhex)" + if { echo "$as_me:$LINENO: $PYTHON -c "$prog"" >&5 + ($PYTHON -c "$prog") >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then : + : +else + PYTHON=":" +fi +fi + if test "$PYTHON" != ":"; then + HAVE_PYTHON_TRUE= + HAVE_PYTHON_FALSE='#' +else + HAVE_PYTHON_TRUE='#' + HAVE_PYTHON_FALSE= +fi + + +# Configure pthreads. + +# Check whether --with-pthreads was given. +if test "${with_pthreads+set}" = set; then : + withval=$with_pthreads; with_pthreads=$withval +else + with_pthreads=check +fi + + +have_pthreads=no +if test "x$with_pthreads" != "xno"; then : + + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +acx_pthread_ok=no + +# We used to check for pthread.h first, but this fails if pthread.h +# requires special compiler flags (e.g. on True64 or Sequent). +# It gets checked for in the link test anyway. + +# First of all, check if the user has set any of the PTHREAD_LIBS, +# etcetera environment variables, and if threads linking works using +# them: +if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + save_LIBS="$LIBS" + LIBS="$PTHREAD_LIBS $LIBS" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS" >&5 +$as_echo_n "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char pthread_join (); +int +main () +{ +return pthread_join (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + acx_pthread_ok=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_ok" >&5 +$as_echo "$acx_pthread_ok" >&6; } + if test x"$acx_pthread_ok" = xno; then + PTHREAD_LIBS="" + PTHREAD_CFLAGS="" + fi + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" +fi + +# We must check for the threads library under a number of different +# names; the ordering is very important because some systems +# (e.g. DEC) have both -lpthread and -lpthreads, where one of the +# libraries is broken (non-POSIX). + +# Create a list of thread flags to try. Items starting with a "-" are +# C compiler flags, and other items are library names, except for "none" +# which indicates that we try without any flags at all, and "pthread-config" +# which is a program returning the flags for the Pth emulation library. + +acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" + +# The ordering *is* (sometimes) important. Some notes on the +# individual items follow: + +# pthreads: AIX (must check this before -lpthread) +# none: in case threads are in libc; should be tried before -Kthread and +# other compiler flags to prevent continual compiler warnings +# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) +# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) +# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) +# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) +# -pthreads: Solaris/gcc +# -mthreads: Mingw32/gcc, Lynx/gcc +# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it +# doesn't hurt to check since this sometimes defines pthreads too; +# also defines -D_REENTRANT) +# ... -mt is also the pthreads flag for HP/aCC +# pthread: Linux, etcetera +# --thread-safe: KAI C++ +# pthread-config: use pthread-config program (for GNU Pth library) + +case "${host_cpu}-${host_os}" in + *solaris*) + + # On Solaris (at least, for some versions), libc contains stubbed + # (non-functional) versions of the pthreads routines, so link-based + # tests will erroneously succeed. (We need to link with -pthreads/-mt/ + # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather + # a function called by this macro, so we could check for that, but + # who knows whether they'll stub that too in a future libc.) So, + # we'll just look for -pthreads and -lpthread first: + + acx_pthread_flags="-pthreads pthread -mt -pthread $acx_pthread_flags" + ;; +esac + +if test x"$acx_pthread_ok" = xno; then +for flag in $acx_pthread_flags; do + + case $flag in + none) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5 +$as_echo_n "checking whether pthreads work without any flags... " >&6; } + ;; + + -*) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $flag" >&5 +$as_echo_n "checking whether pthreads work with $flag... " >&6; } + PTHREAD_CFLAGS="$flag" + ;; + + pthread-config) + # Extract the first word of "pthread-config", so it can be a program name with args. +set dummy pthread-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_acx_pthread_config+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$acx_pthread_config"; then + ac_cv_prog_acx_pthread_config="$acx_pthread_config" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_acx_pthread_config="yes" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_prog_acx_pthread_config" && ac_cv_prog_acx_pthread_config="no" +fi +fi +acx_pthread_config=$ac_cv_prog_acx_pthread_config +if test -n "$acx_pthread_config"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_config" >&5 +$as_echo "$acx_pthread_config" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + if test x"$acx_pthread_config" = xno; then continue; fi + PTHREAD_CFLAGS="`pthread-config --cflags`" + PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" + ;; + + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$flag" >&5 +$as_echo_n "checking for the pthreads library -l$flag... " >&6; } + PTHREAD_LIBS="-l$flag" + ;; + esac + + save_LIBS="$LIBS" + save_CFLAGS="$CFLAGS" + LIBS="$PTHREAD_LIBS $LIBS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + + # Check for various functions. We must include pthread.h, + # since some functions may be macros. (On the Sequent, we + # need a special flag -Kthread to make this header compile.) + # We check for pthread_join because it is in -lpthread on IRIX + # while pthread_create is in libc. We check for pthread_attr_init + # due to DEC craziness with -lpthreads. We check for + # pthread_cleanup_push because it is one of the few pthread + # functions on Solaris that doesn't have a non-functional libc stub. + # We try pthread_create on general principles. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + acx_pthread_ok=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_ok" >&5 +$as_echo "$acx_pthread_ok" >&6; } + if test "x$acx_pthread_ok" = xyes; then + break; + fi + + PTHREAD_LIBS="" + PTHREAD_CFLAGS="" +done +fi + +# Various other checks: +if test "x$acx_pthread_ok" = xyes; then + save_LIBS="$LIBS" + LIBS="$PTHREAD_LIBS $LIBS" + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + + # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5 +$as_echo_n "checking for joinable pthread attribute... " >&6; } + attr_name=unknown + for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +int attr=$attr; return attr; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + attr_name=$attr; break +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + done + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $attr_name" >&5 +$as_echo "$attr_name" >&6; } + if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then + +cat >>confdefs.h <<_ACEOF +#define PTHREAD_CREATE_JOINABLE $attr_name +_ACEOF + + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if more special flags are required for pthreads" >&5 +$as_echo_n "checking if more special flags are required for pthreads... " >&6; } + flag=no + case "${host_cpu}-${host_os}" in + *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; + *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${flag}" >&5 +$as_echo "${flag}" >&6; } + if test "x$flag" != xno; then + PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" + fi + + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" + # More AIX lossage: must compile with xlc_r or cc_r + if test x"$GCC" != xyes; then + for ac_prog in xlc_r cc_r +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_PTHREAD_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$PTHREAD_CC"; then + ac_cv_prog_PTHREAD_CC="$PTHREAD_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_PTHREAD_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +PTHREAD_CC=$ac_cv_prog_PTHREAD_CC +if test -n "$PTHREAD_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5 +$as_echo "$PTHREAD_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$PTHREAD_CC" && break +done +test -n "$PTHREAD_CC" || PTHREAD_CC="${CC}" + + else + PTHREAD_CC=$CC + fi + + # The next part tries to detect GCC inconsistency with -shared on some + # architectures and systems. The problem is that in certain + # configurations, when -shared is specified, GCC "forgets" to + # internally use various flags which are still necessary. + + # + # Prepare the flags + # + save_CFLAGS="$CFLAGS" + save_LIBS="$LIBS" + save_CC="$CC" + + # Try with the flags determined by the earlier checks. + # + # -Wl,-z,defs forces link-time symbol resolution, so that the + # linking checks with -shared actually have any value + # + # FIXME: -fPIC is required for -shared on many architectures, + # so we specify it here, but the right way would probably be to + # properly detect whether it is actually required. + CFLAGS="-shared -fPIC -Wl,-z,defs $CFLAGS $PTHREAD_CFLAGS" + LIBS="$PTHREAD_LIBS $LIBS" + CC="$PTHREAD_CC" + + # In order not to create several levels of indentation, we test + # the value of "$done" until we find the cure or run out of ideas. + done="no" + + # First, make sure the CFLAGS we added are actually accepted by our + # compiler. If not (and OS X's ld, for instance, does not accept -z), + # then we can't do this test. + if test x"$done" = xno; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to check for GCC pthread/shared inconsistencies" >&5 +$as_echo_n "checking whether to check for GCC pthread/shared inconsistencies... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + +else + done=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + if test "x$done" = xyes ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + fi + fi + + if test x"$done" = xno; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -pthread is sufficient with -shared" >&5 +$as_echo_n "checking whether -pthread is sufficient with -shared... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + done=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + if test "x$done" = xyes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + fi + + # + # Linux gcc on some architectures such as mips/mipsel forgets + # about -lpthread + # + if test x"$done" = xno; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lpthread fixes that" >&5 +$as_echo_n "checking whether -lpthread fixes that... " >&6; } + LIBS="-lpthread $PTHREAD_LIBS $save_LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + done=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + if test "x$done" = xyes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + PTHREAD_LIBS="-lpthread $PTHREAD_LIBS" + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + fi + # + # FreeBSD 4.10 gcc forgets to use -lc_r instead of -lc + # + if test x"$done" = xno; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc_r fixes that" >&5 +$as_echo_n "checking whether -lc_r fixes that... " >&6; } + LIBS="-lc_r $PTHREAD_LIBS $save_LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + done=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + if test "x$done" = xyes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + PTHREAD_LIBS="-lc_r $PTHREAD_LIBS" + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + fi + if test x"$done" = xno; then + # OK, we have run out of ideas + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Impossible to determine how to use pthreads with shared libraries" >&5 +$as_echo "$as_me: WARNING: Impossible to determine how to use pthreads with shared libraries" >&2;} + + # so it's not safe to assume that we may use pthreads + acx_pthread_ok=no + fi + + CFLAGS="$save_CFLAGS" + LIBS="$save_LIBS" + CC="$save_CC" +else + PTHREAD_CC="$CC" +fi + + + + + +# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: +if test x"$acx_pthread_ok" = xyes; then + +$as_echo "#define HAVE_PTHREAD 1" >>confdefs.h + + : +else + acx_pthread_ok=no + if test "x$with_pthreads" != "xcheck"; then : + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "--with-pthreads was specified, but unable to be used +See \`config.log' for more details" "$LINENO" 5; } +fi +fi +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + + have_pthreads="$acx_pthread_ok" +fi + if test "x$have_pthreads" = "xyes"; then + HAVE_PTHREADS_TRUE= + HAVE_PTHREADS_FALSE='#' +else + HAVE_PTHREADS_TRUE='#' + HAVE_PTHREADS_FALSE= +fi + + + + +# TODO(chandlerc@google.com) Check for the necessary system headers. + +# TODO(chandlerc@google.com) Check the types, structures, and other compiler +# and architecture characteristics. + +# Output the generated files. No further autoconf macros may be used. +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + if test "x$cache_file" != "x/dev/null"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + if test ! -f "$cache_file" || test -h "$cache_file"; then + cat confcache >"$cache_file" + else + case $cache_file in #( + */* | ?:*) + mv -f confcache "$cache_file"$$ && + mv -f "$cache_file"$$ "$cache_file" ;; #( + *) + mv -f confcache "$cache_file" ;; + esac + fi + fi + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +U= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error $? "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${HAVE_PYTHON_TRUE}" && test -z "${HAVE_PYTHON_FALSE}"; then + as_fn_error $? "conditional \"HAVE_PYTHON\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${HAVE_PTHREADS_TRUE}" && test -z "${HAVE_PTHREADS_FALSE}"; then + as_fn_error $? "conditional \"HAVE_PTHREADS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: "${CONFIG_STATUS=./config.status}" +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' + fi +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in #( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by Google C++ Testing Framework $as_me 1.7.0, which was +generated by GNU Autoconf 2.68. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +Google C++ Testing Framework config.status 1.7.0 +configured by $0, generated by GNU Autoconf 2.68, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2010 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' +macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' +enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' +enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' +pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' +enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' +SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' +ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' +PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' +host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' +host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' +host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' +build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' +build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' +build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' +SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' +Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' +GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' +EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' +FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' +LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' +NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' +LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' +max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' +ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' +exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' +lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' +lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' +lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' +lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' +lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' +reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' +reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' +OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' +deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' +file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' +file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' +want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' +DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' +sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' +AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' +AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' +archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' +STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' +RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' +old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' +old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' +lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' +CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' +CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' +compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' +GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' +nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' +lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' +objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' +MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' +need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' +MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' +DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' +NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' +LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' +OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' +OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' +libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' +shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' +extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' +compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' +module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' +with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' +no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' +hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' +hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' +inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' +link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' +always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' +exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' +include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' +prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' +postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' +file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' +variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' +need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' +need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' +version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' +runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' +libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' +library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' +soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' +install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' +postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' +postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' +finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' +hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' +sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' +sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' +hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' +enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' +old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' +striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' +predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' +postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' +predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' +postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' +LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' +reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' +reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' +compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' +GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' +archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' +module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' +with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' +no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' +inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' +link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' +always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' +exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' +include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' +prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' +postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' +file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' +predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' +postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' +predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' +postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' + +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in SHELL \ +ECHO \ +PATH_SEPARATOR \ +SED \ +GREP \ +EGREP \ +FGREP \ +LD \ +NM \ +LN_S \ +lt_SP2NL \ +lt_NL2SP \ +reload_flag \ +OBJDUMP \ +deplibs_check_method \ +file_magic_cmd \ +file_magic_glob \ +want_nocaseglob \ +DLLTOOL \ +sharedlib_from_linklib_cmd \ +AR \ +AR_FLAGS \ +archiver_list_spec \ +STRIP \ +RANLIB \ +CC \ +CFLAGS \ +compiler \ +lt_cv_sys_global_symbol_pipe \ +lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_c_name_address \ +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +nm_file_list_spec \ +lt_prog_compiler_no_builtin_flag \ +lt_prog_compiler_pic \ +lt_prog_compiler_wl \ +lt_prog_compiler_static \ +lt_cv_prog_compiler_c_o \ +need_locks \ +MANIFEST_TOOL \ +DSYMUTIL \ +NMEDIT \ +LIPO \ +OTOOL \ +OTOOL64 \ +shrext_cmds \ +export_dynamic_flag_spec \ +whole_archive_flag_spec \ +compiler_needs_object \ +with_gnu_ld \ +allow_undefined_flag \ +no_undefined_flag \ +hardcode_libdir_flag_spec \ +hardcode_libdir_separator \ +exclude_expsyms \ +include_expsyms \ +file_list_spec \ +variables_saved_for_relink \ +libname_spec \ +library_names_spec \ +soname_spec \ +install_override_mode \ +finish_eval \ +old_striplib \ +striplib \ +compiler_lib_search_dirs \ +predep_objects \ +postdep_objects \ +predeps \ +postdeps \ +compiler_lib_search_path \ +LD_CXX \ +reload_flag_CXX \ +compiler_CXX \ +lt_prog_compiler_no_builtin_flag_CXX \ +lt_prog_compiler_pic_CXX \ +lt_prog_compiler_wl_CXX \ +lt_prog_compiler_static_CXX \ +lt_cv_prog_compiler_c_o_CXX \ +export_dynamic_flag_spec_CXX \ +whole_archive_flag_spec_CXX \ +compiler_needs_object_CXX \ +with_gnu_ld_CXX \ +allow_undefined_flag_CXX \ +no_undefined_flag_CXX \ +hardcode_libdir_flag_spec_CXX \ +hardcode_libdir_separator_CXX \ +exclude_expsyms_CXX \ +include_expsyms_CXX \ +file_list_spec_CXX \ +compiler_lib_search_dirs_CXX \ +predep_objects_CXX \ +postdep_objects_CXX \ +predeps_CXX \ +postdeps_CXX \ +compiler_lib_search_path_CXX; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds \ +old_postinstall_cmds \ +old_postuninstall_cmds \ +old_archive_cmds \ +extract_expsyms_cmds \ +old_archive_from_new_cmds \ +old_archive_from_expsyms_cmds \ +archive_cmds \ +archive_expsym_cmds \ +module_cmds \ +module_expsym_cmds \ +export_symbols_cmds \ +prelink_cmds \ +postlink_cmds \ +postinstall_cmds \ +postuninstall_cmds \ +finish_cmds \ +sys_lib_search_path_spec \ +sys_lib_dlsearch_path_spec \ +reload_cmds_CXX \ +old_archive_cmds_CXX \ +old_archive_from_new_cmds_CXX \ +old_archive_from_expsyms_cmds_CXX \ +archive_cmds_CXX \ +archive_expsym_cmds_CXX \ +module_cmds_CXX \ +module_expsym_cmds_CXX \ +export_symbols_cmds_CXX \ +prelink_cmds_CXX \ +postlink_cmds_CXX; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +ac_aux_dir='$ac_aux_dir' +xsi_shell='$xsi_shell' +lt_shell_append='$lt_shell_append' + +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile' + + + + + + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "build-aux/config.h") CONFIG_HEADERS="$CONFIG_HEADERS build-aux/config.h" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "scripts/gtest-config") CONFIG_FILES="$CONFIG_FILES scripts/gtest-config" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// +s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_tt=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_tt"; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "scripts/gtest-config":F) chmod +x scripts/gtest-config ;; + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +# The names of the tagged configurations supported by this script. +available_tags="CXX " + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and in which our libraries should be installed. +lt_sysroot=$lt_sysroot + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects +postdep_objects=$lt_postdep_objects +predeps=$lt_predeps +postdeps=$lt_postdeps + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path + +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain="$ac_aux_dir/ltmain.sh" + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + if test x"$xsi_shell" = xyes; then + sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ +func_dirname ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_basename ()$/,/^} # func_basename /c\ +func_basename ()\ +{\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ +func_dirname_and_basename ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ +func_stripname ()\ +{\ +\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ +\ # positional parameters, so assign one to ordinary parameter first.\ +\ func_stripname_result=${3}\ +\ func_stripname_result=${func_stripname_result#"${1}"}\ +\ func_stripname_result=${func_stripname_result%"${2}"}\ +} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ +func_split_long_opt ()\ +{\ +\ func_split_long_opt_name=${1%%=*}\ +\ func_split_long_opt_arg=${1#*=}\ +} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ +func_split_short_opt ()\ +{\ +\ func_split_short_opt_arg=${1#??}\ +\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ +} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ +func_lo2o ()\ +{\ +\ case ${1} in\ +\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ +\ *) func_lo2o_result=${1} ;;\ +\ esac\ +} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_xform ()$/,/^} # func_xform /c\ +func_xform ()\ +{\ + func_xform_result=${1%.*}.lo\ +} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_arith ()$/,/^} # func_arith /c\ +func_arith ()\ +{\ + func_arith_result=$(( $* ))\ +} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_len ()$/,/^} # func_len /c\ +func_len ()\ +{\ + func_len_result=${#1}\ +} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + +fi + +if test x"$lt_shell_append" = xyes; then + sed -e '/^func_append ()$/,/^} # func_append /c\ +func_append ()\ +{\ + eval "${1}+=\\${2}"\ +} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ +func_append_quoted ()\ +{\ +\ func_quote_for_eval "${2}"\ +\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ +} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 +$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} +fi + + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: CXX + +# The linker used to build libraries. +LD=$lt_LD_CXX + +# How to create reloadable object files. +reload_flag=$lt_reload_flag_CXX +reload_cmds=$lt_reload_cmds_CXX + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_CXX + +# A language specific compiler. +CC=$lt_compiler_CXX + +# Is the compiler the GNU compiler? +with_gcc=$GCC_CXX + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_CXX + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_CXX + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_CXX + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_CXX + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_CXX + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_CXX +archive_expsym_cmds=$lt_archive_expsym_cmds_CXX + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_CXX +module_expsym_cmds=$lt_module_expsym_cmds_CXX + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_CXX + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_CXX + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_CXX + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_CXX + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_CXX + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_CXX + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_CXX + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_CXX + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_CXX + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_CXX + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_CXX + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_CXX + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_CXX + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_CXX + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds_CXX + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_CXX + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_CXX + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_CXX +postdep_objects=$lt_postdep_objects_CXX +predeps=$lt_predeps_CXX +postdeps=$lt_postdeps_CXX + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_CXX + +# ### END LIBTOOL TAG CONFIG: CXX +_LT_EOF + + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit 1 +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + diff --git a/cpp/thirdparty/gtest-1.7.0/configure.ac b/cpp/thirdparty/gtest-1.7.0/configure.ac new file mode 100644 index 000000000..cc592e158 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/configure.ac @@ -0,0 +1,68 @@ +m4_include(m4/acx_pthread.m4) + +# At this point, the Xcode project assumes the version string will be three +# integers separated by periods and surrounded by square brackets (e.g. +# "[1.0.1]"). It also asumes that there won't be any closing parenthesis +# between "AC_INIT(" and the closing ")" including comments and strings. +AC_INIT([Google C++ Testing Framework], + [1.7.0], + [googletestframework@googlegroups.com], + [gtest]) + +# Provide various options to initialize the Autoconf and configure processes. +AC_PREREQ([2.59]) +AC_CONFIG_SRCDIR([./LICENSE]) +AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_HEADERS([build-aux/config.h]) +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([scripts/gtest-config], [chmod +x scripts/gtest-config]) + +# Initialize Automake with various options. We require at least v1.9, prevent +# pedantic complaints about package files, and enable various distribution +# targets. +AM_INIT_AUTOMAKE([1.9 dist-bzip2 dist-zip foreign subdir-objects]) + +# Check for programs used in building Google Test. +AC_PROG_CC +AC_PROG_CXX +AC_LANG([C++]) +AC_PROG_LIBTOOL + +# TODO(chandlerc@google.com): Currently we aren't running the Python tests +# against the interpreter detected by AM_PATH_PYTHON, and so we condition +# HAVE_PYTHON by requiring "python" to be in the PATH, and that interpreter's +# version to be >= 2.3. This will allow the scripts to use a "/usr/bin/env" +# hashbang. +PYTHON= # We *do not* allow the user to specify a python interpreter +AC_PATH_PROG([PYTHON],[python],[:]) +AS_IF([test "$PYTHON" != ":"], + [AM_PYTHON_CHECK_VERSION([$PYTHON],[2.3],[:],[PYTHON=":"])]) +AM_CONDITIONAL([HAVE_PYTHON],[test "$PYTHON" != ":"]) + +# Configure pthreads. +AC_ARG_WITH([pthreads], + [AS_HELP_STRING([--with-pthreads], + [use pthreads (default is yes)])], + [with_pthreads=$withval], + [with_pthreads=check]) + +have_pthreads=no +AS_IF([test "x$with_pthreads" != "xno"], + [ACX_PTHREAD( + [], + [AS_IF([test "x$with_pthreads" != "xcheck"], + [AC_MSG_FAILURE( + [--with-pthreads was specified, but unable to be used])])]) + have_pthreads="$acx_pthread_ok"]) +AM_CONDITIONAL([HAVE_PTHREADS],[test "x$have_pthreads" = "xyes"]) +AC_SUBST(PTHREAD_CFLAGS) +AC_SUBST(PTHREAD_LIBS) + +# TODO(chandlerc@google.com) Check for the necessary system headers. + +# TODO(chandlerc@google.com) Check the types, structures, and other compiler +# and architecture characteristics. + +# Output the generated files. No further autoconf macros may be used. +AC_OUTPUT diff --git a/cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest-all.cc b/cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest-all.cc new file mode 100644 index 000000000..a9a03b2e3 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest-all.cc @@ -0,0 +1,9592 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: mheule@google.com (Markus Heule) +// +// Google C++ Testing Framework (Google Test) +// +// Sometimes it's desirable to build Google Test by compiling a single file. +// This file serves this purpose. + +// This line ensures that gtest.h can be compiled on its own, even +// when it's fused. +#include "gtest/gtest.h" + +// The following lines pull in the real gtest *.cc files. +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// The Google C++ Testing Framework (Google Test) + +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Utilities for testing Google Test itself and code that uses Google Test +// (e.g. frameworks built on top of Google Test). + +#ifndef GTEST_INCLUDE_GTEST_GTEST_SPI_H_ +#define GTEST_INCLUDE_GTEST_GTEST_SPI_H_ + + +namespace testing { + +// This helper class can be used to mock out Google Test failure reporting +// so that we can test Google Test or code that builds on Google Test. +// +// An object of this class appends a TestPartResult object to the +// TestPartResultArray object given in the constructor whenever a Google Test +// failure is reported. It can either intercept only failures that are +// generated in the same thread that created this object or it can intercept +// all generated failures. The scope of this mock object can be controlled with +// the second argument to the two arguments constructor. +class GTEST_API_ ScopedFakeTestPartResultReporter + : public TestPartResultReporterInterface { + public: + // The two possible mocking modes of this object. + enum InterceptMode { + INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. + INTERCEPT_ALL_THREADS // Intercepts all failures. + }; + + // The c'tor sets this object as the test part result reporter used + // by Google Test. The 'result' parameter specifies where to report the + // results. This reporter will only catch failures generated in the current + // thread. DEPRECATED + explicit ScopedFakeTestPartResultReporter(TestPartResultArray* result); + + // Same as above, but you can choose the interception scope of this object. + ScopedFakeTestPartResultReporter(InterceptMode intercept_mode, + TestPartResultArray* result); + + // The d'tor restores the previous test part result reporter. + virtual ~ScopedFakeTestPartResultReporter(); + + // Appends the TestPartResult object to the TestPartResultArray + // received in the constructor. + // + // This method is from the TestPartResultReporterInterface + // interface. + virtual void ReportTestPartResult(const TestPartResult& result); + private: + void Init(); + + const InterceptMode intercept_mode_; + TestPartResultReporterInterface* old_reporter_; + TestPartResultArray* const result_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter); +}; + +namespace internal { + +// A helper class for implementing EXPECT_FATAL_FAILURE() and +// EXPECT_NONFATAL_FAILURE(). Its destructor verifies that the given +// TestPartResultArray contains exactly one failure that has the given +// type and contains the given substring. If that's not the case, a +// non-fatal failure will be generated. +class GTEST_API_ SingleFailureChecker { + public: + // The constructor remembers the arguments. + SingleFailureChecker(const TestPartResultArray* results, + TestPartResult::Type type, + const string& substr); + ~SingleFailureChecker(); + private: + const TestPartResultArray* const results_; + const TestPartResult::Type type_; + const string substr_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(SingleFailureChecker); +}; + +} // namespace internal + +} // namespace testing + +// A set of macros for testing Google Test assertions or code that's expected +// to generate Google Test fatal failures. It verifies that the given +// statement will cause exactly one fatal Google Test failure with 'substr' +// being part of the failure message. +// +// There are two different versions of this macro. EXPECT_FATAL_FAILURE only +// affects and considers failures generated in the current thread and +// EXPECT_FATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. +// +// The verification of the assertion is done correctly even when the statement +// throws an exception or aborts the current function. +// +// Known restrictions: +// - 'statement' cannot reference local non-static variables or +// non-static members of the current object. +// - 'statement' cannot return a value. +// - You cannot stream a failure message to this macro. +// +// Note that even though the implementations of the following two +// macros are much alike, we cannot refactor them to use a common +// helper macro, due to some peculiarity in how the preprocessor +// works. The AcceptsMacroThatExpandsToUnprotectedComma test in +// gtest_unittest.cc will fail to compile if we do that. +#define EXPECT_FATAL_FAILURE(statement, substr) \ + do { \ + class GTestExpectFatalFailureHelper {\ + public:\ + static void Execute() { statement; }\ + };\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter:: \ + INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ + GTestExpectFatalFailureHelper::Execute();\ + }\ + } while (::testing::internal::AlwaysFalse()) + +#define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ + do { \ + class GTestExpectFatalFailureHelper {\ + public:\ + static void Execute() { statement; }\ + };\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter:: \ + INTERCEPT_ALL_THREADS, >est_failures);\ + GTestExpectFatalFailureHelper::Execute();\ + }\ + } while (::testing::internal::AlwaysFalse()) + +// A macro for testing Google Test assertions or code that's expected to +// generate Google Test non-fatal failures. It asserts that the given +// statement will cause exactly one non-fatal Google Test failure with 'substr' +// being part of the failure message. +// +// There are two different versions of this macro. EXPECT_NONFATAL_FAILURE only +// affects and considers failures generated in the current thread and +// EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. +// +// 'statement' is allowed to reference local variables and members of +// the current object. +// +// The verification of the assertion is done correctly even when the statement +// throws an exception or aborts the current function. +// +// Known restrictions: +// - You cannot stream a failure message to this macro. +// +// Note that even though the implementations of the following two +// macros are much alike, we cannot refactor them to use a common +// helper macro, due to some peculiarity in how the preprocessor +// works. If we do that, the code won't compile when the user gives +// EXPECT_NONFATAL_FAILURE() a statement that contains a macro that +// expands to code containing an unprotected comma. The +// AcceptsMacroThatExpandsToUnprotectedComma test in gtest_unittest.cc +// catches that. +// +// For the same reason, we have to write +// if (::testing::internal::AlwaysTrue()) { statement; } +// instead of +// GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) +// to avoid an MSVC warning on unreachable code. +#define EXPECT_NONFATAL_FAILURE(statement, substr) \ + do {\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ + (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter:: \ + INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ + if (::testing::internal::AlwaysTrue()) { statement; }\ + }\ + } while (::testing::internal::AlwaysFalse()) + +#define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ + do {\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ + (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS, \ + >est_failures);\ + if (::testing::internal::AlwaysTrue()) { statement; }\ + }\ + } while (::testing::internal::AlwaysFalse()) + +#endif // GTEST_INCLUDE_GTEST_GTEST_SPI_H_ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include // NOLINT +#include +#include + +#if GTEST_OS_LINUX + +// TODO(kenton@google.com): Use autoconf to detect availability of +// gettimeofday(). +# define GTEST_HAS_GETTIMEOFDAY_ 1 + +# include // NOLINT +# include // NOLINT +# include // NOLINT +// Declares vsnprintf(). This header is not available on Windows. +# include // NOLINT +# include // NOLINT +# include // NOLINT +# include // NOLINT +# include + +#elif GTEST_OS_SYMBIAN +# define GTEST_HAS_GETTIMEOFDAY_ 1 +# include // NOLINT + +#elif GTEST_OS_ZOS +# define GTEST_HAS_GETTIMEOFDAY_ 1 +# include // NOLINT + +// On z/OS we additionally need strings.h for strcasecmp. +# include // NOLINT + +#elif GTEST_OS_WINDOWS_MOBILE // We are on Windows CE. + +# include // NOLINT + +#elif GTEST_OS_WINDOWS // We are on Windows proper. + +# include // NOLINT +# include // NOLINT +# include // NOLINT +# include // NOLINT + +# if GTEST_OS_WINDOWS_MINGW +// MinGW has gettimeofday() but not _ftime64(). +// TODO(kenton@google.com): Use autoconf to detect availability of +// gettimeofday(). +// TODO(kenton@google.com): There are other ways to get the time on +// Windows, like GetTickCount() or GetSystemTimeAsFileTime(). MinGW +// supports these. consider using them instead. +# define GTEST_HAS_GETTIMEOFDAY_ 1 +# include // NOLINT +# endif // GTEST_OS_WINDOWS_MINGW + +// cpplint thinks that the header is already included, so we want to +// silence it. +# include // NOLINT + +#else + +// Assume other platforms have gettimeofday(). +// TODO(kenton@google.com): Use autoconf to detect availability of +// gettimeofday(). +# define GTEST_HAS_GETTIMEOFDAY_ 1 + +// cpplint thinks that the header is already included, so we want to +// silence it. +# include // NOLINT +# include // NOLINT + +#endif // GTEST_OS_LINUX + +#if GTEST_HAS_EXCEPTIONS +# include +#endif + +#if GTEST_CAN_STREAM_RESULTS_ +# include // NOLINT +# include // NOLINT +#endif + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// Utility functions and classes used by the Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) +// +// This file contains purely Google Test's internal implementation. Please +// DO NOT #INCLUDE IT IN A USER PROGRAM. + +#ifndef GTEST_SRC_GTEST_INTERNAL_INL_H_ +#define GTEST_SRC_GTEST_INTERNAL_INL_H_ + +// GTEST_IMPLEMENTATION_ is defined to 1 iff the current translation unit is +// part of Google Test's implementation; otherwise it's undefined. +#if !GTEST_IMPLEMENTATION_ +// A user is trying to include this from his code - just say no. +# error "gtest-internal-inl.h is part of Google Test's internal implementation." +# error "It must not be included except by Google Test itself." +#endif // GTEST_IMPLEMENTATION_ + +#ifndef _WIN32_WCE +# include +#endif // !_WIN32_WCE +#include +#include // For strtoll/_strtoul64/malloc/free. +#include // For memmove. + +#include +#include +#include + + +#if GTEST_CAN_STREAM_RESULTS_ +# include // NOLINT +# include // NOLINT +#endif + +#if GTEST_OS_WINDOWS +# include // NOLINT +#endif // GTEST_OS_WINDOWS + + +namespace testing { + +// Declares the flags. +// +// We don't want the users to modify this flag in the code, but want +// Google Test's own unit tests to be able to access it. Therefore we +// declare it here as opposed to in gtest.h. +GTEST_DECLARE_bool_(death_test_use_fork); + +namespace internal { + +// The value of GetTestTypeId() as seen from within the Google Test +// library. This is solely for testing GetTestTypeId(). +GTEST_API_ extern const TypeId kTestTypeIdInGoogleTest; + +// Names of the flags (needed for parsing Google Test flags). +const char kAlsoRunDisabledTestsFlag[] = "also_run_disabled_tests"; +const char kBreakOnFailureFlag[] = "break_on_failure"; +const char kCatchExceptionsFlag[] = "catch_exceptions"; +const char kColorFlag[] = "color"; +const char kFilterFlag[] = "filter"; +const char kListTestsFlag[] = "list_tests"; +const char kOutputFlag[] = "output"; +const char kPrintTimeFlag[] = "print_time"; +const char kRandomSeedFlag[] = "random_seed"; +const char kRepeatFlag[] = "repeat"; +const char kShuffleFlag[] = "shuffle"; +const char kStackTraceDepthFlag[] = "stack_trace_depth"; +const char kStreamResultToFlag[] = "stream_result_to"; +const char kThrowOnFailureFlag[] = "throw_on_failure"; + +// A valid random seed must be in [1, kMaxRandomSeed]. +const int kMaxRandomSeed = 99999; + +// g_help_flag is true iff the --help flag or an equivalent form is +// specified on the command line. +GTEST_API_ extern bool g_help_flag; + +// Returns the current time in milliseconds. +GTEST_API_ TimeInMillis GetTimeInMillis(); + +// Returns true iff Google Test should use colors in the output. +GTEST_API_ bool ShouldUseColor(bool stdout_is_tty); + +// Formats the given time in milliseconds as seconds. +GTEST_API_ std::string FormatTimeInMillisAsSeconds(TimeInMillis ms); + +// Converts the given time in milliseconds to a date string in the ISO 8601 +// format, without the timezone information. N.B.: due to the use the +// non-reentrant localtime() function, this function is not thread safe. Do +// not use it in any code that can be called from multiple threads. +GTEST_API_ std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms); + +// Parses a string for an Int32 flag, in the form of "--flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +GTEST_API_ bool ParseInt32Flag( + const char* str, const char* flag, Int32* value); + +// Returns a random seed in range [1, kMaxRandomSeed] based on the +// given --gtest_random_seed flag value. +inline int GetRandomSeedFromFlag(Int32 random_seed_flag) { + const unsigned int raw_seed = (random_seed_flag == 0) ? + static_cast(GetTimeInMillis()) : + static_cast(random_seed_flag); + + // Normalizes the actual seed to range [1, kMaxRandomSeed] such that + // it's easy to type. + const int normalized_seed = + static_cast((raw_seed - 1U) % + static_cast(kMaxRandomSeed)) + 1; + return normalized_seed; +} + +// Returns the first valid random seed after 'seed'. The behavior is +// undefined if 'seed' is invalid. The seed after kMaxRandomSeed is +// considered to be 1. +inline int GetNextRandomSeed(int seed) { + GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed) + << "Invalid random seed " << seed << " - must be in [1, " + << kMaxRandomSeed << "]."; + const int next_seed = seed + 1; + return (next_seed > kMaxRandomSeed) ? 1 : next_seed; +} + +// This class saves the values of all Google Test flags in its c'tor, and +// restores them in its d'tor. +class GTestFlagSaver { + public: + // The c'tor. + GTestFlagSaver() { + also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests); + break_on_failure_ = GTEST_FLAG(break_on_failure); + catch_exceptions_ = GTEST_FLAG(catch_exceptions); + color_ = GTEST_FLAG(color); + death_test_style_ = GTEST_FLAG(death_test_style); + death_test_use_fork_ = GTEST_FLAG(death_test_use_fork); + filter_ = GTEST_FLAG(filter); + internal_run_death_test_ = GTEST_FLAG(internal_run_death_test); + list_tests_ = GTEST_FLAG(list_tests); + output_ = GTEST_FLAG(output); + print_time_ = GTEST_FLAG(print_time); + random_seed_ = GTEST_FLAG(random_seed); + repeat_ = GTEST_FLAG(repeat); + shuffle_ = GTEST_FLAG(shuffle); + stack_trace_depth_ = GTEST_FLAG(stack_trace_depth); + stream_result_to_ = GTEST_FLAG(stream_result_to); + throw_on_failure_ = GTEST_FLAG(throw_on_failure); + } + + // The d'tor is not virtual. DO NOT INHERIT FROM THIS CLASS. + ~GTestFlagSaver() { + GTEST_FLAG(also_run_disabled_tests) = also_run_disabled_tests_; + GTEST_FLAG(break_on_failure) = break_on_failure_; + GTEST_FLAG(catch_exceptions) = catch_exceptions_; + GTEST_FLAG(color) = color_; + GTEST_FLAG(death_test_style) = death_test_style_; + GTEST_FLAG(death_test_use_fork) = death_test_use_fork_; + GTEST_FLAG(filter) = filter_; + GTEST_FLAG(internal_run_death_test) = internal_run_death_test_; + GTEST_FLAG(list_tests) = list_tests_; + GTEST_FLAG(output) = output_; + GTEST_FLAG(print_time) = print_time_; + GTEST_FLAG(random_seed) = random_seed_; + GTEST_FLAG(repeat) = repeat_; + GTEST_FLAG(shuffle) = shuffle_; + GTEST_FLAG(stack_trace_depth) = stack_trace_depth_; + GTEST_FLAG(stream_result_to) = stream_result_to_; + GTEST_FLAG(throw_on_failure) = throw_on_failure_; + } + + private: + // Fields for saving the original values of flags. + bool also_run_disabled_tests_; + bool break_on_failure_; + bool catch_exceptions_; + std::string color_; + std::string death_test_style_; + bool death_test_use_fork_; + std::string filter_; + std::string internal_run_death_test_; + bool list_tests_; + std::string output_; + bool print_time_; + internal::Int32 random_seed_; + internal::Int32 repeat_; + bool shuffle_; + internal::Int32 stack_trace_depth_; + std::string stream_result_to_; + bool throw_on_failure_; +} GTEST_ATTRIBUTE_UNUSED_; + +// Converts a Unicode code point to a narrow string in UTF-8 encoding. +// code_point parameter is of type UInt32 because wchar_t may not be +// wide enough to contain a code point. +// If the code_point is not a valid Unicode code point +// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted +// to "(Invalid Unicode 0xXXXXXXXX)". +GTEST_API_ std::string CodePointToUtf8(UInt32 code_point); + +// Converts a wide string to a narrow string in UTF-8 encoding. +// The wide string is assumed to have the following encoding: +// UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) +// UTF-32 if sizeof(wchar_t) == 4 (on Linux) +// Parameter str points to a null-terminated wide string. +// Parameter num_chars may additionally limit the number +// of wchar_t characters processed. -1 is used when the entire string +// should be processed. +// If the string contains code points that are not valid Unicode code points +// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output +// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding +// and contains invalid UTF-16 surrogate pairs, values in those pairs +// will be encoded as individual Unicode characters from Basic Normal Plane. +GTEST_API_ std::string WideStringToUtf8(const wchar_t* str, int num_chars); + +// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file +// if the variable is present. If a file already exists at this location, this +// function will write over it. If the variable is present, but the file cannot +// be created, prints an error and exits. +void WriteToShardStatusFileIfNeeded(); + +// Checks whether sharding is enabled by examining the relevant +// environment variable values. If the variables are present, +// but inconsistent (e.g., shard_index >= total_shards), prints +// an error and exits. If in_subprocess_for_death_test, sharding is +// disabled because it must only be applied to the original test +// process. Otherwise, we could filter out death tests we intended to execute. +GTEST_API_ bool ShouldShard(const char* total_shards_str, + const char* shard_index_str, + bool in_subprocess_for_death_test); + +// Parses the environment variable var as an Int32. If it is unset, +// returns default_val. If it is not an Int32, prints an error and +// and aborts. +GTEST_API_ Int32 Int32FromEnvOrDie(const char* env_var, Int32 default_val); + +// Given the total number of shards, the shard index, and the test id, +// returns true iff the test should be run on this shard. The test id is +// some arbitrary but unique non-negative integer assigned to each test +// method. Assumes that 0 <= shard_index < total_shards. +GTEST_API_ bool ShouldRunTestOnShard( + int total_shards, int shard_index, int test_id); + +// STL container utilities. + +// Returns the number of elements in the given container that satisfy +// the given predicate. +template +inline int CountIf(const Container& c, Predicate predicate) { + // Implemented as an explicit loop since std::count_if() in libCstd on + // Solaris has a non-standard signature. + int count = 0; + for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { + if (predicate(*it)) + ++count; + } + return count; +} + +// Applies a function/functor to each element in the container. +template +void ForEach(const Container& c, Functor functor) { + std::for_each(c.begin(), c.end(), functor); +} + +// Returns the i-th element of the vector, or default_value if i is not +// in range [0, v.size()). +template +inline E GetElementOr(const std::vector& v, int i, E default_value) { + return (i < 0 || i >= static_cast(v.size())) ? default_value : v[i]; +} + +// Performs an in-place shuffle of a range of the vector's elements. +// 'begin' and 'end' are element indices as an STL-style range; +// i.e. [begin, end) are shuffled, where 'end' == size() means to +// shuffle to the end of the vector. +template +void ShuffleRange(internal::Random* random, int begin, int end, + std::vector* v) { + const int size = static_cast(v->size()); + GTEST_CHECK_(0 <= begin && begin <= size) + << "Invalid shuffle range start " << begin << ": must be in range [0, " + << size << "]."; + GTEST_CHECK_(begin <= end && end <= size) + << "Invalid shuffle range finish " << end << ": must be in range [" + << begin << ", " << size << "]."; + + // Fisher-Yates shuffle, from + // http://en.wikipedia.org/wiki/Fisher-Yates_shuffle + for (int range_width = end - begin; range_width >= 2; range_width--) { + const int last_in_range = begin + range_width - 1; + const int selected = begin + random->Generate(range_width); + std::swap((*v)[selected], (*v)[last_in_range]); + } +} + +// Performs an in-place shuffle of the vector's elements. +template +inline void Shuffle(internal::Random* random, std::vector* v) { + ShuffleRange(random, 0, static_cast(v->size()), v); +} + +// A function for deleting an object. Handy for being used as a +// functor. +template +static void Delete(T* x) { + delete x; +} + +// A predicate that checks the key of a TestProperty against a known key. +// +// TestPropertyKeyIs is copyable. +class TestPropertyKeyIs { + public: + // Constructor. + // + // TestPropertyKeyIs has NO default constructor. + explicit TestPropertyKeyIs(const std::string& key) : key_(key) {} + + // Returns true iff the test name of test property matches on key_. + bool operator()(const TestProperty& test_property) const { + return test_property.key() == key_; + } + + private: + std::string key_; +}; + +// Class UnitTestOptions. +// +// This class contains functions for processing options the user +// specifies when running the tests. It has only static members. +// +// In most cases, the user can specify an option using either an +// environment variable or a command line flag. E.g. you can set the +// test filter using either GTEST_FILTER or --gtest_filter. If both +// the variable and the flag are present, the latter overrides the +// former. +class GTEST_API_ UnitTestOptions { + public: + // Functions for processing the gtest_output flag. + + // Returns the output format, or "" for normal printed output. + static std::string GetOutputFormat(); + + // Returns the absolute path of the requested output file, or the + // default (test_detail.xml in the original working directory) if + // none was explicitly specified. + static std::string GetAbsolutePathToOutputFile(); + + // Functions for processing the gtest_filter flag. + + // Returns true iff the wildcard pattern matches the string. The + // first ':' or '\0' character in pattern marks the end of it. + // + // This recursive algorithm isn't very efficient, but is clear and + // works well enough for matching test names, which are short. + static bool PatternMatchesString(const char *pattern, const char *str); + + // Returns true iff the user-specified filter matches the test case + // name and the test name. + static bool FilterMatchesTest(const std::string &test_case_name, + const std::string &test_name); + +#if GTEST_OS_WINDOWS + // Function for supporting the gtest_catch_exception flag. + + // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the + // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. + // This function is useful as an __except condition. + static int GTestShouldProcessSEH(DWORD exception_code); +#endif // GTEST_OS_WINDOWS + + // Returns true if "name" matches the ':' separated list of glob-style + // filters in "filter". + static bool MatchesFilter(const std::string& name, const char* filter); +}; + +// Returns the current application's name, removing directory path if that +// is present. Used by UnitTestOptions::GetOutputFile. +GTEST_API_ FilePath GetCurrentExecutableName(); + +// The role interface for getting the OS stack trace as a string. +class OsStackTraceGetterInterface { + public: + OsStackTraceGetterInterface() {} + virtual ~OsStackTraceGetterInterface() {} + + // Returns the current OS stack trace as an std::string. Parameters: + // + // max_depth - the maximum number of stack frames to be included + // in the trace. + // skip_count - the number of top frames to be skipped; doesn't count + // against max_depth. + virtual string CurrentStackTrace(int max_depth, int skip_count) = 0; + + // UponLeavingGTest() should be called immediately before Google Test calls + // user code. It saves some information about the current stack that + // CurrentStackTrace() will use to find and hide Google Test stack frames. + virtual void UponLeavingGTest() = 0; + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetterInterface); +}; + +// A working implementation of the OsStackTraceGetterInterface interface. +class OsStackTraceGetter : public OsStackTraceGetterInterface { + public: + OsStackTraceGetter() : caller_frame_(NULL) {} + + virtual string CurrentStackTrace(int max_depth, int skip_count) + GTEST_LOCK_EXCLUDED_(mutex_); + + virtual void UponLeavingGTest() GTEST_LOCK_EXCLUDED_(mutex_); + + // This string is inserted in place of stack frames that are part of + // Google Test's implementation. + static const char* const kElidedFramesMarker; + + private: + Mutex mutex_; // protects all internal state + + // We save the stack frame below the frame that calls user code. + // We do this because the address of the frame immediately below + // the user code changes between the call to UponLeavingGTest() + // and any calls to CurrentStackTrace() from within the user code. + void* caller_frame_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetter); +}; + +// Information about a Google Test trace point. +struct TraceInfo { + const char* file; + int line; + std::string message; +}; + +// This is the default global test part result reporter used in UnitTestImpl. +// This class should only be used by UnitTestImpl. +class DefaultGlobalTestPartResultReporter + : public TestPartResultReporterInterface { + public: + explicit DefaultGlobalTestPartResultReporter(UnitTestImpl* unit_test); + // Implements the TestPartResultReporterInterface. Reports the test part + // result in the current test. + virtual void ReportTestPartResult(const TestPartResult& result); + + private: + UnitTestImpl* const unit_test_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultGlobalTestPartResultReporter); +}; + +// This is the default per thread test part result reporter used in +// UnitTestImpl. This class should only be used by UnitTestImpl. +class DefaultPerThreadTestPartResultReporter + : public TestPartResultReporterInterface { + public: + explicit DefaultPerThreadTestPartResultReporter(UnitTestImpl* unit_test); + // Implements the TestPartResultReporterInterface. The implementation just + // delegates to the current global test part result reporter of *unit_test_. + virtual void ReportTestPartResult(const TestPartResult& result); + + private: + UnitTestImpl* const unit_test_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultPerThreadTestPartResultReporter); +}; + +// The private implementation of the UnitTest class. We don't protect +// the methods under a mutex, as this class is not accessible by a +// user and the UnitTest class that delegates work to this class does +// proper locking. +class GTEST_API_ UnitTestImpl { + public: + explicit UnitTestImpl(UnitTest* parent); + virtual ~UnitTestImpl(); + + // There are two different ways to register your own TestPartResultReporter. + // You can register your own repoter to listen either only for test results + // from the current thread or for results from all threads. + // By default, each per-thread test result repoter just passes a new + // TestPartResult to the global test result reporter, which registers the + // test part result for the currently running test. + + // Returns the global test part result reporter. + TestPartResultReporterInterface* GetGlobalTestPartResultReporter(); + + // Sets the global test part result reporter. + void SetGlobalTestPartResultReporter( + TestPartResultReporterInterface* reporter); + + // Returns the test part result reporter for the current thread. + TestPartResultReporterInterface* GetTestPartResultReporterForCurrentThread(); + + // Sets the test part result reporter for the current thread. + void SetTestPartResultReporterForCurrentThread( + TestPartResultReporterInterface* reporter); + + // Gets the number of successful test cases. + int successful_test_case_count() const; + + // Gets the number of failed test cases. + int failed_test_case_count() const; + + // Gets the number of all test cases. + int total_test_case_count() const; + + // Gets the number of all test cases that contain at least one test + // that should run. + int test_case_to_run_count() const; + + // Gets the number of successful tests. + int successful_test_count() const; + + // Gets the number of failed tests. + int failed_test_count() const; + + // Gets the number of disabled tests that will be reported in the XML report. + int reportable_disabled_test_count() const; + + // Gets the number of disabled tests. + int disabled_test_count() const; + + // Gets the number of tests to be printed in the XML report. + int reportable_test_count() const; + + // Gets the number of all tests. + int total_test_count() const; + + // Gets the number of tests that should run. + int test_to_run_count() const; + + // Gets the time of the test program start, in ms from the start of the + // UNIX epoch. + TimeInMillis start_timestamp() const { return start_timestamp_; } + + // Gets the elapsed time, in milliseconds. + TimeInMillis elapsed_time() const { return elapsed_time_; } + + // Returns true iff the unit test passed (i.e. all test cases passed). + bool Passed() const { return !Failed(); } + + // Returns true iff the unit test failed (i.e. some test case failed + // or something outside of all tests failed). + bool Failed() const { + return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed(); + } + + // Gets the i-th test case among all the test cases. i can range from 0 to + // total_test_case_count() - 1. If i is not in that range, returns NULL. + const TestCase* GetTestCase(int i) const { + const int index = GetElementOr(test_case_indices_, i, -1); + return index < 0 ? NULL : test_cases_[i]; + } + + // Gets the i-th test case among all the test cases. i can range from 0 to + // total_test_case_count() - 1. If i is not in that range, returns NULL. + TestCase* GetMutableTestCase(int i) { + const int index = GetElementOr(test_case_indices_, i, -1); + return index < 0 ? NULL : test_cases_[index]; + } + + // Provides access to the event listener list. + TestEventListeners* listeners() { return &listeners_; } + + // Returns the TestResult for the test that's currently running, or + // the TestResult for the ad hoc test if no test is running. + TestResult* current_test_result(); + + // Returns the TestResult for the ad hoc test. + const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } + + // Sets the OS stack trace getter. + // + // Does nothing if the input and the current OS stack trace getter + // are the same; otherwise, deletes the old getter and makes the + // input the current getter. + void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter); + + // Returns the current OS stack trace getter if it is not NULL; + // otherwise, creates an OsStackTraceGetter, makes it the current + // getter, and returns it. + OsStackTraceGetterInterface* os_stack_trace_getter(); + + // Returns the current OS stack trace as an std::string. + // + // The maximum number of stack frames to be included is specified by + // the gtest_stack_trace_depth flag. The skip_count parameter + // specifies the number of top frames to be skipped, which doesn't + // count against the number of frames to be included. + // + // For example, if Foo() calls Bar(), which in turn calls + // CurrentOsStackTraceExceptTop(1), Foo() will be included in the + // trace but Bar() and CurrentOsStackTraceExceptTop() won't. + std::string CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_; + + // Finds and returns a TestCase with the given name. If one doesn't + // exist, creates one and returns it. + // + // Arguments: + // + // test_case_name: name of the test case + // type_param: the name of the test's type parameter, or NULL if + // this is not a typed or a type-parameterized test. + // set_up_tc: pointer to the function that sets up the test case + // tear_down_tc: pointer to the function that tears down the test case + TestCase* GetTestCase(const char* test_case_name, + const char* type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc); + + // Adds a TestInfo to the unit test. + // + // Arguments: + // + // set_up_tc: pointer to the function that sets up the test case + // tear_down_tc: pointer to the function that tears down the test case + // test_info: the TestInfo object + void AddTestInfo(Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc, + TestInfo* test_info) { + // In order to support thread-safe death tests, we need to + // remember the original working directory when the test program + // was first invoked. We cannot do this in RUN_ALL_TESTS(), as + // the user may have changed the current directory before calling + // RUN_ALL_TESTS(). Therefore we capture the current directory in + // AddTestInfo(), which is called to register a TEST or TEST_F + // before main() is reached. + if (original_working_dir_.IsEmpty()) { + original_working_dir_.Set(FilePath::GetCurrentDir()); + GTEST_CHECK_(!original_working_dir_.IsEmpty()) + << "Failed to get the current working directory."; + } + + GetTestCase(test_info->test_case_name(), + test_info->type_param(), + set_up_tc, + tear_down_tc)->AddTestInfo(test_info); + } + +#if GTEST_HAS_PARAM_TEST + // Returns ParameterizedTestCaseRegistry object used to keep track of + // value-parameterized tests and instantiate and register them. + internal::ParameterizedTestCaseRegistry& parameterized_test_registry() { + return parameterized_test_registry_; + } +#endif // GTEST_HAS_PARAM_TEST + + // Sets the TestCase object for the test that's currently running. + void set_current_test_case(TestCase* a_current_test_case) { + current_test_case_ = a_current_test_case; + } + + // Sets the TestInfo object for the test that's currently running. If + // current_test_info is NULL, the assertion results will be stored in + // ad_hoc_test_result_. + void set_current_test_info(TestInfo* a_current_test_info) { + current_test_info_ = a_current_test_info; + } + + // Registers all parameterized tests defined using TEST_P and + // INSTANTIATE_TEST_CASE_P, creating regular tests for each test/parameter + // combination. This method can be called more then once; it has guards + // protecting from registering the tests more then once. If + // value-parameterized tests are disabled, RegisterParameterizedTests is + // present but does nothing. + void RegisterParameterizedTests(); + + // Runs all tests in this UnitTest object, prints the result, and + // returns true if all tests are successful. If any exception is + // thrown during a test, this test is considered to be failed, but + // the rest of the tests will still be run. + bool RunAllTests(); + + // Clears the results of all tests, except the ad hoc tests. + void ClearNonAdHocTestResult() { + ForEach(test_cases_, TestCase::ClearTestCaseResult); + } + + // Clears the results of ad-hoc test assertions. + void ClearAdHocTestResult() { + ad_hoc_test_result_.Clear(); + } + + // Adds a TestProperty to the current TestResult object when invoked in a + // context of a test or a test case, or to the global property set. If the + // result already contains a property with the same key, the value will be + // updated. + void RecordProperty(const TestProperty& test_property); + + enum ReactionToSharding { + HONOR_SHARDING_PROTOCOL, + IGNORE_SHARDING_PROTOCOL + }; + + // Matches the full name of each test against the user-specified + // filter to decide whether the test should run, then records the + // result in each TestCase and TestInfo object. + // If shard_tests == HONOR_SHARDING_PROTOCOL, further filters tests + // based on sharding variables in the environment. + // Returns the number of tests that should run. + int FilterTests(ReactionToSharding shard_tests); + + // Prints the names of the tests matching the user-specified filter flag. + void ListTestsMatchingFilter(); + + const TestCase* current_test_case() const { return current_test_case_; } + TestInfo* current_test_info() { return current_test_info_; } + const TestInfo* current_test_info() const { return current_test_info_; } + + // Returns the vector of environments that need to be set-up/torn-down + // before/after the tests are run. + std::vector& environments() { return environments_; } + + // Getters for the per-thread Google Test trace stack. + std::vector& gtest_trace_stack() { + return *(gtest_trace_stack_.pointer()); + } + const std::vector& gtest_trace_stack() const { + return gtest_trace_stack_.get(); + } + +#if GTEST_HAS_DEATH_TEST + void InitDeathTestSubprocessControlInfo() { + internal_run_death_test_flag_.reset(ParseInternalRunDeathTestFlag()); + } + // Returns a pointer to the parsed --gtest_internal_run_death_test + // flag, or NULL if that flag was not specified. + // This information is useful only in a death test child process. + // Must not be called before a call to InitGoogleTest. + const InternalRunDeathTestFlag* internal_run_death_test_flag() const { + return internal_run_death_test_flag_.get(); + } + + // Returns a pointer to the current death test factory. + internal::DeathTestFactory* death_test_factory() { + return death_test_factory_.get(); + } + + void SuppressTestEventsIfInSubprocess(); + + friend class ReplaceDeathTestFactory; +#endif // GTEST_HAS_DEATH_TEST + + // Initializes the event listener performing XML output as specified by + // UnitTestOptions. Must not be called before InitGoogleTest. + void ConfigureXmlOutput(); + +#if GTEST_CAN_STREAM_RESULTS_ + // Initializes the event listener for streaming test results to a socket. + // Must not be called before InitGoogleTest. + void ConfigureStreamingOutput(); +#endif + + // Performs initialization dependent upon flag values obtained in + // ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to + // ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest + // this function is also called from RunAllTests. Since this function can be + // called more than once, it has to be idempotent. + void PostFlagParsingInit(); + + // Gets the random seed used at the start of the current test iteration. + int random_seed() const { return random_seed_; } + + // Gets the random number generator. + internal::Random* random() { return &random_; } + + // Shuffles all test cases, and the tests within each test case, + // making sure that death tests are still run first. + void ShuffleTests(); + + // Restores the test cases and tests to their order before the first shuffle. + void UnshuffleTests(); + + // Returns the value of GTEST_FLAG(catch_exceptions) at the moment + // UnitTest::Run() starts. + bool catch_exceptions() const { return catch_exceptions_; } + + private: + friend class ::testing::UnitTest; + + // Used by UnitTest::Run() to capture the state of + // GTEST_FLAG(catch_exceptions) at the moment it starts. + void set_catch_exceptions(bool value) { catch_exceptions_ = value; } + + // The UnitTest object that owns this implementation object. + UnitTest* const parent_; + + // The working directory when the first TEST() or TEST_F() was + // executed. + internal::FilePath original_working_dir_; + + // The default test part result reporters. + DefaultGlobalTestPartResultReporter default_global_test_part_result_reporter_; + DefaultPerThreadTestPartResultReporter + default_per_thread_test_part_result_reporter_; + + // Points to (but doesn't own) the global test part result reporter. + TestPartResultReporterInterface* global_test_part_result_repoter_; + + // Protects read and write access to global_test_part_result_reporter_. + internal::Mutex global_test_part_result_reporter_mutex_; + + // Points to (but doesn't own) the per-thread test part result reporter. + internal::ThreadLocal + per_thread_test_part_result_reporter_; + + // The vector of environments that need to be set-up/torn-down + // before/after the tests are run. + std::vector environments_; + + // The vector of TestCases in their original order. It owns the + // elements in the vector. + std::vector test_cases_; + + // Provides a level of indirection for the test case list to allow + // easy shuffling and restoring the test case order. The i-th + // element of this vector is the index of the i-th test case in the + // shuffled order. + std::vector test_case_indices_; + +#if GTEST_HAS_PARAM_TEST + // ParameterizedTestRegistry object used to register value-parameterized + // tests. + internal::ParameterizedTestCaseRegistry parameterized_test_registry_; + + // Indicates whether RegisterParameterizedTests() has been called already. + bool parameterized_tests_registered_; +#endif // GTEST_HAS_PARAM_TEST + + // Index of the last death test case registered. Initially -1. + int last_death_test_case_; + + // This points to the TestCase for the currently running test. It + // changes as Google Test goes through one test case after another. + // When no test is running, this is set to NULL and Google Test + // stores assertion results in ad_hoc_test_result_. Initially NULL. + TestCase* current_test_case_; + + // This points to the TestInfo for the currently running test. It + // changes as Google Test goes through one test after another. When + // no test is running, this is set to NULL and Google Test stores + // assertion results in ad_hoc_test_result_. Initially NULL. + TestInfo* current_test_info_; + + // Normally, a user only writes assertions inside a TEST or TEST_F, + // or inside a function called by a TEST or TEST_F. Since Google + // Test keeps track of which test is current running, it can + // associate such an assertion with the test it belongs to. + // + // If an assertion is encountered when no TEST or TEST_F is running, + // Google Test attributes the assertion result to an imaginary "ad hoc" + // test, and records the result in ad_hoc_test_result_. + TestResult ad_hoc_test_result_; + + // The list of event listeners that can be used to track events inside + // Google Test. + TestEventListeners listeners_; + + // The OS stack trace getter. Will be deleted when the UnitTest + // object is destructed. By default, an OsStackTraceGetter is used, + // but the user can set this field to use a custom getter if that is + // desired. + OsStackTraceGetterInterface* os_stack_trace_getter_; + + // True iff PostFlagParsingInit() has been called. + bool post_flag_parse_init_performed_; + + // The random number seed used at the beginning of the test run. + int random_seed_; + + // Our random number generator. + internal::Random random_; + + // The time of the test program start, in ms from the start of the + // UNIX epoch. + TimeInMillis start_timestamp_; + + // How long the test took to run, in milliseconds. + TimeInMillis elapsed_time_; + +#if GTEST_HAS_DEATH_TEST + // The decomposed components of the gtest_internal_run_death_test flag, + // parsed when RUN_ALL_TESTS is called. + internal::scoped_ptr internal_run_death_test_flag_; + internal::scoped_ptr death_test_factory_; +#endif // GTEST_HAS_DEATH_TEST + + // A per-thread stack of traces created by the SCOPED_TRACE() macro. + internal::ThreadLocal > gtest_trace_stack_; + + // The value of GTEST_FLAG(catch_exceptions) at the moment RunAllTests() + // starts. + bool catch_exceptions_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTestImpl); +}; // class UnitTestImpl + +// Convenience function for accessing the global UnitTest +// implementation object. +inline UnitTestImpl* GetUnitTestImpl() { + return UnitTest::GetInstance()->impl(); +} + +#if GTEST_USES_SIMPLE_RE + +// Internal helper functions for implementing the simple regular +// expression matcher. +GTEST_API_ bool IsInSet(char ch, const char* str); +GTEST_API_ bool IsAsciiDigit(char ch); +GTEST_API_ bool IsAsciiPunct(char ch); +GTEST_API_ bool IsRepeat(char ch); +GTEST_API_ bool IsAsciiWhiteSpace(char ch); +GTEST_API_ bool IsAsciiWordChar(char ch); +GTEST_API_ bool IsValidEscape(char ch); +GTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch); +GTEST_API_ bool ValidateRegex(const char* regex); +GTEST_API_ bool MatchRegexAtHead(const char* regex, const char* str); +GTEST_API_ bool MatchRepetitionAndRegexAtHead( + bool escaped, char ch, char repeat, const char* regex, const char* str); +GTEST_API_ bool MatchRegexAnywhere(const char* regex, const char* str); + +#endif // GTEST_USES_SIMPLE_RE + +// Parses the command line for Google Test flags, without initializing +// other parts of Google Test. +GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, char** argv); +GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv); + +#if GTEST_HAS_DEATH_TEST + +// Returns the message describing the last system error, regardless of the +// platform. +GTEST_API_ std::string GetLastErrnoDescription(); + +# if GTEST_OS_WINDOWS +// Provides leak-safe Windows kernel handle ownership. +class AutoHandle { + public: + AutoHandle() : handle_(INVALID_HANDLE_VALUE) {} + explicit AutoHandle(HANDLE handle) : handle_(handle) {} + + ~AutoHandle() { Reset(); } + + HANDLE Get() const { return handle_; } + void Reset() { Reset(INVALID_HANDLE_VALUE); } + void Reset(HANDLE handle) { + if (handle != handle_) { + if (handle_ != INVALID_HANDLE_VALUE) + ::CloseHandle(handle_); + handle_ = handle; + } + } + + private: + HANDLE handle_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle); +}; +# endif // GTEST_OS_WINDOWS + +// Attempts to parse a string into a positive integer pointed to by the +// number parameter. Returns true if that is possible. +// GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we can use +// it here. +template +bool ParseNaturalNumber(const ::std::string& str, Integer* number) { + // Fail fast if the given string does not begin with a digit; + // this bypasses strtoXXX's "optional leading whitespace and plus + // or minus sign" semantics, which are undesirable here. + if (str.empty() || !IsDigit(str[0])) { + return false; + } + errno = 0; + + char* end; + // BiggestConvertible is the largest integer type that system-provided + // string-to-number conversion routines can return. + +# if GTEST_OS_WINDOWS && !defined(__GNUC__) + + // MSVC and C++ Builder define __int64 instead of the standard long long. + typedef unsigned __int64 BiggestConvertible; + const BiggestConvertible parsed = _strtoui64(str.c_str(), &end, 10); + +# else + + typedef unsigned long long BiggestConvertible; // NOLINT + const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10); + +# endif // GTEST_OS_WINDOWS && !defined(__GNUC__) + + const bool parse_success = *end == '\0' && errno == 0; + + // TODO(vladl@google.com): Convert this to compile time assertion when it is + // available. + GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed)); + + const Integer result = static_cast(parsed); + if (parse_success && static_cast(result) == parsed) { + *number = result; + return true; + } + return false; +} +#endif // GTEST_HAS_DEATH_TEST + +// TestResult contains some private methods that should be hidden from +// Google Test user but are required for testing. This class allow our tests +// to access them. +// +// This class is supplied only for the purpose of testing Google Test's own +// constructs. Do not use it in user tests, either directly or indirectly. +class TestResultAccessor { + public: + static void RecordProperty(TestResult* test_result, + const std::string& xml_element, + const TestProperty& property) { + test_result->RecordProperty(xml_element, property); + } + + static void ClearTestPartResults(TestResult* test_result) { + test_result->ClearTestPartResults(); + } + + static const std::vector& test_part_results( + const TestResult& test_result) { + return test_result.test_part_results(); + } +}; + +#if GTEST_CAN_STREAM_RESULTS_ + +// Streams test results to the given port on the given host machine. +class StreamingListener : public EmptyTestEventListener { + public: + // Abstract base class for writing strings to a socket. + class AbstractSocketWriter { + public: + virtual ~AbstractSocketWriter() {} + + // Sends a string to the socket. + virtual void Send(const string& message) = 0; + + // Closes the socket. + virtual void CloseConnection() {} + + // Sends a string and a newline to the socket. + void SendLn(const string& message) { + Send(message + "\n"); + } + }; + + // Concrete class for actually writing strings to a socket. + class SocketWriter : public AbstractSocketWriter { + public: + SocketWriter(const string& host, const string& port) + : sockfd_(-1), host_name_(host), port_num_(port) { + MakeConnection(); + } + + virtual ~SocketWriter() { + if (sockfd_ != -1) + CloseConnection(); + } + + // Sends a string to the socket. + virtual void Send(const string& message) { + GTEST_CHECK_(sockfd_ != -1) + << "Send() can be called only when there is a connection."; + + const int len = static_cast(message.length()); + if (write(sockfd_, message.c_str(), len) != len) { + GTEST_LOG_(WARNING) + << "stream_result_to: failed to stream to " + << host_name_ << ":" << port_num_; + } + } + + private: + // Creates a client socket and connects to the server. + void MakeConnection(); + + // Closes the socket. + void CloseConnection() { + GTEST_CHECK_(sockfd_ != -1) + << "CloseConnection() can be called only when there is a connection."; + + close(sockfd_); + sockfd_ = -1; + } + + int sockfd_; // socket file descriptor + const string host_name_; + const string port_num_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(SocketWriter); + }; // class SocketWriter + + // Escapes '=', '&', '%', and '\n' characters in str as "%xx". + static string UrlEncode(const char* str); + + StreamingListener(const string& host, const string& port) + : socket_writer_(new SocketWriter(host, port)) { Start(); } + + explicit StreamingListener(AbstractSocketWriter* socket_writer) + : socket_writer_(socket_writer) { Start(); } + + void OnTestProgramStart(const UnitTest& /* unit_test */) { + SendLn("event=TestProgramStart"); + } + + void OnTestProgramEnd(const UnitTest& unit_test) { + // Note that Google Test current only report elapsed time for each + // test iteration, not for the entire test program. + SendLn("event=TestProgramEnd&passed=" + FormatBool(unit_test.Passed())); + + // Notify the streaming server to stop. + socket_writer_->CloseConnection(); + } + + void OnTestIterationStart(const UnitTest& /* unit_test */, int iteration) { + SendLn("event=TestIterationStart&iteration=" + + StreamableToString(iteration)); + } + + void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration */) { + SendLn("event=TestIterationEnd&passed=" + + FormatBool(unit_test.Passed()) + "&elapsed_time=" + + StreamableToString(unit_test.elapsed_time()) + "ms"); + } + + void OnTestCaseStart(const TestCase& test_case) { + SendLn(std::string("event=TestCaseStart&name=") + test_case.name()); + } + + void OnTestCaseEnd(const TestCase& test_case) { + SendLn("event=TestCaseEnd&passed=" + FormatBool(test_case.Passed()) + + "&elapsed_time=" + StreamableToString(test_case.elapsed_time()) + + "ms"); + } + + void OnTestStart(const TestInfo& test_info) { + SendLn(std::string("event=TestStart&name=") + test_info.name()); + } + + void OnTestEnd(const TestInfo& test_info) { + SendLn("event=TestEnd&passed=" + + FormatBool((test_info.result())->Passed()) + + "&elapsed_time=" + + StreamableToString((test_info.result())->elapsed_time()) + "ms"); + } + + void OnTestPartResult(const TestPartResult& test_part_result) { + const char* file_name = test_part_result.file_name(); + if (file_name == NULL) + file_name = ""; + SendLn("event=TestPartResult&file=" + UrlEncode(file_name) + + "&line=" + StreamableToString(test_part_result.line_number()) + + "&message=" + UrlEncode(test_part_result.message())); + } + + private: + // Sends the given message and a newline to the socket. + void SendLn(const string& message) { socket_writer_->SendLn(message); } + + // Called at the start of streaming to notify the receiver what + // protocol we are using. + void Start() { SendLn("gtest_streaming_protocol_version=1.0"); } + + string FormatBool(bool value) { return value ? "1" : "0"; } + + const scoped_ptr socket_writer_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamingListener); +}; // class StreamingListener + +#endif // GTEST_CAN_STREAM_RESULTS_ + +} // namespace internal +} // namespace testing + +#endif // GTEST_SRC_GTEST_INTERNAL_INL_H_ +#undef GTEST_IMPLEMENTATION_ + +#if GTEST_OS_WINDOWS +# define vsnprintf _vsnprintf +#endif // GTEST_OS_WINDOWS + +namespace testing { + +using internal::CountIf; +using internal::ForEach; +using internal::GetElementOr; +using internal::Shuffle; + +// Constants. + +// A test whose test case name or test name matches this filter is +// disabled and not run. +static const char kDisableTestFilter[] = "DISABLED_*:*/DISABLED_*"; + +// A test case whose name matches this filter is considered a death +// test case and will be run before test cases whose name doesn't +// match this filter. +static const char kDeathTestCaseFilter[] = "*DeathTest:*DeathTest/*"; + +// A test filter that matches everything. +static const char kUniversalFilter[] = "*"; + +// The default output file for XML output. +static const char kDefaultOutputFile[] = "test_detail.xml"; + +// The environment variable name for the test shard index. +static const char kTestShardIndex[] = "GTEST_SHARD_INDEX"; +// The environment variable name for the total number of test shards. +static const char kTestTotalShards[] = "GTEST_TOTAL_SHARDS"; +// The environment variable name for the test shard status file. +static const char kTestShardStatusFile[] = "GTEST_SHARD_STATUS_FILE"; + +namespace internal { + +// The text used in failure messages to indicate the start of the +// stack trace. +const char kStackTraceMarker[] = "\nStack trace:\n"; + +// g_help_flag is true iff the --help flag or an equivalent form is +// specified on the command line. +bool g_help_flag = false; + +} // namespace internal + +static const char* GetDefaultFilter() { + return kUniversalFilter; +} + +GTEST_DEFINE_bool_( + also_run_disabled_tests, + internal::BoolFromGTestEnv("also_run_disabled_tests", false), + "Run disabled tests too, in addition to the tests normally being run."); + +GTEST_DEFINE_bool_( + break_on_failure, + internal::BoolFromGTestEnv("break_on_failure", false), + "True iff a failed assertion should be a debugger break-point."); + +GTEST_DEFINE_bool_( + catch_exceptions, + internal::BoolFromGTestEnv("catch_exceptions", true), + "True iff " GTEST_NAME_ + " should catch exceptions and treat them as test failures."); + +GTEST_DEFINE_string_( + color, + internal::StringFromGTestEnv("color", "auto"), + "Whether to use colors in the output. Valid values: yes, no, " + "and auto. 'auto' means to use colors if the output is " + "being sent to a terminal and the TERM environment variable " + "is set to a terminal type that supports colors."); + +GTEST_DEFINE_string_( + filter, + internal::StringFromGTestEnv("filter", GetDefaultFilter()), + "A colon-separated list of glob (not regex) patterns " + "for filtering the tests to run, optionally followed by a " + "'-' and a : separated list of negative patterns (tests to " + "exclude). A test is run if it matches one of the positive " + "patterns and does not match any of the negative patterns."); + +GTEST_DEFINE_bool_(list_tests, false, + "List all tests without running them."); + +GTEST_DEFINE_string_( + output, + internal::StringFromGTestEnv("output", ""), + "A format (currently must be \"xml\"), optionally followed " + "by a colon and an output file name or directory. A directory " + "is indicated by a trailing pathname separator. " + "Examples: \"xml:filename.xml\", \"xml::directoryname/\". " + "If a directory is specified, output files will be created " + "within that directory, with file-names based on the test " + "executable's name and, if necessary, made unique by adding " + "digits."); + +GTEST_DEFINE_bool_( + print_time, + internal::BoolFromGTestEnv("print_time", true), + "True iff " GTEST_NAME_ + " should display elapsed time in text output."); + +GTEST_DEFINE_int32_( + random_seed, + internal::Int32FromGTestEnv("random_seed", 0), + "Random number seed to use when shuffling test orders. Must be in range " + "[1, 99999], or 0 to use a seed based on the current time."); + +GTEST_DEFINE_int32_( + repeat, + internal::Int32FromGTestEnv("repeat", 1), + "How many times to repeat each test. Specify a negative number " + "for repeating forever. Useful for shaking out flaky tests."); + +GTEST_DEFINE_bool_( + show_internal_stack_frames, false, + "True iff " GTEST_NAME_ " should include internal stack frames when " + "printing test failure stack traces."); + +GTEST_DEFINE_bool_( + shuffle, + internal::BoolFromGTestEnv("shuffle", false), + "True iff " GTEST_NAME_ + " should randomize tests' order on every run."); + +GTEST_DEFINE_int32_( + stack_trace_depth, + internal::Int32FromGTestEnv("stack_trace_depth", kMaxStackTraceDepth), + "The maximum number of stack frames to print when an " + "assertion fails. The valid range is 0 through 100, inclusive."); + +GTEST_DEFINE_string_( + stream_result_to, + internal::StringFromGTestEnv("stream_result_to", ""), + "This flag specifies the host name and the port number on which to stream " + "test results. Example: \"localhost:555\". The flag is effective only on " + "Linux."); + +GTEST_DEFINE_bool_( + throw_on_failure, + internal::BoolFromGTestEnv("throw_on_failure", false), + "When this flag is specified, a failed assertion will throw an exception " + "if exceptions are enabled or exit the program with a non-zero code " + "otherwise."); + +namespace internal { + +// Generates a random number from [0, range), using a Linear +// Congruential Generator (LCG). Crashes if 'range' is 0 or greater +// than kMaxRange. +UInt32 Random::Generate(UInt32 range) { + // These constants are the same as are used in glibc's rand(3). + state_ = (1103515245U*state_ + 12345U) % kMaxRange; + + GTEST_CHECK_(range > 0) + << "Cannot generate a number in the range [0, 0)."; + GTEST_CHECK_(range <= kMaxRange) + << "Generation of a number in [0, " << range << ") was requested, " + << "but this can only generate numbers in [0, " << kMaxRange << ")."; + + // Converting via modulus introduces a bit of downward bias, but + // it's simple, and a linear congruential generator isn't too good + // to begin with. + return state_ % range; +} + +// GTestIsInitialized() returns true iff the user has initialized +// Google Test. Useful for catching the user mistake of not initializing +// Google Test before calling RUN_ALL_TESTS(). +// +// A user must call testing::InitGoogleTest() to initialize Google +// Test. g_init_gtest_count is set to the number of times +// InitGoogleTest() has been called. We don't protect this variable +// under a mutex as it is only accessed in the main thread. +GTEST_API_ int g_init_gtest_count = 0; +static bool GTestIsInitialized() { return g_init_gtest_count != 0; } + +// Iterates over a vector of TestCases, keeping a running sum of the +// results of calling a given int-returning method on each. +// Returns the sum. +static int SumOverTestCaseList(const std::vector& case_list, + int (TestCase::*method)() const) { + int sum = 0; + for (size_t i = 0; i < case_list.size(); i++) { + sum += (case_list[i]->*method)(); + } + return sum; +} + +// Returns true iff the test case passed. +static bool TestCasePassed(const TestCase* test_case) { + return test_case->should_run() && test_case->Passed(); +} + +// Returns true iff the test case failed. +static bool TestCaseFailed(const TestCase* test_case) { + return test_case->should_run() && test_case->Failed(); +} + +// Returns true iff test_case contains at least one test that should +// run. +static bool ShouldRunTestCase(const TestCase* test_case) { + return test_case->should_run(); +} + +// AssertHelper constructor. +AssertHelper::AssertHelper(TestPartResult::Type type, + const char* file, + int line, + const char* message) + : data_(new AssertHelperData(type, file, line, message)) { +} + +AssertHelper::~AssertHelper() { + delete data_; +} + +// Message assignment, for assertion streaming support. +void AssertHelper::operator=(const Message& message) const { + UnitTest::GetInstance()-> + AddTestPartResult(data_->type, data_->file, data_->line, + AppendUserMessage(data_->message, message), + UnitTest::GetInstance()->impl() + ->CurrentOsStackTraceExceptTop(1) + // Skips the stack frame for this function itself. + ); // NOLINT +} + +// Mutex for linked pointers. +GTEST_API_ GTEST_DEFINE_STATIC_MUTEX_(g_linked_ptr_mutex); + +// Application pathname gotten in InitGoogleTest. +std::string g_executable_path; + +// Returns the current application's name, removing directory path if that +// is present. +FilePath GetCurrentExecutableName() { + FilePath result; + +#if GTEST_OS_WINDOWS + result.Set(FilePath(g_executable_path).RemoveExtension("exe")); +#else + result.Set(FilePath(g_executable_path)); +#endif // GTEST_OS_WINDOWS + + return result.RemoveDirectoryName(); +} + +// Functions for processing the gtest_output flag. + +// Returns the output format, or "" for normal printed output. +std::string UnitTestOptions::GetOutputFormat() { + const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); + if (gtest_output_flag == NULL) return std::string(""); + + const char* const colon = strchr(gtest_output_flag, ':'); + return (colon == NULL) ? + std::string(gtest_output_flag) : + std::string(gtest_output_flag, colon - gtest_output_flag); +} + +// Returns the name of the requested output file, or the default if none +// was explicitly specified. +std::string UnitTestOptions::GetAbsolutePathToOutputFile() { + const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); + if (gtest_output_flag == NULL) + return ""; + + const char* const colon = strchr(gtest_output_flag, ':'); + if (colon == NULL) + return internal::FilePath::ConcatPaths( + internal::FilePath( + UnitTest::GetInstance()->original_working_dir()), + internal::FilePath(kDefaultOutputFile)).string(); + + internal::FilePath output_name(colon + 1); + if (!output_name.IsAbsolutePath()) + // TODO(wan@google.com): on Windows \some\path is not an absolute + // path (as its meaning depends on the current drive), yet the + // following logic for turning it into an absolute path is wrong. + // Fix it. + output_name = internal::FilePath::ConcatPaths( + internal::FilePath(UnitTest::GetInstance()->original_working_dir()), + internal::FilePath(colon + 1)); + + if (!output_name.IsDirectory()) + return output_name.string(); + + internal::FilePath result(internal::FilePath::GenerateUniqueFileName( + output_name, internal::GetCurrentExecutableName(), + GetOutputFormat().c_str())); + return result.string(); +} + +// Returns true iff the wildcard pattern matches the string. The +// first ':' or '\0' character in pattern marks the end of it. +// +// This recursive algorithm isn't very efficient, but is clear and +// works well enough for matching test names, which are short. +bool UnitTestOptions::PatternMatchesString(const char *pattern, + const char *str) { + switch (*pattern) { + case '\0': + case ':': // Either ':' or '\0' marks the end of the pattern. + return *str == '\0'; + case '?': // Matches any single character. + return *str != '\0' && PatternMatchesString(pattern + 1, str + 1); + case '*': // Matches any string (possibly empty) of characters. + return (*str != '\0' && PatternMatchesString(pattern, str + 1)) || + PatternMatchesString(pattern + 1, str); + default: // Non-special character. Matches itself. + return *pattern == *str && + PatternMatchesString(pattern + 1, str + 1); + } +} + +bool UnitTestOptions::MatchesFilter( + const std::string& name, const char* filter) { + const char *cur_pattern = filter; + for (;;) { + if (PatternMatchesString(cur_pattern, name.c_str())) { + return true; + } + + // Finds the next pattern in the filter. + cur_pattern = strchr(cur_pattern, ':'); + + // Returns if no more pattern can be found. + if (cur_pattern == NULL) { + return false; + } + + // Skips the pattern separater (the ':' character). + cur_pattern++; + } +} + +// Returns true iff the user-specified filter matches the test case +// name and the test name. +bool UnitTestOptions::FilterMatchesTest(const std::string &test_case_name, + const std::string &test_name) { + const std::string& full_name = test_case_name + "." + test_name.c_str(); + + // Split --gtest_filter at '-', if there is one, to separate into + // positive filter and negative filter portions + const char* const p = GTEST_FLAG(filter).c_str(); + const char* const dash = strchr(p, '-'); + std::string positive; + std::string negative; + if (dash == NULL) { + positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter + negative = ""; + } else { + positive = std::string(p, dash); // Everything up to the dash + negative = std::string(dash + 1); // Everything after the dash + if (positive.empty()) { + // Treat '-test1' as the same as '*-test1' + positive = kUniversalFilter; + } + } + + // A filter is a colon-separated list of patterns. It matches a + // test if any pattern in it matches the test. + return (MatchesFilter(full_name, positive.c_str()) && + !MatchesFilter(full_name, negative.c_str())); +} + +#if GTEST_HAS_SEH +// Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the +// given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. +// This function is useful as an __except condition. +int UnitTestOptions::GTestShouldProcessSEH(DWORD exception_code) { + // Google Test should handle a SEH exception if: + // 1. the user wants it to, AND + // 2. this is not a breakpoint exception, AND + // 3. this is not a C++ exception (VC++ implements them via SEH, + // apparently). + // + // SEH exception code for C++ exceptions. + // (see http://support.microsoft.com/kb/185294 for more information). + const DWORD kCxxExceptionCode = 0xe06d7363; + + bool should_handle = true; + + if (!GTEST_FLAG(catch_exceptions)) + should_handle = false; + else if (exception_code == EXCEPTION_BREAKPOINT) + should_handle = false; + else if (exception_code == kCxxExceptionCode) + should_handle = false; + + return should_handle ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH; +} +#endif // GTEST_HAS_SEH + +} // namespace internal + +// The c'tor sets this object as the test part result reporter used by +// Google Test. The 'result' parameter specifies where to report the +// results. Intercepts only failures from the current thread. +ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( + TestPartResultArray* result) + : intercept_mode_(INTERCEPT_ONLY_CURRENT_THREAD), + result_(result) { + Init(); +} + +// The c'tor sets this object as the test part result reporter used by +// Google Test. The 'result' parameter specifies where to report the +// results. +ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( + InterceptMode intercept_mode, TestPartResultArray* result) + : intercept_mode_(intercept_mode), + result_(result) { + Init(); +} + +void ScopedFakeTestPartResultReporter::Init() { + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + if (intercept_mode_ == INTERCEPT_ALL_THREADS) { + old_reporter_ = impl->GetGlobalTestPartResultReporter(); + impl->SetGlobalTestPartResultReporter(this); + } else { + old_reporter_ = impl->GetTestPartResultReporterForCurrentThread(); + impl->SetTestPartResultReporterForCurrentThread(this); + } +} + +// The d'tor restores the test part result reporter used by Google Test +// before. +ScopedFakeTestPartResultReporter::~ScopedFakeTestPartResultReporter() { + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + if (intercept_mode_ == INTERCEPT_ALL_THREADS) { + impl->SetGlobalTestPartResultReporter(old_reporter_); + } else { + impl->SetTestPartResultReporterForCurrentThread(old_reporter_); + } +} + +// Increments the test part result count and remembers the result. +// This method is from the TestPartResultReporterInterface interface. +void ScopedFakeTestPartResultReporter::ReportTestPartResult( + const TestPartResult& result) { + result_->Append(result); +} + +namespace internal { + +// Returns the type ID of ::testing::Test. We should always call this +// instead of GetTypeId< ::testing::Test>() to get the type ID of +// testing::Test. This is to work around a suspected linker bug when +// using Google Test as a framework on Mac OS X. The bug causes +// GetTypeId< ::testing::Test>() to return different values depending +// on whether the call is from the Google Test framework itself or +// from user test code. GetTestTypeId() is guaranteed to always +// return the same value, as it always calls GetTypeId<>() from the +// gtest.cc, which is within the Google Test framework. +TypeId GetTestTypeId() { + return GetTypeId(); +} + +// The value of GetTestTypeId() as seen from within the Google Test +// library. This is solely for testing GetTestTypeId(). +extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId(); + +// This predicate-formatter checks that 'results' contains a test part +// failure of the given type and that the failure message contains the +// given substring. +AssertionResult HasOneFailure(const char* /* results_expr */, + const char* /* type_expr */, + const char* /* substr_expr */, + const TestPartResultArray& results, + TestPartResult::Type type, + const string& substr) { + const std::string expected(type == TestPartResult::kFatalFailure ? + "1 fatal failure" : + "1 non-fatal failure"); + Message msg; + if (results.size() != 1) { + msg << "Expected: " << expected << "\n" + << " Actual: " << results.size() << " failures"; + for (int i = 0; i < results.size(); i++) { + msg << "\n" << results.GetTestPartResult(i); + } + return AssertionFailure() << msg; + } + + const TestPartResult& r = results.GetTestPartResult(0); + if (r.type() != type) { + return AssertionFailure() << "Expected: " << expected << "\n" + << " Actual:\n" + << r; + } + + if (strstr(r.message(), substr.c_str()) == NULL) { + return AssertionFailure() << "Expected: " << expected << " containing \"" + << substr << "\"\n" + << " Actual:\n" + << r; + } + + return AssertionSuccess(); +} + +// The constructor of SingleFailureChecker remembers where to look up +// test part results, what type of failure we expect, and what +// substring the failure message should contain. +SingleFailureChecker:: SingleFailureChecker( + const TestPartResultArray* results, + TestPartResult::Type type, + const string& substr) + : results_(results), + type_(type), + substr_(substr) {} + +// The destructor of SingleFailureChecker verifies that the given +// TestPartResultArray contains exactly one failure that has the given +// type and contains the given substring. If that's not the case, a +// non-fatal failure will be generated. +SingleFailureChecker::~SingleFailureChecker() { + EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_); +} + +DefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter( + UnitTestImpl* unit_test) : unit_test_(unit_test) {} + +void DefaultGlobalTestPartResultReporter::ReportTestPartResult( + const TestPartResult& result) { + unit_test_->current_test_result()->AddTestPartResult(result); + unit_test_->listeners()->repeater()->OnTestPartResult(result); +} + +DefaultPerThreadTestPartResultReporter::DefaultPerThreadTestPartResultReporter( + UnitTestImpl* unit_test) : unit_test_(unit_test) {} + +void DefaultPerThreadTestPartResultReporter::ReportTestPartResult( + const TestPartResult& result) { + unit_test_->GetGlobalTestPartResultReporter()->ReportTestPartResult(result); +} + +// Returns the global test part result reporter. +TestPartResultReporterInterface* +UnitTestImpl::GetGlobalTestPartResultReporter() { + internal::MutexLock lock(&global_test_part_result_reporter_mutex_); + return global_test_part_result_repoter_; +} + +// Sets the global test part result reporter. +void UnitTestImpl::SetGlobalTestPartResultReporter( + TestPartResultReporterInterface* reporter) { + internal::MutexLock lock(&global_test_part_result_reporter_mutex_); + global_test_part_result_repoter_ = reporter; +} + +// Returns the test part result reporter for the current thread. +TestPartResultReporterInterface* +UnitTestImpl::GetTestPartResultReporterForCurrentThread() { + return per_thread_test_part_result_reporter_.get(); +} + +// Sets the test part result reporter for the current thread. +void UnitTestImpl::SetTestPartResultReporterForCurrentThread( + TestPartResultReporterInterface* reporter) { + per_thread_test_part_result_reporter_.set(reporter); +} + +// Gets the number of successful test cases. +int UnitTestImpl::successful_test_case_count() const { + return CountIf(test_cases_, TestCasePassed); +} + +// Gets the number of failed test cases. +int UnitTestImpl::failed_test_case_count() const { + return CountIf(test_cases_, TestCaseFailed); +} + +// Gets the number of all test cases. +int UnitTestImpl::total_test_case_count() const { + return static_cast(test_cases_.size()); +} + +// Gets the number of all test cases that contain at least one test +// that should run. +int UnitTestImpl::test_case_to_run_count() const { + return CountIf(test_cases_, ShouldRunTestCase); +} + +// Gets the number of successful tests. +int UnitTestImpl::successful_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count); +} + +// Gets the number of failed tests. +int UnitTestImpl::failed_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count); +} + +// Gets the number of disabled tests that will be reported in the XML report. +int UnitTestImpl::reportable_disabled_test_count() const { + return SumOverTestCaseList(test_cases_, + &TestCase::reportable_disabled_test_count); +} + +// Gets the number of disabled tests. +int UnitTestImpl::disabled_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count); +} + +// Gets the number of tests to be printed in the XML report. +int UnitTestImpl::reportable_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::reportable_test_count); +} + +// Gets the number of all tests. +int UnitTestImpl::total_test_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::total_test_count); +} + +// Gets the number of tests that should run. +int UnitTestImpl::test_to_run_count() const { + return SumOverTestCaseList(test_cases_, &TestCase::test_to_run_count); +} + +// Returns the current OS stack trace as an std::string. +// +// The maximum number of stack frames to be included is specified by +// the gtest_stack_trace_depth flag. The skip_count parameter +// specifies the number of top frames to be skipped, which doesn't +// count against the number of frames to be included. +// +// For example, if Foo() calls Bar(), which in turn calls +// CurrentOsStackTraceExceptTop(1), Foo() will be included in the +// trace but Bar() and CurrentOsStackTraceExceptTop() won't. +std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { + (void)skip_count; + return ""; +} + +// Returns the current time in milliseconds. +TimeInMillis GetTimeInMillis() { +#if GTEST_OS_WINDOWS_MOBILE || defined(__BORLANDC__) + // Difference between 1970-01-01 and 1601-01-01 in milliseconds. + // http://analogous.blogspot.com/2005/04/epoch.html + const TimeInMillis kJavaEpochToWinFileTimeDelta = + static_cast(116444736UL) * 100000UL; + const DWORD kTenthMicrosInMilliSecond = 10000; + + SYSTEMTIME now_systime; + FILETIME now_filetime; + ULARGE_INTEGER now_int64; + // TODO(kenton@google.com): Shouldn't this just use + // GetSystemTimeAsFileTime()? + GetSystemTime(&now_systime); + if (SystemTimeToFileTime(&now_systime, &now_filetime)) { + now_int64.LowPart = now_filetime.dwLowDateTime; + now_int64.HighPart = now_filetime.dwHighDateTime; + now_int64.QuadPart = (now_int64.QuadPart / kTenthMicrosInMilliSecond) - + kJavaEpochToWinFileTimeDelta; + return now_int64.QuadPart; + } + return 0; +#elif GTEST_OS_WINDOWS && !GTEST_HAS_GETTIMEOFDAY_ + __timeb64 now; + +# ifdef _MSC_VER + + // MSVC 8 deprecates _ftime64(), so we want to suppress warning 4996 + // (deprecated function) there. + // TODO(kenton@google.com): Use GetTickCount()? Or use + // SystemTimeToFileTime() +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4996) // Temporarily disables warning 4996. + _ftime64(&now); +# pragma warning(pop) // Restores the warning state. +# else + + _ftime64(&now); + +# endif // _MSC_VER + + return static_cast(now.time) * 1000 + now.millitm; +#elif GTEST_HAS_GETTIMEOFDAY_ + struct timeval now; + gettimeofday(&now, NULL); + return static_cast(now.tv_sec) * 1000 + now.tv_usec / 1000; +#else +# error "Don't know how to get the current time on your system." +#endif +} + +// Utilities + +// class String. + +#if GTEST_OS_WINDOWS_MOBILE +// Creates a UTF-16 wide string from the given ANSI string, allocating +// memory using new. The caller is responsible for deleting the return +// value using delete[]. Returns the wide string, or NULL if the +// input is NULL. +LPCWSTR String::AnsiToUtf16(const char* ansi) { + if (!ansi) return NULL; + const int length = strlen(ansi); + const int unicode_length = + MultiByteToWideChar(CP_ACP, 0, ansi, length, + NULL, 0); + WCHAR* unicode = new WCHAR[unicode_length + 1]; + MultiByteToWideChar(CP_ACP, 0, ansi, length, + unicode, unicode_length); + unicode[unicode_length] = 0; + return unicode; +} + +// Creates an ANSI string from the given wide string, allocating +// memory using new. The caller is responsible for deleting the return +// value using delete[]. Returns the ANSI string, or NULL if the +// input is NULL. +const char* String::Utf16ToAnsi(LPCWSTR utf16_str) { + if (!utf16_str) return NULL; + const int ansi_length = + WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, + NULL, 0, NULL, NULL); + char* ansi = new char[ansi_length + 1]; + WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, + ansi, ansi_length, NULL, NULL); + ansi[ansi_length] = 0; + return ansi; +} + +#endif // GTEST_OS_WINDOWS_MOBILE + +// Compares two C strings. Returns true iff they have the same content. +// +// Unlike strcmp(), this function can handle NULL argument(s). A NULL +// C string is considered different to any non-NULL C string, +// including the empty string. +bool String::CStringEquals(const char * lhs, const char * rhs) { + if ( lhs == NULL ) return rhs == NULL; + + if ( rhs == NULL ) return false; + + return strcmp(lhs, rhs) == 0; +} + +#if GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING + +// Converts an array of wide chars to a narrow string using the UTF-8 +// encoding, and streams the result to the given Message object. +static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, + Message* msg) { + for (size_t i = 0; i != length; ) { // NOLINT + if (wstr[i] != L'\0') { + *msg << WideStringToUtf8(wstr + i, static_cast(length - i)); + while (i != length && wstr[i] != L'\0') + i++; + } else { + *msg << '\0'; + i++; + } + } +} + +#endif // GTEST_HAS_STD_WSTRING || GTEST_HAS_GLOBAL_WSTRING + +} // namespace internal + +// Constructs an empty Message. +// We allocate the stringstream separately because otherwise each use of +// ASSERT/EXPECT in a procedure adds over 200 bytes to the procedure's +// stack frame leading to huge stack frames in some cases; gcc does not reuse +// the stack space. +Message::Message() : ss_(new ::std::stringstream) { + // By default, we want there to be enough precision when printing + // a double to a Message. + *ss_ << std::setprecision(std::numeric_limits::digits10 + 2); +} + +// These two overloads allow streaming a wide C string to a Message +// using the UTF-8 encoding. +Message& Message::operator <<(const wchar_t* wide_c_str) { + return *this << internal::String::ShowWideCString(wide_c_str); +} +Message& Message::operator <<(wchar_t* wide_c_str) { + return *this << internal::String::ShowWideCString(wide_c_str); +} + +#if GTEST_HAS_STD_WSTRING +// Converts the given wide string to a narrow string using the UTF-8 +// encoding, and streams the result to this Message object. +Message& Message::operator <<(const ::std::wstring& wstr) { + internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); + return *this; +} +#endif // GTEST_HAS_STD_WSTRING + +#if GTEST_HAS_GLOBAL_WSTRING +// Converts the given wide string to a narrow string using the UTF-8 +// encoding, and streams the result to this Message object. +Message& Message::operator <<(const ::wstring& wstr) { + internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); + return *this; +} +#endif // GTEST_HAS_GLOBAL_WSTRING + +// Gets the text streamed to this object so far as an std::string. +// Each '\0' character in the buffer is replaced with "\\0". +std::string Message::GetString() const { + return internal::StringStreamToString(ss_.get()); +} + +// AssertionResult constructors. +// Used in EXPECT_TRUE/FALSE(assertion_result). +AssertionResult::AssertionResult(const AssertionResult& other) + : success_(other.success_), + message_(other.message_.get() != NULL ? + new ::std::string(*other.message_) : + static_cast< ::std::string*>(NULL)) { +} + +// Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. +AssertionResult AssertionResult::operator!() const { + AssertionResult negation(!success_); + if (message_.get() != NULL) + negation << *message_; + return negation; +} + +// Makes a successful assertion result. +AssertionResult AssertionSuccess() { + return AssertionResult(true); +} + +// Makes a failed assertion result. +AssertionResult AssertionFailure() { + return AssertionResult(false); +} + +// Makes a failed assertion result with the given failure message. +// Deprecated; use AssertionFailure() << message. +AssertionResult AssertionFailure(const Message& message) { + return AssertionFailure() << message; +} + +namespace internal { + +// Constructs and returns the message for an equality assertion +// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. +// +// The first four parameters are the expressions used in the assertion +// and their values, as strings. For example, for ASSERT_EQ(foo, bar) +// where foo is 5 and bar is 6, we have: +// +// expected_expression: "foo" +// actual_expression: "bar" +// expected_value: "5" +// actual_value: "6" +// +// The ignoring_case parameter is true iff the assertion is a +// *_STRCASEEQ*. When it's true, the string " (ignoring case)" will +// be inserted into the message. +AssertionResult EqFailure(const char* expected_expression, + const char* actual_expression, + const std::string& expected_value, + const std::string& actual_value, + bool ignoring_case) { + Message msg; + msg << "Value of: " << actual_expression; + if (actual_value != actual_expression) { + msg << "\n Actual: " << actual_value; + } + + msg << "\nExpected: " << expected_expression; + if (ignoring_case) { + msg << " (ignoring case)"; + } + if (expected_value != expected_expression) { + msg << "\nWhich is: " << expected_value; + } + + return AssertionFailure() << msg; +} + +// Constructs a failure message for Boolean assertions such as EXPECT_TRUE. +std::string GetBoolAssertionFailureMessage( + const AssertionResult& assertion_result, + const char* expression_text, + const char* actual_predicate_value, + const char* expected_predicate_value) { + const char* actual_message = assertion_result.message(); + Message msg; + msg << "Value of: " << expression_text + << "\n Actual: " << actual_predicate_value; + if (actual_message[0] != '\0') + msg << " (" << actual_message << ")"; + msg << "\nExpected: " << expected_predicate_value; + return msg.GetString(); +} + +// Helper function for implementing ASSERT_NEAR. +AssertionResult DoubleNearPredFormat(const char* expr1, + const char* expr2, + const char* abs_error_expr, + double val1, + double val2, + double abs_error) { + const double diff = fabs(val1 - val2); + if (diff <= abs_error) return AssertionSuccess(); + + // TODO(wan): do not print the value of an expression if it's + // already a literal. + return AssertionFailure() + << "The difference between " << expr1 << " and " << expr2 + << " is " << diff << ", which exceeds " << abs_error_expr << ", where\n" + << expr1 << " evaluates to " << val1 << ",\n" + << expr2 << " evaluates to " << val2 << ", and\n" + << abs_error_expr << " evaluates to " << abs_error << "."; +} + + +// Helper template for implementing FloatLE() and DoubleLE(). +template +AssertionResult FloatingPointLE(const char* expr1, + const char* expr2, + RawType val1, + RawType val2) { + // Returns success if val1 is less than val2, + if (val1 < val2) { + return AssertionSuccess(); + } + + // or if val1 is almost equal to val2. + const FloatingPoint lhs(val1), rhs(val2); + if (lhs.AlmostEquals(rhs)) { + return AssertionSuccess(); + } + + // Note that the above two checks will both fail if either val1 or + // val2 is NaN, as the IEEE floating-point standard requires that + // any predicate involving a NaN must return false. + + ::std::stringstream val1_ss; + val1_ss << std::setprecision(std::numeric_limits::digits10 + 2) + << val1; + + ::std::stringstream val2_ss; + val2_ss << std::setprecision(std::numeric_limits::digits10 + 2) + << val2; + + return AssertionFailure() + << "Expected: (" << expr1 << ") <= (" << expr2 << ")\n" + << " Actual: " << StringStreamToString(&val1_ss) << " vs " + << StringStreamToString(&val2_ss); +} + +} // namespace internal + +// Asserts that val1 is less than, or almost equal to, val2. Fails +// otherwise. In particular, it fails if either val1 or val2 is NaN. +AssertionResult FloatLE(const char* expr1, const char* expr2, + float val1, float val2) { + return internal::FloatingPointLE(expr1, expr2, val1, val2); +} + +// Asserts that val1 is less than, or almost equal to, val2. Fails +// otherwise. In particular, it fails if either val1 or val2 is NaN. +AssertionResult DoubleLE(const char* expr1, const char* expr2, + double val1, double val2) { + return internal::FloatingPointLE(expr1, expr2, val1, val2); +} + +namespace internal { + +// The helper function for {ASSERT|EXPECT}_EQ with int or enum +// arguments. +AssertionResult CmpHelperEQ(const char* expected_expression, + const char* actual_expression, + BiggestInt expected, + BiggestInt actual) { + if (expected == actual) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + FormatForComparisonFailureMessage(expected, actual), + FormatForComparisonFailureMessage(actual, expected), + false); +} + +// A macro for implementing the helper functions needed to implement +// ASSERT_?? and EXPECT_?? with integer or enum arguments. It is here +// just to avoid copy-and-paste of similar code. +#define GTEST_IMPL_CMP_HELPER_(op_name, op)\ +AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ + BiggestInt val1, BiggestInt val2) {\ + if (val1 op val2) {\ + return AssertionSuccess();\ + } else {\ + return AssertionFailure() \ + << "Expected: (" << expr1 << ") " #op " (" << expr2\ + << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\ + << " vs " << FormatForComparisonFailureMessage(val2, val1);\ + }\ +} + +// Implements the helper function for {ASSERT|EXPECT}_NE with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(NE, !=) +// Implements the helper function for {ASSERT|EXPECT}_LE with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(LE, <=) +// Implements the helper function for {ASSERT|EXPECT}_LT with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(LT, < ) +// Implements the helper function for {ASSERT|EXPECT}_GE with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(GE, >=) +// Implements the helper function for {ASSERT|EXPECT}_GT with int or +// enum arguments. +GTEST_IMPL_CMP_HELPER_(GT, > ) + +#undef GTEST_IMPL_CMP_HELPER_ + +// The helper function for {ASSERT|EXPECT}_STREQ. +AssertionResult CmpHelperSTREQ(const char* expected_expression, + const char* actual_expression, + const char* expected, + const char* actual) { + if (String::CStringEquals(expected, actual)) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + PrintToString(expected), + PrintToString(actual), + false); +} + +// The helper function for {ASSERT|EXPECT}_STRCASEEQ. +AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression, + const char* actual_expression, + const char* expected, + const char* actual) { + if (String::CaseInsensitiveCStringEquals(expected, actual)) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + PrintToString(expected), + PrintToString(actual), + true); +} + +// The helper function for {ASSERT|EXPECT}_STRNE. +AssertionResult CmpHelperSTRNE(const char* s1_expression, + const char* s2_expression, + const char* s1, + const char* s2) { + if (!String::CStringEquals(s1, s2)) { + return AssertionSuccess(); + } else { + return AssertionFailure() << "Expected: (" << s1_expression << ") != (" + << s2_expression << "), actual: \"" + << s1 << "\" vs \"" << s2 << "\""; + } +} + +// The helper function for {ASSERT|EXPECT}_STRCASENE. +AssertionResult CmpHelperSTRCASENE(const char* s1_expression, + const char* s2_expression, + const char* s1, + const char* s2) { + if (!String::CaseInsensitiveCStringEquals(s1, s2)) { + return AssertionSuccess(); + } else { + return AssertionFailure() + << "Expected: (" << s1_expression << ") != (" + << s2_expression << ") (ignoring case), actual: \"" + << s1 << "\" vs \"" << s2 << "\""; + } +} + +} // namespace internal + +namespace { + +// Helper functions for implementing IsSubString() and IsNotSubstring(). + +// This group of overloaded functions return true iff needle is a +// substring of haystack. NULL is considered a substring of itself +// only. + +bool IsSubstringPred(const char* needle, const char* haystack) { + if (needle == NULL || haystack == NULL) + return needle == haystack; + + return strstr(haystack, needle) != NULL; +} + +bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) { + if (needle == NULL || haystack == NULL) + return needle == haystack; + + return wcsstr(haystack, needle) != NULL; +} + +// StringType here can be either ::std::string or ::std::wstring. +template +bool IsSubstringPred(const StringType& needle, + const StringType& haystack) { + return haystack.find(needle) != StringType::npos; +} + +// This function implements either IsSubstring() or IsNotSubstring(), +// depending on the value of the expected_to_be_substring parameter. +// StringType here can be const char*, const wchar_t*, ::std::string, +// or ::std::wstring. +template +AssertionResult IsSubstringImpl( + bool expected_to_be_substring, + const char* needle_expr, const char* haystack_expr, + const StringType& needle, const StringType& haystack) { + if (IsSubstringPred(needle, haystack) == expected_to_be_substring) + return AssertionSuccess(); + + const bool is_wide_string = sizeof(needle[0]) > 1; + const char* const begin_string_quote = is_wide_string ? "L\"" : "\""; + return AssertionFailure() + << "Value of: " << needle_expr << "\n" + << " Actual: " << begin_string_quote << needle << "\"\n" + << "Expected: " << (expected_to_be_substring ? "" : "not ") + << "a substring of " << haystack_expr << "\n" + << "Which is: " << begin_string_quote << haystack << "\""; +} + +} // namespace + +// IsSubstring() and IsNotSubstring() check whether needle is a +// substring of haystack (NULL is considered a substring of itself +// only), and return an appropriate error message when they fail. + +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const char* needle, const char* haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const wchar_t* needle, const wchar_t* haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const char* needle, const char* haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const wchar_t* needle, const wchar_t* haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::string& needle, const ::std::string& haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::string& needle, const ::std::string& haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} + +#if GTEST_HAS_STD_WSTRING +AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::wstring& needle, const ::std::wstring& haystack) { + return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); +} + +AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::wstring& needle, const ::std::wstring& haystack) { + return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); +} +#endif // GTEST_HAS_STD_WSTRING + +namespace internal { + +#if GTEST_OS_WINDOWS + +namespace { + +// Helper function for IsHRESULT{SuccessFailure} predicates +AssertionResult HRESULTFailureHelper(const char* expr, + const char* expected, + long hr) { // NOLINT +# if GTEST_OS_WINDOWS_MOBILE + + // Windows CE doesn't support FormatMessage. + const char error_text[] = ""; + +# else + + // Looks up the human-readable system message for the HRESULT code + // and since we're not passing any params to FormatMessage, we don't + // want inserts expanded. + const DWORD kFlags = FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS; + const DWORD kBufSize = 4096; + // Gets the system's human readable message string for this HRESULT. + char error_text[kBufSize] = { '\0' }; + DWORD message_length = ::FormatMessageA(kFlags, + 0, // no source, we're asking system + hr, // the error + 0, // no line width restrictions + error_text, // output buffer + kBufSize, // buf size + NULL); // no arguments for inserts + // Trims tailing white space (FormatMessage leaves a trailing CR-LF) + for (; message_length && IsSpace(error_text[message_length - 1]); + --message_length) { + error_text[message_length - 1] = '\0'; + } + +# endif // GTEST_OS_WINDOWS_MOBILE + + const std::string error_hex("0x" + String::FormatHexInt(hr)); + return ::testing::AssertionFailure() + << "Expected: " << expr << " " << expected << ".\n" + << " Actual: " << error_hex << " " << error_text << "\n"; +} + +} // namespace + +AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT + if (SUCCEEDED(hr)) { + return AssertionSuccess(); + } + return HRESULTFailureHelper(expr, "succeeds", hr); +} + +AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT + if (FAILED(hr)) { + return AssertionSuccess(); + } + return HRESULTFailureHelper(expr, "fails", hr); +} + +#endif // GTEST_OS_WINDOWS + +// Utility functions for encoding Unicode text (wide strings) in +// UTF-8. + +// A Unicode code-point can have upto 21 bits, and is encoded in UTF-8 +// like this: +// +// Code-point length Encoding +// 0 - 7 bits 0xxxxxxx +// 8 - 11 bits 110xxxxx 10xxxxxx +// 12 - 16 bits 1110xxxx 10xxxxxx 10xxxxxx +// 17 - 21 bits 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx + +// The maximum code-point a one-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint1 = (static_cast(1) << 7) - 1; + +// The maximum code-point a two-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint2 = (static_cast(1) << (5 + 6)) - 1; + +// The maximum code-point a three-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint3 = (static_cast(1) << (4 + 2*6)) - 1; + +// The maximum code-point a four-byte UTF-8 sequence can represent. +const UInt32 kMaxCodePoint4 = (static_cast(1) << (3 + 3*6)) - 1; + +// Chops off the n lowest bits from a bit pattern. Returns the n +// lowest bits. As a side effect, the original bit pattern will be +// shifted to the right by n bits. +inline UInt32 ChopLowBits(UInt32* bits, int n) { + const UInt32 low_bits = *bits & ((static_cast(1) << n) - 1); + *bits >>= n; + return low_bits; +} + +// Converts a Unicode code point to a narrow string in UTF-8 encoding. +// code_point parameter is of type UInt32 because wchar_t may not be +// wide enough to contain a code point. +// If the code_point is not a valid Unicode code point +// (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted +// to "(Invalid Unicode 0xXXXXXXXX)". +std::string CodePointToUtf8(UInt32 code_point) { + if (code_point > kMaxCodePoint4) { + return "(Invalid Unicode 0x" + String::FormatHexInt(code_point) + ")"; + } + + char str[5]; // Big enough for the largest valid code point. + if (code_point <= kMaxCodePoint1) { + str[1] = '\0'; + str[0] = static_cast(code_point); // 0xxxxxxx + } else if (code_point <= kMaxCodePoint2) { + str[2] = '\0'; + str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[0] = static_cast(0xC0 | code_point); // 110xxxxx + } else if (code_point <= kMaxCodePoint3) { + str[3] = '\0'; + str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[0] = static_cast(0xE0 | code_point); // 1110xxxx + } else { // code_point <= kMaxCodePoint4 + str[4] = '\0'; + str[3] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx + str[0] = static_cast(0xF0 | code_point); // 11110xxx + } + return str; +} + +// The following two functions only make sense if the the system +// uses UTF-16 for wide string encoding. All supported systems +// with 16 bit wchar_t (Windows, Cygwin, Symbian OS) do use UTF-16. + +// Determines if the arguments constitute UTF-16 surrogate pair +// and thus should be combined into a single Unicode code point +// using CreateCodePointFromUtf16SurrogatePair. +inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { + return sizeof(wchar_t) == 2 && + (first & 0xFC00) == 0xD800 && (second & 0xFC00) == 0xDC00; +} + +// Creates a Unicode code point from UTF16 surrogate pair. +inline UInt32 CreateCodePointFromUtf16SurrogatePair(wchar_t first, + wchar_t second) { + const UInt32 mask = (1 << 10) - 1; + return (sizeof(wchar_t) == 2) ? + (((first & mask) << 10) | (second & mask)) + 0x10000 : + // This function should not be called when the condition is + // false, but we provide a sensible default in case it is. + static_cast(first); +} + +// Converts a wide string to a narrow string in UTF-8 encoding. +// The wide string is assumed to have the following encoding: +// UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin, Symbian OS) +// UTF-32 if sizeof(wchar_t) == 4 (on Linux) +// Parameter str points to a null-terminated wide string. +// Parameter num_chars may additionally limit the number +// of wchar_t characters processed. -1 is used when the entire string +// should be processed. +// If the string contains code points that are not valid Unicode code points +// (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output +// as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding +// and contains invalid UTF-16 surrogate pairs, values in those pairs +// will be encoded as individual Unicode characters from Basic Normal Plane. +std::string WideStringToUtf8(const wchar_t* str, int num_chars) { + if (num_chars == -1) + num_chars = static_cast(wcslen(str)); + + ::std::stringstream stream; + for (int i = 0; i < num_chars; ++i) { + UInt32 unicode_code_point; + + if (str[i] == L'\0') { + break; + } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) { + unicode_code_point = CreateCodePointFromUtf16SurrogatePair(str[i], + str[i + 1]); + i++; + } else { + unicode_code_point = static_cast(str[i]); + } + + stream << CodePointToUtf8(unicode_code_point); + } + return StringStreamToString(&stream); +} + +// Converts a wide C string to an std::string using the UTF-8 encoding. +// NULL will be converted to "(null)". +std::string String::ShowWideCString(const wchar_t * wide_c_str) { + if (wide_c_str == NULL) return "(null)"; + + return internal::WideStringToUtf8(wide_c_str, -1); +} + +// Compares two wide C strings. Returns true iff they have the same +// content. +// +// Unlike wcscmp(), this function can handle NULL argument(s). A NULL +// C string is considered different to any non-NULL C string, +// including the empty string. +bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) { + if (lhs == NULL) return rhs == NULL; + + if (rhs == NULL) return false; + + return wcscmp(lhs, rhs) == 0; +} + +// Helper function for *_STREQ on wide strings. +AssertionResult CmpHelperSTREQ(const char* expected_expression, + const char* actual_expression, + const wchar_t* expected, + const wchar_t* actual) { + if (String::WideCStringEquals(expected, actual)) { + return AssertionSuccess(); + } + + return EqFailure(expected_expression, + actual_expression, + PrintToString(expected), + PrintToString(actual), + false); +} + +// Helper function for *_STRNE on wide strings. +AssertionResult CmpHelperSTRNE(const char* s1_expression, + const char* s2_expression, + const wchar_t* s1, + const wchar_t* s2) { + if (!String::WideCStringEquals(s1, s2)) { + return AssertionSuccess(); + } + + return AssertionFailure() << "Expected: (" << s1_expression << ") != (" + << s2_expression << "), actual: " + << PrintToString(s1) + << " vs " << PrintToString(s2); +} + +// Compares two C strings, ignoring case. Returns true iff they have +// the same content. +// +// Unlike strcasecmp(), this function can handle NULL argument(s). A +// NULL C string is considered different to any non-NULL C string, +// including the empty string. +bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) { + if (lhs == NULL) + return rhs == NULL; + if (rhs == NULL) + return false; + return posix::StrCaseCmp(lhs, rhs) == 0; +} + + // Compares two wide C strings, ignoring case. Returns true iff they + // have the same content. + // + // Unlike wcscasecmp(), this function can handle NULL argument(s). + // A NULL C string is considered different to any non-NULL wide C string, + // including the empty string. + // NB: The implementations on different platforms slightly differ. + // On windows, this method uses _wcsicmp which compares according to LC_CTYPE + // environment variable. On GNU platform this method uses wcscasecmp + // which compares according to LC_CTYPE category of the current locale. + // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the + // current locale. +bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs, + const wchar_t* rhs) { + if (lhs == NULL) return rhs == NULL; + + if (rhs == NULL) return false; + +#if GTEST_OS_WINDOWS + return _wcsicmp(lhs, rhs) == 0; +#elif GTEST_OS_LINUX && !GTEST_OS_LINUX_ANDROID + return wcscasecmp(lhs, rhs) == 0; +#else + // Android, Mac OS X and Cygwin don't define wcscasecmp. + // Other unknown OSes may not define it either. + wint_t left, right; + do { + left = towlower(*lhs++); + right = towlower(*rhs++); + } while (left && left == right); + return left == right; +#endif // OS selector +} + +// Returns true iff str ends with the given suffix, ignoring case. +// Any string is considered to end with an empty suffix. +bool String::EndsWithCaseInsensitive( + const std::string& str, const std::string& suffix) { + const size_t str_len = str.length(); + const size_t suffix_len = suffix.length(); + return (str_len >= suffix_len) && + CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len, + suffix.c_str()); +} + +// Formats an int value as "%02d". +std::string String::FormatIntWidth2(int value) { + std::stringstream ss; + ss << std::setfill('0') << std::setw(2) << value; + return ss.str(); +} + +// Formats an int value as "%X". +std::string String::FormatHexInt(int value) { + std::stringstream ss; + ss << std::hex << std::uppercase << value; + return ss.str(); +} + +// Formats a byte as "%02X". +std::string String::FormatByte(unsigned char value) { + std::stringstream ss; + ss << std::setfill('0') << std::setw(2) << std::hex << std::uppercase + << static_cast(value); + return ss.str(); +} + +// Converts the buffer in a stringstream to an std::string, converting NUL +// bytes to "\\0" along the way. +std::string StringStreamToString(::std::stringstream* ss) { + const ::std::string& str = ss->str(); + const char* const start = str.c_str(); + const char* const end = start + str.length(); + + std::string result; + result.reserve(2 * (end - start)); + for (const char* ch = start; ch != end; ++ch) { + if (*ch == '\0') { + result += "\\0"; // Replaces NUL with "\\0"; + } else { + result += *ch; + } + } + + return result; +} + +// Appends the user-supplied message to the Google-Test-generated message. +std::string AppendUserMessage(const std::string& gtest_msg, + const Message& user_msg) { + // Appends the user message if it's non-empty. + const std::string user_msg_string = user_msg.GetString(); + if (user_msg_string.empty()) { + return gtest_msg; + } + + return gtest_msg + "\n" + user_msg_string; +} + +} // namespace internal + +// class TestResult + +// Creates an empty TestResult. +TestResult::TestResult() + : death_test_count_(0), + elapsed_time_(0) { +} + +// D'tor. +TestResult::~TestResult() { +} + +// Returns the i-th test part result among all the results. i can +// range from 0 to total_part_count() - 1. If i is not in that range, +// aborts the program. +const TestPartResult& TestResult::GetTestPartResult(int i) const { + if (i < 0 || i >= total_part_count()) + internal::posix::Abort(); + return test_part_results_.at(i); +} + +// Returns the i-th test property. i can range from 0 to +// test_property_count() - 1. If i is not in that range, aborts the +// program. +const TestProperty& TestResult::GetTestProperty(int i) const { + if (i < 0 || i >= test_property_count()) + internal::posix::Abort(); + return test_properties_.at(i); +} + +// Clears the test part results. +void TestResult::ClearTestPartResults() { + test_part_results_.clear(); +} + +// Adds a test part result to the list. +void TestResult::AddTestPartResult(const TestPartResult& test_part_result) { + test_part_results_.push_back(test_part_result); +} + +// Adds a test property to the list. If a property with the same key as the +// supplied property is already represented, the value of this test_property +// replaces the old value for that key. +void TestResult::RecordProperty(const std::string& xml_element, + const TestProperty& test_property) { + if (!ValidateTestProperty(xml_element, test_property)) { + return; + } + internal::MutexLock lock(&test_properites_mutex_); + const std::vector::iterator property_with_matching_key = + std::find_if(test_properties_.begin(), test_properties_.end(), + internal::TestPropertyKeyIs(test_property.key())); + if (property_with_matching_key == test_properties_.end()) { + test_properties_.push_back(test_property); + return; + } + property_with_matching_key->SetValue(test_property.value()); +} + +// The list of reserved attributes used in the element of XML +// output. +static const char* const kReservedTestSuitesAttributes[] = { + "disabled", + "errors", + "failures", + "name", + "random_seed", + "tests", + "time", + "timestamp" +}; + +// The list of reserved attributes used in the element of XML +// output. +static const char* const kReservedTestSuiteAttributes[] = { + "disabled", + "errors", + "failures", + "name", + "tests", + "time" +}; + +// The list of reserved attributes used in the element of XML output. +static const char* const kReservedTestCaseAttributes[] = { + "classname", + "name", + "status", + "time", + "type_param", + "value_param" +}; + +template +std::vector ArrayAsVector(const char* const (&array)[kSize]) { + return std::vector(array, array + kSize); +} + +static std::vector GetReservedAttributesForElement( + const std::string& xml_element) { + if (xml_element == "testsuites") { + return ArrayAsVector(kReservedTestSuitesAttributes); + } else if (xml_element == "testsuite") { + return ArrayAsVector(kReservedTestSuiteAttributes); + } else if (xml_element == "testcase") { + return ArrayAsVector(kReservedTestCaseAttributes); + } else { + GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element; + } + // This code is unreachable but some compilers may not realizes that. + return std::vector(); +} + +static std::string FormatWordList(const std::vector& words) { + Message word_list; + for (size_t i = 0; i < words.size(); ++i) { + if (i > 0 && words.size() > 2) { + word_list << ", "; + } + if (i == words.size() - 1) { + word_list << "and "; + } + word_list << "'" << words[i] << "'"; + } + return word_list.GetString(); +} + +bool ValidateTestPropertyName(const std::string& property_name, + const std::vector& reserved_names) { + if (std::find(reserved_names.begin(), reserved_names.end(), property_name) != + reserved_names.end()) { + ADD_FAILURE() << "Reserved key used in RecordProperty(): " << property_name + << " (" << FormatWordList(reserved_names) + << " are reserved by " << GTEST_NAME_ << ")"; + return false; + } + return true; +} + +// Adds a failure if the key is a reserved attribute of the element named +// xml_element. Returns true if the property is valid. +bool TestResult::ValidateTestProperty(const std::string& xml_element, + const TestProperty& test_property) { + return ValidateTestPropertyName(test_property.key(), + GetReservedAttributesForElement(xml_element)); +} + +// Clears the object. +void TestResult::Clear() { + test_part_results_.clear(); + test_properties_.clear(); + death_test_count_ = 0; + elapsed_time_ = 0; +} + +// Returns true iff the test failed. +bool TestResult::Failed() const { + for (int i = 0; i < total_part_count(); ++i) { + if (GetTestPartResult(i).failed()) + return true; + } + return false; +} + +// Returns true iff the test part fatally failed. +static bool TestPartFatallyFailed(const TestPartResult& result) { + return result.fatally_failed(); +} + +// Returns true iff the test fatally failed. +bool TestResult::HasFatalFailure() const { + return CountIf(test_part_results_, TestPartFatallyFailed) > 0; +} + +// Returns true iff the test part non-fatally failed. +static bool TestPartNonfatallyFailed(const TestPartResult& result) { + return result.nonfatally_failed(); +} + +// Returns true iff the test has a non-fatal failure. +bool TestResult::HasNonfatalFailure() const { + return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0; +} + +// Gets the number of all test parts. This is the sum of the number +// of successful test parts and the number of failed test parts. +int TestResult::total_part_count() const { + return static_cast(test_part_results_.size()); +} + +// Returns the number of the test properties. +int TestResult::test_property_count() const { + return static_cast(test_properties_.size()); +} + +// class Test + +// Creates a Test object. + +// The c'tor saves the values of all Google Test flags. +Test::Test() + : gtest_flag_saver_(new internal::GTestFlagSaver) { +} + +// The d'tor restores the values of all Google Test flags. +Test::~Test() { + delete gtest_flag_saver_; +} + +// Sets up the test fixture. +// +// A sub-class may override this. +void Test::SetUp() { +} + +// Tears down the test fixture. +// +// A sub-class may override this. +void Test::TearDown() { +} + +// Allows user supplied key value pairs to be recorded for later output. +void Test::RecordProperty(const std::string& key, const std::string& value) { + UnitTest::GetInstance()->RecordProperty(key, value); +} + +// Allows user supplied key value pairs to be recorded for later output. +void Test::RecordProperty(const std::string& key, int value) { + Message value_message; + value_message << value; + RecordProperty(key, value_message.GetString().c_str()); +} + +namespace internal { + +void ReportFailureInUnknownLocation(TestPartResult::Type result_type, + const std::string& message) { + // This function is a friend of UnitTest and as such has access to + // AddTestPartResult. + UnitTest::GetInstance()->AddTestPartResult( + result_type, + NULL, // No info about the source file where the exception occurred. + -1, // We have no info on which line caused the exception. + message, + ""); // No stack trace, either. +} + +} // namespace internal + +// Google Test requires all tests in the same test case to use the same test +// fixture class. This function checks if the current test has the +// same fixture class as the first test in the current test case. If +// yes, it returns true; otherwise it generates a Google Test failure and +// returns false. +bool Test::HasSameFixtureClass() { + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + const TestCase* const test_case = impl->current_test_case(); + + // Info about the first test in the current test case. + const TestInfo* const first_test_info = test_case->test_info_list()[0]; + const internal::TypeId first_fixture_id = first_test_info->fixture_class_id_; + const char* const first_test_name = first_test_info->name(); + + // Info about the current test. + const TestInfo* const this_test_info = impl->current_test_info(); + const internal::TypeId this_fixture_id = this_test_info->fixture_class_id_; + const char* const this_test_name = this_test_info->name(); + + if (this_fixture_id != first_fixture_id) { + // Is the first test defined using TEST? + const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId(); + // Is this test defined using TEST? + const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId(); + + if (first_is_TEST || this_is_TEST) { + // The user mixed TEST and TEST_F in this test case - we'll tell + // him/her how to fix it. + + // Gets the name of the TEST and the name of the TEST_F. Note + // that first_is_TEST and this_is_TEST cannot both be true, as + // the fixture IDs are different for the two tests. + const char* const TEST_name = + first_is_TEST ? first_test_name : this_test_name; + const char* const TEST_F_name = + first_is_TEST ? this_test_name : first_test_name; + + ADD_FAILURE() + << "All tests in the same test case must use the same test fixture\n" + << "class, so mixing TEST_F and TEST in the same test case is\n" + << "illegal. In test case " << this_test_info->test_case_name() + << ",\n" + << "test " << TEST_F_name << " is defined using TEST_F but\n" + << "test " << TEST_name << " is defined using TEST. You probably\n" + << "want to change the TEST to TEST_F or move it to another test\n" + << "case."; + } else { + // The user defined two fixture classes with the same name in + // two namespaces - we'll tell him/her how to fix it. + ADD_FAILURE() + << "All tests in the same test case must use the same test fixture\n" + << "class. However, in test case " + << this_test_info->test_case_name() << ",\n" + << "you defined test " << first_test_name + << " and test " << this_test_name << "\n" + << "using two different test fixture classes. This can happen if\n" + << "the two classes are from different namespaces or translation\n" + << "units and have the same name. You should probably rename one\n" + << "of the classes to put the tests into different test cases."; + } + return false; + } + + return true; +} + +#if GTEST_HAS_SEH + +// Adds an "exception thrown" fatal failure to the current test. This +// function returns its result via an output parameter pointer because VC++ +// prohibits creation of objects with destructors on stack in functions +// using __try (see error C2712). +static std::string* FormatSehExceptionMessage(DWORD exception_code, + const char* location) { + Message message; + message << "SEH exception with code 0x" << std::setbase(16) << + exception_code << std::setbase(10) << " thrown in " << location << "."; + + return new std::string(message.GetString()); +} + +#endif // GTEST_HAS_SEH + +namespace internal { + +#if GTEST_HAS_EXCEPTIONS + +// Adds an "exception thrown" fatal failure to the current test. +static std::string FormatCxxExceptionMessage(const char* description, + const char* location) { + Message message; + if (description != NULL) { + message << "C++ exception with description \"" << description << "\""; + } else { + message << "Unknown C++ exception"; + } + message << " thrown in " << location << "."; + + return message.GetString(); +} + +static std::string PrintTestPartResultToString( + const TestPartResult& test_part_result); + +GoogleTestFailureException::GoogleTestFailureException( + const TestPartResult& failure) + : ::std::runtime_error(PrintTestPartResultToString(failure).c_str()) {} + +#endif // GTEST_HAS_EXCEPTIONS + +// We put these helper functions in the internal namespace as IBM's xlC +// compiler rejects the code if they were declared static. + +// Runs the given method and handles SEH exceptions it throws, when +// SEH is supported; returns the 0-value for type Result in case of an +// SEH exception. (Microsoft compilers cannot handle SEH and C++ +// exceptions in the same function. Therefore, we provide a separate +// wrapper function for handling SEH exceptions.) +template +Result HandleSehExceptionsInMethodIfSupported( + T* object, Result (T::*method)(), const char* location) { +#if GTEST_HAS_SEH + __try { + return (object->*method)(); + } __except (internal::UnitTestOptions::GTestShouldProcessSEH( // NOLINT + GetExceptionCode())) { + // We create the exception message on the heap because VC++ prohibits + // creation of objects with destructors on stack in functions using __try + // (see error C2712). + std::string* exception_message = FormatSehExceptionMessage( + GetExceptionCode(), location); + internal::ReportFailureInUnknownLocation(TestPartResult::kFatalFailure, + *exception_message); + delete exception_message; + return static_cast(0); + } +#else + (void)location; + return (object->*method)(); +#endif // GTEST_HAS_SEH +} + +// Runs the given method and catches and reports C++ and/or SEH-style +// exceptions, if they are supported; returns the 0-value for type +// Result in case of an SEH exception. +template +Result HandleExceptionsInMethodIfSupported( + T* object, Result (T::*method)(), const char* location) { + // NOTE: The user code can affect the way in which Google Test handles + // exceptions by setting GTEST_FLAG(catch_exceptions), but only before + // RUN_ALL_TESTS() starts. It is technically possible to check the flag + // after the exception is caught and either report or re-throw the + // exception based on the flag's value: + // + // try { + // // Perform the test method. + // } catch (...) { + // if (GTEST_FLAG(catch_exceptions)) + // // Report the exception as failure. + // else + // throw; // Re-throws the original exception. + // } + // + // However, the purpose of this flag is to allow the program to drop into + // the debugger when the exception is thrown. On most platforms, once the + // control enters the catch block, the exception origin information is + // lost and the debugger will stop the program at the point of the + // re-throw in this function -- instead of at the point of the original + // throw statement in the code under test. For this reason, we perform + // the check early, sacrificing the ability to affect Google Test's + // exception handling in the method where the exception is thrown. + if (internal::GetUnitTestImpl()->catch_exceptions()) { +#if GTEST_HAS_EXCEPTIONS + try { + return HandleSehExceptionsInMethodIfSupported(object, method, location); + } catch (const internal::GoogleTestFailureException&) { // NOLINT + // This exception type can only be thrown by a failed Google + // Test assertion with the intention of letting another testing + // framework catch it. Therefore we just re-throw it. + throw; + } catch (const std::exception& e) { // NOLINT + internal::ReportFailureInUnknownLocation( + TestPartResult::kFatalFailure, + FormatCxxExceptionMessage(e.what(), location)); + } catch (...) { // NOLINT + internal::ReportFailureInUnknownLocation( + TestPartResult::kFatalFailure, + FormatCxxExceptionMessage(NULL, location)); + } + return static_cast(0); +#else + return HandleSehExceptionsInMethodIfSupported(object, method, location); +#endif // GTEST_HAS_EXCEPTIONS + } else { + return (object->*method)(); + } +} + +} // namespace internal + +// Runs the test and updates the test result. +void Test::Run() { + if (!HasSameFixtureClass()) return; + + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported(this, &Test::SetUp, "SetUp()"); + // We will run the test only if SetUp() was successful. + if (!HasFatalFailure()) { + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &Test::TestBody, "the test body"); + } + + // However, we want to clean up as much as possible. Hence we will + // always call TearDown(), even if SetUp() or the test body has + // failed. + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &Test::TearDown, "TearDown()"); +} + +// Returns true iff the current test has a fatal failure. +bool Test::HasFatalFailure() { + return internal::GetUnitTestImpl()->current_test_result()->HasFatalFailure(); +} + +// Returns true iff the current test has a non-fatal failure. +bool Test::HasNonfatalFailure() { + return internal::GetUnitTestImpl()->current_test_result()-> + HasNonfatalFailure(); +} + +// class TestInfo + +// Constructs a TestInfo object. It assumes ownership of the test factory +// object. +TestInfo::TestInfo(const std::string& a_test_case_name, + const std::string& a_name, + const char* a_type_param, + const char* a_value_param, + internal::TypeId fixture_class_id, + internal::TestFactoryBase* factory) + : test_case_name_(a_test_case_name), + name_(a_name), + type_param_(a_type_param ? new std::string(a_type_param) : NULL), + value_param_(a_value_param ? new std::string(a_value_param) : NULL), + fixture_class_id_(fixture_class_id), + should_run_(false), + is_disabled_(false), + matches_filter_(false), + factory_(factory), + result_() {} + +// Destructs a TestInfo object. +TestInfo::~TestInfo() { delete factory_; } + +namespace internal { + +// Creates a new TestInfo object and registers it with Google Test; +// returns the created object. +// +// Arguments: +// +// test_case_name: name of the test case +// name: name of the test +// type_param: the name of the test's type parameter, or NULL if +// this is not a typed or a type-parameterized test. +// value_param: text representation of the test's value parameter, +// or NULL if this is not a value-parameterized test. +// fixture_class_id: ID of the test fixture class +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +// factory: pointer to the factory that creates a test object. +// The newly created TestInfo instance will assume +// ownership of the factory object. +TestInfo* MakeAndRegisterTestInfo( + const char* test_case_name, + const char* name, + const char* type_param, + const char* value_param, + TypeId fixture_class_id, + SetUpTestCaseFunc set_up_tc, + TearDownTestCaseFunc tear_down_tc, + TestFactoryBase* factory) { + TestInfo* const test_info = + new TestInfo(test_case_name, name, type_param, value_param, + fixture_class_id, factory); + GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info); + return test_info; +} + +#if GTEST_HAS_PARAM_TEST +void ReportInvalidTestCaseType(const char* test_case_name, + const char* file, int line) { + Message errors; + errors + << "Attempted redefinition of test case " << test_case_name << ".\n" + << "All tests in the same test case must use the same test fixture\n" + << "class. However, in test case " << test_case_name << ", you tried\n" + << "to define a test using a fixture class different from the one\n" + << "used earlier. This can happen if the two fixture classes are\n" + << "from different namespaces and have the same name. You should\n" + << "probably rename one of the classes to put the tests into different\n" + << "test cases."; + + fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), + errors.GetString().c_str()); +} +#endif // GTEST_HAS_PARAM_TEST + +} // namespace internal + +namespace { + +// A predicate that checks the test name of a TestInfo against a known +// value. +// +// This is used for implementation of the TestCase class only. We put +// it in the anonymous namespace to prevent polluting the outer +// namespace. +// +// TestNameIs is copyable. +class TestNameIs { + public: + // Constructor. + // + // TestNameIs has NO default constructor. + explicit TestNameIs(const char* name) + : name_(name) {} + + // Returns true iff the test name of test_info matches name_. + bool operator()(const TestInfo * test_info) const { + return test_info && test_info->name() == name_; + } + + private: + std::string name_; +}; + +} // namespace + +namespace internal { + +// This method expands all parameterized tests registered with macros TEST_P +// and INSTANTIATE_TEST_CASE_P into regular tests and registers those. +// This will be done just once during the program runtime. +void UnitTestImpl::RegisterParameterizedTests() { +#if GTEST_HAS_PARAM_TEST + if (!parameterized_tests_registered_) { + parameterized_test_registry_.RegisterTests(); + parameterized_tests_registered_ = true; + } +#endif +} + +} // namespace internal + +// Creates the test object, runs it, records its result, and then +// deletes it. +void TestInfo::Run() { + if (!should_run_) return; + + // Tells UnitTest where to store test result. + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + impl->set_current_test_info(this); + + TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); + + // Notifies the unit test event listeners that a test is about to start. + repeater->OnTestStart(*this); + + const TimeInMillis start = internal::GetTimeInMillis(); + + impl->os_stack_trace_getter()->UponLeavingGTest(); + + // Creates the test object. + Test* const test = internal::HandleExceptionsInMethodIfSupported( + factory_, &internal::TestFactoryBase::CreateTest, + "the test fixture's constructor"); + + // Runs the test only if the test object was created and its + // constructor didn't generate a fatal failure. + if ((test != NULL) && !Test::HasFatalFailure()) { + // This doesn't throw as all user code that can throw are wrapped into + // exception handling code. + test->Run(); + } + + // Deletes the test object. + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + test, &Test::DeleteSelf_, "the test fixture's destructor"); + + result_.set_elapsed_time(internal::GetTimeInMillis() - start); + + // Notifies the unit test event listener that a test has just finished. + repeater->OnTestEnd(*this); + + // Tells UnitTest to stop associating assertion results to this + // test. + impl->set_current_test_info(NULL); +} + +// class TestCase + +// Gets the number of successful tests in this test case. +int TestCase::successful_test_count() const { + return CountIf(test_info_list_, TestPassed); +} + +// Gets the number of failed tests in this test case. +int TestCase::failed_test_count() const { + return CountIf(test_info_list_, TestFailed); +} + +// Gets the number of disabled tests that will be reported in the XML report. +int TestCase::reportable_disabled_test_count() const { + return CountIf(test_info_list_, TestReportableDisabled); +} + +// Gets the number of disabled tests in this test case. +int TestCase::disabled_test_count() const { + return CountIf(test_info_list_, TestDisabled); +} + +// Gets the number of tests to be printed in the XML report. +int TestCase::reportable_test_count() const { + return CountIf(test_info_list_, TestReportable); +} + +// Get the number of tests in this test case that should run. +int TestCase::test_to_run_count() const { + return CountIf(test_info_list_, ShouldRunTest); +} + +// Gets the number of all tests. +int TestCase::total_test_count() const { + return static_cast(test_info_list_.size()); +} + +// Creates a TestCase with the given name. +// +// Arguments: +// +// name: name of the test case +// a_type_param: the name of the test case's type parameter, or NULL if +// this is not a typed or a type-parameterized test case. +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +TestCase::TestCase(const char* a_name, const char* a_type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc) + : name_(a_name), + type_param_(a_type_param ? new std::string(a_type_param) : NULL), + set_up_tc_(set_up_tc), + tear_down_tc_(tear_down_tc), + should_run_(false), + elapsed_time_(0) { +} + +// Destructor of TestCase. +TestCase::~TestCase() { + // Deletes every Test in the collection. + ForEach(test_info_list_, internal::Delete); +} + +// Returns the i-th test among all the tests. i can range from 0 to +// total_test_count() - 1. If i is not in that range, returns NULL. +const TestInfo* TestCase::GetTestInfo(int i) const { + const int index = GetElementOr(test_indices_, i, -1); + return index < 0 ? NULL : test_info_list_[index]; +} + +// Returns the i-th test among all the tests. i can range from 0 to +// total_test_count() - 1. If i is not in that range, returns NULL. +TestInfo* TestCase::GetMutableTestInfo(int i) { + const int index = GetElementOr(test_indices_, i, -1); + return index < 0 ? NULL : test_info_list_[index]; +} + +// Adds a test to this test case. Will delete the test upon +// destruction of the TestCase object. +void TestCase::AddTestInfo(TestInfo * test_info) { + test_info_list_.push_back(test_info); + test_indices_.push_back(static_cast(test_indices_.size())); +} + +// Runs every test in this TestCase. +void TestCase::Run() { + if (!should_run_) return; + + internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); + impl->set_current_test_case(this); + + TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); + + repeater->OnTestCaseStart(*this); + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &TestCase::RunSetUpTestCase, "SetUpTestCase()"); + + const internal::TimeInMillis start = internal::GetTimeInMillis(); + for (int i = 0; i < total_test_count(); i++) { + GetMutableTestInfo(i)->Run(); + } + elapsed_time_ = internal::GetTimeInMillis() - start; + + impl->os_stack_trace_getter()->UponLeavingGTest(); + internal::HandleExceptionsInMethodIfSupported( + this, &TestCase::RunTearDownTestCase, "TearDownTestCase()"); + + repeater->OnTestCaseEnd(*this); + impl->set_current_test_case(NULL); +} + +// Clears the results of all tests in this test case. +void TestCase::ClearResult() { + ad_hoc_test_result_.Clear(); + ForEach(test_info_list_, TestInfo::ClearTestResult); +} + +// Shuffles the tests in this test case. +void TestCase::ShuffleTests(internal::Random* random) { + Shuffle(random, &test_indices_); +} + +// Restores the test order to before the first shuffle. +void TestCase::UnshuffleTests() { + for (size_t i = 0; i < test_indices_.size(); i++) { + test_indices_[i] = static_cast(i); + } +} + +// Formats a countable noun. Depending on its quantity, either the +// singular form or the plural form is used. e.g. +// +// FormatCountableNoun(1, "formula", "formuli") returns "1 formula". +// FormatCountableNoun(5, "book", "books") returns "5 books". +static std::string FormatCountableNoun(int count, + const char * singular_form, + const char * plural_form) { + return internal::StreamableToString(count) + " " + + (count == 1 ? singular_form : plural_form); +} + +// Formats the count of tests. +static std::string FormatTestCount(int test_count) { + return FormatCountableNoun(test_count, "test", "tests"); +} + +// Formats the count of test cases. +static std::string FormatTestCaseCount(int test_case_count) { + return FormatCountableNoun(test_case_count, "test case", "test cases"); +} + +// Converts a TestPartResult::Type enum to human-friendly string +// representation. Both kNonFatalFailure and kFatalFailure are translated +// to "Failure", as the user usually doesn't care about the difference +// between the two when viewing the test result. +static const char * TestPartResultTypeToString(TestPartResult::Type type) { + switch (type) { + case TestPartResult::kSuccess: + return "Success"; + + case TestPartResult::kNonFatalFailure: + case TestPartResult::kFatalFailure: +#ifdef _MSC_VER + return "error: "; +#else + return "Failure\n"; +#endif + default: + return "Unknown result type"; + } +} + +namespace internal { + +// Prints a TestPartResult to an std::string. +static std::string PrintTestPartResultToString( + const TestPartResult& test_part_result) { + return (Message() + << internal::FormatFileLocation(test_part_result.file_name(), + test_part_result.line_number()) + << " " << TestPartResultTypeToString(test_part_result.type()) + << test_part_result.message()).GetString(); +} + +// Prints a TestPartResult. +static void PrintTestPartResult(const TestPartResult& test_part_result) { + const std::string& result = + PrintTestPartResultToString(test_part_result); + printf("%s\n", result.c_str()); + fflush(stdout); + // If the test program runs in Visual Studio or a debugger, the + // following statements add the test part result message to the Output + // window such that the user can double-click on it to jump to the + // corresponding source code location; otherwise they do nothing. +#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + // We don't call OutputDebugString*() on Windows Mobile, as printing + // to stdout is done by OutputDebugString() there already - we don't + // want the same message printed twice. + ::OutputDebugStringA(result.c_str()); + ::OutputDebugStringA("\n"); +#endif +} + +// class PrettyUnitTestResultPrinter + +enum GTestColor { + COLOR_DEFAULT, + COLOR_RED, + COLOR_GREEN, + COLOR_YELLOW +}; + +#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + +// Returns the character attribute for the given color. +WORD GetColorAttribute(GTestColor color) { + switch (color) { + case COLOR_RED: return FOREGROUND_RED; + case COLOR_GREEN: return FOREGROUND_GREEN; + case COLOR_YELLOW: return FOREGROUND_RED | FOREGROUND_GREEN; + default: return 0; + } +} + +#else + +// Returns the ANSI color code for the given color. COLOR_DEFAULT is +// an invalid input. +const char* GetAnsiColorCode(GTestColor color) { + switch (color) { + case COLOR_RED: return "1"; + case COLOR_GREEN: return "2"; + case COLOR_YELLOW: return "3"; + default: return NULL; + }; +} + +#endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + +// Returns true iff Google Test should use colors in the output. +bool ShouldUseColor(bool stdout_is_tty) { + const char* const gtest_color = GTEST_FLAG(color).c_str(); + + if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { +#if GTEST_OS_WINDOWS + // On Windows the TERM variable is usually not set, but the + // console there does support colors. + return stdout_is_tty; +#else + // On non-Windows platforms, we rely on the TERM variable. + const char* const term = posix::GetEnv("TERM"); + const bool term_supports_color = + String::CStringEquals(term, "xterm") || + String::CStringEquals(term, "xterm-color") || + String::CStringEquals(term, "xterm-256color") || + String::CStringEquals(term, "screen") || + String::CStringEquals(term, "screen-256color") || + String::CStringEquals(term, "linux") || + String::CStringEquals(term, "cygwin"); + return stdout_is_tty && term_supports_color; +#endif // GTEST_OS_WINDOWS + } + + return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || + String::CaseInsensitiveCStringEquals(gtest_color, "true") || + String::CaseInsensitiveCStringEquals(gtest_color, "t") || + String::CStringEquals(gtest_color, "1"); + // We take "yes", "true", "t", and "1" as meaning "yes". If the + // value is neither one of these nor "auto", we treat it as "no" to + // be conservative. +} + +// Helpers for printing colored strings to stdout. Note that on Windows, we +// cannot simply emit special characters and have the terminal change colors. +// This routine must actually emit the characters rather than return a string +// that would be colored when printed, as can be done on Linux. +void ColoredPrintf(GTestColor color, const char* fmt, ...) { + va_list args; + va_start(args, fmt); + +#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS || GTEST_OS_IOS + const bool use_color = false; +#else + static const bool in_color_mode = + ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); + const bool use_color = in_color_mode && (color != COLOR_DEFAULT); +#endif // GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN || GTEST_OS_ZOS + // The '!= 0' comparison is necessary to satisfy MSVC 7.1. + + if (!use_color) { + vprintf(fmt, args); + va_end(args); + return; + } + +#if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + const HANDLE stdout_handle = GetStdHandle(STD_OUTPUT_HANDLE); + + // Gets the current text color. + CONSOLE_SCREEN_BUFFER_INFO buffer_info; + GetConsoleScreenBufferInfo(stdout_handle, &buffer_info); + const WORD old_color_attrs = buffer_info.wAttributes; + + // We need to flush the stream buffers into the console before each + // SetConsoleTextAttribute call lest it affect the text that is already + // printed but has not yet reached the console. + fflush(stdout); + SetConsoleTextAttribute(stdout_handle, + GetColorAttribute(color) | FOREGROUND_INTENSITY); + vprintf(fmt, args); + + fflush(stdout); + // Restores the text color. + SetConsoleTextAttribute(stdout_handle, old_color_attrs); +#else + printf("\033[0;3%sm", GetAnsiColorCode(color)); + vprintf(fmt, args); + printf("\033[m"); // Resets the terminal to default. +#endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE + va_end(args); +} + +// Text printed in Google Test's text output and --gunit_list_tests +// output to label the type parameter and value parameter for a test. +static const char kTypeParamLabel[] = "TypeParam"; +static const char kValueParamLabel[] = "GetParam()"; + +void PrintFullTestCommentIfPresent(const TestInfo& test_info) { + const char* const type_param = test_info.type_param(); + const char* const value_param = test_info.value_param(); + + if (type_param != NULL || value_param != NULL) { + printf(", where "); + if (type_param != NULL) { + printf("%s = %s", kTypeParamLabel, type_param); + if (value_param != NULL) + printf(" and "); + } + if (value_param != NULL) { + printf("%s = %s", kValueParamLabel, value_param); + } + } +} + +// This class implements the TestEventListener interface. +// +// Class PrettyUnitTestResultPrinter is copyable. +class PrettyUnitTestResultPrinter : public TestEventListener { + public: + PrettyUnitTestResultPrinter() {} + static void PrintTestName(const char * test_case, const char * test) { + printf("%s.%s", test_case, test); + } + + // The following methods override what's in the TestEventListener class. + virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} + virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); + virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); + virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} + virtual void OnTestCaseStart(const TestCase& test_case); + virtual void OnTestStart(const TestInfo& test_info); + virtual void OnTestPartResult(const TestPartResult& result); + virtual void OnTestEnd(const TestInfo& test_info); + virtual void OnTestCaseEnd(const TestCase& test_case); + virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); + virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} + virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); + virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} + + private: + static void PrintFailedTests(const UnitTest& unit_test); +}; + + // Fired before each iteration of tests starts. +void PrettyUnitTestResultPrinter::OnTestIterationStart( + const UnitTest& unit_test, int iteration) { + if (GTEST_FLAG(repeat) != 1) + printf("\nRepeating all tests (iteration %d) . . .\n\n", iteration + 1); + + const char* const filter = GTEST_FLAG(filter).c_str(); + + // Prints the filter if it's not *. This reminds the user that some + // tests may be skipped. + if (!String::CStringEquals(filter, kUniversalFilter)) { + ColoredPrintf(COLOR_YELLOW, + "Note: %s filter = %s\n", GTEST_NAME_, filter); + } + + if (internal::ShouldShard(kTestTotalShards, kTestShardIndex, false)) { + const Int32 shard_index = Int32FromEnvOrDie(kTestShardIndex, -1); + ColoredPrintf(COLOR_YELLOW, + "Note: This is test shard %d of %s.\n", + static_cast(shard_index) + 1, + internal::posix::GetEnv(kTestTotalShards)); + } + + if (GTEST_FLAG(shuffle)) { + ColoredPrintf(COLOR_YELLOW, + "Note: Randomizing tests' orders with a seed of %d .\n", + unit_test.random_seed()); + } + + ColoredPrintf(COLOR_GREEN, "[==========] "); + printf("Running %s from %s.\n", + FormatTestCount(unit_test.test_to_run_count()).c_str(), + FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart( + const UnitTest& /*unit_test*/) { + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("Global test environment set-up.\n"); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) { + const std::string counts = + FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("%s from %s", counts.c_str(), test_case.name()); + if (test_case.type_param() == NULL) { + printf("\n"); + } else { + printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); + } + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) { + ColoredPrintf(COLOR_GREEN, "[ RUN ] "); + PrintTestName(test_info.test_case_name(), test_info.name()); + printf("\n"); + fflush(stdout); +} + +// Called after an assertion failure. +void PrettyUnitTestResultPrinter::OnTestPartResult( + const TestPartResult& result) { + // If the test part succeeded, we don't need to do anything. + if (result.type() == TestPartResult::kSuccess) + return; + + // Print failure message from the assertion (e.g. expected this and got that). + PrintTestPartResult(result); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) { + if (test_info.result()->Passed()) { + ColoredPrintf(COLOR_GREEN, "[ OK ] "); + } else { + ColoredPrintf(COLOR_RED, "[ FAILED ] "); + } + PrintTestName(test_info.test_case_name(), test_info.name()); + if (test_info.result()->Failed()) + PrintFullTestCommentIfPresent(test_info); + + if (GTEST_FLAG(print_time)) { + printf(" (%s ms)\n", internal::StreamableToString( + test_info.result()->elapsed_time()).c_str()); + } else { + printf("\n"); + } + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) { + if (!GTEST_FLAG(print_time)) return; + + const std::string counts = + FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("%s from %s (%s ms total)\n\n", + counts.c_str(), test_case.name(), + internal::StreamableToString(test_case.elapsed_time()).c_str()); + fflush(stdout); +} + +void PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart( + const UnitTest& /*unit_test*/) { + ColoredPrintf(COLOR_GREEN, "[----------] "); + printf("Global test environment tear-down\n"); + fflush(stdout); +} + +// Internal helper for printing the list of failed tests. +void PrettyUnitTestResultPrinter::PrintFailedTests(const UnitTest& unit_test) { + const int failed_test_count = unit_test.failed_test_count(); + if (failed_test_count == 0) { + return; + } + + for (int i = 0; i < unit_test.total_test_case_count(); ++i) { + const TestCase& test_case = *unit_test.GetTestCase(i); + if (!test_case.should_run() || (test_case.failed_test_count() == 0)) { + continue; + } + for (int j = 0; j < test_case.total_test_count(); ++j) { + const TestInfo& test_info = *test_case.GetTestInfo(j); + if (!test_info.should_run() || test_info.result()->Passed()) { + continue; + } + ColoredPrintf(COLOR_RED, "[ FAILED ] "); + printf("%s.%s", test_case.name(), test_info.name()); + PrintFullTestCommentIfPresent(test_info); + printf("\n"); + } + } +} + +void PrettyUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, + int /*iteration*/) { + ColoredPrintf(COLOR_GREEN, "[==========] "); + printf("%s from %s ran.", + FormatTestCount(unit_test.test_to_run_count()).c_str(), + FormatTestCaseCount(unit_test.test_case_to_run_count()).c_str()); + if (GTEST_FLAG(print_time)) { + printf(" (%s ms total)", + internal::StreamableToString(unit_test.elapsed_time()).c_str()); + } + printf("\n"); + ColoredPrintf(COLOR_GREEN, "[ PASSED ] "); + printf("%s.\n", FormatTestCount(unit_test.successful_test_count()).c_str()); + + int num_failures = unit_test.failed_test_count(); + if (!unit_test.Passed()) { + const int failed_test_count = unit_test.failed_test_count(); + ColoredPrintf(COLOR_RED, "[ FAILED ] "); + printf("%s, listed below:\n", FormatTestCount(failed_test_count).c_str()); + PrintFailedTests(unit_test); + printf("\n%2d FAILED %s\n", num_failures, + num_failures == 1 ? "TEST" : "TESTS"); + } + + int num_disabled = unit_test.reportable_disabled_test_count(); + if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) { + if (!num_failures) { + printf("\n"); // Add a spacer if no FAILURE banner is displayed. + } + ColoredPrintf(COLOR_YELLOW, + " YOU HAVE %d DISABLED %s\n\n", + num_disabled, + num_disabled == 1 ? "TEST" : "TESTS"); + } + // Ensure that Google Test output is printed before, e.g., heapchecker output. + fflush(stdout); +} + +// End PrettyUnitTestResultPrinter + +// class TestEventRepeater +// +// This class forwards events to other event listeners. +class TestEventRepeater : public TestEventListener { + public: + TestEventRepeater() : forwarding_enabled_(true) {} + virtual ~TestEventRepeater(); + void Append(TestEventListener *listener); + TestEventListener* Release(TestEventListener* listener); + + // Controls whether events will be forwarded to listeners_. Set to false + // in death test child processes. + bool forwarding_enabled() const { return forwarding_enabled_; } + void set_forwarding_enabled(bool enable) { forwarding_enabled_ = enable; } + + virtual void OnTestProgramStart(const UnitTest& unit_test); + virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration); + virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test); + virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test); + virtual void OnTestCaseStart(const TestCase& test_case); + virtual void OnTestStart(const TestInfo& test_info); + virtual void OnTestPartResult(const TestPartResult& result); + virtual void OnTestEnd(const TestInfo& test_info); + virtual void OnTestCaseEnd(const TestCase& test_case); + virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test); + virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test); + virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); + virtual void OnTestProgramEnd(const UnitTest& unit_test); + + private: + // Controls whether events will be forwarded to listeners_. Set to false + // in death test child processes. + bool forwarding_enabled_; + // The list of listeners that receive events. + std::vector listeners_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventRepeater); +}; + +TestEventRepeater::~TestEventRepeater() { + ForEach(listeners_, Delete); +} + +void TestEventRepeater::Append(TestEventListener *listener) { + listeners_.push_back(listener); +} + +// TODO(vladl@google.com): Factor the search functionality into Vector::Find. +TestEventListener* TestEventRepeater::Release(TestEventListener *listener) { + for (size_t i = 0; i < listeners_.size(); ++i) { + if (listeners_[i] == listener) { + listeners_.erase(listeners_.begin() + i); + return listener; + } + } + + return NULL; +} + +// Since most methods are very similar, use macros to reduce boilerplate. +// This defines a member that forwards the call to all listeners. +#define GTEST_REPEATER_METHOD_(Name, Type) \ +void TestEventRepeater::Name(const Type& parameter) { \ + if (forwarding_enabled_) { \ + for (size_t i = 0; i < listeners_.size(); i++) { \ + listeners_[i]->Name(parameter); \ + } \ + } \ +} +// This defines a member that forwards the call to all listeners in reverse +// order. +#define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \ +void TestEventRepeater::Name(const Type& parameter) { \ + if (forwarding_enabled_) { \ + for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { \ + listeners_[i]->Name(parameter); \ + } \ + } \ +} + +GTEST_REPEATER_METHOD_(OnTestProgramStart, UnitTest) +GTEST_REPEATER_METHOD_(OnEnvironmentsSetUpStart, UnitTest) +GTEST_REPEATER_METHOD_(OnTestCaseStart, TestCase) +GTEST_REPEATER_METHOD_(OnTestStart, TestInfo) +GTEST_REPEATER_METHOD_(OnTestPartResult, TestPartResult) +GTEST_REPEATER_METHOD_(OnEnvironmentsTearDownStart, UnitTest) +GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsSetUpEnd, UnitTest) +GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsTearDownEnd, UnitTest) +GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo) +GTEST_REVERSE_REPEATER_METHOD_(OnTestCaseEnd, TestCase) +GTEST_REVERSE_REPEATER_METHOD_(OnTestProgramEnd, UnitTest) + +#undef GTEST_REPEATER_METHOD_ +#undef GTEST_REVERSE_REPEATER_METHOD_ + +void TestEventRepeater::OnTestIterationStart(const UnitTest& unit_test, + int iteration) { + if (forwarding_enabled_) { + for (size_t i = 0; i < listeners_.size(); i++) { + listeners_[i]->OnTestIterationStart(unit_test, iteration); + } + } +} + +void TestEventRepeater::OnTestIterationEnd(const UnitTest& unit_test, + int iteration) { + if (forwarding_enabled_) { + for (int i = static_cast(listeners_.size()) - 1; i >= 0; i--) { + listeners_[i]->OnTestIterationEnd(unit_test, iteration); + } + } +} + +// End TestEventRepeater + +// This class generates an XML output file. +class XmlUnitTestResultPrinter : public EmptyTestEventListener { + public: + explicit XmlUnitTestResultPrinter(const char* output_file); + + virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration); + + private: + // Is c a whitespace character that is normalized to a space character + // when it appears in an XML attribute value? + static bool IsNormalizableWhitespace(char c) { + return c == 0x9 || c == 0xA || c == 0xD; + } + + // May c appear in a well-formed XML document? + static bool IsValidXmlCharacter(char c) { + return IsNormalizableWhitespace(c) || c >= 0x20; + } + + // Returns an XML-escaped copy of the input string str. If + // is_attribute is true, the text is meant to appear as an attribute + // value, and normalizable whitespace is preserved by replacing it + // with character references. + static std::string EscapeXml(const std::string& str, bool is_attribute); + + // Returns the given string with all characters invalid in XML removed. + static std::string RemoveInvalidXmlCharacters(const std::string& str); + + // Convenience wrapper around EscapeXml when str is an attribute value. + static std::string EscapeXmlAttribute(const std::string& str) { + return EscapeXml(str, true); + } + + // Convenience wrapper around EscapeXml when str is not an attribute value. + static std::string EscapeXmlText(const char* str) { + return EscapeXml(str, false); + } + + // Verifies that the given attribute belongs to the given element and + // streams the attribute as XML. + static void OutputXmlAttribute(std::ostream* stream, + const std::string& element_name, + const std::string& name, + const std::string& value); + + // Streams an XML CDATA section, escaping invalid CDATA sequences as needed. + static void OutputXmlCDataSection(::std::ostream* stream, const char* data); + + // Streams an XML representation of a TestInfo object. + static void OutputXmlTestInfo(::std::ostream* stream, + const char* test_case_name, + const TestInfo& test_info); + + // Prints an XML representation of a TestCase object + static void PrintXmlTestCase(::std::ostream* stream, + const TestCase& test_case); + + // Prints an XML summary of unit_test to output stream out. + static void PrintXmlUnitTest(::std::ostream* stream, + const UnitTest& unit_test); + + // Produces a string representing the test properties in a result as space + // delimited XML attributes based on the property key="value" pairs. + // When the std::string is not empty, it includes a space at the beginning, + // to delimit this attribute from prior attributes. + static std::string TestPropertiesAsXmlAttributes(const TestResult& result); + + // The output file. + const std::string output_file_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(XmlUnitTestResultPrinter); +}; + +// Creates a new XmlUnitTestResultPrinter. +XmlUnitTestResultPrinter::XmlUnitTestResultPrinter(const char* output_file) + : output_file_(output_file) { + if (output_file_.c_str() == NULL || output_file_.empty()) { + fprintf(stderr, "XML output file may not be null\n"); + fflush(stderr); + exit(EXIT_FAILURE); + } +} + +// Called after the unit test ends. +void XmlUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, + int /*iteration*/) { + FILE* xmlout = NULL; + FilePath output_file(output_file_); + FilePath output_dir(output_file.RemoveFileName()); + + if (output_dir.CreateDirectoriesRecursively()) { + xmlout = posix::FOpen(output_file_.c_str(), "w"); + } + if (xmlout == NULL) { + // TODO(wan): report the reason of the failure. + // + // We don't do it for now as: + // + // 1. There is no urgent need for it. + // 2. It's a bit involved to make the errno variable thread-safe on + // all three operating systems (Linux, Windows, and Mac OS). + // 3. To interpret the meaning of errno in a thread-safe way, + // we need the strerror_r() function, which is not available on + // Windows. + fprintf(stderr, + "Unable to open file \"%s\"\n", + output_file_.c_str()); + fflush(stderr); + exit(EXIT_FAILURE); + } + std::stringstream stream; + PrintXmlUnitTest(&stream, unit_test); + fprintf(xmlout, "%s", StringStreamToString(&stream).c_str()); + fclose(xmlout); +} + +// Returns an XML-escaped copy of the input string str. If is_attribute +// is true, the text is meant to appear as an attribute value, and +// normalizable whitespace is preserved by replacing it with character +// references. +// +// Invalid XML characters in str, if any, are stripped from the output. +// It is expected that most, if not all, of the text processed by this +// module will consist of ordinary English text. +// If this module is ever modified to produce version 1.1 XML output, +// most invalid characters can be retained using character references. +// TODO(wan): It might be nice to have a minimally invasive, human-readable +// escaping scheme for invalid characters, rather than dropping them. +std::string XmlUnitTestResultPrinter::EscapeXml( + const std::string& str, bool is_attribute) { + Message m; + + for (size_t i = 0; i < str.size(); ++i) { + const char ch = str[i]; + switch (ch) { + case '<': + m << "<"; + break; + case '>': + m << ">"; + break; + case '&': + m << "&"; + break; + case '\'': + if (is_attribute) + m << "'"; + else + m << '\''; + break; + case '"': + if (is_attribute) + m << """; + else + m << '"'; + break; + default: + if (IsValidXmlCharacter(ch)) { + if (is_attribute && IsNormalizableWhitespace(ch)) + m << "&#x" << String::FormatByte(static_cast(ch)) + << ";"; + else + m << ch; + } + break; + } + } + + return m.GetString(); +} + +// Returns the given string with all characters invalid in XML removed. +// Currently invalid characters are dropped from the string. An +// alternative is to replace them with certain characters such as . or ?. +std::string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters( + const std::string& str) { + std::string output; + output.reserve(str.size()); + for (std::string::const_iterator it = str.begin(); it != str.end(); ++it) + if (IsValidXmlCharacter(*it)) + output.push_back(*it); + + return output; +} + +// The following routines generate an XML representation of a UnitTest +// object. +// +// This is how Google Test concepts map to the DTD: +// +// <-- corresponds to a UnitTest object +// <-- corresponds to a TestCase object +// <-- corresponds to a TestInfo object +// ... +// ... +// ... +// <-- individual assertion failures +// +// +// + +// Formats the given time in milliseconds as seconds. +std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { + ::std::stringstream ss; + ss << ms/1000.0; + return ss.str(); +} + +// Converts the given epoch time in milliseconds to a date string in the ISO +// 8601 format, without the timezone information. +std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms) { + // Using non-reentrant version as localtime_r is not portable. + time_t seconds = static_cast(ms / 1000); +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4996) // Temporarily disables warning 4996 + // (function or variable may be unsafe). + const struct tm* const time_struct = localtime(&seconds); // NOLINT +# pragma warning(pop) // Restores the warning state again. +#else + const struct tm* const time_struct = localtime(&seconds); // NOLINT +#endif + if (time_struct == NULL) + return ""; // Invalid ms value + + // YYYY-MM-DDThh:mm:ss + return StreamableToString(time_struct->tm_year + 1900) + "-" + + String::FormatIntWidth2(time_struct->tm_mon + 1) + "-" + + String::FormatIntWidth2(time_struct->tm_mday) + "T" + + String::FormatIntWidth2(time_struct->tm_hour) + ":" + + String::FormatIntWidth2(time_struct->tm_min) + ":" + + String::FormatIntWidth2(time_struct->tm_sec); +} + +// Streams an XML CDATA section, escaping invalid CDATA sequences as needed. +void XmlUnitTestResultPrinter::OutputXmlCDataSection(::std::ostream* stream, + const char* data) { + const char* segment = data; + *stream << ""); + if (next_segment != NULL) { + stream->write( + segment, static_cast(next_segment - segment)); + *stream << "]]>]]>"); + } else { + *stream << segment; + break; + } + } + *stream << "]]>"; +} + +void XmlUnitTestResultPrinter::OutputXmlAttribute( + std::ostream* stream, + const std::string& element_name, + const std::string& name, + const std::string& value) { + const std::vector& allowed_names = + GetReservedAttributesForElement(element_name); + + GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) != + allowed_names.end()) + << "Attribute " << name << " is not allowed for element <" << element_name + << ">."; + + *stream << " " << name << "=\"" << EscapeXmlAttribute(value) << "\""; +} + +// Prints an XML representation of a TestInfo object. +// TODO(wan): There is also value in printing properties with the plain printer. +void XmlUnitTestResultPrinter::OutputXmlTestInfo(::std::ostream* stream, + const char* test_case_name, + const TestInfo& test_info) { + const TestResult& result = *test_info.result(); + const std::string kTestcase = "testcase"; + + *stream << " \n"; + } + const string location = internal::FormatCompilerIndependentFileLocation( + part.file_name(), part.line_number()); + const string summary = location + "\n" + part.summary(); + *stream << " "; + const string detail = location + "\n" + part.message(); + OutputXmlCDataSection(stream, RemoveInvalidXmlCharacters(detail).c_str()); + *stream << "\n"; + } + } + + if (failures == 0) + *stream << " />\n"; + else + *stream << " \n"; +} + +// Prints an XML representation of a TestCase object +void XmlUnitTestResultPrinter::PrintXmlTestCase(std::ostream* stream, + const TestCase& test_case) { + const std::string kTestsuite = "testsuite"; + *stream << " <" << kTestsuite; + OutputXmlAttribute(stream, kTestsuite, "name", test_case.name()); + OutputXmlAttribute(stream, kTestsuite, "tests", + StreamableToString(test_case.reportable_test_count())); + OutputXmlAttribute(stream, kTestsuite, "failures", + StreamableToString(test_case.failed_test_count())); + OutputXmlAttribute( + stream, kTestsuite, "disabled", + StreamableToString(test_case.reportable_disabled_test_count())); + OutputXmlAttribute(stream, kTestsuite, "errors", "0"); + OutputXmlAttribute(stream, kTestsuite, "time", + FormatTimeInMillisAsSeconds(test_case.elapsed_time())); + *stream << TestPropertiesAsXmlAttributes(test_case.ad_hoc_test_result()) + << ">\n"; + + for (int i = 0; i < test_case.total_test_count(); ++i) { + if (test_case.GetTestInfo(i)->is_reportable()) + OutputXmlTestInfo(stream, test_case.name(), *test_case.GetTestInfo(i)); + } + *stream << " \n"; +} + +// Prints an XML summary of unit_test to output stream out. +void XmlUnitTestResultPrinter::PrintXmlUnitTest(std::ostream* stream, + const UnitTest& unit_test) { + const std::string kTestsuites = "testsuites"; + + *stream << "\n"; + *stream << "<" << kTestsuites; + + OutputXmlAttribute(stream, kTestsuites, "tests", + StreamableToString(unit_test.reportable_test_count())); + OutputXmlAttribute(stream, kTestsuites, "failures", + StreamableToString(unit_test.failed_test_count())); + OutputXmlAttribute( + stream, kTestsuites, "disabled", + StreamableToString(unit_test.reportable_disabled_test_count())); + OutputXmlAttribute(stream, kTestsuites, "errors", "0"); + OutputXmlAttribute( + stream, kTestsuites, "timestamp", + FormatEpochTimeInMillisAsIso8601(unit_test.start_timestamp())); + OutputXmlAttribute(stream, kTestsuites, "time", + FormatTimeInMillisAsSeconds(unit_test.elapsed_time())); + + if (GTEST_FLAG(shuffle)) { + OutputXmlAttribute(stream, kTestsuites, "random_seed", + StreamableToString(unit_test.random_seed())); + } + + *stream << TestPropertiesAsXmlAttributes(unit_test.ad_hoc_test_result()); + + OutputXmlAttribute(stream, kTestsuites, "name", "AllTests"); + *stream << ">\n"; + + for (int i = 0; i < unit_test.total_test_case_count(); ++i) { + if (unit_test.GetTestCase(i)->reportable_test_count() > 0) + PrintXmlTestCase(stream, *unit_test.GetTestCase(i)); + } + *stream << "\n"; +} + +// Produces a string representing the test properties in a result as space +// delimited XML attributes based on the property key="value" pairs. +std::string XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( + const TestResult& result) { + Message attributes; + for (int i = 0; i < result.test_property_count(); ++i) { + const TestProperty& property = result.GetTestProperty(i); + attributes << " " << property.key() << "=" + << "\"" << EscapeXmlAttribute(property.value()) << "\""; + } + return attributes.GetString(); +} + +// End XmlUnitTestResultPrinter + +#if GTEST_CAN_STREAM_RESULTS_ + +// Checks if str contains '=', '&', '%' or '\n' characters. If yes, +// replaces them by "%xx" where xx is their hexadecimal value. For +// example, replaces "=" with "%3D". This algorithm is O(strlen(str)) +// in both time and space -- important as the input str may contain an +// arbitrarily long test failure message and stack trace. +string StreamingListener::UrlEncode(const char* str) { + string result; + result.reserve(strlen(str) + 1); + for (char ch = *str; ch != '\0'; ch = *++str) { + switch (ch) { + case '%': + case '=': + case '&': + case '\n': + result.append("%" + String::FormatByte(static_cast(ch))); + break; + default: + result.push_back(ch); + break; + } + } + return result; +} + +void StreamingListener::SocketWriter::MakeConnection() { + GTEST_CHECK_(sockfd_ == -1) + << "MakeConnection() can't be called when there is already a connection."; + + addrinfo hints; + memset(&hints, 0, sizeof(hints)); + hints.ai_family = AF_UNSPEC; // To allow both IPv4 and IPv6 addresses. + hints.ai_socktype = SOCK_STREAM; + addrinfo* servinfo = NULL; + + // Use the getaddrinfo() to get a linked list of IP addresses for + // the given host name. + const int error_num = getaddrinfo( + host_name_.c_str(), port_num_.c_str(), &hints, &servinfo); + if (error_num != 0) { + GTEST_LOG_(WARNING) << "stream_result_to: getaddrinfo() failed: " + << gai_strerror(error_num); + } + + // Loop through all the results and connect to the first we can. + for (addrinfo* cur_addr = servinfo; sockfd_ == -1 && cur_addr != NULL; + cur_addr = cur_addr->ai_next) { + sockfd_ = socket( + cur_addr->ai_family, cur_addr->ai_socktype, cur_addr->ai_protocol); + if (sockfd_ != -1) { + // Connect the client socket to the server socket. + if (connect(sockfd_, cur_addr->ai_addr, cur_addr->ai_addrlen) == -1) { + close(sockfd_); + sockfd_ = -1; + } + } + } + + freeaddrinfo(servinfo); // all done with this structure + + if (sockfd_ == -1) { + GTEST_LOG_(WARNING) << "stream_result_to: failed to connect to " + << host_name_ << ":" << port_num_; + } +} + +// End of class Streaming Listener +#endif // GTEST_CAN_STREAM_RESULTS__ + +// Class ScopedTrace + +// Pushes the given source file location and message onto a per-thread +// trace stack maintained by Google Test. +ScopedTrace::ScopedTrace(const char* file, int line, const Message& message) + GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) { + TraceInfo trace; + trace.file = file; + trace.line = line; + trace.message = message.GetString(); + + UnitTest::GetInstance()->PushGTestTrace(trace); +} + +// Pops the info pushed by the c'tor. +ScopedTrace::~ScopedTrace() + GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) { + UnitTest::GetInstance()->PopGTestTrace(); +} + + +// class OsStackTraceGetter + +// Returns the current OS stack trace as an std::string. Parameters: +// +// max_depth - the maximum number of stack frames to be included +// in the trace. +// skip_count - the number of top frames to be skipped; doesn't count +// against max_depth. +// +string OsStackTraceGetter::CurrentStackTrace(int /* max_depth */, + int /* skip_count */) + GTEST_LOCK_EXCLUDED_(mutex_) { + return ""; +} + +void OsStackTraceGetter::UponLeavingGTest() + GTEST_LOCK_EXCLUDED_(mutex_) { +} + +const char* const +OsStackTraceGetter::kElidedFramesMarker = + "... " GTEST_NAME_ " internal frames ..."; + +// A helper class that creates the premature-exit file in its +// constructor and deletes the file in its destructor. +class ScopedPrematureExitFile { + public: + explicit ScopedPrematureExitFile(const char* premature_exit_filepath) + : premature_exit_filepath_(premature_exit_filepath) { + // If a path to the premature-exit file is specified... + if (premature_exit_filepath != NULL && *premature_exit_filepath != '\0') { + // create the file with a single "0" character in it. I/O + // errors are ignored as there's nothing better we can do and we + // don't want to fail the test because of this. + FILE* pfile = posix::FOpen(premature_exit_filepath, "w"); + fwrite("0", 1, 1, pfile); + fclose(pfile); + } + } + + ~ScopedPrematureExitFile() { + if (premature_exit_filepath_ != NULL && *premature_exit_filepath_ != '\0') { + remove(premature_exit_filepath_); + } + } + + private: + const char* const premature_exit_filepath_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedPrematureExitFile); +}; + +} // namespace internal + +// class TestEventListeners + +TestEventListeners::TestEventListeners() + : repeater_(new internal::TestEventRepeater()), + default_result_printer_(NULL), + default_xml_generator_(NULL) { +} + +TestEventListeners::~TestEventListeners() { delete repeater_; } + +// Returns the standard listener responsible for the default console +// output. Can be removed from the listeners list to shut down default +// console output. Note that removing this object from the listener list +// with Release transfers its ownership to the user. +void TestEventListeners::Append(TestEventListener* listener) { + repeater_->Append(listener); +} + +// Removes the given event listener from the list and returns it. It then +// becomes the caller's responsibility to delete the listener. Returns +// NULL if the listener is not found in the list. +TestEventListener* TestEventListeners::Release(TestEventListener* listener) { + if (listener == default_result_printer_) + default_result_printer_ = NULL; + else if (listener == default_xml_generator_) + default_xml_generator_ = NULL; + return repeater_->Release(listener); +} + +// Returns repeater that broadcasts the TestEventListener events to all +// subscribers. +TestEventListener* TestEventListeners::repeater() { return repeater_; } + +// Sets the default_result_printer attribute to the provided listener. +// The listener is also added to the listener list and previous +// default_result_printer is removed from it and deleted. The listener can +// also be NULL in which case it will not be added to the list. Does +// nothing if the previous and the current listener objects are the same. +void TestEventListeners::SetDefaultResultPrinter(TestEventListener* listener) { + if (default_result_printer_ != listener) { + // It is an error to pass this method a listener that is already in the + // list. + delete Release(default_result_printer_); + default_result_printer_ = listener; + if (listener != NULL) + Append(listener); + } +} + +// Sets the default_xml_generator attribute to the provided listener. The +// listener is also added to the listener list and previous +// default_xml_generator is removed from it and deleted. The listener can +// also be NULL in which case it will not be added to the list. Does +// nothing if the previous and the current listener objects are the same. +void TestEventListeners::SetDefaultXmlGenerator(TestEventListener* listener) { + if (default_xml_generator_ != listener) { + // It is an error to pass this method a listener that is already in the + // list. + delete Release(default_xml_generator_); + default_xml_generator_ = listener; + if (listener != NULL) + Append(listener); + } +} + +// Controls whether events will be forwarded by the repeater to the +// listeners in the list. +bool TestEventListeners::EventForwardingEnabled() const { + return repeater_->forwarding_enabled(); +} + +void TestEventListeners::SuppressEventForwarding() { + repeater_->set_forwarding_enabled(false); +} + +// class UnitTest + +// Gets the singleton UnitTest object. The first time this method is +// called, a UnitTest object is constructed and returned. Consecutive +// calls will return the same object. +// +// We don't protect this under mutex_ as a user is not supposed to +// call this before main() starts, from which point on the return +// value will never change. +UnitTest* UnitTest::GetInstance() { + // When compiled with MSVC 7.1 in optimized mode, destroying the + // UnitTest object upon exiting the program messes up the exit code, + // causing successful tests to appear failed. We have to use a + // different implementation in this case to bypass the compiler bug. + // This implementation makes the compiler happy, at the cost of + // leaking the UnitTest object. + + // CodeGear C++Builder insists on a public destructor for the + // default implementation. Use this implementation to keep good OO + // design with private destructor. + +#if (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) + static UnitTest* const instance = new UnitTest; + return instance; +#else + static UnitTest instance; + return &instance; +#endif // (_MSC_VER == 1310 && !defined(_DEBUG)) || defined(__BORLANDC__) +} + +// Gets the number of successful test cases. +int UnitTest::successful_test_case_count() const { + return impl()->successful_test_case_count(); +} + +// Gets the number of failed test cases. +int UnitTest::failed_test_case_count() const { + return impl()->failed_test_case_count(); +} + +// Gets the number of all test cases. +int UnitTest::total_test_case_count() const { + return impl()->total_test_case_count(); +} + +// Gets the number of all test cases that contain at least one test +// that should run. +int UnitTest::test_case_to_run_count() const { + return impl()->test_case_to_run_count(); +} + +// Gets the number of successful tests. +int UnitTest::successful_test_count() const { + return impl()->successful_test_count(); +} + +// Gets the number of failed tests. +int UnitTest::failed_test_count() const { return impl()->failed_test_count(); } + +// Gets the number of disabled tests that will be reported in the XML report. +int UnitTest::reportable_disabled_test_count() const { + return impl()->reportable_disabled_test_count(); +} + +// Gets the number of disabled tests. +int UnitTest::disabled_test_count() const { + return impl()->disabled_test_count(); +} + +// Gets the number of tests to be printed in the XML report. +int UnitTest::reportable_test_count() const { + return impl()->reportable_test_count(); +} + +// Gets the number of all tests. +int UnitTest::total_test_count() const { return impl()->total_test_count(); } + +// Gets the number of tests that should run. +int UnitTest::test_to_run_count() const { return impl()->test_to_run_count(); } + +// Gets the time of the test program start, in ms from the start of the +// UNIX epoch. +internal::TimeInMillis UnitTest::start_timestamp() const { + return impl()->start_timestamp(); +} + +// Gets the elapsed time, in milliseconds. +internal::TimeInMillis UnitTest::elapsed_time() const { + return impl()->elapsed_time(); +} + +// Returns true iff the unit test passed (i.e. all test cases passed). +bool UnitTest::Passed() const { return impl()->Passed(); } + +// Returns true iff the unit test failed (i.e. some test case failed +// or something outside of all tests failed). +bool UnitTest::Failed() const { return impl()->Failed(); } + +// Gets the i-th test case among all the test cases. i can range from 0 to +// total_test_case_count() - 1. If i is not in that range, returns NULL. +const TestCase* UnitTest::GetTestCase(int i) const { + return impl()->GetTestCase(i); +} + +// Returns the TestResult containing information on test failures and +// properties logged outside of individual test cases. +const TestResult& UnitTest::ad_hoc_test_result() const { + return *impl()->ad_hoc_test_result(); +} + +// Gets the i-th test case among all the test cases. i can range from 0 to +// total_test_case_count() - 1. If i is not in that range, returns NULL. +TestCase* UnitTest::GetMutableTestCase(int i) { + return impl()->GetMutableTestCase(i); +} + +// Returns the list of event listeners that can be used to track events +// inside Google Test. +TestEventListeners& UnitTest::listeners() { + return *impl()->listeners(); +} + +// Registers and returns a global test environment. When a test +// program is run, all global test environments will be set-up in the +// order they were registered. After all tests in the program have +// finished, all global test environments will be torn-down in the +// *reverse* order they were registered. +// +// The UnitTest object takes ownership of the given environment. +// +// We don't protect this under mutex_, as we only support calling it +// from the main thread. +Environment* UnitTest::AddEnvironment(Environment* env) { + if (env == NULL) { + return NULL; + } + + impl_->environments().push_back(env); + return env; +} + +// Adds a TestPartResult to the current TestResult object. All Google Test +// assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) eventually call +// this to report their results. The user code should use the +// assertion macros instead of calling this directly. +void UnitTest::AddTestPartResult( + TestPartResult::Type result_type, + const char* file_name, + int line_number, + const std::string& message, + const std::string& os_stack_trace) GTEST_LOCK_EXCLUDED_(mutex_) { + Message msg; + msg << message; + + internal::MutexLock lock(&mutex_); + if (impl_->gtest_trace_stack().size() > 0) { + msg << "\n" << GTEST_NAME_ << " trace:"; + + for (int i = static_cast(impl_->gtest_trace_stack().size()); + i > 0; --i) { + const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1]; + msg << "\n" << internal::FormatFileLocation(trace.file, trace.line) + << " " << trace.message; + } + } + + if (os_stack_trace.c_str() != NULL && !os_stack_trace.empty()) { + msg << internal::kStackTraceMarker << os_stack_trace; + } + + const TestPartResult result = + TestPartResult(result_type, file_name, line_number, + msg.GetString().c_str()); + impl_->GetTestPartResultReporterForCurrentThread()-> + ReportTestPartResult(result); + + if (result_type != TestPartResult::kSuccess) { + // gtest_break_on_failure takes precedence over + // gtest_throw_on_failure. This allows a user to set the latter + // in the code (perhaps in order to use Google Test assertions + // with another testing framework) and specify the former on the + // command line for debugging. + if (GTEST_FLAG(break_on_failure)) { +#if GTEST_OS_WINDOWS + // Using DebugBreak on Windows allows gtest to still break into a debugger + // when a failure happens and both the --gtest_break_on_failure and + // the --gtest_catch_exceptions flags are specified. + DebugBreak(); +#else + // Dereference NULL through a volatile pointer to prevent the compiler + // from removing. We use this rather than abort() or __builtin_trap() for + // portability: Symbian doesn't implement abort() well, and some debuggers + // don't correctly trap abort(). + *static_cast(NULL) = 1; +#endif // GTEST_OS_WINDOWS + } else if (GTEST_FLAG(throw_on_failure)) { +#if GTEST_HAS_EXCEPTIONS + throw internal::GoogleTestFailureException(result); +#else + // We cannot call abort() as it generates a pop-up in debug mode + // that cannot be suppressed in VC 7.1 or below. + exit(1); +#endif + } + } +} + +// Adds a TestProperty to the current TestResult object when invoked from +// inside a test, to current TestCase's ad_hoc_test_result_ when invoked +// from SetUpTestCase or TearDownTestCase, or to the global property set +// when invoked elsewhere. If the result already contains a property with +// the same key, the value will be updated. +void UnitTest::RecordProperty(const std::string& key, + const std::string& value) { + impl_->RecordProperty(TestProperty(key, value)); +} + +// Runs all tests in this UnitTest object and prints the result. +// Returns 0 if successful, or 1 otherwise. +// +// We don't protect this under mutex_, as we only support calling it +// from the main thread. +int UnitTest::Run() { + const bool in_death_test_child_process = + internal::GTEST_FLAG(internal_run_death_test).length() > 0; + + // Google Test implements this protocol for catching that a test + // program exits before returning control to Google Test: + // + // 1. Upon start, Google Test creates a file whose absolute path + // is specified by the environment variable + // TEST_PREMATURE_EXIT_FILE. + // 2. When Google Test has finished its work, it deletes the file. + // + // This allows a test runner to set TEST_PREMATURE_EXIT_FILE before + // running a Google-Test-based test program and check the existence + // of the file at the end of the test execution to see if it has + // exited prematurely. + + // If we are in the child process of a death test, don't + // create/delete the premature exit file, as doing so is unnecessary + // and will confuse the parent process. Otherwise, create/delete + // the file upon entering/leaving this function. If the program + // somehow exits before this function has a chance to return, the + // premature-exit file will be left undeleted, causing a test runner + // that understands the premature-exit-file protocol to report the + // test as having failed. + const internal::ScopedPrematureExitFile premature_exit_file( + in_death_test_child_process ? + NULL : internal::posix::GetEnv("TEST_PREMATURE_EXIT_FILE")); + + // Captures the value of GTEST_FLAG(catch_exceptions). This value will be + // used for the duration of the program. + impl()->set_catch_exceptions(GTEST_FLAG(catch_exceptions)); + +#if GTEST_HAS_SEH + // Either the user wants Google Test to catch exceptions thrown by the + // tests or this is executing in the context of death test child + // process. In either case the user does not want to see pop-up dialogs + // about crashes - they are expected. + if (impl()->catch_exceptions() || in_death_test_child_process) { +# if !GTEST_OS_WINDOWS_MOBILE + // SetErrorMode doesn't exist on CE. + SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOALIGNMENTFAULTEXCEPT | + SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX); +# endif // !GTEST_OS_WINDOWS_MOBILE + +# if (defined(_MSC_VER) || GTEST_OS_WINDOWS_MINGW) && !GTEST_OS_WINDOWS_MOBILE + // Death test children can be terminated with _abort(). On Windows, + // _abort() can show a dialog with a warning message. This forces the + // abort message to go to stderr instead. + _set_error_mode(_OUT_TO_STDERR); +# endif + +# if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE + // In the debug version, Visual Studio pops up a separate dialog + // offering a choice to debug the aborted program. We need to suppress + // this dialog or it will pop up for every EXPECT/ASSERT_DEATH statement + // executed. Google Test will notify the user of any unexpected + // failure via stderr. + // + // VC++ doesn't define _set_abort_behavior() prior to the version 8.0. + // Users of prior VC versions shall suffer the agony and pain of + // clicking through the countless debug dialogs. + // TODO(vladl@google.com): find a way to suppress the abort dialog() in the + // debug mode when compiled with VC 7.1 or lower. + if (!GTEST_FLAG(break_on_failure)) + _set_abort_behavior( + 0x0, // Clear the following flags: + _WRITE_ABORT_MSG | _CALL_REPORTFAULT); // pop-up window, core dump. +# endif + } +#endif // GTEST_HAS_SEH + + return internal::HandleExceptionsInMethodIfSupported( + impl(), + &internal::UnitTestImpl::RunAllTests, + "auxiliary test code (environments or event listeners)") ? 0 : 1; +} + +// Returns the working directory when the first TEST() or TEST_F() was +// executed. +const char* UnitTest::original_working_dir() const { + return impl_->original_working_dir_.c_str(); +} + +// Returns the TestCase object for the test that's currently running, +// or NULL if no test is running. +const TestCase* UnitTest::current_test_case() const + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + return impl_->current_test_case(); +} + +// Returns the TestInfo object for the test that's currently running, +// or NULL if no test is running. +const TestInfo* UnitTest::current_test_info() const + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + return impl_->current_test_info(); +} + +// Returns the random seed used at the start of the current test run. +int UnitTest::random_seed() const { return impl_->random_seed(); } + +#if GTEST_HAS_PARAM_TEST +// Returns ParameterizedTestCaseRegistry object used to keep track of +// value-parameterized tests and instantiate and register them. +internal::ParameterizedTestCaseRegistry& + UnitTest::parameterized_test_registry() + GTEST_LOCK_EXCLUDED_(mutex_) { + return impl_->parameterized_test_registry(); +} +#endif // GTEST_HAS_PARAM_TEST + +// Creates an empty UnitTest. +UnitTest::UnitTest() { + impl_ = new internal::UnitTestImpl(this); +} + +// Destructor of UnitTest. +UnitTest::~UnitTest() { + delete impl_; +} + +// Pushes a trace defined by SCOPED_TRACE() on to the per-thread +// Google Test trace stack. +void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + impl_->gtest_trace_stack().push_back(trace); +} + +// Pops a trace from the per-thread Google Test trace stack. +void UnitTest::PopGTestTrace() + GTEST_LOCK_EXCLUDED_(mutex_) { + internal::MutexLock lock(&mutex_); + impl_->gtest_trace_stack().pop_back(); +} + +namespace internal { + +UnitTestImpl::UnitTestImpl(UnitTest* parent) + : parent_(parent), +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4355) // Temporarily disables warning 4355 + // (using this in initializer). + default_global_test_part_result_reporter_(this), + default_per_thread_test_part_result_reporter_(this), +# pragma warning(pop) // Restores the warning state again. +#else + default_global_test_part_result_reporter_(this), + default_per_thread_test_part_result_reporter_(this), +#endif // _MSC_VER + global_test_part_result_repoter_( + &default_global_test_part_result_reporter_), + per_thread_test_part_result_reporter_( + &default_per_thread_test_part_result_reporter_), +#if GTEST_HAS_PARAM_TEST + parameterized_test_registry_(), + parameterized_tests_registered_(false), +#endif // GTEST_HAS_PARAM_TEST + last_death_test_case_(-1), + current_test_case_(NULL), + current_test_info_(NULL), + ad_hoc_test_result_(), + os_stack_trace_getter_(NULL), + post_flag_parse_init_performed_(false), + random_seed_(0), // Will be overridden by the flag before first use. + random_(0), // Will be reseeded before first use. + start_timestamp_(0), + elapsed_time_(0), +#if GTEST_HAS_DEATH_TEST + death_test_factory_(new DefaultDeathTestFactory), +#endif + // Will be overridden by the flag before first use. + catch_exceptions_(false) { + listeners()->SetDefaultResultPrinter(new PrettyUnitTestResultPrinter); +} + +UnitTestImpl::~UnitTestImpl() { + // Deletes every TestCase. + ForEach(test_cases_, internal::Delete); + + // Deletes every Environment. + ForEach(environments_, internal::Delete); + + delete os_stack_trace_getter_; +} + +// Adds a TestProperty to the current TestResult object when invoked in a +// context of a test, to current test case's ad_hoc_test_result when invoke +// from SetUpTestCase/TearDownTestCase, or to the global property set +// otherwise. If the result already contains a property with the same key, +// the value will be updated. +void UnitTestImpl::RecordProperty(const TestProperty& test_property) { + std::string xml_element; + TestResult* test_result; // TestResult appropriate for property recording. + + if (current_test_info_ != NULL) { + xml_element = "testcase"; + test_result = &(current_test_info_->result_); + } else if (current_test_case_ != NULL) { + xml_element = "testsuite"; + test_result = &(current_test_case_->ad_hoc_test_result_); + } else { + xml_element = "testsuites"; + test_result = &ad_hoc_test_result_; + } + test_result->RecordProperty(xml_element, test_property); +} + +#if GTEST_HAS_DEATH_TEST +// Disables event forwarding if the control is currently in a death test +// subprocess. Must not be called before InitGoogleTest. +void UnitTestImpl::SuppressTestEventsIfInSubprocess() { + if (internal_run_death_test_flag_.get() != NULL) + listeners()->SuppressEventForwarding(); +} +#endif // GTEST_HAS_DEATH_TEST + +// Initializes event listeners performing XML output as specified by +// UnitTestOptions. Must not be called before InitGoogleTest. +void UnitTestImpl::ConfigureXmlOutput() { + const std::string& output_format = UnitTestOptions::GetOutputFormat(); + if (output_format == "xml") { + listeners()->SetDefaultXmlGenerator(new XmlUnitTestResultPrinter( + UnitTestOptions::GetAbsolutePathToOutputFile().c_str())); + } else if (output_format != "") { + printf("WARNING: unrecognized output format \"%s\" ignored.\n", + output_format.c_str()); + fflush(stdout); + } +} + +#if GTEST_CAN_STREAM_RESULTS_ +// Initializes event listeners for streaming test results in string form. +// Must not be called before InitGoogleTest. +void UnitTestImpl::ConfigureStreamingOutput() { + const std::string& target = GTEST_FLAG(stream_result_to); + if (!target.empty()) { + const size_t pos = target.find(':'); + if (pos != std::string::npos) { + listeners()->Append(new StreamingListener(target.substr(0, pos), + target.substr(pos+1))); + } else { + printf("WARNING: unrecognized streaming target \"%s\" ignored.\n", + target.c_str()); + fflush(stdout); + } + } +} +#endif // GTEST_CAN_STREAM_RESULTS_ + +// Performs initialization dependent upon flag values obtained in +// ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to +// ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest +// this function is also called from RunAllTests. Since this function can be +// called more than once, it has to be idempotent. +void UnitTestImpl::PostFlagParsingInit() { + // Ensures that this function does not execute more than once. + if (!post_flag_parse_init_performed_) { + post_flag_parse_init_performed_ = true; + +#if GTEST_HAS_DEATH_TEST + InitDeathTestSubprocessControlInfo(); + SuppressTestEventsIfInSubprocess(); +#endif // GTEST_HAS_DEATH_TEST + + // Registers parameterized tests. This makes parameterized tests + // available to the UnitTest reflection API without running + // RUN_ALL_TESTS. + RegisterParameterizedTests(); + + // Configures listeners for XML output. This makes it possible for users + // to shut down the default XML output before invoking RUN_ALL_TESTS. + ConfigureXmlOutput(); + +#if GTEST_CAN_STREAM_RESULTS_ + // Configures listeners for streaming test results to the specified server. + ConfigureStreamingOutput(); +#endif // GTEST_CAN_STREAM_RESULTS_ + } +} + +// A predicate that checks the name of a TestCase against a known +// value. +// +// This is used for implementation of the UnitTest class only. We put +// it in the anonymous namespace to prevent polluting the outer +// namespace. +// +// TestCaseNameIs is copyable. +class TestCaseNameIs { + public: + // Constructor. + explicit TestCaseNameIs(const std::string& name) + : name_(name) {} + + // Returns true iff the name of test_case matches name_. + bool operator()(const TestCase* test_case) const { + return test_case != NULL && strcmp(test_case->name(), name_.c_str()) == 0; + } + + private: + std::string name_; +}; + +// Finds and returns a TestCase with the given name. If one doesn't +// exist, creates one and returns it. It's the CALLER'S +// RESPONSIBILITY to ensure that this function is only called WHEN THE +// TESTS ARE NOT SHUFFLED. +// +// Arguments: +// +// test_case_name: name of the test case +// type_param: the name of the test case's type parameter, or NULL if +// this is not a typed or a type-parameterized test case. +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +TestCase* UnitTestImpl::GetTestCase(const char* test_case_name, + const char* type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc) { + // Can we find a TestCase with the given name? + const std::vector::const_iterator test_case = + std::find_if(test_cases_.begin(), test_cases_.end(), + TestCaseNameIs(test_case_name)); + + if (test_case != test_cases_.end()) + return *test_case; + + // No. Let's create one. + TestCase* const new_test_case = + new TestCase(test_case_name, type_param, set_up_tc, tear_down_tc); + + // Is this a death test case? + if (internal::UnitTestOptions::MatchesFilter(test_case_name, + kDeathTestCaseFilter)) { + // Yes. Inserts the test case after the last death test case + // defined so far. This only works when the test cases haven't + // been shuffled. Otherwise we may end up running a death test + // after a non-death test. + ++last_death_test_case_; + test_cases_.insert(test_cases_.begin() + last_death_test_case_, + new_test_case); + } else { + // No. Appends to the end of the list. + test_cases_.push_back(new_test_case); + } + + test_case_indices_.push_back(static_cast(test_case_indices_.size())); + return new_test_case; +} + +// Helpers for setting up / tearing down the given environment. They +// are for use in the ForEach() function. +static void SetUpEnvironment(Environment* env) { env->SetUp(); } +static void TearDownEnvironment(Environment* env) { env->TearDown(); } + +// Runs all tests in this UnitTest object, prints the result, and +// returns true if all tests are successful. If any exception is +// thrown during a test, the test is considered to be failed, but the +// rest of the tests will still be run. +// +// When parameterized tests are enabled, it expands and registers +// parameterized tests first in RegisterParameterizedTests(). +// All other functions called from RunAllTests() may safely assume that +// parameterized tests are ready to be counted and run. +bool UnitTestImpl::RunAllTests() { + // Makes sure InitGoogleTest() was called. + if (!GTestIsInitialized()) { + printf("%s", + "\nThis test program did NOT call ::testing::InitGoogleTest " + "before calling RUN_ALL_TESTS(). Please fix it.\n"); + return false; + } + + // Do not run any test if the --help flag was specified. + if (g_help_flag) + return true; + + // Repeats the call to the post-flag parsing initialization in case the + // user didn't call InitGoogleTest. + PostFlagParsingInit(); + + // Even if sharding is not on, test runners may want to use the + // GTEST_SHARD_STATUS_FILE to query whether the test supports the sharding + // protocol. + internal::WriteToShardStatusFileIfNeeded(); + + // True iff we are in a subprocess for running a thread-safe-style + // death test. + bool in_subprocess_for_death_test = false; + +#if GTEST_HAS_DEATH_TEST + in_subprocess_for_death_test = (internal_run_death_test_flag_.get() != NULL); +#endif // GTEST_HAS_DEATH_TEST + + const bool should_shard = ShouldShard(kTestTotalShards, kTestShardIndex, + in_subprocess_for_death_test); + + // Compares the full test names with the filter to decide which + // tests to run. + const bool has_tests_to_run = FilterTests(should_shard + ? HONOR_SHARDING_PROTOCOL + : IGNORE_SHARDING_PROTOCOL) > 0; + + // Lists the tests and exits if the --gtest_list_tests flag was specified. + if (GTEST_FLAG(list_tests)) { + // This must be called *after* FilterTests() has been called. + ListTestsMatchingFilter(); + return true; + } + + random_seed_ = GTEST_FLAG(shuffle) ? + GetRandomSeedFromFlag(GTEST_FLAG(random_seed)) : 0; + + // True iff at least one test has failed. + bool failed = false; + + TestEventListener* repeater = listeners()->repeater(); + + start_timestamp_ = GetTimeInMillis(); + repeater->OnTestProgramStart(*parent_); + + // How many times to repeat the tests? We don't want to repeat them + // when we are inside the subprocess of a death test. + const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); + // Repeats forever if the repeat count is negative. + const bool forever = repeat < 0; + for (int i = 0; forever || i != repeat; i++) { + // We want to preserve failures generated by ad-hoc test + // assertions executed before RUN_ALL_TESTS(). + ClearNonAdHocTestResult(); + + const TimeInMillis start = GetTimeInMillis(); + + // Shuffles test cases and tests if requested. + if (has_tests_to_run && GTEST_FLAG(shuffle)) { + random()->Reseed(random_seed_); + // This should be done before calling OnTestIterationStart(), + // such that a test event listener can see the actual test order + // in the event. + ShuffleTests(); + } + + // Tells the unit test event listeners that the tests are about to start. + repeater->OnTestIterationStart(*parent_, i); + + // Runs each test case if there is at least one test to run. + if (has_tests_to_run) { + // Sets up all environments beforehand. + repeater->OnEnvironmentsSetUpStart(*parent_); + ForEach(environments_, SetUpEnvironment); + repeater->OnEnvironmentsSetUpEnd(*parent_); + + // Runs the tests only if there was no fatal failure during global + // set-up. + if (!Test::HasFatalFailure()) { + for (int test_index = 0; test_index < total_test_case_count(); + test_index++) { + GetMutableTestCase(test_index)->Run(); + } + } + + // Tears down all environments in reverse order afterwards. + repeater->OnEnvironmentsTearDownStart(*parent_); + std::for_each(environments_.rbegin(), environments_.rend(), + TearDownEnvironment); + repeater->OnEnvironmentsTearDownEnd(*parent_); + } + + elapsed_time_ = GetTimeInMillis() - start; + + // Tells the unit test event listener that the tests have just finished. + repeater->OnTestIterationEnd(*parent_, i); + + // Gets the result and clears it. + if (!Passed()) { + failed = true; + } + + // Restores the original test order after the iteration. This + // allows the user to quickly repro a failure that happens in the + // N-th iteration without repeating the first (N - 1) iterations. + // This is not enclosed in "if (GTEST_FLAG(shuffle)) { ... }", in + // case the user somehow changes the value of the flag somewhere + // (it's always safe to unshuffle the tests). + UnshuffleTests(); + + if (GTEST_FLAG(shuffle)) { + // Picks a new random seed for each iteration. + random_seed_ = GetNextRandomSeed(random_seed_); + } + } + + repeater->OnTestProgramEnd(*parent_); + + return !failed; +} + +// Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file +// if the variable is present. If a file already exists at this location, this +// function will write over it. If the variable is present, but the file cannot +// be created, prints an error and exits. +void WriteToShardStatusFileIfNeeded() { + const char* const test_shard_file = posix::GetEnv(kTestShardStatusFile); + if (test_shard_file != NULL) { + FILE* const file = posix::FOpen(test_shard_file, "w"); + if (file == NULL) { + ColoredPrintf(COLOR_RED, + "Could not write to the test shard status file \"%s\" " + "specified by the %s environment variable.\n", + test_shard_file, kTestShardStatusFile); + fflush(stdout); + exit(EXIT_FAILURE); + } + fclose(file); + } +} + +// Checks whether sharding is enabled by examining the relevant +// environment variable values. If the variables are present, +// but inconsistent (i.e., shard_index >= total_shards), prints +// an error and exits. If in_subprocess_for_death_test, sharding is +// disabled because it must only be applied to the original test +// process. Otherwise, we could filter out death tests we intended to execute. +bool ShouldShard(const char* total_shards_env, + const char* shard_index_env, + bool in_subprocess_for_death_test) { + if (in_subprocess_for_death_test) { + return false; + } + + const Int32 total_shards = Int32FromEnvOrDie(total_shards_env, -1); + const Int32 shard_index = Int32FromEnvOrDie(shard_index_env, -1); + + if (total_shards == -1 && shard_index == -1) { + return false; + } else if (total_shards == -1 && shard_index != -1) { + const Message msg = Message() + << "Invalid environment variables: you have " + << kTestShardIndex << " = " << shard_index + << ", but have left " << kTestTotalShards << " unset.\n"; + ColoredPrintf(COLOR_RED, msg.GetString().c_str()); + fflush(stdout); + exit(EXIT_FAILURE); + } else if (total_shards != -1 && shard_index == -1) { + const Message msg = Message() + << "Invalid environment variables: you have " + << kTestTotalShards << " = " << total_shards + << ", but have left " << kTestShardIndex << " unset.\n"; + ColoredPrintf(COLOR_RED, msg.GetString().c_str()); + fflush(stdout); + exit(EXIT_FAILURE); + } else if (shard_index < 0 || shard_index >= total_shards) { + const Message msg = Message() + << "Invalid environment variables: we require 0 <= " + << kTestShardIndex << " < " << kTestTotalShards + << ", but you have " << kTestShardIndex << "=" << shard_index + << ", " << kTestTotalShards << "=" << total_shards << ".\n"; + ColoredPrintf(COLOR_RED, msg.GetString().c_str()); + fflush(stdout); + exit(EXIT_FAILURE); + } + + return total_shards > 1; +} + +// Parses the environment variable var as an Int32. If it is unset, +// returns default_val. If it is not an Int32, prints an error +// and aborts. +Int32 Int32FromEnvOrDie(const char* var, Int32 default_val) { + const char* str_val = posix::GetEnv(var); + if (str_val == NULL) { + return default_val; + } + + Int32 result; + if (!ParseInt32(Message() << "The value of environment variable " << var, + str_val, &result)) { + exit(EXIT_FAILURE); + } + return result; +} + +// Given the total number of shards, the shard index, and the test id, +// returns true iff the test should be run on this shard. The test id is +// some arbitrary but unique non-negative integer assigned to each test +// method. Assumes that 0 <= shard_index < total_shards. +bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_id) { + return (test_id % total_shards) == shard_index; +} + +// Compares the name of each test with the user-specified filter to +// decide whether the test should be run, then records the result in +// each TestCase and TestInfo object. +// If shard_tests == true, further filters tests based on sharding +// variables in the environment - see +// http://code.google.com/p/googletest/wiki/GoogleTestAdvancedGuide. +// Returns the number of tests that should run. +int UnitTestImpl::FilterTests(ReactionToSharding shard_tests) { + const Int32 total_shards = shard_tests == HONOR_SHARDING_PROTOCOL ? + Int32FromEnvOrDie(kTestTotalShards, -1) : -1; + const Int32 shard_index = shard_tests == HONOR_SHARDING_PROTOCOL ? + Int32FromEnvOrDie(kTestShardIndex, -1) : -1; + + // num_runnable_tests are the number of tests that will + // run across all shards (i.e., match filter and are not disabled). + // num_selected_tests are the number of tests to be run on + // this shard. + int num_runnable_tests = 0; + int num_selected_tests = 0; + for (size_t i = 0; i < test_cases_.size(); i++) { + TestCase* const test_case = test_cases_[i]; + const std::string &test_case_name = test_case->name(); + test_case->set_should_run(false); + + for (size_t j = 0; j < test_case->test_info_list().size(); j++) { + TestInfo* const test_info = test_case->test_info_list()[j]; + const std::string test_name(test_info->name()); + // A test is disabled if test case name or test name matches + // kDisableTestFilter. + const bool is_disabled = + internal::UnitTestOptions::MatchesFilter(test_case_name, + kDisableTestFilter) || + internal::UnitTestOptions::MatchesFilter(test_name, + kDisableTestFilter); + test_info->is_disabled_ = is_disabled; + + const bool matches_filter = + internal::UnitTestOptions::FilterMatchesTest(test_case_name, + test_name); + test_info->matches_filter_ = matches_filter; + + const bool is_runnable = + (GTEST_FLAG(also_run_disabled_tests) || !is_disabled) && + matches_filter; + + const bool is_selected = is_runnable && + (shard_tests == IGNORE_SHARDING_PROTOCOL || + ShouldRunTestOnShard(total_shards, shard_index, + num_runnable_tests)); + + num_runnable_tests += is_runnable; + num_selected_tests += is_selected; + + test_info->should_run_ = is_selected; + test_case->set_should_run(test_case->should_run() || is_selected); + } + } + return num_selected_tests; +} + +// Prints the given C-string on a single line by replacing all '\n' +// characters with string "\\n". If the output takes more than +// max_length characters, only prints the first max_length characters +// and "...". +static void PrintOnOneLine(const char* str, int max_length) { + if (str != NULL) { + for (int i = 0; *str != '\0'; ++str) { + if (i >= max_length) { + printf("..."); + break; + } + if (*str == '\n') { + printf("\\n"); + i += 2; + } else { + printf("%c", *str); + ++i; + } + } + } +} + +// Prints the names of the tests matching the user-specified filter flag. +void UnitTestImpl::ListTestsMatchingFilter() { + // Print at most this many characters for each type/value parameter. + const int kMaxParamLength = 250; + + for (size_t i = 0; i < test_cases_.size(); i++) { + const TestCase* const test_case = test_cases_[i]; + bool printed_test_case_name = false; + + for (size_t j = 0; j < test_case->test_info_list().size(); j++) { + const TestInfo* const test_info = + test_case->test_info_list()[j]; + if (test_info->matches_filter_) { + if (!printed_test_case_name) { + printed_test_case_name = true; + printf("%s.", test_case->name()); + if (test_case->type_param() != NULL) { + printf(" # %s = ", kTypeParamLabel); + // We print the type parameter on a single line to make + // the output easy to parse by a program. + PrintOnOneLine(test_case->type_param(), kMaxParamLength); + } + printf("\n"); + } + printf(" %s", test_info->name()); + if (test_info->value_param() != NULL) { + printf(" # %s = ", kValueParamLabel); + // We print the value parameter on a single line to make the + // output easy to parse by a program. + PrintOnOneLine(test_info->value_param(), kMaxParamLength); + } + printf("\n"); + } + } + } + fflush(stdout); +} + +// Sets the OS stack trace getter. +// +// Does nothing if the input and the current OS stack trace getter are +// the same; otherwise, deletes the old getter and makes the input the +// current getter. +void UnitTestImpl::set_os_stack_trace_getter( + OsStackTraceGetterInterface* getter) { + if (os_stack_trace_getter_ != getter) { + delete os_stack_trace_getter_; + os_stack_trace_getter_ = getter; + } +} + +// Returns the current OS stack trace getter if it is not NULL; +// otherwise, creates an OsStackTraceGetter, makes it the current +// getter, and returns it. +OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { + if (os_stack_trace_getter_ == NULL) { + os_stack_trace_getter_ = new OsStackTraceGetter; + } + + return os_stack_trace_getter_; +} + +// Returns the TestResult for the test that's currently running, or +// the TestResult for the ad hoc test if no test is running. +TestResult* UnitTestImpl::current_test_result() { + return current_test_info_ ? + &(current_test_info_->result_) : &ad_hoc_test_result_; +} + +// Shuffles all test cases, and the tests within each test case, +// making sure that death tests are still run first. +void UnitTestImpl::ShuffleTests() { + // Shuffles the death test cases. + ShuffleRange(random(), 0, last_death_test_case_ + 1, &test_case_indices_); + + // Shuffles the non-death test cases. + ShuffleRange(random(), last_death_test_case_ + 1, + static_cast(test_cases_.size()), &test_case_indices_); + + // Shuffles the tests inside each test case. + for (size_t i = 0; i < test_cases_.size(); i++) { + test_cases_[i]->ShuffleTests(random()); + } +} + +// Restores the test cases and tests to their order before the first shuffle. +void UnitTestImpl::UnshuffleTests() { + for (size_t i = 0; i < test_cases_.size(); i++) { + // Unshuffles the tests in each test case. + test_cases_[i]->UnshuffleTests(); + // Resets the index of each test case. + test_case_indices_[i] = static_cast(i); + } +} + +// Returns the current OS stack trace as an std::string. +// +// The maximum number of stack frames to be included is specified by +// the gtest_stack_trace_depth flag. The skip_count parameter +// specifies the number of top frames to be skipped, which doesn't +// count against the number of frames to be included. +// +// For example, if Foo() calls Bar(), which in turn calls +// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in +// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. +std::string GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, + int skip_count) { + // We pass skip_count + 1 to skip this wrapper function in addition + // to what the user really wants to skip. + return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1); +} + +// Used by the GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_ macro to +// suppress unreachable code warnings. +namespace { +class ClassUniqueToAlwaysTrue {}; +} + +bool IsTrue(bool condition) { return condition; } + +bool AlwaysTrue() { +#if GTEST_HAS_EXCEPTIONS + // This condition is always false so AlwaysTrue() never actually throws, + // but it makes the compiler think that it may throw. + if (IsTrue(false)) + throw ClassUniqueToAlwaysTrue(); +#endif // GTEST_HAS_EXCEPTIONS + return true; +} + +// If *pstr starts with the given prefix, modifies *pstr to be right +// past the prefix and returns true; otherwise leaves *pstr unchanged +// and returns false. None of pstr, *pstr, and prefix can be NULL. +bool SkipPrefix(const char* prefix, const char** pstr) { + const size_t prefix_len = strlen(prefix); + if (strncmp(*pstr, prefix, prefix_len) == 0) { + *pstr += prefix_len; + return true; + } + return false; +} + +// Parses a string as a command line flag. The string should have +// the format "--flag=value". When def_optional is true, the "=value" +// part can be omitted. +// +// Returns the value of the flag, or NULL if the parsing failed. +const char* ParseFlagValue(const char* str, + const char* flag, + bool def_optional) { + // str and flag must not be NULL. + if (str == NULL || flag == NULL) return NULL; + + // The flag must start with "--" followed by GTEST_FLAG_PREFIX_. + const std::string flag_str = std::string("--") + GTEST_FLAG_PREFIX_ + flag; + const size_t flag_len = flag_str.length(); + if (strncmp(str, flag_str.c_str(), flag_len) != 0) return NULL; + + // Skips the flag name. + const char* flag_end = str + flag_len; + + // When def_optional is true, it's OK to not have a "=value" part. + if (def_optional && (flag_end[0] == '\0')) { + return flag_end; + } + + // If def_optional is true and there are more characters after the + // flag name, or if def_optional is false, there must be a '=' after + // the flag name. + if (flag_end[0] != '=') return NULL; + + // Returns the string after "=". + return flag_end + 1; +} + +// Parses a string for a bool flag, in the form of either +// "--flag=value" or "--flag". +// +// In the former case, the value is taken as true as long as it does +// not start with '0', 'f', or 'F'. +// +// In the latter case, the value is taken as true. +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +bool ParseBoolFlag(const char* str, const char* flag, bool* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseFlagValue(str, flag, true); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Converts the string value to a bool. + *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F'); + return true; +} + +// Parses a string for an Int32 flag, in the form of +// "--flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +bool ParseInt32Flag(const char* str, const char* flag, Int32* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseFlagValue(str, flag, false); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Sets *value to the value of the flag. + return ParseInt32(Message() << "The value of flag --" << flag, + value_str, value); +} + +// Parses a string for a string flag, in the form of +// "--flag=value". +// +// On success, stores the value of the flag in *value, and returns +// true. On failure, returns false without changing *value. +bool ParseStringFlag(const char* str, const char* flag, std::string* value) { + // Gets the value of the flag as a string. + const char* const value_str = ParseFlagValue(str, flag, false); + + // Aborts if the parsing failed. + if (value_str == NULL) return false; + + // Sets *value to the value of the flag. + *value = value_str; + return true; +} + +// Determines whether a string has a prefix that Google Test uses for its +// flags, i.e., starts with GTEST_FLAG_PREFIX_ or GTEST_FLAG_PREFIX_DASH_. +// If Google Test detects that a command line flag has its prefix but is not +// recognized, it will print its help message. Flags starting with +// GTEST_INTERNAL_PREFIX_ followed by "internal_" are considered Google Test +// internal flags and do not trigger the help message. +static bool HasGoogleTestFlagPrefix(const char* str) { + return (SkipPrefix("--", &str) || + SkipPrefix("-", &str) || + SkipPrefix("/", &str)) && + !SkipPrefix(GTEST_FLAG_PREFIX_ "internal_", &str) && + (SkipPrefix(GTEST_FLAG_PREFIX_, &str) || + SkipPrefix(GTEST_FLAG_PREFIX_DASH_, &str)); +} + +// Prints a string containing code-encoded text. The following escape +// sequences can be used in the string to control the text color: +// +// @@ prints a single '@' character. +// @R changes the color to red. +// @G changes the color to green. +// @Y changes the color to yellow. +// @D changes to the default terminal text color. +// +// TODO(wan@google.com): Write tests for this once we add stdout +// capturing to Google Test. +static void PrintColorEncoded(const char* str) { + GTestColor color = COLOR_DEFAULT; // The current color. + + // Conceptually, we split the string into segments divided by escape + // sequences. Then we print one segment at a time. At the end of + // each iteration, the str pointer advances to the beginning of the + // next segment. + for (;;) { + const char* p = strchr(str, '@'); + if (p == NULL) { + ColoredPrintf(color, "%s", str); + return; + } + + ColoredPrintf(color, "%s", std::string(str, p).c_str()); + + const char ch = p[1]; + str = p + 2; + if (ch == '@') { + ColoredPrintf(color, "@"); + } else if (ch == 'D') { + color = COLOR_DEFAULT; + } else if (ch == 'R') { + color = COLOR_RED; + } else if (ch == 'G') { + color = COLOR_GREEN; + } else if (ch == 'Y') { + color = COLOR_YELLOW; + } else { + --str; + } + } +} + +static const char kColorEncodedHelpMessage[] = +"This program contains tests written using " GTEST_NAME_ ". You can use the\n" +"following command line flags to control its behavior:\n" +"\n" +"Test Selection:\n" +" @G--" GTEST_FLAG_PREFIX_ "list_tests@D\n" +" List the names of all tests instead of running them. The name of\n" +" TEST(Foo, Bar) is \"Foo.Bar\".\n" +" @G--" GTEST_FLAG_PREFIX_ "filter=@YPOSTIVE_PATTERNS" + "[@G-@YNEGATIVE_PATTERNS]@D\n" +" Run only the tests whose name matches one of the positive patterns but\n" +" none of the negative patterns. '?' matches any single character; '*'\n" +" matches any substring; ':' separates two patterns.\n" +" @G--" GTEST_FLAG_PREFIX_ "also_run_disabled_tests@D\n" +" Run all disabled tests too.\n" +"\n" +"Test Execution:\n" +" @G--" GTEST_FLAG_PREFIX_ "repeat=@Y[COUNT]@D\n" +" Run the tests repeatedly; use a negative count to repeat forever.\n" +" @G--" GTEST_FLAG_PREFIX_ "shuffle@D\n" +" Randomize tests' orders on every iteration.\n" +" @G--" GTEST_FLAG_PREFIX_ "random_seed=@Y[NUMBER]@D\n" +" Random number seed to use for shuffling test orders (between 1 and\n" +" 99999, or 0 to use a seed based on the current time).\n" +"\n" +"Test Output:\n" +" @G--" GTEST_FLAG_PREFIX_ "color=@Y(@Gyes@Y|@Gno@Y|@Gauto@Y)@D\n" +" Enable/disable colored output. The default is @Gauto@D.\n" +" -@G-" GTEST_FLAG_PREFIX_ "print_time=0@D\n" +" Don't print the elapsed time of each test.\n" +" @G--" GTEST_FLAG_PREFIX_ "output=xml@Y[@G:@YDIRECTORY_PATH@G" + GTEST_PATH_SEP_ "@Y|@G:@YFILE_PATH]@D\n" +" Generate an XML report in the given directory or with the given file\n" +" name. @YFILE_PATH@D defaults to @Gtest_details.xml@D.\n" +#if GTEST_CAN_STREAM_RESULTS_ +" @G--" GTEST_FLAG_PREFIX_ "stream_result_to=@YHOST@G:@YPORT@D\n" +" Stream test results to the given server.\n" +#endif // GTEST_CAN_STREAM_RESULTS_ +"\n" +"Assertion Behavior:\n" +#if GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS +" @G--" GTEST_FLAG_PREFIX_ "death_test_style=@Y(@Gfast@Y|@Gthreadsafe@Y)@D\n" +" Set the default death test style.\n" +#endif // GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS +" @G--" GTEST_FLAG_PREFIX_ "break_on_failure@D\n" +" Turn assertion failures into debugger break-points.\n" +" @G--" GTEST_FLAG_PREFIX_ "throw_on_failure@D\n" +" Turn assertion failures into C++ exceptions.\n" +" @G--" GTEST_FLAG_PREFIX_ "catch_exceptions=0@D\n" +" Do not report exceptions as test failures. Instead, allow them\n" +" to crash the program or throw a pop-up (on Windows).\n" +"\n" +"Except for @G--" GTEST_FLAG_PREFIX_ "list_tests@D, you can alternatively set " + "the corresponding\n" +"environment variable of a flag (all letters in upper-case). For example, to\n" +"disable colored text output, you can either specify @G--" GTEST_FLAG_PREFIX_ + "color=no@D or set\n" +"the @G" GTEST_FLAG_PREFIX_UPPER_ "COLOR@D environment variable to @Gno@D.\n" +"\n" +"For more information, please read the " GTEST_NAME_ " documentation at\n" +"@G" GTEST_PROJECT_URL_ "@D. If you find a bug in " GTEST_NAME_ "\n" +"(not one in your own code or tests), please report it to\n" +"@G<" GTEST_DEV_EMAIL_ ">@D.\n"; + +// Parses the command line for Google Test flags, without initializing +// other parts of Google Test. The type parameter CharType can be +// instantiated to either char or wchar_t. +template +void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { + for (int i = 1; i < *argc; i++) { + const std::string arg_string = StreamableToString(argv[i]); + const char* const arg = arg_string.c_str(); + + using internal::ParseBoolFlag; + using internal::ParseInt32Flag; + using internal::ParseStringFlag; + + // Do we see a Google Test flag? + if (ParseBoolFlag(arg, kAlsoRunDisabledTestsFlag, + >EST_FLAG(also_run_disabled_tests)) || + ParseBoolFlag(arg, kBreakOnFailureFlag, + >EST_FLAG(break_on_failure)) || + ParseBoolFlag(arg, kCatchExceptionsFlag, + >EST_FLAG(catch_exceptions)) || + ParseStringFlag(arg, kColorFlag, >EST_FLAG(color)) || + ParseStringFlag(arg, kDeathTestStyleFlag, + >EST_FLAG(death_test_style)) || + ParseBoolFlag(arg, kDeathTestUseFork, + >EST_FLAG(death_test_use_fork)) || + ParseStringFlag(arg, kFilterFlag, >EST_FLAG(filter)) || + ParseStringFlag(arg, kInternalRunDeathTestFlag, + >EST_FLAG(internal_run_death_test)) || + ParseBoolFlag(arg, kListTestsFlag, >EST_FLAG(list_tests)) || + ParseStringFlag(arg, kOutputFlag, >EST_FLAG(output)) || + ParseBoolFlag(arg, kPrintTimeFlag, >EST_FLAG(print_time)) || + ParseInt32Flag(arg, kRandomSeedFlag, >EST_FLAG(random_seed)) || + ParseInt32Flag(arg, kRepeatFlag, >EST_FLAG(repeat)) || + ParseBoolFlag(arg, kShuffleFlag, >EST_FLAG(shuffle)) || + ParseInt32Flag(arg, kStackTraceDepthFlag, + >EST_FLAG(stack_trace_depth)) || + ParseStringFlag(arg, kStreamResultToFlag, + >EST_FLAG(stream_result_to)) || + ParseBoolFlag(arg, kThrowOnFailureFlag, + >EST_FLAG(throw_on_failure)) + ) { + // Yes. Shift the remainder of the argv list left by one. Note + // that argv has (*argc + 1) elements, the last one always being + // NULL. The following loop moves the trailing NULL element as + // well. + for (int j = i; j != *argc; j++) { + argv[j] = argv[j + 1]; + } + + // Decrements the argument count. + (*argc)--; + + // We also need to decrement the iterator as we just removed + // an element. + i--; + } else if (arg_string == "--help" || arg_string == "-h" || + arg_string == "-?" || arg_string == "/?" || + HasGoogleTestFlagPrefix(arg)) { + // Both help flag and unrecognized Google Test flags (excluding + // internal ones) trigger help display. + g_help_flag = true; + } + } + + if (g_help_flag) { + // We print the help here instead of in RUN_ALL_TESTS(), as the + // latter may not be called at all if the user is using Google + // Test with another testing framework. + PrintColorEncoded(kColorEncodedHelpMessage); + } +} + +// Parses the command line for Google Test flags, without initializing +// other parts of Google Test. +void ParseGoogleTestFlagsOnly(int* argc, char** argv) { + ParseGoogleTestFlagsOnlyImpl(argc, argv); +} +void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { + ParseGoogleTestFlagsOnlyImpl(argc, argv); +} + +// The internal implementation of InitGoogleTest(). +// +// The type parameter CharType can be instantiated to either char or +// wchar_t. +template +void InitGoogleTestImpl(int* argc, CharType** argv) { + g_init_gtest_count++; + + // We don't want to run the initialization code twice. + if (g_init_gtest_count != 1) return; + + if (*argc <= 0) return; + + internal::g_executable_path = internal::StreamableToString(argv[0]); + +#if GTEST_HAS_DEATH_TEST + + g_argvs.clear(); + for (int i = 0; i != *argc; i++) { + g_argvs.push_back(StreamableToString(argv[i])); + } + +#endif // GTEST_HAS_DEATH_TEST + + ParseGoogleTestFlagsOnly(argc, argv); + GetUnitTestImpl()->PostFlagParsingInit(); +} + +} // namespace internal + +// Initializes Google Test. This must be called before calling +// RUN_ALL_TESTS(). In particular, it parses a command line for the +// flags that Google Test recognizes. Whenever a Google Test flag is +// seen, it is removed from argv, and *argc is decremented. +// +// No value is returned. Instead, the Google Test flag variables are +// updated. +// +// Calling the function for the second time has no user-visible effect. +void InitGoogleTest(int* argc, char** argv) { + internal::InitGoogleTestImpl(argc, argv); +} + +// This overloaded version can be used in Windows programs compiled in +// UNICODE mode. +void InitGoogleTest(int* argc, wchar_t** argv) { + internal::InitGoogleTestImpl(argc, argv); +} + +} // namespace testing +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan), vladl@google.com (Vlad Losev) +// +// This file implements death tests. + + +#if GTEST_HAS_DEATH_TEST + +# if GTEST_OS_MAC +# include +# endif // GTEST_OS_MAC + +# include +# include +# include + +# if GTEST_OS_LINUX +# include +# endif // GTEST_OS_LINUX + +# include + +# if GTEST_OS_WINDOWS +# include +# else +# include +# include +# endif // GTEST_OS_WINDOWS + +# if GTEST_OS_QNX +# include +# endif // GTEST_OS_QNX + +#endif // GTEST_HAS_DEATH_TEST + + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#undef GTEST_IMPLEMENTATION_ + +namespace testing { + +// Constants. + +// The default death test style. +static const char kDefaultDeathTestStyle[] = "fast"; + +GTEST_DEFINE_string_( + death_test_style, + internal::StringFromGTestEnv("death_test_style", kDefaultDeathTestStyle), + "Indicates how to run a death test in a forked child process: " + "\"threadsafe\" (child process re-executes the test binary " + "from the beginning, running only the specific death test) or " + "\"fast\" (child process runs the death test immediately " + "after forking)."); + +GTEST_DEFINE_bool_( + death_test_use_fork, + internal::BoolFromGTestEnv("death_test_use_fork", false), + "Instructs to use fork()/_exit() instead of clone() in death tests. " + "Ignored and always uses fork() on POSIX systems where clone() is not " + "implemented. Useful when running under valgrind or similar tools if " + "those do not support clone(). Valgrind 3.3.1 will just fail if " + "it sees an unsupported combination of clone() flags. " + "It is not recommended to use this flag w/o valgrind though it will " + "work in 99% of the cases. Once valgrind is fixed, this flag will " + "most likely be removed."); + +namespace internal { +GTEST_DEFINE_string_( + internal_run_death_test, "", + "Indicates the file, line number, temporal index of " + "the single death test to run, and a file descriptor to " + "which a success code may be sent, all separated by " + "the '|' characters. This flag is specified if and only if the current " + "process is a sub-process launched for running a thread-safe " + "death test. FOR INTERNAL USE ONLY."); +} // namespace internal + +#if GTEST_HAS_DEATH_TEST + +namespace internal { + +// Valid only for fast death tests. Indicates the code is running in the +// child process of a fast style death test. +static bool g_in_fast_death_test_child = false; + +// Returns a Boolean value indicating whether the caller is currently +// executing in the context of the death test child process. Tools such as +// Valgrind heap checkers may need this to modify their behavior in death +// tests. IMPORTANT: This is an internal utility. Using it may break the +// implementation of death tests. User code MUST NOT use it. +bool InDeathTestChild() { +# if GTEST_OS_WINDOWS + + // On Windows, death tests are thread-safe regardless of the value of the + // death_test_style flag. + return !GTEST_FLAG(internal_run_death_test).empty(); + +# else + + if (GTEST_FLAG(death_test_style) == "threadsafe") + return !GTEST_FLAG(internal_run_death_test).empty(); + else + return g_in_fast_death_test_child; +#endif +} + +} // namespace internal + +// ExitedWithCode constructor. +ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { +} + +// ExitedWithCode function-call operator. +bool ExitedWithCode::operator()(int exit_status) const { +# if GTEST_OS_WINDOWS + + return exit_status == exit_code_; + +# else + + return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_; + +# endif // GTEST_OS_WINDOWS +} + +# if !GTEST_OS_WINDOWS +// KilledBySignal constructor. +KilledBySignal::KilledBySignal(int signum) : signum_(signum) { +} + +// KilledBySignal function-call operator. +bool KilledBySignal::operator()(int exit_status) const { + return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; +} +# endif // !GTEST_OS_WINDOWS + +namespace internal { + +// Utilities needed for death tests. + +// Generates a textual description of a given exit code, in the format +// specified by wait(2). +static std::string ExitSummary(int exit_code) { + Message m; + +# if GTEST_OS_WINDOWS + + m << "Exited with exit status " << exit_code; + +# else + + if (WIFEXITED(exit_code)) { + m << "Exited with exit status " << WEXITSTATUS(exit_code); + } else if (WIFSIGNALED(exit_code)) { + m << "Terminated by signal " << WTERMSIG(exit_code); + } +# ifdef WCOREDUMP + if (WCOREDUMP(exit_code)) { + m << " (core dumped)"; + } +# endif +# endif // GTEST_OS_WINDOWS + + return m.GetString(); +} + +// Returns true if exit_status describes a process that was terminated +// by a signal, or exited normally with a nonzero exit code. +bool ExitedUnsuccessfully(int exit_status) { + return !ExitedWithCode(0)(exit_status); +} + +# if !GTEST_OS_WINDOWS +// Generates a textual failure message when a death test finds more than +// one thread running, or cannot determine the number of threads, prior +// to executing the given statement. It is the responsibility of the +// caller not to pass a thread_count of 1. +static std::string DeathTestThreadWarning(size_t thread_count) { + Message msg; + msg << "Death tests use fork(), which is unsafe particularly" + << " in a threaded context. For this test, " << GTEST_NAME_ << " "; + if (thread_count == 0) + msg << "couldn't detect the number of threads."; + else + msg << "detected " << thread_count << " threads."; + return msg.GetString(); +} +# endif // !GTEST_OS_WINDOWS + +// Flag characters for reporting a death test that did not die. +static const char kDeathTestLived = 'L'; +static const char kDeathTestReturned = 'R'; +static const char kDeathTestThrew = 'T'; +static const char kDeathTestInternalError = 'I'; + +// An enumeration describing all of the possible ways that a death test can +// conclude. DIED means that the process died while executing the test +// code; LIVED means that process lived beyond the end of the test code; +// RETURNED means that the test statement attempted to execute a return +// statement, which is not allowed; THREW means that the test statement +// returned control by throwing an exception. IN_PROGRESS means the test +// has not yet concluded. +// TODO(vladl@google.com): Unify names and possibly values for +// AbortReason, DeathTestOutcome, and flag characters above. +enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW }; + +// Routine for aborting the program which is safe to call from an +// exec-style death test child process, in which case the error +// message is propagated back to the parent process. Otherwise, the +// message is simply printed to stderr. In either case, the program +// then exits with status 1. +void DeathTestAbort(const std::string& message) { + // On a POSIX system, this function may be called from a threadsafe-style + // death test child process, which operates on a very small stack. Use + // the heap for any additional non-minuscule memory requirements. + const InternalRunDeathTestFlag* const flag = + GetUnitTestImpl()->internal_run_death_test_flag(); + if (flag != NULL) { + FILE* parent = posix::FDOpen(flag->write_fd(), "w"); + fputc(kDeathTestInternalError, parent); + fprintf(parent, "%s", message.c_str()); + fflush(parent); + _exit(1); + } else { + fprintf(stderr, "%s", message.c_str()); + fflush(stderr); + posix::Abort(); + } +} + +// A replacement for CHECK that calls DeathTestAbort if the assertion +// fails. +# define GTEST_DEATH_TEST_CHECK_(expression) \ + do { \ + if (!::testing::internal::IsTrue(expression)) { \ + DeathTestAbort( \ + ::std::string("CHECK failed: File ") + __FILE__ + ", line " \ + + ::testing::internal::StreamableToString(__LINE__) + ": " \ + + #expression); \ + } \ + } while (::testing::internal::AlwaysFalse()) + +// This macro is similar to GTEST_DEATH_TEST_CHECK_, but it is meant for +// evaluating any system call that fulfills two conditions: it must return +// -1 on failure, and set errno to EINTR when it is interrupted and +// should be tried again. The macro expands to a loop that repeatedly +// evaluates the expression as long as it evaluates to -1 and sets +// errno to EINTR. If the expression evaluates to -1 but errno is +// something other than EINTR, DeathTestAbort is called. +# define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \ + do { \ + int gtest_retval; \ + do { \ + gtest_retval = (expression); \ + } while (gtest_retval == -1 && errno == EINTR); \ + if (gtest_retval == -1) { \ + DeathTestAbort( \ + ::std::string("CHECK failed: File ") + __FILE__ + ", line " \ + + ::testing::internal::StreamableToString(__LINE__) + ": " \ + + #expression + " != -1"); \ + } \ + } while (::testing::internal::AlwaysFalse()) + +// Returns the message describing the last system error in errno. +std::string GetLastErrnoDescription() { + return errno == 0 ? "" : posix::StrError(errno); +} + +// This is called from a death test parent process to read a failure +// message from the death test child process and log it with the FATAL +// severity. On Windows, the message is read from a pipe handle. On other +// platforms, it is read from a file descriptor. +static void FailFromInternalError(int fd) { + Message error; + char buffer[256]; + int num_read; + + do { + while ((num_read = posix::Read(fd, buffer, 255)) > 0) { + buffer[num_read] = '\0'; + error << buffer; + } + } while (num_read == -1 && errno == EINTR); + + if (num_read == 0) { + GTEST_LOG_(FATAL) << error.GetString(); + } else { + const int last_error = errno; + GTEST_LOG_(FATAL) << "Error while reading death test internal: " + << GetLastErrnoDescription() << " [" << last_error << "]"; + } +} + +// Death test constructor. Increments the running death test count +// for the current test. +DeathTest::DeathTest() { + TestInfo* const info = GetUnitTestImpl()->current_test_info(); + if (info == NULL) { + DeathTestAbort("Cannot run a death test outside of a TEST or " + "TEST_F construct"); + } +} + +// Creates and returns a death test by dispatching to the current +// death test factory. +bool DeathTest::Create(const char* statement, const RE* regex, + const char* file, int line, DeathTest** test) { + return GetUnitTestImpl()->death_test_factory()->Create( + statement, regex, file, line, test); +} + +const char* DeathTest::LastMessage() { + return last_death_test_message_.c_str(); +} + +void DeathTest::set_last_death_test_message(const std::string& message) { + last_death_test_message_ = message; +} + +std::string DeathTest::last_death_test_message_; + +// Provides cross platform implementation for some death functionality. +class DeathTestImpl : public DeathTest { + protected: + DeathTestImpl(const char* a_statement, const RE* a_regex) + : statement_(a_statement), + regex_(a_regex), + spawned_(false), + status_(-1), + outcome_(IN_PROGRESS), + read_fd_(-1), + write_fd_(-1) {} + + // read_fd_ is expected to be closed and cleared by a derived class. + ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); } + + void Abort(AbortReason reason); + virtual bool Passed(bool status_ok); + + const char* statement() const { return statement_; } + const RE* regex() const { return regex_; } + bool spawned() const { return spawned_; } + void set_spawned(bool is_spawned) { spawned_ = is_spawned; } + int status() const { return status_; } + void set_status(int a_status) { status_ = a_status; } + DeathTestOutcome outcome() const { return outcome_; } + void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outcome; } + int read_fd() const { return read_fd_; } + void set_read_fd(int fd) { read_fd_ = fd; } + int write_fd() const { return write_fd_; } + void set_write_fd(int fd) { write_fd_ = fd; } + + // Called in the parent process only. Reads the result code of the death + // test child process via a pipe, interprets it to set the outcome_ + // member, and closes read_fd_. Outputs diagnostics and terminates in + // case of unexpected codes. + void ReadAndInterpretStatusByte(); + + private: + // The textual content of the code this object is testing. This class + // doesn't own this string and should not attempt to delete it. + const char* const statement_; + // The regular expression which test output must match. DeathTestImpl + // doesn't own this object and should not attempt to delete it. + const RE* const regex_; + // True if the death test child process has been successfully spawned. + bool spawned_; + // The exit status of the child process. + int status_; + // How the death test concluded. + DeathTestOutcome outcome_; + // Descriptor to the read end of the pipe to the child process. It is + // always -1 in the child process. The child keeps its write end of the + // pipe in write_fd_. + int read_fd_; + // Descriptor to the child's write end of the pipe to the parent process. + // It is always -1 in the parent process. The parent keeps its end of the + // pipe in read_fd_. + int write_fd_; +}; + +// Called in the parent process only. Reads the result code of the death +// test child process via a pipe, interprets it to set the outcome_ +// member, and closes read_fd_. Outputs diagnostics and terminates in +// case of unexpected codes. +void DeathTestImpl::ReadAndInterpretStatusByte() { + char flag; + int bytes_read; + + // The read() here blocks until data is available (signifying the + // failure of the death test) or until the pipe is closed (signifying + // its success), so it's okay to call this in the parent before + // the child process has exited. + do { + bytes_read = posix::Read(read_fd(), &flag, 1); + } while (bytes_read == -1 && errno == EINTR); + + if (bytes_read == 0) { + set_outcome(DIED); + } else if (bytes_read == 1) { + switch (flag) { + case kDeathTestReturned: + set_outcome(RETURNED); + break; + case kDeathTestThrew: + set_outcome(THREW); + break; + case kDeathTestLived: + set_outcome(LIVED); + break; + case kDeathTestInternalError: + FailFromInternalError(read_fd()); // Does not return. + break; + default: + GTEST_LOG_(FATAL) << "Death test child process reported " + << "unexpected status byte (" + << static_cast(flag) << ")"; + } + } else { + GTEST_LOG_(FATAL) << "Read from death test child process failed: " + << GetLastErrnoDescription(); + } + GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd())); + set_read_fd(-1); +} + +// Signals that the death test code which should have exited, didn't. +// Should be called only in a death test child process. +// Writes a status byte to the child's status file descriptor, then +// calls _exit(1). +void DeathTestImpl::Abort(AbortReason reason) { + // The parent process considers the death test to be a failure if + // it finds any data in our pipe. So, here we write a single flag byte + // to the pipe, then exit. + const char status_ch = + reason == TEST_DID_NOT_DIE ? kDeathTestLived : + reason == TEST_THREW_EXCEPTION ? kDeathTestThrew : kDeathTestReturned; + + GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1)); + // We are leaking the descriptor here because on some platforms (i.e., + // when built as Windows DLL), destructors of global objects will still + // run after calling _exit(). On such systems, write_fd_ will be + // indirectly closed from the destructor of UnitTestImpl, causing double + // close if it is also closed here. On debug configurations, double close + // may assert. As there are no in-process buffers to flush here, we are + // relying on the OS to close the descriptor after the process terminates + // when the destructors are not run. + _exit(1); // Exits w/o any normal exit hooks (we were supposed to crash) +} + +// Returns an indented copy of stderr output for a death test. +// This makes distinguishing death test output lines from regular log lines +// much easier. +static ::std::string FormatDeathTestOutput(const ::std::string& output) { + ::std::string ret; + for (size_t at = 0; ; ) { + const size_t line_end = output.find('\n', at); + ret += "[ DEATH ] "; + if (line_end == ::std::string::npos) { + ret += output.substr(at); + break; + } + ret += output.substr(at, line_end + 1 - at); + at = line_end + 1; + } + return ret; +} + +// Assesses the success or failure of a death test, using both private +// members which have previously been set, and one argument: +// +// Private data members: +// outcome: An enumeration describing how the death test +// concluded: DIED, LIVED, THREW, or RETURNED. The death test +// fails in the latter three cases. +// status: The exit status of the child process. On *nix, it is in the +// in the format specified by wait(2). On Windows, this is the +// value supplied to the ExitProcess() API or a numeric code +// of the exception that terminated the program. +// regex: A regular expression object to be applied to +// the test's captured standard error output; the death test +// fails if it does not match. +// +// Argument: +// status_ok: true if exit_status is acceptable in the context of +// this particular death test, which fails if it is false +// +// Returns true iff all of the above conditions are met. Otherwise, the +// first failing condition, in the order given above, is the one that is +// reported. Also sets the last death test message string. +bool DeathTestImpl::Passed(bool status_ok) { + if (!spawned()) + return false; + + const std::string error_message = GetCapturedStderr(); + + bool success = false; + Message buffer; + + buffer << "Death test: " << statement() << "\n"; + switch (outcome()) { + case LIVED: + buffer << " Result: failed to die.\n" + << " Error msg:\n" << FormatDeathTestOutput(error_message); + break; + case THREW: + buffer << " Result: threw an exception.\n" + << " Error msg:\n" << FormatDeathTestOutput(error_message); + break; + case RETURNED: + buffer << " Result: illegal return in test statement.\n" + << " Error msg:\n" << FormatDeathTestOutput(error_message); + break; + case DIED: + if (status_ok) { + const bool matched = RE::PartialMatch(error_message.c_str(), *regex()); + if (matched) { + success = true; + } else { + buffer << " Result: died but not with expected error.\n" + << " Expected: " << regex()->pattern() << "\n" + << "Actual msg:\n" << FormatDeathTestOutput(error_message); + } + } else { + buffer << " Result: died but not with expected exit code:\n" + << " " << ExitSummary(status()) << "\n" + << "Actual msg:\n" << FormatDeathTestOutput(error_message); + } + break; + case IN_PROGRESS: + default: + GTEST_LOG_(FATAL) + << "DeathTest::Passed somehow called before conclusion of test"; + } + + DeathTest::set_last_death_test_message(buffer.GetString()); + return success; +} + +# if GTEST_OS_WINDOWS +// WindowsDeathTest implements death tests on Windows. Due to the +// specifics of starting new processes on Windows, death tests there are +// always threadsafe, and Google Test considers the +// --gtest_death_test_style=fast setting to be equivalent to +// --gtest_death_test_style=threadsafe there. +// +// A few implementation notes: Like the Linux version, the Windows +// implementation uses pipes for child-to-parent communication. But due to +// the specifics of pipes on Windows, some extra steps are required: +// +// 1. The parent creates a communication pipe and stores handles to both +// ends of it. +// 2. The parent starts the child and provides it with the information +// necessary to acquire the handle to the write end of the pipe. +// 3. The child acquires the write end of the pipe and signals the parent +// using a Windows event. +// 4. Now the parent can release the write end of the pipe on its side. If +// this is done before step 3, the object's reference count goes down to +// 0 and it is destroyed, preventing the child from acquiring it. The +// parent now has to release it, or read operations on the read end of +// the pipe will not return when the child terminates. +// 5. The parent reads child's output through the pipe (outcome code and +// any possible error messages) from the pipe, and its stderr and then +// determines whether to fail the test. +// +// Note: to distinguish Win32 API calls from the local method and function +// calls, the former are explicitly resolved in the global namespace. +// +class WindowsDeathTest : public DeathTestImpl { + public: + WindowsDeathTest(const char* a_statement, + const RE* a_regex, + const char* file, + int line) + : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {} + + // All of these virtual functions are inherited from DeathTest. + virtual int Wait(); + virtual TestRole AssumeRole(); + + private: + // The name of the file in which the death test is located. + const char* const file_; + // The line number on which the death test is located. + const int line_; + // Handle to the write end of the pipe to the child process. + AutoHandle write_handle_; + // Child process handle. + AutoHandle child_handle_; + // Event the child process uses to signal the parent that it has + // acquired the handle to the write end of the pipe. After seeing this + // event the parent can release its own handles to make sure its + // ReadFile() calls return when the child terminates. + AutoHandle event_handle_; +}; + +// Waits for the child in a death test to exit, returning its exit +// status, or 0 if no child process exists. As a side effect, sets the +// outcome data member. +int WindowsDeathTest::Wait() { + if (!spawned()) + return 0; + + // Wait until the child either signals that it has acquired the write end + // of the pipe or it dies. + const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() }; + switch (::WaitForMultipleObjects(2, + wait_handles, + FALSE, // Waits for any of the handles. + INFINITE)) { + case WAIT_OBJECT_0: + case WAIT_OBJECT_0 + 1: + break; + default: + GTEST_DEATH_TEST_CHECK_(false); // Should not get here. + } + + // The child has acquired the write end of the pipe or exited. + // We release the handle on our side and continue. + write_handle_.Reset(); + event_handle_.Reset(); + + ReadAndInterpretStatusByte(); + + // Waits for the child process to exit if it haven't already. This + // returns immediately if the child has already exited, regardless of + // whether previous calls to WaitForMultipleObjects synchronized on this + // handle or not. + GTEST_DEATH_TEST_CHECK_( + WAIT_OBJECT_0 == ::WaitForSingleObject(child_handle_.Get(), + INFINITE)); + DWORD status_code; + GTEST_DEATH_TEST_CHECK_( + ::GetExitCodeProcess(child_handle_.Get(), &status_code) != FALSE); + child_handle_.Reset(); + set_status(static_cast(status_code)); + return status(); +} + +// The AssumeRole process for a Windows death test. It creates a child +// process with the same executable as the current process to run the +// death test. The child process is given the --gtest_filter and +// --gtest_internal_run_death_test flags such that it knows to run the +// current death test only. +DeathTest::TestRole WindowsDeathTest::AssumeRole() { + const UnitTestImpl* const impl = GetUnitTestImpl(); + const InternalRunDeathTestFlag* const flag = + impl->internal_run_death_test_flag(); + const TestInfo* const info = impl->current_test_info(); + const int death_test_index = info->result()->death_test_count(); + + if (flag != NULL) { + // ParseInternalRunDeathTestFlag() has performed all the necessary + // processing. + set_write_fd(flag->write_fd()); + return EXECUTE_TEST; + } + + // WindowsDeathTest uses an anonymous pipe to communicate results of + // a death test. + SECURITY_ATTRIBUTES handles_are_inheritable = { + sizeof(SECURITY_ATTRIBUTES), NULL, TRUE }; + HANDLE read_handle, write_handle; + GTEST_DEATH_TEST_CHECK_( + ::CreatePipe(&read_handle, &write_handle, &handles_are_inheritable, + 0) // Default buffer size. + != FALSE); + set_read_fd(::_open_osfhandle(reinterpret_cast(read_handle), + O_RDONLY)); + write_handle_.Reset(write_handle); + event_handle_.Reset(::CreateEvent( + &handles_are_inheritable, + TRUE, // The event will automatically reset to non-signaled state. + FALSE, // The initial state is non-signalled. + NULL)); // The even is unnamed. + GTEST_DEATH_TEST_CHECK_(event_handle_.Get() != NULL); + const std::string filter_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + + info->test_case_name() + "." + info->name(); + const std::string internal_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + + "=" + file_ + "|" + StreamableToString(line_) + "|" + + StreamableToString(death_test_index) + "|" + + StreamableToString(static_cast(::GetCurrentProcessId())) + + // size_t has the same width as pointers on both 32-bit and 64-bit + // Windows platforms. + // See http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx. + "|" + StreamableToString(reinterpret_cast(write_handle)) + + "|" + StreamableToString(reinterpret_cast(event_handle_.Get())); + + char executable_path[_MAX_PATH + 1]; // NOLINT + GTEST_DEATH_TEST_CHECK_( + _MAX_PATH + 1 != ::GetModuleFileNameA(NULL, + executable_path, + _MAX_PATH)); + + std::string command_line = + std::string(::GetCommandLineA()) + " " + filter_flag + " \"" + + internal_flag + "\""; + + DeathTest::set_last_death_test_message(""); + + CaptureStderr(); + // Flush the log buffers since the log streams are shared with the child. + FlushInfoLog(); + + // The child process will share the standard handles with the parent. + STARTUPINFOA startup_info; + memset(&startup_info, 0, sizeof(STARTUPINFO)); + startup_info.dwFlags = STARTF_USESTDHANDLES; + startup_info.hStdInput = ::GetStdHandle(STD_INPUT_HANDLE); + startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); + startup_info.hStdError = ::GetStdHandle(STD_ERROR_HANDLE); + + PROCESS_INFORMATION process_info; + GTEST_DEATH_TEST_CHECK_(::CreateProcessA( + executable_path, + const_cast(command_line.c_str()), + NULL, // Retuned process handle is not inheritable. + NULL, // Retuned thread handle is not inheritable. + TRUE, // Child inherits all inheritable handles (for write_handle_). + 0x0, // Default creation flags. + NULL, // Inherit the parent's environment. + UnitTest::GetInstance()->original_working_dir(), + &startup_info, + &process_info) != FALSE); + child_handle_.Reset(process_info.hProcess); + ::CloseHandle(process_info.hThread); + set_spawned(true); + return OVERSEE_TEST; +} +# else // We are not on Windows. + +// ForkingDeathTest provides implementations for most of the abstract +// methods of the DeathTest interface. Only the AssumeRole method is +// left undefined. +class ForkingDeathTest : public DeathTestImpl { + public: + ForkingDeathTest(const char* statement, const RE* regex); + + // All of these virtual functions are inherited from DeathTest. + virtual int Wait(); + + protected: + void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } + + private: + // PID of child process during death test; 0 in the child process itself. + pid_t child_pid_; +}; + +// Constructs a ForkingDeathTest. +ForkingDeathTest::ForkingDeathTest(const char* a_statement, const RE* a_regex) + : DeathTestImpl(a_statement, a_regex), + child_pid_(-1) {} + +// Waits for the child in a death test to exit, returning its exit +// status, or 0 if no child process exists. As a side effect, sets the +// outcome data member. +int ForkingDeathTest::Wait() { + if (!spawned()) + return 0; + + ReadAndInterpretStatusByte(); + + int status_value; + GTEST_DEATH_TEST_CHECK_SYSCALL_(waitpid(child_pid_, &status_value, 0)); + set_status(status_value); + return status_value; +} + +// A concrete death test class that forks, then immediately runs the test +// in the child process. +class NoExecDeathTest : public ForkingDeathTest { + public: + NoExecDeathTest(const char* a_statement, const RE* a_regex) : + ForkingDeathTest(a_statement, a_regex) { } + virtual TestRole AssumeRole(); +}; + +// The AssumeRole process for a fork-and-run death test. It implements a +// straightforward fork, with a simple pipe to transmit the status byte. +DeathTest::TestRole NoExecDeathTest::AssumeRole() { + const size_t thread_count = GetThreadCount(); + if (thread_count != 1) { + GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count); + } + + int pipe_fd[2]; + GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); + + DeathTest::set_last_death_test_message(""); + CaptureStderr(); + // When we fork the process below, the log file buffers are copied, but the + // file descriptors are shared. We flush all log files here so that closing + // the file descriptors in the child process doesn't throw off the + // synchronization between descriptors and buffers in the parent process. + // This is as close to the fork as possible to avoid a race condition in case + // there are multiple threads running before the death test, and another + // thread writes to the log file. + FlushInfoLog(); + + const pid_t child_pid = fork(); + GTEST_DEATH_TEST_CHECK_(child_pid != -1); + set_child_pid(child_pid); + if (child_pid == 0) { + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0])); + set_write_fd(pipe_fd[1]); + // Redirects all logging to stderr in the child process to prevent + // concurrent writes to the log files. We capture stderr in the parent + // process and append the child process' output to a log. + LogToStderr(); + // Event forwarding to the listeners of event listener API mush be shut + // down in death test subprocesses. + GetUnitTestImpl()->listeners()->SuppressEventForwarding(); + g_in_fast_death_test_child = true; + return EXECUTE_TEST; + } else { + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); + set_read_fd(pipe_fd[0]); + set_spawned(true); + return OVERSEE_TEST; + } +} + +// A concrete death test class that forks and re-executes the main +// program from the beginning, with command-line flags set that cause +// only this specific death test to be run. +class ExecDeathTest : public ForkingDeathTest { + public: + ExecDeathTest(const char* a_statement, const RE* a_regex, + const char* file, int line) : + ForkingDeathTest(a_statement, a_regex), file_(file), line_(line) { } + virtual TestRole AssumeRole(); + private: + static ::std::vector + GetArgvsForDeathTestChildProcess() { + ::std::vector args = GetInjectableArgvs(); + return args; + } + // The name of the file in which the death test is located. + const char* const file_; + // The line number on which the death test is located. + const int line_; +}; + +// Utility class for accumulating command-line arguments. +class Arguments { + public: + Arguments() { + args_.push_back(NULL); + } + + ~Arguments() { + for (std::vector::iterator i = args_.begin(); i != args_.end(); + ++i) { + free(*i); + } + } + void AddArgument(const char* argument) { + args_.insert(args_.end() - 1, posix::StrDup(argument)); + } + + template + void AddArguments(const ::std::vector& arguments) { + for (typename ::std::vector::const_iterator i = arguments.begin(); + i != arguments.end(); + ++i) { + args_.insert(args_.end() - 1, posix::StrDup(i->c_str())); + } + } + char* const* Argv() { + return &args_[0]; + } + + private: + std::vector args_; +}; + +// A struct that encompasses the arguments to the child process of a +// threadsafe-style death test process. +struct ExecDeathTestArgs { + char* const* argv; // Command-line arguments for the child's call to exec + int close_fd; // File descriptor to close; the read end of a pipe +}; + +# if GTEST_OS_MAC +inline char** GetEnviron() { + // When Google Test is built as a framework on MacOS X, the environ variable + // is unavailable. Apple's documentation (man environ) recommends using + // _NSGetEnviron() instead. + return *_NSGetEnviron(); +} +# else +// Some POSIX platforms expect you to declare environ. extern "C" makes +// it reside in the global namespace. +extern "C" char** environ; +inline char** GetEnviron() { return environ; } +# endif // GTEST_OS_MAC + +# if !GTEST_OS_QNX +// The main function for a threadsafe-style death test child process. +// This function is called in a clone()-ed process and thus must avoid +// any potentially unsafe operations like malloc or libc functions. +static int ExecDeathTestChildMain(void* child_arg) { + ExecDeathTestArgs* const args = static_cast(child_arg); + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd)); + + // We need to execute the test program in the same environment where + // it was originally invoked. Therefore we change to the original + // working directory first. + const char* const original_dir = + UnitTest::GetInstance()->original_working_dir(); + // We can safely call chdir() as it's a direct system call. + if (chdir(original_dir) != 0) { + DeathTestAbort(std::string("chdir(\"") + original_dir + "\") failed: " + + GetLastErrnoDescription()); + return EXIT_FAILURE; + } + + // We can safely call execve() as it's a direct system call. We + // cannot use execvp() as it's a libc function and thus potentially + // unsafe. Since execve() doesn't search the PATH, the user must + // invoke the test program via a valid path that contains at least + // one path separator. + execve(args->argv[0], args->argv, GetEnviron()); + DeathTestAbort(std::string("execve(") + args->argv[0] + ", ...) in " + + original_dir + " failed: " + + GetLastErrnoDescription()); + return EXIT_FAILURE; +} +# endif // !GTEST_OS_QNX + +// Two utility routines that together determine the direction the stack +// grows. +// This could be accomplished more elegantly by a single recursive +// function, but we want to guard against the unlikely possibility of +// a smart compiler optimizing the recursion away. +// +// GTEST_NO_INLINE_ is required to prevent GCC 4.6 from inlining +// StackLowerThanAddress into StackGrowsDown, which then doesn't give +// correct answer. +void StackLowerThanAddress(const void* ptr, bool* result) GTEST_NO_INLINE_; +void StackLowerThanAddress(const void* ptr, bool* result) { + int dummy; + *result = (&dummy < ptr); +} + +bool StackGrowsDown() { + int dummy; + bool result; + StackLowerThanAddress(&dummy, &result); + return result; +} + +// Spawns a child process with the same executable as the current process in +// a thread-safe manner and instructs it to run the death test. The +// implementation uses fork(2) + exec. On systems where clone(2) is +// available, it is used instead, being slightly more thread-safe. On QNX, +// fork supports only single-threaded environments, so this function uses +// spawn(2) there instead. The function dies with an error message if +// anything goes wrong. +static pid_t ExecDeathTestSpawnChild(char* const* argv, int close_fd) { + ExecDeathTestArgs args = { argv, close_fd }; + pid_t child_pid = -1; + +# if GTEST_OS_QNX + // Obtains the current directory and sets it to be closed in the child + // process. + const int cwd_fd = open(".", O_RDONLY); + GTEST_DEATH_TEST_CHECK_(cwd_fd != -1); + GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(cwd_fd, F_SETFD, FD_CLOEXEC)); + // We need to execute the test program in the same environment where + // it was originally invoked. Therefore we change to the original + // working directory first. + const char* const original_dir = + UnitTest::GetInstance()->original_working_dir(); + // We can safely call chdir() as it's a direct system call. + if (chdir(original_dir) != 0) { + DeathTestAbort(std::string("chdir(\"") + original_dir + "\") failed: " + + GetLastErrnoDescription()); + return EXIT_FAILURE; + } + + int fd_flags; + // Set close_fd to be closed after spawn. + GTEST_DEATH_TEST_CHECK_SYSCALL_(fd_flags = fcntl(close_fd, F_GETFD)); + GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(close_fd, F_SETFD, + fd_flags | FD_CLOEXEC)); + struct inheritance inherit = {0}; + // spawn is a system call. + child_pid = spawn(args.argv[0], 0, NULL, &inherit, args.argv, GetEnviron()); + // Restores the current working directory. + GTEST_DEATH_TEST_CHECK_(fchdir(cwd_fd) != -1); + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(cwd_fd)); + +# else // GTEST_OS_QNX +# if GTEST_OS_LINUX + // When a SIGPROF signal is received while fork() or clone() are executing, + // the process may hang. To avoid this, we ignore SIGPROF here and re-enable + // it after the call to fork()/clone() is complete. + struct sigaction saved_sigprof_action; + struct sigaction ignore_sigprof_action; + memset(&ignore_sigprof_action, 0, sizeof(ignore_sigprof_action)); + sigemptyset(&ignore_sigprof_action.sa_mask); + ignore_sigprof_action.sa_handler = SIG_IGN; + GTEST_DEATH_TEST_CHECK_SYSCALL_(sigaction( + SIGPROF, &ignore_sigprof_action, &saved_sigprof_action)); +# endif // GTEST_OS_LINUX + +# if GTEST_HAS_CLONE + const bool use_fork = GTEST_FLAG(death_test_use_fork); + + if (!use_fork) { + static const bool stack_grows_down = StackGrowsDown(); + const size_t stack_size = getpagesize(); + // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead. + void* const stack = mmap(NULL, stack_size, PROT_READ | PROT_WRITE, + MAP_ANON | MAP_PRIVATE, -1, 0); + GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED); + + // Maximum stack alignment in bytes: For a downward-growing stack, this + // amount is subtracted from size of the stack space to get an address + // that is within the stack space and is aligned on all systems we care + // about. As far as I know there is no ABI with stack alignment greater + // than 64. We assume stack and stack_size already have alignment of + // kMaxStackAlignment. + const size_t kMaxStackAlignment = 64; + void* const stack_top = + static_cast(stack) + + (stack_grows_down ? stack_size - kMaxStackAlignment : 0); + GTEST_DEATH_TEST_CHECK_(stack_size > kMaxStackAlignment && + reinterpret_cast(stack_top) % kMaxStackAlignment == 0); + + child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args); + + GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1); + } +# else + const bool use_fork = true; +# endif // GTEST_HAS_CLONE + + if (use_fork && (child_pid = fork()) == 0) { + ExecDeathTestChildMain(&args); + _exit(0); + } +# endif // GTEST_OS_QNX +# if GTEST_OS_LINUX + GTEST_DEATH_TEST_CHECK_SYSCALL_( + sigaction(SIGPROF, &saved_sigprof_action, NULL)); +# endif // GTEST_OS_LINUX + + GTEST_DEATH_TEST_CHECK_(child_pid != -1); + return child_pid; +} + +// The AssumeRole process for a fork-and-exec death test. It re-executes the +// main program from the beginning, setting the --gtest_filter +// and --gtest_internal_run_death_test flags to cause only the current +// death test to be re-run. +DeathTest::TestRole ExecDeathTest::AssumeRole() { + const UnitTestImpl* const impl = GetUnitTestImpl(); + const InternalRunDeathTestFlag* const flag = + impl->internal_run_death_test_flag(); + const TestInfo* const info = impl->current_test_info(); + const int death_test_index = info->result()->death_test_count(); + + if (flag != NULL) { + set_write_fd(flag->write_fd()); + return EXECUTE_TEST; + } + + int pipe_fd[2]; + GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); + // Clear the close-on-exec flag on the write end of the pipe, lest + // it be closed when the child process does an exec: + GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1); + + const std::string filter_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + + info->test_case_name() + "." + info->name(); + const std::string internal_flag = + std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + "=" + + file_ + "|" + StreamableToString(line_) + "|" + + StreamableToString(death_test_index) + "|" + + StreamableToString(pipe_fd[1]); + Arguments args; + args.AddArguments(GetArgvsForDeathTestChildProcess()); + args.AddArgument(filter_flag.c_str()); + args.AddArgument(internal_flag.c_str()); + + DeathTest::set_last_death_test_message(""); + + CaptureStderr(); + // See the comment in NoExecDeathTest::AssumeRole for why the next line + // is necessary. + FlushInfoLog(); + + const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]); + GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); + set_child_pid(child_pid); + set_read_fd(pipe_fd[0]); + set_spawned(true); + return OVERSEE_TEST; +} + +# endif // !GTEST_OS_WINDOWS + +// Creates a concrete DeathTest-derived class that depends on the +// --gtest_death_test_style flag, and sets the pointer pointed to +// by the "test" argument to its address. If the test should be +// skipped, sets that pointer to NULL. Returns true, unless the +// flag is set to an invalid value. +bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex, + const char* file, int line, + DeathTest** test) { + UnitTestImpl* const impl = GetUnitTestImpl(); + const InternalRunDeathTestFlag* const flag = + impl->internal_run_death_test_flag(); + const int death_test_index = impl->current_test_info() + ->increment_death_test_count(); + + if (flag != NULL) { + if (death_test_index > flag->index()) { + DeathTest::set_last_death_test_message( + "Death test count (" + StreamableToString(death_test_index) + + ") somehow exceeded expected maximum (" + + StreamableToString(flag->index()) + ")"); + return false; + } + + if (!(flag->file() == file && flag->line() == line && + flag->index() == death_test_index)) { + *test = NULL; + return true; + } + } + +# if GTEST_OS_WINDOWS + + if (GTEST_FLAG(death_test_style) == "threadsafe" || + GTEST_FLAG(death_test_style) == "fast") { + *test = new WindowsDeathTest(statement, regex, file, line); + } + +# else + + if (GTEST_FLAG(death_test_style) == "threadsafe") { + *test = new ExecDeathTest(statement, regex, file, line); + } else if (GTEST_FLAG(death_test_style) == "fast") { + *test = new NoExecDeathTest(statement, regex); + } + +# endif // GTEST_OS_WINDOWS + + else { // NOLINT - this is more readable than unbalanced brackets inside #if. + DeathTest::set_last_death_test_message( + "Unknown death test style \"" + GTEST_FLAG(death_test_style) + + "\" encountered"); + return false; + } + + return true; +} + +// Splits a given string on a given delimiter, populating a given +// vector with the fields. GTEST_HAS_DEATH_TEST implies that we have +// ::std::string, so we can use it here. +static void SplitString(const ::std::string& str, char delimiter, + ::std::vector< ::std::string>* dest) { + ::std::vector< ::std::string> parsed; + ::std::string::size_type pos = 0; + while (::testing::internal::AlwaysTrue()) { + const ::std::string::size_type colon = str.find(delimiter, pos); + if (colon == ::std::string::npos) { + parsed.push_back(str.substr(pos)); + break; + } else { + parsed.push_back(str.substr(pos, colon - pos)); + pos = colon + 1; + } + } + dest->swap(parsed); +} + +# if GTEST_OS_WINDOWS +// Recreates the pipe and event handles from the provided parameters, +// signals the event, and returns a file descriptor wrapped around the pipe +// handle. This function is called in the child process only. +int GetStatusFileDescriptor(unsigned int parent_process_id, + size_t write_handle_as_size_t, + size_t event_handle_as_size_t) { + AutoHandle parent_process_handle(::OpenProcess(PROCESS_DUP_HANDLE, + FALSE, // Non-inheritable. + parent_process_id)); + if (parent_process_handle.Get() == INVALID_HANDLE_VALUE) { + DeathTestAbort("Unable to open parent process " + + StreamableToString(parent_process_id)); + } + + // TODO(vladl@google.com): Replace the following check with a + // compile-time assertion when available. + GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t)); + + const HANDLE write_handle = + reinterpret_cast(write_handle_as_size_t); + HANDLE dup_write_handle; + + // The newly initialized handle is accessible only in in the parent + // process. To obtain one accessible within the child, we need to use + // DuplicateHandle. + if (!::DuplicateHandle(parent_process_handle.Get(), write_handle, + ::GetCurrentProcess(), &dup_write_handle, + 0x0, // Requested privileges ignored since + // DUPLICATE_SAME_ACCESS is used. + FALSE, // Request non-inheritable handler. + DUPLICATE_SAME_ACCESS)) { + DeathTestAbort("Unable to duplicate the pipe handle " + + StreamableToString(write_handle_as_size_t) + + " from the parent process " + + StreamableToString(parent_process_id)); + } + + const HANDLE event_handle = reinterpret_cast(event_handle_as_size_t); + HANDLE dup_event_handle; + + if (!::DuplicateHandle(parent_process_handle.Get(), event_handle, + ::GetCurrentProcess(), &dup_event_handle, + 0x0, + FALSE, + DUPLICATE_SAME_ACCESS)) { + DeathTestAbort("Unable to duplicate the event handle " + + StreamableToString(event_handle_as_size_t) + + " from the parent process " + + StreamableToString(parent_process_id)); + } + + const int write_fd = + ::_open_osfhandle(reinterpret_cast(dup_write_handle), O_APPEND); + if (write_fd == -1) { + DeathTestAbort("Unable to convert pipe handle " + + StreamableToString(write_handle_as_size_t) + + " to a file descriptor"); + } + + // Signals the parent that the write end of the pipe has been acquired + // so the parent can release its own write end. + ::SetEvent(dup_event_handle); + + return write_fd; +} +# endif // GTEST_OS_WINDOWS + +// Returns a newly created InternalRunDeathTestFlag object with fields +// initialized from the GTEST_FLAG(internal_run_death_test) flag if +// the flag is specified; otherwise returns NULL. +InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { + if (GTEST_FLAG(internal_run_death_test) == "") return NULL; + + // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we + // can use it here. + int line = -1; + int index = -1; + ::std::vector< ::std::string> fields; + SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields); + int write_fd = -1; + +# if GTEST_OS_WINDOWS + + unsigned int parent_process_id = 0; + size_t write_handle_as_size_t = 0; + size_t event_handle_as_size_t = 0; + + if (fields.size() != 6 + || !ParseNaturalNumber(fields[1], &line) + || !ParseNaturalNumber(fields[2], &index) + || !ParseNaturalNumber(fields[3], &parent_process_id) + || !ParseNaturalNumber(fields[4], &write_handle_as_size_t) + || !ParseNaturalNumber(fields[5], &event_handle_as_size_t)) { + DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + + GTEST_FLAG(internal_run_death_test)); + } + write_fd = GetStatusFileDescriptor(parent_process_id, + write_handle_as_size_t, + event_handle_as_size_t); +# else + + if (fields.size() != 4 + || !ParseNaturalNumber(fields[1], &line) + || !ParseNaturalNumber(fields[2], &index) + || !ParseNaturalNumber(fields[3], &write_fd)) { + DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + + GTEST_FLAG(internal_run_death_test)); + } + +# endif // GTEST_OS_WINDOWS + + return new InternalRunDeathTestFlag(fields[0], line, index, write_fd); +} + +} // namespace internal + +#endif // GTEST_HAS_DEATH_TEST + +} // namespace testing +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: keith.ray@gmail.com (Keith Ray) + + +#include + +#if GTEST_OS_WINDOWS_MOBILE +# include +#elif GTEST_OS_WINDOWS +# include +# include +#elif GTEST_OS_SYMBIAN +// Symbian OpenC has PATH_MAX in sys/syslimits.h +# include +#else +# include +# include // Some Linux distributions define PATH_MAX here. +#endif // GTEST_OS_WINDOWS_MOBILE + +#if GTEST_OS_WINDOWS +# define GTEST_PATH_MAX_ _MAX_PATH +#elif defined(PATH_MAX) +# define GTEST_PATH_MAX_ PATH_MAX +#elif defined(_XOPEN_PATH_MAX) +# define GTEST_PATH_MAX_ _XOPEN_PATH_MAX +#else +# define GTEST_PATH_MAX_ _POSIX_PATH_MAX +#endif // GTEST_OS_WINDOWS + + +namespace testing { +namespace internal { + +#if GTEST_OS_WINDOWS +// On Windows, '\\' is the standard path separator, but many tools and the +// Windows API also accept '/' as an alternate path separator. Unless otherwise +// noted, a file path can contain either kind of path separators, or a mixture +// of them. +const char kPathSeparator = '\\'; +const char kAlternatePathSeparator = '/'; +const char kPathSeparatorString[] = "\\"; +const char kAlternatePathSeparatorString[] = "/"; +# if GTEST_OS_WINDOWS_MOBILE +// Windows CE doesn't have a current directory. You should not use +// the current directory in tests on Windows CE, but this at least +// provides a reasonable fallback. +const char kCurrentDirectoryString[] = "\\"; +// Windows CE doesn't define INVALID_FILE_ATTRIBUTES +const DWORD kInvalidFileAttributes = 0xffffffff; +# else +const char kCurrentDirectoryString[] = ".\\"; +# endif // GTEST_OS_WINDOWS_MOBILE +#else +const char kPathSeparator = '/'; +const char kPathSeparatorString[] = "/"; +const char kCurrentDirectoryString[] = "./"; +#endif // GTEST_OS_WINDOWS + +// Returns whether the given character is a valid path separator. +static bool IsPathSeparator(char c) { +#if GTEST_HAS_ALT_PATH_SEP_ + return (c == kPathSeparator) || (c == kAlternatePathSeparator); +#else + return c == kPathSeparator; +#endif +} + +// Returns the current working directory, or "" if unsuccessful. +FilePath FilePath::GetCurrentDir() { +#if GTEST_OS_WINDOWS_MOBILE + // Windows CE doesn't have a current directory, so we just return + // something reasonable. + return FilePath(kCurrentDirectoryString); +#elif GTEST_OS_WINDOWS + char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; + return FilePath(_getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); +#else + char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; + return FilePath(getcwd(cwd, sizeof(cwd)) == NULL ? "" : cwd); +#endif // GTEST_OS_WINDOWS_MOBILE +} + +// Returns a copy of the FilePath with the case-insensitive extension removed. +// Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns +// FilePath("dir/file"). If a case-insensitive extension is not +// found, returns a copy of the original FilePath. +FilePath FilePath::RemoveExtension(const char* extension) const { + const std::string dot_extension = std::string(".") + extension; + if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) { + return FilePath(pathname_.substr( + 0, pathname_.length() - dot_extension.length())); + } + return *this; +} + +// Returns a pointer to the last occurence of a valid path separator in +// the FilePath. On Windows, for example, both '/' and '\' are valid path +// separators. Returns NULL if no path separator was found. +const char* FilePath::FindLastPathSeparator() const { + const char* const last_sep = strrchr(c_str(), kPathSeparator); +#if GTEST_HAS_ALT_PATH_SEP_ + const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator); + // Comparing two pointers of which only one is NULL is undefined. + if (last_alt_sep != NULL && + (last_sep == NULL || last_alt_sep > last_sep)) { + return last_alt_sep; + } +#endif + return last_sep; +} + +// Returns a copy of the FilePath with the directory part removed. +// Example: FilePath("path/to/file").RemoveDirectoryName() returns +// FilePath("file"). If there is no directory part ("just_a_file"), it returns +// the FilePath unmodified. If there is no file part ("just_a_dir/") it +// returns an empty FilePath (""). +// On Windows platform, '\' is the path separator, otherwise it is '/'. +FilePath FilePath::RemoveDirectoryName() const { + const char* const last_sep = FindLastPathSeparator(); + return last_sep ? FilePath(last_sep + 1) : *this; +} + +// RemoveFileName returns the directory path with the filename removed. +// Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". +// If the FilePath is "a_file" or "/a_file", RemoveFileName returns +// FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does +// not have a file, like "just/a/dir/", it returns the FilePath unmodified. +// On Windows platform, '\' is the path separator, otherwise it is '/'. +FilePath FilePath::RemoveFileName() const { + const char* const last_sep = FindLastPathSeparator(); + std::string dir; + if (last_sep) { + dir = std::string(c_str(), last_sep + 1 - c_str()); + } else { + dir = kCurrentDirectoryString; + } + return FilePath(dir); +} + +// Helper functions for naming files in a directory for xml output. + +// Given directory = "dir", base_name = "test", number = 0, +// extension = "xml", returns "dir/test.xml". If number is greater +// than zero (e.g., 12), returns "dir/test_12.xml". +// On Windows platform, uses \ as the separator rather than /. +FilePath FilePath::MakeFileName(const FilePath& directory, + const FilePath& base_name, + int number, + const char* extension) { + std::string file; + if (number == 0) { + file = base_name.string() + "." + extension; + } else { + file = base_name.string() + "_" + StreamableToString(number) + + "." + extension; + } + return ConcatPaths(directory, FilePath(file)); +} + +// Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". +// On Windows, uses \ as the separator rather than /. +FilePath FilePath::ConcatPaths(const FilePath& directory, + const FilePath& relative_path) { + if (directory.IsEmpty()) + return relative_path; + const FilePath dir(directory.RemoveTrailingPathSeparator()); + return FilePath(dir.string() + kPathSeparator + relative_path.string()); +} + +// Returns true if pathname describes something findable in the file-system, +// either a file, directory, or whatever. +bool FilePath::FileOrDirectoryExists() const { +#if GTEST_OS_WINDOWS_MOBILE + LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); + const DWORD attributes = GetFileAttributes(unicode); + delete [] unicode; + return attributes != kInvalidFileAttributes; +#else + posix::StatStruct file_stat; + return posix::Stat(pathname_.c_str(), &file_stat) == 0; +#endif // GTEST_OS_WINDOWS_MOBILE +} + +// Returns true if pathname describes a directory in the file-system +// that exists. +bool FilePath::DirectoryExists() const { + bool result = false; +#if GTEST_OS_WINDOWS + // Don't strip off trailing separator if path is a root directory on + // Windows (like "C:\\"). + const FilePath& path(IsRootDirectory() ? *this : + RemoveTrailingPathSeparator()); +#else + const FilePath& path(*this); +#endif + +#if GTEST_OS_WINDOWS_MOBILE + LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); + const DWORD attributes = GetFileAttributes(unicode); + delete [] unicode; + if ((attributes != kInvalidFileAttributes) && + (attributes & FILE_ATTRIBUTE_DIRECTORY)) { + result = true; + } +#else + posix::StatStruct file_stat; + result = posix::Stat(path.c_str(), &file_stat) == 0 && + posix::IsDir(file_stat); +#endif // GTEST_OS_WINDOWS_MOBILE + + return result; +} + +// Returns true if pathname describes a root directory. (Windows has one +// root directory per disk drive.) +bool FilePath::IsRootDirectory() const { +#if GTEST_OS_WINDOWS + // TODO(wan@google.com): on Windows a network share like + // \\server\share can be a root directory, although it cannot be the + // current directory. Handle this properly. + return pathname_.length() == 3 && IsAbsolutePath(); +#else + return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]); +#endif +} + +// Returns true if pathname describes an absolute path. +bool FilePath::IsAbsolutePath() const { + const char* const name = pathname_.c_str(); +#if GTEST_OS_WINDOWS + return pathname_.length() >= 3 && + ((name[0] >= 'a' && name[0] <= 'z') || + (name[0] >= 'A' && name[0] <= 'Z')) && + name[1] == ':' && + IsPathSeparator(name[2]); +#else + return IsPathSeparator(name[0]); +#endif +} + +// Returns a pathname for a file that does not currently exist. The pathname +// will be directory/base_name.extension or +// directory/base_name_.extension if directory/base_name.extension +// already exists. The number will be incremented until a pathname is found +// that does not already exist. +// Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. +// There could be a race condition if two or more processes are calling this +// function at the same time -- they could both pick the same filename. +FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, + const FilePath& base_name, + const char* extension) { + FilePath full_pathname; + int number = 0; + do { + full_pathname.Set(MakeFileName(directory, base_name, number++, extension)); + } while (full_pathname.FileOrDirectoryExists()); + return full_pathname; +} + +// Returns true if FilePath ends with a path separator, which indicates that +// it is intended to represent a directory. Returns false otherwise. +// This does NOT check that a directory (or file) actually exists. +bool FilePath::IsDirectory() const { + return !pathname_.empty() && + IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]); +} + +// Create directories so that path exists. Returns true if successful or if +// the directories already exist; returns false if unable to create directories +// for any reason. +bool FilePath::CreateDirectoriesRecursively() const { + if (!this->IsDirectory()) { + return false; + } + + if (pathname_.length() == 0 || this->DirectoryExists()) { + return true; + } + + const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName()); + return parent.CreateDirectoriesRecursively() && this->CreateFolder(); +} + +// Create the directory so that path exists. Returns true if successful or +// if the directory already exists; returns false if unable to create the +// directory for any reason, including if the parent directory does not +// exist. Not named "CreateDirectory" because that's a macro on Windows. +bool FilePath::CreateFolder() const { +#if GTEST_OS_WINDOWS_MOBILE + FilePath removed_sep(this->RemoveTrailingPathSeparator()); + LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); + int result = CreateDirectory(unicode, NULL) ? 0 : -1; + delete [] unicode; +#elif GTEST_OS_WINDOWS + int result = _mkdir(pathname_.c_str()); +#else + int result = mkdir(pathname_.c_str(), 0777); +#endif // GTEST_OS_WINDOWS_MOBILE + + if (result == -1) { + return this->DirectoryExists(); // An error is OK if the directory exists. + } + return true; // No error. +} + +// If input name has a trailing separator character, remove it and return the +// name, otherwise return the name string unmodified. +// On Windows platform, uses \ as the separator, other platforms use /. +FilePath FilePath::RemoveTrailingPathSeparator() const { + return IsDirectory() + ? FilePath(pathname_.substr(0, pathname_.length() - 1)) + : *this; +} + +// Removes any redundant separators that might be in the pathname. +// For example, "bar///foo" becomes "bar/foo". Does not eliminate other +// redundancies that might be in a pathname involving "." or "..". +// TODO(wan@google.com): handle Windows network shares (e.g. \\server\share). +void FilePath::Normalize() { + if (pathname_.c_str() == NULL) { + pathname_ = ""; + return; + } + const char* src = pathname_.c_str(); + char* const dest = new char[pathname_.length() + 1]; + char* dest_ptr = dest; + memset(dest_ptr, 0, pathname_.length() + 1); + + while (*src != '\0') { + *dest_ptr = *src; + if (!IsPathSeparator(*src)) { + src++; + } else { +#if GTEST_HAS_ALT_PATH_SEP_ + if (*dest_ptr == kAlternatePathSeparator) { + *dest_ptr = kPathSeparator; + } +#endif + while (IsPathSeparator(*src)) + src++; + } + dest_ptr++; + } + *dest_ptr = '\0'; + pathname_ = dest; + delete[] dest; +} + +} // namespace internal +} // namespace testing +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + + +#include +#include +#include +#include + +#if GTEST_OS_WINDOWS_MOBILE +# include // For TerminateProcess() +#elif GTEST_OS_WINDOWS +# include +# include +#else +# include +#endif // GTEST_OS_WINDOWS_MOBILE + +#if GTEST_OS_MAC +# include +# include +# include +#endif // GTEST_OS_MAC + +#if GTEST_OS_QNX +# include +# include +#endif // GTEST_OS_QNX + + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#undef GTEST_IMPLEMENTATION_ + +namespace testing { +namespace internal { + +#if defined(_MSC_VER) || defined(__BORLANDC__) +// MSVC and C++Builder do not provide a definition of STDERR_FILENO. +const int kStdOutFileno = 1; +const int kStdErrFileno = 2; +#else +const int kStdOutFileno = STDOUT_FILENO; +const int kStdErrFileno = STDERR_FILENO; +#endif // _MSC_VER + +#if GTEST_OS_MAC + +// Returns the number of threads running in the process, or 0 to indicate that +// we cannot detect it. +size_t GetThreadCount() { + const task_t task = mach_task_self(); + mach_msg_type_number_t thread_count; + thread_act_array_t thread_list; + const kern_return_t status = task_threads(task, &thread_list, &thread_count); + if (status == KERN_SUCCESS) { + // task_threads allocates resources in thread_list and we need to free them + // to avoid leaks. + vm_deallocate(task, + reinterpret_cast(thread_list), + sizeof(thread_t) * thread_count); + return static_cast(thread_count); + } else { + return 0; + } +} + +#elif GTEST_OS_QNX + +// Returns the number of threads running in the process, or 0 to indicate that +// we cannot detect it. +size_t GetThreadCount() { + const int fd = open("/proc/self/as", O_RDONLY); + if (fd < 0) { + return 0; + } + procfs_info process_info; + const int status = + devctl(fd, DCMD_PROC_INFO, &process_info, sizeof(process_info), NULL); + close(fd); + if (status == EOK) { + return static_cast(process_info.num_threads); + } else { + return 0; + } +} + +#else + +size_t GetThreadCount() { + // There's no portable way to detect the number of threads, so we just + // return 0 to indicate that we cannot detect it. + return 0; +} + +#endif // GTEST_OS_MAC + +#if GTEST_USES_POSIX_RE + +// Implements RE. Currently only needed for death tests. + +RE::~RE() { + if (is_valid_) { + // regfree'ing an invalid regex might crash because the content + // of the regex is undefined. Since the regex's are essentially + // the same, one cannot be valid (or invalid) without the other + // being so too. + regfree(&partial_regex_); + regfree(&full_regex_); + } + free(const_cast(pattern_)); +} + +// Returns true iff regular expression re matches the entire str. +bool RE::FullMatch(const char* str, const RE& re) { + if (!re.is_valid_) return false; + + regmatch_t match; + return regexec(&re.full_regex_, str, 1, &match, 0) == 0; +} + +// Returns true iff regular expression re matches a substring of str +// (including str itself). +bool RE::PartialMatch(const char* str, const RE& re) { + if (!re.is_valid_) return false; + + regmatch_t match; + return regexec(&re.partial_regex_, str, 1, &match, 0) == 0; +} + +// Initializes an RE from its string representation. +void RE::Init(const char* regex) { + pattern_ = posix::StrDup(regex); + + // Reserves enough bytes to hold the regular expression used for a + // full match. + const size_t full_regex_len = strlen(regex) + 10; + char* const full_pattern = new char[full_regex_len]; + + snprintf(full_pattern, full_regex_len, "^(%s)$", regex); + is_valid_ = regcomp(&full_regex_, full_pattern, REG_EXTENDED) == 0; + // We want to call regcomp(&partial_regex_, ...) even if the + // previous expression returns false. Otherwise partial_regex_ may + // not be properly initialized can may cause trouble when it's + // freed. + // + // Some implementation of POSIX regex (e.g. on at least some + // versions of Cygwin) doesn't accept the empty string as a valid + // regex. We change it to an equivalent form "()" to be safe. + if (is_valid_) { + const char* const partial_regex = (*regex == '\0') ? "()" : regex; + is_valid_ = regcomp(&partial_regex_, partial_regex, REG_EXTENDED) == 0; + } + EXPECT_TRUE(is_valid_) + << "Regular expression \"" << regex + << "\" is not a valid POSIX Extended regular expression."; + + delete[] full_pattern; +} + +#elif GTEST_USES_SIMPLE_RE + +// Returns true iff ch appears anywhere in str (excluding the +// terminating '\0' character). +bool IsInSet(char ch, const char* str) { + return ch != '\0' && strchr(str, ch) != NULL; +} + +// Returns true iff ch belongs to the given classification. Unlike +// similar functions in , these aren't affected by the +// current locale. +bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } +bool IsAsciiPunct(char ch) { + return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); +} +bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } +bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } +bool IsAsciiWordChar(char ch) { + return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') || + ('0' <= ch && ch <= '9') || ch == '_'; +} + +// Returns true iff "\\c" is a supported escape sequence. +bool IsValidEscape(char c) { + return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); +} + +// Returns true iff the given atom (specified by escaped and pattern) +// matches ch. The result is undefined if the atom is invalid. +bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { + if (escaped) { // "\\p" where p is pattern_char. + switch (pattern_char) { + case 'd': return IsAsciiDigit(ch); + case 'D': return !IsAsciiDigit(ch); + case 'f': return ch == '\f'; + case 'n': return ch == '\n'; + case 'r': return ch == '\r'; + case 's': return IsAsciiWhiteSpace(ch); + case 'S': return !IsAsciiWhiteSpace(ch); + case 't': return ch == '\t'; + case 'v': return ch == '\v'; + case 'w': return IsAsciiWordChar(ch); + case 'W': return !IsAsciiWordChar(ch); + } + return IsAsciiPunct(pattern_char) && pattern_char == ch; + } + + return (pattern_char == '.' && ch != '\n') || pattern_char == ch; +} + +// Helper function used by ValidateRegex() to format error messages. +std::string FormatRegexSyntaxError(const char* regex, int index) { + return (Message() << "Syntax error at index " << index + << " in simple regular expression \"" << regex << "\": ").GetString(); +} + +// Generates non-fatal failures and returns false if regex is invalid; +// otherwise returns true. +bool ValidateRegex(const char* regex) { + if (regex == NULL) { + // TODO(wan@google.com): fix the source file location in the + // assertion failures to match where the regex is used in user + // code. + ADD_FAILURE() << "NULL is not a valid simple regular expression."; + return false; + } + + bool is_valid = true; + + // True iff ?, *, or + can follow the previous atom. + bool prev_repeatable = false; + for (int i = 0; regex[i]; i++) { + if (regex[i] == '\\') { // An escape sequence + i++; + if (regex[i] == '\0') { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) + << "'\\' cannot appear at the end."; + return false; + } + + if (!IsValidEscape(regex[i])) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) + << "invalid escape sequence \"\\" << regex[i] << "\"."; + is_valid = false; + } + prev_repeatable = true; + } else { // Not an escape sequence. + const char ch = regex[i]; + + if (ch == '^' && i > 0) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'^' can only appear at the beginning."; + is_valid = false; + } else if (ch == '$' && regex[i + 1] != '\0') { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'$' can only appear at the end."; + is_valid = false; + } else if (IsInSet(ch, "()[]{}|")) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'" << ch << "' is unsupported."; + is_valid = false; + } else if (IsRepeat(ch) && !prev_repeatable) { + ADD_FAILURE() << FormatRegexSyntaxError(regex, i) + << "'" << ch << "' can only follow a repeatable token."; + is_valid = false; + } + + prev_repeatable = !IsInSet(ch, "^$?*+"); + } + } + + return is_valid; +} + +// Matches a repeated regex atom followed by a valid simple regular +// expression. The regex atom is defined as c if escaped is false, +// or \c otherwise. repeat is the repetition meta character (?, *, +// or +). The behavior is undefined if str contains too many +// characters to be indexable by size_t, in which case the test will +// probably time out anyway. We are fine with this limitation as +// std::string has it too. +bool MatchRepetitionAndRegexAtHead( + bool escaped, char c, char repeat, const char* regex, + const char* str) { + const size_t min_count = (repeat == '+') ? 1 : 0; + const size_t max_count = (repeat == '?') ? 1 : + static_cast(-1) - 1; + // We cannot call numeric_limits::max() as it conflicts with the + // max() macro on Windows. + + for (size_t i = 0; i <= max_count; ++i) { + // We know that the atom matches each of the first i characters in str. + if (i >= min_count && MatchRegexAtHead(regex, str + i)) { + // We have enough matches at the head, and the tail matches too. + // Since we only care about *whether* the pattern matches str + // (as opposed to *how* it matches), there is no need to find a + // greedy match. + return true; + } + if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i])) + return false; + } + return false; +} + +// Returns true iff regex matches a prefix of str. regex must be a +// valid simple regular expression and not start with "^", or the +// result is undefined. +bool MatchRegexAtHead(const char* regex, const char* str) { + if (*regex == '\0') // An empty regex matches a prefix of anything. + return true; + + // "$" only matches the end of a string. Note that regex being + // valid guarantees that there's nothing after "$" in it. + if (*regex == '$') + return *str == '\0'; + + // Is the first thing in regex an escape sequence? + const bool escaped = *regex == '\\'; + if (escaped) + ++regex; + if (IsRepeat(regex[1])) { + // MatchRepetitionAndRegexAtHead() calls MatchRegexAtHead(), so + // here's an indirect recursion. It terminates as the regex gets + // shorter in each recursion. + return MatchRepetitionAndRegexAtHead( + escaped, regex[0], regex[1], regex + 2, str); + } else { + // regex isn't empty, isn't "$", and doesn't start with a + // repetition. We match the first atom of regex with the first + // character of str and recurse. + return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) && + MatchRegexAtHead(regex + 1, str + 1); + } +} + +// Returns true iff regex matches any substring of str. regex must be +// a valid simple regular expression, or the result is undefined. +// +// The algorithm is recursive, but the recursion depth doesn't exceed +// the regex length, so we won't need to worry about running out of +// stack space normally. In rare cases the time complexity can be +// exponential with respect to the regex length + the string length, +// but usually it's must faster (often close to linear). +bool MatchRegexAnywhere(const char* regex, const char* str) { + if (regex == NULL || str == NULL) + return false; + + if (*regex == '^') + return MatchRegexAtHead(regex + 1, str); + + // A successful match can be anywhere in str. + do { + if (MatchRegexAtHead(regex, str)) + return true; + } while (*str++ != '\0'); + return false; +} + +// Implements the RE class. + +RE::~RE() { + free(const_cast(pattern_)); + free(const_cast(full_pattern_)); +} + +// Returns true iff regular expression re matches the entire str. +bool RE::FullMatch(const char* str, const RE& re) { + return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_, str); +} + +// Returns true iff regular expression re matches a substring of str +// (including str itself). +bool RE::PartialMatch(const char* str, const RE& re) { + return re.is_valid_ && MatchRegexAnywhere(re.pattern_, str); +} + +// Initializes an RE from its string representation. +void RE::Init(const char* regex) { + pattern_ = full_pattern_ = NULL; + if (regex != NULL) { + pattern_ = posix::StrDup(regex); + } + + is_valid_ = ValidateRegex(regex); + if (!is_valid_) { + // No need to calculate the full pattern when the regex is invalid. + return; + } + + const size_t len = strlen(regex); + // Reserves enough bytes to hold the regular expression used for a + // full match: we need space to prepend a '^', append a '$', and + // terminate the string with '\0'. + char* buffer = static_cast(malloc(len + 3)); + full_pattern_ = buffer; + + if (*regex != '^') + *buffer++ = '^'; // Makes sure full_pattern_ starts with '^'. + + // We don't use snprintf or strncpy, as they trigger a warning when + // compiled with VC++ 8.0. + memcpy(buffer, regex, len); + buffer += len; + + if (len == 0 || regex[len - 1] != '$') + *buffer++ = '$'; // Makes sure full_pattern_ ends with '$'. + + *buffer = '\0'; +} + +#endif // GTEST_USES_POSIX_RE + +const char kUnknownFile[] = "unknown file"; + +// Formats a source file path and a line number as they would appear +// in an error message from the compiler used to compile this code. +GTEST_API_ ::std::string FormatFileLocation(const char* file, int line) { + const std::string file_name(file == NULL ? kUnknownFile : file); + + if (line < 0) { + return file_name + ":"; + } +#ifdef _MSC_VER + return file_name + "(" + StreamableToString(line) + "):"; +#else + return file_name + ":" + StreamableToString(line) + ":"; +#endif // _MSC_VER +} + +// Formats a file location for compiler-independent XML output. +// Although this function is not platform dependent, we put it next to +// FormatFileLocation in order to contrast the two functions. +// Note that FormatCompilerIndependentFileLocation() does NOT append colon +// to the file location it produces, unlike FormatFileLocation(). +GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( + const char* file, int line) { + const std::string file_name(file == NULL ? kUnknownFile : file); + + if (line < 0) + return file_name; + else + return file_name + ":" + StreamableToString(line); +} + + +GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line) + : severity_(severity) { + const char* const marker = + severity == GTEST_INFO ? "[ INFO ]" : + severity == GTEST_WARNING ? "[WARNING]" : + severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]"; + GetStream() << ::std::endl << marker << " " + << FormatFileLocation(file, line).c_str() << ": "; +} + +// Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. +GTestLog::~GTestLog() { + GetStream() << ::std::endl; + if (severity_ == GTEST_FATAL) { + fflush(stderr); + posix::Abort(); + } +} +// Disable Microsoft deprecation warnings for POSIX functions called from +// this class (creat, dup, dup2, and close) +#ifdef _MSC_VER +# pragma warning(push) +# pragma warning(disable: 4996) +#endif // _MSC_VER + +#if GTEST_HAS_STREAM_REDIRECTION + +// Object that captures an output stream (stdout/stderr). +class CapturedStream { + public: + // The ctor redirects the stream to a temporary file. + explicit CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { +# if GTEST_OS_WINDOWS + char temp_dir_path[MAX_PATH + 1] = { '\0' }; // NOLINT + char temp_file_path[MAX_PATH + 1] = { '\0' }; // NOLINT + + ::GetTempPathA(sizeof(temp_dir_path), temp_dir_path); + const UINT success = ::GetTempFileNameA(temp_dir_path, + "gtest_redir", + 0, // Generate unique file name. + temp_file_path); + GTEST_CHECK_(success != 0) + << "Unable to create a temporary file in " << temp_dir_path; + const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE); + GTEST_CHECK_(captured_fd != -1) << "Unable to open temporary file " + << temp_file_path; + filename_ = temp_file_path; +# else + // There's no guarantee that a test has write access to the current + // directory, so we create the temporary file in the /tmp directory + // instead. We use /tmp on most systems, and /sdcard on Android. + // That's because Android doesn't have /tmp. +# if GTEST_OS_LINUX_ANDROID + // Note: Android applications are expected to call the framework's + // Context.getExternalStorageDirectory() method through JNI to get + // the location of the world-writable SD Card directory. However, + // this requires a Context handle, which cannot be retrieved + // globally from native code. Doing so also precludes running the + // code as part of a regular standalone executable, which doesn't + // run in a Dalvik process (e.g. when running it through 'adb shell'). + // + // The location /sdcard is directly accessible from native code + // and is the only location (unofficially) supported by the Android + // team. It's generally a symlink to the real SD Card mount point + // which can be /mnt/sdcard, /mnt/sdcard0, /system/media/sdcard, or + // other OEM-customized locations. Never rely on these, and always + // use /sdcard. + char name_template[] = "/sdcard/gtest_captured_stream.XXXXXX"; +# else + char name_template[] = "/tmp/captured_stream.XXXXXX"; +# endif // GTEST_OS_LINUX_ANDROID + const int captured_fd = mkstemp(name_template); + filename_ = name_template; +# endif // GTEST_OS_WINDOWS + fflush(NULL); + dup2(captured_fd, fd_); + close(captured_fd); + } + + ~CapturedStream() { + remove(filename_.c_str()); + } + + std::string GetCapturedString() { + if (uncaptured_fd_ != -1) { + // Restores the original stream. + fflush(NULL); + dup2(uncaptured_fd_, fd_); + close(uncaptured_fd_); + uncaptured_fd_ = -1; + } + + FILE* const file = posix::FOpen(filename_.c_str(), "r"); + const std::string content = ReadEntireFile(file); + posix::FClose(file); + return content; + } + + private: + // Reads the entire content of a file as an std::string. + static std::string ReadEntireFile(FILE* file); + + // Returns the size (in bytes) of a file. + static size_t GetFileSize(FILE* file); + + const int fd_; // A stream to capture. + int uncaptured_fd_; + // Name of the temporary file holding the stderr output. + ::std::string filename_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream); +}; + +// Returns the size (in bytes) of a file. +size_t CapturedStream::GetFileSize(FILE* file) { + fseek(file, 0, SEEK_END); + return static_cast(ftell(file)); +} + +// Reads the entire content of a file as a string. +std::string CapturedStream::ReadEntireFile(FILE* file) { + const size_t file_size = GetFileSize(file); + char* const buffer = new char[file_size]; + + size_t bytes_last_read = 0; // # of bytes read in the last fread() + size_t bytes_read = 0; // # of bytes read so far + + fseek(file, 0, SEEK_SET); + + // Keeps reading the file until we cannot read further or the + // pre-determined file size is reached. + do { + bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file); + bytes_read += bytes_last_read; + } while (bytes_last_read > 0 && bytes_read < file_size); + + const std::string content(buffer, bytes_read); + delete[] buffer; + + return content; +} + +# ifdef _MSC_VER +# pragma warning(pop) +# endif // _MSC_VER + +static CapturedStream* g_captured_stderr = NULL; +static CapturedStream* g_captured_stdout = NULL; + +// Starts capturing an output stream (stdout/stderr). +void CaptureStream(int fd, const char* stream_name, CapturedStream** stream) { + if (*stream != NULL) { + GTEST_LOG_(FATAL) << "Only one " << stream_name + << " capturer can exist at a time."; + } + *stream = new CapturedStream(fd); +} + +// Stops capturing the output stream and returns the captured string. +std::string GetCapturedStream(CapturedStream** captured_stream) { + const std::string content = (*captured_stream)->GetCapturedString(); + + delete *captured_stream; + *captured_stream = NULL; + + return content; +} + +// Starts capturing stdout. +void CaptureStdout() { + CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout); +} + +// Starts capturing stderr. +void CaptureStderr() { + CaptureStream(kStdErrFileno, "stderr", &g_captured_stderr); +} + +// Stops capturing stdout and returns the captured string. +std::string GetCapturedStdout() { + return GetCapturedStream(&g_captured_stdout); +} + +// Stops capturing stderr and returns the captured string. +std::string GetCapturedStderr() { + return GetCapturedStream(&g_captured_stderr); +} + +#endif // GTEST_HAS_STREAM_REDIRECTION + +#if GTEST_HAS_DEATH_TEST + +// A copy of all command line arguments. Set by InitGoogleTest(). +::std::vector g_argvs; + +static const ::std::vector* g_injected_test_argvs = + NULL; // Owned. + +void SetInjectableArgvs(const ::std::vector* argvs) { + if (g_injected_test_argvs != argvs) + delete g_injected_test_argvs; + g_injected_test_argvs = argvs; +} + +const ::std::vector& GetInjectableArgvs() { + if (g_injected_test_argvs != NULL) { + return *g_injected_test_argvs; + } + return g_argvs; +} +#endif // GTEST_HAS_DEATH_TEST + +#if GTEST_OS_WINDOWS_MOBILE +namespace posix { +void Abort() { + DebugBreak(); + TerminateProcess(GetCurrentProcess(), 1); +} +} // namespace posix +#endif // GTEST_OS_WINDOWS_MOBILE + +// Returns the name of the environment variable corresponding to the +// given flag. For example, FlagToEnvVar("foo") will return +// "GTEST_FOO" in the open-source version. +static std::string FlagToEnvVar(const char* flag) { + const std::string full_flag = + (Message() << GTEST_FLAG_PREFIX_ << flag).GetString(); + + Message env_var; + for (size_t i = 0; i != full_flag.length(); i++) { + env_var << ToUpper(full_flag.c_str()[i]); + } + + return env_var.GetString(); +} + +// Parses 'str' for a 32-bit signed integer. If successful, writes +// the result to *value and returns true; otherwise leaves *value +// unchanged and returns false. +bool ParseInt32(const Message& src_text, const char* str, Int32* value) { + // Parses the environment variable as a decimal integer. + char* end = NULL; + const long long_value = strtol(str, &end, 10); // NOLINT + + // Has strtol() consumed all characters in the string? + if (*end != '\0') { + // No - an invalid character was encountered. + Message msg; + msg << "WARNING: " << src_text + << " is expected to be a 32-bit integer, but actually" + << " has value \"" << str << "\".\n"; + printf("%s", msg.GetString().c_str()); + fflush(stdout); + return false; + } + + // Is the parsed value in the range of an Int32? + const Int32 result = static_cast(long_value); + if (long_value == LONG_MAX || long_value == LONG_MIN || + // The parsed value overflows as a long. (strtol() returns + // LONG_MAX or LONG_MIN when the input overflows.) + result != long_value + // The parsed value overflows as an Int32. + ) { + Message msg; + msg << "WARNING: " << src_text + << " is expected to be a 32-bit integer, but actually" + << " has value " << str << ", which overflows.\n"; + printf("%s", msg.GetString().c_str()); + fflush(stdout); + return false; + } + + *value = result; + return true; +} + +// Reads and returns the Boolean environment variable corresponding to +// the given flag; if it's not set, returns default_value. +// +// The value is considered true iff it's not "0". +bool BoolFromGTestEnv(const char* flag, bool default_value) { + const std::string env_var = FlagToEnvVar(flag); + const char* const string_value = posix::GetEnv(env_var.c_str()); + return string_value == NULL ? + default_value : strcmp(string_value, "0") != 0; +} + +// Reads and returns a 32-bit integer stored in the environment +// variable corresponding to the given flag; if it isn't set or +// doesn't represent a valid 32-bit integer, returns default_value. +Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) { + const std::string env_var = FlagToEnvVar(flag); + const char* const string_value = posix::GetEnv(env_var.c_str()); + if (string_value == NULL) { + // The environment variable is not set. + return default_value; + } + + Int32 result = default_value; + if (!ParseInt32(Message() << "Environment variable " << env_var, + string_value, &result)) { + printf("The default value %s is used.\n", + (Message() << default_value).GetString().c_str()); + fflush(stdout); + return default_value; + } + + return result; +} + +// Reads and returns the string environment variable corresponding to +// the given flag; if it's not set, returns default_value. +const char* StringFromGTestEnv(const char* flag, const char* default_value) { + const std::string env_var = FlagToEnvVar(flag); + const char* const value = posix::GetEnv(env_var.c_str()); + return value == NULL ? default_value : value; +} + +} // namespace internal +} // namespace testing +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Test - The Google C++ Testing Framework +// +// This file implements a universal value printer that can print a +// value of any type T: +// +// void ::testing::internal::UniversalPrinter::Print(value, ostream_ptr); +// +// It uses the << operator when possible, and prints the bytes in the +// object otherwise. A user can override its behavior for a class +// type Foo by defining either operator<<(::std::ostream&, const Foo&) +// or void PrintTo(const Foo&, ::std::ostream*) in the namespace that +// defines Foo. + +#include +#include +#include // NOLINT +#include + +namespace testing { + +namespace { + +using ::std::ostream; + +// Prints a segment of bytes in the given object. +void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, + size_t count, ostream* os) { + char text[5] = ""; + for (size_t i = 0; i != count; i++) { + const size_t j = start + i; + if (i != 0) { + // Organizes the bytes into groups of 2 for easy parsing by + // human. + if ((j % 2) == 0) + *os << ' '; + else + *os << '-'; + } + GTEST_SNPRINTF_(text, sizeof(text), "%02X", obj_bytes[j]); + *os << text; + } +} + +// Prints the bytes in the given value to the given ostream. +void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, + ostream* os) { + // Tells the user how big the object is. + *os << count << "-byte object <"; + + const size_t kThreshold = 132; + const size_t kChunkSize = 64; + // If the object size is bigger than kThreshold, we'll have to omit + // some details by printing only the first and the last kChunkSize + // bytes. + // TODO(wan): let the user control the threshold using a flag. + if (count < kThreshold) { + PrintByteSegmentInObjectTo(obj_bytes, 0, count, os); + } else { + PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os); + *os << " ... "; + // Rounds up to 2-byte boundary. + const size_t resume_pos = (count - kChunkSize + 1)/2*2; + PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os); + } + *os << ">"; +} + +} // namespace + +namespace internal2 { + +// Delegates to PrintBytesInObjectToImpl() to print the bytes in the +// given object. The delegation simplifies the implementation, which +// uses the << operator and thus is easier done outside of the +// ::testing::internal namespace, which contains a << operator that +// sometimes conflicts with the one in STL. +void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, + ostream* os) { + PrintBytesInObjectToImpl(obj_bytes, count, os); +} + +} // namespace internal2 + +namespace internal { + +// Depending on the value of a char (or wchar_t), we print it in one +// of three formats: +// - as is if it's a printable ASCII (e.g. 'a', '2', ' '), +// - as a hexidecimal escape sequence (e.g. '\x7F'), or +// - as a special escape sequence (e.g. '\r', '\n'). +enum CharFormat { + kAsIs, + kHexEscape, + kSpecialEscape +}; + +// Returns true if c is a printable ASCII character. We test the +// value of c directly instead of calling isprint(), which is buggy on +// Windows Mobile. +inline bool IsPrintableAscii(wchar_t c) { + return 0x20 <= c && c <= 0x7E; +} + +// Prints a wide or narrow char c as a character literal without the +// quotes, escaping it when necessary; returns how c was formatted. +// The template argument UnsignedChar is the unsigned version of Char, +// which is the type of c. +template +static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { + switch (static_cast(c)) { + case L'\0': + *os << "\\0"; + break; + case L'\'': + *os << "\\'"; + break; + case L'\\': + *os << "\\\\"; + break; + case L'\a': + *os << "\\a"; + break; + case L'\b': + *os << "\\b"; + break; + case L'\f': + *os << "\\f"; + break; + case L'\n': + *os << "\\n"; + break; + case L'\r': + *os << "\\r"; + break; + case L'\t': + *os << "\\t"; + break; + case L'\v': + *os << "\\v"; + break; + default: + if (IsPrintableAscii(c)) { + *os << static_cast(c); + return kAsIs; + } else { + *os << "\\x" + String::FormatHexInt(static_cast(c)); + return kHexEscape; + } + } + return kSpecialEscape; +} + +// Prints a wchar_t c as if it's part of a string literal, escaping it when +// necessary; returns how c was formatted. +static CharFormat PrintAsStringLiteralTo(wchar_t c, ostream* os) { + switch (c) { + case L'\'': + *os << "'"; + return kAsIs; + case L'"': + *os << "\\\""; + return kSpecialEscape; + default: + return PrintAsCharLiteralTo(c, os); + } +} + +// Prints a char c as if it's part of a string literal, escaping it when +// necessary; returns how c was formatted. +static CharFormat PrintAsStringLiteralTo(char c, ostream* os) { + return PrintAsStringLiteralTo( + static_cast(static_cast(c)), os); +} + +// Prints a wide or narrow character c and its code. '\0' is printed +// as "'\\0'", other unprintable characters are also properly escaped +// using the standard C++ escape sequence. The template argument +// UnsignedChar is the unsigned version of Char, which is the type of c. +template +void PrintCharAndCodeTo(Char c, ostream* os) { + // First, print c as a literal in the most readable form we can find. + *os << ((sizeof(c) > 1) ? "L'" : "'"); + const CharFormat format = PrintAsCharLiteralTo(c, os); + *os << "'"; + + // To aid user debugging, we also print c's code in decimal, unless + // it's 0 (in which case c was printed as '\\0', making the code + // obvious). + if (c == 0) + return; + *os << " (" << static_cast(c); + + // For more convenience, we print c's code again in hexidecimal, + // unless c was already printed in the form '\x##' or the code is in + // [1, 9]. + if (format == kHexEscape || (1 <= c && c <= 9)) { + // Do nothing. + } else { + *os << ", 0x" << String::FormatHexInt(static_cast(c)); + } + *os << ")"; +} + +void PrintTo(unsigned char c, ::std::ostream* os) { + PrintCharAndCodeTo(c, os); +} +void PrintTo(signed char c, ::std::ostream* os) { + PrintCharAndCodeTo(c, os); +} + +// Prints a wchar_t as a symbol if it is printable or as its internal +// code otherwise and also as its code. L'\0' is printed as "L'\\0'". +void PrintTo(wchar_t wc, ostream* os) { + PrintCharAndCodeTo(wc, os); +} + +// Prints the given array of characters to the ostream. CharType must be either +// char or wchar_t. +// The array starts at begin, the length is len, it may include '\0' characters +// and may not be NUL-terminated. +template +static void PrintCharsAsStringTo( + const CharType* begin, size_t len, ostream* os) { + const char* const kQuoteBegin = sizeof(CharType) == 1 ? "\"" : "L\""; + *os << kQuoteBegin; + bool is_previous_hex = false; + for (size_t index = 0; index < len; ++index) { + const CharType cur = begin[index]; + if (is_previous_hex && IsXDigit(cur)) { + // Previous character is of '\x..' form and this character can be + // interpreted as another hexadecimal digit in its number. Break string to + // disambiguate. + *os << "\" " << kQuoteBegin; + } + is_previous_hex = PrintAsStringLiteralTo(cur, os) == kHexEscape; + } + *os << "\""; +} + +// Prints a (const) char/wchar_t array of 'len' elements, starting at address +// 'begin'. CharType must be either char or wchar_t. +template +static void UniversalPrintCharArray( + const CharType* begin, size_t len, ostream* os) { + // The code + // const char kFoo[] = "foo"; + // generates an array of 4, not 3, elements, with the last one being '\0'. + // + // Therefore when printing a char array, we don't print the last element if + // it's '\0', such that the output matches the string literal as it's + // written in the source code. + if (len > 0 && begin[len - 1] == '\0') { + PrintCharsAsStringTo(begin, len - 1, os); + return; + } + + // If, however, the last element in the array is not '\0', e.g. + // const char kFoo[] = { 'f', 'o', 'o' }; + // we must print the entire array. We also print a message to indicate + // that the array is not NUL-terminated. + PrintCharsAsStringTo(begin, len, os); + *os << " (no terminating NUL)"; +} + +// Prints a (const) char array of 'len' elements, starting at address 'begin'. +void UniversalPrintArray(const char* begin, size_t len, ostream* os) { + UniversalPrintCharArray(begin, len, os); +} + +// Prints a (const) wchar_t array of 'len' elements, starting at address +// 'begin'. +void UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) { + UniversalPrintCharArray(begin, len, os); +} + +// Prints the given C string to the ostream. +void PrintTo(const char* s, ostream* os) { + if (s == NULL) { + *os << "NULL"; + } else { + *os << ImplicitCast_(s) << " pointing to "; + PrintCharsAsStringTo(s, strlen(s), os); + } +} + +// MSVC compiler can be configured to define whar_t as a typedef +// of unsigned short. Defining an overload for const wchar_t* in that case +// would cause pointers to unsigned shorts be printed as wide strings, +// possibly accessing more memory than intended and causing invalid +// memory accesses. MSVC defines _NATIVE_WCHAR_T_DEFINED symbol when +// wchar_t is implemented as a native type. +#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) +// Prints the given wide C string to the ostream. +void PrintTo(const wchar_t* s, ostream* os) { + if (s == NULL) { + *os << "NULL"; + } else { + *os << ImplicitCast_(s) << " pointing to "; + PrintCharsAsStringTo(s, wcslen(s), os); + } +} +#endif // wchar_t is native + +// Prints a ::string object. +#if GTEST_HAS_GLOBAL_STRING +void PrintStringTo(const ::string& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} +#endif // GTEST_HAS_GLOBAL_STRING + +void PrintStringTo(const ::std::string& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} + +// Prints a ::wstring object. +#if GTEST_HAS_GLOBAL_WSTRING +void PrintWideStringTo(const ::wstring& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} +#endif // GTEST_HAS_GLOBAL_WSTRING + +#if GTEST_HAS_STD_WSTRING +void PrintWideStringTo(const ::std::wstring& s, ostream* os) { + PrintCharsAsStringTo(s.data(), s.size(), os); +} +#endif // GTEST_HAS_STD_WSTRING + +} // namespace internal + +} // namespace testing +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: mheule@google.com (Markus Heule) +// +// The Google C++ Testing Framework (Google Test) + + +// Indicates that this translation unit is part of Google Test's +// implementation. It must come before gtest-internal-inl.h is +// included, or there will be a compiler error. This trick is to +// prevent a user from accidentally including gtest-internal-inl.h in +// his code. +#define GTEST_IMPLEMENTATION_ 1 +#undef GTEST_IMPLEMENTATION_ + +namespace testing { + +using internal::GetUnitTestImpl; + +// Gets the summary of the failure message by omitting the stack trace +// in it. +std::string TestPartResult::ExtractSummary(const char* message) { + const char* const stack_trace = strstr(message, internal::kStackTraceMarker); + return stack_trace == NULL ? message : + std::string(message, stack_trace); +} + +// Prints a TestPartResult object. +std::ostream& operator<<(std::ostream& os, const TestPartResult& result) { + return os + << result.file_name() << ":" << result.line_number() << ": " + << (result.type() == TestPartResult::kSuccess ? "Success" : + result.type() == TestPartResult::kFatalFailure ? "Fatal failure" : + "Non-fatal failure") << ":\n" + << result.message() << std::endl; +} + +// Appends a TestPartResult to the array. +void TestPartResultArray::Append(const TestPartResult& result) { + array_.push_back(result); +} + +// Returns the TestPartResult at the given index (0-based). +const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const { + if (index < 0 || index >= size()) { + printf("\nInvalid index (%d) into TestPartResultArray.\n", index); + internal::posix::Abort(); + } + + return array_[index]; +} + +// Returns the number of TestPartResult objects in the array. +int TestPartResultArray::size() const { + return static_cast(array_.size()); +} + +namespace internal { + +HasNewFatalFailureHelper::HasNewFatalFailureHelper() + : has_new_fatal_failure_(false), + original_reporter_(GetUnitTestImpl()-> + GetTestPartResultReporterForCurrentThread()) { + GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(this); +} + +HasNewFatalFailureHelper::~HasNewFatalFailureHelper() { + GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread( + original_reporter_); +} + +void HasNewFatalFailureHelper::ReportTestPartResult( + const TestPartResult& result) { + if (result.fatally_failed()) + has_new_fatal_failure_ = true; + original_reporter_->ReportTestPartResult(result); +} + +} // namespace internal + +} // namespace testing +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + + +namespace testing { +namespace internal { + +#if GTEST_HAS_TYPED_TEST_P + +// Skips to the first non-space char in str. Returns an empty string if str +// contains only whitespace characters. +static const char* SkipSpaces(const char* str) { + while (IsSpace(*str)) + str++; + return str; +} + +// Verifies that registered_tests match the test names in +// defined_test_names_; returns registered_tests if successful, or +// aborts the program otherwise. +const char* TypedTestCasePState::VerifyRegisteredTestNames( + const char* file, int line, const char* registered_tests) { + typedef ::std::set::const_iterator DefinedTestIter; + registered_ = true; + + // Skip initial whitespace in registered_tests since some + // preprocessors prefix stringizied literals with whitespace. + registered_tests = SkipSpaces(registered_tests); + + Message errors; + ::std::set tests; + for (const char* names = registered_tests; names != NULL; + names = SkipComma(names)) { + const std::string name = GetPrefixUntilComma(names); + if (tests.count(name) != 0) { + errors << "Test " << name << " is listed more than once.\n"; + continue; + } + + bool found = false; + for (DefinedTestIter it = defined_test_names_.begin(); + it != defined_test_names_.end(); + ++it) { + if (name == *it) { + found = true; + break; + } + } + + if (found) { + tests.insert(name); + } else { + errors << "No test named " << name + << " can be found in this test case.\n"; + } + } + + for (DefinedTestIter it = defined_test_names_.begin(); + it != defined_test_names_.end(); + ++it) { + if (tests.count(*it) == 0) { + errors << "You forgot to list test " << *it << ".\n"; + } + } + + const std::string& errors_str = errors.GetString(); + if (errors_str != "") { + fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), + errors_str.c_str()); + fflush(stderr); + posix::Abort(); + } + + return registered_tests; +} + +#endif // GTEST_HAS_TYPED_TEST_P + +} // namespace internal +} // namespace testing diff --git a/cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest.h b/cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest.h new file mode 100644 index 000000000..4f3804f70 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest.h @@ -0,0 +1,20061 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file defines the public API for Google Test. It should be +// included by any test program that uses Google Test. +// +// IMPORTANT NOTE: Due to limitation of the C++ language, we have to +// leave some internal implementation details in this header file. +// They are clearly marked by comments like this: +// +// // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +// +// Such code is NOT meant to be used by a user directly, and is subject +// to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user +// program! +// +// Acknowledgment: Google Test borrowed the idea of automatic test +// registration from Barthelemy Dagenais' (barthelemy@prologique.com) +// easyUnit framework. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_H_ +#define GTEST_INCLUDE_GTEST_GTEST_H_ + +#include +#include +#include + +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file declares functions and macros used internally by +// Google Test. They are subject to change without notice. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ + +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: wan@google.com (Zhanyong Wan) +// +// Low-level types and utilities for porting Google Test to various +// platforms. They are subject to change without notice. DO NOT USE +// THEM IN USER CODE. +// +// This file is fundamental to Google Test. All other Google Test source +// files are expected to #include this. Therefore, it cannot #include +// any other Google Test header. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ + +// The user can define the following macros in the build script to +// control Google Test's behavior. If the user doesn't define a macro +// in this list, Google Test will define it. +// +// GTEST_HAS_CLONE - Define it to 1/0 to indicate that clone(2) +// is/isn't available. +// GTEST_HAS_EXCEPTIONS - Define it to 1/0 to indicate that exceptions +// are enabled. +// GTEST_HAS_GLOBAL_STRING - Define it to 1/0 to indicate that ::string +// is/isn't available (some systems define +// ::string, which is different to std::string). +// GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::string +// is/isn't available (some systems define +// ::wstring, which is different to std::wstring). +// GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular +// expressions are/aren't available. +// GTEST_HAS_PTHREAD - Define it to 1/0 to indicate that +// is/isn't available. +// GTEST_HAS_RTTI - Define it to 1/0 to indicate that RTTI is/isn't +// enabled. +// GTEST_HAS_STD_WSTRING - Define it to 1/0 to indicate that +// std::wstring does/doesn't work (Google Test can +// be used where std::wstring is unavailable). +// GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple +// is/isn't available. +// GTEST_HAS_SEH - Define it to 1/0 to indicate whether the +// compiler supports Microsoft's "Structured +// Exception Handling". +// GTEST_HAS_STREAM_REDIRECTION +// - Define it to 1/0 to indicate whether the +// platform supports I/O stream redirection using +// dup() and dup2(). +// GTEST_USE_OWN_TR1_TUPLE - Define it to 1/0 to indicate whether Google +// Test's own tr1 tuple implementation should be +// used. Unused when the user sets +// GTEST_HAS_TR1_TUPLE to 0. +// GTEST_LANG_CXX11 - Define it to 1/0 to indicate that Google Test +// is building in C++11/C++98 mode. +// GTEST_LINKED_AS_SHARED_LIBRARY +// - Define to 1 when compiling tests that use +// Google Test as a shared library (known as +// DLL on Windows). +// GTEST_CREATE_SHARED_LIBRARY +// - Define to 1 when compiling Google Test itself +// as a shared library. + +// This header defines the following utilities: +// +// Macros indicating the current platform (defined to 1 if compiled on +// the given platform; otherwise undefined): +// GTEST_OS_AIX - IBM AIX +// GTEST_OS_CYGWIN - Cygwin +// GTEST_OS_HPUX - HP-UX +// GTEST_OS_LINUX - Linux +// GTEST_OS_LINUX_ANDROID - Google Android +// GTEST_OS_MAC - Mac OS X +// GTEST_OS_IOS - iOS +// GTEST_OS_IOS_SIMULATOR - iOS simulator +// GTEST_OS_NACL - Google Native Client (NaCl) +// GTEST_OS_OPENBSD - OpenBSD +// GTEST_OS_QNX - QNX +// GTEST_OS_SOLARIS - Sun Solaris +// GTEST_OS_SYMBIAN - Symbian +// GTEST_OS_WINDOWS - Windows (Desktop, MinGW, or Mobile) +// GTEST_OS_WINDOWS_DESKTOP - Windows Desktop +// GTEST_OS_WINDOWS_MINGW - MinGW +// GTEST_OS_WINDOWS_MOBILE - Windows Mobile +// GTEST_OS_ZOS - z/OS +// +// Among the platforms, Cygwin, Linux, Max OS X, and Windows have the +// most stable support. Since core members of the Google Test project +// don't have access to other platforms, support for them may be less +// stable. If you notice any problems on your platform, please notify +// googletestframework@googlegroups.com (patches for fixing them are +// even more welcome!). +// +// Note that it is possible that none of the GTEST_OS_* macros are defined. +// +// Macros indicating available Google Test features (defined to 1 if +// the corresponding feature is supported; otherwise undefined): +// GTEST_HAS_COMBINE - the Combine() function (for value-parameterized +// tests) +// GTEST_HAS_DEATH_TEST - death tests +// GTEST_HAS_PARAM_TEST - value-parameterized tests +// GTEST_HAS_TYPED_TEST - typed tests +// GTEST_HAS_TYPED_TEST_P - type-parameterized tests +// GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with +// GTEST_HAS_POSIX_RE (see above) which users can +// define themselves. +// GTEST_USES_SIMPLE_RE - our own simple regex is used; +// the above two are mutually exclusive. +// GTEST_CAN_COMPARE_NULL - accepts untyped NULL in EXPECT_EQ(). +// +// Macros for basic C++ coding: +// GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning. +// GTEST_ATTRIBUTE_UNUSED_ - declares that a class' instances or a +// variable don't have to be used. +// GTEST_DISALLOW_ASSIGN_ - disables operator=. +// GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=. +// GTEST_MUST_USE_RESULT_ - declares that a function's result must be used. +// +// Synchronization: +// Mutex, MutexLock, ThreadLocal, GetThreadCount() +// - synchronization primitives. +// GTEST_IS_THREADSAFE - defined to 1 to indicate that the above +// synchronization primitives have real implementations +// and Google Test is thread-safe; or 0 otherwise. +// +// Template meta programming: +// is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. +// IteratorTraits - partial implementation of std::iterator_traits, which +// is not available in libCstd when compiled with Sun C++. +// +// Smart pointers: +// scoped_ptr - as in TR2. +// +// Regular expressions: +// RE - a simple regular expression class using the POSIX +// Extended Regular Expression syntax on UNIX-like +// platforms, or a reduced regular exception syntax on +// other platforms, including Windows. +// +// Logging: +// GTEST_LOG_() - logs messages at the specified severity level. +// LogToStderr() - directs all log messages to stderr. +// FlushInfoLog() - flushes informational log messages. +// +// Stdout and stderr capturing: +// CaptureStdout() - starts capturing stdout. +// GetCapturedStdout() - stops capturing stdout and returns the captured +// string. +// CaptureStderr() - starts capturing stderr. +// GetCapturedStderr() - stops capturing stderr and returns the captured +// string. +// +// Integer types: +// TypeWithSize - maps an integer to a int type. +// Int32, UInt32, Int64, UInt64, TimeInMillis +// - integers of known sizes. +// BiggestInt - the biggest signed integer type. +// +// Command-line utilities: +// GTEST_FLAG() - references a flag. +// GTEST_DECLARE_*() - declares a flag. +// GTEST_DEFINE_*() - defines a flag. +// GetInjectableArgvs() - returns the command line as a vector of strings. +// +// Environment variable utilities: +// GetEnv() - gets the value of an environment variable. +// BoolFromGTestEnv() - parses a bool environment variable. +// Int32FromGTestEnv() - parses an Int32 environment variable. +// StringFromGTestEnv() - parses a string environment variable. + +#include // for isspace, etc +#include // for ptrdiff_t +#include +#include +#include +#ifndef _WIN32_WCE +# include +# include +#endif // !_WIN32_WCE + +#if defined __APPLE__ +# include +# include +#endif + +#include // NOLINT +#include // NOLINT +#include // NOLINT + +#define GTEST_DEV_EMAIL_ "googletestframework@@googlegroups.com" +#define GTEST_FLAG_PREFIX_ "gtest_" +#define GTEST_FLAG_PREFIX_DASH_ "gtest-" +#define GTEST_FLAG_PREFIX_UPPER_ "GTEST_" +#define GTEST_NAME_ "Google Test" +#define GTEST_PROJECT_URL_ "http://code.google.com/p/googletest/" + +// Determines the version of gcc that is used to compile this. +#ifdef __GNUC__ +// 40302 means version 4.3.2. +# define GTEST_GCC_VER_ \ + (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__) +#endif // __GNUC__ + +// Determines the platform on which Google Test is compiled. +#ifdef __CYGWIN__ +# define GTEST_OS_CYGWIN 1 +#elif defined __SYMBIAN32__ +# define GTEST_OS_SYMBIAN 1 +#elif defined _WIN32 +# define GTEST_OS_WINDOWS 1 +# ifdef _WIN32_WCE +# define GTEST_OS_WINDOWS_MOBILE 1 +# elif defined(__MINGW__) || defined(__MINGW32__) +# define GTEST_OS_WINDOWS_MINGW 1 +# else +# define GTEST_OS_WINDOWS_DESKTOP 1 +# endif // _WIN32_WCE +#elif defined __APPLE__ +# define GTEST_OS_MAC 1 +# if TARGET_OS_IPHONE +# define GTEST_OS_IOS 1 +# if TARGET_IPHONE_SIMULATOR +# define GTEST_OS_IOS_SIMULATOR 1 +# endif +# endif +#elif defined __linux__ +# define GTEST_OS_LINUX 1 +# if defined __ANDROID__ +# define GTEST_OS_LINUX_ANDROID 1 +# endif +#elif defined __MVS__ +# define GTEST_OS_ZOS 1 +#elif defined(__sun) && defined(__SVR4) +# define GTEST_OS_SOLARIS 1 +#elif defined(_AIX) +# define GTEST_OS_AIX 1 +#elif defined(__hpux) +# define GTEST_OS_HPUX 1 +#elif defined __native_client__ +# define GTEST_OS_NACL 1 +#elif defined __OpenBSD__ +# define GTEST_OS_OPENBSD 1 +#elif defined __QNX__ +# define GTEST_OS_QNX 1 +#endif // __CYGWIN__ + +#ifndef GTEST_LANG_CXX11 +// gcc and clang define __GXX_EXPERIMENTAL_CXX0X__ when +// -std={c,gnu}++{0x,11} is passed. The C++11 standard specifies a +// value for __cplusplus, and recent versions of clang, gcc, and +// probably other compilers set that too in C++11 mode. +# if __GXX_EXPERIMENTAL_CXX0X__ || __cplusplus >= 201103L +// Compiling in at least C++11 mode. +# define GTEST_LANG_CXX11 1 +# else +# define GTEST_LANG_CXX11 0 +# endif +#endif + +// Brings in definitions for functions used in the testing::internal::posix +// namespace (read, write, close, chdir, isatty, stat). We do not currently +// use them on Windows Mobile. +#if !GTEST_OS_WINDOWS +// This assumes that non-Windows OSes provide unistd.h. For OSes where this +// is not the case, we need to include headers that provide the functions +// mentioned above. +# include +# include +#elif !GTEST_OS_WINDOWS_MOBILE +# include +# include +#endif + +#if GTEST_OS_LINUX_ANDROID +// Used to define __ANDROID_API__ matching the target NDK API level. +# include // NOLINT +#endif + +// Defines this to true iff Google Test can use POSIX regular expressions. +#ifndef GTEST_HAS_POSIX_RE +# if GTEST_OS_LINUX_ANDROID +// On Android, is only available starting with Gingerbread. +# define GTEST_HAS_POSIX_RE (__ANDROID_API__ >= 9) +# else +# define GTEST_HAS_POSIX_RE (!GTEST_OS_WINDOWS) +# endif +#endif + +#if GTEST_HAS_POSIX_RE + +// On some platforms, needs someone to define size_t, and +// won't compile otherwise. We can #include it here as we already +// included , which is guaranteed to define size_t through +// . +# include // NOLINT + +# define GTEST_USES_POSIX_RE 1 + +#elif GTEST_OS_WINDOWS + +// is not available on Windows. Use our own simple regex +// implementation instead. +# define GTEST_USES_SIMPLE_RE 1 + +#else + +// may not be available on this platform. Use our own +// simple regex implementation instead. +# define GTEST_USES_SIMPLE_RE 1 + +#endif // GTEST_HAS_POSIX_RE + +#ifndef GTEST_HAS_EXCEPTIONS +// The user didn't tell us whether exceptions are enabled, so we need +// to figure it out. +# if defined(_MSC_VER) || defined(__BORLANDC__) +// MSVC's and C++Builder's implementations of the STL use the _HAS_EXCEPTIONS +// macro to enable exceptions, so we'll do the same. +// Assumes that exceptions are enabled by default. +# ifndef _HAS_EXCEPTIONS +# define _HAS_EXCEPTIONS 1 +# endif // _HAS_EXCEPTIONS +# define GTEST_HAS_EXCEPTIONS _HAS_EXCEPTIONS +# elif defined(__GNUC__) && __EXCEPTIONS +// gcc defines __EXCEPTIONS to 1 iff exceptions are enabled. +# define GTEST_HAS_EXCEPTIONS 1 +# elif defined(__SUNPRO_CC) +// Sun Pro CC supports exceptions. However, there is no compile-time way of +// detecting whether they are enabled or not. Therefore, we assume that +// they are enabled unless the user tells us otherwise. +# define GTEST_HAS_EXCEPTIONS 1 +# elif defined(__IBMCPP__) && __EXCEPTIONS +// xlC defines __EXCEPTIONS to 1 iff exceptions are enabled. +# define GTEST_HAS_EXCEPTIONS 1 +# elif defined(__HP_aCC) +// Exception handling is in effect by default in HP aCC compiler. It has to +// be turned of by +noeh compiler option if desired. +# define GTEST_HAS_EXCEPTIONS 1 +# else +// For other compilers, we assume exceptions are disabled to be +// conservative. +# define GTEST_HAS_EXCEPTIONS 0 +# endif // defined(_MSC_VER) || defined(__BORLANDC__) +#endif // GTEST_HAS_EXCEPTIONS + +#if !defined(GTEST_HAS_STD_STRING) +// Even though we don't use this macro any longer, we keep it in case +// some clients still depend on it. +# define GTEST_HAS_STD_STRING 1 +#elif !GTEST_HAS_STD_STRING +// The user told us that ::std::string isn't available. +# error "Google Test cannot be used where ::std::string isn't available." +#endif // !defined(GTEST_HAS_STD_STRING) + +#ifndef GTEST_HAS_GLOBAL_STRING +// The user didn't tell us whether ::string is available, so we need +// to figure it out. + +# define GTEST_HAS_GLOBAL_STRING 0 + +#endif // GTEST_HAS_GLOBAL_STRING + +#ifndef GTEST_HAS_STD_WSTRING +// The user didn't tell us whether ::std::wstring is available, so we need +// to figure it out. +// TODO(wan@google.com): uses autoconf to detect whether ::std::wstring +// is available. + +// Cygwin 1.7 and below doesn't support ::std::wstring. +// Solaris' libc++ doesn't support it either. Android has +// no support for it at least as recent as Froyo (2.2). +# define GTEST_HAS_STD_WSTRING \ + (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS)) + +#endif // GTEST_HAS_STD_WSTRING + +#ifndef GTEST_HAS_GLOBAL_WSTRING +// The user didn't tell us whether ::wstring is available, so we need +// to figure it out. +# define GTEST_HAS_GLOBAL_WSTRING \ + (GTEST_HAS_STD_WSTRING && GTEST_HAS_GLOBAL_STRING) +#endif // GTEST_HAS_GLOBAL_WSTRING + +// Determines whether RTTI is available. +#ifndef GTEST_HAS_RTTI +// The user didn't tell us whether RTTI is enabled, so we need to +// figure it out. + +# ifdef _MSC_VER + +# ifdef _CPPRTTI // MSVC defines this macro iff RTTI is enabled. +# define GTEST_HAS_RTTI 1 +# else +# define GTEST_HAS_RTTI 0 +# endif + +// Starting with version 4.3.2, gcc defines __GXX_RTTI iff RTTI is enabled. +# elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40302) + +# ifdef __GXX_RTTI +// When building against STLport with the Android NDK and with +// -frtti -fno-exceptions, the build fails at link time with undefined +// references to __cxa_bad_typeid. Note sure if STL or toolchain bug, +// so disable RTTI when detected. +# if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR) && \ + !defined(__EXCEPTIONS) +# define GTEST_HAS_RTTI 0 +# else +# define GTEST_HAS_RTTI 1 +# endif // GTEST_OS_LINUX_ANDROID && __STLPORT_MAJOR && !__EXCEPTIONS +# else +# define GTEST_HAS_RTTI 0 +# endif // __GXX_RTTI + +// Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends +// using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the +// first version with C++ support. +# elif defined(__clang__) + +# define GTEST_HAS_RTTI __has_feature(cxx_rtti) + +// Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if +// both the typeid and dynamic_cast features are present. +# elif defined(__IBMCPP__) && (__IBMCPP__ >= 900) + +# ifdef __RTTI_ALL__ +# define GTEST_HAS_RTTI 1 +# else +# define GTEST_HAS_RTTI 0 +# endif + +# else + +// For all other compilers, we assume RTTI is enabled. +# define GTEST_HAS_RTTI 1 + +# endif // _MSC_VER + +#endif // GTEST_HAS_RTTI + +// It's this header's responsibility to #include when RTTI +// is enabled. +#if GTEST_HAS_RTTI +# include +#endif + +// Determines whether Google Test can use the pthreads library. +#ifndef GTEST_HAS_PTHREAD +// The user didn't tell us explicitly, so we assume pthreads support is +// available on Linux and Mac. +// +// To disable threading support in Google Test, add -DGTEST_HAS_PTHREAD=0 +// to your compiler flags. +# define GTEST_HAS_PTHREAD (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_HPUX \ + || GTEST_OS_QNX) +#endif // GTEST_HAS_PTHREAD + +#if GTEST_HAS_PTHREAD +// gtest-port.h guarantees to #include when GTEST_HAS_PTHREAD is +// true. +# include // NOLINT + +// For timespec and nanosleep, used below. +# include // NOLINT +#endif + +// Determines whether Google Test can use tr1/tuple. You can define +// this macro to 0 to prevent Google Test from using tuple (any +// feature depending on tuple with be disabled in this mode). +#ifndef GTEST_HAS_TR1_TUPLE +# if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR) +// STLport, provided with the Android NDK, has neither or . +# define GTEST_HAS_TR1_TUPLE 0 +# else +// The user didn't tell us not to do it, so we assume it's OK. +# define GTEST_HAS_TR1_TUPLE 1 +# endif +#endif // GTEST_HAS_TR1_TUPLE + +// Determines whether Google Test's own tr1 tuple implementation +// should be used. +#ifndef GTEST_USE_OWN_TR1_TUPLE +// The user didn't tell us, so we need to figure it out. + +// We use our own TR1 tuple if we aren't sure the user has an +// implementation of it already. At this time, libstdc++ 4.0.0+ and +// MSVC 2010 are the only mainstream standard libraries that come +// with a TR1 tuple implementation. NVIDIA's CUDA NVCC compiler +// pretends to be GCC by defining __GNUC__ and friends, but cannot +// compile GCC's tuple implementation. MSVC 2008 (9.0) provides TR1 +// tuple in a 323 MB Feature Pack download, which we cannot assume the +// user has. QNX's QCC compiler is a modified GCC but it doesn't +// support TR1 tuple. libc++ only provides std::tuple, in C++11 mode, +// and it can be used with some compilers that define __GNUC__. +# if (defined(__GNUC__) && !defined(__CUDACC__) && (GTEST_GCC_VER_ >= 40000) \ + && !GTEST_OS_QNX && !defined(_LIBCPP_VERSION)) || _MSC_VER >= 1600 +# define GTEST_ENV_HAS_TR1_TUPLE_ 1 +# endif + +// C++11 specifies that provides std::tuple. Use that if gtest is used +// in C++11 mode and libstdc++ isn't very old (binaries targeting OS X 10.6 +// can build with clang but need to use gcc4.2's libstdc++). +# if GTEST_LANG_CXX11 && (!defined(__GLIBCXX__) || __GLIBCXX__ > 20110325) +# define GTEST_ENV_HAS_STD_TUPLE_ 1 +# endif + +# if GTEST_ENV_HAS_TR1_TUPLE_ || GTEST_ENV_HAS_STD_TUPLE_ +# define GTEST_USE_OWN_TR1_TUPLE 0 +# else +# define GTEST_USE_OWN_TR1_TUPLE 1 +# endif + +#endif // GTEST_USE_OWN_TR1_TUPLE + +// To avoid conditional compilation everywhere, we make it +// gtest-port.h's responsibility to #include the header implementing +// tr1/tuple. +#if GTEST_HAS_TR1_TUPLE + +# if GTEST_USE_OWN_TR1_TUPLE +// This file was GENERATED by command: +// pump.py gtest-tuple.h.pump +// DO NOT EDIT BY HAND!!! + +// Copyright 2009 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Implements a subset of TR1 tuple needed by Google Test and Google Mock. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ + +#include // For ::std::pair. + +// The compiler used in Symbian has a bug that prevents us from declaring the +// tuple template as a friend (it complains that tuple is redefined). This +// hack bypasses the bug by declaring the members that should otherwise be +// private as public. +// Sun Studio versions < 12 also have the above bug. +#if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590) +# define GTEST_DECLARE_TUPLE_AS_FRIEND_ public: +#else +# define GTEST_DECLARE_TUPLE_AS_FRIEND_ \ + template friend class tuple; \ + private: +#endif + +// GTEST_n_TUPLE_(T) is the type of an n-tuple. +#define GTEST_0_TUPLE_(T) tuple<> +#define GTEST_1_TUPLE_(T) tuple +#define GTEST_2_TUPLE_(T) tuple +#define GTEST_3_TUPLE_(T) tuple +#define GTEST_4_TUPLE_(T) tuple +#define GTEST_5_TUPLE_(T) tuple +#define GTEST_6_TUPLE_(T) tuple +#define GTEST_7_TUPLE_(T) tuple +#define GTEST_8_TUPLE_(T) tuple +#define GTEST_9_TUPLE_(T) tuple +#define GTEST_10_TUPLE_(T) tuple + +// GTEST_n_TYPENAMES_(T) declares a list of n typenames. +#define GTEST_0_TYPENAMES_(T) +#define GTEST_1_TYPENAMES_(T) typename T##0 +#define GTEST_2_TYPENAMES_(T) typename T##0, typename T##1 +#define GTEST_3_TYPENAMES_(T) typename T##0, typename T##1, typename T##2 +#define GTEST_4_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3 +#define GTEST_5_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4 +#define GTEST_6_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4, typename T##5 +#define GTEST_7_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4, typename T##5, typename T##6 +#define GTEST_8_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4, typename T##5, typename T##6, typename T##7 +#define GTEST_9_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4, typename T##5, typename T##6, \ + typename T##7, typename T##8 +#define GTEST_10_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4, typename T##5, typename T##6, \ + typename T##7, typename T##8, typename T##9 + +// In theory, defining stuff in the ::std namespace is undefined +// behavior. We can do this as we are playing the role of a standard +// library vendor. +namespace std { +namespace tr1 { + +template +class tuple; + +// Anything in namespace gtest_internal is Google Test's INTERNAL +// IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code. +namespace gtest_internal { + +// ByRef::type is T if T is a reference; otherwise it's const T&. +template +struct ByRef { typedef const T& type; }; // NOLINT +template +struct ByRef { typedef T& type; }; // NOLINT + +// A handy wrapper for ByRef. +#define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef::type + +// AddRef::type is T if T is a reference; otherwise it's T&. This +// is the same as tr1::add_reference::type. +template +struct AddRef { typedef T& type; }; // NOLINT +template +struct AddRef { typedef T& type; }; // NOLINT + +// A handy wrapper for AddRef. +#define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef::type + +// A helper for implementing get(). +template class Get; + +// A helper for implementing tuple_element. kIndexValid is true +// iff k < the number of fields in tuple type T. +template +struct TupleElement; + +template +struct TupleElement { + typedef T0 type; +}; + +template +struct TupleElement { + typedef T1 type; +}; + +template +struct TupleElement { + typedef T2 type; +}; + +template +struct TupleElement { + typedef T3 type; +}; + +template +struct TupleElement { + typedef T4 type; +}; + +template +struct TupleElement { + typedef T5 type; +}; + +template +struct TupleElement { + typedef T6 type; +}; + +template +struct TupleElement { + typedef T7 type; +}; + +template +struct TupleElement { + typedef T8 type; +}; + +template +struct TupleElement { + typedef T9 type; +}; + +} // namespace gtest_internal + +template <> +class tuple<> { + public: + tuple() {} + tuple(const tuple& /* t */) {} + tuple& operator=(const tuple& /* t */) { return *this; } +}; + +template +class GTEST_1_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0) : f0_(f0) {} + + tuple(const tuple& t) : f0_(t.f0_) {} + + template + tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_1_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) { + f0_ = t.f0_; + return *this; + } + + T0 f0_; +}; + +template +class GTEST_2_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1) : f0_(f0), + f1_(f1) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} + + template + tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {} + template + tuple(const ::std::pair& p) : f0_(p.first), f1_(p.second) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_2_TUPLE_(U)& t) { + return CopyFrom(t); + } + template + tuple& operator=(const ::std::pair& p) { + f0_ = p.first; + f1_ = p.second; + return *this; + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + return *this; + } + + T0 f0_; + T1 f1_; +}; + +template +class GTEST_3_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2) : f0_(f0), f1_(f1), f2_(f2) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} + + template + tuple(const GTEST_3_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_3_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; +}; + +template +class GTEST_4_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2), + f3_(f3) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} + + template + tuple(const GTEST_4_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_4_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_4_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; +}; + +template +class GTEST_5_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, + GTEST_BY_REF_(T4) f4) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_) {} + + template + tuple(const GTEST_5_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_5_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_5_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; +}; + +template +class GTEST_6_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, + GTEST_BY_REF_(T5) f5) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), + f5_(f5) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_), f5_(t.f5_) {} + + template + tuple(const GTEST_6_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_6_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_6_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + f5_ = t.f5_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; + T5 f5_; +}; + +template +class GTEST_7_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, + GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6) : f0_(f0), f1_(f1), f2_(f2), + f3_(f3), f4_(f4), f5_(f5), f6_(f6) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} + + template + tuple(const GTEST_7_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_7_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_7_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + f5_ = t.f5_; + f6_ = t.f6_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; + T5 f5_; + T6 f6_; +}; + +template +class GTEST_8_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, + GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, + GTEST_BY_REF_(T7) f7) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), + f5_(f5), f6_(f6), f7_(f7) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} + + template + tuple(const GTEST_8_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_8_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_8_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + f5_ = t.f5_; + f6_ = t.f6_; + f7_ = t.f7_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; + T5 f5_; + T6 f6_; + T7 f7_; +}; + +template +class GTEST_9_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, + GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, + GTEST_BY_REF_(T8) f8) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), + f5_(f5), f6_(f6), f7_(f7), f8_(f8) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} + + template + tuple(const GTEST_9_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_9_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_9_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + f5_ = t.f5_; + f6_ = t.f6_; + f7_ = t.f7_; + f8_ = t.f8_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; + T5 f5_; + T6 f6_; + T7 f7_; + T8 f8_; +}; + +template +class tuple { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), + f9_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, + GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, + GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2), + f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {} + + template + tuple(const GTEST_10_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), + f9_(t.f9_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_10_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_10_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + f5_ = t.f5_; + f6_ = t.f6_; + f7_ = t.f7_; + f8_ = t.f8_; + f9_ = t.f9_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; + T5 f5_; + T6 f6_; + T7 f7_; + T8 f8_; + T9 f9_; +}; + +// 6.1.3.2 Tuple creation functions. + +// Known limitations: we don't support passing an +// std::tr1::reference_wrapper to make_tuple(). And we don't +// implement tie(). + +inline tuple<> make_tuple() { return tuple<>(); } + +template +inline GTEST_1_TUPLE_(T) make_tuple(const T0& f0) { + return GTEST_1_TUPLE_(T)(f0); +} + +template +inline GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) { + return GTEST_2_TUPLE_(T)(f0, f1); +} + +template +inline GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) { + return GTEST_3_TUPLE_(T)(f0, f1, f2); +} + +template +inline GTEST_4_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3) { + return GTEST_4_TUPLE_(T)(f0, f1, f2, f3); +} + +template +inline GTEST_5_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4) { + return GTEST_5_TUPLE_(T)(f0, f1, f2, f3, f4); +} + +template +inline GTEST_6_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4, const T5& f5) { + return GTEST_6_TUPLE_(T)(f0, f1, f2, f3, f4, f5); +} + +template +inline GTEST_7_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4, const T5& f5, const T6& f6) { + return GTEST_7_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6); +} + +template +inline GTEST_8_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7) { + return GTEST_8_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7); +} + +template +inline GTEST_9_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, + const T8& f8) { + return GTEST_9_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8); +} + +template +inline GTEST_10_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, + const T8& f8, const T9& f9) { + return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9); +} + +// 6.1.3.3 Tuple helper classes. + +template struct tuple_size; + +template +struct tuple_size { + static const int value = 0; +}; + +template +struct tuple_size { + static const int value = 1; +}; + +template +struct tuple_size { + static const int value = 2; +}; + +template +struct tuple_size { + static const int value = 3; +}; + +template +struct tuple_size { + static const int value = 4; +}; + +template +struct tuple_size { + static const int value = 5; +}; + +template +struct tuple_size { + static const int value = 6; +}; + +template +struct tuple_size { + static const int value = 7; +}; + +template +struct tuple_size { + static const int value = 8; +}; + +template +struct tuple_size { + static const int value = 9; +}; + +template +struct tuple_size { + static const int value = 10; +}; + +template +struct tuple_element { + typedef typename gtest_internal::TupleElement< + k < (tuple_size::value), k, Tuple>::type type; +}; + +#define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element::type + +// 6.1.3.4 Element access. + +namespace gtest_internal { + +template <> +class Get<0> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) + Field(Tuple& t) { return t.f0_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) + ConstField(const Tuple& t) { return t.f0_; } +}; + +template <> +class Get<1> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) + Field(Tuple& t) { return t.f1_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) + ConstField(const Tuple& t) { return t.f1_; } +}; + +template <> +class Get<2> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) + Field(Tuple& t) { return t.f2_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) + ConstField(const Tuple& t) { return t.f2_; } +}; + +template <> +class Get<3> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) + Field(Tuple& t) { return t.f3_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) + ConstField(const Tuple& t) { return t.f3_; } +}; + +template <> +class Get<4> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) + Field(Tuple& t) { return t.f4_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) + ConstField(const Tuple& t) { return t.f4_; } +}; + +template <> +class Get<5> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) + Field(Tuple& t) { return t.f5_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) + ConstField(const Tuple& t) { return t.f5_; } +}; + +template <> +class Get<6> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) + Field(Tuple& t) { return t.f6_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) + ConstField(const Tuple& t) { return t.f6_; } +}; + +template <> +class Get<7> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) + Field(Tuple& t) { return t.f7_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) + ConstField(const Tuple& t) { return t.f7_; } +}; + +template <> +class Get<8> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) + Field(Tuple& t) { return t.f8_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) + ConstField(const Tuple& t) { return t.f8_; } +}; + +template <> +class Get<9> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) + Field(Tuple& t) { return t.f9_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) + ConstField(const Tuple& t) { return t.f9_; } +}; + +} // namespace gtest_internal + +template +GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) +get(GTEST_10_TUPLE_(T)& t) { + return gtest_internal::Get::Field(t); +} + +template +GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) +get(const GTEST_10_TUPLE_(T)& t) { + return gtest_internal::Get::ConstField(t); +} + +// 6.1.3.5 Relational operators + +// We only implement == and !=, as we don't have a need for the rest yet. + +namespace gtest_internal { + +// SameSizeTuplePrefixComparator::Eq(t1, t2) returns true if the +// first k fields of t1 equals the first k fields of t2. +// SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if +// k1 != k2. +template +struct SameSizeTuplePrefixComparator; + +template <> +struct SameSizeTuplePrefixComparator<0, 0> { + template + static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) { + return true; + } +}; + +template +struct SameSizeTuplePrefixComparator { + template + static bool Eq(const Tuple1& t1, const Tuple2& t2) { + return SameSizeTuplePrefixComparator::Eq(t1, t2) && + ::std::tr1::get(t1) == ::std::tr1::get(t2); + } +}; + +} // namespace gtest_internal + +template +inline bool operator==(const GTEST_10_TUPLE_(T)& t, + const GTEST_10_TUPLE_(U)& u) { + return gtest_internal::SameSizeTuplePrefixComparator< + tuple_size::value, + tuple_size::value>::Eq(t, u); +} + +template +inline bool operator!=(const GTEST_10_TUPLE_(T)& t, + const GTEST_10_TUPLE_(U)& u) { return !(t == u); } + +// 6.1.4 Pairs. +// Unimplemented. + +} // namespace tr1 +} // namespace std + +#undef GTEST_0_TUPLE_ +#undef GTEST_1_TUPLE_ +#undef GTEST_2_TUPLE_ +#undef GTEST_3_TUPLE_ +#undef GTEST_4_TUPLE_ +#undef GTEST_5_TUPLE_ +#undef GTEST_6_TUPLE_ +#undef GTEST_7_TUPLE_ +#undef GTEST_8_TUPLE_ +#undef GTEST_9_TUPLE_ +#undef GTEST_10_TUPLE_ + +#undef GTEST_0_TYPENAMES_ +#undef GTEST_1_TYPENAMES_ +#undef GTEST_2_TYPENAMES_ +#undef GTEST_3_TYPENAMES_ +#undef GTEST_4_TYPENAMES_ +#undef GTEST_5_TYPENAMES_ +#undef GTEST_6_TYPENAMES_ +#undef GTEST_7_TYPENAMES_ +#undef GTEST_8_TYPENAMES_ +#undef GTEST_9_TYPENAMES_ +#undef GTEST_10_TYPENAMES_ + +#undef GTEST_DECLARE_TUPLE_AS_FRIEND_ +#undef GTEST_BY_REF_ +#undef GTEST_ADD_REF_ +#undef GTEST_TUPLE_ELEMENT_ + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ +# elif GTEST_ENV_HAS_STD_TUPLE_ +# include +// C++11 puts its tuple into the ::std namespace rather than +// ::std::tr1. gtest expects tuple to live in ::std::tr1, so put it there. +// This causes undefined behavior, but supported compilers react in +// the way we intend. +namespace std { +namespace tr1 { +using ::std::get; +using ::std::make_tuple; +using ::std::tuple; +using ::std::tuple_element; +using ::std::tuple_size; +} +} + +# elif GTEST_OS_SYMBIAN + +// On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to +// use STLport's tuple implementation, which unfortunately doesn't +// work as the copy of STLport distributed with Symbian is incomplete. +// By making sure BOOST_HAS_TR1_TUPLE is undefined, we force Boost to +// use its own tuple implementation. +# ifdef BOOST_HAS_TR1_TUPLE +# undef BOOST_HAS_TR1_TUPLE +# endif // BOOST_HAS_TR1_TUPLE + +// This prevents , which defines +// BOOST_HAS_TR1_TUPLE, from being #included by Boost's . +# define BOOST_TR1_DETAIL_CONFIG_HPP_INCLUDED +# include + +# elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000) +// GCC 4.0+ implements tr1/tuple in the header. This does +// not conform to the TR1 spec, which requires the header to be . + +# if !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302 +// Until version 4.3.2, gcc has a bug that causes , +// which is #included by , to not compile when RTTI is +// disabled. _TR1_FUNCTIONAL is the header guard for +// . Hence the following #define is a hack to prevent +// from being included. +# define _TR1_FUNCTIONAL 1 +# include +# undef _TR1_FUNCTIONAL // Allows the user to #include + // if he chooses to. +# else +# include // NOLINT +# endif // !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302 + +# else +// If the compiler is not GCC 4.0+, we assume the user is using a +// spec-conforming TR1 implementation. +# include // NOLINT +# endif // GTEST_USE_OWN_TR1_TUPLE + +#endif // GTEST_HAS_TR1_TUPLE + +// Determines whether clone(2) is supported. +// Usually it will only be available on Linux, excluding +// Linux on the Itanium architecture. +// Also see http://linux.die.net/man/2/clone. +#ifndef GTEST_HAS_CLONE +// The user didn't tell us, so we need to figure it out. + +# if GTEST_OS_LINUX && !defined(__ia64__) +# if GTEST_OS_LINUX_ANDROID +// On Android, clone() is only available on ARM starting with Gingerbread. +# if defined(__arm__) && __ANDROID_API__ >= 9 +# define GTEST_HAS_CLONE 1 +# else +# define GTEST_HAS_CLONE 0 +# endif +# else +# define GTEST_HAS_CLONE 1 +# endif +# else +# define GTEST_HAS_CLONE 0 +# endif // GTEST_OS_LINUX && !defined(__ia64__) + +#endif // GTEST_HAS_CLONE + +// Determines whether to support stream redirection. This is used to test +// output correctness and to implement death tests. +#ifndef GTEST_HAS_STREAM_REDIRECTION +// By default, we assume that stream redirection is supported on all +// platforms except known mobile ones. +# if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN +# define GTEST_HAS_STREAM_REDIRECTION 0 +# else +# define GTEST_HAS_STREAM_REDIRECTION 1 +# endif // !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_SYMBIAN +#endif // GTEST_HAS_STREAM_REDIRECTION + +// Determines whether to support death tests. +// Google Test does not support death tests for VC 7.1 and earlier as +// abort() in a VC 7.1 application compiled as GUI in debug config +// pops up a dialog window that cannot be suppressed programmatically. +#if (GTEST_OS_LINUX || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \ + (GTEST_OS_MAC && !GTEST_OS_IOS) || GTEST_OS_IOS_SIMULATOR || \ + (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \ + GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX || GTEST_OS_HPUX || \ + GTEST_OS_OPENBSD || GTEST_OS_QNX) +# define GTEST_HAS_DEATH_TEST 1 +# include // NOLINT +#endif + +// We don't support MSVC 7.1 with exceptions disabled now. Therefore +// all the compilers we care about are adequate for supporting +// value-parameterized tests. +#define GTEST_HAS_PARAM_TEST 1 + +// Determines whether to support type-driven tests. + +// Typed tests need and variadic macros, which GCC, VC++ 8.0, +// Sun Pro CC, IBM Visual Age, and HP aCC support. +#if defined(__GNUC__) || (_MSC_VER >= 1400) || defined(__SUNPRO_CC) || \ + defined(__IBMCPP__) || defined(__HP_aCC) +# define GTEST_HAS_TYPED_TEST 1 +# define GTEST_HAS_TYPED_TEST_P 1 +#endif + +// Determines whether to support Combine(). This only makes sense when +// value-parameterized tests are enabled. The implementation doesn't +// work on Sun Studio since it doesn't understand templated conversion +// operators. +#if GTEST_HAS_PARAM_TEST && GTEST_HAS_TR1_TUPLE && !defined(__SUNPRO_CC) +# define GTEST_HAS_COMBINE 1 +#endif + +// Determines whether the system compiler uses UTF-16 for encoding wide strings. +#define GTEST_WIDE_STRING_USES_UTF16_ \ + (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_SYMBIAN || GTEST_OS_AIX) + +// Determines whether test results can be streamed to a socket. +#if GTEST_OS_LINUX +# define GTEST_CAN_STREAM_RESULTS_ 1 +#endif + +// Defines some utility macros. + +// The GNU compiler emits a warning if nested "if" statements are followed by +// an "else" statement and braces are not used to explicitly disambiguate the +// "else" binding. This leads to problems with code like: +// +// if (gate) +// ASSERT_*(condition) << "Some message"; +// +// The "switch (0) case 0:" idiom is used to suppress this. +#ifdef __INTEL_COMPILER +# define GTEST_AMBIGUOUS_ELSE_BLOCKER_ +#else +# define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: default: // NOLINT +#endif + +// Use this annotation at the end of a struct/class definition to +// prevent the compiler from optimizing away instances that are never +// used. This is useful when all interesting logic happens inside the +// c'tor and / or d'tor. Example: +// +// struct Foo { +// Foo() { ... } +// } GTEST_ATTRIBUTE_UNUSED_; +// +// Also use it after a variable or parameter declaration to tell the +// compiler the variable/parameter does not have to be used. +#if defined(__GNUC__) && !defined(COMPILER_ICC) +# define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused)) +#else +# define GTEST_ATTRIBUTE_UNUSED_ +#endif + +// A macro to disallow operator= +// This should be used in the private: declarations for a class. +#define GTEST_DISALLOW_ASSIGN_(type)\ + void operator=(type const &) + +// A macro to disallow copy constructor and operator= +// This should be used in the private: declarations for a class. +#define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)\ + type(type const &);\ + GTEST_DISALLOW_ASSIGN_(type) + +// Tell the compiler to warn about unused return values for functions declared +// with this macro. The macro should be used on function declarations +// following the argument list: +// +// Sprocket* AllocateSprocket() GTEST_MUST_USE_RESULT_; +#if defined(__GNUC__) && (GTEST_GCC_VER_ >= 30400) && !defined(COMPILER_ICC) +# define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result)) +#else +# define GTEST_MUST_USE_RESULT_ +#endif // __GNUC__ && (GTEST_GCC_VER_ >= 30400) && !COMPILER_ICC + +// Determine whether the compiler supports Microsoft's Structured Exception +// Handling. This is supported by several Windows compilers but generally +// does not exist on any other system. +#ifndef GTEST_HAS_SEH +// The user didn't tell us, so we need to figure it out. + +# if defined(_MSC_VER) || defined(__BORLANDC__) +// These two compilers are known to support SEH. +# define GTEST_HAS_SEH 1 +# else +// Assume no SEH. +# define GTEST_HAS_SEH 0 +# endif + +#endif // GTEST_HAS_SEH + +#ifdef _MSC_VER + +# if GTEST_LINKED_AS_SHARED_LIBRARY +# define GTEST_API_ __declspec(dllimport) +# elif GTEST_CREATE_SHARED_LIBRARY +# define GTEST_API_ __declspec(dllexport) +# endif + +#endif // _MSC_VER + +#ifndef GTEST_API_ +# define GTEST_API_ +#endif + +#ifdef __GNUC__ +// Ask the compiler to never inline a given function. +# define GTEST_NO_INLINE_ __attribute__((noinline)) +#else +# define GTEST_NO_INLINE_ +#endif + +// _LIBCPP_VERSION is defined by the libc++ library from the LLVM project. +#if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION) +# define GTEST_HAS_CXXABI_H_ 1 +#else +# define GTEST_HAS_CXXABI_H_ 0 +#endif + +namespace testing { + +class Message; + +namespace internal { + +// A secret type that Google Test users don't know about. It has no +// definition on purpose. Therefore it's impossible to create a +// Secret object, which is what we want. +class Secret; + +// The GTEST_COMPILE_ASSERT_ macro can be used to verify that a compile time +// expression is true. For example, you could use it to verify the +// size of a static array: +// +// GTEST_COMPILE_ASSERT_(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES, +// content_type_names_incorrect_size); +// +// or to make sure a struct is smaller than a certain size: +// +// GTEST_COMPILE_ASSERT_(sizeof(foo) < 128, foo_too_large); +// +// The second argument to the macro is the name of the variable. If +// the expression is false, most compilers will issue a warning/error +// containing the name of the variable. + +template +struct CompileAssert { +}; + +#define GTEST_COMPILE_ASSERT_(expr, msg) \ + typedef ::testing::internal::CompileAssert<(static_cast(expr))> \ + msg[static_cast(expr) ? 1 : -1] GTEST_ATTRIBUTE_UNUSED_ + +// Implementation details of GTEST_COMPILE_ASSERT_: +// +// - GTEST_COMPILE_ASSERT_ works by defining an array type that has -1 +// elements (and thus is invalid) when the expression is false. +// +// - The simpler definition +// +// #define GTEST_COMPILE_ASSERT_(expr, msg) typedef char msg[(expr) ? 1 : -1] +// +// does not work, as gcc supports variable-length arrays whose sizes +// are determined at run-time (this is gcc's extension and not part +// of the C++ standard). As a result, gcc fails to reject the +// following code with the simple definition: +// +// int foo; +// GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is +// // not a compile-time constant. +// +// - By using the type CompileAssert<(bool(expr))>, we ensures that +// expr is a compile-time constant. (Template arguments must be +// determined at compile-time.) +// +// - The outter parentheses in CompileAssert<(bool(expr))> are necessary +// to work around a bug in gcc 3.4.4 and 4.0.1. If we had written +// +// CompileAssert +// +// instead, these compilers will refuse to compile +// +// GTEST_COMPILE_ASSERT_(5 > 0, some_message); +// +// (They seem to think the ">" in "5 > 0" marks the end of the +// template argument list.) +// +// - The array size is (bool(expr) ? 1 : -1), instead of simply +// +// ((expr) ? 1 : -1). +// +// This is to avoid running into a bug in MS VC 7.1, which +// causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1. + +// StaticAssertTypeEqHelper is used by StaticAssertTypeEq defined in gtest.h. +// +// This template is declared, but intentionally undefined. +template +struct StaticAssertTypeEqHelper; + +template +struct StaticAssertTypeEqHelper {}; + +#if GTEST_HAS_GLOBAL_STRING +typedef ::string string; +#else +typedef ::std::string string; +#endif // GTEST_HAS_GLOBAL_STRING + +#if GTEST_HAS_GLOBAL_WSTRING +typedef ::wstring wstring; +#elif GTEST_HAS_STD_WSTRING +typedef ::std::wstring wstring; +#endif // GTEST_HAS_GLOBAL_WSTRING + +// A helper for suppressing warnings on constant condition. It just +// returns 'condition'. +GTEST_API_ bool IsTrue(bool condition); + +// Defines scoped_ptr. + +// This implementation of scoped_ptr is PARTIAL - it only contains +// enough stuff to satisfy Google Test's need. +template +class scoped_ptr { + public: + typedef T element_type; + + explicit scoped_ptr(T* p = NULL) : ptr_(p) {} + ~scoped_ptr() { reset(); } + + T& operator*() const { return *ptr_; } + T* operator->() const { return ptr_; } + T* get() const { return ptr_; } + + T* release() { + T* const ptr = ptr_; + ptr_ = NULL; + return ptr; + } + + void reset(T* p = NULL) { + if (p != ptr_) { + if (IsTrue(sizeof(T) > 0)) { // Makes sure T is a complete type. + delete ptr_; + } + ptr_ = p; + } + } + + private: + T* ptr_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr); +}; + +// Defines RE. + +// A simple C++ wrapper for . It uses the POSIX Extended +// Regular Expression syntax. +class GTEST_API_ RE { + public: + // A copy constructor is required by the Standard to initialize object + // references from r-values. + RE(const RE& other) { Init(other.pattern()); } + + // Constructs an RE from a string. + RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT + +#if GTEST_HAS_GLOBAL_STRING + + RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT + +#endif // GTEST_HAS_GLOBAL_STRING + + RE(const char* regex) { Init(regex); } // NOLINT + ~RE(); + + // Returns the string representation of the regex. + const char* pattern() const { return pattern_; } + + // FullMatch(str, re) returns true iff regular expression re matches + // the entire str. + // PartialMatch(str, re) returns true iff regular expression re + // matches a substring of str (including str itself). + // + // TODO(wan@google.com): make FullMatch() and PartialMatch() work + // when str contains NUL characters. + static bool FullMatch(const ::std::string& str, const RE& re) { + return FullMatch(str.c_str(), re); + } + static bool PartialMatch(const ::std::string& str, const RE& re) { + return PartialMatch(str.c_str(), re); + } + +#if GTEST_HAS_GLOBAL_STRING + + static bool FullMatch(const ::string& str, const RE& re) { + return FullMatch(str.c_str(), re); + } + static bool PartialMatch(const ::string& str, const RE& re) { + return PartialMatch(str.c_str(), re); + } + +#endif // GTEST_HAS_GLOBAL_STRING + + static bool FullMatch(const char* str, const RE& re); + static bool PartialMatch(const char* str, const RE& re); + + private: + void Init(const char* regex); + + // We use a const char* instead of an std::string, as Google Test used to be + // used where std::string is not available. TODO(wan@google.com): change to + // std::string. + const char* pattern_; + bool is_valid_; + +#if GTEST_USES_POSIX_RE + + regex_t full_regex_; // For FullMatch(). + regex_t partial_regex_; // For PartialMatch(). + +#else // GTEST_USES_SIMPLE_RE + + const char* full_pattern_; // For FullMatch(); + +#endif + + GTEST_DISALLOW_ASSIGN_(RE); +}; + +// Formats a source file path and a line number as they would appear +// in an error message from the compiler used to compile this code. +GTEST_API_ ::std::string FormatFileLocation(const char* file, int line); + +// Formats a file location for compiler-independent XML output. +// Although this function is not platform dependent, we put it next to +// FormatFileLocation in order to contrast the two functions. +GTEST_API_ ::std::string FormatCompilerIndependentFileLocation(const char* file, + int line); + +// Defines logging utilities: +// GTEST_LOG_(severity) - logs messages at the specified severity level. The +// message itself is streamed into the macro. +// LogToStderr() - directs all log messages to stderr. +// FlushInfoLog() - flushes informational log messages. + +enum GTestLogSeverity { + GTEST_INFO, + GTEST_WARNING, + GTEST_ERROR, + GTEST_FATAL +}; + +// Formats log entry severity, provides a stream object for streaming the +// log message, and terminates the message with a newline when going out of +// scope. +class GTEST_API_ GTestLog { + public: + GTestLog(GTestLogSeverity severity, const char* file, int line); + + // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. + ~GTestLog(); + + ::std::ostream& GetStream() { return ::std::cerr; } + + private: + const GTestLogSeverity severity_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestLog); +}; + +#define GTEST_LOG_(severity) \ + ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \ + __FILE__, __LINE__).GetStream() + +inline void LogToStderr() {} +inline void FlushInfoLog() { fflush(NULL); } + +// INTERNAL IMPLEMENTATION - DO NOT USE. +// +// GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition +// is not satisfied. +// Synopsys: +// GTEST_CHECK_(boolean_condition); +// or +// GTEST_CHECK_(boolean_condition) << "Additional message"; +// +// This checks the condition and if the condition is not satisfied +// it prints message about the condition violation, including the +// condition itself, plus additional message streamed into it, if any, +// and then it aborts the program. It aborts the program irrespective of +// whether it is built in the debug mode or not. +#define GTEST_CHECK_(condition) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::IsTrue(condition)) \ + ; \ + else \ + GTEST_LOG_(FATAL) << "Condition " #condition " failed. " + +// An all-mode assert to verify that the given POSIX-style function +// call returns 0 (indicating success). Known limitation: this +// doesn't expand to a balanced 'if' statement, so enclose the macro +// in {} if you need to use it as the only statement in an 'if' +// branch. +#define GTEST_CHECK_POSIX_SUCCESS_(posix_call) \ + if (const int gtest_error = (posix_call)) \ + GTEST_LOG_(FATAL) << #posix_call << "failed with error " \ + << gtest_error + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Use ImplicitCast_ as a safe version of static_cast for upcasting in +// the type hierarchy (e.g. casting a Foo* to a SuperclassOfFoo* or a +// const Foo*). When you use ImplicitCast_, the compiler checks that +// the cast is safe. Such explicit ImplicitCast_s are necessary in +// surprisingly many situations where C++ demands an exact type match +// instead of an argument type convertable to a target type. +// +// The syntax for using ImplicitCast_ is the same as for static_cast: +// +// ImplicitCast_(expr) +// +// ImplicitCast_ would have been part of the C++ standard library, +// but the proposal was submitted too late. It will probably make +// its way into the language in the future. +// +// This relatively ugly name is intentional. It prevents clashes with +// similar functions users may have (e.g., implicit_cast). The internal +// namespace alone is not enough because the function can be found by ADL. +template +inline To ImplicitCast_(To x) { return x; } + +// When you upcast (that is, cast a pointer from type Foo to type +// SuperclassOfFoo), it's fine to use ImplicitCast_<>, since upcasts +// always succeed. When you downcast (that is, cast a pointer from +// type Foo to type SubclassOfFoo), static_cast<> isn't safe, because +// how do you know the pointer is really of type SubclassOfFoo? It +// could be a bare Foo, or of type DifferentSubclassOfFoo. Thus, +// when you downcast, you should use this macro. In debug mode, we +// use dynamic_cast<> to double-check the downcast is legal (we die +// if it's not). In normal mode, we do the efficient static_cast<> +// instead. Thus, it's important to test in debug mode to make sure +// the cast is legal! +// This is the only place in the code we should use dynamic_cast<>. +// In particular, you SHOULDN'T be using dynamic_cast<> in order to +// do RTTI (eg code like this: +// if (dynamic_cast(foo)) HandleASubclass1Object(foo); +// if (dynamic_cast(foo)) HandleASubclass2Object(foo); +// You should design the code some other way not to need this. +// +// This relatively ugly name is intentional. It prevents clashes with +// similar functions users may have (e.g., down_cast). The internal +// namespace alone is not enough because the function can be found by ADL. +template // use like this: DownCast_(foo); +inline To DownCast_(From* f) { // so we only accept pointers + // Ensures that To is a sub-type of From *. This test is here only + // for compile-time type checking, and has no overhead in an + // optimized build at run-time, as it will be optimized away + // completely. + if (false) { + const To to = NULL; + ::testing::internal::ImplicitCast_(to); + } + +#if GTEST_HAS_RTTI + // RTTI: debug mode only! + GTEST_CHECK_(f == NULL || dynamic_cast(f) != NULL); +#endif + return static_cast(f); +} + +// Downcasts the pointer of type Base to Derived. +// Derived must be a subclass of Base. The parameter MUST +// point to a class of type Derived, not any subclass of it. +// When RTTI is available, the function performs a runtime +// check to enforce this. +template +Derived* CheckedDowncastToActualType(Base* base) { +#if GTEST_HAS_RTTI + GTEST_CHECK_(typeid(*base) == typeid(Derived)); + return dynamic_cast(base); // NOLINT +#else + return static_cast(base); // Poor man's downcast. +#endif +} + +#if GTEST_HAS_STREAM_REDIRECTION + +// Defines the stderr capturer: +// CaptureStdout - starts capturing stdout. +// GetCapturedStdout - stops capturing stdout and returns the captured string. +// CaptureStderr - starts capturing stderr. +// GetCapturedStderr - stops capturing stderr and returns the captured string. +// +GTEST_API_ void CaptureStdout(); +GTEST_API_ std::string GetCapturedStdout(); +GTEST_API_ void CaptureStderr(); +GTEST_API_ std::string GetCapturedStderr(); + +#endif // GTEST_HAS_STREAM_REDIRECTION + + +#if GTEST_HAS_DEATH_TEST + +const ::std::vector& GetInjectableArgvs(); +void SetInjectableArgvs(const ::std::vector* + new_argvs); + +// A copy of all command line arguments. Set by InitGoogleTest(). +extern ::std::vector g_argvs; + +#endif // GTEST_HAS_DEATH_TEST + +// Defines synchronization primitives. + +#if GTEST_HAS_PTHREAD + +// Sleeps for (roughly) n milli-seconds. This function is only for +// testing Google Test's own constructs. Don't use it in user tests, +// either directly or indirectly. +inline void SleepMilliseconds(int n) { + const timespec time = { + 0, // 0 seconds. + n * 1000L * 1000L, // And n ms. + }; + nanosleep(&time, NULL); +} + +// Allows a controller thread to pause execution of newly created +// threads until notified. Instances of this class must be created +// and destroyed in the controller thread. +// +// This class is only for testing Google Test's own constructs. Do not +// use it in user tests, either directly or indirectly. +class Notification { + public: + Notification() : notified_(false) { + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL)); + } + ~Notification() { + pthread_mutex_destroy(&mutex_); + } + + // Notifies all threads created with this notification to start. Must + // be called from the controller thread. + void Notify() { + pthread_mutex_lock(&mutex_); + notified_ = true; + pthread_mutex_unlock(&mutex_); + } + + // Blocks until the controller thread notifies. Must be called from a test + // thread. + void WaitForNotification() { + for (;;) { + pthread_mutex_lock(&mutex_); + const bool notified = notified_; + pthread_mutex_unlock(&mutex_); + if (notified) + break; + SleepMilliseconds(10); + } + } + + private: + pthread_mutex_t mutex_; + bool notified_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); +}; + +// As a C-function, ThreadFuncWithCLinkage cannot be templated itself. +// Consequently, it cannot select a correct instantiation of ThreadWithParam +// in order to call its Run(). Introducing ThreadWithParamBase as a +// non-templated base class for ThreadWithParam allows us to bypass this +// problem. +class ThreadWithParamBase { + public: + virtual ~ThreadWithParamBase() {} + virtual void Run() = 0; +}; + +// pthread_create() accepts a pointer to a function type with the C linkage. +// According to the Standard (7.5/1), function types with different linkages +// are different even if they are otherwise identical. Some compilers (for +// example, SunStudio) treat them as different types. Since class methods +// cannot be defined with C-linkage we need to define a free C-function to +// pass into pthread_create(). +extern "C" inline void* ThreadFuncWithCLinkage(void* thread) { + static_cast(thread)->Run(); + return NULL; +} + +// Helper class for testing Google Test's multi-threading constructs. +// To use it, write: +// +// void ThreadFunc(int param) { /* Do things with param */ } +// Notification thread_can_start; +// ... +// // The thread_can_start parameter is optional; you can supply NULL. +// ThreadWithParam thread(&ThreadFunc, 5, &thread_can_start); +// thread_can_start.Notify(); +// +// These classes are only for testing Google Test's own constructs. Do +// not use them in user tests, either directly or indirectly. +template +class ThreadWithParam : public ThreadWithParamBase { + public: + typedef void (*UserThreadFunc)(T); + + ThreadWithParam( + UserThreadFunc func, T param, Notification* thread_can_start) + : func_(func), + param_(param), + thread_can_start_(thread_can_start), + finished_(false) { + ThreadWithParamBase* const base = this; + // The thread can be created only after all fields except thread_ + // have been initialized. + GTEST_CHECK_POSIX_SUCCESS_( + pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base)); + } + ~ThreadWithParam() { Join(); } + + void Join() { + if (!finished_) { + GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, 0)); + finished_ = true; + } + } + + virtual void Run() { + if (thread_can_start_ != NULL) + thread_can_start_->WaitForNotification(); + func_(param_); + } + + private: + const UserThreadFunc func_; // User-supplied thread function. + const T param_; // User-supplied parameter to the thread function. + // When non-NULL, used to block execution until the controller thread + // notifies. + Notification* const thread_can_start_; + bool finished_; // true iff we know that the thread function has finished. + pthread_t thread_; // The native thread object. + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam); +}; + +// MutexBase and Mutex implement mutex on pthreads-based platforms. They +// are used in conjunction with class MutexLock: +// +// Mutex mutex; +// ... +// MutexLock lock(&mutex); // Acquires the mutex and releases it at the end +// // of the current scope. +// +// MutexBase implements behavior for both statically and dynamically +// allocated mutexes. Do not use MutexBase directly. Instead, write +// the following to define a static mutex: +// +// GTEST_DEFINE_STATIC_MUTEX_(g_some_mutex); +// +// You can forward declare a static mutex like this: +// +// GTEST_DECLARE_STATIC_MUTEX_(g_some_mutex); +// +// To create a dynamic mutex, just define an object of type Mutex. +class MutexBase { + public: + // Acquires this mutex. + void Lock() { + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_)); + owner_ = pthread_self(); + has_owner_ = true; + } + + // Releases this mutex. + void Unlock() { + // Since the lock is being released the owner_ field should no longer be + // considered valid. We don't protect writing to has_owner_ here, as it's + // the caller's responsibility to ensure that the current thread holds the + // mutex when this is called. + has_owner_ = false; + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_)); + } + + // Does nothing if the current thread holds the mutex. Otherwise, crashes + // with high probability. + void AssertHeld() const { + GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self())) + << "The current thread is not holding the mutex @" << this; + } + + // A static mutex may be used before main() is entered. It may even + // be used before the dynamic initialization stage. Therefore we + // must be able to initialize a static mutex object at link time. + // This means MutexBase has to be a POD and its member variables + // have to be public. + public: + pthread_mutex_t mutex_; // The underlying pthread mutex. + // has_owner_ indicates whether the owner_ field below contains a valid thread + // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All + // accesses to the owner_ field should be protected by a check of this field. + // An alternative might be to memset() owner_ to all zeros, but there's no + // guarantee that a zero'd pthread_t is necessarily invalid or even different + // from pthread_self(). + bool has_owner_; + pthread_t owner_; // The thread holding the mutex. +}; + +// Forward-declares a static mutex. +# define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ + extern ::testing::internal::MutexBase mutex + +// Defines and statically (i.e. at link time) initializes a static mutex. +// The initialization list here does not explicitly initialize each field, +// instead relying on default initialization for the unspecified fields. In +// particular, the owner_ field (a pthread_t) is not explicitly initialized. +// This allows initialization to work whether pthread_t is a scalar or struct. +// The flag -Wmissing-field-initializers must not be specified for this to work. +# define GTEST_DEFINE_STATIC_MUTEX_(mutex) \ + ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, false } + +// The Mutex class can only be used for mutexes created at runtime. It +// shares its API with MutexBase otherwise. +class Mutex : public MutexBase { + public: + Mutex() { + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL)); + has_owner_ = false; + } + ~Mutex() { + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&mutex_)); + } + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex); +}; + +// We cannot name this class MutexLock as the ctor declaration would +// conflict with a macro named MutexLock, which is defined on some +// platforms. Hence the typedef trick below. +class GTestMutexLock { + public: + explicit GTestMutexLock(MutexBase* mutex) + : mutex_(mutex) { mutex_->Lock(); } + + ~GTestMutexLock() { mutex_->Unlock(); } + + private: + MutexBase* const mutex_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock); +}; + +typedef GTestMutexLock MutexLock; + +// Helpers for ThreadLocal. + +// pthread_key_create() requires DeleteThreadLocalValue() to have +// C-linkage. Therefore it cannot be templatized to access +// ThreadLocal. Hence the need for class +// ThreadLocalValueHolderBase. +class ThreadLocalValueHolderBase { + public: + virtual ~ThreadLocalValueHolderBase() {} +}; + +// Called by pthread to delete thread-local data stored by +// pthread_setspecific(). +extern "C" inline void DeleteThreadLocalValue(void* value_holder) { + delete static_cast(value_holder); +} + +// Implements thread-local storage on pthreads-based systems. +// +// // Thread 1 +// ThreadLocal tl(100); // 100 is the default value for each thread. +// +// // Thread 2 +// tl.set(150); // Changes the value for thread 2 only. +// EXPECT_EQ(150, tl.get()); +// +// // Thread 1 +// EXPECT_EQ(100, tl.get()); // In thread 1, tl has the original value. +// tl.set(200); +// EXPECT_EQ(200, tl.get()); +// +// The template type argument T must have a public copy constructor. +// In addition, the default ThreadLocal constructor requires T to have +// a public default constructor. +// +// An object managed for a thread by a ThreadLocal instance is deleted +// when the thread exits. Or, if the ThreadLocal instance dies in +// that thread, when the ThreadLocal dies. It's the user's +// responsibility to ensure that all other threads using a ThreadLocal +// have exited when it dies, or the per-thread objects for those +// threads will not be deleted. +// +// Google Test only uses global ThreadLocal objects. That means they +// will die after main() has returned. Therefore, no per-thread +// object managed by Google Test will be leaked as long as all threads +// using Google Test have exited when main() returns. +template +class ThreadLocal { + public: + ThreadLocal() : key_(CreateKey()), + default_() {} + explicit ThreadLocal(const T& value) : key_(CreateKey()), + default_(value) {} + + ~ThreadLocal() { + // Destroys the managed object for the current thread, if any. + DeleteThreadLocalValue(pthread_getspecific(key_)); + + // Releases resources associated with the key. This will *not* + // delete managed objects for other threads. + GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_)); + } + + T* pointer() { return GetOrCreateValue(); } + const T* pointer() const { return GetOrCreateValue(); } + const T& get() const { return *pointer(); } + void set(const T& value) { *pointer() = value; } + + private: + // Holds a value of type T. + class ValueHolder : public ThreadLocalValueHolderBase { + public: + explicit ValueHolder(const T& value) : value_(value) {} + + T* pointer() { return &value_; } + + private: + T value_; + GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder); + }; + + static pthread_key_t CreateKey() { + pthread_key_t key; + // When a thread exits, DeleteThreadLocalValue() will be called on + // the object managed for that thread. + GTEST_CHECK_POSIX_SUCCESS_( + pthread_key_create(&key, &DeleteThreadLocalValue)); + return key; + } + + T* GetOrCreateValue() const { + ThreadLocalValueHolderBase* const holder = + static_cast(pthread_getspecific(key_)); + if (holder != NULL) { + return CheckedDowncastToActualType(holder)->pointer(); + } + + ValueHolder* const new_holder = new ValueHolder(default_); + ThreadLocalValueHolderBase* const holder_base = new_holder; + GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base)); + return new_holder->pointer(); + } + + // A key pthreads uses for looking up per-thread values. + const pthread_key_t key_; + const T default_; // The default value for each thread. + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal); +}; + +# define GTEST_IS_THREADSAFE 1 + +#else // GTEST_HAS_PTHREAD + +// A dummy implementation of synchronization primitives (mutex, lock, +// and thread-local variable). Necessary for compiling Google Test where +// mutex is not supported - using Google Test in multiple threads is not +// supported on such platforms. + +class Mutex { + public: + Mutex() {} + void Lock() {} + void Unlock() {} + void AssertHeld() const {} +}; + +# define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ + extern ::testing::internal::Mutex mutex + +# define GTEST_DEFINE_STATIC_MUTEX_(mutex) ::testing::internal::Mutex mutex + +class GTestMutexLock { + public: + explicit GTestMutexLock(Mutex*) {} // NOLINT +}; + +typedef GTestMutexLock MutexLock; + +template +class ThreadLocal { + public: + ThreadLocal() : value_() {} + explicit ThreadLocal(const T& value) : value_(value) {} + T* pointer() { return &value_; } + const T* pointer() const { return &value_; } + const T& get() const { return value_; } + void set(const T& value) { value_ = value; } + private: + T value_; +}; + +// The above synchronization primitives have dummy implementations. +// Therefore Google Test is not thread-safe. +# define GTEST_IS_THREADSAFE 0 + +#endif // GTEST_HAS_PTHREAD + +// Returns the number of threads running in the process, or 0 to indicate that +// we cannot detect it. +GTEST_API_ size_t GetThreadCount(); + +// Passing non-POD classes through ellipsis (...) crashes the ARM +// compiler and generates a warning in Sun Studio. The Nokia Symbian +// and the IBM XL C/C++ compiler try to instantiate a copy constructor +// for objects passed through ellipsis (...), failing for uncopyable +// objects. We define this to ensure that only POD is passed through +// ellipsis on these systems. +#if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC) +// We lose support for NULL detection where the compiler doesn't like +// passing non-POD classes through ellipsis (...). +# define GTEST_ELLIPSIS_NEEDS_POD_ 1 +#else +# define GTEST_CAN_COMPARE_NULL 1 +#endif + +// The Nokia Symbian and IBM XL C/C++ compilers cannot decide between +// const T& and const T* in a function template. These compilers +// _can_ decide between class template specializations for T and T*, +// so a tr1::type_traits-like is_pointer works. +#if defined(__SYMBIAN32__) || defined(__IBMCPP__) +# define GTEST_NEEDS_IS_POINTER_ 1 +#endif + +template +struct bool_constant { + typedef bool_constant type; + static const bool value = bool_value; +}; +template const bool bool_constant::value; + +typedef bool_constant false_type; +typedef bool_constant true_type; + +template +struct is_pointer : public false_type {}; + +template +struct is_pointer : public true_type {}; + +template +struct IteratorTraits { + typedef typename Iterator::value_type value_type; +}; + +template +struct IteratorTraits { + typedef T value_type; +}; + +template +struct IteratorTraits { + typedef T value_type; +}; + +#if GTEST_OS_WINDOWS +# define GTEST_PATH_SEP_ "\\" +# define GTEST_HAS_ALT_PATH_SEP_ 1 +// The biggest signed integer type the compiler supports. +typedef __int64 BiggestInt; +#else +# define GTEST_PATH_SEP_ "/" +# define GTEST_HAS_ALT_PATH_SEP_ 0 +typedef long long BiggestInt; // NOLINT +#endif // GTEST_OS_WINDOWS + +// Utilities for char. + +// isspace(int ch) and friends accept an unsigned char or EOF. char +// may be signed, depending on the compiler (or compiler flags). +// Therefore we need to cast a char to unsigned char before calling +// isspace(), etc. + +inline bool IsAlpha(char ch) { + return isalpha(static_cast(ch)) != 0; +} +inline bool IsAlNum(char ch) { + return isalnum(static_cast(ch)) != 0; +} +inline bool IsDigit(char ch) { + return isdigit(static_cast(ch)) != 0; +} +inline bool IsLower(char ch) { + return islower(static_cast(ch)) != 0; +} +inline bool IsSpace(char ch) { + return isspace(static_cast(ch)) != 0; +} +inline bool IsUpper(char ch) { + return isupper(static_cast(ch)) != 0; +} +inline bool IsXDigit(char ch) { + return isxdigit(static_cast(ch)) != 0; +} +inline bool IsXDigit(wchar_t ch) { + const unsigned char low_byte = static_cast(ch); + return ch == low_byte && isxdigit(low_byte) != 0; +} + +inline char ToLower(char ch) { + return static_cast(tolower(static_cast(ch))); +} +inline char ToUpper(char ch) { + return static_cast(toupper(static_cast(ch))); +} + +// The testing::internal::posix namespace holds wrappers for common +// POSIX functions. These wrappers hide the differences between +// Windows/MSVC and POSIX systems. Since some compilers define these +// standard functions as macros, the wrapper cannot have the same name +// as the wrapped function. + +namespace posix { + +// Functions with a different name on Windows. + +#if GTEST_OS_WINDOWS + +typedef struct _stat StatStruct; + +# ifdef __BORLANDC__ +inline int IsATTY(int fd) { return isatty(fd); } +inline int StrCaseCmp(const char* s1, const char* s2) { + return stricmp(s1, s2); +} +inline char* StrDup(const char* src) { return strdup(src); } +# else // !__BORLANDC__ +# if GTEST_OS_WINDOWS_MOBILE +inline int IsATTY(int /* fd */) { return 0; } +# else +inline int IsATTY(int fd) { return _isatty(fd); } +# endif // GTEST_OS_WINDOWS_MOBILE +inline int StrCaseCmp(const char* s1, const char* s2) { + return _stricmp(s1, s2); +} +inline char* StrDup(const char* src) { return _strdup(src); } +# endif // __BORLANDC__ + +# if GTEST_OS_WINDOWS_MOBILE +inline int FileNo(FILE* file) { return reinterpret_cast(_fileno(file)); } +// Stat(), RmDir(), and IsDir() are not needed on Windows CE at this +// time and thus not defined there. +# else +inline int FileNo(FILE* file) { return _fileno(file); } +inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } +inline int RmDir(const char* dir) { return _rmdir(dir); } +inline bool IsDir(const StatStruct& st) { + return (_S_IFDIR & st.st_mode) != 0; +} +# endif // GTEST_OS_WINDOWS_MOBILE + +#else + +typedef struct stat StatStruct; + +inline int FileNo(FILE* file) { return fileno(file); } +inline int IsATTY(int fd) { return isatty(fd); } +inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); } +inline int StrCaseCmp(const char* s1, const char* s2) { + return strcasecmp(s1, s2); +} +inline char* StrDup(const char* src) { return strdup(src); } +inline int RmDir(const char* dir) { return rmdir(dir); } +inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); } + +#endif // GTEST_OS_WINDOWS + +// Functions deprecated by MSVC 8.0. + +#ifdef _MSC_VER +// Temporarily disable warning 4996 (deprecated function). +# pragma warning(push) +# pragma warning(disable:4996) +#endif + +inline const char* StrNCpy(char* dest, const char* src, size_t n) { + return strncpy(dest, src, n); +} + +// ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and +// StrError() aren't needed on Windows CE at this time and thus not +// defined there. + +#if !GTEST_OS_WINDOWS_MOBILE +inline int ChDir(const char* dir) { return chdir(dir); } +#endif +inline FILE* FOpen(const char* path, const char* mode) { + return fopen(path, mode); +} +#if !GTEST_OS_WINDOWS_MOBILE +inline FILE *FReopen(const char* path, const char* mode, FILE* stream) { + return freopen(path, mode, stream); +} +inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); } +#endif +inline int FClose(FILE* fp) { return fclose(fp); } +#if !GTEST_OS_WINDOWS_MOBILE +inline int Read(int fd, void* buf, unsigned int count) { + return static_cast(read(fd, buf, count)); +} +inline int Write(int fd, const void* buf, unsigned int count) { + return static_cast(write(fd, buf, count)); +} +inline int Close(int fd) { return close(fd); } +inline const char* StrError(int errnum) { return strerror(errnum); } +#endif +inline const char* GetEnv(const char* name) { +#if GTEST_OS_WINDOWS_MOBILE + // We are on Windows CE, which has no environment variables. + return NULL; +#elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9) + // Environment variables which we programmatically clear will be set to the + // empty string rather than unset (NULL). Handle that case. + const char* const env = getenv(name); + return (env != NULL && env[0] != '\0') ? env : NULL; +#else + return getenv(name); +#endif +} + +#ifdef _MSC_VER +# pragma warning(pop) // Restores the warning state. +#endif + +#if GTEST_OS_WINDOWS_MOBILE +// Windows CE has no C library. The abort() function is used in +// several places in Google Test. This implementation provides a reasonable +// imitation of standard behaviour. +void Abort(); +#else +inline void Abort() { abort(); } +#endif // GTEST_OS_WINDOWS_MOBILE + +} // namespace posix + +// MSVC "deprecates" snprintf and issues warnings wherever it is used. In +// order to avoid these warnings, we need to use _snprintf or _snprintf_s on +// MSVC-based platforms. We map the GTEST_SNPRINTF_ macro to the appropriate +// function in order to achieve that. We use macro definition here because +// snprintf is a variadic function. +#if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE +// MSVC 2005 and above support variadic macros. +# define GTEST_SNPRINTF_(buffer, size, format, ...) \ + _snprintf_s(buffer, size, size, format, __VA_ARGS__) +#elif defined(_MSC_VER) +// Windows CE does not define _snprintf_s and MSVC prior to 2005 doesn't +// complain about _snprintf. +# define GTEST_SNPRINTF_ _snprintf +#else +# define GTEST_SNPRINTF_ snprintf +#endif + +// The maximum number a BiggestInt can represent. This definition +// works no matter BiggestInt is represented in one's complement or +// two's complement. +// +// We cannot rely on numeric_limits in STL, as __int64 and long long +// are not part of standard C++ and numeric_limits doesn't need to be +// defined for them. +const BiggestInt kMaxBiggestInt = + ~(static_cast(1) << (8*sizeof(BiggestInt) - 1)); + +// This template class serves as a compile-time function from size to +// type. It maps a size in bytes to a primitive type with that +// size. e.g. +// +// TypeWithSize<4>::UInt +// +// is typedef-ed to be unsigned int (unsigned integer made up of 4 +// bytes). +// +// Such functionality should belong to STL, but I cannot find it +// there. +// +// Google Test uses this class in the implementation of floating-point +// comparison. +// +// For now it only handles UInt (unsigned int) as that's all Google Test +// needs. Other types can be easily added in the future if need +// arises. +template +class TypeWithSize { + public: + // This prevents the user from using TypeWithSize with incorrect + // values of N. + typedef void UInt; +}; + +// The specialization for size 4. +template <> +class TypeWithSize<4> { + public: + // unsigned int has size 4 in both gcc and MSVC. + // + // As base/basictypes.h doesn't compile on Windows, we cannot use + // uint32, uint64, and etc here. + typedef int Int; + typedef unsigned int UInt; +}; + +// The specialization for size 8. +template <> +class TypeWithSize<8> { + public: +#if GTEST_OS_WINDOWS + typedef __int64 Int; + typedef unsigned __int64 UInt; +#else + typedef long long Int; // NOLINT + typedef unsigned long long UInt; // NOLINT +#endif // GTEST_OS_WINDOWS +}; + +// Integer types of known sizes. +typedef TypeWithSize<4>::Int Int32; +typedef TypeWithSize<4>::UInt UInt32; +typedef TypeWithSize<8>::Int Int64; +typedef TypeWithSize<8>::UInt UInt64; +typedef TypeWithSize<8>::Int TimeInMillis; // Represents time in milliseconds. + +// Utilities for command line flags and environment variables. + +// Macro for referencing flags. +#define GTEST_FLAG(name) FLAGS_gtest_##name + +// Macros for declaring flags. +#define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name) +#define GTEST_DECLARE_int32_(name) \ + GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name) +#define GTEST_DECLARE_string_(name) \ + GTEST_API_ extern ::std::string GTEST_FLAG(name) + +// Macros for defining flags. +#define GTEST_DEFINE_bool_(name, default_val, doc) \ + GTEST_API_ bool GTEST_FLAG(name) = (default_val) +#define GTEST_DEFINE_int32_(name, default_val, doc) \ + GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val) +#define GTEST_DEFINE_string_(name, default_val, doc) \ + GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val) + +// Thread annotations +#define GTEST_EXCLUSIVE_LOCK_REQUIRED_(locks) +#define GTEST_LOCK_EXCLUDED_(locks) + +// Parses 'str' for a 32-bit signed integer. If successful, writes the result +// to *value and returns true; otherwise leaves *value unchanged and returns +// false. +// TODO(chandlerc): Find a better way to refactor flag and environment parsing +// out of both gtest-port.cc and gtest.cc to avoid exporting this utility +// function. +bool ParseInt32(const Message& src_text, const char* str, Int32* value); + +// Parses a bool/Int32/string from the environment variable +// corresponding to the given Google Test flag. +bool BoolFromGTestEnv(const char* flag, bool default_val); +GTEST_API_ Int32 Int32FromGTestEnv(const char* flag, Int32 default_val); +const char* StringFromGTestEnv(const char* flag, const char* default_val); + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ + +#if GTEST_OS_LINUX +# include +# include +# include +# include +#endif // GTEST_OS_LINUX + +#if GTEST_HAS_EXCEPTIONS +# include +#endif + +#include +#include +#include +#include +#include +#include + +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file defines the Message class. +// +// IMPORTANT NOTE: Due to limitation of the C++ language, we have to +// leave some internal implementation details in this header file. +// They are clearly marked by comments like this: +// +// // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +// +// Such code is NOT meant to be used by a user directly, and is subject +// to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user +// program! + +#ifndef GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ +#define GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ + +#include + + +// Ensures that there is at least one operator<< in the global namespace. +// See Message& operator<<(...) below for why. +void operator<<(const testing::internal::Secret&, int); + +namespace testing { + +// The Message class works like an ostream repeater. +// +// Typical usage: +// +// 1. You stream a bunch of values to a Message object. +// It will remember the text in a stringstream. +// 2. Then you stream the Message object to an ostream. +// This causes the text in the Message to be streamed +// to the ostream. +// +// For example; +// +// testing::Message foo; +// foo << 1 << " != " << 2; +// std::cout << foo; +// +// will print "1 != 2". +// +// Message is not intended to be inherited from. In particular, its +// destructor is not virtual. +// +// Note that stringstream behaves differently in gcc and in MSVC. You +// can stream a NULL char pointer to it in the former, but not in the +// latter (it causes an access violation if you do). The Message +// class hides this difference by treating a NULL char pointer as +// "(null)". +class GTEST_API_ Message { + private: + // The type of basic IO manipulators (endl, ends, and flush) for + // narrow streams. + typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&); + + public: + // Constructs an empty Message. + Message(); + + // Copy constructor. + Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT + *ss_ << msg.GetString(); + } + + // Constructs a Message from a C-string. + explicit Message(const char* str) : ss_(new ::std::stringstream) { + *ss_ << str; + } + +#if GTEST_OS_SYMBIAN + // Streams a value (either a pointer or not) to this object. + template + inline Message& operator <<(const T& value) { + StreamHelper(typename internal::is_pointer::type(), value); + return *this; + } +#else + // Streams a non-pointer value to this object. + template + inline Message& operator <<(const T& val) { + // Some libraries overload << for STL containers. These + // overloads are defined in the global namespace instead of ::std. + // + // C++'s symbol lookup rule (i.e. Koenig lookup) says that these + // overloads are visible in either the std namespace or the global + // namespace, but not other namespaces, including the testing + // namespace which Google Test's Message class is in. + // + // To allow STL containers (and other types that has a << operator + // defined in the global namespace) to be used in Google Test + // assertions, testing::Message must access the custom << operator + // from the global namespace. With this using declaration, + // overloads of << defined in the global namespace and those + // visible via Koenig lookup are both exposed in this function. + using ::operator <<; + *ss_ << val; + return *this; + } + + // Streams a pointer value to this object. + // + // This function is an overload of the previous one. When you + // stream a pointer to a Message, this definition will be used as it + // is more specialized. (The C++ Standard, section + // [temp.func.order].) If you stream a non-pointer, then the + // previous definition will be used. + // + // The reason for this overload is that streaming a NULL pointer to + // ostream is undefined behavior. Depending on the compiler, you + // may get "0", "(nil)", "(null)", or an access violation. To + // ensure consistent result across compilers, we always treat NULL + // as "(null)". + template + inline Message& operator <<(T* const& pointer) { // NOLINT + if (pointer == NULL) { + *ss_ << "(null)"; + } else { + *ss_ << pointer; + } + return *this; + } +#endif // GTEST_OS_SYMBIAN + + // Since the basic IO manipulators are overloaded for both narrow + // and wide streams, we have to provide this specialized definition + // of operator <<, even though its body is the same as the + // templatized version above. Without this definition, streaming + // endl or other basic IO manipulators to Message will confuse the + // compiler. + Message& operator <<(BasicNarrowIoManip val) { + *ss_ << val; + return *this; + } + + // Instead of 1/0, we want to see true/false for bool values. + Message& operator <<(bool b) { + return *this << (b ? "true" : "false"); + } + + // These two overloads allow streaming a wide C string to a Message + // using the UTF-8 encoding. + Message& operator <<(const wchar_t* wide_c_str); + Message& operator <<(wchar_t* wide_c_str); + +#if GTEST_HAS_STD_WSTRING + // Converts the given wide string to a narrow string using the UTF-8 + // encoding, and streams the result to this Message object. + Message& operator <<(const ::std::wstring& wstr); +#endif // GTEST_HAS_STD_WSTRING + +#if GTEST_HAS_GLOBAL_WSTRING + // Converts the given wide string to a narrow string using the UTF-8 + // encoding, and streams the result to this Message object. + Message& operator <<(const ::wstring& wstr); +#endif // GTEST_HAS_GLOBAL_WSTRING + + // Gets the text streamed to this object so far as an std::string. + // Each '\0' character in the buffer is replaced with "\\0". + // + // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. + std::string GetString() const; + + private: + +#if GTEST_OS_SYMBIAN + // These are needed as the Nokia Symbian Compiler cannot decide between + // const T& and const T* in a function template. The Nokia compiler _can_ + // decide between class template specializations for T and T*, so a + // tr1::type_traits-like is_pointer works, and we can overload on that. + template + inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) { + if (pointer == NULL) { + *ss_ << "(null)"; + } else { + *ss_ << pointer; + } + } + template + inline void StreamHelper(internal::false_type /*is_pointer*/, + const T& value) { + // See the comments in Message& operator <<(const T&) above for why + // we need this using statement. + using ::operator <<; + *ss_ << value; + } +#endif // GTEST_OS_SYMBIAN + + // We'll hold the text streamed to this object here. + const internal::scoped_ptr< ::std::stringstream> ss_; + + // We declare (but don't implement) this to prevent the compiler + // from implementing the assignment operator. + void operator=(const Message&); +}; + +// Streams a Message to an ostream. +inline std::ostream& operator <<(std::ostream& os, const Message& sb) { + return os << sb.GetString(); +} + +namespace internal { + +// Converts a streamable value to an std::string. A NULL pointer is +// converted to "(null)". When the input value is a ::string, +// ::std::string, ::wstring, or ::std::wstring object, each NUL +// character in it is replaced with "\\0". +template +std::string StreamableToString(const T& streamable) { + return (Message() << streamable).GetString(); +} + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file declares the String class and functions used internally by +// Google Test. They are subject to change without notice. They should not used +// by code external to Google Test. +// +// This header file is #included by . +// It should not be #included by other files. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ + +#ifdef __BORLANDC__ +// string.h is not guaranteed to provide strcpy on C++ Builder. +# include +#endif + +#include +#include + + +namespace testing { +namespace internal { + +// String - an abstract class holding static string utilities. +class GTEST_API_ String { + public: + // Static utility methods + + // Clones a 0-terminated C string, allocating memory using new. The + // caller is responsible for deleting the return value using + // delete[]. Returns the cloned string, or NULL if the input is + // NULL. + // + // This is different from strdup() in string.h, which allocates + // memory using malloc(). + static const char* CloneCString(const char* c_str); + +#if GTEST_OS_WINDOWS_MOBILE + // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be + // able to pass strings to Win32 APIs on CE we need to convert them + // to 'Unicode', UTF-16. + + // Creates a UTF-16 wide string from the given ANSI string, allocating + // memory using new. The caller is responsible for deleting the return + // value using delete[]. Returns the wide string, or NULL if the + // input is NULL. + // + // The wide string is created using the ANSI codepage (CP_ACP) to + // match the behaviour of the ANSI versions of Win32 calls and the + // C runtime. + static LPCWSTR AnsiToUtf16(const char* c_str); + + // Creates an ANSI string from the given wide string, allocating + // memory using new. The caller is responsible for deleting the return + // value using delete[]. Returns the ANSI string, or NULL if the + // input is NULL. + // + // The returned string is created using the ANSI codepage (CP_ACP) to + // match the behaviour of the ANSI versions of Win32 calls and the + // C runtime. + static const char* Utf16ToAnsi(LPCWSTR utf16_str); +#endif + + // Compares two C strings. Returns true iff they have the same content. + // + // Unlike strcmp(), this function can handle NULL argument(s). A + // NULL C string is considered different to any non-NULL C string, + // including the empty string. + static bool CStringEquals(const char* lhs, const char* rhs); + + // Converts a wide C string to a String using the UTF-8 encoding. + // NULL will be converted to "(null)". If an error occurred during + // the conversion, "(failed to convert from wide string)" is + // returned. + static std::string ShowWideCString(const wchar_t* wide_c_str); + + // Compares two wide C strings. Returns true iff they have the same + // content. + // + // Unlike wcscmp(), this function can handle NULL argument(s). A + // NULL C string is considered different to any non-NULL C string, + // including the empty string. + static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); + + // Compares two C strings, ignoring case. Returns true iff they + // have the same content. + // + // Unlike strcasecmp(), this function can handle NULL argument(s). + // A NULL C string is considered different to any non-NULL C string, + // including the empty string. + static bool CaseInsensitiveCStringEquals(const char* lhs, + const char* rhs); + + // Compares two wide C strings, ignoring case. Returns true iff they + // have the same content. + // + // Unlike wcscasecmp(), this function can handle NULL argument(s). + // A NULL C string is considered different to any non-NULL wide C string, + // including the empty string. + // NB: The implementations on different platforms slightly differ. + // On windows, this method uses _wcsicmp which compares according to LC_CTYPE + // environment variable. On GNU platform this method uses wcscasecmp + // which compares according to LC_CTYPE category of the current locale. + // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the + // current locale. + static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs, + const wchar_t* rhs); + + // Returns true iff the given string ends with the given suffix, ignoring + // case. Any string is considered to end with an empty suffix. + static bool EndsWithCaseInsensitive( + const std::string& str, const std::string& suffix); + + // Formats an int value as "%02d". + static std::string FormatIntWidth2(int value); // "%02d" for width == 2 + + // Formats an int value as "%X". + static std::string FormatHexInt(int value); + + // Formats a byte as "%02X". + static std::string FormatByte(unsigned char value); + + private: + String(); // Not meant to be instantiated. +}; // class String + +// Gets the content of the stringstream's buffer as an std::string. Each '\0' +// character in the buffer is replaced with "\\0". +GTEST_API_ std::string StringStreamToString(::std::stringstream* stream); + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: keith.ray@gmail.com (Keith Ray) +// +// Google Test filepath utilities +// +// This header file declares classes and functions used internally by +// Google Test. They are subject to change without notice. +// +// This file is #included in . +// Do not include this header file separately! + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ + + +namespace testing { +namespace internal { + +// FilePath - a class for file and directory pathname manipulation which +// handles platform-specific conventions (like the pathname separator). +// Used for helper functions for naming files in a directory for xml output. +// Except for Set methods, all methods are const or static, which provides an +// "immutable value object" -- useful for peace of mind. +// A FilePath with a value ending in a path separator ("like/this/") represents +// a directory, otherwise it is assumed to represent a file. In either case, +// it may or may not represent an actual file or directory in the file system. +// Names are NOT checked for syntax correctness -- no checking for illegal +// characters, malformed paths, etc. + +class GTEST_API_ FilePath { + public: + FilePath() : pathname_("") { } + FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } + + explicit FilePath(const std::string& pathname) : pathname_(pathname) { + Normalize(); + } + + FilePath& operator=(const FilePath& rhs) { + Set(rhs); + return *this; + } + + void Set(const FilePath& rhs) { + pathname_ = rhs.pathname_; + } + + const std::string& string() const { return pathname_; } + const char* c_str() const { return pathname_.c_str(); } + + // Returns the current working directory, or "" if unsuccessful. + static FilePath GetCurrentDir(); + + // Given directory = "dir", base_name = "test", number = 0, + // extension = "xml", returns "dir/test.xml". If number is greater + // than zero (e.g., 12), returns "dir/test_12.xml". + // On Windows platform, uses \ as the separator rather than /. + static FilePath MakeFileName(const FilePath& directory, + const FilePath& base_name, + int number, + const char* extension); + + // Given directory = "dir", relative_path = "test.xml", + // returns "dir/test.xml". + // On Windows, uses \ as the separator rather than /. + static FilePath ConcatPaths(const FilePath& directory, + const FilePath& relative_path); + + // Returns a pathname for a file that does not currently exist. The pathname + // will be directory/base_name.extension or + // directory/base_name_.extension if directory/base_name.extension + // already exists. The number will be incremented until a pathname is found + // that does not already exist. + // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. + // There could be a race condition if two or more processes are calling this + // function at the same time -- they could both pick the same filename. + static FilePath GenerateUniqueFileName(const FilePath& directory, + const FilePath& base_name, + const char* extension); + + // Returns true iff the path is "". + bool IsEmpty() const { return pathname_.empty(); } + + // If input name has a trailing separator character, removes it and returns + // the name, otherwise return the name string unmodified. + // On Windows platform, uses \ as the separator, other platforms use /. + FilePath RemoveTrailingPathSeparator() const; + + // Returns a copy of the FilePath with the directory part removed. + // Example: FilePath("path/to/file").RemoveDirectoryName() returns + // FilePath("file"). If there is no directory part ("just_a_file"), it returns + // the FilePath unmodified. If there is no file part ("just_a_dir/") it + // returns an empty FilePath (""). + // On Windows platform, '\' is the path separator, otherwise it is '/'. + FilePath RemoveDirectoryName() const; + + // RemoveFileName returns the directory path with the filename removed. + // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". + // If the FilePath is "a_file" or "/a_file", RemoveFileName returns + // FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does + // not have a file, like "just/a/dir/", it returns the FilePath unmodified. + // On Windows platform, '\' is the path separator, otherwise it is '/'. + FilePath RemoveFileName() const; + + // Returns a copy of the FilePath with the case-insensitive extension removed. + // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns + // FilePath("dir/file"). If a case-insensitive extension is not + // found, returns a copy of the original FilePath. + FilePath RemoveExtension(const char* extension) const; + + // Creates directories so that path exists. Returns true if successful or if + // the directories already exist; returns false if unable to create + // directories for any reason. Will also return false if the FilePath does + // not represent a directory (that is, it doesn't end with a path separator). + bool CreateDirectoriesRecursively() const; + + // Create the directory so that path exists. Returns true if successful or + // if the directory already exists; returns false if unable to create the + // directory for any reason, including if the parent directory does not + // exist. Not named "CreateDirectory" because that's a macro on Windows. + bool CreateFolder() const; + + // Returns true if FilePath describes something in the file-system, + // either a file, directory, or whatever, and that something exists. + bool FileOrDirectoryExists() const; + + // Returns true if pathname describes a directory in the file-system + // that exists. + bool DirectoryExists() const; + + // Returns true if FilePath ends with a path separator, which indicates that + // it is intended to represent a directory. Returns false otherwise. + // This does NOT check that a directory (or file) actually exists. + bool IsDirectory() const; + + // Returns true if pathname describes a root directory. (Windows has one + // root directory per disk drive.) + bool IsRootDirectory() const; + + // Returns true if pathname describes an absolute path. + bool IsAbsolutePath() const; + + private: + // Replaces multiple consecutive separators with a single separator. + // For example, "bar///foo" becomes "bar/foo". Does not eliminate other + // redundancies that might be in a pathname involving "." or "..". + // + // A pathname with multiple consecutive separators may occur either through + // user error or as a result of some scripts or APIs that generate a pathname + // with a trailing separator. On other platforms the same API or script + // may NOT generate a pathname with a trailing "/". Then elsewhere that + // pathname may have another "/" and pathname components added to it, + // without checking for the separator already being there. + // The script language and operating system may allow paths like "foo//bar" + // but some of the functions in FilePath will not handle that correctly. In + // particular, RemoveTrailingPathSeparator() only removes one separator, and + // it is called in CreateDirectoriesRecursively() assuming that it will change + // a pathname from directory syntax (trailing separator) to filename syntax. + // + // On Windows this method also replaces the alternate path separator '/' with + // the primary path separator '\\', so that for example "bar\\/\\foo" becomes + // "bar\\foo". + + void Normalize(); + + // Returns a pointer to the last occurence of a valid path separator in + // the FilePath. On Windows, for example, both '/' and '\' are valid path + // separators. Returns NULL if no path separator was found. + const char* FindLastPathSeparator() const; + + std::string pathname_; +}; // class FilePath + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ +// This file was GENERATED by command: +// pump.py gtest-type-util.h.pump +// DO NOT EDIT BY HAND!!! + +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Type utilities needed for implementing typed and type-parameterized +// tests. This file is generated by a SCRIPT. DO NOT EDIT BY HAND! +// +// Currently we support at most 50 types in a list, and at most 50 +// type-parameterized tests in one type-parameterized test case. +// Please contact googletestframework@googlegroups.com if you need +// more. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ + + +// #ifdef __GNUC__ is too general here. It is possible to use gcc without using +// libstdc++ (which is where cxxabi.h comes from). +# if GTEST_HAS_CXXABI_H_ +# include +# elif defined(__HP_aCC) +# include +# endif // GTEST_HASH_CXXABI_H_ + +namespace testing { +namespace internal { + +// GetTypeName() returns a human-readable name of type T. +// NB: This function is also used in Google Mock, so don't move it inside of +// the typed-test-only section below. +template +std::string GetTypeName() { +# if GTEST_HAS_RTTI + + const char* const name = typeid(T).name(); +# if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC) + int status = 0; + // gcc's implementation of typeid(T).name() mangles the type name, + // so we have to demangle it. +# if GTEST_HAS_CXXABI_H_ + using abi::__cxa_demangle; +# endif // GTEST_HAS_CXXABI_H_ + char* const readable_name = __cxa_demangle(name, 0, 0, &status); + const std::string name_str(status == 0 ? readable_name : name); + free(readable_name); + return name_str; +# else + return name; +# endif // GTEST_HAS_CXXABI_H_ || __HP_aCC + +# else + + return ""; + +# endif // GTEST_HAS_RTTI +} + +#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P + +// AssertyTypeEq::type is defined iff T1 and T2 are the same +// type. This can be used as a compile-time assertion to ensure that +// two types are equal. + +template +struct AssertTypeEq; + +template +struct AssertTypeEq { + typedef bool type; +}; + +// A unique type used as the default value for the arguments of class +// template Types. This allows us to simulate variadic templates +// (e.g. Types, Type, and etc), which C++ doesn't +// support directly. +struct None {}; + +// The following family of struct and struct templates are used to +// represent type lists. In particular, TypesN +// represents a type list with N types (T1, T2, ..., and TN) in it. +// Except for Types0, every struct in the family has two member types: +// Head for the first type in the list, and Tail for the rest of the +// list. + +// The empty type list. +struct Types0 {}; + +// Type lists of length 1, 2, 3, and so on. + +template +struct Types1 { + typedef T1 Head; + typedef Types0 Tail; +}; +template +struct Types2 { + typedef T1 Head; + typedef Types1 Tail; +}; + +template +struct Types3 { + typedef T1 Head; + typedef Types2 Tail; +}; + +template +struct Types4 { + typedef T1 Head; + typedef Types3 Tail; +}; + +template +struct Types5 { + typedef T1 Head; + typedef Types4 Tail; +}; + +template +struct Types6 { + typedef T1 Head; + typedef Types5 Tail; +}; + +template +struct Types7 { + typedef T1 Head; + typedef Types6 Tail; +}; + +template +struct Types8 { + typedef T1 Head; + typedef Types7 Tail; +}; + +template +struct Types9 { + typedef T1 Head; + typedef Types8 Tail; +}; + +template +struct Types10 { + typedef T1 Head; + typedef Types9 Tail; +}; + +template +struct Types11 { + typedef T1 Head; + typedef Types10 Tail; +}; + +template +struct Types12 { + typedef T1 Head; + typedef Types11 Tail; +}; + +template +struct Types13 { + typedef T1 Head; + typedef Types12 Tail; +}; + +template +struct Types14 { + typedef T1 Head; + typedef Types13 Tail; +}; + +template +struct Types15 { + typedef T1 Head; + typedef Types14 Tail; +}; + +template +struct Types16 { + typedef T1 Head; + typedef Types15 Tail; +}; + +template +struct Types17 { + typedef T1 Head; + typedef Types16 Tail; +}; + +template +struct Types18 { + typedef T1 Head; + typedef Types17 Tail; +}; + +template +struct Types19 { + typedef T1 Head; + typedef Types18 Tail; +}; + +template +struct Types20 { + typedef T1 Head; + typedef Types19 Tail; +}; + +template +struct Types21 { + typedef T1 Head; + typedef Types20 Tail; +}; + +template +struct Types22 { + typedef T1 Head; + typedef Types21 Tail; +}; + +template +struct Types23 { + typedef T1 Head; + typedef Types22 Tail; +}; + +template +struct Types24 { + typedef T1 Head; + typedef Types23 Tail; +}; + +template +struct Types25 { + typedef T1 Head; + typedef Types24 Tail; +}; + +template +struct Types26 { + typedef T1 Head; + typedef Types25 Tail; +}; + +template +struct Types27 { + typedef T1 Head; + typedef Types26 Tail; +}; + +template +struct Types28 { + typedef T1 Head; + typedef Types27 Tail; +}; + +template +struct Types29 { + typedef T1 Head; + typedef Types28 Tail; +}; + +template +struct Types30 { + typedef T1 Head; + typedef Types29 Tail; +}; + +template +struct Types31 { + typedef T1 Head; + typedef Types30 Tail; +}; + +template +struct Types32 { + typedef T1 Head; + typedef Types31 Tail; +}; + +template +struct Types33 { + typedef T1 Head; + typedef Types32 Tail; +}; + +template +struct Types34 { + typedef T1 Head; + typedef Types33 Tail; +}; + +template +struct Types35 { + typedef T1 Head; + typedef Types34 Tail; +}; + +template +struct Types36 { + typedef T1 Head; + typedef Types35 Tail; +}; + +template +struct Types37 { + typedef T1 Head; + typedef Types36 Tail; +}; + +template +struct Types38 { + typedef T1 Head; + typedef Types37 Tail; +}; + +template +struct Types39 { + typedef T1 Head; + typedef Types38 Tail; +}; + +template +struct Types40 { + typedef T1 Head; + typedef Types39 Tail; +}; + +template +struct Types41 { + typedef T1 Head; + typedef Types40 Tail; +}; + +template +struct Types42 { + typedef T1 Head; + typedef Types41 Tail; +}; + +template +struct Types43 { + typedef T1 Head; + typedef Types42 Tail; +}; + +template +struct Types44 { + typedef T1 Head; + typedef Types43 Tail; +}; + +template +struct Types45 { + typedef T1 Head; + typedef Types44 Tail; +}; + +template +struct Types46 { + typedef T1 Head; + typedef Types45 Tail; +}; + +template +struct Types47 { + typedef T1 Head; + typedef Types46 Tail; +}; + +template +struct Types48 { + typedef T1 Head; + typedef Types47 Tail; +}; + +template +struct Types49 { + typedef T1 Head; + typedef Types48 Tail; +}; + +template +struct Types50 { + typedef T1 Head; + typedef Types49 Tail; +}; + + +} // namespace internal + +// We don't want to require the users to write TypesN<...> directly, +// as that would require them to count the length. Types<...> is much +// easier to write, but generates horrible messages when there is a +// compiler error, as gcc insists on printing out each template +// argument, even if it has the default value (this means Types +// will appear as Types in the compiler +// errors). +// +// Our solution is to combine the best part of the two approaches: a +// user would write Types, and Google Test will translate +// that to TypesN internally to make error messages +// readable. The translation is done by the 'type' member of the +// Types template. +template +struct Types { + typedef internal::Types50 type; +}; + +template <> +struct Types { + typedef internal::Types0 type; +}; +template +struct Types { + typedef internal::Types1 type; +}; +template +struct Types { + typedef internal::Types2 type; +}; +template +struct Types { + typedef internal::Types3 type; +}; +template +struct Types { + typedef internal::Types4 type; +}; +template +struct Types { + typedef internal::Types5 type; +}; +template +struct Types { + typedef internal::Types6 type; +}; +template +struct Types { + typedef internal::Types7 type; +}; +template +struct Types { + typedef internal::Types8 type; +}; +template +struct Types { + typedef internal::Types9 type; +}; +template +struct Types { + typedef internal::Types10 type; +}; +template +struct Types { + typedef internal::Types11 type; +}; +template +struct Types { + typedef internal::Types12 type; +}; +template +struct Types { + typedef internal::Types13 type; +}; +template +struct Types { + typedef internal::Types14 type; +}; +template +struct Types { + typedef internal::Types15 type; +}; +template +struct Types { + typedef internal::Types16 type; +}; +template +struct Types { + typedef internal::Types17 type; +}; +template +struct Types { + typedef internal::Types18 type; +}; +template +struct Types { + typedef internal::Types19 type; +}; +template +struct Types { + typedef internal::Types20 type; +}; +template +struct Types { + typedef internal::Types21 type; +}; +template +struct Types { + typedef internal::Types22 type; +}; +template +struct Types { + typedef internal::Types23 type; +}; +template +struct Types { + typedef internal::Types24 type; +}; +template +struct Types { + typedef internal::Types25 type; +}; +template +struct Types { + typedef internal::Types26 type; +}; +template +struct Types { + typedef internal::Types27 type; +}; +template +struct Types { + typedef internal::Types28 type; +}; +template +struct Types { + typedef internal::Types29 type; +}; +template +struct Types { + typedef internal::Types30 type; +}; +template +struct Types { + typedef internal::Types31 type; +}; +template +struct Types { + typedef internal::Types32 type; +}; +template +struct Types { + typedef internal::Types33 type; +}; +template +struct Types { + typedef internal::Types34 type; +}; +template +struct Types { + typedef internal::Types35 type; +}; +template +struct Types { + typedef internal::Types36 type; +}; +template +struct Types { + typedef internal::Types37 type; +}; +template +struct Types { + typedef internal::Types38 type; +}; +template +struct Types { + typedef internal::Types39 type; +}; +template +struct Types { + typedef internal::Types40 type; +}; +template +struct Types { + typedef internal::Types41 type; +}; +template +struct Types { + typedef internal::Types42 type; +}; +template +struct Types { + typedef internal::Types43 type; +}; +template +struct Types { + typedef internal::Types44 type; +}; +template +struct Types { + typedef internal::Types45 type; +}; +template +struct Types { + typedef internal::Types46 type; +}; +template +struct Types { + typedef internal::Types47 type; +}; +template +struct Types { + typedef internal::Types48 type; +}; +template +struct Types { + typedef internal::Types49 type; +}; + +namespace internal { + +# define GTEST_TEMPLATE_ template class + +// The template "selector" struct TemplateSel is used to +// represent Tmpl, which must be a class template with one type +// parameter, as a type. TemplateSel::Bind::type is defined +// as the type Tmpl. This allows us to actually instantiate the +// template "selected" by TemplateSel. +// +// This trick is necessary for simulating typedef for class templates, +// which C++ doesn't support directly. +template +struct TemplateSel { + template + struct Bind { + typedef Tmpl type; + }; +}; + +# define GTEST_BIND_(TmplSel, T) \ + TmplSel::template Bind::type + +// A unique struct template used as the default value for the +// arguments of class template Templates. This allows us to simulate +// variadic templates (e.g. Templates, Templates, +// and etc), which C++ doesn't support directly. +template +struct NoneT {}; + +// The following family of struct and struct templates are used to +// represent template lists. In particular, TemplatesN represents a list of N templates (T1, T2, ..., and TN). Except +// for Templates0, every struct in the family has two member types: +// Head for the selector of the first template in the list, and Tail +// for the rest of the list. + +// The empty template list. +struct Templates0 {}; + +// Template lists of length 1, 2, 3, and so on. + +template +struct Templates1 { + typedef TemplateSel Head; + typedef Templates0 Tail; +}; +template +struct Templates2 { + typedef TemplateSel Head; + typedef Templates1 Tail; +}; + +template +struct Templates3 { + typedef TemplateSel Head; + typedef Templates2 Tail; +}; + +template +struct Templates4 { + typedef TemplateSel Head; + typedef Templates3 Tail; +}; + +template +struct Templates5 { + typedef TemplateSel Head; + typedef Templates4 Tail; +}; + +template +struct Templates6 { + typedef TemplateSel Head; + typedef Templates5 Tail; +}; + +template +struct Templates7 { + typedef TemplateSel Head; + typedef Templates6 Tail; +}; + +template +struct Templates8 { + typedef TemplateSel Head; + typedef Templates7 Tail; +}; + +template +struct Templates9 { + typedef TemplateSel Head; + typedef Templates8 Tail; +}; + +template +struct Templates10 { + typedef TemplateSel Head; + typedef Templates9 Tail; +}; + +template +struct Templates11 { + typedef TemplateSel Head; + typedef Templates10 Tail; +}; + +template +struct Templates12 { + typedef TemplateSel Head; + typedef Templates11 Tail; +}; + +template +struct Templates13 { + typedef TemplateSel Head; + typedef Templates12 Tail; +}; + +template +struct Templates14 { + typedef TemplateSel Head; + typedef Templates13 Tail; +}; + +template +struct Templates15 { + typedef TemplateSel Head; + typedef Templates14 Tail; +}; + +template +struct Templates16 { + typedef TemplateSel Head; + typedef Templates15 Tail; +}; + +template +struct Templates17 { + typedef TemplateSel Head; + typedef Templates16 Tail; +}; + +template +struct Templates18 { + typedef TemplateSel Head; + typedef Templates17 Tail; +}; + +template +struct Templates19 { + typedef TemplateSel Head; + typedef Templates18 Tail; +}; + +template +struct Templates20 { + typedef TemplateSel Head; + typedef Templates19 Tail; +}; + +template +struct Templates21 { + typedef TemplateSel Head; + typedef Templates20 Tail; +}; + +template +struct Templates22 { + typedef TemplateSel Head; + typedef Templates21 Tail; +}; + +template +struct Templates23 { + typedef TemplateSel Head; + typedef Templates22 Tail; +}; + +template +struct Templates24 { + typedef TemplateSel Head; + typedef Templates23 Tail; +}; + +template +struct Templates25 { + typedef TemplateSel Head; + typedef Templates24 Tail; +}; + +template +struct Templates26 { + typedef TemplateSel Head; + typedef Templates25 Tail; +}; + +template +struct Templates27 { + typedef TemplateSel Head; + typedef Templates26 Tail; +}; + +template +struct Templates28 { + typedef TemplateSel Head; + typedef Templates27 Tail; +}; + +template +struct Templates29 { + typedef TemplateSel Head; + typedef Templates28 Tail; +}; + +template +struct Templates30 { + typedef TemplateSel Head; + typedef Templates29 Tail; +}; + +template +struct Templates31 { + typedef TemplateSel Head; + typedef Templates30 Tail; +}; + +template +struct Templates32 { + typedef TemplateSel Head; + typedef Templates31 Tail; +}; + +template +struct Templates33 { + typedef TemplateSel Head; + typedef Templates32 Tail; +}; + +template +struct Templates34 { + typedef TemplateSel Head; + typedef Templates33 Tail; +}; + +template +struct Templates35 { + typedef TemplateSel Head; + typedef Templates34 Tail; +}; + +template +struct Templates36 { + typedef TemplateSel Head; + typedef Templates35 Tail; +}; + +template +struct Templates37 { + typedef TemplateSel Head; + typedef Templates36 Tail; +}; + +template +struct Templates38 { + typedef TemplateSel Head; + typedef Templates37 Tail; +}; + +template +struct Templates39 { + typedef TemplateSel Head; + typedef Templates38 Tail; +}; + +template +struct Templates40 { + typedef TemplateSel Head; + typedef Templates39 Tail; +}; + +template +struct Templates41 { + typedef TemplateSel Head; + typedef Templates40 Tail; +}; + +template +struct Templates42 { + typedef TemplateSel Head; + typedef Templates41 Tail; +}; + +template +struct Templates43 { + typedef TemplateSel Head; + typedef Templates42 Tail; +}; + +template +struct Templates44 { + typedef TemplateSel Head; + typedef Templates43 Tail; +}; + +template +struct Templates45 { + typedef TemplateSel Head; + typedef Templates44 Tail; +}; + +template +struct Templates46 { + typedef TemplateSel Head; + typedef Templates45 Tail; +}; + +template +struct Templates47 { + typedef TemplateSel Head; + typedef Templates46 Tail; +}; + +template +struct Templates48 { + typedef TemplateSel Head; + typedef Templates47 Tail; +}; + +template +struct Templates49 { + typedef TemplateSel Head; + typedef Templates48 Tail; +}; + +template +struct Templates50 { + typedef TemplateSel Head; + typedef Templates49 Tail; +}; + + +// We don't want to require the users to write TemplatesN<...> directly, +// as that would require them to count the length. Templates<...> is much +// easier to write, but generates horrible messages when there is a +// compiler error, as gcc insists on printing out each template +// argument, even if it has the default value (this means Templates +// will appear as Templates in the compiler +// errors). +// +// Our solution is to combine the best part of the two approaches: a +// user would write Templates, and Google Test will translate +// that to TemplatesN internally to make error messages +// readable. The translation is done by the 'type' member of the +// Templates template. +template +struct Templates { + typedef Templates50 type; +}; + +template <> +struct Templates { + typedef Templates0 type; +}; +template +struct Templates { + typedef Templates1 type; +}; +template +struct Templates { + typedef Templates2 type; +}; +template +struct Templates { + typedef Templates3 type; +}; +template +struct Templates { + typedef Templates4 type; +}; +template +struct Templates { + typedef Templates5 type; +}; +template +struct Templates { + typedef Templates6 type; +}; +template +struct Templates { + typedef Templates7 type; +}; +template +struct Templates { + typedef Templates8 type; +}; +template +struct Templates { + typedef Templates9 type; +}; +template +struct Templates { + typedef Templates10 type; +}; +template +struct Templates { + typedef Templates11 type; +}; +template +struct Templates { + typedef Templates12 type; +}; +template +struct Templates { + typedef Templates13 type; +}; +template +struct Templates { + typedef Templates14 type; +}; +template +struct Templates { + typedef Templates15 type; +}; +template +struct Templates { + typedef Templates16 type; +}; +template +struct Templates { + typedef Templates17 type; +}; +template +struct Templates { + typedef Templates18 type; +}; +template +struct Templates { + typedef Templates19 type; +}; +template +struct Templates { + typedef Templates20 type; +}; +template +struct Templates { + typedef Templates21 type; +}; +template +struct Templates { + typedef Templates22 type; +}; +template +struct Templates { + typedef Templates23 type; +}; +template +struct Templates { + typedef Templates24 type; +}; +template +struct Templates { + typedef Templates25 type; +}; +template +struct Templates { + typedef Templates26 type; +}; +template +struct Templates { + typedef Templates27 type; +}; +template +struct Templates { + typedef Templates28 type; +}; +template +struct Templates { + typedef Templates29 type; +}; +template +struct Templates { + typedef Templates30 type; +}; +template +struct Templates { + typedef Templates31 type; +}; +template +struct Templates { + typedef Templates32 type; +}; +template +struct Templates { + typedef Templates33 type; +}; +template +struct Templates { + typedef Templates34 type; +}; +template +struct Templates { + typedef Templates35 type; +}; +template +struct Templates { + typedef Templates36 type; +}; +template +struct Templates { + typedef Templates37 type; +}; +template +struct Templates { + typedef Templates38 type; +}; +template +struct Templates { + typedef Templates39 type; +}; +template +struct Templates { + typedef Templates40 type; +}; +template +struct Templates { + typedef Templates41 type; +}; +template +struct Templates { + typedef Templates42 type; +}; +template +struct Templates { + typedef Templates43 type; +}; +template +struct Templates { + typedef Templates44 type; +}; +template +struct Templates { + typedef Templates45 type; +}; +template +struct Templates { + typedef Templates46 type; +}; +template +struct Templates { + typedef Templates47 type; +}; +template +struct Templates { + typedef Templates48 type; +}; +template +struct Templates { + typedef Templates49 type; +}; + +// The TypeList template makes it possible to use either a single type +// or a Types<...> list in TYPED_TEST_CASE() and +// INSTANTIATE_TYPED_TEST_CASE_P(). + +template +struct TypeList { + typedef Types1 type; +}; + +template +struct TypeList > { + typedef typename Types::type type; +}; + +#endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ + +// Due to C++ preprocessor weirdness, we need double indirection to +// concatenate two tokens when one of them is __LINE__. Writing +// +// foo ## __LINE__ +// +// will result in the token foo__LINE__, instead of foo followed by +// the current line number. For more details, see +// http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6 +#define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar) +#define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar + +class ProtocolMessage; +namespace proto2 { class Message; } + +namespace testing { + +// Forward declarations. + +class AssertionResult; // Result of an assertion. +class Message; // Represents a failure message. +class Test; // Represents a test. +class TestInfo; // Information about a test. +class TestPartResult; // Result of a test part. +class UnitTest; // A collection of test cases. + +template +::std::string PrintToString(const T& value); + +namespace internal { + +struct TraceInfo; // Information about a trace point. +class ScopedTrace; // Implements scoped trace. +class TestInfoImpl; // Opaque implementation of TestInfo +class UnitTestImpl; // Opaque implementation of UnitTest + +// How many times InitGoogleTest() has been called. +GTEST_API_ extern int g_init_gtest_count; + +// The text used in failure messages to indicate the start of the +// stack trace. +GTEST_API_ extern const char kStackTraceMarker[]; + +// Two overloaded helpers for checking at compile time whether an +// expression is a null pointer literal (i.e. NULL or any 0-valued +// compile-time integral constant). Their return values have +// different sizes, so we can use sizeof() to test which version is +// picked by the compiler. These helpers have no implementations, as +// we only need their signatures. +// +// Given IsNullLiteralHelper(x), the compiler will pick the first +// version if x can be implicitly converted to Secret*, and pick the +// second version otherwise. Since Secret is a secret and incomplete +// type, the only expression a user can write that has type Secret* is +// a null pointer literal. Therefore, we know that x is a null +// pointer literal if and only if the first version is picked by the +// compiler. +char IsNullLiteralHelper(Secret* p); +char (&IsNullLiteralHelper(...))[2]; // NOLINT + +// A compile-time bool constant that is true if and only if x is a +// null pointer literal (i.e. NULL or any 0-valued compile-time +// integral constant). +#ifdef GTEST_ELLIPSIS_NEEDS_POD_ +// We lose support for NULL detection where the compiler doesn't like +// passing non-POD classes through ellipsis (...). +# define GTEST_IS_NULL_LITERAL_(x) false +#else +# define GTEST_IS_NULL_LITERAL_(x) \ + (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1) +#endif // GTEST_ELLIPSIS_NEEDS_POD_ + +// Appends the user-supplied message to the Google-Test-generated message. +GTEST_API_ std::string AppendUserMessage( + const std::string& gtest_msg, const Message& user_msg); + +#if GTEST_HAS_EXCEPTIONS + +// This exception is thrown by (and only by) a failed Google Test +// assertion when GTEST_FLAG(throw_on_failure) is true (if exceptions +// are enabled). We derive it from std::runtime_error, which is for +// errors presumably detectable only at run time. Since +// std::runtime_error inherits from std::exception, many testing +// frameworks know how to extract and print the message inside it. +class GTEST_API_ GoogleTestFailureException : public ::std::runtime_error { + public: + explicit GoogleTestFailureException(const TestPartResult& failure); +}; + +#endif // GTEST_HAS_EXCEPTIONS + +// A helper class for creating scoped traces in user programs. +class GTEST_API_ ScopedTrace { + public: + // The c'tor pushes the given source file location and message onto + // a trace stack maintained by Google Test. + ScopedTrace(const char* file, int line, const Message& message); + + // The d'tor pops the info pushed by the c'tor. + // + // Note that the d'tor is not virtual in order to be efficient. + // Don't inherit from ScopedTrace! + ~ScopedTrace(); + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace); +} GTEST_ATTRIBUTE_UNUSED_; // A ScopedTrace object does its job in its + // c'tor and d'tor. Therefore it doesn't + // need to be used otherwise. + +// Constructs and returns the message for an equality assertion +// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. +// +// The first four parameters are the expressions used in the assertion +// and their values, as strings. For example, for ASSERT_EQ(foo, bar) +// where foo is 5 and bar is 6, we have: +// +// expected_expression: "foo" +// actual_expression: "bar" +// expected_value: "5" +// actual_value: "6" +// +// The ignoring_case parameter is true iff the assertion is a +// *_STRCASEEQ*. When it's true, the string " (ignoring case)" will +// be inserted into the message. +GTEST_API_ AssertionResult EqFailure(const char* expected_expression, + const char* actual_expression, + const std::string& expected_value, + const std::string& actual_value, + bool ignoring_case); + +// Constructs a failure message for Boolean assertions such as EXPECT_TRUE. +GTEST_API_ std::string GetBoolAssertionFailureMessage( + const AssertionResult& assertion_result, + const char* expression_text, + const char* actual_predicate_value, + const char* expected_predicate_value); + +// This template class represents an IEEE floating-point number +// (either single-precision or double-precision, depending on the +// template parameters). +// +// The purpose of this class is to do more sophisticated number +// comparison. (Due to round-off error, etc, it's very unlikely that +// two floating-points will be equal exactly. Hence a naive +// comparison by the == operation often doesn't work.) +// +// Format of IEEE floating-point: +// +// The most-significant bit being the leftmost, an IEEE +// floating-point looks like +// +// sign_bit exponent_bits fraction_bits +// +// Here, sign_bit is a single bit that designates the sign of the +// number. +// +// For float, there are 8 exponent bits and 23 fraction bits. +// +// For double, there are 11 exponent bits and 52 fraction bits. +// +// More details can be found at +// http://en.wikipedia.org/wiki/IEEE_floating-point_standard. +// +// Template parameter: +// +// RawType: the raw floating-point type (either float or double) +template +class FloatingPoint { + public: + // Defines the unsigned integer type that has the same size as the + // floating point number. + typedef typename TypeWithSize::UInt Bits; + + // Constants. + + // # of bits in a number. + static const size_t kBitCount = 8*sizeof(RawType); + + // # of fraction bits in a number. + static const size_t kFractionBitCount = + std::numeric_limits::digits - 1; + + // # of exponent bits in a number. + static const size_t kExponentBitCount = kBitCount - 1 - kFractionBitCount; + + // The mask for the sign bit. + static const Bits kSignBitMask = static_cast(1) << (kBitCount - 1); + + // The mask for the fraction bits. + static const Bits kFractionBitMask = + ~static_cast(0) >> (kExponentBitCount + 1); + + // The mask for the exponent bits. + static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask); + + // How many ULP's (Units in the Last Place) we want to tolerate when + // comparing two numbers. The larger the value, the more error we + // allow. A 0 value means that two numbers must be exactly the same + // to be considered equal. + // + // The maximum error of a single floating-point operation is 0.5 + // units in the last place. On Intel CPU's, all floating-point + // calculations are done with 80-bit precision, while double has 64 + // bits. Therefore, 4 should be enough for ordinary use. + // + // See the following article for more details on ULP: + // http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/ + static const size_t kMaxUlps = 4; + + // Constructs a FloatingPoint from a raw floating-point number. + // + // On an Intel CPU, passing a non-normalized NAN (Not a Number) + // around may change its bits, although the new value is guaranteed + // to be also a NAN. Therefore, don't expect this constructor to + // preserve the bits in x when x is a NAN. + explicit FloatingPoint(const RawType& x) { u_.value_ = x; } + + // Static methods + + // Reinterprets a bit pattern as a floating-point number. + // + // This function is needed to test the AlmostEquals() method. + static RawType ReinterpretBits(const Bits bits) { + FloatingPoint fp(0); + fp.u_.bits_ = bits; + return fp.u_.value_; + } + + // Returns the floating-point number that represent positive infinity. + static RawType Infinity() { + return ReinterpretBits(kExponentBitMask); + } + + // Returns the maximum representable finite floating-point number. + static RawType Max(); + + // Non-static methods + + // Returns the bits that represents this number. + const Bits &bits() const { return u_.bits_; } + + // Returns the exponent bits of this number. + Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } + + // Returns the fraction bits of this number. + Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } + + // Returns the sign bit of this number. + Bits sign_bit() const { return kSignBitMask & u_.bits_; } + + // Returns true iff this is NAN (not a number). + bool is_nan() const { + // It's a NAN if the exponent bits are all ones and the fraction + // bits are not entirely zeros. + return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0); + } + + // Returns true iff this number is at most kMaxUlps ULP's away from + // rhs. In particular, this function: + // + // - returns false if either number is (or both are) NAN. + // - treats really large numbers as almost equal to infinity. + // - thinks +0.0 and -0.0 are 0 DLP's apart. + bool AlmostEquals(const FloatingPoint& rhs) const { + // The IEEE standard says that any comparison operation involving + // a NAN must return false. + if (is_nan() || rhs.is_nan()) return false; + + return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) + <= kMaxUlps; + } + + private: + // The data type used to store the actual floating-point number. + union FloatingPointUnion { + RawType value_; // The raw floating-point number. + Bits bits_; // The bits that represent the number. + }; + + // Converts an integer from the sign-and-magnitude representation to + // the biased representation. More precisely, let N be 2 to the + // power of (kBitCount - 1), an integer x is represented by the + // unsigned number x + N. + // + // For instance, + // + // -N + 1 (the most negative number representable using + // sign-and-magnitude) is represented by 1; + // 0 is represented by N; and + // N - 1 (the biggest number representable using + // sign-and-magnitude) is represented by 2N - 1. + // + // Read http://en.wikipedia.org/wiki/Signed_number_representations + // for more details on signed number representations. + static Bits SignAndMagnitudeToBiased(const Bits &sam) { + if (kSignBitMask & sam) { + // sam represents a negative number. + return ~sam + 1; + } else { + // sam represents a positive number. + return kSignBitMask | sam; + } + } + + // Given two numbers in the sign-and-magnitude representation, + // returns the distance between them as an unsigned number. + static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits &sam1, + const Bits &sam2) { + const Bits biased1 = SignAndMagnitudeToBiased(sam1); + const Bits biased2 = SignAndMagnitudeToBiased(sam2); + return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1); + } + + FloatingPointUnion u_; +}; + +// We cannot use std::numeric_limits::max() as it clashes with the max() +// macro defined by . +template <> +inline float FloatingPoint::Max() { return FLT_MAX; } +template <> +inline double FloatingPoint::Max() { return DBL_MAX; } + +// Typedefs the instances of the FloatingPoint template class that we +// care to use. +typedef FloatingPoint Float; +typedef FloatingPoint Double; + +// In order to catch the mistake of putting tests that use different +// test fixture classes in the same test case, we need to assign +// unique IDs to fixture classes and compare them. The TypeId type is +// used to hold such IDs. The user should treat TypeId as an opaque +// type: the only operation allowed on TypeId values is to compare +// them for equality using the == operator. +typedef const void* TypeId; + +template +class TypeIdHelper { + public: + // dummy_ must not have a const type. Otherwise an overly eager + // compiler (e.g. MSVC 7.1 & 8.0) may try to merge + // TypeIdHelper::dummy_ for different Ts as an "optimization". + static bool dummy_; +}; + +template +bool TypeIdHelper::dummy_ = false; + +// GetTypeId() returns the ID of type T. Different values will be +// returned for different types. Calling the function twice with the +// same type argument is guaranteed to return the same ID. +template +TypeId GetTypeId() { + // The compiler is required to allocate a different + // TypeIdHelper::dummy_ variable for each T used to instantiate + // the template. Therefore, the address of dummy_ is guaranteed to + // be unique. + return &(TypeIdHelper::dummy_); +} + +// Returns the type ID of ::testing::Test. Always call this instead +// of GetTypeId< ::testing::Test>() to get the type ID of +// ::testing::Test, as the latter may give the wrong result due to a +// suspected linker bug when compiling Google Test as a Mac OS X +// framework. +GTEST_API_ TypeId GetTestTypeId(); + +// Defines the abstract factory interface that creates instances +// of a Test object. +class TestFactoryBase { + public: + virtual ~TestFactoryBase() {} + + // Creates a test instance to run. The instance is both created and destroyed + // within TestInfoImpl::Run() + virtual Test* CreateTest() = 0; + + protected: + TestFactoryBase() {} + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase); +}; + +// This class provides implementation of TeastFactoryBase interface. +// It is used in TEST and TEST_F macros. +template +class TestFactoryImpl : public TestFactoryBase { + public: + virtual Test* CreateTest() { return new TestClass; } +}; + +#if GTEST_OS_WINDOWS + +// Predicate-formatters for implementing the HRESULT checking macros +// {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED} +// We pass a long instead of HRESULT to avoid causing an +// include dependency for the HRESULT type. +GTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr, + long hr); // NOLINT +GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr, + long hr); // NOLINT + +#endif // GTEST_OS_WINDOWS + +// Types of SetUpTestCase() and TearDownTestCase() functions. +typedef void (*SetUpTestCaseFunc)(); +typedef void (*TearDownTestCaseFunc)(); + +// Creates a new TestInfo object and registers it with Google Test; +// returns the created object. +// +// Arguments: +// +// test_case_name: name of the test case +// name: name of the test +// type_param the name of the test's type parameter, or NULL if +// this is not a typed or a type-parameterized test. +// value_param text representation of the test's value parameter, +// or NULL if this is not a type-parameterized test. +// fixture_class_id: ID of the test fixture class +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +// factory: pointer to the factory that creates a test object. +// The newly created TestInfo instance will assume +// ownership of the factory object. +GTEST_API_ TestInfo* MakeAndRegisterTestInfo( + const char* test_case_name, + const char* name, + const char* type_param, + const char* value_param, + TypeId fixture_class_id, + SetUpTestCaseFunc set_up_tc, + TearDownTestCaseFunc tear_down_tc, + TestFactoryBase* factory); + +// If *pstr starts with the given prefix, modifies *pstr to be right +// past the prefix and returns true; otherwise leaves *pstr unchanged +// and returns false. None of pstr, *pstr, and prefix can be NULL. +GTEST_API_ bool SkipPrefix(const char* prefix, const char** pstr); + +#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P + +// State of the definition of a type-parameterized test case. +class GTEST_API_ TypedTestCasePState { + public: + TypedTestCasePState() : registered_(false) {} + + // Adds the given test name to defined_test_names_ and return true + // if the test case hasn't been registered; otherwise aborts the + // program. + bool AddTestName(const char* file, int line, const char* case_name, + const char* test_name) { + if (registered_) { + fprintf(stderr, "%s Test %s must be defined before " + "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n", + FormatFileLocation(file, line).c_str(), test_name, case_name); + fflush(stderr); + posix::Abort(); + } + defined_test_names_.insert(test_name); + return true; + } + + // Verifies that registered_tests match the test names in + // defined_test_names_; returns registered_tests if successful, or + // aborts the program otherwise. + const char* VerifyRegisteredTestNames( + const char* file, int line, const char* registered_tests); + + private: + bool registered_; + ::std::set defined_test_names_; +}; + +// Skips to the first non-space char after the first comma in 'str'; +// returns NULL if no comma is found in 'str'. +inline const char* SkipComma(const char* str) { + const char* comma = strchr(str, ','); + if (comma == NULL) { + return NULL; + } + while (IsSpace(*(++comma))) {} + return comma; +} + +// Returns the prefix of 'str' before the first comma in it; returns +// the entire string if it contains no comma. +inline std::string GetPrefixUntilComma(const char* str) { + const char* comma = strchr(str, ','); + return comma == NULL ? str : std::string(str, comma); +} + +// TypeParameterizedTest::Register() +// registers a list of type-parameterized tests with Google Test. The +// return value is insignificant - we just need to return something +// such that we can call this function in a namespace scope. +// +// Implementation note: The GTEST_TEMPLATE_ macro declares a template +// template parameter. It's defined in gtest-type-util.h. +template +class TypeParameterizedTest { + public: + // 'index' is the index of the test in the type list 'Types' + // specified in INSTANTIATE_TYPED_TEST_CASE_P(Prefix, TestCase, + // Types). Valid values for 'index' are [0, N - 1] where N is the + // length of Types. + static bool Register(const char* prefix, const char* case_name, + const char* test_names, int index) { + typedef typename Types::Head Type; + typedef Fixture FixtureClass; + typedef typename GTEST_BIND_(TestSel, Type) TestClass; + + // First, registers the first type-parameterized test in the type + // list. + MakeAndRegisterTestInfo( + (std::string(prefix) + (prefix[0] == '\0' ? "" : "/") + case_name + "/" + + StreamableToString(index)).c_str(), + GetPrefixUntilComma(test_names).c_str(), + GetTypeName().c_str(), + NULL, // No value parameter. + GetTypeId(), + TestClass::SetUpTestCase, + TestClass::TearDownTestCase, + new TestFactoryImpl); + + // Next, recurses (at compile time) with the tail of the type list. + return TypeParameterizedTest + ::Register(prefix, case_name, test_names, index + 1); + } +}; + +// The base case for the compile time recursion. +template +class TypeParameterizedTest { + public: + static bool Register(const char* /*prefix*/, const char* /*case_name*/, + const char* /*test_names*/, int /*index*/) { + return true; + } +}; + +// TypeParameterizedTestCase::Register() +// registers *all combinations* of 'Tests' and 'Types' with Google +// Test. The return value is insignificant - we just need to return +// something such that we can call this function in a namespace scope. +template +class TypeParameterizedTestCase { + public: + static bool Register(const char* prefix, const char* case_name, + const char* test_names) { + typedef typename Tests::Head Head; + + // First, register the first test in 'Test' for each type in 'Types'. + TypeParameterizedTest::Register( + prefix, case_name, test_names, 0); + + // Next, recurses (at compile time) with the tail of the test list. + return TypeParameterizedTestCase + ::Register(prefix, case_name, SkipComma(test_names)); + } +}; + +// The base case for the compile time recursion. +template +class TypeParameterizedTestCase { + public: + static bool Register(const char* /*prefix*/, const char* /*case_name*/, + const char* /*test_names*/) { + return true; + } +}; + +#endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P + +// Returns the current OS stack trace as an std::string. +// +// The maximum number of stack frames to be included is specified by +// the gtest_stack_trace_depth flag. The skip_count parameter +// specifies the number of top frames to be skipped, which doesn't +// count against the number of frames to be included. +// +// For example, if Foo() calls Bar(), which in turn calls +// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in +// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. +GTEST_API_ std::string GetCurrentOsStackTraceExceptTop( + UnitTest* unit_test, int skip_count); + +// Helpers for suppressing warnings on unreachable code or constant +// condition. + +// Always returns true. +GTEST_API_ bool AlwaysTrue(); + +// Always returns false. +inline bool AlwaysFalse() { return !AlwaysTrue(); } + +// Helper for suppressing false warning from Clang on a const char* +// variable declared in a conditional expression always being NULL in +// the else branch. +struct GTEST_API_ ConstCharPtr { + ConstCharPtr(const char* str) : value(str) {} + operator bool() const { return true; } + const char* value; +}; + +// A simple Linear Congruential Generator for generating random +// numbers with a uniform distribution. Unlike rand() and srand(), it +// doesn't use global state (and therefore can't interfere with user +// code). Unlike rand_r(), it's portable. An LCG isn't very random, +// but it's good enough for our purposes. +class GTEST_API_ Random { + public: + static const UInt32 kMaxRange = 1u << 31; + + explicit Random(UInt32 seed) : state_(seed) {} + + void Reseed(UInt32 seed) { state_ = seed; } + + // Generates a random number from [0, range). Crashes if 'range' is + // 0 or greater than kMaxRange. + UInt32 Generate(UInt32 range); + + private: + UInt32 state_; + GTEST_DISALLOW_COPY_AND_ASSIGN_(Random); +}; + +// Defining a variable of type CompileAssertTypesEqual will cause a +// compiler error iff T1 and T2 are different types. +template +struct CompileAssertTypesEqual; + +template +struct CompileAssertTypesEqual { +}; + +// Removes the reference from a type if it is a reference type, +// otherwise leaves it unchanged. This is the same as +// tr1::remove_reference, which is not widely available yet. +template +struct RemoveReference { typedef T type; }; // NOLINT +template +struct RemoveReference { typedef T type; }; // NOLINT + +// A handy wrapper around RemoveReference that works when the argument +// T depends on template parameters. +#define GTEST_REMOVE_REFERENCE_(T) \ + typename ::testing::internal::RemoveReference::type + +// Removes const from a type if it is a const type, otherwise leaves +// it unchanged. This is the same as tr1::remove_const, which is not +// widely available yet. +template +struct RemoveConst { typedef T type; }; // NOLINT +template +struct RemoveConst { typedef T type; }; // NOLINT + +// MSVC 8.0, Sun C++, and IBM XL C++ have a bug which causes the above +// definition to fail to remove the const in 'const int[3]' and 'const +// char[3][4]'. The following specialization works around the bug. +template +struct RemoveConst { + typedef typename RemoveConst::type type[N]; +}; + +#if defined(_MSC_VER) && _MSC_VER < 1400 +// This is the only specialization that allows VC++ 7.1 to remove const in +// 'const int[3] and 'const int[3][4]'. However, it causes trouble with GCC +// and thus needs to be conditionally compiled. +template +struct RemoveConst { + typedef typename RemoveConst::type type[N]; +}; +#endif + +// A handy wrapper around RemoveConst that works when the argument +// T depends on template parameters. +#define GTEST_REMOVE_CONST_(T) \ + typename ::testing::internal::RemoveConst::type + +// Turns const U&, U&, const U, and U all into U. +#define GTEST_REMOVE_REFERENCE_AND_CONST_(T) \ + GTEST_REMOVE_CONST_(GTEST_REMOVE_REFERENCE_(T)) + +// Adds reference to a type if it is not a reference type, +// otherwise leaves it unchanged. This is the same as +// tr1::add_reference, which is not widely available yet. +template +struct AddReference { typedef T& type; }; // NOLINT +template +struct AddReference { typedef T& type; }; // NOLINT + +// A handy wrapper around AddReference that works when the argument T +// depends on template parameters. +#define GTEST_ADD_REFERENCE_(T) \ + typename ::testing::internal::AddReference::type + +// Adds a reference to const on top of T as necessary. For example, +// it transforms +// +// char ==> const char& +// const char ==> const char& +// char& ==> const char& +// const char& ==> const char& +// +// The argument T must depend on some template parameters. +#define GTEST_REFERENCE_TO_CONST_(T) \ + GTEST_ADD_REFERENCE_(const GTEST_REMOVE_REFERENCE_(T)) + +// ImplicitlyConvertible::value is a compile-time bool +// constant that's true iff type From can be implicitly converted to +// type To. +template +class ImplicitlyConvertible { + private: + // We need the following helper functions only for their types. + // They have no implementations. + + // MakeFrom() is an expression whose type is From. We cannot simply + // use From(), as the type From may not have a public default + // constructor. + static From MakeFrom(); + + // These two functions are overloaded. Given an expression + // Helper(x), the compiler will pick the first version if x can be + // implicitly converted to type To; otherwise it will pick the + // second version. + // + // The first version returns a value of size 1, and the second + // version returns a value of size 2. Therefore, by checking the + // size of Helper(x), which can be done at compile time, we can tell + // which version of Helper() is used, and hence whether x can be + // implicitly converted to type To. + static char Helper(To); + static char (&Helper(...))[2]; // NOLINT + + // We have to put the 'public' section after the 'private' section, + // or MSVC refuses to compile the code. + public: + // MSVC warns about implicitly converting from double to int for + // possible loss of data, so we need to temporarily disable the + // warning. +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4244) // Temporarily disables warning 4244. + + static const bool value = + sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1; +# pragma warning(pop) // Restores the warning state. +#elif defined(__BORLANDC__) + // C++Builder cannot use member overload resolution during template + // instantiation. The simplest workaround is to use its C++0x type traits + // functions (C++Builder 2009 and above only). + static const bool value = __is_convertible(From, To); +#else + static const bool value = + sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1; +#endif // _MSV_VER +}; +template +const bool ImplicitlyConvertible::value; + +// IsAProtocolMessage::value is a compile-time bool constant that's +// true iff T is type ProtocolMessage, proto2::Message, or a subclass +// of those. +template +struct IsAProtocolMessage + : public bool_constant< + ImplicitlyConvertible::value || + ImplicitlyConvertible::value> { +}; + +// When the compiler sees expression IsContainerTest(0), if C is an +// STL-style container class, the first overload of IsContainerTest +// will be viable (since both C::iterator* and C::const_iterator* are +// valid types and NULL can be implicitly converted to them). It will +// be picked over the second overload as 'int' is a perfect match for +// the type of argument 0. If C::iterator or C::const_iterator is not +// a valid type, the first overload is not viable, and the second +// overload will be picked. Therefore, we can determine whether C is +// a container class by checking the type of IsContainerTest(0). +// The value of the expression is insignificant. +// +// Note that we look for both C::iterator and C::const_iterator. The +// reason is that C++ injects the name of a class as a member of the +// class itself (e.g. you can refer to class iterator as either +// 'iterator' or 'iterator::iterator'). If we look for C::iterator +// only, for example, we would mistakenly think that a class named +// iterator is an STL container. +// +// Also note that the simpler approach of overloading +// IsContainerTest(typename C::const_iterator*) and +// IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++. +typedef int IsContainer; +template +IsContainer IsContainerTest(int /* dummy */, + typename C::iterator* /* it */ = NULL, + typename C::const_iterator* /* const_it */ = NULL) { + return 0; +} + +typedef char IsNotContainer; +template +IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } + +// EnableIf::type is void when 'Cond' is true, and +// undefined when 'Cond' is false. To use SFINAE to make a function +// overload only apply when a particular expression is true, add +// "typename EnableIf::type* = 0" as the last parameter. +template struct EnableIf; +template<> struct EnableIf { typedef void type; }; // NOLINT + +// Utilities for native arrays. + +// ArrayEq() compares two k-dimensional native arrays using the +// elements' operator==, where k can be any integer >= 0. When k is +// 0, ArrayEq() degenerates into comparing a single pair of values. + +template +bool ArrayEq(const T* lhs, size_t size, const U* rhs); + +// This generic version is used when k is 0. +template +inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } + +// This overload is used when k >= 1. +template +inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) { + return internal::ArrayEq(lhs, N, rhs); +} + +// This helper reduces code bloat. If we instead put its logic inside +// the previous ArrayEq() function, arrays with different sizes would +// lead to different copies of the template code. +template +bool ArrayEq(const T* lhs, size_t size, const U* rhs) { + for (size_t i = 0; i != size; i++) { + if (!internal::ArrayEq(lhs[i], rhs[i])) + return false; + } + return true; +} + +// Finds the first element in the iterator range [begin, end) that +// equals elem. Element may be a native array type itself. +template +Iter ArrayAwareFind(Iter begin, Iter end, const Element& elem) { + for (Iter it = begin; it != end; ++it) { + if (internal::ArrayEq(*it, elem)) + return it; + } + return end; +} + +// CopyArray() copies a k-dimensional native array using the elements' +// operator=, where k can be any integer >= 0. When k is 0, +// CopyArray() degenerates into copying a single value. + +template +void CopyArray(const T* from, size_t size, U* to); + +// This generic version is used when k is 0. +template +inline void CopyArray(const T& from, U* to) { *to = from; } + +// This overload is used when k >= 1. +template +inline void CopyArray(const T(&from)[N], U(*to)[N]) { + internal::CopyArray(from, N, *to); +} + +// This helper reduces code bloat. If we instead put its logic inside +// the previous CopyArray() function, arrays with different sizes +// would lead to different copies of the template code. +template +void CopyArray(const T* from, size_t size, U* to) { + for (size_t i = 0; i != size; i++) { + internal::CopyArray(from[i], to + i); + } +} + +// The relation between an NativeArray object (see below) and the +// native array it represents. +enum RelationToSource { + kReference, // The NativeArray references the native array. + kCopy // The NativeArray makes a copy of the native array and + // owns the copy. +}; + +// Adapts a native array to a read-only STL-style container. Instead +// of the complete STL container concept, this adaptor only implements +// members useful for Google Mock's container matchers. New members +// should be added as needed. To simplify the implementation, we only +// support Element being a raw type (i.e. having no top-level const or +// reference modifier). It's the client's responsibility to satisfy +// this requirement. Element can be an array type itself (hence +// multi-dimensional arrays are supported). +template +class NativeArray { + public: + // STL-style container typedefs. + typedef Element value_type; + typedef Element* iterator; + typedef const Element* const_iterator; + + // Constructs from a native array. + NativeArray(const Element* array, size_t count, RelationToSource relation) { + Init(array, count, relation); + } + + // Copy constructor. + NativeArray(const NativeArray& rhs) { + Init(rhs.array_, rhs.size_, rhs.relation_to_source_); + } + + ~NativeArray() { + // Ensures that the user doesn't instantiate NativeArray with a + // const or reference type. + static_cast(StaticAssertTypeEqHelper()); + if (relation_to_source_ == kCopy) + delete[] array_; + } + + // STL-style container methods. + size_t size() const { return size_; } + const_iterator begin() const { return array_; } + const_iterator end() const { return array_ + size_; } + bool operator==(const NativeArray& rhs) const { + return size() == rhs.size() && + ArrayEq(begin(), size(), rhs.begin()); + } + + private: + // Initializes this object; makes a copy of the input array if + // 'relation' is kCopy. + void Init(const Element* array, size_t a_size, RelationToSource relation) { + if (relation == kReference) { + array_ = array; + } else { + Element* const copy = new Element[a_size]; + CopyArray(array, a_size, copy); + array_ = copy; + } + size_ = a_size; + relation_to_source_ = relation; + } + + const Element* array_; + size_t size_; + RelationToSource relation_to_source_; + + GTEST_DISALLOW_ASSIGN_(NativeArray); +}; + +} // namespace internal +} // namespace testing + +#define GTEST_MESSAGE_AT_(file, line, message, result_type) \ + ::testing::internal::AssertHelper(result_type, file, line, message) \ + = ::testing::Message() + +#define GTEST_MESSAGE_(message, result_type) \ + GTEST_MESSAGE_AT_(__FILE__, __LINE__, message, result_type) + +#define GTEST_FATAL_FAILURE_(message) \ + return GTEST_MESSAGE_(message, ::testing::TestPartResult::kFatalFailure) + +#define GTEST_NONFATAL_FAILURE_(message) \ + GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure) + +#define GTEST_SUCCESS_(message) \ + GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess) + +// Suppresses MSVC warnings 4072 (unreachable code) for the code following +// statement if it returns or throws (or doesn't return or throw in some +// situations). +#define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \ + if (::testing::internal::AlwaysTrue()) { statement; } + +#define GTEST_TEST_THROW_(statement, expected_exception, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::ConstCharPtr gtest_msg = "") { \ + bool gtest_caught_expected = false; \ + try { \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + } \ + catch (expected_exception const&) { \ + gtest_caught_expected = true; \ + } \ + catch (...) { \ + gtest_msg.value = \ + "Expected: " #statement " throws an exception of type " \ + #expected_exception ".\n Actual: it throws a different type."; \ + goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ + } \ + if (!gtest_caught_expected) { \ + gtest_msg.value = \ + "Expected: " #statement " throws an exception of type " \ + #expected_exception ".\n Actual: it throws nothing."; \ + goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ + } \ + } else \ + GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__): \ + fail(gtest_msg.value) + +#define GTEST_TEST_NO_THROW_(statement, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + try { \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + } \ + catch (...) { \ + goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \ + } \ + } else \ + GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \ + fail("Expected: " #statement " doesn't throw an exception.\n" \ + " Actual: it throws.") + +#define GTEST_TEST_ANY_THROW_(statement, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + bool gtest_caught_any = false; \ + try { \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + } \ + catch (...) { \ + gtest_caught_any = true; \ + } \ + if (!gtest_caught_any) { \ + goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \ + } \ + } else \ + GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \ + fail("Expected: " #statement " throws an exception.\n" \ + " Actual: it doesn't.") + + +// Implements Boolean test assertions such as EXPECT_TRUE. expression can be +// either a boolean expression or an AssertionResult. text is a textual +// represenation of expression as it was passed into the EXPECT_TRUE. +#define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (const ::testing::AssertionResult gtest_ar_ = \ + ::testing::AssertionResult(expression)) \ + ; \ + else \ + fail(::testing::internal::GetBoolAssertionFailureMessage(\ + gtest_ar_, text, #actual, #expected).c_str()) + +#define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \ + goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \ + } \ + } else \ + GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \ + fail("Expected: " #statement " doesn't generate new fatal " \ + "failures in the current thread.\n" \ + " Actual: it does.") + +// Expands to the name of the class that implements the given test. +#define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ + test_case_name##_##test_name##_Test + +// Helper macro for defining tests. +#define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\ +class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\ + public:\ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\ + private:\ + virtual void TestBody();\ + static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_;\ + GTEST_DISALLOW_COPY_AND_ASSIGN_(\ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\ +};\ +\ +::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\ + ::test_info_ =\ + ::testing::internal::MakeAndRegisterTestInfo(\ + #test_case_name, #test_name, NULL, NULL, \ + (parent_id), \ + parent_class::SetUpTestCase, \ + parent_class::TearDownTestCase, \ + new ::testing::internal::TestFactoryImpl<\ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>);\ +void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file defines the public API for death tests. It is +// #included by gtest.h so a user doesn't need to include this +// directly. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ +#define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ + +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file defines internal utilities needed for implementing +// death tests. They are subject to change without notice. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ + + +#include + +namespace testing { +namespace internal { + +GTEST_DECLARE_string_(internal_run_death_test); + +// Names of the flags (needed for parsing Google Test flags). +const char kDeathTestStyleFlag[] = "death_test_style"; +const char kDeathTestUseFork[] = "death_test_use_fork"; +const char kInternalRunDeathTestFlag[] = "internal_run_death_test"; + +#if GTEST_HAS_DEATH_TEST + +// DeathTest is a class that hides much of the complexity of the +// GTEST_DEATH_TEST_ macro. It is abstract; its static Create method +// returns a concrete class that depends on the prevailing death test +// style, as defined by the --gtest_death_test_style and/or +// --gtest_internal_run_death_test flags. + +// In describing the results of death tests, these terms are used with +// the corresponding definitions: +// +// exit status: The integer exit information in the format specified +// by wait(2) +// exit code: The integer code passed to exit(3), _exit(2), or +// returned from main() +class GTEST_API_ DeathTest { + public: + // Create returns false if there was an error determining the + // appropriate action to take for the current death test; for example, + // if the gtest_death_test_style flag is set to an invalid value. + // The LastMessage method will return a more detailed message in that + // case. Otherwise, the DeathTest pointer pointed to by the "test" + // argument is set. If the death test should be skipped, the pointer + // is set to NULL; otherwise, it is set to the address of a new concrete + // DeathTest object that controls the execution of the current test. + static bool Create(const char* statement, const RE* regex, + const char* file, int line, DeathTest** test); + DeathTest(); + virtual ~DeathTest() { } + + // A helper class that aborts a death test when it's deleted. + class ReturnSentinel { + public: + explicit ReturnSentinel(DeathTest* test) : test_(test) { } + ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); } + private: + DeathTest* const test_; + GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel); + } GTEST_ATTRIBUTE_UNUSED_; + + // An enumeration of possible roles that may be taken when a death + // test is encountered. EXECUTE means that the death test logic should + // be executed immediately. OVERSEE means that the program should prepare + // the appropriate environment for a child process to execute the death + // test, then wait for it to complete. + enum TestRole { OVERSEE_TEST, EXECUTE_TEST }; + + // An enumeration of the three reasons that a test might be aborted. + enum AbortReason { + TEST_ENCOUNTERED_RETURN_STATEMENT, + TEST_THREW_EXCEPTION, + TEST_DID_NOT_DIE + }; + + // Assumes one of the above roles. + virtual TestRole AssumeRole() = 0; + + // Waits for the death test to finish and returns its status. + virtual int Wait() = 0; + + // Returns true if the death test passed; that is, the test process + // exited during the test, its exit status matches a user-supplied + // predicate, and its stderr output matches a user-supplied regular + // expression. + // The user-supplied predicate may be a macro expression rather + // than a function pointer or functor, or else Wait and Passed could + // be combined. + virtual bool Passed(bool exit_status_ok) = 0; + + // Signals that the death test did not die as expected. + virtual void Abort(AbortReason reason) = 0; + + // Returns a human-readable outcome message regarding the outcome of + // the last death test. + static const char* LastMessage(); + + static void set_last_death_test_message(const std::string& message); + + private: + // A string containing a description of the outcome of the last death test. + static std::string last_death_test_message_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(DeathTest); +}; + +// Factory interface for death tests. May be mocked out for testing. +class DeathTestFactory { + public: + virtual ~DeathTestFactory() { } + virtual bool Create(const char* statement, const RE* regex, + const char* file, int line, DeathTest** test) = 0; +}; + +// A concrete DeathTestFactory implementation for normal use. +class DefaultDeathTestFactory : public DeathTestFactory { + public: + virtual bool Create(const char* statement, const RE* regex, + const char* file, int line, DeathTest** test); +}; + +// Returns true if exit_status describes a process that was terminated +// by a signal, or exited normally with a nonzero exit code. +GTEST_API_ bool ExitedUnsuccessfully(int exit_status); + +// Traps C++ exceptions escaping statement and reports them as test +// failures. Note that trapping SEH exceptions is not implemented here. +# if GTEST_HAS_EXCEPTIONS +# define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ + try { \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + } catch (const ::std::exception& gtest_exception) { \ + fprintf(\ + stderr, \ + "\n%s: Caught std::exception-derived exception escaping the " \ + "death test statement. Exception message: %s\n", \ + ::testing::internal::FormatFileLocation(__FILE__, __LINE__).c_str(), \ + gtest_exception.what()); \ + fflush(stderr); \ + death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \ + } catch (...) { \ + death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \ + } + +# else +# define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) + +# endif + +// This macro is for implementing ASSERT_DEATH*, EXPECT_DEATH*, +// ASSERT_EXIT*, and EXPECT_EXIT*. +# define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + const ::testing::internal::RE& gtest_regex = (regex); \ + ::testing::internal::DeathTest* gtest_dt; \ + if (!::testing::internal::DeathTest::Create(#statement, >est_regex, \ + __FILE__, __LINE__, >est_dt)) { \ + goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ + } \ + if (gtest_dt != NULL) { \ + ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \ + gtest_dt_ptr(gtest_dt); \ + switch (gtest_dt->AssumeRole()) { \ + case ::testing::internal::DeathTest::OVERSEE_TEST: \ + if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \ + goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ + } \ + break; \ + case ::testing::internal::DeathTest::EXECUTE_TEST: { \ + ::testing::internal::DeathTest::ReturnSentinel \ + gtest_sentinel(gtest_dt); \ + GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, gtest_dt); \ + gtest_dt->Abort(::testing::internal::DeathTest::TEST_DID_NOT_DIE); \ + break; \ + } \ + default: \ + break; \ + } \ + } \ + } else \ + GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__): \ + fail(::testing::internal::DeathTest::LastMessage()) +// The symbol "fail" here expands to something into which a message +// can be streamed. + +// This macro is for implementing ASSERT/EXPECT_DEBUG_DEATH when compiled in +// NDEBUG mode. In this case we need the statements to be executed, the regex is +// ignored, and the macro must accept a streamed message even though the message +// is never printed. +# define GTEST_EXECUTE_STATEMENT_(statement, regex) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + } else \ + ::testing::Message() + +// A class representing the parsed contents of the +// --gtest_internal_run_death_test flag, as it existed when +// RUN_ALL_TESTS was called. +class InternalRunDeathTestFlag { + public: + InternalRunDeathTestFlag(const std::string& a_file, + int a_line, + int an_index, + int a_write_fd) + : file_(a_file), line_(a_line), index_(an_index), + write_fd_(a_write_fd) {} + + ~InternalRunDeathTestFlag() { + if (write_fd_ >= 0) + posix::Close(write_fd_); + } + + const std::string& file() const { return file_; } + int line() const { return line_; } + int index() const { return index_; } + int write_fd() const { return write_fd_; } + + private: + std::string file_; + int line_; + int index_; + int write_fd_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(InternalRunDeathTestFlag); +}; + +// Returns a newly created InternalRunDeathTestFlag object with fields +// initialized from the GTEST_FLAG(internal_run_death_test) flag if +// the flag is specified; otherwise returns NULL. +InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag(); + +#else // GTEST_HAS_DEATH_TEST + +// This macro is used for implementing macros such as +// EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED on systems where +// death tests are not supported. Those macros must compile on such systems +// iff EXPECT_DEATH and ASSERT_DEATH compile with the same parameters on +// systems that support death tests. This allows one to write such a macro +// on a system that does not support death tests and be sure that it will +// compile on a death-test supporting system. +// +// Parameters: +// statement - A statement that a macro such as EXPECT_DEATH would test +// for program termination. This macro has to make sure this +// statement is compiled but not executed, to ensure that +// EXPECT_DEATH_IF_SUPPORTED compiles with a certain +// parameter iff EXPECT_DEATH compiles with it. +// regex - A regex that a macro such as EXPECT_DEATH would use to test +// the output of statement. This parameter has to be +// compiled but not evaluated by this macro, to ensure that +// this macro only accepts expressions that a macro such as +// EXPECT_DEATH would accept. +// terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED +// and a return statement for ASSERT_DEATH_IF_SUPPORTED. +// This ensures that ASSERT_DEATH_IF_SUPPORTED will not +// compile inside functions where ASSERT_DEATH doesn't +// compile. +// +// The branch that has an always false condition is used to ensure that +// statement and regex are compiled (and thus syntactically correct) but +// never executed. The unreachable code macro protects the terminator +// statement from generating an 'unreachable code' warning in case +// statement unconditionally returns or throws. The Message constructor at +// the end allows the syntax of streaming additional messages into the +// macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH. +# define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + GTEST_LOG_(WARNING) \ + << "Death tests are not supported on this platform.\n" \ + << "Statement '" #statement "' cannot be verified."; \ + } else if (::testing::internal::AlwaysFalse()) { \ + ::testing::internal::RE::PartialMatch(".*", (regex)); \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + terminator; \ + } else \ + ::testing::Message() + +#endif // GTEST_HAS_DEATH_TEST + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ + +namespace testing { + +// This flag controls the style of death tests. Valid values are "threadsafe", +// meaning that the death test child process will re-execute the test binary +// from the start, running only a single death test, or "fast", +// meaning that the child process will execute the test logic immediately +// after forking. +GTEST_DECLARE_string_(death_test_style); + +#if GTEST_HAS_DEATH_TEST + +namespace internal { + +// Returns a Boolean value indicating whether the caller is currently +// executing in the context of the death test child process. Tools such as +// Valgrind heap checkers may need this to modify their behavior in death +// tests. IMPORTANT: This is an internal utility. Using it may break the +// implementation of death tests. User code MUST NOT use it. +GTEST_API_ bool InDeathTestChild(); + +} // namespace internal + +// The following macros are useful for writing death tests. + +// Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is +// executed: +// +// 1. It generates a warning if there is more than one active +// thread. This is because it's safe to fork() or clone() only +// when there is a single thread. +// +// 2. The parent process clone()s a sub-process and runs the death +// test in it; the sub-process exits with code 0 at the end of the +// death test, if it hasn't exited already. +// +// 3. The parent process waits for the sub-process to terminate. +// +// 4. The parent process checks the exit code and error message of +// the sub-process. +// +// Examples: +// +// ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number"); +// for (int i = 0; i < 5; i++) { +// EXPECT_DEATH(server.ProcessRequest(i), +// "Invalid request .* in ProcessRequest()") +// << "Failed to die on request " << i; +// } +// +// ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting"); +// +// bool KilledBySIGHUP(int exit_code) { +// return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP; +// } +// +// ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!"); +// +// On the regular expressions used in death tests: +// +// On POSIX-compliant systems (*nix), we use the library, +// which uses the POSIX extended regex syntax. +// +// On other platforms (e.g. Windows), we only support a simple regex +// syntax implemented as part of Google Test. This limited +// implementation should be enough most of the time when writing +// death tests; though it lacks many features you can find in PCRE +// or POSIX extended regex syntax. For example, we don't support +// union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and +// repetition count ("x{5,7}"), among others. +// +// Below is the syntax that we do support. We chose it to be a +// subset of both PCRE and POSIX extended regex, so it's easy to +// learn wherever you come from. In the following: 'A' denotes a +// literal character, period (.), or a single \\ escape sequence; +// 'x' and 'y' denote regular expressions; 'm' and 'n' are for +// natural numbers. +// +// c matches any literal character c +// \\d matches any decimal digit +// \\D matches any character that's not a decimal digit +// \\f matches \f +// \\n matches \n +// \\r matches \r +// \\s matches any ASCII whitespace, including \n +// \\S matches any character that's not a whitespace +// \\t matches \t +// \\v matches \v +// \\w matches any letter, _, or decimal digit +// \\W matches any character that \\w doesn't match +// \\c matches any literal character c, which must be a punctuation +// . matches any single character except \n +// A? matches 0 or 1 occurrences of A +// A* matches 0 or many occurrences of A +// A+ matches 1 or many occurrences of A +// ^ matches the beginning of a string (not that of each line) +// $ matches the end of a string (not that of each line) +// xy matches x followed by y +// +// If you accidentally use PCRE or POSIX extended regex features +// not implemented by us, you will get a run-time failure. In that +// case, please try to rewrite your regular expression within the +// above syntax. +// +// This implementation is *not* meant to be as highly tuned or robust +// as a compiled regex library, but should perform well enough for a +// death test, which already incurs significant overhead by launching +// a child process. +// +// Known caveats: +// +// A "threadsafe" style death test obtains the path to the test +// program from argv[0] and re-executes it in the sub-process. For +// simplicity, the current implementation doesn't search the PATH +// when launching the sub-process. This means that the user must +// invoke the test program via a path that contains at least one +// path separator (e.g. path/to/foo_test and +// /absolute/path/to/bar_test are fine, but foo_test is not). This +// is rarely a problem as people usually don't put the test binary +// directory in PATH. +// +// TODO(wan@google.com): make thread-safe death tests search the PATH. + +// Asserts that a given statement causes the program to exit, with an +// integer exit status that satisfies predicate, and emitting error output +// that matches regex. +# define ASSERT_EXIT(statement, predicate, regex) \ + GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_) + +// Like ASSERT_EXIT, but continues on to successive tests in the +// test case, if any: +# define EXPECT_EXIT(statement, predicate, regex) \ + GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_) + +// Asserts that a given statement causes the program to exit, either by +// explicitly exiting with a nonzero exit code or being killed by a +// signal, and emitting error output that matches regex. +# define ASSERT_DEATH(statement, regex) \ + ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) + +// Like ASSERT_DEATH, but continues on to successive tests in the +// test case, if any: +# define EXPECT_DEATH(statement, regex) \ + EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) + +// Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*: + +// Tests that an exit code describes a normal exit with a given exit code. +class GTEST_API_ ExitedWithCode { + public: + explicit ExitedWithCode(int exit_code); + bool operator()(int exit_status) const; + private: + // No implementation - assignment is unsupported. + void operator=(const ExitedWithCode& other); + + const int exit_code_; +}; + +# if !GTEST_OS_WINDOWS +// Tests that an exit code describes an exit due to termination by a +// given signal. +class GTEST_API_ KilledBySignal { + public: + explicit KilledBySignal(int signum); + bool operator()(int exit_status) const; + private: + const int signum_; +}; +# endif // !GTEST_OS_WINDOWS + +// EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode. +// The death testing framework causes this to have interesting semantics, +// since the sideeffects of the call are only visible in opt mode, and not +// in debug mode. +// +// In practice, this can be used to test functions that utilize the +// LOG(DFATAL) macro using the following style: +// +// int DieInDebugOr12(int* sideeffect) { +// if (sideeffect) { +// *sideeffect = 12; +// } +// LOG(DFATAL) << "death"; +// return 12; +// } +// +// TEST(TestCase, TestDieOr12WorksInDgbAndOpt) { +// int sideeffect = 0; +// // Only asserts in dbg. +// EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death"); +// +// #ifdef NDEBUG +// // opt-mode has sideeffect visible. +// EXPECT_EQ(12, sideeffect); +// #else +// // dbg-mode no visible sideeffect. +// EXPECT_EQ(0, sideeffect); +// #endif +// } +// +// This will assert that DieInDebugReturn12InOpt() crashes in debug +// mode, usually due to a DCHECK or LOG(DFATAL), but returns the +// appropriate fallback value (12 in this case) in opt mode. If you +// need to test that a function has appropriate side-effects in opt +// mode, include assertions against the side-effects. A general +// pattern for this is: +// +// EXPECT_DEBUG_DEATH({ +// // Side-effects here will have an effect after this statement in +// // opt mode, but none in debug mode. +// EXPECT_EQ(12, DieInDebugOr12(&sideeffect)); +// }, "death"); +// +# ifdef NDEBUG + +# define EXPECT_DEBUG_DEATH(statement, regex) \ + GTEST_EXECUTE_STATEMENT_(statement, regex) + +# define ASSERT_DEBUG_DEATH(statement, regex) \ + GTEST_EXECUTE_STATEMENT_(statement, regex) + +# else + +# define EXPECT_DEBUG_DEATH(statement, regex) \ + EXPECT_DEATH(statement, regex) + +# define ASSERT_DEBUG_DEATH(statement, regex) \ + ASSERT_DEATH(statement, regex) + +# endif // NDEBUG for EXPECT_DEBUG_DEATH +#endif // GTEST_HAS_DEATH_TEST + +// EXPECT_DEATH_IF_SUPPORTED(statement, regex) and +// ASSERT_DEATH_IF_SUPPORTED(statement, regex) expand to real death tests if +// death tests are supported; otherwise they just issue a warning. This is +// useful when you are combining death test assertions with normal test +// assertions in one test. +#if GTEST_HAS_DEATH_TEST +# define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ + EXPECT_DEATH(statement, regex) +# define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ + ASSERT_DEATH(statement, regex) +#else +# define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ + GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, ) +# define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ + GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, return) +#endif + +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ +// This file was GENERATED by command: +// pump.py gtest-param-test.h.pump +// DO NOT EDIT BY HAND!!! + +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: vladl@google.com (Vlad Losev) +// +// Macros and functions for implementing parameterized tests +// in Google C++ Testing Framework (Google Test) +// +// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! +// +#ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ +#define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ + + +// Value-parameterized tests allow you to test your code with different +// parameters without writing multiple copies of the same test. +// +// Here is how you use value-parameterized tests: + +#if 0 + +// To write value-parameterized tests, first you should define a fixture +// class. It is usually derived from testing::TestWithParam (see below for +// another inheritance scheme that's sometimes useful in more complicated +// class hierarchies), where the type of your parameter values. +// TestWithParam is itself derived from testing::Test. T can be any +// copyable type. If it's a raw pointer, you are responsible for managing the +// lifespan of the pointed values. + +class FooTest : public ::testing::TestWithParam { + // You can implement all the usual class fixture members here. +}; + +// Then, use the TEST_P macro to define as many parameterized tests +// for this fixture as you want. The _P suffix is for "parameterized" +// or "pattern", whichever you prefer to think. + +TEST_P(FooTest, DoesBlah) { + // Inside a test, access the test parameter with the GetParam() method + // of the TestWithParam class: + EXPECT_TRUE(foo.Blah(GetParam())); + ... +} + +TEST_P(FooTest, HasBlahBlah) { + ... +} + +// Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test +// case with any set of parameters you want. Google Test defines a number +// of functions for generating test parameters. They return what we call +// (surprise!) parameter generators. Here is a summary of them, which +// are all in the testing namespace: +// +// +// Range(begin, end [, step]) - Yields values {begin, begin+step, +// begin+step+step, ...}. The values do not +// include end. step defaults to 1. +// Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}. +// ValuesIn(container) - Yields values from a C-style array, an STL +// ValuesIn(begin,end) container, or an iterator range [begin, end). +// Bool() - Yields sequence {false, true}. +// Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product +// for the math savvy) of the values generated +// by the N generators. +// +// For more details, see comments at the definitions of these functions below +// in this file. +// +// The following statement will instantiate tests from the FooTest test case +// each with parameter values "meeny", "miny", and "moe". + +INSTANTIATE_TEST_CASE_P(InstantiationName, + FooTest, + Values("meeny", "miny", "moe")); + +// To distinguish different instances of the pattern, (yes, you +// can instantiate it more then once) the first argument to the +// INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the +// actual test case name. Remember to pick unique prefixes for different +// instantiations. The tests from the instantiation above will have +// these names: +// +// * InstantiationName/FooTest.DoesBlah/0 for "meeny" +// * InstantiationName/FooTest.DoesBlah/1 for "miny" +// * InstantiationName/FooTest.DoesBlah/2 for "moe" +// * InstantiationName/FooTest.HasBlahBlah/0 for "meeny" +// * InstantiationName/FooTest.HasBlahBlah/1 for "miny" +// * InstantiationName/FooTest.HasBlahBlah/2 for "moe" +// +// You can use these names in --gtest_filter. +// +// This statement will instantiate all tests from FooTest again, each +// with parameter values "cat" and "dog": + +const char* pets[] = {"cat", "dog"}; +INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets)); + +// The tests from the instantiation above will have these names: +// +// * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat" +// * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog" +// * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat" +// * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog" +// +// Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests +// in the given test case, whether their definitions come before or +// AFTER the INSTANTIATE_TEST_CASE_P statement. +// +// Please also note that generator expressions (including parameters to the +// generators) are evaluated in InitGoogleTest(), after main() has started. +// This allows the user on one hand, to adjust generator parameters in order +// to dynamically determine a set of tests to run and on the other hand, +// give the user a chance to inspect the generated tests with Google Test +// reflection API before RUN_ALL_TESTS() is executed. +// +// You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc +// for more examples. +// +// In the future, we plan to publish the API for defining new parameter +// generators. But for now this interface remains part of the internal +// implementation and is subject to change. +// +// +// A parameterized test fixture must be derived from testing::Test and from +// testing::WithParamInterface, where T is the type of the parameter +// values. Inheriting from TestWithParam satisfies that requirement because +// TestWithParam inherits from both Test and WithParamInterface. In more +// complicated hierarchies, however, it is occasionally useful to inherit +// separately from Test and WithParamInterface. For example: + +class BaseTest : public ::testing::Test { + // You can inherit all the usual members for a non-parameterized test + // fixture here. +}; + +class DerivedTest : public BaseTest, public ::testing::WithParamInterface { + // The usual test fixture members go here too. +}; + +TEST_F(BaseTest, HasFoo) { + // This is an ordinary non-parameterized test. +} + +TEST_P(DerivedTest, DoesBlah) { + // GetParam works just the same here as if you inherit from TestWithParam. + EXPECT_TRUE(foo.Blah(GetParam())); +} + +#endif // 0 + + +#if !GTEST_OS_SYMBIAN +# include +#endif + +// scripts/fuse_gtest.py depends on gtest's own header being #included +// *unconditionally*. Therefore these #includes cannot be moved +// inside #if GTEST_HAS_PARAM_TEST. +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) + +// Type and function utilities for implementing parameterized tests. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ + +#include +#include +#include + +// scripts/fuse_gtest.py depends on gtest's own header being #included +// *unconditionally*. Therefore these #includes cannot be moved +// inside #if GTEST_HAS_PARAM_TEST. +// Copyright 2003 Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: Dan Egnor (egnor@google.com) +// +// A "smart" pointer type with reference tracking. Every pointer to a +// particular object is kept on a circular linked list. When the last pointer +// to an object is destroyed or reassigned, the object is deleted. +// +// Used properly, this deletes the object when the last reference goes away. +// There are several caveats: +// - Like all reference counting schemes, cycles lead to leaks. +// - Each smart pointer is actually two pointers (8 bytes instead of 4). +// - Every time a pointer is assigned, the entire list of pointers to that +// object is traversed. This class is therefore NOT SUITABLE when there +// will often be more than two or three pointers to a particular object. +// - References are only tracked as long as linked_ptr<> objects are copied. +// If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS +// will happen (double deletion). +// +// A good use of this class is storing object references in STL containers. +// You can safely put linked_ptr<> in a vector<>. +// Other uses may not be as good. +// +// Note: If you use an incomplete type with linked_ptr<>, the class +// *containing* linked_ptr<> must have a constructor and destructor (even +// if they do nothing!). +// +// Bill Gibbons suggested we use something like this. +// +// Thread Safety: +// Unlike other linked_ptr implementations, in this implementation +// a linked_ptr object is thread-safe in the sense that: +// - it's safe to copy linked_ptr objects concurrently, +// - it's safe to copy *from* a linked_ptr and read its underlying +// raw pointer (e.g. via get()) concurrently, and +// - it's safe to write to two linked_ptrs that point to the same +// shared object concurrently. +// TODO(wan@google.com): rename this to safe_linked_ptr to avoid +// confusion with normal linked_ptr. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ + +#include +#include + + +namespace testing { +namespace internal { + +// Protects copying of all linked_ptr objects. +GTEST_API_ GTEST_DECLARE_STATIC_MUTEX_(g_linked_ptr_mutex); + +// This is used internally by all instances of linked_ptr<>. It needs to be +// a non-template class because different types of linked_ptr<> can refer to +// the same object (linked_ptr(obj) vs linked_ptr(obj)). +// So, it needs to be possible for different types of linked_ptr to participate +// in the same circular linked list, so we need a single class type here. +// +// DO NOT USE THIS CLASS DIRECTLY YOURSELF. Use linked_ptr. +class linked_ptr_internal { + public: + // Create a new circle that includes only this instance. + void join_new() { + next_ = this; + } + + // Many linked_ptr operations may change p.link_ for some linked_ptr + // variable p in the same circle as this object. Therefore we need + // to prevent two such operations from occurring concurrently. + // + // Note that different types of linked_ptr objects can coexist in a + // circle (e.g. linked_ptr, linked_ptr, and + // linked_ptr). Therefore we must use a single mutex to + // protect all linked_ptr objects. This can create serious + // contention in production code, but is acceptable in a testing + // framework. + + // Join an existing circle. + void join(linked_ptr_internal const* ptr) + GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) { + MutexLock lock(&g_linked_ptr_mutex); + + linked_ptr_internal const* p = ptr; + while (p->next_ != ptr) p = p->next_; + p->next_ = this; + next_ = ptr; + } + + // Leave whatever circle we're part of. Returns true if we were the + // last member of the circle. Once this is done, you can join() another. + bool depart() + GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) { + MutexLock lock(&g_linked_ptr_mutex); + + if (next_ == this) return true; + linked_ptr_internal const* p = next_; + while (p->next_ != this) p = p->next_; + p->next_ = next_; + return false; + } + + private: + mutable linked_ptr_internal const* next_; +}; + +template +class linked_ptr { + public: + typedef T element_type; + + // Take over ownership of a raw pointer. This should happen as soon as + // possible after the object is created. + explicit linked_ptr(T* ptr = NULL) { capture(ptr); } + ~linked_ptr() { depart(); } + + // Copy an existing linked_ptr<>, adding ourselves to the list of references. + template linked_ptr(linked_ptr const& ptr) { copy(&ptr); } + linked_ptr(linked_ptr const& ptr) { // NOLINT + assert(&ptr != this); + copy(&ptr); + } + + // Assignment releases the old value and acquires the new. + template linked_ptr& operator=(linked_ptr const& ptr) { + depart(); + copy(&ptr); + return *this; + } + + linked_ptr& operator=(linked_ptr const& ptr) { + if (&ptr != this) { + depart(); + copy(&ptr); + } + return *this; + } + + // Smart pointer members. + void reset(T* ptr = NULL) { + depart(); + capture(ptr); + } + T* get() const { return value_; } + T* operator->() const { return value_; } + T& operator*() const { return *value_; } + + bool operator==(T* p) const { return value_ == p; } + bool operator!=(T* p) const { return value_ != p; } + template + bool operator==(linked_ptr const& ptr) const { + return value_ == ptr.get(); + } + template + bool operator!=(linked_ptr const& ptr) const { + return value_ != ptr.get(); + } + + private: + template + friend class linked_ptr; + + T* value_; + linked_ptr_internal link_; + + void depart() { + if (link_.depart()) delete value_; + } + + void capture(T* ptr) { + value_ = ptr; + link_.join_new(); + } + + template void copy(linked_ptr const* ptr) { + value_ = ptr->get(); + if (value_) + link_.join(&ptr->link_); + else + link_.join_new(); + } +}; + +template inline +bool operator==(T* ptr, const linked_ptr& x) { + return ptr == x.get(); +} + +template inline +bool operator!=(T* ptr, const linked_ptr& x) { + return ptr != x.get(); +} + +// A function to convert T* into linked_ptr +// Doing e.g. make_linked_ptr(new FooBarBaz(arg)) is a shorter notation +// for linked_ptr >(new FooBarBaz(arg)) +template +linked_ptr make_linked_ptr(T* ptr) { + return linked_ptr(ptr); +} + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Test - The Google C++ Testing Framework +// +// This file implements a universal value printer that can print a +// value of any type T: +// +// void ::testing::internal::UniversalPrinter::Print(value, ostream_ptr); +// +// A user can teach this function how to print a class type T by +// defining either operator<<() or PrintTo() in the namespace that +// defines T. More specifically, the FIRST defined function in the +// following list will be used (assuming T is defined in namespace +// foo): +// +// 1. foo::PrintTo(const T&, ostream*) +// 2. operator<<(ostream&, const T&) defined in either foo or the +// global namespace. +// +// If none of the above is defined, it will print the debug string of +// the value if it is a protocol buffer, or print the raw bytes in the +// value otherwise. +// +// To aid debugging: when T is a reference type, the address of the +// value is also printed; when T is a (const) char pointer, both the +// pointer value and the NUL-terminated string it points to are +// printed. +// +// We also provide some convenient wrappers: +// +// // Prints a value to a string. For a (const or not) char +// // pointer, the NUL-terminated string (but not the pointer) is +// // printed. +// std::string ::testing::PrintToString(const T& value); +// +// // Prints a value tersely: for a reference type, the referenced +// // value (but not the address) is printed; for a (const or not) char +// // pointer, the NUL-terminated string (but not the pointer) is +// // printed. +// void ::testing::internal::UniversalTersePrint(const T& value, ostream*); +// +// // Prints value using the type inferred by the compiler. The difference +// // from UniversalTersePrint() is that this function prints both the +// // pointer and the NUL-terminated string for a (const or not) char pointer. +// void ::testing::internal::UniversalPrint(const T& value, ostream*); +// +// // Prints the fields of a tuple tersely to a string vector, one +// // element for each field. Tuple support must be enabled in +// // gtest-port.h. +// std::vector UniversalTersePrintTupleFieldsToStrings( +// const Tuple& value); +// +// Known limitation: +// +// The print primitives print the elements of an STL-style container +// using the compiler-inferred type of *iter where iter is a +// const_iterator of the container. When const_iterator is an input +// iterator but not a forward iterator, this inferred type may not +// match value_type, and the print output may be incorrect. In +// practice, this is rarely a problem as for most containers +// const_iterator is a forward iterator. We'll fix this if there's an +// actual need for it. Note that this fix cannot rely on value_type +// being defined as many user-defined container types don't have +// value_type. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ +#define GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ + +#include // NOLINT +#include +#include +#include +#include + +namespace testing { + +// Definitions in the 'internal' and 'internal2' name spaces are +// subject to change without notice. DO NOT USE THEM IN USER CODE! +namespace internal2 { + +// Prints the given number of bytes in the given object to the given +// ostream. +GTEST_API_ void PrintBytesInObjectTo(const unsigned char* obj_bytes, + size_t count, + ::std::ostream* os); + +// For selecting which printer to use when a given type has neither << +// nor PrintTo(). +enum TypeKind { + kProtobuf, // a protobuf type + kConvertibleToInteger, // a type implicitly convertible to BiggestInt + // (e.g. a named or unnamed enum type) + kOtherType // anything else +}; + +// TypeWithoutFormatter::PrintValue(value, os) is called +// by the universal printer to print a value of type T when neither +// operator<< nor PrintTo() is defined for T, where kTypeKind is the +// "kind" of T as defined by enum TypeKind. +template +class TypeWithoutFormatter { + public: + // This default version is called when kTypeKind is kOtherType. + static void PrintValue(const T& value, ::std::ostream* os) { + PrintBytesInObjectTo(reinterpret_cast(&value), + sizeof(value), os); + } +}; + +// We print a protobuf using its ShortDebugString() when the string +// doesn't exceed this many characters; otherwise we print it using +// DebugString() for better readability. +const size_t kProtobufOneLinerMaxLength = 50; + +template +class TypeWithoutFormatter { + public: + static void PrintValue(const T& value, ::std::ostream* os) { + const ::testing::internal::string short_str = value.ShortDebugString(); + const ::testing::internal::string pretty_str = + short_str.length() <= kProtobufOneLinerMaxLength ? + short_str : ("\n" + value.DebugString()); + *os << ("<" + pretty_str + ">"); + } +}; + +template +class TypeWithoutFormatter { + public: + // Since T has no << operator or PrintTo() but can be implicitly + // converted to BiggestInt, we print it as a BiggestInt. + // + // Most likely T is an enum type (either named or unnamed), in which + // case printing it as an integer is the desired behavior. In case + // T is not an enum, printing it as an integer is the best we can do + // given that it has no user-defined printer. + static void PrintValue(const T& value, ::std::ostream* os) { + const internal::BiggestInt kBigInt = value; + *os << kBigInt; + } +}; + +// Prints the given value to the given ostream. If the value is a +// protocol message, its debug string is printed; if it's an enum or +// of a type implicitly convertible to BiggestInt, it's printed as an +// integer; otherwise the bytes in the value are printed. This is +// what UniversalPrinter::Print() does when it knows nothing about +// type T and T has neither << operator nor PrintTo(). +// +// A user can override this behavior for a class type Foo by defining +// a << operator in the namespace where Foo is defined. +// +// We put this operator in namespace 'internal2' instead of 'internal' +// to simplify the implementation, as much code in 'internal' needs to +// use << in STL, which would conflict with our own << were it defined +// in 'internal'. +// +// Note that this operator<< takes a generic std::basic_ostream type instead of the more restricted std::ostream. If +// we define it to take an std::ostream instead, we'll get an +// "ambiguous overloads" compiler error when trying to print a type +// Foo that supports streaming to std::basic_ostream, as the compiler cannot tell whether +// operator<<(std::ostream&, const T&) or +// operator<<(std::basic_stream, const Foo&) is more +// specific. +template +::std::basic_ostream& operator<<( + ::std::basic_ostream& os, const T& x) { + TypeWithoutFormatter::value ? kProtobuf : + internal::ImplicitlyConvertible::value ? + kConvertibleToInteger : kOtherType)>::PrintValue(x, &os); + return os; +} + +} // namespace internal2 +} // namespace testing + +// This namespace MUST NOT BE NESTED IN ::testing, or the name look-up +// magic needed for implementing UniversalPrinter won't work. +namespace testing_internal { + +// Used to print a value that is not an STL-style container when the +// user doesn't define PrintTo() for it. +template +void DefaultPrintNonContainerTo(const T& value, ::std::ostream* os) { + // With the following statement, during unqualified name lookup, + // testing::internal2::operator<< appears as if it was declared in + // the nearest enclosing namespace that contains both + // ::testing_internal and ::testing::internal2, i.e. the global + // namespace. For more details, refer to the C++ Standard section + // 7.3.4-1 [namespace.udir]. This allows us to fall back onto + // testing::internal2::operator<< in case T doesn't come with a << + // operator. + // + // We cannot write 'using ::testing::internal2::operator<<;', which + // gcc 3.3 fails to compile due to a compiler bug. + using namespace ::testing::internal2; // NOLINT + + // Assuming T is defined in namespace foo, in the next statement, + // the compiler will consider all of: + // + // 1. foo::operator<< (thanks to Koenig look-up), + // 2. ::operator<< (as the current namespace is enclosed in ::), + // 3. testing::internal2::operator<< (thanks to the using statement above). + // + // The operator<< whose type matches T best will be picked. + // + // We deliberately allow #2 to be a candidate, as sometimes it's + // impossible to define #1 (e.g. when foo is ::std, defining + // anything in it is undefined behavior unless you are a compiler + // vendor.). + *os << value; +} + +} // namespace testing_internal + +namespace testing { +namespace internal { + +// UniversalPrinter::Print(value, ostream_ptr) prints the given +// value to the given ostream. The caller must ensure that +// 'ostream_ptr' is not NULL, or the behavior is undefined. +// +// We define UniversalPrinter as a class template (as opposed to a +// function template), as we need to partially specialize it for +// reference types, which cannot be done with function templates. +template +class UniversalPrinter; + +template +void UniversalPrint(const T& value, ::std::ostream* os); + +// Used to print an STL-style container when the user doesn't define +// a PrintTo() for it. +template +void DefaultPrintTo(IsContainer /* dummy */, + false_type /* is not a pointer */, + const C& container, ::std::ostream* os) { + const size_t kMaxCount = 32; // The maximum number of elements to print. + *os << '{'; + size_t count = 0; + for (typename C::const_iterator it = container.begin(); + it != container.end(); ++it, ++count) { + if (count > 0) { + *os << ','; + if (count == kMaxCount) { // Enough has been printed. + *os << " ..."; + break; + } + } + *os << ' '; + // We cannot call PrintTo(*it, os) here as PrintTo() doesn't + // handle *it being a native array. + internal::UniversalPrint(*it, os); + } + + if (count > 0) { + *os << ' '; + } + *os << '}'; +} + +// Used to print a pointer that is neither a char pointer nor a member +// pointer, when the user doesn't define PrintTo() for it. (A member +// variable pointer or member function pointer doesn't really point to +// a location in the address space. Their representation is +// implementation-defined. Therefore they will be printed as raw +// bytes.) +template +void DefaultPrintTo(IsNotContainer /* dummy */, + true_type /* is a pointer */, + T* p, ::std::ostream* os) { + if (p == NULL) { + *os << "NULL"; + } else { + // C++ doesn't allow casting from a function pointer to any object + // pointer. + // + // IsTrue() silences warnings: "Condition is always true", + // "unreachable code". + if (IsTrue(ImplicitlyConvertible::value)) { + // T is not a function type. We just call << to print p, + // relying on ADL to pick up user-defined << for their pointer + // types, if any. + *os << p; + } else { + // T is a function type, so '*os << p' doesn't do what we want + // (it just prints p as bool). We want to print p as a const + // void*. However, we cannot cast it to const void* directly, + // even using reinterpret_cast, as earlier versions of gcc + // (e.g. 3.4.5) cannot compile the cast when p is a function + // pointer. Casting to UInt64 first solves the problem. + *os << reinterpret_cast( + reinterpret_cast(p)); + } + } +} + +// Used to print a non-container, non-pointer value when the user +// doesn't define PrintTo() for it. +template +void DefaultPrintTo(IsNotContainer /* dummy */, + false_type /* is not a pointer */, + const T& value, ::std::ostream* os) { + ::testing_internal::DefaultPrintNonContainerTo(value, os); +} + +// Prints the given value using the << operator if it has one; +// otherwise prints the bytes in it. This is what +// UniversalPrinter::Print() does when PrintTo() is not specialized +// or overloaded for type T. +// +// A user can override this behavior for a class type Foo by defining +// an overload of PrintTo() in the namespace where Foo is defined. We +// give the user this option as sometimes defining a << operator for +// Foo is not desirable (e.g. the coding style may prevent doing it, +// or there is already a << operator but it doesn't do what the user +// wants). +template +void PrintTo(const T& value, ::std::ostream* os) { + // DefaultPrintTo() is overloaded. The type of its first two + // arguments determine which version will be picked. If T is an + // STL-style container, the version for container will be called; if + // T is a pointer, the pointer version will be called; otherwise the + // generic version will be called. + // + // Note that we check for container types here, prior to we check + // for protocol message types in our operator<<. The rationale is: + // + // For protocol messages, we want to give people a chance to + // override Google Mock's format by defining a PrintTo() or + // operator<<. For STL containers, other formats can be + // incompatible with Google Mock's format for the container + // elements; therefore we check for container types here to ensure + // that our format is used. + // + // The second argument of DefaultPrintTo() is needed to bypass a bug + // in Symbian's C++ compiler that prevents it from picking the right + // overload between: + // + // PrintTo(const T& x, ...); + // PrintTo(T* x, ...); + DefaultPrintTo(IsContainerTest(0), is_pointer(), value, os); +} + +// The following list of PrintTo() overloads tells +// UniversalPrinter::Print() how to print standard types (built-in +// types, strings, plain arrays, and pointers). + +// Overloads for various char types. +GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os); +GTEST_API_ void PrintTo(signed char c, ::std::ostream* os); +inline void PrintTo(char c, ::std::ostream* os) { + // When printing a plain char, we always treat it as unsigned. This + // way, the output won't be affected by whether the compiler thinks + // char is signed or not. + PrintTo(static_cast(c), os); +} + +// Overloads for other simple built-in types. +inline void PrintTo(bool x, ::std::ostream* os) { + *os << (x ? "true" : "false"); +} + +// Overload for wchar_t type. +// Prints a wchar_t as a symbol if it is printable or as its internal +// code otherwise and also as its decimal code (except for L'\0'). +// The L'\0' char is printed as "L'\\0'". The decimal code is printed +// as signed integer when wchar_t is implemented by the compiler +// as a signed type and is printed as an unsigned integer when wchar_t +// is implemented as an unsigned type. +GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os); + +// Overloads for C strings. +GTEST_API_ void PrintTo(const char* s, ::std::ostream* os); +inline void PrintTo(char* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} + +// signed/unsigned char is often used for representing binary data, so +// we print pointers to it as void* to be safe. +inline void PrintTo(const signed char* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} +inline void PrintTo(signed char* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} +inline void PrintTo(const unsigned char* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} +inline void PrintTo(unsigned char* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} + +// MSVC can be configured to define wchar_t as a typedef of unsigned +// short. It defines _NATIVE_WCHAR_T_DEFINED when wchar_t is a native +// type. When wchar_t is a typedef, defining an overload for const +// wchar_t* would cause unsigned short* be printed as a wide string, +// possibly causing invalid memory accesses. +#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) +// Overloads for wide C strings +GTEST_API_ void PrintTo(const wchar_t* s, ::std::ostream* os); +inline void PrintTo(wchar_t* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} +#endif + +// Overload for C arrays. Multi-dimensional arrays are printed +// properly. + +// Prints the given number of elements in an array, without printing +// the curly braces. +template +void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) { + UniversalPrint(a[0], os); + for (size_t i = 1; i != count; i++) { + *os << ", "; + UniversalPrint(a[i], os); + } +} + +// Overloads for ::string and ::std::string. +#if GTEST_HAS_GLOBAL_STRING +GTEST_API_ void PrintStringTo(const ::string&s, ::std::ostream* os); +inline void PrintTo(const ::string& s, ::std::ostream* os) { + PrintStringTo(s, os); +} +#endif // GTEST_HAS_GLOBAL_STRING + +GTEST_API_ void PrintStringTo(const ::std::string&s, ::std::ostream* os); +inline void PrintTo(const ::std::string& s, ::std::ostream* os) { + PrintStringTo(s, os); +} + +// Overloads for ::wstring and ::std::wstring. +#if GTEST_HAS_GLOBAL_WSTRING +GTEST_API_ void PrintWideStringTo(const ::wstring&s, ::std::ostream* os); +inline void PrintTo(const ::wstring& s, ::std::ostream* os) { + PrintWideStringTo(s, os); +} +#endif // GTEST_HAS_GLOBAL_WSTRING + +#if GTEST_HAS_STD_WSTRING +GTEST_API_ void PrintWideStringTo(const ::std::wstring&s, ::std::ostream* os); +inline void PrintTo(const ::std::wstring& s, ::std::ostream* os) { + PrintWideStringTo(s, os); +} +#endif // GTEST_HAS_STD_WSTRING + +#if GTEST_HAS_TR1_TUPLE +// Overload for ::std::tr1::tuple. Needed for printing function arguments, +// which are packed as tuples. + +// Helper function for printing a tuple. T must be instantiated with +// a tuple type. +template +void PrintTupleTo(const T& t, ::std::ostream* os); + +// Overloaded PrintTo() for tuples of various arities. We support +// tuples of up-to 10 fields. The following implementation works +// regardless of whether tr1::tuple is implemented using the +// non-standard variadic template feature or not. + +inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo( + const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} +#endif // GTEST_HAS_TR1_TUPLE + +// Overload for std::pair. +template +void PrintTo(const ::std::pair& value, ::std::ostream* os) { + *os << '('; + // We cannot use UniversalPrint(value.first, os) here, as T1 may be + // a reference type. The same for printing value.second. + UniversalPrinter::Print(value.first, os); + *os << ", "; + UniversalPrinter::Print(value.second, os); + *os << ')'; +} + +// Implements printing a non-reference type T by letting the compiler +// pick the right overload of PrintTo() for T. +template +class UniversalPrinter { + public: + // MSVC warns about adding const to a function type, so we want to + // disable the warning. +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4180) // Temporarily disables warning 4180. +#endif // _MSC_VER + + // Note: we deliberately don't call this PrintTo(), as that name + // conflicts with ::testing::internal::PrintTo in the body of the + // function. + static void Print(const T& value, ::std::ostream* os) { + // By default, ::testing::internal::PrintTo() is used for printing + // the value. + // + // Thanks to Koenig look-up, if T is a class and has its own + // PrintTo() function defined in its namespace, that function will + // be visible here. Since it is more specific than the generic ones + // in ::testing::internal, it will be picked by the compiler in the + // following statement - exactly what we want. + PrintTo(value, os); + } + +#ifdef _MSC_VER +# pragma warning(pop) // Restores the warning state. +#endif // _MSC_VER +}; + +// UniversalPrintArray(begin, len, os) prints an array of 'len' +// elements, starting at address 'begin'. +template +void UniversalPrintArray(const T* begin, size_t len, ::std::ostream* os) { + if (len == 0) { + *os << "{}"; + } else { + *os << "{ "; + const size_t kThreshold = 18; + const size_t kChunkSize = 8; + // If the array has more than kThreshold elements, we'll have to + // omit some details by printing only the first and the last + // kChunkSize elements. + // TODO(wan@google.com): let the user control the threshold using a flag. + if (len <= kThreshold) { + PrintRawArrayTo(begin, len, os); + } else { + PrintRawArrayTo(begin, kChunkSize, os); + *os << ", ..., "; + PrintRawArrayTo(begin + len - kChunkSize, kChunkSize, os); + } + *os << " }"; + } +} +// This overload prints a (const) char array compactly. +GTEST_API_ void UniversalPrintArray( + const char* begin, size_t len, ::std::ostream* os); + +// This overload prints a (const) wchar_t array compactly. +GTEST_API_ void UniversalPrintArray( + const wchar_t* begin, size_t len, ::std::ostream* os); + +// Implements printing an array type T[N]. +template +class UniversalPrinter { + public: + // Prints the given array, omitting some elements when there are too + // many. + static void Print(const T (&a)[N], ::std::ostream* os) { + UniversalPrintArray(a, N, os); + } +}; + +// Implements printing a reference type T&. +template +class UniversalPrinter { + public: + // MSVC warns about adding const to a function type, so we want to + // disable the warning. +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4180) // Temporarily disables warning 4180. +#endif // _MSC_VER + + static void Print(const T& value, ::std::ostream* os) { + // Prints the address of the value. We use reinterpret_cast here + // as static_cast doesn't compile when T is a function type. + *os << "@" << reinterpret_cast(&value) << " "; + + // Then prints the value itself. + UniversalPrint(value, os); + } + +#ifdef _MSC_VER +# pragma warning(pop) // Restores the warning state. +#endif // _MSC_VER +}; + +// Prints a value tersely: for a reference type, the referenced value +// (but not the address) is printed; for a (const) char pointer, the +// NUL-terminated string (but not the pointer) is printed. + +template +class UniversalTersePrinter { + public: + static void Print(const T& value, ::std::ostream* os) { + UniversalPrint(value, os); + } +}; +template +class UniversalTersePrinter { + public: + static void Print(const T& value, ::std::ostream* os) { + UniversalPrint(value, os); + } +}; +template +class UniversalTersePrinter { + public: + static void Print(const T (&value)[N], ::std::ostream* os) { + UniversalPrinter::Print(value, os); + } +}; +template <> +class UniversalTersePrinter { + public: + static void Print(const char* str, ::std::ostream* os) { + if (str == NULL) { + *os << "NULL"; + } else { + UniversalPrint(string(str), os); + } + } +}; +template <> +class UniversalTersePrinter { + public: + static void Print(char* str, ::std::ostream* os) { + UniversalTersePrinter::Print(str, os); + } +}; + +#if GTEST_HAS_STD_WSTRING +template <> +class UniversalTersePrinter { + public: + static void Print(const wchar_t* str, ::std::ostream* os) { + if (str == NULL) { + *os << "NULL"; + } else { + UniversalPrint(::std::wstring(str), os); + } + } +}; +#endif + +template <> +class UniversalTersePrinter { + public: + static void Print(wchar_t* str, ::std::ostream* os) { + UniversalTersePrinter::Print(str, os); + } +}; + +template +void UniversalTersePrint(const T& value, ::std::ostream* os) { + UniversalTersePrinter::Print(value, os); +} + +// Prints a value using the type inferred by the compiler. The +// difference between this and UniversalTersePrint() is that for a +// (const) char pointer, this prints both the pointer and the +// NUL-terminated string. +template +void UniversalPrint(const T& value, ::std::ostream* os) { + // A workarond for the bug in VC++ 7.1 that prevents us from instantiating + // UniversalPrinter with T directly. + typedef T T1; + UniversalPrinter::Print(value, os); +} + +#if GTEST_HAS_TR1_TUPLE +typedef ::std::vector Strings; + +// This helper template allows PrintTo() for tuples and +// UniversalTersePrintTupleFieldsToStrings() to be defined by +// induction on the number of tuple fields. The idea is that +// TuplePrefixPrinter::PrintPrefixTo(t, os) prints the first N +// fields in tuple t, and can be defined in terms of +// TuplePrefixPrinter. + +// The inductive case. +template +struct TuplePrefixPrinter { + // Prints the first N fields of a tuple. + template + static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) { + TuplePrefixPrinter::PrintPrefixTo(t, os); + *os << ", "; + UniversalPrinter::type> + ::Print(::std::tr1::get(t), os); + } + + // Tersely prints the first N fields of a tuple to a string vector, + // one element for each field. + template + static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { + TuplePrefixPrinter::TersePrintPrefixToStrings(t, strings); + ::std::stringstream ss; + UniversalTersePrint(::std::tr1::get(t), &ss); + strings->push_back(ss.str()); + } +}; + +// Base cases. +template <> +struct TuplePrefixPrinter<0> { + template + static void PrintPrefixTo(const Tuple&, ::std::ostream*) {} + + template + static void TersePrintPrefixToStrings(const Tuple&, Strings*) {} +}; +// We have to specialize the entire TuplePrefixPrinter<> class +// template here, even though the definition of +// TersePrintPrefixToStrings() is the same as the generic version, as +// Embarcadero (formerly CodeGear, formerly Borland) C++ doesn't +// support specializing a method template of a class template. +template <> +struct TuplePrefixPrinter<1> { + template + static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) { + UniversalPrinter::type>:: + Print(::std::tr1::get<0>(t), os); + } + + template + static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { + ::std::stringstream ss; + UniversalTersePrint(::std::tr1::get<0>(t), &ss); + strings->push_back(ss.str()); + } +}; + +// Helper function for printing a tuple. T must be instantiated with +// a tuple type. +template +void PrintTupleTo(const T& t, ::std::ostream* os) { + *os << "("; + TuplePrefixPrinter< ::std::tr1::tuple_size::value>:: + PrintPrefixTo(t, os); + *os << ")"; +} + +// Prints the fields of a tuple tersely to a string vector, one +// element for each field. See the comment before +// UniversalTersePrint() for how we define "tersely". +template +Strings UniversalTersePrintTupleFieldsToStrings(const Tuple& value) { + Strings result; + TuplePrefixPrinter< ::std::tr1::tuple_size::value>:: + TersePrintPrefixToStrings(value, &result); + return result; +} +#endif // GTEST_HAS_TR1_TUPLE + +} // namespace internal + +template +::std::string PrintToString(const T& value) { + ::std::stringstream ss; + internal::UniversalTersePrinter::Print(value, &ss); + return ss.str(); +} + +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ + +#if GTEST_HAS_PARAM_TEST + +namespace testing { +namespace internal { + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Outputs a message explaining invalid registration of different +// fixture class for the same test case. This may happen when +// TEST_P macro is used to define two tests with the same name +// but in different namespaces. +GTEST_API_ void ReportInvalidTestCaseType(const char* test_case_name, + const char* file, int line); + +template class ParamGeneratorInterface; +template class ParamGenerator; + +// Interface for iterating over elements provided by an implementation +// of ParamGeneratorInterface. +template +class ParamIteratorInterface { + public: + virtual ~ParamIteratorInterface() {} + // A pointer to the base generator instance. + // Used only for the purposes of iterator comparison + // to make sure that two iterators belong to the same generator. + virtual const ParamGeneratorInterface* BaseGenerator() const = 0; + // Advances iterator to point to the next element + // provided by the generator. The caller is responsible + // for not calling Advance() on an iterator equal to + // BaseGenerator()->End(). + virtual void Advance() = 0; + // Clones the iterator object. Used for implementing copy semantics + // of ParamIterator. + virtual ParamIteratorInterface* Clone() const = 0; + // Dereferences the current iterator and provides (read-only) access + // to the pointed value. It is the caller's responsibility not to call + // Current() on an iterator equal to BaseGenerator()->End(). + // Used for implementing ParamGenerator::operator*(). + virtual const T* Current() const = 0; + // Determines whether the given iterator and other point to the same + // element in the sequence generated by the generator. + // Used for implementing ParamGenerator::operator==(). + virtual bool Equals(const ParamIteratorInterface& other) const = 0; +}; + +// Class iterating over elements provided by an implementation of +// ParamGeneratorInterface. It wraps ParamIteratorInterface +// and implements the const forward iterator concept. +template +class ParamIterator { + public: + typedef T value_type; + typedef const T& reference; + typedef ptrdiff_t difference_type; + + // ParamIterator assumes ownership of the impl_ pointer. + ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} + ParamIterator& operator=(const ParamIterator& other) { + if (this != &other) + impl_.reset(other.impl_->Clone()); + return *this; + } + + const T& operator*() const { return *impl_->Current(); } + const T* operator->() const { return impl_->Current(); } + // Prefix version of operator++. + ParamIterator& operator++() { + impl_->Advance(); + return *this; + } + // Postfix version of operator++. + ParamIterator operator++(int /*unused*/) { + ParamIteratorInterface* clone = impl_->Clone(); + impl_->Advance(); + return ParamIterator(clone); + } + bool operator==(const ParamIterator& other) const { + return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_); + } + bool operator!=(const ParamIterator& other) const { + return !(*this == other); + } + + private: + friend class ParamGenerator; + explicit ParamIterator(ParamIteratorInterface* impl) : impl_(impl) {} + scoped_ptr > impl_; +}; + +// ParamGeneratorInterface is the binary interface to access generators +// defined in other translation units. +template +class ParamGeneratorInterface { + public: + typedef T ParamType; + + virtual ~ParamGeneratorInterface() {} + + // Generator interface definition + virtual ParamIteratorInterface* Begin() const = 0; + virtual ParamIteratorInterface* End() const = 0; +}; + +// Wraps ParamGeneratorInterface and provides general generator syntax +// compatible with the STL Container concept. +// This class implements copy initialization semantics and the contained +// ParamGeneratorInterface instance is shared among all copies +// of the original object. This is possible because that instance is immutable. +template +class ParamGenerator { + public: + typedef ParamIterator iterator; + + explicit ParamGenerator(ParamGeneratorInterface* impl) : impl_(impl) {} + ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {} + + ParamGenerator& operator=(const ParamGenerator& other) { + impl_ = other.impl_; + return *this; + } + + iterator begin() const { return iterator(impl_->Begin()); } + iterator end() const { return iterator(impl_->End()); } + + private: + linked_ptr > impl_; +}; + +// Generates values from a range of two comparable values. Can be used to +// generate sequences of user-defined types that implement operator+() and +// operator<(). +// This class is used in the Range() function. +template +class RangeGenerator : public ParamGeneratorInterface { + public: + RangeGenerator(T begin, T end, IncrementT step) + : begin_(begin), end_(end), + step_(step), end_index_(CalculateEndIndex(begin, end, step)) {} + virtual ~RangeGenerator() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, begin_, 0, step_); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, end_, end_index_, step_); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, T value, int index, + IncrementT step) + : base_(base), value_(value), index_(index), step_(step) {} + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + virtual void Advance() { + value_ = value_ + step_; + index_++; + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const T* Current() const { return &value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const int other_index = + CheckedDowncastToActualType(&other)->index_; + return index_ == other_index; + } + + private: + Iterator(const Iterator& other) + : ParamIteratorInterface(), + base_(other.base_), value_(other.value_), index_(other.index_), + step_(other.step_) {} + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + T value_; + int index_; + const IncrementT step_; + }; // class RangeGenerator::Iterator + + static int CalculateEndIndex(const T& begin, + const T& end, + const IncrementT& step) { + int end_index = 0; + for (T i = begin; i < end; i = i + step) + end_index++; + return end_index; + } + + // No implementation - assignment is unsupported. + void operator=(const RangeGenerator& other); + + const T begin_; + const T end_; + const IncrementT step_; + // The index for the end() iterator. All the elements in the generated + // sequence are indexed (0-based) to aid iterator comparison. + const int end_index_; +}; // class RangeGenerator + + +// Generates values from a pair of STL-style iterators. Used in the +// ValuesIn() function. The elements are copied from the source range +// since the source can be located on the stack, and the generator +// is likely to persist beyond that stack frame. +template +class ValuesInIteratorRangeGenerator : public ParamGeneratorInterface { + public: + template + ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end) + : container_(begin, end) {} + virtual ~ValuesInIteratorRangeGenerator() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, container_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, container_.end()); + } + + private: + typedef typename ::std::vector ContainerType; + + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + typename ContainerType::const_iterator iterator) + : base_(base), iterator_(iterator) {} + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + virtual void Advance() { + ++iterator_; + value_.reset(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + // We need to use cached value referenced by iterator_ because *iterator_ + // can return a temporary object (and of type other then T), so just + // having "return &*iterator_;" doesn't work. + // value_ is updated here and not in Advance() because Advance() + // can advance iterator_ beyond the end of the range, and we cannot + // detect that fact. The client code, on the other hand, is + // responsible for not calling Current() on an out-of-range iterator. + virtual const T* Current() const { + if (value_.get() == NULL) + value_.reset(new T(*iterator_)); + return value_.get(); + } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + return iterator_ == + CheckedDowncastToActualType(&other)->iterator_; + } + + private: + Iterator(const Iterator& other) + // The explicit constructor call suppresses a false warning + // emitted by gcc when supplied with the -Wextra option. + : ParamIteratorInterface(), + base_(other.base_), + iterator_(other.iterator_) {} + + const ParamGeneratorInterface* const base_; + typename ContainerType::const_iterator iterator_; + // A cached value of *iterator_. We keep it here to allow access by + // pointer in the wrapping iterator's operator->(). + // value_ needs to be mutable to be accessed in Current(). + // Use of scoped_ptr helps manage cached value's lifetime, + // which is bound by the lifespan of the iterator itself. + mutable scoped_ptr value_; + }; // class ValuesInIteratorRangeGenerator::Iterator + + // No implementation - assignment is unsupported. + void operator=(const ValuesInIteratorRangeGenerator& other); + + const ContainerType container_; +}; // class ValuesInIteratorRangeGenerator + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Stores a parameter value and later creates tests parameterized with that +// value. +template +class ParameterizedTestFactory : public TestFactoryBase { + public: + typedef typename TestClass::ParamType ParamType; + explicit ParameterizedTestFactory(ParamType parameter) : + parameter_(parameter) {} + virtual Test* CreateTest() { + TestClass::SetParam(¶meter_); + return new TestClass(); + } + + private: + const ParamType parameter_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory); +}; + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// TestMetaFactoryBase is a base class for meta-factories that create +// test factories for passing into MakeAndRegisterTestInfo function. +template +class TestMetaFactoryBase { + public: + virtual ~TestMetaFactoryBase() {} + + virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0; +}; + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// TestMetaFactory creates test factories for passing into +// MakeAndRegisterTestInfo function. Since MakeAndRegisterTestInfo receives +// ownership of test factory pointer, same factory object cannot be passed +// into that method twice. But ParameterizedTestCaseInfo is going to call +// it for each Test/Parameter value combination. Thus it needs meta factory +// creator class. +template +class TestMetaFactory + : public TestMetaFactoryBase { + public: + typedef typename TestCase::ParamType ParamType; + + TestMetaFactory() {} + + virtual TestFactoryBase* CreateTestFactory(ParamType parameter) { + return new ParameterizedTestFactory(parameter); + } + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestMetaFactory); +}; + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// ParameterizedTestCaseInfoBase is a generic interface +// to ParameterizedTestCaseInfo classes. ParameterizedTestCaseInfoBase +// accumulates test information provided by TEST_P macro invocations +// and generators provided by INSTANTIATE_TEST_CASE_P macro invocations +// and uses that information to register all resulting test instances +// in RegisterTests method. The ParameterizeTestCaseRegistry class holds +// a collection of pointers to the ParameterizedTestCaseInfo objects +// and calls RegisterTests() on each of them when asked. +class ParameterizedTestCaseInfoBase { + public: + virtual ~ParameterizedTestCaseInfoBase() {} + + // Base part of test case name for display purposes. + virtual const string& GetTestCaseName() const = 0; + // Test case id to verify identity. + virtual TypeId GetTestCaseTypeId() const = 0; + // UnitTest class invokes this method to register tests in this + // test case right before running them in RUN_ALL_TESTS macro. + // This method should not be called more then once on any single + // instance of a ParameterizedTestCaseInfoBase derived class. + virtual void RegisterTests() = 0; + + protected: + ParameterizedTestCaseInfoBase() {} + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfoBase); +}; + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// ParameterizedTestCaseInfo accumulates tests obtained from TEST_P +// macro invocations for a particular test case and generators +// obtained from INSTANTIATE_TEST_CASE_P macro invocations for that +// test case. It registers tests with all values generated by all +// generators when asked. +template +class ParameterizedTestCaseInfo : public ParameterizedTestCaseInfoBase { + public: + // ParamType and GeneratorCreationFunc are private types but are required + // for declarations of public methods AddTestPattern() and + // AddTestCaseInstantiation(). + typedef typename TestCase::ParamType ParamType; + // A function that returns an instance of appropriate generator type. + typedef ParamGenerator(GeneratorCreationFunc)(); + + explicit ParameterizedTestCaseInfo(const char* name) + : test_case_name_(name) {} + + // Test case base name for display purposes. + virtual const string& GetTestCaseName() const { return test_case_name_; } + // Test case id to verify identity. + virtual TypeId GetTestCaseTypeId() const { return GetTypeId(); } + // TEST_P macro uses AddTestPattern() to record information + // about a single test in a LocalTestInfo structure. + // test_case_name is the base name of the test case (without invocation + // prefix). test_base_name is the name of an individual test without + // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is + // test case base name and DoBar is test base name. + void AddTestPattern(const char* test_case_name, + const char* test_base_name, + TestMetaFactoryBase* meta_factory) { + tests_.push_back(linked_ptr(new TestInfo(test_case_name, + test_base_name, + meta_factory))); + } + // INSTANTIATE_TEST_CASE_P macro uses AddGenerator() to record information + // about a generator. + int AddTestCaseInstantiation(const string& instantiation_name, + GeneratorCreationFunc* func, + const char* /* file */, + int /* line */) { + instantiations_.push_back(::std::make_pair(instantiation_name, func)); + return 0; // Return value used only to run this method in namespace scope. + } + // UnitTest class invokes this method to register tests in this test case + // test cases right before running tests in RUN_ALL_TESTS macro. + // This method should not be called more then once on any single + // instance of a ParameterizedTestCaseInfoBase derived class. + // UnitTest has a guard to prevent from calling this method more then once. + virtual void RegisterTests() { + for (typename TestInfoContainer::iterator test_it = tests_.begin(); + test_it != tests_.end(); ++test_it) { + linked_ptr test_info = *test_it; + for (typename InstantiationContainer::iterator gen_it = + instantiations_.begin(); gen_it != instantiations_.end(); + ++gen_it) { + const string& instantiation_name = gen_it->first; + ParamGenerator generator((*gen_it->second)()); + + string test_case_name; + if ( !instantiation_name.empty() ) + test_case_name = instantiation_name + "/"; + test_case_name += test_info->test_case_base_name; + + int i = 0; + for (typename ParamGenerator::iterator param_it = + generator.begin(); + param_it != generator.end(); ++param_it, ++i) { + Message test_name_stream; + test_name_stream << test_info->test_base_name << "/" << i; + MakeAndRegisterTestInfo( + test_case_name.c_str(), + test_name_stream.GetString().c_str(), + NULL, // No type parameter. + PrintToString(*param_it).c_str(), + GetTestCaseTypeId(), + TestCase::SetUpTestCase, + TestCase::TearDownTestCase, + test_info->test_meta_factory->CreateTestFactory(*param_it)); + } // for param_it + } // for gen_it + } // for test_it + } // RegisterTests + + private: + // LocalTestInfo structure keeps information about a single test registered + // with TEST_P macro. + struct TestInfo { + TestInfo(const char* a_test_case_base_name, + const char* a_test_base_name, + TestMetaFactoryBase* a_test_meta_factory) : + test_case_base_name(a_test_case_base_name), + test_base_name(a_test_base_name), + test_meta_factory(a_test_meta_factory) {} + + const string test_case_base_name; + const string test_base_name; + const scoped_ptr > test_meta_factory; + }; + typedef ::std::vector > TestInfoContainer; + // Keeps pairs of + // received from INSTANTIATE_TEST_CASE_P macros. + typedef ::std::vector > + InstantiationContainer; + + const string test_case_name_; + TestInfoContainer tests_; + InstantiationContainer instantiations_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfo); +}; // class ParameterizedTestCaseInfo + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// ParameterizedTestCaseRegistry contains a map of ParameterizedTestCaseInfoBase +// classes accessed by test case names. TEST_P and INSTANTIATE_TEST_CASE_P +// macros use it to locate their corresponding ParameterizedTestCaseInfo +// descriptors. +class ParameterizedTestCaseRegistry { + public: + ParameterizedTestCaseRegistry() {} + ~ParameterizedTestCaseRegistry() { + for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); + it != test_case_infos_.end(); ++it) { + delete *it; + } + } + + // Looks up or creates and returns a structure containing information about + // tests and instantiations of a particular test case. + template + ParameterizedTestCaseInfo* GetTestCasePatternHolder( + const char* test_case_name, + const char* file, + int line) { + ParameterizedTestCaseInfo* typed_test_info = NULL; + for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); + it != test_case_infos_.end(); ++it) { + if ((*it)->GetTestCaseName() == test_case_name) { + if ((*it)->GetTestCaseTypeId() != GetTypeId()) { + // Complain about incorrect usage of Google Test facilities + // and terminate the program since we cannot guaranty correct + // test case setup and tear-down in this case. + ReportInvalidTestCaseType(test_case_name, file, line); + posix::Abort(); + } else { + // At this point we are sure that the object we found is of the same + // type we are looking for, so we downcast it to that type + // without further checks. + typed_test_info = CheckedDowncastToActualType< + ParameterizedTestCaseInfo >(*it); + } + break; + } + } + if (typed_test_info == NULL) { + typed_test_info = new ParameterizedTestCaseInfo(test_case_name); + test_case_infos_.push_back(typed_test_info); + } + return typed_test_info; + } + void RegisterTests() { + for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); + it != test_case_infos_.end(); ++it) { + (*it)->RegisterTests(); + } + } + + private: + typedef ::std::vector TestCaseInfoContainer; + + TestCaseInfoContainer test_case_infos_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseRegistry); +}; + +} // namespace internal +} // namespace testing + +#endif // GTEST_HAS_PARAM_TEST + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ +// This file was GENERATED by command: +// pump.py gtest-param-util-generated.h.pump +// DO NOT EDIT BY HAND!!! + +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) + +// Type and function utilities for implementing parameterized tests. +// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! +// +// Currently Google Test supports at most 50 arguments in Values, +// and at most 10 arguments in Combine. Please contact +// googletestframework@googlegroups.com if you need more. +// Please note that the number of arguments to Combine is limited +// by the maximum arity of the implementation of tr1::tuple which is +// currently set at 10. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ + +// scripts/fuse_gtest.py depends on gtest's own header being #included +// *unconditionally*. Therefore these #includes cannot be moved +// inside #if GTEST_HAS_PARAM_TEST. + +#if GTEST_HAS_PARAM_TEST + +namespace testing { + +// Forward declarations of ValuesIn(), which is implemented in +// include/gtest/gtest-param-test.h. +template +internal::ParamGenerator< + typename ::testing::internal::IteratorTraits::value_type> +ValuesIn(ForwardIterator begin, ForwardIterator end); + +template +internal::ParamGenerator ValuesIn(const T (&array)[N]); + +template +internal::ParamGenerator ValuesIn( + const Container& container); + +namespace internal { + +// Used in the Values() function to provide polymorphic capabilities. +template +class ValueArray1 { + public: + explicit ValueArray1(T1 v1) : v1_(v1) {} + + template + operator ParamGenerator() const { return ValuesIn(&v1_, &v1_ + 1); } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray1& other); + + const T1 v1_; +}; + +template +class ValueArray2 { + public: + ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray2& other); + + const T1 v1_; + const T2 v2_; +}; + +template +class ValueArray3 { + public: + ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray3& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; +}; + +template +class ValueArray4 { + public: + ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray4& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; +}; + +template +class ValueArray5 { + public: + ValueArray5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray5& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; +}; + +template +class ValueArray6 { + public: + ValueArray6(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray6& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; +}; + +template +class ValueArray7 { + public: + ValueArray7(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray7& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; +}; + +template +class ValueArray8 { + public: + ValueArray8(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray8& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; +}; + +template +class ValueArray9 { + public: + ValueArray9(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, + T9 v9) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray9& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; +}; + +template +class ValueArray10 { + public: + ValueArray10(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray10& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; +}; + +template +class ValueArray11 { + public: + ValueArray11(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), + v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray11& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; +}; + +template +class ValueArray12 { + public: + ValueArray12(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), + v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray12& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; +}; + +template +class ValueArray13 { + public: + ValueArray13(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), + v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), + v12_(v12), v13_(v13) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray13& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; +}; + +template +class ValueArray14 { + public: + ValueArray14(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray14& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; +}; + +template +class ValueArray15 { + public: + ValueArray15(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray15& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; +}; + +template +class ValueArray16 { + public: + ValueArray16(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), + v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), + v16_(v16) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray16& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; +}; + +template +class ValueArray17 { + public: + ValueArray17(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, + T17 v17) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray17& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; +}; + +template +class ValueArray18 { + public: + ValueArray18(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray18& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; +}; + +template +class ValueArray19 { + public: + ValueArray19(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), + v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), + v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray19& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; +}; + +template +class ValueArray20 { + public: + ValueArray20(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), + v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), + v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), + v19_(v19), v20_(v20) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray20& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; +}; + +template +class ValueArray21 { + public: + ValueArray21(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), + v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), + v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), + v18_(v18), v19_(v19), v20_(v20), v21_(v21) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray21& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; +}; + +template +class ValueArray22 { + public: + ValueArray22(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray22& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; +}; + +template +class ValueArray23 { + public: + ValueArray23(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray23& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; +}; + +template +class ValueArray24 { + public: + ValueArray24(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), + v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), + v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), + v22_(v22), v23_(v23), v24_(v24) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray24& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; +}; + +template +class ValueArray25 { + public: + ValueArray25(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, + T25 v25) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray25& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; +}; + +template +class ValueArray26 { + public: + ValueArray26(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray26& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; +}; + +template +class ValueArray27 { + public: + ValueArray27(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), + v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), + v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), + v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), + v26_(v26), v27_(v27) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray27& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; +}; + +template +class ValueArray28 { + public: + ValueArray28(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), + v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), + v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), + v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), + v25_(v25), v26_(v26), v27_(v27), v28_(v28) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray28& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; +}; + +template +class ValueArray29 { + public: + ValueArray29(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), + v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), + v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), + v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), + v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray29& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; +}; + +template +class ValueArray30 { + public: + ValueArray30(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray30& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; +}; + +template +class ValueArray31 { + public: + ValueArray31(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30), v31_(v31) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray31& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; +}; + +template +class ValueArray32 { + public: + ValueArray32(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), + v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), + v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), + v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), + v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray32& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; +}; + +template +class ValueArray33 { + public: + ValueArray33(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, + T33 v33) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray33& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; +}; + +template +class ValueArray34 { + public: + ValueArray34(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33), v34_(v34) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray34& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; +}; + +template +class ValueArray35 { + public: + ValueArray35(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), + v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), + v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), + v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), + v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), + v32_(v32), v33_(v33), v34_(v34), v35_(v35) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray35& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; +}; + +template +class ValueArray36 { + public: + ValueArray36(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), + v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), + v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), + v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), + v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), + v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray36& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; +}; + +template +class ValueArray37 { + public: + ValueArray37(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), + v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), + v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), + v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), + v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), + v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), + v36_(v36), v37_(v37) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray37& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; +}; + +template +class ValueArray38 { + public: + ValueArray38(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), + v35_(v35), v36_(v36), v37_(v37), v38_(v38) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray38& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; +}; + +template +class ValueArray39 { + public: + ValueArray39(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), + v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray39& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; +}; + +template +class ValueArray40 { + public: + ValueArray40(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), + v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), + v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), + v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), + v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), + v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), + v40_(v40) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray40& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; +}; + +template +class ValueArray41 { + public: + ValueArray41(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, + T41 v41) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), + v39_(v39), v40_(v40), v41_(v41) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray41& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; +}; + +template +class ValueArray42 { + public: + ValueArray42(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), + v39_(v39), v40_(v40), v41_(v41), v42_(v42) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray42& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; +}; + +template +class ValueArray43 { + public: + ValueArray43(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), + v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), + v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), + v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), + v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), + v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), + v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray43& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; +}; + +template +class ValueArray44 { + public: + ValueArray44(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), + v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), + v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), + v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), + v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), + v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), + v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), + v43_(v43), v44_(v44) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray44& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; +}; + +template +class ValueArray45 { + public: + ValueArray45(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), + v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), + v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), + v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), + v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), + v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), + v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), + v42_(v42), v43_(v43), v44_(v44), v45_(v45) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray45& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; +}; + +template +class ValueArray46 { + public: + ValueArray46(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), + v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), + v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_), static_cast(v46_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray46& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; + const T46 v46_; +}; + +template +class ValueArray47 { + public: + ValueArray47(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), + v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), + v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), + v47_(v47) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_), static_cast(v46_), static_cast(v47_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray47& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; + const T46 v46_; + const T47 v47_; +}; + +template +class ValueArray48 { + public: + ValueArray48(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), + v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), + v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), + v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), + v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), + v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), + v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), + v46_(v46), v47_(v47), v48_(v48) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_), static_cast(v46_), static_cast(v47_), + static_cast(v48_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray48& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; + const T46 v46_; + const T47 v47_; + const T48 v48_; +}; + +template +class ValueArray49 { + public: + ValueArray49(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, + T49 v49) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), + v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), + v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_), static_cast(v46_), static_cast(v47_), + static_cast(v48_), static_cast(v49_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray49& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; + const T46 v46_; + const T47 v47_; + const T48 v48_; + const T49 v49_; +}; + +template +class ValueArray50 { + public: + ValueArray50(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49, + T50 v50) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), + v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), + v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49), v50_(v50) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_), static_cast(v46_), static_cast(v47_), + static_cast(v48_), static_cast(v49_), static_cast(v50_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray50& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; + const T46 v46_; + const T47 v47_; + const T48 v48_; + const T49 v49_; + const T50 v50_; +}; + +# if GTEST_HAS_COMBINE +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Generates values from the Cartesian product of values produced +// by the argument generators. +// +template +class CartesianProductGenerator2 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator2(const ParamGenerator& g1, + const ParamGenerator& g2) + : g1_(g1), g2_(g2) {} + virtual ~CartesianProductGenerator2() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current2_; + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + ParamType current_value_; + }; // class CartesianProductGenerator2::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator2& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; +}; // class CartesianProductGenerator2 + + +template +class CartesianProductGenerator3 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator3(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3) + : g1_(g1), g2_(g2), g3_(g3) {} + virtual ~CartesianProductGenerator3() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current3_; + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + ParamType current_value_; + }; // class CartesianProductGenerator3::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator3& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; +}; // class CartesianProductGenerator3 + + +template +class CartesianProductGenerator4 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator4(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} + virtual ~CartesianProductGenerator4() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current4_; + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + ParamType current_value_; + }; // class CartesianProductGenerator4::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator4& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; +}; // class CartesianProductGenerator4 + + +template +class CartesianProductGenerator5 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator5(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} + virtual ~CartesianProductGenerator5() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current5_; + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + ParamType current_value_; + }; // class CartesianProductGenerator5::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator5& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; +}; // class CartesianProductGenerator5 + + +template +class CartesianProductGenerator6 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator6(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5, + const ParamGenerator& g6) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} + virtual ~CartesianProductGenerator6() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5, + const ParamGenerator& g6, + const typename ParamGenerator::iterator& current6) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5), + begin6_(g6.begin()), end6_(g6.end()), current6_(current6) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current6_; + if (current6_ == end6_) { + current6_ = begin6_; + ++current5_; + } + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_ && + current6_ == typed_other->current6_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_), + begin6_(other.begin6_), + end6_(other.end6_), + current6_(other.current6_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_, *current6_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_ || + current6_ == end6_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + const typename ParamGenerator::iterator begin6_; + const typename ParamGenerator::iterator end6_; + typename ParamGenerator::iterator current6_; + ParamType current_value_; + }; // class CartesianProductGenerator6::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator6& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; + const ParamGenerator g6_; +}; // class CartesianProductGenerator6 + + +template +class CartesianProductGenerator7 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator7(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5, + const ParamGenerator& g6, const ParamGenerator& g7) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} + virtual ~CartesianProductGenerator7() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, + g7_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5, + const ParamGenerator& g6, + const typename ParamGenerator::iterator& current6, + const ParamGenerator& g7, + const typename ParamGenerator::iterator& current7) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5), + begin6_(g6.begin()), end6_(g6.end()), current6_(current6), + begin7_(g7.begin()), end7_(g7.end()), current7_(current7) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current7_; + if (current7_ == end7_) { + current7_ = begin7_; + ++current6_; + } + if (current6_ == end6_) { + current6_ = begin6_; + ++current5_; + } + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_ && + current6_ == typed_other->current6_ && + current7_ == typed_other->current7_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_), + begin6_(other.begin6_), + end6_(other.end6_), + current6_(other.current6_), + begin7_(other.begin7_), + end7_(other.end7_), + current7_(other.current7_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_, *current6_, *current7_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_ || + current6_ == end6_ || + current7_ == end7_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + const typename ParamGenerator::iterator begin6_; + const typename ParamGenerator::iterator end6_; + typename ParamGenerator::iterator current6_; + const typename ParamGenerator::iterator begin7_; + const typename ParamGenerator::iterator end7_; + typename ParamGenerator::iterator current7_; + ParamType current_value_; + }; // class CartesianProductGenerator7::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator7& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; + const ParamGenerator g6_; + const ParamGenerator g7_; +}; // class CartesianProductGenerator7 + + +template +class CartesianProductGenerator8 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator8(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5, + const ParamGenerator& g6, const ParamGenerator& g7, + const ParamGenerator& g8) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), + g8_(g8) {} + virtual ~CartesianProductGenerator8() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, + g7_.begin(), g8_, g8_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, + g8_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5, + const ParamGenerator& g6, + const typename ParamGenerator::iterator& current6, + const ParamGenerator& g7, + const typename ParamGenerator::iterator& current7, + const ParamGenerator& g8, + const typename ParamGenerator::iterator& current8) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5), + begin6_(g6.begin()), end6_(g6.end()), current6_(current6), + begin7_(g7.begin()), end7_(g7.end()), current7_(current7), + begin8_(g8.begin()), end8_(g8.end()), current8_(current8) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current8_; + if (current8_ == end8_) { + current8_ = begin8_; + ++current7_; + } + if (current7_ == end7_) { + current7_ = begin7_; + ++current6_; + } + if (current6_ == end6_) { + current6_ = begin6_; + ++current5_; + } + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_ && + current6_ == typed_other->current6_ && + current7_ == typed_other->current7_ && + current8_ == typed_other->current8_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_), + begin6_(other.begin6_), + end6_(other.end6_), + current6_(other.current6_), + begin7_(other.begin7_), + end7_(other.end7_), + current7_(other.current7_), + begin8_(other.begin8_), + end8_(other.end8_), + current8_(other.current8_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_, *current6_, *current7_, *current8_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_ || + current6_ == end6_ || + current7_ == end7_ || + current8_ == end8_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + const typename ParamGenerator::iterator begin6_; + const typename ParamGenerator::iterator end6_; + typename ParamGenerator::iterator current6_; + const typename ParamGenerator::iterator begin7_; + const typename ParamGenerator::iterator end7_; + typename ParamGenerator::iterator current7_; + const typename ParamGenerator::iterator begin8_; + const typename ParamGenerator::iterator end8_; + typename ParamGenerator::iterator current8_; + ParamType current_value_; + }; // class CartesianProductGenerator8::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator8& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; + const ParamGenerator g6_; + const ParamGenerator g7_; + const ParamGenerator g8_; +}; // class CartesianProductGenerator8 + + +template +class CartesianProductGenerator9 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator9(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5, + const ParamGenerator& g6, const ParamGenerator& g7, + const ParamGenerator& g8, const ParamGenerator& g9) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), + g9_(g9) {} + virtual ~CartesianProductGenerator9() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, + g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, + g8_.end(), g9_, g9_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5, + const ParamGenerator& g6, + const typename ParamGenerator::iterator& current6, + const ParamGenerator& g7, + const typename ParamGenerator::iterator& current7, + const ParamGenerator& g8, + const typename ParamGenerator::iterator& current8, + const ParamGenerator& g9, + const typename ParamGenerator::iterator& current9) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5), + begin6_(g6.begin()), end6_(g6.end()), current6_(current6), + begin7_(g7.begin()), end7_(g7.end()), current7_(current7), + begin8_(g8.begin()), end8_(g8.end()), current8_(current8), + begin9_(g9.begin()), end9_(g9.end()), current9_(current9) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current9_; + if (current9_ == end9_) { + current9_ = begin9_; + ++current8_; + } + if (current8_ == end8_) { + current8_ = begin8_; + ++current7_; + } + if (current7_ == end7_) { + current7_ = begin7_; + ++current6_; + } + if (current6_ == end6_) { + current6_ = begin6_; + ++current5_; + } + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_ && + current6_ == typed_other->current6_ && + current7_ == typed_other->current7_ && + current8_ == typed_other->current8_ && + current9_ == typed_other->current9_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_), + begin6_(other.begin6_), + end6_(other.end6_), + current6_(other.current6_), + begin7_(other.begin7_), + end7_(other.end7_), + current7_(other.current7_), + begin8_(other.begin8_), + end8_(other.end8_), + current8_(other.current8_), + begin9_(other.begin9_), + end9_(other.end9_), + current9_(other.current9_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_, *current6_, *current7_, *current8_, + *current9_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_ || + current6_ == end6_ || + current7_ == end7_ || + current8_ == end8_ || + current9_ == end9_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + const typename ParamGenerator::iterator begin6_; + const typename ParamGenerator::iterator end6_; + typename ParamGenerator::iterator current6_; + const typename ParamGenerator::iterator begin7_; + const typename ParamGenerator::iterator end7_; + typename ParamGenerator::iterator current7_; + const typename ParamGenerator::iterator begin8_; + const typename ParamGenerator::iterator end8_; + typename ParamGenerator::iterator current8_; + const typename ParamGenerator::iterator begin9_; + const typename ParamGenerator::iterator end9_; + typename ParamGenerator::iterator current9_; + ParamType current_value_; + }; // class CartesianProductGenerator9::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator9& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; + const ParamGenerator g6_; + const ParamGenerator g7_; + const ParamGenerator g8_; + const ParamGenerator g9_; +}; // class CartesianProductGenerator9 + + +template +class CartesianProductGenerator10 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator10(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5, + const ParamGenerator& g6, const ParamGenerator& g7, + const ParamGenerator& g8, const ParamGenerator& g9, + const ParamGenerator& g10) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), + g9_(g9), g10_(g10) {} + virtual ~CartesianProductGenerator10() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, + g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin(), g10_, g10_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, + g8_.end(), g9_, g9_.end(), g10_, g10_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5, + const ParamGenerator& g6, + const typename ParamGenerator::iterator& current6, + const ParamGenerator& g7, + const typename ParamGenerator::iterator& current7, + const ParamGenerator& g8, + const typename ParamGenerator::iterator& current8, + const ParamGenerator& g9, + const typename ParamGenerator::iterator& current9, + const ParamGenerator& g10, + const typename ParamGenerator::iterator& current10) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5), + begin6_(g6.begin()), end6_(g6.end()), current6_(current6), + begin7_(g7.begin()), end7_(g7.end()), current7_(current7), + begin8_(g8.begin()), end8_(g8.end()), current8_(current8), + begin9_(g9.begin()), end9_(g9.end()), current9_(current9), + begin10_(g10.begin()), end10_(g10.end()), current10_(current10) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current10_; + if (current10_ == end10_) { + current10_ = begin10_; + ++current9_; + } + if (current9_ == end9_) { + current9_ = begin9_; + ++current8_; + } + if (current8_ == end8_) { + current8_ = begin8_; + ++current7_; + } + if (current7_ == end7_) { + current7_ = begin7_; + ++current6_; + } + if (current6_ == end6_) { + current6_ = begin6_; + ++current5_; + } + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_ && + current6_ == typed_other->current6_ && + current7_ == typed_other->current7_ && + current8_ == typed_other->current8_ && + current9_ == typed_other->current9_ && + current10_ == typed_other->current10_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_), + begin6_(other.begin6_), + end6_(other.end6_), + current6_(other.current6_), + begin7_(other.begin7_), + end7_(other.end7_), + current7_(other.current7_), + begin8_(other.begin8_), + end8_(other.end8_), + current8_(other.current8_), + begin9_(other.begin9_), + end9_(other.end9_), + current9_(other.current9_), + begin10_(other.begin10_), + end10_(other.end10_), + current10_(other.current10_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_, *current6_, *current7_, *current8_, + *current9_, *current10_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_ || + current6_ == end6_ || + current7_ == end7_ || + current8_ == end8_ || + current9_ == end9_ || + current10_ == end10_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + const typename ParamGenerator::iterator begin6_; + const typename ParamGenerator::iterator end6_; + typename ParamGenerator::iterator current6_; + const typename ParamGenerator::iterator begin7_; + const typename ParamGenerator::iterator end7_; + typename ParamGenerator::iterator current7_; + const typename ParamGenerator::iterator begin8_; + const typename ParamGenerator::iterator end8_; + typename ParamGenerator::iterator current8_; + const typename ParamGenerator::iterator begin9_; + const typename ParamGenerator::iterator end9_; + typename ParamGenerator::iterator current9_; + const typename ParamGenerator::iterator begin10_; + const typename ParamGenerator::iterator end10_; + typename ParamGenerator::iterator current10_; + ParamType current_value_; + }; // class CartesianProductGenerator10::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator10& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; + const ParamGenerator g6_; + const ParamGenerator g7_; + const ParamGenerator g8_; + const ParamGenerator g9_; + const ParamGenerator g10_; +}; // class CartesianProductGenerator10 + + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Helper classes providing Combine() with polymorphic features. They allow +// casting CartesianProductGeneratorN to ParamGenerator if T is +// convertible to U. +// +template +class CartesianProductHolder2 { + public: +CartesianProductHolder2(const Generator1& g1, const Generator2& g2) + : g1_(g1), g2_(g2) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator2( + static_cast >(g1_), + static_cast >(g2_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder2& other); + + const Generator1 g1_; + const Generator2 g2_; +}; // class CartesianProductHolder2 + +template +class CartesianProductHolder3 { + public: +CartesianProductHolder3(const Generator1& g1, const Generator2& g2, + const Generator3& g3) + : g1_(g1), g2_(g2), g3_(g3) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator3( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder3& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; +}; // class CartesianProductHolder3 + +template +class CartesianProductHolder4 { + public: +CartesianProductHolder4(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator4( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder4& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; +}; // class CartesianProductHolder4 + +template +class CartesianProductHolder5 { + public: +CartesianProductHolder5(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator5( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder5& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; +}; // class CartesianProductHolder5 + +template +class CartesianProductHolder6 { + public: +CartesianProductHolder6(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5, + const Generator6& g6) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator6( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_), + static_cast >(g6_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder6& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; + const Generator6 g6_; +}; // class CartesianProductHolder6 + +template +class CartesianProductHolder7 { + public: +CartesianProductHolder7(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5, + const Generator6& g6, const Generator7& g7) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator7( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_), + static_cast >(g6_), + static_cast >(g7_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder7& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; + const Generator6 g6_; + const Generator7 g7_; +}; // class CartesianProductHolder7 + +template +class CartesianProductHolder8 { + public: +CartesianProductHolder8(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5, + const Generator6& g6, const Generator7& g7, const Generator8& g8) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), + g8_(g8) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator8( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_), + static_cast >(g6_), + static_cast >(g7_), + static_cast >(g8_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder8& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; + const Generator6 g6_; + const Generator7 g7_; + const Generator8 g8_; +}; // class CartesianProductHolder8 + +template +class CartesianProductHolder9 { + public: +CartesianProductHolder9(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5, + const Generator6& g6, const Generator7& g7, const Generator8& g8, + const Generator9& g9) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), + g9_(g9) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator9( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_), + static_cast >(g6_), + static_cast >(g7_), + static_cast >(g8_), + static_cast >(g9_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder9& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; + const Generator6 g6_; + const Generator7 g7_; + const Generator8 g8_; + const Generator9 g9_; +}; // class CartesianProductHolder9 + +template +class CartesianProductHolder10 { + public: +CartesianProductHolder10(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5, + const Generator6& g6, const Generator7& g7, const Generator8& g8, + const Generator9& g9, const Generator10& g10) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), + g9_(g9), g10_(g10) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator10( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_), + static_cast >(g6_), + static_cast >(g7_), + static_cast >(g8_), + static_cast >(g9_), + static_cast >(g10_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder10& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; + const Generator6 g6_; + const Generator7 g7_; + const Generator8 g8_; + const Generator9 g9_; + const Generator10 g10_; +}; // class CartesianProductHolder10 + +# endif // GTEST_HAS_COMBINE + +} // namespace internal +} // namespace testing + +#endif // GTEST_HAS_PARAM_TEST + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ + +#if GTEST_HAS_PARAM_TEST + +namespace testing { + +// Functions producing parameter generators. +// +// Google Test uses these generators to produce parameters for value- +// parameterized tests. When a parameterized test case is instantiated +// with a particular generator, Google Test creates and runs tests +// for each element in the sequence produced by the generator. +// +// In the following sample, tests from test case FooTest are instantiated +// each three times with parameter values 3, 5, and 8: +// +// class FooTest : public TestWithParam { ... }; +// +// TEST_P(FooTest, TestThis) { +// } +// TEST_P(FooTest, TestThat) { +// } +// INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8)); +// + +// Range() returns generators providing sequences of values in a range. +// +// Synopsis: +// Range(start, end) +// - returns a generator producing a sequence of values {start, start+1, +// start+2, ..., }. +// Range(start, end, step) +// - returns a generator producing a sequence of values {start, start+step, +// start+step+step, ..., }. +// Notes: +// * The generated sequences never include end. For example, Range(1, 5) +// returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) +// returns a generator producing {1, 3, 5, 7}. +// * start and end must have the same type. That type may be any integral or +// floating-point type or a user defined type satisfying these conditions: +// * It must be assignable (have operator=() defined). +// * It must have operator+() (operator+(int-compatible type) for +// two-operand version). +// * It must have operator<() defined. +// Elements in the resulting sequences will also have that type. +// * Condition start < end must be satisfied in order for resulting sequences +// to contain any elements. +// +template +internal::ParamGenerator Range(T start, T end, IncrementT step) { + return internal::ParamGenerator( + new internal::RangeGenerator(start, end, step)); +} + +template +internal::ParamGenerator Range(T start, T end) { + return Range(start, end, 1); +} + +// ValuesIn() function allows generation of tests with parameters coming from +// a container. +// +// Synopsis: +// ValuesIn(const T (&array)[N]) +// - returns a generator producing sequences with elements from +// a C-style array. +// ValuesIn(const Container& container) +// - returns a generator producing sequences with elements from +// an STL-style container. +// ValuesIn(Iterator begin, Iterator end) +// - returns a generator producing sequences with elements from +// a range [begin, end) defined by a pair of STL-style iterators. These +// iterators can also be plain C pointers. +// +// Please note that ValuesIn copies the values from the containers +// passed in and keeps them to generate tests in RUN_ALL_TESTS(). +// +// Examples: +// +// This instantiates tests from test case StringTest +// each with C-string values of "foo", "bar", and "baz": +// +// const char* strings[] = {"foo", "bar", "baz"}; +// INSTANTIATE_TEST_CASE_P(StringSequence, SrtingTest, ValuesIn(strings)); +// +// This instantiates tests from test case StlStringTest +// each with STL strings with values "a" and "b": +// +// ::std::vector< ::std::string> GetParameterStrings() { +// ::std::vector< ::std::string> v; +// v.push_back("a"); +// v.push_back("b"); +// return v; +// } +// +// INSTANTIATE_TEST_CASE_P(CharSequence, +// StlStringTest, +// ValuesIn(GetParameterStrings())); +// +// +// This will also instantiate tests from CharTest +// each with parameter values 'a' and 'b': +// +// ::std::list GetParameterChars() { +// ::std::list list; +// list.push_back('a'); +// list.push_back('b'); +// return list; +// } +// ::std::list l = GetParameterChars(); +// INSTANTIATE_TEST_CASE_P(CharSequence2, +// CharTest, +// ValuesIn(l.begin(), l.end())); +// +template +internal::ParamGenerator< + typename ::testing::internal::IteratorTraits::value_type> +ValuesIn(ForwardIterator begin, ForwardIterator end) { + typedef typename ::testing::internal::IteratorTraits + ::value_type ParamType; + return internal::ParamGenerator( + new internal::ValuesInIteratorRangeGenerator(begin, end)); +} + +template +internal::ParamGenerator ValuesIn(const T (&array)[N]) { + return ValuesIn(array, array + N); +} + +template +internal::ParamGenerator ValuesIn( + const Container& container) { + return ValuesIn(container.begin(), container.end()); +} + +// Values() allows generating tests from explicitly specified list of +// parameters. +// +// Synopsis: +// Values(T v1, T v2, ..., T vN) +// - returns a generator producing sequences with elements v1, v2, ..., vN. +// +// For example, this instantiates tests from test case BarTest each +// with values "one", "two", and "three": +// +// INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three")); +// +// This instantiates tests from test case BazTest each with values 1, 2, 3.5. +// The exact type of values will depend on the type of parameter in BazTest. +// +// INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5)); +// +// Currently, Values() supports from 1 to 50 parameters. +// +template +internal::ValueArray1 Values(T1 v1) { + return internal::ValueArray1(v1); +} + +template +internal::ValueArray2 Values(T1 v1, T2 v2) { + return internal::ValueArray2(v1, v2); +} + +template +internal::ValueArray3 Values(T1 v1, T2 v2, T3 v3) { + return internal::ValueArray3(v1, v2, v3); +} + +template +internal::ValueArray4 Values(T1 v1, T2 v2, T3 v3, T4 v4) { + return internal::ValueArray4(v1, v2, v3, v4); +} + +template +internal::ValueArray5 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5) { + return internal::ValueArray5(v1, v2, v3, v4, v5); +} + +template +internal::ValueArray6 Values(T1 v1, T2 v2, T3 v3, + T4 v4, T5 v5, T6 v6) { + return internal::ValueArray6(v1, v2, v3, v4, v5, v6); +} + +template +internal::ValueArray7 Values(T1 v1, T2 v2, T3 v3, + T4 v4, T5 v5, T6 v6, T7 v7) { + return internal::ValueArray7(v1, v2, v3, v4, v5, + v6, v7); +} + +template +internal::ValueArray8 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8) { + return internal::ValueArray8(v1, v2, v3, v4, + v5, v6, v7, v8); +} + +template +internal::ValueArray9 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9) { + return internal::ValueArray9(v1, v2, v3, + v4, v5, v6, v7, v8, v9); +} + +template +internal::ValueArray10 Values(T1 v1, + T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10) { + return internal::ValueArray10(v1, + v2, v3, v4, v5, v6, v7, v8, v9, v10); +} + +template +internal::ValueArray11 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11) { + return internal::ValueArray11(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11); +} + +template +internal::ValueArray12 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12) { + return internal::ValueArray12(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12); +} + +template +internal::ValueArray13 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13) { + return internal::ValueArray13(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13); +} + +template +internal::ValueArray14 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) { + return internal::ValueArray14(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, + v14); +} + +template +internal::ValueArray15 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, + T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) { + return internal::ValueArray15(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, + v13, v14, v15); +} + +template +internal::ValueArray16 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16) { + return internal::ValueArray16(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, + v12, v13, v14, v15, v16); +} + +template +internal::ValueArray17 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17) { + return internal::ValueArray17(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, + v11, v12, v13, v14, v15, v16, v17); +} + +template +internal::ValueArray18 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, + T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18) { + return internal::ValueArray18(v1, v2, v3, v4, v5, v6, v7, v8, v9, + v10, v11, v12, v13, v14, v15, v16, v17, v18); +} + +template +internal::ValueArray19 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, + T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, + T15 v15, T16 v16, T17 v17, T18 v18, T19 v19) { + return internal::ValueArray19(v1, v2, v3, v4, v5, v6, v7, v8, + v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19); +} + +template +internal::ValueArray20 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, + T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20) { + return internal::ValueArray20(v1, v2, v3, v4, v5, v6, v7, + v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20); +} + +template +internal::ValueArray21 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, + T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21) { + return internal::ValueArray21(v1, v2, v3, v4, v5, v6, + v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21); +} + +template +internal::ValueArray22 Values(T1 v1, T2 v2, T3 v3, + T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22) { + return internal::ValueArray22(v1, v2, v3, v4, + v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, + v20, v21, v22); +} + +template +internal::ValueArray23 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22, T23 v23) { + return internal::ValueArray23(v1, v2, v3, + v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, + v20, v21, v22, v23); +} + +template +internal::ValueArray24 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22, T23 v23, T24 v24) { + return internal::ValueArray24(v1, v2, + v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, + v19, v20, v21, v22, v23, v24); +} + +template +internal::ValueArray25 Values(T1 v1, + T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, + T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, + T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25) { + return internal::ValueArray25(v1, + v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, + v18, v19, v20, v21, v22, v23, v24, v25); +} + +template +internal::ValueArray26 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26) { + return internal::ValueArray26(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, + v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26); +} + +template +internal::ValueArray27 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27) { + return internal::ValueArray27(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, + v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27); +} + +template +internal::ValueArray28 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28) { + return internal::ValueArray28(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, + v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, + v28); +} + +template +internal::ValueArray29 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29) { + return internal::ValueArray29(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, + v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, + v27, v28, v29); +} + +template +internal::ValueArray30 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, + T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, + T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, + T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) { + return internal::ValueArray30(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, + v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, + v26, v27, v28, v29, v30); +} + +template +internal::ValueArray31 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) { + return internal::ValueArray31(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, + v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, + v25, v26, v27, v28, v29, v30, v31); +} + +template +internal::ValueArray32 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, + T32 v32) { + return internal::ValueArray32(v1, v2, v3, v4, v5, v6, v7, v8, v9, + v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, + v24, v25, v26, v27, v28, v29, v30, v31, v32); +} + +template +internal::ValueArray33 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, + T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, + T32 v32, T33 v33) { + return internal::ValueArray33(v1, v2, v3, v4, v5, v6, v7, v8, + v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, + v24, v25, v26, v27, v28, v29, v30, v31, v32, v33); +} + +template +internal::ValueArray34 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, + T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, + T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, + T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, + T31 v31, T32 v32, T33 v33, T34 v34) { + return internal::ValueArray34(v1, v2, v3, v4, v5, v6, v7, + v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, + v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34); +} + +template +internal::ValueArray35 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, + T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, + T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, + T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35) { + return internal::ValueArray35(v1, v2, v3, v4, v5, v6, + v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, + v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35); +} + +template +internal::ValueArray36 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, + T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, + T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, + T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36) { + return internal::ValueArray36(v1, v2, v3, v4, + v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, + v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, + v34, v35, v36); +} + +template +internal::ValueArray37 Values(T1 v1, T2 v2, T3 v3, + T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, + T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, + T37 v37) { + return internal::ValueArray37(v1, v2, v3, + v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, + v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, + v34, v35, v36, v37); +} + +template +internal::ValueArray38 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, + T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, + T37 v37, T38 v38) { + return internal::ValueArray38(v1, v2, + v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, + v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, + v33, v34, v35, v36, v37, v38); +} + +template +internal::ValueArray39 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, + T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, + T37 v37, T38 v38, T39 v39) { + return internal::ValueArray39(v1, + v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, + v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, + v32, v33, v34, v35, v36, v37, v38, v39); +} + +template +internal::ValueArray40 Values(T1 v1, + T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, + T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, + T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, + T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, + T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) { + return internal::ValueArray40(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, + v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, + v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40); +} + +template +internal::ValueArray41 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41) { + return internal::ValueArray41(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, + v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, + v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41); +} + +template +internal::ValueArray42 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42) { + return internal::ValueArray42(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, + v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, + v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, + v42); +} + +template +internal::ValueArray43 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43) { + return internal::ValueArray43(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, + v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, + v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, + v41, v42, v43); +} + +template +internal::ValueArray44 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44) { + return internal::ValueArray44(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, + v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, + v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, + v40, v41, v42, v43, v44); +} + +template +internal::ValueArray45 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, + T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, + T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, + T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, + T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, + T41 v41, T42 v42, T43 v43, T44 v44, T45 v45) { + return internal::ValueArray45(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, + v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, + v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, + v39, v40, v41, v42, v43, v44, v45); +} + +template +internal::ValueArray46 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, + T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, + T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) { + return internal::ValueArray46(v1, v2, v3, v4, v5, v6, v7, v8, v9, + v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, + v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, + v38, v39, v40, v41, v42, v43, v44, v45, v46); +} + +template +internal::ValueArray47 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, + T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, + T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) { + return internal::ValueArray47(v1, v2, v3, v4, v5, v6, v7, v8, + v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, + v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, + v38, v39, v40, v41, v42, v43, v44, v45, v46, v47); +} + +template +internal::ValueArray48 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, + T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, + T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, + T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, + T48 v48) { + return internal::ValueArray48(v1, v2, v3, v4, v5, v6, v7, + v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, + v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, + v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48); +} + +template +internal::ValueArray49 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, + T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, + T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, + T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, + T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, + T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, + T47 v47, T48 v48, T49 v49) { + return internal::ValueArray49(v1, v2, v3, v4, v5, v6, + v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, + v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, + v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49); +} + +template +internal::ValueArray50 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, + T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, + T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, + T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, + T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, + T46 v46, T47 v47, T48 v48, T49 v49, T50 v50) { + return internal::ValueArray50(v1, v2, v3, v4, + v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, + v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, + v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, + v48, v49, v50); +} + +// Bool() allows generating tests with parameters in a set of (false, true). +// +// Synopsis: +// Bool() +// - returns a generator producing sequences with elements {false, true}. +// +// It is useful when testing code that depends on Boolean flags. Combinations +// of multiple flags can be tested when several Bool()'s are combined using +// Combine() function. +// +// In the following example all tests in the test case FlagDependentTest +// will be instantiated twice with parameters false and true. +// +// class FlagDependentTest : public testing::TestWithParam { +// virtual void SetUp() { +// external_flag = GetParam(); +// } +// } +// INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool()); +// +inline internal::ParamGenerator Bool() { + return Values(false, true); +} + +# if GTEST_HAS_COMBINE +// Combine() allows the user to combine two or more sequences to produce +// values of a Cartesian product of those sequences' elements. +// +// Synopsis: +// Combine(gen1, gen2, ..., genN) +// - returns a generator producing sequences with elements coming from +// the Cartesian product of elements from the sequences generated by +// gen1, gen2, ..., genN. The sequence elements will have a type of +// tuple where T1, T2, ..., TN are the types +// of elements from sequences produces by gen1, gen2, ..., genN. +// +// Combine can have up to 10 arguments. This number is currently limited +// by the maximum number of elements in the tuple implementation used by Google +// Test. +// +// Example: +// +// This will instantiate tests in test case AnimalTest each one with +// the parameter values tuple("cat", BLACK), tuple("cat", WHITE), +// tuple("dog", BLACK), and tuple("dog", WHITE): +// +// enum Color { BLACK, GRAY, WHITE }; +// class AnimalTest +// : public testing::TestWithParam > {...}; +// +// TEST_P(AnimalTest, AnimalLooksNice) {...} +// +// INSTANTIATE_TEST_CASE_P(AnimalVariations, AnimalTest, +// Combine(Values("cat", "dog"), +// Values(BLACK, WHITE))); +// +// This will instantiate tests in FlagDependentTest with all variations of two +// Boolean flags: +// +// class FlagDependentTest +// : public testing::TestWithParam > { +// virtual void SetUp() { +// // Assigns external_flag_1 and external_flag_2 values from the tuple. +// tie(external_flag_1, external_flag_2) = GetParam(); +// } +// }; +// +// TEST_P(FlagDependentTest, TestFeature1) { +// // Test your code using external_flag_1 and external_flag_2 here. +// } +// INSTANTIATE_TEST_CASE_P(TwoBoolSequence, FlagDependentTest, +// Combine(Bool(), Bool())); +// +template +internal::CartesianProductHolder2 Combine( + const Generator1& g1, const Generator2& g2) { + return internal::CartesianProductHolder2( + g1, g2); +} + +template +internal::CartesianProductHolder3 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3) { + return internal::CartesianProductHolder3( + g1, g2, g3); +} + +template +internal::CartesianProductHolder4 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4) { + return internal::CartesianProductHolder4( + g1, g2, g3, g4); +} + +template +internal::CartesianProductHolder5 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5) { + return internal::CartesianProductHolder5( + g1, g2, g3, g4, g5); +} + +template +internal::CartesianProductHolder6 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5, const Generator6& g6) { + return internal::CartesianProductHolder6( + g1, g2, g3, g4, g5, g6); +} + +template +internal::CartesianProductHolder7 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5, const Generator6& g6, + const Generator7& g7) { + return internal::CartesianProductHolder7( + g1, g2, g3, g4, g5, g6, g7); +} + +template +internal::CartesianProductHolder8 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5, const Generator6& g6, + const Generator7& g7, const Generator8& g8) { + return internal::CartesianProductHolder8( + g1, g2, g3, g4, g5, g6, g7, g8); +} + +template +internal::CartesianProductHolder9 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5, const Generator6& g6, + const Generator7& g7, const Generator8& g8, const Generator9& g9) { + return internal::CartesianProductHolder9( + g1, g2, g3, g4, g5, g6, g7, g8, g9); +} + +template +internal::CartesianProductHolder10 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5, const Generator6& g6, + const Generator7& g7, const Generator8& g8, const Generator9& g9, + const Generator10& g10) { + return internal::CartesianProductHolder10( + g1, g2, g3, g4, g5, g6, g7, g8, g9, g10); +} +# endif // GTEST_HAS_COMBINE + + + +# define TEST_P(test_case_name, test_name) \ + class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ + : public test_case_name { \ + public: \ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \ + virtual void TestBody(); \ + private: \ + static int AddToRegistry() { \ + ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ + GetTestCasePatternHolder(\ + #test_case_name, __FILE__, __LINE__)->AddTestPattern(\ + #test_case_name, \ + #test_name, \ + new ::testing::internal::TestMetaFactory< \ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>()); \ + return 0; \ + } \ + static int gtest_registering_dummy_; \ + GTEST_DISALLOW_COPY_AND_ASSIGN_(\ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \ + }; \ + int GTEST_TEST_CLASS_NAME_(test_case_name, \ + test_name)::gtest_registering_dummy_ = \ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \ + void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() + +# define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator) \ + ::testing::internal::ParamGenerator \ + gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \ + int gtest_##prefix##test_case_name##_dummy_ = \ + ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ + GetTestCasePatternHolder(\ + #test_case_name, __FILE__, __LINE__)->AddTestCaseInstantiation(\ + #prefix, \ + >est_##prefix##test_case_name##_EvalGenerator_, \ + __FILE__, __LINE__) + +} // namespace testing + +#endif // GTEST_HAS_PARAM_TEST + +#endif // GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Google C++ Testing Framework definitions useful in production code. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_PROD_H_ +#define GTEST_INCLUDE_GTEST_GTEST_PROD_H_ + +// When you need to test the private or protected members of a class, +// use the FRIEND_TEST macro to declare your tests as friends of the +// class. For example: +// +// class MyClass { +// private: +// void MyMethod(); +// FRIEND_TEST(MyClassTest, MyMethod); +// }; +// +// class MyClassTest : public testing::Test { +// // ... +// }; +// +// TEST_F(MyClassTest, MyMethod) { +// // Can call MyClass::MyMethod() here. +// } + +#define FRIEND_TEST(test_case_name, test_name)\ +friend class test_case_name##_##test_name##_Test + +#endif // GTEST_INCLUDE_GTEST_GTEST_PROD_H_ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: mheule@google.com (Markus Heule) +// + +#ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ +#define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ + +#include +#include + +namespace testing { + +// A copyable object representing the result of a test part (i.e. an +// assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()). +// +// Don't inherit from TestPartResult as its destructor is not virtual. +class GTEST_API_ TestPartResult { + public: + // The possible outcomes of a test part (i.e. an assertion or an + // explicit SUCCEED(), FAIL(), or ADD_FAILURE()). + enum Type { + kSuccess, // Succeeded. + kNonFatalFailure, // Failed but the test can continue. + kFatalFailure // Failed and the test should be terminated. + }; + + // C'tor. TestPartResult does NOT have a default constructor. + // Always use this constructor (with parameters) to create a + // TestPartResult object. + TestPartResult(Type a_type, + const char* a_file_name, + int a_line_number, + const char* a_message) + : type_(a_type), + file_name_(a_file_name == NULL ? "" : a_file_name), + line_number_(a_line_number), + summary_(ExtractSummary(a_message)), + message_(a_message) { + } + + // Gets the outcome of the test part. + Type type() const { return type_; } + + // Gets the name of the source file where the test part took place, or + // NULL if it's unknown. + const char* file_name() const { + return file_name_.empty() ? NULL : file_name_.c_str(); + } + + // Gets the line in the source file where the test part took place, + // or -1 if it's unknown. + int line_number() const { return line_number_; } + + // Gets the summary of the failure message. + const char* summary() const { return summary_.c_str(); } + + // Gets the message associated with the test part. + const char* message() const { return message_.c_str(); } + + // Returns true iff the test part passed. + bool passed() const { return type_ == kSuccess; } + + // Returns true iff the test part failed. + bool failed() const { return type_ != kSuccess; } + + // Returns true iff the test part non-fatally failed. + bool nonfatally_failed() const { return type_ == kNonFatalFailure; } + + // Returns true iff the test part fatally failed. + bool fatally_failed() const { return type_ == kFatalFailure; } + + private: + Type type_; + + // Gets the summary of the failure message by omitting the stack + // trace in it. + static std::string ExtractSummary(const char* message); + + // The name of the source file where the test part took place, or + // "" if the source file is unknown. + std::string file_name_; + // The line in the source file where the test part took place, or -1 + // if the line number is unknown. + int line_number_; + std::string summary_; // The test failure summary. + std::string message_; // The test failure message. +}; + +// Prints a TestPartResult object. +std::ostream& operator<<(std::ostream& os, const TestPartResult& result); + +// An array of TestPartResult objects. +// +// Don't inherit from TestPartResultArray as its destructor is not +// virtual. +class GTEST_API_ TestPartResultArray { + public: + TestPartResultArray() {} + + // Appends the given TestPartResult to the array. + void Append(const TestPartResult& result); + + // Returns the TestPartResult at the given index (0-based). + const TestPartResult& GetTestPartResult(int index) const; + + // Returns the number of TestPartResult objects in the array. + int size() const; + + private: + std::vector array_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray); +}; + +// This interface knows how to report a test part result. +class TestPartResultReporterInterface { + public: + virtual ~TestPartResultReporterInterface() {} + + virtual void ReportTestPartResult(const TestPartResult& result) = 0; +}; + +namespace internal { + +// This helper class is used by {ASSERT|EXPECT}_NO_FATAL_FAILURE to check if a +// statement generates new fatal failures. To do so it registers itself as the +// current test part result reporter. Besides checking if fatal failures were +// reported, it only delegates the reporting to the former result reporter. +// The original result reporter is restored in the destructor. +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +class GTEST_API_ HasNewFatalFailureHelper + : public TestPartResultReporterInterface { + public: + HasNewFatalFailureHelper(); + virtual ~HasNewFatalFailureHelper(); + virtual void ReportTestPartResult(const TestPartResult& result); + bool has_new_fatal_failure() const { return has_new_fatal_failure_; } + private: + bool has_new_fatal_failure_; + TestPartResultReporterInterface* original_reporter_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(HasNewFatalFailureHelper); +}; + +} // namespace internal + +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#ifndef GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ +#define GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ + +// This header implements typed tests and type-parameterized tests. + +// Typed (aka type-driven) tests repeat the same test for types in a +// list. You must know which types you want to test with when writing +// typed tests. Here's how you do it: + +#if 0 + +// First, define a fixture class template. It should be parameterized +// by a type. Remember to derive it from testing::Test. +template +class FooTest : public testing::Test { + public: + ... + typedef std::list List; + static T shared_; + T value_; +}; + +// Next, associate a list of types with the test case, which will be +// repeated for each type in the list. The typedef is necessary for +// the macro to parse correctly. +typedef testing::Types MyTypes; +TYPED_TEST_CASE(FooTest, MyTypes); + +// If the type list contains only one type, you can write that type +// directly without Types<...>: +// TYPED_TEST_CASE(FooTest, int); + +// Then, use TYPED_TEST() instead of TEST_F() to define as many typed +// tests for this test case as you want. +TYPED_TEST(FooTest, DoesBlah) { + // Inside a test, refer to TypeParam to get the type parameter. + // Since we are inside a derived class template, C++ requires use to + // visit the members of FooTest via 'this'. + TypeParam n = this->value_; + + // To visit static members of the fixture, add the TestFixture:: + // prefix. + n += TestFixture::shared_; + + // To refer to typedefs in the fixture, add the "typename + // TestFixture::" prefix. + typename TestFixture::List values; + values.push_back(n); + ... +} + +TYPED_TEST(FooTest, HasPropertyA) { ... } + +#endif // 0 + +// Type-parameterized tests are abstract test patterns parameterized +// by a type. Compared with typed tests, type-parameterized tests +// allow you to define the test pattern without knowing what the type +// parameters are. The defined pattern can be instantiated with +// different types any number of times, in any number of translation +// units. +// +// If you are designing an interface or concept, you can define a +// suite of type-parameterized tests to verify properties that any +// valid implementation of the interface/concept should have. Then, +// each implementation can easily instantiate the test suite to verify +// that it conforms to the requirements, without having to write +// similar tests repeatedly. Here's an example: + +#if 0 + +// First, define a fixture class template. It should be parameterized +// by a type. Remember to derive it from testing::Test. +template +class FooTest : public testing::Test { + ... +}; + +// Next, declare that you will define a type-parameterized test case +// (the _P suffix is for "parameterized" or "pattern", whichever you +// prefer): +TYPED_TEST_CASE_P(FooTest); + +// Then, use TYPED_TEST_P() to define as many type-parameterized tests +// for this type-parameterized test case as you want. +TYPED_TEST_P(FooTest, DoesBlah) { + // Inside a test, refer to TypeParam to get the type parameter. + TypeParam n = 0; + ... +} + +TYPED_TEST_P(FooTest, HasPropertyA) { ... } + +// Now the tricky part: you need to register all test patterns before +// you can instantiate them. The first argument of the macro is the +// test case name; the rest are the names of the tests in this test +// case. +REGISTER_TYPED_TEST_CASE_P(FooTest, + DoesBlah, HasPropertyA); + +// Finally, you are free to instantiate the pattern with the types you +// want. If you put the above code in a header file, you can #include +// it in multiple C++ source files and instantiate it multiple times. +// +// To distinguish different instances of the pattern, the first +// argument to the INSTANTIATE_* macro is a prefix that will be added +// to the actual test case name. Remember to pick unique prefixes for +// different instances. +typedef testing::Types MyTypes; +INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes); + +// If the type list contains only one type, you can write that type +// directly without Types<...>: +// INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, int); + +#endif // 0 + + +// Implements typed tests. + +#if GTEST_HAS_TYPED_TEST + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Expands to the name of the typedef for the type parameters of the +// given test case. +# define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_ + +// The 'Types' template argument below must have spaces around it +// since some compilers may choke on '>>' when passing a template +// instance (e.g. Types) +# define TYPED_TEST_CASE(CaseName, Types) \ + typedef ::testing::internal::TypeList< Types >::type \ + GTEST_TYPE_PARAMS_(CaseName) + +# define TYPED_TEST(CaseName, TestName) \ + template \ + class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \ + : public CaseName { \ + private: \ + typedef CaseName TestFixture; \ + typedef gtest_TypeParam_ TypeParam; \ + virtual void TestBody(); \ + }; \ + bool gtest_##CaseName##_##TestName##_registered_ GTEST_ATTRIBUTE_UNUSED_ = \ + ::testing::internal::TypeParameterizedTest< \ + CaseName, \ + ::testing::internal::TemplateSel< \ + GTEST_TEST_CLASS_NAME_(CaseName, TestName)>, \ + GTEST_TYPE_PARAMS_(CaseName)>::Register(\ + "", #CaseName, #TestName, 0); \ + template \ + void GTEST_TEST_CLASS_NAME_(CaseName, TestName)::TestBody() + +#endif // GTEST_HAS_TYPED_TEST + +// Implements type-parameterized tests. + +#if GTEST_HAS_TYPED_TEST_P + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Expands to the namespace name that the type-parameterized tests for +// the given type-parameterized test case are defined in. The exact +// name of the namespace is subject to change without notice. +# define GTEST_CASE_NAMESPACE_(TestCaseName) \ + gtest_case_##TestCaseName##_ + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Expands to the name of the variable used to remember the names of +// the defined tests in the given test case. +# define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \ + gtest_typed_test_case_p_state_##TestCaseName##_ + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY. +// +// Expands to the name of the variable used to remember the names of +// the registered tests in the given test case. +# define GTEST_REGISTERED_TEST_NAMES_(TestCaseName) \ + gtest_registered_test_names_##TestCaseName##_ + +// The variables defined in the type-parameterized test macros are +// static as typically these macros are used in a .h file that can be +// #included in multiple translation units linked together. +# define TYPED_TEST_CASE_P(CaseName) \ + static ::testing::internal::TypedTestCasePState \ + GTEST_TYPED_TEST_CASE_P_STATE_(CaseName) + +# define TYPED_TEST_P(CaseName, TestName) \ + namespace GTEST_CASE_NAMESPACE_(CaseName) { \ + template \ + class TestName : public CaseName { \ + private: \ + typedef CaseName TestFixture; \ + typedef gtest_TypeParam_ TypeParam; \ + virtual void TestBody(); \ + }; \ + static bool gtest_##TestName##_defined_ GTEST_ATTRIBUTE_UNUSED_ = \ + GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).AddTestName(\ + __FILE__, __LINE__, #CaseName, #TestName); \ + } \ + template \ + void GTEST_CASE_NAMESPACE_(CaseName)::TestName::TestBody() + +# define REGISTER_TYPED_TEST_CASE_P(CaseName, ...) \ + namespace GTEST_CASE_NAMESPACE_(CaseName) { \ + typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \ + } \ + static const char* const GTEST_REGISTERED_TEST_NAMES_(CaseName) = \ + GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).VerifyRegisteredTestNames(\ + __FILE__, __LINE__, #__VA_ARGS__) + +// The 'Types' template argument below must have spaces around it +// since some compilers may choke on '>>' when passing a template +// instance (e.g. Types) +# define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ + bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \ + ::testing::internal::TypeParameterizedTestCase::type>::Register(\ + #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName)) + +#endif // GTEST_HAS_TYPED_TEST_P + +#endif // GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ + +// Depending on the platform, different string classes are available. +// On Linux, in addition to ::std::string, Google also makes use of +// class ::string, which has the same interface as ::std::string, but +// has a different implementation. +// +// The user can define GTEST_HAS_GLOBAL_STRING to 1 to indicate that +// ::string is available AND is a distinct type to ::std::string, or +// define it to 0 to indicate otherwise. +// +// If the user's ::std::string and ::string are the same class due to +// aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0. +// +// If the user doesn't define GTEST_HAS_GLOBAL_STRING, it is defined +// heuristically. + +namespace testing { + +// Declares the flags. + +// This flag temporary enables the disabled tests. +GTEST_DECLARE_bool_(also_run_disabled_tests); + +// This flag brings the debugger on an assertion failure. +GTEST_DECLARE_bool_(break_on_failure); + +// This flag controls whether Google Test catches all test-thrown exceptions +// and logs them as failures. +GTEST_DECLARE_bool_(catch_exceptions); + +// This flag enables using colors in terminal output. Available values are +// "yes" to enable colors, "no" (disable colors), or "auto" (the default) +// to let Google Test decide. +GTEST_DECLARE_string_(color); + +// This flag sets up the filter to select by name using a glob pattern +// the tests to run. If the filter is not given all tests are executed. +GTEST_DECLARE_string_(filter); + +// This flag causes the Google Test to list tests. None of the tests listed +// are actually run if the flag is provided. +GTEST_DECLARE_bool_(list_tests); + +// This flag controls whether Google Test emits a detailed XML report to a file +// in addition to its normal textual output. +GTEST_DECLARE_string_(output); + +// This flags control whether Google Test prints the elapsed time for each +// test. +GTEST_DECLARE_bool_(print_time); + +// This flag specifies the random number seed. +GTEST_DECLARE_int32_(random_seed); + +// This flag sets how many times the tests are repeated. The default value +// is 1. If the value is -1 the tests are repeating forever. +GTEST_DECLARE_int32_(repeat); + +// This flag controls whether Google Test includes Google Test internal +// stack frames in failure stack traces. +GTEST_DECLARE_bool_(show_internal_stack_frames); + +// When this flag is specified, tests' order is randomized on every iteration. +GTEST_DECLARE_bool_(shuffle); + +// This flag specifies the maximum number of stack frames to be +// printed in a failure message. +GTEST_DECLARE_int32_(stack_trace_depth); + +// When this flag is specified, a failed assertion will throw an +// exception if exceptions are enabled, or exit the program with a +// non-zero code otherwise. +GTEST_DECLARE_bool_(throw_on_failure); + +// When this flag is set with a "host:port" string, on supported +// platforms test results are streamed to the specified port on +// the specified host machine. +GTEST_DECLARE_string_(stream_result_to); + +// The upper limit for valid stack trace depths. +const int kMaxStackTraceDepth = 100; + +namespace internal { + +class AssertHelper; +class DefaultGlobalTestPartResultReporter; +class ExecDeathTest; +class NoExecDeathTest; +class FinalSuccessChecker; +class GTestFlagSaver; +class StreamingListenerTest; +class TestResultAccessor; +class TestEventListenersAccessor; +class TestEventRepeater; +class UnitTestRecordPropertyTestHelper; +class WindowsDeathTest; +class UnitTestImpl* GetUnitTestImpl(); +void ReportFailureInUnknownLocation(TestPartResult::Type result_type, + const std::string& message); + +} // namespace internal + +// The friend relationship of some of these classes is cyclic. +// If we don't forward declare them the compiler might confuse the classes +// in friendship clauses with same named classes on the scope. +class Test; +class TestCase; +class TestInfo; +class UnitTest; + +// A class for indicating whether an assertion was successful. When +// the assertion wasn't successful, the AssertionResult object +// remembers a non-empty message that describes how it failed. +// +// To create an instance of this class, use one of the factory functions +// (AssertionSuccess() and AssertionFailure()). +// +// This class is useful for two purposes: +// 1. Defining predicate functions to be used with Boolean test assertions +// EXPECT_TRUE/EXPECT_FALSE and their ASSERT_ counterparts +// 2. Defining predicate-format functions to be +// used with predicate assertions (ASSERT_PRED_FORMAT*, etc). +// +// For example, if you define IsEven predicate: +// +// testing::AssertionResult IsEven(int n) { +// if ((n % 2) == 0) +// return testing::AssertionSuccess(); +// else +// return testing::AssertionFailure() << n << " is odd"; +// } +// +// Then the failed expectation EXPECT_TRUE(IsEven(Fib(5))) +// will print the message +// +// Value of: IsEven(Fib(5)) +// Actual: false (5 is odd) +// Expected: true +// +// instead of a more opaque +// +// Value of: IsEven(Fib(5)) +// Actual: false +// Expected: true +// +// in case IsEven is a simple Boolean predicate. +// +// If you expect your predicate to be reused and want to support informative +// messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up +// about half as often as positive ones in our tests), supply messages for +// both success and failure cases: +// +// testing::AssertionResult IsEven(int n) { +// if ((n % 2) == 0) +// return testing::AssertionSuccess() << n << " is even"; +// else +// return testing::AssertionFailure() << n << " is odd"; +// } +// +// Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print +// +// Value of: IsEven(Fib(6)) +// Actual: true (8 is even) +// Expected: false +// +// NB: Predicates that support negative Boolean assertions have reduced +// performance in positive ones so be careful not to use them in tests +// that have lots (tens of thousands) of positive Boolean assertions. +// +// To use this class with EXPECT_PRED_FORMAT assertions such as: +// +// // Verifies that Foo() returns an even number. +// EXPECT_PRED_FORMAT1(IsEven, Foo()); +// +// you need to define: +// +// testing::AssertionResult IsEven(const char* expr, int n) { +// if ((n % 2) == 0) +// return testing::AssertionSuccess(); +// else +// return testing::AssertionFailure() +// << "Expected: " << expr << " is even\n Actual: it's " << n; +// } +// +// If Foo() returns 5, you will see the following message: +// +// Expected: Foo() is even +// Actual: it's 5 +// +class GTEST_API_ AssertionResult { + public: + // Copy constructor. + // Used in EXPECT_TRUE/FALSE(assertion_result). + AssertionResult(const AssertionResult& other); + // Used in the EXPECT_TRUE/FALSE(bool_expression). + explicit AssertionResult(bool success) : success_(success) {} + + // Returns true iff the assertion succeeded. + operator bool() const { return success_; } // NOLINT + + // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. + AssertionResult operator!() const; + + // Returns the text streamed into this AssertionResult. Test assertions + // use it when they fail (i.e., the predicate's outcome doesn't match the + // assertion's expectation). When nothing has been streamed into the + // object, returns an empty string. + const char* message() const { + return message_.get() != NULL ? message_->c_str() : ""; + } + // TODO(vladl@google.com): Remove this after making sure no clients use it. + // Deprecated; please use message() instead. + const char* failure_message() const { return message(); } + + // Streams a custom failure message into this object. + template AssertionResult& operator<<(const T& value) { + AppendMessage(Message() << value); + return *this; + } + + // Allows streaming basic output manipulators such as endl or flush into + // this object. + AssertionResult& operator<<( + ::std::ostream& (*basic_manipulator)(::std::ostream& stream)) { + AppendMessage(Message() << basic_manipulator); + return *this; + } + + private: + // Appends the contents of message to message_. + void AppendMessage(const Message& a_message) { + if (message_.get() == NULL) + message_.reset(new ::std::string); + message_->append(a_message.GetString().c_str()); + } + + // Stores result of the assertion predicate. + bool success_; + // Stores the message describing the condition in case the expectation + // construct is not satisfied with the predicate's outcome. + // Referenced via a pointer to avoid taking too much stack frame space + // with test assertions. + internal::scoped_ptr< ::std::string> message_; + + GTEST_DISALLOW_ASSIGN_(AssertionResult); +}; + +// Makes a successful assertion result. +GTEST_API_ AssertionResult AssertionSuccess(); + +// Makes a failed assertion result. +GTEST_API_ AssertionResult AssertionFailure(); + +// Makes a failed assertion result with the given failure message. +// Deprecated; use AssertionFailure() << msg. +GTEST_API_ AssertionResult AssertionFailure(const Message& msg); + +// The abstract class that all tests inherit from. +// +// In Google Test, a unit test program contains one or many TestCases, and +// each TestCase contains one or many Tests. +// +// When you define a test using the TEST macro, you don't need to +// explicitly derive from Test - the TEST macro automatically does +// this for you. +// +// The only time you derive from Test is when defining a test fixture +// to be used a TEST_F. For example: +// +// class FooTest : public testing::Test { +// protected: +// virtual void SetUp() { ... } +// virtual void TearDown() { ... } +// ... +// }; +// +// TEST_F(FooTest, Bar) { ... } +// TEST_F(FooTest, Baz) { ... } +// +// Test is not copyable. +class GTEST_API_ Test { + public: + friend class TestInfo; + + // Defines types for pointers to functions that set up and tear down + // a test case. + typedef internal::SetUpTestCaseFunc SetUpTestCaseFunc; + typedef internal::TearDownTestCaseFunc TearDownTestCaseFunc; + + // The d'tor is virtual as we intend to inherit from Test. + virtual ~Test(); + + // Sets up the stuff shared by all tests in this test case. + // + // Google Test will call Foo::SetUpTestCase() before running the first + // test in test case Foo. Hence a sub-class can define its own + // SetUpTestCase() method to shadow the one defined in the super + // class. + static void SetUpTestCase() {} + + // Tears down the stuff shared by all tests in this test case. + // + // Google Test will call Foo::TearDownTestCase() after running the last + // test in test case Foo. Hence a sub-class can define its own + // TearDownTestCase() method to shadow the one defined in the super + // class. + static void TearDownTestCase() {} + + // Returns true iff the current test has a fatal failure. + static bool HasFatalFailure(); + + // Returns true iff the current test has a non-fatal failure. + static bool HasNonfatalFailure(); + + // Returns true iff the current test has a (either fatal or + // non-fatal) failure. + static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); } + + // Logs a property for the current test, test case, or for the entire + // invocation of the test program when used outside of the context of a + // test case. Only the last value for a given key is remembered. These + // are public static so they can be called from utility functions that are + // not members of the test fixture. Calls to RecordProperty made during + // lifespan of the test (from the moment its constructor starts to the + // moment its destructor finishes) will be output in XML as attributes of + // the element. Properties recorded from fixture's + // SetUpTestCase or TearDownTestCase are logged as attributes of the + // corresponding element. Calls to RecordProperty made in the + // global context (before or after invocation of RUN_ALL_TESTS and from + // SetUp/TearDown method of Environment objects registered with Google + // Test) will be output as attributes of the element. + static void RecordProperty(const std::string& key, const std::string& value); + static void RecordProperty(const std::string& key, int value); + + protected: + // Creates a Test object. + Test(); + + // Sets up the test fixture. + virtual void SetUp(); + + // Tears down the test fixture. + virtual void TearDown(); + + private: + // Returns true iff the current test has the same fixture class as + // the first test in the current test case. + static bool HasSameFixtureClass(); + + // Runs the test after the test fixture has been set up. + // + // A sub-class must implement this to define the test logic. + // + // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM. + // Instead, use the TEST or TEST_F macro. + virtual void TestBody() = 0; + + // Sets up, executes, and tears down the test. + void Run(); + + // Deletes self. We deliberately pick an unusual name for this + // internal method to avoid clashing with names used in user TESTs. + void DeleteSelf_() { delete this; } + + // Uses a GTestFlagSaver to save and restore all Google Test flags. + const internal::GTestFlagSaver* const gtest_flag_saver_; + + // Often a user mis-spells SetUp() as Setup() and spends a long time + // wondering why it is never called by Google Test. The declaration of + // the following method is solely for catching such an error at + // compile time: + // + // - The return type is deliberately chosen to be not void, so it + // will be a conflict if a user declares void Setup() in his test + // fixture. + // + // - This method is private, so it will be another compiler error + // if a user calls it from his test fixture. + // + // DO NOT OVERRIDE THIS FUNCTION. + // + // If you see an error about overriding the following function or + // about it being private, you have mis-spelled SetUp() as Setup(). + struct Setup_should_be_spelled_SetUp {}; + virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; } + + // We disallow copying Tests. + GTEST_DISALLOW_COPY_AND_ASSIGN_(Test); +}; + +typedef internal::TimeInMillis TimeInMillis; + +// A copyable object representing a user specified test property which can be +// output as a key/value string pair. +// +// Don't inherit from TestProperty as its destructor is not virtual. +class TestProperty { + public: + // C'tor. TestProperty does NOT have a default constructor. + // Always use this constructor (with parameters) to create a + // TestProperty object. + TestProperty(const std::string& a_key, const std::string& a_value) : + key_(a_key), value_(a_value) { + } + + // Gets the user supplied key. + const char* key() const { + return key_.c_str(); + } + + // Gets the user supplied value. + const char* value() const { + return value_.c_str(); + } + + // Sets a new value, overriding the one supplied in the constructor. + void SetValue(const std::string& new_value) { + value_ = new_value; + } + + private: + // The key supplied by the user. + std::string key_; + // The value supplied by the user. + std::string value_; +}; + +// The result of a single Test. This includes a list of +// TestPartResults, a list of TestProperties, a count of how many +// death tests there are in the Test, and how much time it took to run +// the Test. +// +// TestResult is not copyable. +class GTEST_API_ TestResult { + public: + // Creates an empty TestResult. + TestResult(); + + // D'tor. Do not inherit from TestResult. + ~TestResult(); + + // Gets the number of all test parts. This is the sum of the number + // of successful test parts and the number of failed test parts. + int total_part_count() const; + + // Returns the number of the test properties. + int test_property_count() const; + + // Returns true iff the test passed (i.e. no test part failed). + bool Passed() const { return !Failed(); } + + // Returns true iff the test failed. + bool Failed() const; + + // Returns true iff the test fatally failed. + bool HasFatalFailure() const; + + // Returns true iff the test has a non-fatal failure. + bool HasNonfatalFailure() const; + + // Returns the elapsed time, in milliseconds. + TimeInMillis elapsed_time() const { return elapsed_time_; } + + // Returns the i-th test part result among all the results. i can range + // from 0 to test_property_count() - 1. If i is not in that range, aborts + // the program. + const TestPartResult& GetTestPartResult(int i) const; + + // Returns the i-th test property. i can range from 0 to + // test_property_count() - 1. If i is not in that range, aborts the + // program. + const TestProperty& GetTestProperty(int i) const; + + private: + friend class TestInfo; + friend class TestCase; + friend class UnitTest; + friend class internal::DefaultGlobalTestPartResultReporter; + friend class internal::ExecDeathTest; + friend class internal::TestResultAccessor; + friend class internal::UnitTestImpl; + friend class internal::WindowsDeathTest; + + // Gets the vector of TestPartResults. + const std::vector& test_part_results() const { + return test_part_results_; + } + + // Gets the vector of TestProperties. + const std::vector& test_properties() const { + return test_properties_; + } + + // Sets the elapsed time. + void set_elapsed_time(TimeInMillis elapsed) { elapsed_time_ = elapsed; } + + // Adds a test property to the list. The property is validated and may add + // a non-fatal failure if invalid (e.g., if it conflicts with reserved + // key names). If a property is already recorded for the same key, the + // value will be updated, rather than storing multiple values for the same + // key. xml_element specifies the element for which the property is being + // recorded and is used for validation. + void RecordProperty(const std::string& xml_element, + const TestProperty& test_property); + + // Adds a failure if the key is a reserved attribute of Google Test + // testcase tags. Returns true if the property is valid. + // TODO(russr): Validate attribute names are legal and human readable. + static bool ValidateTestProperty(const std::string& xml_element, + const TestProperty& test_property); + + // Adds a test part result to the list. + void AddTestPartResult(const TestPartResult& test_part_result); + + // Returns the death test count. + int death_test_count() const { return death_test_count_; } + + // Increments the death test count, returning the new count. + int increment_death_test_count() { return ++death_test_count_; } + + // Clears the test part results. + void ClearTestPartResults(); + + // Clears the object. + void Clear(); + + // Protects mutable state of the property vector and of owned + // properties, whose values may be updated. + internal::Mutex test_properites_mutex_; + + // The vector of TestPartResults + std::vector test_part_results_; + // The vector of TestProperties + std::vector test_properties_; + // Running count of death tests. + int death_test_count_; + // The elapsed time, in milliseconds. + TimeInMillis elapsed_time_; + + // We disallow copying TestResult. + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult); +}; // class TestResult + +// A TestInfo object stores the following information about a test: +// +// Test case name +// Test name +// Whether the test should be run +// A function pointer that creates the test object when invoked +// Test result +// +// The constructor of TestInfo registers itself with the UnitTest +// singleton such that the RUN_ALL_TESTS() macro knows which tests to +// run. +class GTEST_API_ TestInfo { + public: + // Destructs a TestInfo object. This function is not virtual, so + // don't inherit from TestInfo. + ~TestInfo(); + + // Returns the test case name. + const char* test_case_name() const { return test_case_name_.c_str(); } + + // Returns the test name. + const char* name() const { return name_.c_str(); } + + // Returns the name of the parameter type, or NULL if this is not a typed + // or a type-parameterized test. + const char* type_param() const { + if (type_param_.get() != NULL) + return type_param_->c_str(); + return NULL; + } + + // Returns the text representation of the value parameter, or NULL if this + // is not a value-parameterized test. + const char* value_param() const { + if (value_param_.get() != NULL) + return value_param_->c_str(); + return NULL; + } + + // Returns true if this test should run, that is if the test is not + // disabled (or it is disabled but the also_run_disabled_tests flag has + // been specified) and its full name matches the user-specified filter. + // + // Google Test allows the user to filter the tests by their full names. + // The full name of a test Bar in test case Foo is defined as + // "Foo.Bar". Only the tests that match the filter will run. + // + // A filter is a colon-separated list of glob (not regex) patterns, + // optionally followed by a '-' and a colon-separated list of + // negative patterns (tests to exclude). A test is run if it + // matches one of the positive patterns and does not match any of + // the negative patterns. + // + // For example, *A*:Foo.* is a filter that matches any string that + // contains the character 'A' or starts with "Foo.". + bool should_run() const { return should_run_; } + + // Returns true iff this test will appear in the XML report. + bool is_reportable() const { + // For now, the XML report includes all tests matching the filter. + // In the future, we may trim tests that are excluded because of + // sharding. + return matches_filter_; + } + + // Returns the result of the test. + const TestResult* result() const { return &result_; } + + private: +#if GTEST_HAS_DEATH_TEST + friend class internal::DefaultDeathTestFactory; +#endif // GTEST_HAS_DEATH_TEST + friend class Test; + friend class TestCase; + friend class internal::UnitTestImpl; + friend class internal::StreamingListenerTest; + friend TestInfo* internal::MakeAndRegisterTestInfo( + const char* test_case_name, + const char* name, + const char* type_param, + const char* value_param, + internal::TypeId fixture_class_id, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc, + internal::TestFactoryBase* factory); + + // Constructs a TestInfo object. The newly constructed instance assumes + // ownership of the factory object. + TestInfo(const std::string& test_case_name, + const std::string& name, + const char* a_type_param, // NULL if not a type-parameterized test + const char* a_value_param, // NULL if not a value-parameterized test + internal::TypeId fixture_class_id, + internal::TestFactoryBase* factory); + + // Increments the number of death tests encountered in this test so + // far. + int increment_death_test_count() { + return result_.increment_death_test_count(); + } + + // Creates the test object, runs it, records its result, and then + // deletes it. + void Run(); + + static void ClearTestResult(TestInfo* test_info) { + test_info->result_.Clear(); + } + + // These fields are immutable properties of the test. + const std::string test_case_name_; // Test case name + const std::string name_; // Test name + // Name of the parameter type, or NULL if this is not a typed or a + // type-parameterized test. + const internal::scoped_ptr type_param_; + // Text representation of the value parameter, or NULL if this is not a + // value-parameterized test. + const internal::scoped_ptr value_param_; + const internal::TypeId fixture_class_id_; // ID of the test fixture class + bool should_run_; // True iff this test should run + bool is_disabled_; // True iff this test is disabled + bool matches_filter_; // True if this test matches the + // user-specified filter. + internal::TestFactoryBase* const factory_; // The factory that creates + // the test object + + // This field is mutable and needs to be reset before running the + // test for the second time. + TestResult result_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo); +}; + +// A test case, which consists of a vector of TestInfos. +// +// TestCase is not copyable. +class GTEST_API_ TestCase { + public: + // Creates a TestCase with the given name. + // + // TestCase does NOT have a default constructor. Always use this + // constructor to create a TestCase object. + // + // Arguments: + // + // name: name of the test case + // a_type_param: the name of the test's type parameter, or NULL if + // this is not a type-parameterized test. + // set_up_tc: pointer to the function that sets up the test case + // tear_down_tc: pointer to the function that tears down the test case + TestCase(const char* name, const char* a_type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc); + + // Destructor of TestCase. + virtual ~TestCase(); + + // Gets the name of the TestCase. + const char* name() const { return name_.c_str(); } + + // Returns the name of the parameter type, or NULL if this is not a + // type-parameterized test case. + const char* type_param() const { + if (type_param_.get() != NULL) + return type_param_->c_str(); + return NULL; + } + + // Returns true if any test in this test case should run. + bool should_run() const { return should_run_; } + + // Gets the number of successful tests in this test case. + int successful_test_count() const; + + // Gets the number of failed tests in this test case. + int failed_test_count() const; + + // Gets the number of disabled tests that will be reported in the XML report. + int reportable_disabled_test_count() const; + + // Gets the number of disabled tests in this test case. + int disabled_test_count() const; + + // Gets the number of tests to be printed in the XML report. + int reportable_test_count() const; + + // Get the number of tests in this test case that should run. + int test_to_run_count() const; + + // Gets the number of all tests in this test case. + int total_test_count() const; + + // Returns true iff the test case passed. + bool Passed() const { return !Failed(); } + + // Returns true iff the test case failed. + bool Failed() const { return failed_test_count() > 0; } + + // Returns the elapsed time, in milliseconds. + TimeInMillis elapsed_time() const { return elapsed_time_; } + + // Returns the i-th test among all the tests. i can range from 0 to + // total_test_count() - 1. If i is not in that range, returns NULL. + const TestInfo* GetTestInfo(int i) const; + + // Returns the TestResult that holds test properties recorded during + // execution of SetUpTestCase and TearDownTestCase. + const TestResult& ad_hoc_test_result() const { return ad_hoc_test_result_; } + + private: + friend class Test; + friend class internal::UnitTestImpl; + + // Gets the (mutable) vector of TestInfos in this TestCase. + std::vector& test_info_list() { return test_info_list_; } + + // Gets the (immutable) vector of TestInfos in this TestCase. + const std::vector& test_info_list() const { + return test_info_list_; + } + + // Returns the i-th test among all the tests. i can range from 0 to + // total_test_count() - 1. If i is not in that range, returns NULL. + TestInfo* GetMutableTestInfo(int i); + + // Sets the should_run member. + void set_should_run(bool should) { should_run_ = should; } + + // Adds a TestInfo to this test case. Will delete the TestInfo upon + // destruction of the TestCase object. + void AddTestInfo(TestInfo * test_info); + + // Clears the results of all tests in this test case. + void ClearResult(); + + // Clears the results of all tests in the given test case. + static void ClearTestCaseResult(TestCase* test_case) { + test_case->ClearResult(); + } + + // Runs every test in this TestCase. + void Run(); + + // Runs SetUpTestCase() for this TestCase. This wrapper is needed + // for catching exceptions thrown from SetUpTestCase(). + void RunSetUpTestCase() { (*set_up_tc_)(); } + + // Runs TearDownTestCase() for this TestCase. This wrapper is + // needed for catching exceptions thrown from TearDownTestCase(). + void RunTearDownTestCase() { (*tear_down_tc_)(); } + + // Returns true iff test passed. + static bool TestPassed(const TestInfo* test_info) { + return test_info->should_run() && test_info->result()->Passed(); + } + + // Returns true iff test failed. + static bool TestFailed(const TestInfo* test_info) { + return test_info->should_run() && test_info->result()->Failed(); + } + + // Returns true iff the test is disabled and will be reported in the XML + // report. + static bool TestReportableDisabled(const TestInfo* test_info) { + return test_info->is_reportable() && test_info->is_disabled_; + } + + // Returns true iff test is disabled. + static bool TestDisabled(const TestInfo* test_info) { + return test_info->is_disabled_; + } + + // Returns true iff this test will appear in the XML report. + static bool TestReportable(const TestInfo* test_info) { + return test_info->is_reportable(); + } + + // Returns true if the given test should run. + static bool ShouldRunTest(const TestInfo* test_info) { + return test_info->should_run(); + } + + // Shuffles the tests in this test case. + void ShuffleTests(internal::Random* random); + + // Restores the test order to before the first shuffle. + void UnshuffleTests(); + + // Name of the test case. + std::string name_; + // Name of the parameter type, or NULL if this is not a typed or a + // type-parameterized test. + const internal::scoped_ptr type_param_; + // The vector of TestInfos in their original order. It owns the + // elements in the vector. + std::vector test_info_list_; + // Provides a level of indirection for the test list to allow easy + // shuffling and restoring the test order. The i-th element in this + // vector is the index of the i-th test in the shuffled test list. + std::vector test_indices_; + // Pointer to the function that sets up the test case. + Test::SetUpTestCaseFunc set_up_tc_; + // Pointer to the function that tears down the test case. + Test::TearDownTestCaseFunc tear_down_tc_; + // True iff any test in this test case should run. + bool should_run_; + // Elapsed time, in milliseconds. + TimeInMillis elapsed_time_; + // Holds test properties recorded during execution of SetUpTestCase and + // TearDownTestCase. + TestResult ad_hoc_test_result_; + + // We disallow copying TestCases. + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestCase); +}; + +// An Environment object is capable of setting up and tearing down an +// environment. The user should subclass this to define his own +// environment(s). +// +// An Environment object does the set-up and tear-down in virtual +// methods SetUp() and TearDown() instead of the constructor and the +// destructor, as: +// +// 1. You cannot safely throw from a destructor. This is a problem +// as in some cases Google Test is used where exceptions are enabled, and +// we may want to implement ASSERT_* using exceptions where they are +// available. +// 2. You cannot use ASSERT_* directly in a constructor or +// destructor. +class Environment { + public: + // The d'tor is virtual as we need to subclass Environment. + virtual ~Environment() {} + + // Override this to define how to set up the environment. + virtual void SetUp() {} + + // Override this to define how to tear down the environment. + virtual void TearDown() {} + private: + // If you see an error about overriding the following function or + // about it being private, you have mis-spelled SetUp() as Setup(). + struct Setup_should_be_spelled_SetUp {}; + virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; } +}; + +// The interface for tracing execution of tests. The methods are organized in +// the order the corresponding events are fired. +class TestEventListener { + public: + virtual ~TestEventListener() {} + + // Fired before any test activity starts. + virtual void OnTestProgramStart(const UnitTest& unit_test) = 0; + + // Fired before each iteration of tests starts. There may be more than + // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration + // index, starting from 0. + virtual void OnTestIterationStart(const UnitTest& unit_test, + int iteration) = 0; + + // Fired before environment set-up for each iteration of tests starts. + virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test) = 0; + + // Fired after environment set-up for each iteration of tests ends. + virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) = 0; + + // Fired before the test case starts. + virtual void OnTestCaseStart(const TestCase& test_case) = 0; + + // Fired before the test starts. + virtual void OnTestStart(const TestInfo& test_info) = 0; + + // Fired after a failed assertion or a SUCCEED() invocation. + virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0; + + // Fired after the test ends. + virtual void OnTestEnd(const TestInfo& test_info) = 0; + + // Fired after the test case ends. + virtual void OnTestCaseEnd(const TestCase& test_case) = 0; + + // Fired before environment tear-down for each iteration of tests starts. + virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test) = 0; + + // Fired after environment tear-down for each iteration of tests ends. + virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) = 0; + + // Fired after each iteration of tests finishes. + virtual void OnTestIterationEnd(const UnitTest& unit_test, + int iteration) = 0; + + // Fired after all test activities have ended. + virtual void OnTestProgramEnd(const UnitTest& unit_test) = 0; +}; + +// The convenience class for users who need to override just one or two +// methods and are not concerned that a possible change to a signature of +// the methods they override will not be caught during the build. For +// comments about each method please see the definition of TestEventListener +// above. +class EmptyTestEventListener : public TestEventListener { + public: + virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} + virtual void OnTestIterationStart(const UnitTest& /*unit_test*/, + int /*iteration*/) {} + virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) {} + virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} + virtual void OnTestCaseStart(const TestCase& /*test_case*/) {} + virtual void OnTestStart(const TestInfo& /*test_info*/) {} + virtual void OnTestPartResult(const TestPartResult& /*test_part_result*/) {} + virtual void OnTestEnd(const TestInfo& /*test_info*/) {} + virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {} + virtual void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) {} + virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} + virtual void OnTestIterationEnd(const UnitTest& /*unit_test*/, + int /*iteration*/) {} + virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} +}; + +// TestEventListeners lets users add listeners to track events in Google Test. +class GTEST_API_ TestEventListeners { + public: + TestEventListeners(); + ~TestEventListeners(); + + // Appends an event listener to the end of the list. Google Test assumes + // the ownership of the listener (i.e. it will delete the listener when + // the test program finishes). + void Append(TestEventListener* listener); + + // Removes the given event listener from the list and returns it. It then + // becomes the caller's responsibility to delete the listener. Returns + // NULL if the listener is not found in the list. + TestEventListener* Release(TestEventListener* listener); + + // Returns the standard listener responsible for the default console + // output. Can be removed from the listeners list to shut down default + // console output. Note that removing this object from the listener list + // with Release transfers its ownership to the caller and makes this + // function return NULL the next time. + TestEventListener* default_result_printer() const { + return default_result_printer_; + } + + // Returns the standard listener responsible for the default XML output + // controlled by the --gtest_output=xml flag. Can be removed from the + // listeners list by users who want to shut down the default XML output + // controlled by this flag and substitute it with custom one. Note that + // removing this object from the listener list with Release transfers its + // ownership to the caller and makes this function return NULL the next + // time. + TestEventListener* default_xml_generator() const { + return default_xml_generator_; + } + + private: + friend class TestCase; + friend class TestInfo; + friend class internal::DefaultGlobalTestPartResultReporter; + friend class internal::NoExecDeathTest; + friend class internal::TestEventListenersAccessor; + friend class internal::UnitTestImpl; + + // Returns repeater that broadcasts the TestEventListener events to all + // subscribers. + TestEventListener* repeater(); + + // Sets the default_result_printer attribute to the provided listener. + // The listener is also added to the listener list and previous + // default_result_printer is removed from it and deleted. The listener can + // also be NULL in which case it will not be added to the list. Does + // nothing if the previous and the current listener objects are the same. + void SetDefaultResultPrinter(TestEventListener* listener); + + // Sets the default_xml_generator attribute to the provided listener. The + // listener is also added to the listener list and previous + // default_xml_generator is removed from it and deleted. The listener can + // also be NULL in which case it will not be added to the list. Does + // nothing if the previous and the current listener objects are the same. + void SetDefaultXmlGenerator(TestEventListener* listener); + + // Controls whether events will be forwarded by the repeater to the + // listeners in the list. + bool EventForwardingEnabled() const; + void SuppressEventForwarding(); + + // The actual list of listeners. + internal::TestEventRepeater* repeater_; + // Listener responsible for the standard result output. + TestEventListener* default_result_printer_; + // Listener responsible for the creation of the XML output file. + TestEventListener* default_xml_generator_; + + // We disallow copying TestEventListeners. + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventListeners); +}; + +// A UnitTest consists of a vector of TestCases. +// +// This is a singleton class. The only instance of UnitTest is +// created when UnitTest::GetInstance() is first called. This +// instance is never deleted. +// +// UnitTest is not copyable. +// +// This class is thread-safe as long as the methods are called +// according to their specification. +class GTEST_API_ UnitTest { + public: + // Gets the singleton UnitTest object. The first time this method + // is called, a UnitTest object is constructed and returned. + // Consecutive calls will return the same object. + static UnitTest* GetInstance(); + + // Runs all tests in this UnitTest object and prints the result. + // Returns 0 if successful, or 1 otherwise. + // + // This method can only be called from the main thread. + // + // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. + int Run() GTEST_MUST_USE_RESULT_; + + // Returns the working directory when the first TEST() or TEST_F() + // was executed. The UnitTest object owns the string. + const char* original_working_dir() const; + + // Returns the TestCase object for the test that's currently running, + // or NULL if no test is running. + const TestCase* current_test_case() const + GTEST_LOCK_EXCLUDED_(mutex_); + + // Returns the TestInfo object for the test that's currently running, + // or NULL if no test is running. + const TestInfo* current_test_info() const + GTEST_LOCK_EXCLUDED_(mutex_); + + // Returns the random seed used at the start of the current test run. + int random_seed() const; + +#if GTEST_HAS_PARAM_TEST + // Returns the ParameterizedTestCaseRegistry object used to keep track of + // value-parameterized tests and instantiate and register them. + // + // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. + internal::ParameterizedTestCaseRegistry& parameterized_test_registry() + GTEST_LOCK_EXCLUDED_(mutex_); +#endif // GTEST_HAS_PARAM_TEST + + // Gets the number of successful test cases. + int successful_test_case_count() const; + + // Gets the number of failed test cases. + int failed_test_case_count() const; + + // Gets the number of all test cases. + int total_test_case_count() const; + + // Gets the number of all test cases that contain at least one test + // that should run. + int test_case_to_run_count() const; + + // Gets the number of successful tests. + int successful_test_count() const; + + // Gets the number of failed tests. + int failed_test_count() const; + + // Gets the number of disabled tests that will be reported in the XML report. + int reportable_disabled_test_count() const; + + // Gets the number of disabled tests. + int disabled_test_count() const; + + // Gets the number of tests to be printed in the XML report. + int reportable_test_count() const; + + // Gets the number of all tests. + int total_test_count() const; + + // Gets the number of tests that should run. + int test_to_run_count() const; + + // Gets the time of the test program start, in ms from the start of the + // UNIX epoch. + TimeInMillis start_timestamp() const; + + // Gets the elapsed time, in milliseconds. + TimeInMillis elapsed_time() const; + + // Returns true iff the unit test passed (i.e. all test cases passed). + bool Passed() const; + + // Returns true iff the unit test failed (i.e. some test case failed + // or something outside of all tests failed). + bool Failed() const; + + // Gets the i-th test case among all the test cases. i can range from 0 to + // total_test_case_count() - 1. If i is not in that range, returns NULL. + const TestCase* GetTestCase(int i) const; + + // Returns the TestResult containing information on test failures and + // properties logged outside of individual test cases. + const TestResult& ad_hoc_test_result() const; + + // Returns the list of event listeners that can be used to track events + // inside Google Test. + TestEventListeners& listeners(); + + private: + // Registers and returns a global test environment. When a test + // program is run, all global test environments will be set-up in + // the order they were registered. After all tests in the program + // have finished, all global test environments will be torn-down in + // the *reverse* order they were registered. + // + // The UnitTest object takes ownership of the given environment. + // + // This method can only be called from the main thread. + Environment* AddEnvironment(Environment* env); + + // Adds a TestPartResult to the current TestResult object. All + // Google Test assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) + // eventually call this to report their results. The user code + // should use the assertion macros instead of calling this directly. + void AddTestPartResult(TestPartResult::Type result_type, + const char* file_name, + int line_number, + const std::string& message, + const std::string& os_stack_trace) + GTEST_LOCK_EXCLUDED_(mutex_); + + // Adds a TestProperty to the current TestResult object when invoked from + // inside a test, to current TestCase's ad_hoc_test_result_ when invoked + // from SetUpTestCase or TearDownTestCase, or to the global property set + // when invoked elsewhere. If the result already contains a property with + // the same key, the value will be updated. + void RecordProperty(const std::string& key, const std::string& value); + + // Gets the i-th test case among all the test cases. i can range from 0 to + // total_test_case_count() - 1. If i is not in that range, returns NULL. + TestCase* GetMutableTestCase(int i); + + // Accessors for the implementation object. + internal::UnitTestImpl* impl() { return impl_; } + const internal::UnitTestImpl* impl() const { return impl_; } + + // These classes and funcions are friends as they need to access private + // members of UnitTest. + friend class Test; + friend class internal::AssertHelper; + friend class internal::ScopedTrace; + friend class internal::StreamingListenerTest; + friend class internal::UnitTestRecordPropertyTestHelper; + friend Environment* AddGlobalTestEnvironment(Environment* env); + friend internal::UnitTestImpl* internal::GetUnitTestImpl(); + friend void internal::ReportFailureInUnknownLocation( + TestPartResult::Type result_type, + const std::string& message); + + // Creates an empty UnitTest. + UnitTest(); + + // D'tor + virtual ~UnitTest(); + + // Pushes a trace defined by SCOPED_TRACE() on to the per-thread + // Google Test trace stack. + void PushGTestTrace(const internal::TraceInfo& trace) + GTEST_LOCK_EXCLUDED_(mutex_); + + // Pops a trace from the per-thread Google Test trace stack. + void PopGTestTrace() + GTEST_LOCK_EXCLUDED_(mutex_); + + // Protects mutable state in *impl_. This is mutable as some const + // methods need to lock it too. + mutable internal::Mutex mutex_; + + // Opaque implementation object. This field is never changed once + // the object is constructed. We don't mark it as const here, as + // doing so will cause a warning in the constructor of UnitTest. + // Mutable state in *impl_ is protected by mutex_. + internal::UnitTestImpl* impl_; + + // We disallow copying UnitTest. + GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest); +}; + +// A convenient wrapper for adding an environment for the test +// program. +// +// You should call this before RUN_ALL_TESTS() is called, probably in +// main(). If you use gtest_main, you need to call this before main() +// starts for it to take effect. For example, you can define a global +// variable like this: +// +// testing::Environment* const foo_env = +// testing::AddGlobalTestEnvironment(new FooEnvironment); +// +// However, we strongly recommend you to write your own main() and +// call AddGlobalTestEnvironment() there, as relying on initialization +// of global variables makes the code harder to read and may cause +// problems when you register multiple environments from different +// translation units and the environments have dependencies among them +// (remember that the compiler doesn't guarantee the order in which +// global variables from different translation units are initialized). +inline Environment* AddGlobalTestEnvironment(Environment* env) { + return UnitTest::GetInstance()->AddEnvironment(env); +} + +// Initializes Google Test. This must be called before calling +// RUN_ALL_TESTS(). In particular, it parses a command line for the +// flags that Google Test recognizes. Whenever a Google Test flag is +// seen, it is removed from argv, and *argc is decremented. +// +// No value is returned. Instead, the Google Test flag variables are +// updated. +// +// Calling the function for the second time has no user-visible effect. +GTEST_API_ void InitGoogleTest(int* argc, char** argv); + +// This overloaded version can be used in Windows programs compiled in +// UNICODE mode. +GTEST_API_ void InitGoogleTest(int* argc, wchar_t** argv); + +namespace internal { + +// FormatForComparison::Format(value) formats a +// value of type ToPrint that is an operand of a comparison assertion +// (e.g. ASSERT_EQ). OtherOperand is the type of the other operand in +// the comparison, and is used to help determine the best way to +// format the value. In particular, when the value is a C string +// (char pointer) and the other operand is an STL string object, we +// want to format the C string as a string, since we know it is +// compared by value with the string object. If the value is a char +// pointer but the other operand is not an STL string object, we don't +// know whether the pointer is supposed to point to a NUL-terminated +// string, and thus want to print it as a pointer to be safe. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. + +// The default case. +template +class FormatForComparison { + public: + static ::std::string Format(const ToPrint& value) { + return ::testing::PrintToString(value); + } +}; + +// Array. +template +class FormatForComparison { + public: + static ::std::string Format(const ToPrint* value) { + return FormatForComparison::Format(value); + } +}; + +// By default, print C string as pointers to be safe, as we don't know +// whether they actually point to a NUL-terminated string. + +#define GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(CharType) \ + template \ + class FormatForComparison { \ + public: \ + static ::std::string Format(CharType* value) { \ + return ::testing::PrintToString(static_cast(value)); \ + } \ + } + +GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char); +GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char); +GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(wchar_t); +GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const wchar_t); + +#undef GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ + +// If a C string is compared with an STL string object, we know it's meant +// to point to a NUL-terminated string, and thus can print it as a string. + +#define GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(CharType, OtherStringType) \ + template <> \ + class FormatForComparison { \ + public: \ + static ::std::string Format(CharType* value) { \ + return ::testing::PrintToString(value); \ + } \ + } + +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char, ::std::string); +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char, ::std::string); + +#if GTEST_HAS_GLOBAL_STRING +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char, ::string); +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char, ::string); +#endif + +#if GTEST_HAS_GLOBAL_WSTRING +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(wchar_t, ::wstring); +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const wchar_t, ::wstring); +#endif + +#if GTEST_HAS_STD_WSTRING +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(wchar_t, ::std::wstring); +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const wchar_t, ::std::wstring); +#endif + +#undef GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ + +// Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc) +// operand to be used in a failure message. The type (but not value) +// of the other operand may affect the format. This allows us to +// print a char* as a raw pointer when it is compared against another +// char* or void*, and print it as a C string when it is compared +// against an std::string object, for example. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +template +std::string FormatForComparisonFailureMessage( + const T1& value, const T2& /* other_operand */) { + return FormatForComparison::Format(value); +} + +// The helper function for {ASSERT|EXPECT}_EQ. +template +AssertionResult CmpHelperEQ(const char* expected_expression, + const char* actual_expression, + const T1& expected, + const T2& actual) { +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4389) // Temporarily disables warning on + // signed/unsigned mismatch. +#endif + + if (expected == actual) { + return AssertionSuccess(); + } + +#ifdef _MSC_VER +# pragma warning(pop) // Restores the warning state. +#endif + + return EqFailure(expected_expression, + actual_expression, + FormatForComparisonFailureMessage(expected, actual), + FormatForComparisonFailureMessage(actual, expected), + false); +} + +// With this overloaded version, we allow anonymous enums to be used +// in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous enums +// can be implicitly cast to BiggestInt. +GTEST_API_ AssertionResult CmpHelperEQ(const char* expected_expression, + const char* actual_expression, + BiggestInt expected, + BiggestInt actual); + +// The helper class for {ASSERT|EXPECT}_EQ. The template argument +// lhs_is_null_literal is true iff the first argument to ASSERT_EQ() +// is a null pointer literal. The following default implementation is +// for lhs_is_null_literal being false. +template +class EqHelper { + public: + // This templatized version is for the general case. + template + static AssertionResult Compare(const char* expected_expression, + const char* actual_expression, + const T1& expected, + const T2& actual) { + return CmpHelperEQ(expected_expression, actual_expression, expected, + actual); + } + + // With this overloaded version, we allow anonymous enums to be used + // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous + // enums can be implicitly cast to BiggestInt. + // + // Even though its body looks the same as the above version, we + // cannot merge the two, as it will make anonymous enums unhappy. + static AssertionResult Compare(const char* expected_expression, + const char* actual_expression, + BiggestInt expected, + BiggestInt actual) { + return CmpHelperEQ(expected_expression, actual_expression, expected, + actual); + } +}; + +// This specialization is used when the first argument to ASSERT_EQ() +// is a null pointer literal, like NULL, false, or 0. +template <> +class EqHelper { + public: + // We define two overloaded versions of Compare(). The first + // version will be picked when the second argument to ASSERT_EQ() is + // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or + // EXPECT_EQ(false, a_bool). + template + static AssertionResult Compare( + const char* expected_expression, + const char* actual_expression, + const T1& expected, + const T2& actual, + // The following line prevents this overload from being considered if T2 + // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr) + // expands to Compare("", "", NULL, my_ptr), which requires a conversion + // to match the Secret* in the other overload, which would otherwise make + // this template match better. + typename EnableIf::value>::type* = 0) { + return CmpHelperEQ(expected_expression, actual_expression, expected, + actual); + } + + // This version will be picked when the second argument to ASSERT_EQ() is a + // pointer, e.g. ASSERT_EQ(NULL, a_pointer). + template + static AssertionResult Compare( + const char* expected_expression, + const char* actual_expression, + // We used to have a second template parameter instead of Secret*. That + // template parameter would deduce to 'long', making this a better match + // than the first overload even without the first overload's EnableIf. + // Unfortunately, gcc with -Wconversion-null warns when "passing NULL to + // non-pointer argument" (even a deduced integral argument), so the old + // implementation caused warnings in user code. + Secret* /* expected (NULL) */, + T* actual) { + // We already know that 'expected' is a null pointer. + return CmpHelperEQ(expected_expression, actual_expression, + static_cast(NULL), actual); + } +}; + +// A macro for implementing the helper functions needed to implement +// ASSERT_?? and EXPECT_??. It is here just to avoid copy-and-paste +// of similar code. +// +// For each templatized helper function, we also define an overloaded +// version for BiggestInt in order to reduce code bloat and allow +// anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled +// with gcc 4. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +#define GTEST_IMPL_CMP_HELPER_(op_name, op)\ +template \ +AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ + const T1& val1, const T2& val2) {\ + if (val1 op val2) {\ + return AssertionSuccess();\ + } else {\ + return AssertionFailure() \ + << "Expected: (" << expr1 << ") " #op " (" << expr2\ + << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\ + << " vs " << FormatForComparisonFailureMessage(val2, val1);\ + }\ +}\ +GTEST_API_ AssertionResult CmpHelper##op_name(\ + const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2) + +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. + +// Implements the helper function for {ASSERT|EXPECT}_NE +GTEST_IMPL_CMP_HELPER_(NE, !=); +// Implements the helper function for {ASSERT|EXPECT}_LE +GTEST_IMPL_CMP_HELPER_(LE, <=); +// Implements the helper function for {ASSERT|EXPECT}_LT +GTEST_IMPL_CMP_HELPER_(LT, <); +// Implements the helper function for {ASSERT|EXPECT}_GE +GTEST_IMPL_CMP_HELPER_(GE, >=); +// Implements the helper function for {ASSERT|EXPECT}_GT +GTEST_IMPL_CMP_HELPER_(GT, >); + +#undef GTEST_IMPL_CMP_HELPER_ + +// The helper function for {ASSERT|EXPECT}_STREQ. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression, + const char* actual_expression, + const char* expected, + const char* actual); + +// The helper function for {ASSERT|EXPECT}_STRCASEEQ. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression, + const char* actual_expression, + const char* expected, + const char* actual); + +// The helper function for {ASSERT|EXPECT}_STRNE. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, + const char* s2_expression, + const char* s1, + const char* s2); + +// The helper function for {ASSERT|EXPECT}_STRCASENE. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression, + const char* s2_expression, + const char* s1, + const char* s2); + + +// Helper function for *_STREQ on wide strings. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression, + const char* actual_expression, + const wchar_t* expected, + const wchar_t* actual); + +// Helper function for *_STRNE on wide strings. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, + const char* s2_expression, + const wchar_t* s1, + const wchar_t* s2); + +} // namespace internal + +// IsSubstring() and IsNotSubstring() are intended to be used as the +// first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by +// themselves. They check whether needle is a substring of haystack +// (NULL is considered a substring of itself only), and return an +// appropriate error message when they fail. +// +// The {needle,haystack}_expr arguments are the stringified +// expressions that generated the two real arguments. +GTEST_API_ AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const char* needle, const char* haystack); +GTEST_API_ AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const wchar_t* needle, const wchar_t* haystack); +GTEST_API_ AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const char* needle, const char* haystack); +GTEST_API_ AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const wchar_t* needle, const wchar_t* haystack); +GTEST_API_ AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::string& needle, const ::std::string& haystack); +GTEST_API_ AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::string& needle, const ::std::string& haystack); + +#if GTEST_HAS_STD_WSTRING +GTEST_API_ AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::wstring& needle, const ::std::wstring& haystack); +GTEST_API_ AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::wstring& needle, const ::std::wstring& haystack); +#endif // GTEST_HAS_STD_WSTRING + +namespace internal { + +// Helper template function for comparing floating-points. +// +// Template parameter: +// +// RawType: the raw floating-point type (either float or double) +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +template +AssertionResult CmpHelperFloatingPointEQ(const char* expected_expression, + const char* actual_expression, + RawType expected, + RawType actual) { + const FloatingPoint lhs(expected), rhs(actual); + + if (lhs.AlmostEquals(rhs)) { + return AssertionSuccess(); + } + + ::std::stringstream expected_ss; + expected_ss << std::setprecision(std::numeric_limits::digits10 + 2) + << expected; + + ::std::stringstream actual_ss; + actual_ss << std::setprecision(std::numeric_limits::digits10 + 2) + << actual; + + return EqFailure(expected_expression, + actual_expression, + StringStreamToString(&expected_ss), + StringStreamToString(&actual_ss), + false); +} + +// Helper function for implementing ASSERT_NEAR. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1, + const char* expr2, + const char* abs_error_expr, + double val1, + double val2, + double abs_error); + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// A class that enables one to stream messages to assertion macros +class GTEST_API_ AssertHelper { + public: + // Constructor. + AssertHelper(TestPartResult::Type type, + const char* file, + int line, + const char* message); + ~AssertHelper(); + + // Message assignment is a semantic trick to enable assertion + // streaming; see the GTEST_MESSAGE_ macro below. + void operator=(const Message& message) const; + + private: + // We put our data in a struct so that the size of the AssertHelper class can + // be as small as possible. This is important because gcc is incapable of + // re-using stack space even for temporary variables, so every EXPECT_EQ + // reserves stack space for another AssertHelper. + struct AssertHelperData { + AssertHelperData(TestPartResult::Type t, + const char* srcfile, + int line_num, + const char* msg) + : type(t), file(srcfile), line(line_num), message(msg) { } + + TestPartResult::Type const type; + const char* const file; + int const line; + std::string const message; + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData); + }; + + AssertHelperData* const data_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper); +}; + +} // namespace internal + +#if GTEST_HAS_PARAM_TEST +// The pure interface class that all value-parameterized tests inherit from. +// A value-parameterized class must inherit from both ::testing::Test and +// ::testing::WithParamInterface. In most cases that just means inheriting +// from ::testing::TestWithParam, but more complicated test hierarchies +// may need to inherit from Test and WithParamInterface at different levels. +// +// This interface has support for accessing the test parameter value via +// the GetParam() method. +// +// Use it with one of the parameter generator defining functions, like Range(), +// Values(), ValuesIn(), Bool(), and Combine(). +// +// class FooTest : public ::testing::TestWithParam { +// protected: +// FooTest() { +// // Can use GetParam() here. +// } +// virtual ~FooTest() { +// // Can use GetParam() here. +// } +// virtual void SetUp() { +// // Can use GetParam() here. +// } +// virtual void TearDown { +// // Can use GetParam() here. +// } +// }; +// TEST_P(FooTest, DoesBar) { +// // Can use GetParam() method here. +// Foo foo; +// ASSERT_TRUE(foo.DoesBar(GetParam())); +// } +// INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10)); + +template +class WithParamInterface { + public: + typedef T ParamType; + virtual ~WithParamInterface() {} + + // The current parameter value. Is also available in the test fixture's + // constructor. This member function is non-static, even though it only + // references static data, to reduce the opportunity for incorrect uses + // like writing 'WithParamInterface::GetParam()' for a test that + // uses a fixture whose parameter type is int. + const ParamType& GetParam() const { + GTEST_CHECK_(parameter_ != NULL) + << "GetParam() can only be called inside a value-parameterized test " + << "-- did you intend to write TEST_P instead of TEST_F?"; + return *parameter_; + } + + private: + // Sets parameter value. The caller is responsible for making sure the value + // remains alive and unchanged throughout the current test. + static void SetParam(const ParamType* parameter) { + parameter_ = parameter; + } + + // Static value used for accessing parameter during a test lifetime. + static const ParamType* parameter_; + + // TestClass must be a subclass of WithParamInterface and Test. + template friend class internal::ParameterizedTestFactory; +}; + +template +const T* WithParamInterface::parameter_ = NULL; + +// Most value-parameterized classes can ignore the existence of +// WithParamInterface, and can just inherit from ::testing::TestWithParam. + +template +class TestWithParam : public Test, public WithParamInterface { +}; + +#endif // GTEST_HAS_PARAM_TEST + +// Macros for indicating success/failure in test code. + +// ADD_FAILURE unconditionally adds a failure to the current test. +// SUCCEED generates a success - it doesn't automatically make the +// current test successful, as a test is only successful when it has +// no failure. +// +// EXPECT_* verifies that a certain condition is satisfied. If not, +// it behaves like ADD_FAILURE. In particular: +// +// EXPECT_TRUE verifies that a Boolean condition is true. +// EXPECT_FALSE verifies that a Boolean condition is false. +// +// FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except +// that they will also abort the current function on failure. People +// usually want the fail-fast behavior of FAIL and ASSERT_*, but those +// writing data-driven tests often find themselves using ADD_FAILURE +// and EXPECT_* more. + +// Generates a nonfatal failure with a generic message. +#define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed") + +// Generates a nonfatal failure at the given source file location with +// a generic message. +#define ADD_FAILURE_AT(file, line) \ + GTEST_MESSAGE_AT_(file, line, "Failed", \ + ::testing::TestPartResult::kNonFatalFailure) + +// Generates a fatal failure with a generic message. +#define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed") + +// Define this macro to 1 to omit the definition of FAIL(), which is a +// generic name and clashes with some other libraries. +#if !GTEST_DONT_DEFINE_FAIL +# define FAIL() GTEST_FAIL() +#endif + +// Generates a success with a generic message. +#define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded") + +// Define this macro to 1 to omit the definition of SUCCEED(), which +// is a generic name and clashes with some other libraries. +#if !GTEST_DONT_DEFINE_SUCCEED +# define SUCCEED() GTEST_SUCCEED() +#endif + +// Macros for testing exceptions. +// +// * {ASSERT|EXPECT}_THROW(statement, expected_exception): +// Tests that the statement throws the expected exception. +// * {ASSERT|EXPECT}_NO_THROW(statement): +// Tests that the statement doesn't throw any exception. +// * {ASSERT|EXPECT}_ANY_THROW(statement): +// Tests that the statement throws an exception. + +#define EXPECT_THROW(statement, expected_exception) \ + GTEST_TEST_THROW_(statement, expected_exception, GTEST_NONFATAL_FAILURE_) +#define EXPECT_NO_THROW(statement) \ + GTEST_TEST_NO_THROW_(statement, GTEST_NONFATAL_FAILURE_) +#define EXPECT_ANY_THROW(statement) \ + GTEST_TEST_ANY_THROW_(statement, GTEST_NONFATAL_FAILURE_) +#define ASSERT_THROW(statement, expected_exception) \ + GTEST_TEST_THROW_(statement, expected_exception, GTEST_FATAL_FAILURE_) +#define ASSERT_NO_THROW(statement) \ + GTEST_TEST_NO_THROW_(statement, GTEST_FATAL_FAILURE_) +#define ASSERT_ANY_THROW(statement) \ + GTEST_TEST_ANY_THROW_(statement, GTEST_FATAL_FAILURE_) + +// Boolean assertions. Condition can be either a Boolean expression or an +// AssertionResult. For more information on how to use AssertionResult with +// these macros see comments on that class. +#define EXPECT_TRUE(condition) \ + GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ + GTEST_NONFATAL_FAILURE_) +#define EXPECT_FALSE(condition) \ + GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ + GTEST_NONFATAL_FAILURE_) +#define ASSERT_TRUE(condition) \ + GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ + GTEST_FATAL_FAILURE_) +#define ASSERT_FALSE(condition) \ + GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ + GTEST_FATAL_FAILURE_) + +// Includes the auto-generated header that implements a family of +// generic predicate assertion macros. +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// This file is AUTOMATICALLY GENERATED on 10/31/2011 by command +// 'gen_gtest_pred_impl.py 5'. DO NOT EDIT BY HAND! +// +// Implements a family of generic predicate assertion macros. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ +#define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ + +// Makes sure this header is not included before gtest.h. +#ifndef GTEST_INCLUDE_GTEST_GTEST_H_ +# error Do not include gtest_pred_impl.h directly. Include gtest.h instead. +#endif // GTEST_INCLUDE_GTEST_GTEST_H_ + +// This header implements a family of generic predicate assertion +// macros: +// +// ASSERT_PRED_FORMAT1(pred_format, v1) +// ASSERT_PRED_FORMAT2(pred_format, v1, v2) +// ... +// +// where pred_format is a function or functor that takes n (in the +// case of ASSERT_PRED_FORMATn) values and their source expression +// text, and returns a testing::AssertionResult. See the definition +// of ASSERT_EQ in gtest.h for an example. +// +// If you don't care about formatting, you can use the more +// restrictive version: +// +// ASSERT_PRED1(pred, v1) +// ASSERT_PRED2(pred, v1, v2) +// ... +// +// where pred is an n-ary function or functor that returns bool, +// and the values v1, v2, ..., must support the << operator for +// streaming to std::ostream. +// +// We also define the EXPECT_* variations. +// +// For now we only support predicates whose arity is at most 5. +// Please email googletestframework@googlegroups.com if you need +// support for higher arities. + +// GTEST_ASSERT_ is the basic statement to which all of the assertions +// in this file reduce. Don't use this in your code. + +#define GTEST_ASSERT_(expression, on_failure) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (const ::testing::AssertionResult gtest_ar = (expression)) \ + ; \ + else \ + on_failure(gtest_ar.failure_message()) + + +// Helper function for implementing {EXPECT|ASSERT}_PRED1. Don't use +// this in your code. +template +AssertionResult AssertPred1Helper(const char* pred_text, + const char* e1, + Pred pred, + const T1& v1) { + if (pred(v1)) return AssertionSuccess(); + + return AssertionFailure() << pred_text << "(" + << e1 << ") evaluates to false, where" + << "\n" << e1 << " evaluates to " << v1; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1. +// Don't use this in your code. +#define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\ + GTEST_ASSERT_(pred_format(#v1, v1), \ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED1. Don't use +// this in your code. +#define GTEST_PRED1_(pred, v1, on_failure)\ + GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \ + #v1, \ + pred, \ + v1), on_failure) + +// Unary predicate assertion macros. +#define EXPECT_PRED_FORMAT1(pred_format, v1) \ + GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED1(pred, v1) \ + GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT1(pred_format, v1) \ + GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED1(pred, v1) \ + GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_) + + + +// Helper function for implementing {EXPECT|ASSERT}_PRED2. Don't use +// this in your code. +template +AssertionResult AssertPred2Helper(const char* pred_text, + const char* e1, + const char* e2, + Pred pred, + const T1& v1, + const T2& v2) { + if (pred(v1, v2)) return AssertionSuccess(); + + return AssertionFailure() << pred_text << "(" + << e1 << ", " + << e2 << ") evaluates to false, where" + << "\n" << e1 << " evaluates to " << v1 + << "\n" << e2 << " evaluates to " << v2; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2. +// Don't use this in your code. +#define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\ + GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), \ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED2. Don't use +// this in your code. +#define GTEST_PRED2_(pred, v1, v2, on_failure)\ + GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \ + #v1, \ + #v2, \ + pred, \ + v1, \ + v2), on_failure) + +// Binary predicate assertion macros. +#define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \ + GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED2(pred, v1, v2) \ + GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \ + GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED2(pred, v1, v2) \ + GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_) + + + +// Helper function for implementing {EXPECT|ASSERT}_PRED3. Don't use +// this in your code. +template +AssertionResult AssertPred3Helper(const char* pred_text, + const char* e1, + const char* e2, + const char* e3, + Pred pred, + const T1& v1, + const T2& v2, + const T3& v3) { + if (pred(v1, v2, v3)) return AssertionSuccess(); + + return AssertionFailure() << pred_text << "(" + << e1 << ", " + << e2 << ", " + << e3 << ") evaluates to false, where" + << "\n" << e1 << " evaluates to " << v1 + << "\n" << e2 << " evaluates to " << v2 + << "\n" << e3 << " evaluates to " << v3; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3. +// Don't use this in your code. +#define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\ + GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3), \ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED3. Don't use +// this in your code. +#define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\ + GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \ + #v1, \ + #v2, \ + #v3, \ + pred, \ + v1, \ + v2, \ + v3), on_failure) + +// Ternary predicate assertion macros. +#define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \ + GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED3(pred, v1, v2, v3) \ + GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \ + GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED3(pred, v1, v2, v3) \ + GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_) + + + +// Helper function for implementing {EXPECT|ASSERT}_PRED4. Don't use +// this in your code. +template +AssertionResult AssertPred4Helper(const char* pred_text, + const char* e1, + const char* e2, + const char* e3, + const char* e4, + Pred pred, + const T1& v1, + const T2& v2, + const T3& v3, + const T4& v4) { + if (pred(v1, v2, v3, v4)) return AssertionSuccess(); + + return AssertionFailure() << pred_text << "(" + << e1 << ", " + << e2 << ", " + << e3 << ", " + << e4 << ") evaluates to false, where" + << "\n" << e1 << " evaluates to " << v1 + << "\n" << e2 << " evaluates to " << v2 + << "\n" << e3 << " evaluates to " << v3 + << "\n" << e4 << " evaluates to " << v4; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4. +// Don't use this in your code. +#define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\ + GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4), \ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED4. Don't use +// this in your code. +#define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\ + GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \ + #v1, \ + #v2, \ + #v3, \ + #v4, \ + pred, \ + v1, \ + v2, \ + v3, \ + v4), on_failure) + +// 4-ary predicate assertion macros. +#define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ + GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED4(pred, v1, v2, v3, v4) \ + GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ + GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED4(pred, v1, v2, v3, v4) \ + GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) + + + +// Helper function for implementing {EXPECT|ASSERT}_PRED5. Don't use +// this in your code. +template +AssertionResult AssertPred5Helper(const char* pred_text, + const char* e1, + const char* e2, + const char* e3, + const char* e4, + const char* e5, + Pred pred, + const T1& v1, + const T2& v2, + const T3& v3, + const T4& v4, + const T5& v5) { + if (pred(v1, v2, v3, v4, v5)) return AssertionSuccess(); + + return AssertionFailure() << pred_text << "(" + << e1 << ", " + << e2 << ", " + << e3 << ", " + << e4 << ", " + << e5 << ") evaluates to false, where" + << "\n" << e1 << " evaluates to " << v1 + << "\n" << e2 << " evaluates to " << v2 + << "\n" << e3 << " evaluates to " << v3 + << "\n" << e4 << " evaluates to " << v4 + << "\n" << e5 << " evaluates to " << v5; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5. +// Don't use this in your code. +#define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\ + GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5), \ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED5. Don't use +// this in your code. +#define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\ + GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \ + #v1, \ + #v2, \ + #v3, \ + #v4, \ + #v5, \ + pred, \ + v1, \ + v2, \ + v3, \ + v4, \ + v5), on_failure) + +// 5-ary predicate assertion macros. +#define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ + GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \ + GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ + GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \ + GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) + + + +#endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ + +// Macros for testing equalities and inequalities. +// +// * {ASSERT|EXPECT}_EQ(expected, actual): Tests that expected == actual +// * {ASSERT|EXPECT}_NE(v1, v2): Tests that v1 != v2 +// * {ASSERT|EXPECT}_LT(v1, v2): Tests that v1 < v2 +// * {ASSERT|EXPECT}_LE(v1, v2): Tests that v1 <= v2 +// * {ASSERT|EXPECT}_GT(v1, v2): Tests that v1 > v2 +// * {ASSERT|EXPECT}_GE(v1, v2): Tests that v1 >= v2 +// +// When they are not, Google Test prints both the tested expressions and +// their actual values. The values must be compatible built-in types, +// or you will get a compiler error. By "compatible" we mean that the +// values can be compared by the respective operator. +// +// Note: +// +// 1. It is possible to make a user-defined type work with +// {ASSERT|EXPECT}_??(), but that requires overloading the +// comparison operators and is thus discouraged by the Google C++ +// Usage Guide. Therefore, you are advised to use the +// {ASSERT|EXPECT}_TRUE() macro to assert that two objects are +// equal. +// +// 2. The {ASSERT|EXPECT}_??() macros do pointer comparisons on +// pointers (in particular, C strings). Therefore, if you use it +// with two C strings, you are testing how their locations in memory +// are related, not how their content is related. To compare two C +// strings by content, use {ASSERT|EXPECT}_STR*(). +// +// 3. {ASSERT|EXPECT}_EQ(expected, actual) is preferred to +// {ASSERT|EXPECT}_TRUE(expected == actual), as the former tells you +// what the actual value is when it fails, and similarly for the +// other comparisons. +// +// 4. Do not depend on the order in which {ASSERT|EXPECT}_??() +// evaluate their arguments, which is undefined. +// +// 5. These macros evaluate their arguments exactly once. +// +// Examples: +// +// EXPECT_NE(5, Foo()); +// EXPECT_EQ(NULL, a_pointer); +// ASSERT_LT(i, array_size); +// ASSERT_GT(records.size(), 0) << "There is no record left."; + +#define EXPECT_EQ(expected, actual) \ + EXPECT_PRED_FORMAT2(::testing::internal:: \ + EqHelper::Compare, \ + expected, actual) +#define EXPECT_NE(expected, actual) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, expected, actual) +#define EXPECT_LE(val1, val2) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) +#define EXPECT_LT(val1, val2) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) +#define EXPECT_GE(val1, val2) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) +#define EXPECT_GT(val1, val2) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) + +#define GTEST_ASSERT_EQ(expected, actual) \ + ASSERT_PRED_FORMAT2(::testing::internal:: \ + EqHelper::Compare, \ + expected, actual) +#define GTEST_ASSERT_NE(val1, val2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2) +#define GTEST_ASSERT_LE(val1, val2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) +#define GTEST_ASSERT_LT(val1, val2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) +#define GTEST_ASSERT_GE(val1, val2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) +#define GTEST_ASSERT_GT(val1, val2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) + +// Define macro GTEST_DONT_DEFINE_ASSERT_XY to 1 to omit the definition of +// ASSERT_XY(), which clashes with some users' own code. + +#if !GTEST_DONT_DEFINE_ASSERT_EQ +# define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) +#endif + +#if !GTEST_DONT_DEFINE_ASSERT_NE +# define ASSERT_NE(val1, val2) GTEST_ASSERT_NE(val1, val2) +#endif + +#if !GTEST_DONT_DEFINE_ASSERT_LE +# define ASSERT_LE(val1, val2) GTEST_ASSERT_LE(val1, val2) +#endif + +#if !GTEST_DONT_DEFINE_ASSERT_LT +# define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2) +#endif + +#if !GTEST_DONT_DEFINE_ASSERT_GE +# define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2) +#endif + +#if !GTEST_DONT_DEFINE_ASSERT_GT +# define ASSERT_GT(val1, val2) GTEST_ASSERT_GT(val1, val2) +#endif + +// C-string Comparisons. All tests treat NULL and any non-NULL string +// as different. Two NULLs are equal. +// +// * {ASSERT|EXPECT}_STREQ(s1, s2): Tests that s1 == s2 +// * {ASSERT|EXPECT}_STRNE(s1, s2): Tests that s1 != s2 +// * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case +// * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case +// +// For wide or narrow string objects, you can use the +// {ASSERT|EXPECT}_??() macros. +// +// Don't depend on the order in which the arguments are evaluated, +// which is undefined. +// +// These macros evaluate their arguments exactly once. + +#define EXPECT_STREQ(expected, actual) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual) +#define EXPECT_STRNE(s1, s2) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) +#define EXPECT_STRCASEEQ(expected, actual) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual) +#define EXPECT_STRCASENE(s1, s2)\ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) + +#define ASSERT_STREQ(expected, actual) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual) +#define ASSERT_STRNE(s1, s2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) +#define ASSERT_STRCASEEQ(expected, actual) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual) +#define ASSERT_STRCASENE(s1, s2)\ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) + +// Macros for comparing floating-point numbers. +// +// * {ASSERT|EXPECT}_FLOAT_EQ(expected, actual): +// Tests that two float values are almost equal. +// * {ASSERT|EXPECT}_DOUBLE_EQ(expected, actual): +// Tests that two double values are almost equal. +// * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error): +// Tests that v1 and v2 are within the given distance to each other. +// +// Google Test uses ULP-based comparison to automatically pick a default +// error bound that is appropriate for the operands. See the +// FloatingPoint template class in gtest-internal.h if you are +// interested in the implementation details. + +#define EXPECT_FLOAT_EQ(expected, actual)\ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ + expected, actual) + +#define EXPECT_DOUBLE_EQ(expected, actual)\ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ + expected, actual) + +#define ASSERT_FLOAT_EQ(expected, actual)\ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ + expected, actual) + +#define ASSERT_DOUBLE_EQ(expected, actual)\ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ + expected, actual) + +#define EXPECT_NEAR(val1, val2, abs_error)\ + EXPECT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ + val1, val2, abs_error) + +#define ASSERT_NEAR(val1, val2, abs_error)\ + ASSERT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ + val1, val2, abs_error) + +// These predicate format functions work on floating-point values, and +// can be used in {ASSERT|EXPECT}_PRED_FORMAT2*(), e.g. +// +// EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0); + +// Asserts that val1 is less than, or almost equal to, val2. Fails +// otherwise. In particular, it fails if either val1 or val2 is NaN. +GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2, + float val1, float val2); +GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2, + double val1, double val2); + + +#if GTEST_OS_WINDOWS + +// Macros that test for HRESULT failure and success, these are only useful +// on Windows, and rely on Windows SDK macros and APIs to compile. +// +// * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr) +// +// When expr unexpectedly fails or succeeds, Google Test prints the +// expected result and the actual result with both a human-readable +// string representation of the error, if available, as well as the +// hex result code. +# define EXPECT_HRESULT_SUCCEEDED(expr) \ + EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) + +# define ASSERT_HRESULT_SUCCEEDED(expr) \ + ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) + +# define EXPECT_HRESULT_FAILED(expr) \ + EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) + +# define ASSERT_HRESULT_FAILED(expr) \ + ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) + +#endif // GTEST_OS_WINDOWS + +// Macros that execute statement and check that it doesn't generate new fatal +// failures in the current thread. +// +// * {ASSERT|EXPECT}_NO_FATAL_FAILURE(statement); +// +// Examples: +// +// EXPECT_NO_FATAL_FAILURE(Process()); +// ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed"; +// +#define ASSERT_NO_FATAL_FAILURE(statement) \ + GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_) +#define EXPECT_NO_FATAL_FAILURE(statement) \ + GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_) + +// Causes a trace (including the source file path, the current line +// number, and the given message) to be included in every test failure +// message generated by code in the current scope. The effect is +// undone when the control leaves the current scope. +// +// The message argument can be anything streamable to std::ostream. +// +// In the implementation, we include the current line number as part +// of the dummy variable name, thus allowing multiple SCOPED_TRACE()s +// to appear in the same block - as long as they are on different +// lines. +#define SCOPED_TRACE(message) \ + ::testing::internal::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\ + __FILE__, __LINE__, ::testing::Message() << (message)) + +// Compile-time assertion for type equality. +// StaticAssertTypeEq() compiles iff type1 and type2 are +// the same type. The value it returns is not interesting. +// +// Instead of making StaticAssertTypeEq a class template, we make it a +// function template that invokes a helper class template. This +// prevents a user from misusing StaticAssertTypeEq by +// defining objects of that type. +// +// CAVEAT: +// +// When used inside a method of a class template, +// StaticAssertTypeEq() is effective ONLY IF the method is +// instantiated. For example, given: +// +// template class Foo { +// public: +// void Bar() { testing::StaticAssertTypeEq(); } +// }; +// +// the code: +// +// void Test1() { Foo foo; } +// +// will NOT generate a compiler error, as Foo::Bar() is never +// actually instantiated. Instead, you need: +// +// void Test2() { Foo foo; foo.Bar(); } +// +// to cause a compiler error. +template +bool StaticAssertTypeEq() { + (void)internal::StaticAssertTypeEqHelper(); + return true; +} + +// Defines a test. +// +// The first parameter is the name of the test case, and the second +// parameter is the name of the test within the test case. +// +// The convention is to end the test case name with "Test". For +// example, a test case for the Foo class can be named FooTest. +// +// The user should put his test code between braces after using this +// macro. Example: +// +// TEST(FooTest, InitializesCorrectly) { +// Foo foo; +// EXPECT_TRUE(foo.StatusIsOK()); +// } + +// Note that we call GetTestTypeId() instead of GetTypeId< +// ::testing::Test>() here to get the type ID of testing::Test. This +// is to work around a suspected linker bug when using Google Test as +// a framework on Mac OS X. The bug causes GetTypeId< +// ::testing::Test>() to return different values depending on whether +// the call is from the Google Test framework itself or from user test +// code. GetTestTypeId() is guaranteed to always return the same +// value, as it always calls GetTypeId<>() from the Google Test +// framework. +#define GTEST_TEST(test_case_name, test_name)\ + GTEST_TEST_(test_case_name, test_name, \ + ::testing::Test, ::testing::internal::GetTestTypeId()) + +// Define this macro to 1 to omit the definition of TEST(), which +// is a generic name and clashes with some other libraries. +#if !GTEST_DONT_DEFINE_TEST +# define TEST(test_case_name, test_name) GTEST_TEST(test_case_name, test_name) +#endif + +// Defines a test that uses a test fixture. +// +// The first parameter is the name of the test fixture class, which +// also doubles as the test case name. The second parameter is the +// name of the test within the test case. +// +// A test fixture class must be declared earlier. The user should put +// his test code between braces after using this macro. Example: +// +// class FooTest : public testing::Test { +// protected: +// virtual void SetUp() { b_.AddElement(3); } +// +// Foo a_; +// Foo b_; +// }; +// +// TEST_F(FooTest, InitializesCorrectly) { +// EXPECT_TRUE(a_.StatusIsOK()); +// } +// +// TEST_F(FooTest, ReturnsElementCountCorrectly) { +// EXPECT_EQ(0, a_.size()); +// EXPECT_EQ(1, b_.size()); +// } + +#define TEST_F(test_fixture, test_name)\ + GTEST_TEST_(test_fixture, test_name, test_fixture, \ + ::testing::internal::GetTypeId()) + +} // namespace testing + +// Use this function in main() to run all tests. It returns 0 if all +// tests are successful, or 1 otherwise. +// +// RUN_ALL_TESTS() should be invoked after the command line has been +// parsed by InitGoogleTest(). +// +// This function was formerly a macro; thus, it is in the global +// namespace and has an all-caps name. +int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_; + +inline int RUN_ALL_TESTS() { + return ::testing::UnitTest::GetInstance()->Run(); +} + +#endif // GTEST_INCLUDE_GTEST_GTEST_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest_main.cc b/cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest_main.cc new file mode 100644 index 000000000..f30282255 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/fused-src/gtest/gtest_main.cc @@ -0,0 +1,38 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +#include + +#include "gtest/gtest.h" + +GTEST_API_ int main(int argc, char **argv) { + printf("Running main() from gtest_main.cc\n"); + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-death-test.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-death-test.h new file mode 100644 index 000000000..957a69c6a --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-death-test.h @@ -0,0 +1,294 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file defines the public API for death tests. It is +// #included by gtest.h so a user doesn't need to include this +// directly. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ +#define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ + +#include "gtest/internal/gtest-death-test-internal.h" + +namespace testing { + +// This flag controls the style of death tests. Valid values are "threadsafe", +// meaning that the death test child process will re-execute the test binary +// from the start, running only a single death test, or "fast", +// meaning that the child process will execute the test logic immediately +// after forking. +GTEST_DECLARE_string_(death_test_style); + +#if GTEST_HAS_DEATH_TEST + +namespace internal { + +// Returns a Boolean value indicating whether the caller is currently +// executing in the context of the death test child process. Tools such as +// Valgrind heap checkers may need this to modify their behavior in death +// tests. IMPORTANT: This is an internal utility. Using it may break the +// implementation of death tests. User code MUST NOT use it. +GTEST_API_ bool InDeathTestChild(); + +} // namespace internal + +// The following macros are useful for writing death tests. + +// Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is +// executed: +// +// 1. It generates a warning if there is more than one active +// thread. This is because it's safe to fork() or clone() only +// when there is a single thread. +// +// 2. The parent process clone()s a sub-process and runs the death +// test in it; the sub-process exits with code 0 at the end of the +// death test, if it hasn't exited already. +// +// 3. The parent process waits for the sub-process to terminate. +// +// 4. The parent process checks the exit code and error message of +// the sub-process. +// +// Examples: +// +// ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number"); +// for (int i = 0; i < 5; i++) { +// EXPECT_DEATH(server.ProcessRequest(i), +// "Invalid request .* in ProcessRequest()") +// << "Failed to die on request " << i; +// } +// +// ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting"); +// +// bool KilledBySIGHUP(int exit_code) { +// return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP; +// } +// +// ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!"); +// +// On the regular expressions used in death tests: +// +// On POSIX-compliant systems (*nix), we use the library, +// which uses the POSIX extended regex syntax. +// +// On other platforms (e.g. Windows), we only support a simple regex +// syntax implemented as part of Google Test. This limited +// implementation should be enough most of the time when writing +// death tests; though it lacks many features you can find in PCRE +// or POSIX extended regex syntax. For example, we don't support +// union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and +// repetition count ("x{5,7}"), among others. +// +// Below is the syntax that we do support. We chose it to be a +// subset of both PCRE and POSIX extended regex, so it's easy to +// learn wherever you come from. In the following: 'A' denotes a +// literal character, period (.), or a single \\ escape sequence; +// 'x' and 'y' denote regular expressions; 'm' and 'n' are for +// natural numbers. +// +// c matches any literal character c +// \\d matches any decimal digit +// \\D matches any character that's not a decimal digit +// \\f matches \f +// \\n matches \n +// \\r matches \r +// \\s matches any ASCII whitespace, including \n +// \\S matches any character that's not a whitespace +// \\t matches \t +// \\v matches \v +// \\w matches any letter, _, or decimal digit +// \\W matches any character that \\w doesn't match +// \\c matches any literal character c, which must be a punctuation +// . matches any single character except \n +// A? matches 0 or 1 occurrences of A +// A* matches 0 or many occurrences of A +// A+ matches 1 or many occurrences of A +// ^ matches the beginning of a string (not that of each line) +// $ matches the end of a string (not that of each line) +// xy matches x followed by y +// +// If you accidentally use PCRE or POSIX extended regex features +// not implemented by us, you will get a run-time failure. In that +// case, please try to rewrite your regular expression within the +// above syntax. +// +// This implementation is *not* meant to be as highly tuned or robust +// as a compiled regex library, but should perform well enough for a +// death test, which already incurs significant overhead by launching +// a child process. +// +// Known caveats: +// +// A "threadsafe" style death test obtains the path to the test +// program from argv[0] and re-executes it in the sub-process. For +// simplicity, the current implementation doesn't search the PATH +// when launching the sub-process. This means that the user must +// invoke the test program via a path that contains at least one +// path separator (e.g. path/to/foo_test and +// /absolute/path/to/bar_test are fine, but foo_test is not). This +// is rarely a problem as people usually don't put the test binary +// directory in PATH. +// +// TODO(wan@google.com): make thread-safe death tests search the PATH. + +// Asserts that a given statement causes the program to exit, with an +// integer exit status that satisfies predicate, and emitting error output +// that matches regex. +# define ASSERT_EXIT(statement, predicate, regex) \ + GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_) + +// Like ASSERT_EXIT, but continues on to successive tests in the +// test case, if any: +# define EXPECT_EXIT(statement, predicate, regex) \ + GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_) + +// Asserts that a given statement causes the program to exit, either by +// explicitly exiting with a nonzero exit code or being killed by a +// signal, and emitting error output that matches regex. +# define ASSERT_DEATH(statement, regex) \ + ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) + +// Like ASSERT_DEATH, but continues on to successive tests in the +// test case, if any: +# define EXPECT_DEATH(statement, regex) \ + EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex) + +// Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*: + +// Tests that an exit code describes a normal exit with a given exit code. +class GTEST_API_ ExitedWithCode { + public: + explicit ExitedWithCode(int exit_code); + bool operator()(int exit_status) const; + private: + // No implementation - assignment is unsupported. + void operator=(const ExitedWithCode& other); + + const int exit_code_; +}; + +# if !GTEST_OS_WINDOWS +// Tests that an exit code describes an exit due to termination by a +// given signal. +class GTEST_API_ KilledBySignal { + public: + explicit KilledBySignal(int signum); + bool operator()(int exit_status) const; + private: + const int signum_; +}; +# endif // !GTEST_OS_WINDOWS + +// EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode. +// The death testing framework causes this to have interesting semantics, +// since the sideeffects of the call are only visible in opt mode, and not +// in debug mode. +// +// In practice, this can be used to test functions that utilize the +// LOG(DFATAL) macro using the following style: +// +// int DieInDebugOr12(int* sideeffect) { +// if (sideeffect) { +// *sideeffect = 12; +// } +// LOG(DFATAL) << "death"; +// return 12; +// } +// +// TEST(TestCase, TestDieOr12WorksInDgbAndOpt) { +// int sideeffect = 0; +// // Only asserts in dbg. +// EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death"); +// +// #ifdef NDEBUG +// // opt-mode has sideeffect visible. +// EXPECT_EQ(12, sideeffect); +// #else +// // dbg-mode no visible sideeffect. +// EXPECT_EQ(0, sideeffect); +// #endif +// } +// +// This will assert that DieInDebugReturn12InOpt() crashes in debug +// mode, usually due to a DCHECK or LOG(DFATAL), but returns the +// appropriate fallback value (12 in this case) in opt mode. If you +// need to test that a function has appropriate side-effects in opt +// mode, include assertions against the side-effects. A general +// pattern for this is: +// +// EXPECT_DEBUG_DEATH({ +// // Side-effects here will have an effect after this statement in +// // opt mode, but none in debug mode. +// EXPECT_EQ(12, DieInDebugOr12(&sideeffect)); +// }, "death"); +// +# ifdef NDEBUG + +# define EXPECT_DEBUG_DEATH(statement, regex) \ + GTEST_EXECUTE_STATEMENT_(statement, regex) + +# define ASSERT_DEBUG_DEATH(statement, regex) \ + GTEST_EXECUTE_STATEMENT_(statement, regex) + +# else + +# define EXPECT_DEBUG_DEATH(statement, regex) \ + EXPECT_DEATH(statement, regex) + +# define ASSERT_DEBUG_DEATH(statement, regex) \ + ASSERT_DEATH(statement, regex) + +# endif // NDEBUG for EXPECT_DEBUG_DEATH +#endif // GTEST_HAS_DEATH_TEST + +// EXPECT_DEATH_IF_SUPPORTED(statement, regex) and +// ASSERT_DEATH_IF_SUPPORTED(statement, regex) expand to real death tests if +// death tests are supported; otherwise they just issue a warning. This is +// useful when you are combining death test assertions with normal test +// assertions in one test. +#if GTEST_HAS_DEATH_TEST +# define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ + EXPECT_DEATH(statement, regex) +# define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ + ASSERT_DEATH(statement, regex) +#else +# define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ + GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, ) +# define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ + GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, return) +#endif + +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-message.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-message.h new file mode 100644 index 000000000..fe879bca7 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-message.h @@ -0,0 +1,250 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file defines the Message class. +// +// IMPORTANT NOTE: Due to limitation of the C++ language, we have to +// leave some internal implementation details in this header file. +// They are clearly marked by comments like this: +// +// // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +// +// Such code is NOT meant to be used by a user directly, and is subject +// to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user +// program! + +#ifndef GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ +#define GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ + +#include + +#include "gtest/internal/gtest-port.h" + +// Ensures that there is at least one operator<< in the global namespace. +// See Message& operator<<(...) below for why. +void operator<<(const testing::internal::Secret&, int); + +namespace testing { + +// The Message class works like an ostream repeater. +// +// Typical usage: +// +// 1. You stream a bunch of values to a Message object. +// It will remember the text in a stringstream. +// 2. Then you stream the Message object to an ostream. +// This causes the text in the Message to be streamed +// to the ostream. +// +// For example; +// +// testing::Message foo; +// foo << 1 << " != " << 2; +// std::cout << foo; +// +// will print "1 != 2". +// +// Message is not intended to be inherited from. In particular, its +// destructor is not virtual. +// +// Note that stringstream behaves differently in gcc and in MSVC. You +// can stream a NULL char pointer to it in the former, but not in the +// latter (it causes an access violation if you do). The Message +// class hides this difference by treating a NULL char pointer as +// "(null)". +class GTEST_API_ Message { + private: + // The type of basic IO manipulators (endl, ends, and flush) for + // narrow streams. + typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&); + + public: + // Constructs an empty Message. + Message(); + + // Copy constructor. + Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT + *ss_ << msg.GetString(); + } + + // Constructs a Message from a C-string. + explicit Message(const char* str) : ss_(new ::std::stringstream) { + *ss_ << str; + } + +#if GTEST_OS_SYMBIAN + // Streams a value (either a pointer or not) to this object. + template + inline Message& operator <<(const T& value) { + StreamHelper(typename internal::is_pointer::type(), value); + return *this; + } +#else + // Streams a non-pointer value to this object. + template + inline Message& operator <<(const T& val) { + // Some libraries overload << for STL containers. These + // overloads are defined in the global namespace instead of ::std. + // + // C++'s symbol lookup rule (i.e. Koenig lookup) says that these + // overloads are visible in either the std namespace or the global + // namespace, but not other namespaces, including the testing + // namespace which Google Test's Message class is in. + // + // To allow STL containers (and other types that has a << operator + // defined in the global namespace) to be used in Google Test + // assertions, testing::Message must access the custom << operator + // from the global namespace. With this using declaration, + // overloads of << defined in the global namespace and those + // visible via Koenig lookup are both exposed in this function. + using ::operator <<; + *ss_ << val; + return *this; + } + + // Streams a pointer value to this object. + // + // This function is an overload of the previous one. When you + // stream a pointer to a Message, this definition will be used as it + // is more specialized. (The C++ Standard, section + // [temp.func.order].) If you stream a non-pointer, then the + // previous definition will be used. + // + // The reason for this overload is that streaming a NULL pointer to + // ostream is undefined behavior. Depending on the compiler, you + // may get "0", "(nil)", "(null)", or an access violation. To + // ensure consistent result across compilers, we always treat NULL + // as "(null)". + template + inline Message& operator <<(T* const& pointer) { // NOLINT + if (pointer == NULL) { + *ss_ << "(null)"; + } else { + *ss_ << pointer; + } + return *this; + } +#endif // GTEST_OS_SYMBIAN + + // Since the basic IO manipulators are overloaded for both narrow + // and wide streams, we have to provide this specialized definition + // of operator <<, even though its body is the same as the + // templatized version above. Without this definition, streaming + // endl or other basic IO manipulators to Message will confuse the + // compiler. + Message& operator <<(BasicNarrowIoManip val) { + *ss_ << val; + return *this; + } + + // Instead of 1/0, we want to see true/false for bool values. + Message& operator <<(bool b) { + return *this << (b ? "true" : "false"); + } + + // These two overloads allow streaming a wide C string to a Message + // using the UTF-8 encoding. + Message& operator <<(const wchar_t* wide_c_str); + Message& operator <<(wchar_t* wide_c_str); + +#if GTEST_HAS_STD_WSTRING + // Converts the given wide string to a narrow string using the UTF-8 + // encoding, and streams the result to this Message object. + Message& operator <<(const ::std::wstring& wstr); +#endif // GTEST_HAS_STD_WSTRING + +#if GTEST_HAS_GLOBAL_WSTRING + // Converts the given wide string to a narrow string using the UTF-8 + // encoding, and streams the result to this Message object. + Message& operator <<(const ::wstring& wstr); +#endif // GTEST_HAS_GLOBAL_WSTRING + + // Gets the text streamed to this object so far as an std::string. + // Each '\0' character in the buffer is replaced with "\\0". + // + // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. + std::string GetString() const; + + private: + +#if GTEST_OS_SYMBIAN + // These are needed as the Nokia Symbian Compiler cannot decide between + // const T& and const T* in a function template. The Nokia compiler _can_ + // decide between class template specializations for T and T*, so a + // tr1::type_traits-like is_pointer works, and we can overload on that. + template + inline void StreamHelper(internal::true_type /*is_pointer*/, T* pointer) { + if (pointer == NULL) { + *ss_ << "(null)"; + } else { + *ss_ << pointer; + } + } + template + inline void StreamHelper(internal::false_type /*is_pointer*/, + const T& value) { + // See the comments in Message& operator <<(const T&) above for why + // we need this using statement. + using ::operator <<; + *ss_ << value; + } +#endif // GTEST_OS_SYMBIAN + + // We'll hold the text streamed to this object here. + const internal::scoped_ptr< ::std::stringstream> ss_; + + // We declare (but don't implement) this to prevent the compiler + // from implementing the assignment operator. + void operator=(const Message&); +}; + +// Streams a Message to an ostream. +inline std::ostream& operator <<(std::ostream& os, const Message& sb) { + return os << sb.GetString(); +} + +namespace internal { + +// Converts a streamable value to an std::string. A NULL pointer is +// converted to "(null)". When the input value is a ::string, +// ::std::string, ::wstring, or ::std::wstring object, each NUL +// character in it is replaced with "\\0". +template +std::string StreamableToString(const T& streamable) { + return (Message() << streamable).GetString(); +} + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-param-test.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-param-test.h new file mode 100644 index 000000000..d6702c8f1 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-param-test.h @@ -0,0 +1,1421 @@ +// This file was GENERATED by command: +// pump.py gtest-param-test.h.pump +// DO NOT EDIT BY HAND!!! + +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: vladl@google.com (Vlad Losev) +// +// Macros and functions for implementing parameterized tests +// in Google C++ Testing Framework (Google Test) +// +// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! +// +#ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ +#define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ + + +// Value-parameterized tests allow you to test your code with different +// parameters without writing multiple copies of the same test. +// +// Here is how you use value-parameterized tests: + +#if 0 + +// To write value-parameterized tests, first you should define a fixture +// class. It is usually derived from testing::TestWithParam (see below for +// another inheritance scheme that's sometimes useful in more complicated +// class hierarchies), where the type of your parameter values. +// TestWithParam is itself derived from testing::Test. T can be any +// copyable type. If it's a raw pointer, you are responsible for managing the +// lifespan of the pointed values. + +class FooTest : public ::testing::TestWithParam { + // You can implement all the usual class fixture members here. +}; + +// Then, use the TEST_P macro to define as many parameterized tests +// for this fixture as you want. The _P suffix is for "parameterized" +// or "pattern", whichever you prefer to think. + +TEST_P(FooTest, DoesBlah) { + // Inside a test, access the test parameter with the GetParam() method + // of the TestWithParam class: + EXPECT_TRUE(foo.Blah(GetParam())); + ... +} + +TEST_P(FooTest, HasBlahBlah) { + ... +} + +// Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test +// case with any set of parameters you want. Google Test defines a number +// of functions for generating test parameters. They return what we call +// (surprise!) parameter generators. Here is a summary of them, which +// are all in the testing namespace: +// +// +// Range(begin, end [, step]) - Yields values {begin, begin+step, +// begin+step+step, ...}. The values do not +// include end. step defaults to 1. +// Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}. +// ValuesIn(container) - Yields values from a C-style array, an STL +// ValuesIn(begin,end) container, or an iterator range [begin, end). +// Bool() - Yields sequence {false, true}. +// Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product +// for the math savvy) of the values generated +// by the N generators. +// +// For more details, see comments at the definitions of these functions below +// in this file. +// +// The following statement will instantiate tests from the FooTest test case +// each with parameter values "meeny", "miny", and "moe". + +INSTANTIATE_TEST_CASE_P(InstantiationName, + FooTest, + Values("meeny", "miny", "moe")); + +// To distinguish different instances of the pattern, (yes, you +// can instantiate it more then once) the first argument to the +// INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the +// actual test case name. Remember to pick unique prefixes for different +// instantiations. The tests from the instantiation above will have +// these names: +// +// * InstantiationName/FooTest.DoesBlah/0 for "meeny" +// * InstantiationName/FooTest.DoesBlah/1 for "miny" +// * InstantiationName/FooTest.DoesBlah/2 for "moe" +// * InstantiationName/FooTest.HasBlahBlah/0 for "meeny" +// * InstantiationName/FooTest.HasBlahBlah/1 for "miny" +// * InstantiationName/FooTest.HasBlahBlah/2 for "moe" +// +// You can use these names in --gtest_filter. +// +// This statement will instantiate all tests from FooTest again, each +// with parameter values "cat" and "dog": + +const char* pets[] = {"cat", "dog"}; +INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets)); + +// The tests from the instantiation above will have these names: +// +// * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat" +// * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog" +// * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat" +// * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog" +// +// Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests +// in the given test case, whether their definitions come before or +// AFTER the INSTANTIATE_TEST_CASE_P statement. +// +// Please also note that generator expressions (including parameters to the +// generators) are evaluated in InitGoogleTest(), after main() has started. +// This allows the user on one hand, to adjust generator parameters in order +// to dynamically determine a set of tests to run and on the other hand, +// give the user a chance to inspect the generated tests with Google Test +// reflection API before RUN_ALL_TESTS() is executed. +// +// You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc +// for more examples. +// +// In the future, we plan to publish the API for defining new parameter +// generators. But for now this interface remains part of the internal +// implementation and is subject to change. +// +// +// A parameterized test fixture must be derived from testing::Test and from +// testing::WithParamInterface, where T is the type of the parameter +// values. Inheriting from TestWithParam satisfies that requirement because +// TestWithParam inherits from both Test and WithParamInterface. In more +// complicated hierarchies, however, it is occasionally useful to inherit +// separately from Test and WithParamInterface. For example: + +class BaseTest : public ::testing::Test { + // You can inherit all the usual members for a non-parameterized test + // fixture here. +}; + +class DerivedTest : public BaseTest, public ::testing::WithParamInterface { + // The usual test fixture members go here too. +}; + +TEST_F(BaseTest, HasFoo) { + // This is an ordinary non-parameterized test. +} + +TEST_P(DerivedTest, DoesBlah) { + // GetParam works just the same here as if you inherit from TestWithParam. + EXPECT_TRUE(foo.Blah(GetParam())); +} + +#endif // 0 + +#include "gtest/internal/gtest-port.h" + +#if !GTEST_OS_SYMBIAN +# include +#endif + +// scripts/fuse_gtest.py depends on gtest's own header being #included +// *unconditionally*. Therefore these #includes cannot be moved +// inside #if GTEST_HAS_PARAM_TEST. +#include "gtest/internal/gtest-internal.h" +#include "gtest/internal/gtest-param-util.h" +#include "gtest/internal/gtest-param-util-generated.h" + +#if GTEST_HAS_PARAM_TEST + +namespace testing { + +// Functions producing parameter generators. +// +// Google Test uses these generators to produce parameters for value- +// parameterized tests. When a parameterized test case is instantiated +// with a particular generator, Google Test creates and runs tests +// for each element in the sequence produced by the generator. +// +// In the following sample, tests from test case FooTest are instantiated +// each three times with parameter values 3, 5, and 8: +// +// class FooTest : public TestWithParam { ... }; +// +// TEST_P(FooTest, TestThis) { +// } +// TEST_P(FooTest, TestThat) { +// } +// INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8)); +// + +// Range() returns generators providing sequences of values in a range. +// +// Synopsis: +// Range(start, end) +// - returns a generator producing a sequence of values {start, start+1, +// start+2, ..., }. +// Range(start, end, step) +// - returns a generator producing a sequence of values {start, start+step, +// start+step+step, ..., }. +// Notes: +// * The generated sequences never include end. For example, Range(1, 5) +// returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) +// returns a generator producing {1, 3, 5, 7}. +// * start and end must have the same type. That type may be any integral or +// floating-point type or a user defined type satisfying these conditions: +// * It must be assignable (have operator=() defined). +// * It must have operator+() (operator+(int-compatible type) for +// two-operand version). +// * It must have operator<() defined. +// Elements in the resulting sequences will also have that type. +// * Condition start < end must be satisfied in order for resulting sequences +// to contain any elements. +// +template +internal::ParamGenerator Range(T start, T end, IncrementT step) { + return internal::ParamGenerator( + new internal::RangeGenerator(start, end, step)); +} + +template +internal::ParamGenerator Range(T start, T end) { + return Range(start, end, 1); +} + +// ValuesIn() function allows generation of tests with parameters coming from +// a container. +// +// Synopsis: +// ValuesIn(const T (&array)[N]) +// - returns a generator producing sequences with elements from +// a C-style array. +// ValuesIn(const Container& container) +// - returns a generator producing sequences with elements from +// an STL-style container. +// ValuesIn(Iterator begin, Iterator end) +// - returns a generator producing sequences with elements from +// a range [begin, end) defined by a pair of STL-style iterators. These +// iterators can also be plain C pointers. +// +// Please note that ValuesIn copies the values from the containers +// passed in and keeps them to generate tests in RUN_ALL_TESTS(). +// +// Examples: +// +// This instantiates tests from test case StringTest +// each with C-string values of "foo", "bar", and "baz": +// +// const char* strings[] = {"foo", "bar", "baz"}; +// INSTANTIATE_TEST_CASE_P(StringSequence, SrtingTest, ValuesIn(strings)); +// +// This instantiates tests from test case StlStringTest +// each with STL strings with values "a" and "b": +// +// ::std::vector< ::std::string> GetParameterStrings() { +// ::std::vector< ::std::string> v; +// v.push_back("a"); +// v.push_back("b"); +// return v; +// } +// +// INSTANTIATE_TEST_CASE_P(CharSequence, +// StlStringTest, +// ValuesIn(GetParameterStrings())); +// +// +// This will also instantiate tests from CharTest +// each with parameter values 'a' and 'b': +// +// ::std::list GetParameterChars() { +// ::std::list list; +// list.push_back('a'); +// list.push_back('b'); +// return list; +// } +// ::std::list l = GetParameterChars(); +// INSTANTIATE_TEST_CASE_P(CharSequence2, +// CharTest, +// ValuesIn(l.begin(), l.end())); +// +template +internal::ParamGenerator< + typename ::testing::internal::IteratorTraits::value_type> +ValuesIn(ForwardIterator begin, ForwardIterator end) { + typedef typename ::testing::internal::IteratorTraits + ::value_type ParamType; + return internal::ParamGenerator( + new internal::ValuesInIteratorRangeGenerator(begin, end)); +} + +template +internal::ParamGenerator ValuesIn(const T (&array)[N]) { + return ValuesIn(array, array + N); +} + +template +internal::ParamGenerator ValuesIn( + const Container& container) { + return ValuesIn(container.begin(), container.end()); +} + +// Values() allows generating tests from explicitly specified list of +// parameters. +// +// Synopsis: +// Values(T v1, T v2, ..., T vN) +// - returns a generator producing sequences with elements v1, v2, ..., vN. +// +// For example, this instantiates tests from test case BarTest each +// with values "one", "two", and "three": +// +// INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three")); +// +// This instantiates tests from test case BazTest each with values 1, 2, 3.5. +// The exact type of values will depend on the type of parameter in BazTest. +// +// INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5)); +// +// Currently, Values() supports from 1 to 50 parameters. +// +template +internal::ValueArray1 Values(T1 v1) { + return internal::ValueArray1(v1); +} + +template +internal::ValueArray2 Values(T1 v1, T2 v2) { + return internal::ValueArray2(v1, v2); +} + +template +internal::ValueArray3 Values(T1 v1, T2 v2, T3 v3) { + return internal::ValueArray3(v1, v2, v3); +} + +template +internal::ValueArray4 Values(T1 v1, T2 v2, T3 v3, T4 v4) { + return internal::ValueArray4(v1, v2, v3, v4); +} + +template +internal::ValueArray5 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5) { + return internal::ValueArray5(v1, v2, v3, v4, v5); +} + +template +internal::ValueArray6 Values(T1 v1, T2 v2, T3 v3, + T4 v4, T5 v5, T6 v6) { + return internal::ValueArray6(v1, v2, v3, v4, v5, v6); +} + +template +internal::ValueArray7 Values(T1 v1, T2 v2, T3 v3, + T4 v4, T5 v5, T6 v6, T7 v7) { + return internal::ValueArray7(v1, v2, v3, v4, v5, + v6, v7); +} + +template +internal::ValueArray8 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8) { + return internal::ValueArray8(v1, v2, v3, v4, + v5, v6, v7, v8); +} + +template +internal::ValueArray9 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9) { + return internal::ValueArray9(v1, v2, v3, + v4, v5, v6, v7, v8, v9); +} + +template +internal::ValueArray10 Values(T1 v1, + T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10) { + return internal::ValueArray10(v1, + v2, v3, v4, v5, v6, v7, v8, v9, v10); +} + +template +internal::ValueArray11 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11) { + return internal::ValueArray11(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11); +} + +template +internal::ValueArray12 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12) { + return internal::ValueArray12(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12); +} + +template +internal::ValueArray13 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13) { + return internal::ValueArray13(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13); +} + +template +internal::ValueArray14 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) { + return internal::ValueArray14(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, + v14); +} + +template +internal::ValueArray15 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, + T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) { + return internal::ValueArray15(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, + v13, v14, v15); +} + +template +internal::ValueArray16 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16) { + return internal::ValueArray16(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, + v12, v13, v14, v15, v16); +} + +template +internal::ValueArray17 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17) { + return internal::ValueArray17(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, + v11, v12, v13, v14, v15, v16, v17); +} + +template +internal::ValueArray18 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, + T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18) { + return internal::ValueArray18(v1, v2, v3, v4, v5, v6, v7, v8, v9, + v10, v11, v12, v13, v14, v15, v16, v17, v18); +} + +template +internal::ValueArray19 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, + T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, + T15 v15, T16 v16, T17 v17, T18 v18, T19 v19) { + return internal::ValueArray19(v1, v2, v3, v4, v5, v6, v7, v8, + v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19); +} + +template +internal::ValueArray20 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, + T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20) { + return internal::ValueArray20(v1, v2, v3, v4, v5, v6, v7, + v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20); +} + +template +internal::ValueArray21 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, + T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21) { + return internal::ValueArray21(v1, v2, v3, v4, v5, v6, + v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21); +} + +template +internal::ValueArray22 Values(T1 v1, T2 v2, T3 v3, + T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22) { + return internal::ValueArray22(v1, v2, v3, v4, + v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, + v20, v21, v22); +} + +template +internal::ValueArray23 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22, T23 v23) { + return internal::ValueArray23(v1, v2, v3, + v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, + v20, v21, v22, v23); +} + +template +internal::ValueArray24 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22, T23 v23, T24 v24) { + return internal::ValueArray24(v1, v2, + v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, + v19, v20, v21, v22, v23, v24); +} + +template +internal::ValueArray25 Values(T1 v1, + T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, + T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, + T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25) { + return internal::ValueArray25(v1, + v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, + v18, v19, v20, v21, v22, v23, v24, v25); +} + +template +internal::ValueArray26 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26) { + return internal::ValueArray26(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, + v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26); +} + +template +internal::ValueArray27 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27) { + return internal::ValueArray27(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, + v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27); +} + +template +internal::ValueArray28 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28) { + return internal::ValueArray28(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, + v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, + v28); +} + +template +internal::ValueArray29 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29) { + return internal::ValueArray29(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, + v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, + v27, v28, v29); +} + +template +internal::ValueArray30 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, + T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, + T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, + T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) { + return internal::ValueArray30(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, + v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, + v26, v27, v28, v29, v30); +} + +template +internal::ValueArray31 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) { + return internal::ValueArray31(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, + v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, + v25, v26, v27, v28, v29, v30, v31); +} + +template +internal::ValueArray32 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, + T32 v32) { + return internal::ValueArray32(v1, v2, v3, v4, v5, v6, v7, v8, v9, + v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, + v24, v25, v26, v27, v28, v29, v30, v31, v32); +} + +template +internal::ValueArray33 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, + T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, + T32 v32, T33 v33) { + return internal::ValueArray33(v1, v2, v3, v4, v5, v6, v7, v8, + v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, + v24, v25, v26, v27, v28, v29, v30, v31, v32, v33); +} + +template +internal::ValueArray34 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, + T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, + T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, + T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, + T31 v31, T32 v32, T33 v33, T34 v34) { + return internal::ValueArray34(v1, v2, v3, v4, v5, v6, v7, + v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, + v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34); +} + +template +internal::ValueArray35 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, + T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, + T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, + T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35) { + return internal::ValueArray35(v1, v2, v3, v4, v5, v6, + v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, + v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35); +} + +template +internal::ValueArray36 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, + T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, + T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, + T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36) { + return internal::ValueArray36(v1, v2, v3, v4, + v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, + v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, + v34, v35, v36); +} + +template +internal::ValueArray37 Values(T1 v1, T2 v2, T3 v3, + T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, + T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, + T37 v37) { + return internal::ValueArray37(v1, v2, v3, + v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, + v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, + v34, v35, v36, v37); +} + +template +internal::ValueArray38 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, + T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, + T37 v37, T38 v38) { + return internal::ValueArray38(v1, v2, + v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, + v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, + v33, v34, v35, v36, v37, v38); +} + +template +internal::ValueArray39 Values(T1 v1, T2 v2, + T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, + T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, + T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, + T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, + T37 v37, T38 v38, T39 v39) { + return internal::ValueArray39(v1, + v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, + v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, + v32, v33, v34, v35, v36, v37, v38, v39); +} + +template +internal::ValueArray40 Values(T1 v1, + T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, + T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, + T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, + T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, + T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) { + return internal::ValueArray40(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, + v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, + v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40); +} + +template +internal::ValueArray41 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41) { + return internal::ValueArray41(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, + v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, + v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41); +} + +template +internal::ValueArray42 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42) { + return internal::ValueArray42(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, + v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, + v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, + v42); +} + +template +internal::ValueArray43 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43) { + return internal::ValueArray43(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, + v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, + v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, + v41, v42, v43); +} + +template +internal::ValueArray44 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44) { + return internal::ValueArray44(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, + v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, + v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, + v40, v41, v42, v43, v44); +} + +template +internal::ValueArray45 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, + T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, + T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, + T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, + T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, + T41 v41, T42 v42, T43 v43, T44 v44, T45 v45) { + return internal::ValueArray45(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, + v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, + v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, + v39, v40, v41, v42, v43, v44, v45); +} + +template +internal::ValueArray46 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, + T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, + T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) { + return internal::ValueArray46(v1, v2, v3, v4, v5, v6, v7, v8, v9, + v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, + v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, + v38, v39, v40, v41, v42, v43, v44, v45, v46); +} + +template +internal::ValueArray47 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, + T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, + T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) { + return internal::ValueArray47(v1, v2, v3, v4, v5, v6, v7, v8, + v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, + v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, + v38, v39, v40, v41, v42, v43, v44, v45, v46, v47); +} + +template +internal::ValueArray48 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, + T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, + T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, + T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, + T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, + T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, + T48 v48) { + return internal::ValueArray48(v1, v2, v3, v4, v5, v6, v7, + v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, + v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, + v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48); +} + +template +internal::ValueArray49 Values(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, + T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, + T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, + T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, + T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, + T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, + T47 v47, T48 v48, T49 v49) { + return internal::ValueArray49(v1, v2, v3, v4, v5, v6, + v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, + v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, + v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49); +} + +template +internal::ValueArray50 Values(T1 v1, T2 v2, T3 v3, T4 v4, + T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, + T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, + T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, + T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, + T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, + T46 v46, T47 v47, T48 v48, T49 v49, T50 v50) { + return internal::ValueArray50(v1, v2, v3, v4, + v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, + v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, + v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, + v48, v49, v50); +} + +// Bool() allows generating tests with parameters in a set of (false, true). +// +// Synopsis: +// Bool() +// - returns a generator producing sequences with elements {false, true}. +// +// It is useful when testing code that depends on Boolean flags. Combinations +// of multiple flags can be tested when several Bool()'s are combined using +// Combine() function. +// +// In the following example all tests in the test case FlagDependentTest +// will be instantiated twice with parameters false and true. +// +// class FlagDependentTest : public testing::TestWithParam { +// virtual void SetUp() { +// external_flag = GetParam(); +// } +// } +// INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool()); +// +inline internal::ParamGenerator Bool() { + return Values(false, true); +} + +# if GTEST_HAS_COMBINE +// Combine() allows the user to combine two or more sequences to produce +// values of a Cartesian product of those sequences' elements. +// +// Synopsis: +// Combine(gen1, gen2, ..., genN) +// - returns a generator producing sequences with elements coming from +// the Cartesian product of elements from the sequences generated by +// gen1, gen2, ..., genN. The sequence elements will have a type of +// tuple where T1, T2, ..., TN are the types +// of elements from sequences produces by gen1, gen2, ..., genN. +// +// Combine can have up to 10 arguments. This number is currently limited +// by the maximum number of elements in the tuple implementation used by Google +// Test. +// +// Example: +// +// This will instantiate tests in test case AnimalTest each one with +// the parameter values tuple("cat", BLACK), tuple("cat", WHITE), +// tuple("dog", BLACK), and tuple("dog", WHITE): +// +// enum Color { BLACK, GRAY, WHITE }; +// class AnimalTest +// : public testing::TestWithParam > {...}; +// +// TEST_P(AnimalTest, AnimalLooksNice) {...} +// +// INSTANTIATE_TEST_CASE_P(AnimalVariations, AnimalTest, +// Combine(Values("cat", "dog"), +// Values(BLACK, WHITE))); +// +// This will instantiate tests in FlagDependentTest with all variations of two +// Boolean flags: +// +// class FlagDependentTest +// : public testing::TestWithParam > { +// virtual void SetUp() { +// // Assigns external_flag_1 and external_flag_2 values from the tuple. +// tie(external_flag_1, external_flag_2) = GetParam(); +// } +// }; +// +// TEST_P(FlagDependentTest, TestFeature1) { +// // Test your code using external_flag_1 and external_flag_2 here. +// } +// INSTANTIATE_TEST_CASE_P(TwoBoolSequence, FlagDependentTest, +// Combine(Bool(), Bool())); +// +template +internal::CartesianProductHolder2 Combine( + const Generator1& g1, const Generator2& g2) { + return internal::CartesianProductHolder2( + g1, g2); +} + +template +internal::CartesianProductHolder3 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3) { + return internal::CartesianProductHolder3( + g1, g2, g3); +} + +template +internal::CartesianProductHolder4 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4) { + return internal::CartesianProductHolder4( + g1, g2, g3, g4); +} + +template +internal::CartesianProductHolder5 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5) { + return internal::CartesianProductHolder5( + g1, g2, g3, g4, g5); +} + +template +internal::CartesianProductHolder6 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5, const Generator6& g6) { + return internal::CartesianProductHolder6( + g1, g2, g3, g4, g5, g6); +} + +template +internal::CartesianProductHolder7 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5, const Generator6& g6, + const Generator7& g7) { + return internal::CartesianProductHolder7( + g1, g2, g3, g4, g5, g6, g7); +} + +template +internal::CartesianProductHolder8 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5, const Generator6& g6, + const Generator7& g7, const Generator8& g8) { + return internal::CartesianProductHolder8( + g1, g2, g3, g4, g5, g6, g7, g8); +} + +template +internal::CartesianProductHolder9 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5, const Generator6& g6, + const Generator7& g7, const Generator8& g8, const Generator9& g9) { + return internal::CartesianProductHolder9( + g1, g2, g3, g4, g5, g6, g7, g8, g9); +} + +template +internal::CartesianProductHolder10 Combine( + const Generator1& g1, const Generator2& g2, const Generator3& g3, + const Generator4& g4, const Generator5& g5, const Generator6& g6, + const Generator7& g7, const Generator8& g8, const Generator9& g9, + const Generator10& g10) { + return internal::CartesianProductHolder10( + g1, g2, g3, g4, g5, g6, g7, g8, g9, g10); +} +# endif // GTEST_HAS_COMBINE + + + +# define TEST_P(test_case_name, test_name) \ + class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ + : public test_case_name { \ + public: \ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \ + virtual void TestBody(); \ + private: \ + static int AddToRegistry() { \ + ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ + GetTestCasePatternHolder(\ + #test_case_name, __FILE__, __LINE__)->AddTestPattern(\ + #test_case_name, \ + #test_name, \ + new ::testing::internal::TestMetaFactory< \ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>()); \ + return 0; \ + } \ + static int gtest_registering_dummy_; \ + GTEST_DISALLOW_COPY_AND_ASSIGN_(\ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \ + }; \ + int GTEST_TEST_CLASS_NAME_(test_case_name, \ + test_name)::gtest_registering_dummy_ = \ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \ + void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() + +# define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator) \ + ::testing::internal::ParamGenerator \ + gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \ + int gtest_##prefix##test_case_name##_dummy_ = \ + ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ + GetTestCasePatternHolder(\ + #test_case_name, __FILE__, __LINE__)->AddTestCaseInstantiation(\ + #prefix, \ + >est_##prefix##test_case_name##_EvalGenerator_, \ + __FILE__, __LINE__) + +} // namespace testing + +#endif // GTEST_HAS_PARAM_TEST + +#endif // GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-param-test.h.pump b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-param-test.h.pump new file mode 100644 index 000000000..2dc9303b5 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-param-test.h.pump @@ -0,0 +1,487 @@ +$$ -*- mode: c++; -*- +$var n = 50 $$ Maximum length of Values arguments we want to support. +$var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: vladl@google.com (Vlad Losev) +// +// Macros and functions for implementing parameterized tests +// in Google C++ Testing Framework (Google Test) +// +// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! +// +#ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ +#define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ + + +// Value-parameterized tests allow you to test your code with different +// parameters without writing multiple copies of the same test. +// +// Here is how you use value-parameterized tests: + +#if 0 + +// To write value-parameterized tests, first you should define a fixture +// class. It is usually derived from testing::TestWithParam (see below for +// another inheritance scheme that's sometimes useful in more complicated +// class hierarchies), where the type of your parameter values. +// TestWithParam is itself derived from testing::Test. T can be any +// copyable type. If it's a raw pointer, you are responsible for managing the +// lifespan of the pointed values. + +class FooTest : public ::testing::TestWithParam { + // You can implement all the usual class fixture members here. +}; + +// Then, use the TEST_P macro to define as many parameterized tests +// for this fixture as you want. The _P suffix is for "parameterized" +// or "pattern", whichever you prefer to think. + +TEST_P(FooTest, DoesBlah) { + // Inside a test, access the test parameter with the GetParam() method + // of the TestWithParam class: + EXPECT_TRUE(foo.Blah(GetParam())); + ... +} + +TEST_P(FooTest, HasBlahBlah) { + ... +} + +// Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test +// case with any set of parameters you want. Google Test defines a number +// of functions for generating test parameters. They return what we call +// (surprise!) parameter generators. Here is a summary of them, which +// are all in the testing namespace: +// +// +// Range(begin, end [, step]) - Yields values {begin, begin+step, +// begin+step+step, ...}. The values do not +// include end. step defaults to 1. +// Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}. +// ValuesIn(container) - Yields values from a C-style array, an STL +// ValuesIn(begin,end) container, or an iterator range [begin, end). +// Bool() - Yields sequence {false, true}. +// Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product +// for the math savvy) of the values generated +// by the N generators. +// +// For more details, see comments at the definitions of these functions below +// in this file. +// +// The following statement will instantiate tests from the FooTest test case +// each with parameter values "meeny", "miny", and "moe". + +INSTANTIATE_TEST_CASE_P(InstantiationName, + FooTest, + Values("meeny", "miny", "moe")); + +// To distinguish different instances of the pattern, (yes, you +// can instantiate it more then once) the first argument to the +// INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the +// actual test case name. Remember to pick unique prefixes for different +// instantiations. The tests from the instantiation above will have +// these names: +// +// * InstantiationName/FooTest.DoesBlah/0 for "meeny" +// * InstantiationName/FooTest.DoesBlah/1 for "miny" +// * InstantiationName/FooTest.DoesBlah/2 for "moe" +// * InstantiationName/FooTest.HasBlahBlah/0 for "meeny" +// * InstantiationName/FooTest.HasBlahBlah/1 for "miny" +// * InstantiationName/FooTest.HasBlahBlah/2 for "moe" +// +// You can use these names in --gtest_filter. +// +// This statement will instantiate all tests from FooTest again, each +// with parameter values "cat" and "dog": + +const char* pets[] = {"cat", "dog"}; +INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets)); + +// The tests from the instantiation above will have these names: +// +// * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat" +// * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog" +// * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat" +// * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog" +// +// Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests +// in the given test case, whether their definitions come before or +// AFTER the INSTANTIATE_TEST_CASE_P statement. +// +// Please also note that generator expressions (including parameters to the +// generators) are evaluated in InitGoogleTest(), after main() has started. +// This allows the user on one hand, to adjust generator parameters in order +// to dynamically determine a set of tests to run and on the other hand, +// give the user a chance to inspect the generated tests with Google Test +// reflection API before RUN_ALL_TESTS() is executed. +// +// You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc +// for more examples. +// +// In the future, we plan to publish the API for defining new parameter +// generators. But for now this interface remains part of the internal +// implementation and is subject to change. +// +// +// A parameterized test fixture must be derived from testing::Test and from +// testing::WithParamInterface, where T is the type of the parameter +// values. Inheriting from TestWithParam satisfies that requirement because +// TestWithParam inherits from both Test and WithParamInterface. In more +// complicated hierarchies, however, it is occasionally useful to inherit +// separately from Test and WithParamInterface. For example: + +class BaseTest : public ::testing::Test { + // You can inherit all the usual members for a non-parameterized test + // fixture here. +}; + +class DerivedTest : public BaseTest, public ::testing::WithParamInterface { + // The usual test fixture members go here too. +}; + +TEST_F(BaseTest, HasFoo) { + // This is an ordinary non-parameterized test. +} + +TEST_P(DerivedTest, DoesBlah) { + // GetParam works just the same here as if you inherit from TestWithParam. + EXPECT_TRUE(foo.Blah(GetParam())); +} + +#endif // 0 + +#include "gtest/internal/gtest-port.h" + +#if !GTEST_OS_SYMBIAN +# include +#endif + +// scripts/fuse_gtest.py depends on gtest's own header being #included +// *unconditionally*. Therefore these #includes cannot be moved +// inside #if GTEST_HAS_PARAM_TEST. +#include "gtest/internal/gtest-internal.h" +#include "gtest/internal/gtest-param-util.h" +#include "gtest/internal/gtest-param-util-generated.h" + +#if GTEST_HAS_PARAM_TEST + +namespace testing { + +// Functions producing parameter generators. +// +// Google Test uses these generators to produce parameters for value- +// parameterized tests. When a parameterized test case is instantiated +// with a particular generator, Google Test creates and runs tests +// for each element in the sequence produced by the generator. +// +// In the following sample, tests from test case FooTest are instantiated +// each three times with parameter values 3, 5, and 8: +// +// class FooTest : public TestWithParam { ... }; +// +// TEST_P(FooTest, TestThis) { +// } +// TEST_P(FooTest, TestThat) { +// } +// INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8)); +// + +// Range() returns generators providing sequences of values in a range. +// +// Synopsis: +// Range(start, end) +// - returns a generator producing a sequence of values {start, start+1, +// start+2, ..., }. +// Range(start, end, step) +// - returns a generator producing a sequence of values {start, start+step, +// start+step+step, ..., }. +// Notes: +// * The generated sequences never include end. For example, Range(1, 5) +// returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) +// returns a generator producing {1, 3, 5, 7}. +// * start and end must have the same type. That type may be any integral or +// floating-point type or a user defined type satisfying these conditions: +// * It must be assignable (have operator=() defined). +// * It must have operator+() (operator+(int-compatible type) for +// two-operand version). +// * It must have operator<() defined. +// Elements in the resulting sequences will also have that type. +// * Condition start < end must be satisfied in order for resulting sequences +// to contain any elements. +// +template +internal::ParamGenerator Range(T start, T end, IncrementT step) { + return internal::ParamGenerator( + new internal::RangeGenerator(start, end, step)); +} + +template +internal::ParamGenerator Range(T start, T end) { + return Range(start, end, 1); +} + +// ValuesIn() function allows generation of tests with parameters coming from +// a container. +// +// Synopsis: +// ValuesIn(const T (&array)[N]) +// - returns a generator producing sequences with elements from +// a C-style array. +// ValuesIn(const Container& container) +// - returns a generator producing sequences with elements from +// an STL-style container. +// ValuesIn(Iterator begin, Iterator end) +// - returns a generator producing sequences with elements from +// a range [begin, end) defined by a pair of STL-style iterators. These +// iterators can also be plain C pointers. +// +// Please note that ValuesIn copies the values from the containers +// passed in and keeps them to generate tests in RUN_ALL_TESTS(). +// +// Examples: +// +// This instantiates tests from test case StringTest +// each with C-string values of "foo", "bar", and "baz": +// +// const char* strings[] = {"foo", "bar", "baz"}; +// INSTANTIATE_TEST_CASE_P(StringSequence, SrtingTest, ValuesIn(strings)); +// +// This instantiates tests from test case StlStringTest +// each with STL strings with values "a" and "b": +// +// ::std::vector< ::std::string> GetParameterStrings() { +// ::std::vector< ::std::string> v; +// v.push_back("a"); +// v.push_back("b"); +// return v; +// } +// +// INSTANTIATE_TEST_CASE_P(CharSequence, +// StlStringTest, +// ValuesIn(GetParameterStrings())); +// +// +// This will also instantiate tests from CharTest +// each with parameter values 'a' and 'b': +// +// ::std::list GetParameterChars() { +// ::std::list list; +// list.push_back('a'); +// list.push_back('b'); +// return list; +// } +// ::std::list l = GetParameterChars(); +// INSTANTIATE_TEST_CASE_P(CharSequence2, +// CharTest, +// ValuesIn(l.begin(), l.end())); +// +template +internal::ParamGenerator< + typename ::testing::internal::IteratorTraits::value_type> +ValuesIn(ForwardIterator begin, ForwardIterator end) { + typedef typename ::testing::internal::IteratorTraits + ::value_type ParamType; + return internal::ParamGenerator( + new internal::ValuesInIteratorRangeGenerator(begin, end)); +} + +template +internal::ParamGenerator ValuesIn(const T (&array)[N]) { + return ValuesIn(array, array + N); +} + +template +internal::ParamGenerator ValuesIn( + const Container& container) { + return ValuesIn(container.begin(), container.end()); +} + +// Values() allows generating tests from explicitly specified list of +// parameters. +// +// Synopsis: +// Values(T v1, T v2, ..., T vN) +// - returns a generator producing sequences with elements v1, v2, ..., vN. +// +// For example, this instantiates tests from test case BarTest each +// with values "one", "two", and "three": +// +// INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three")); +// +// This instantiates tests from test case BazTest each with values 1, 2, 3.5. +// The exact type of values will depend on the type of parameter in BazTest. +// +// INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5)); +// +// Currently, Values() supports from 1 to $n parameters. +// +$range i 1..n +$for i [[ +$range j 1..i + +template <$for j, [[typename T$j]]> +internal::ValueArray$i<$for j, [[T$j]]> Values($for j, [[T$j v$j]]) { + return internal::ValueArray$i<$for j, [[T$j]]>($for j, [[v$j]]); +} + +]] + +// Bool() allows generating tests with parameters in a set of (false, true). +// +// Synopsis: +// Bool() +// - returns a generator producing sequences with elements {false, true}. +// +// It is useful when testing code that depends on Boolean flags. Combinations +// of multiple flags can be tested when several Bool()'s are combined using +// Combine() function. +// +// In the following example all tests in the test case FlagDependentTest +// will be instantiated twice with parameters false and true. +// +// class FlagDependentTest : public testing::TestWithParam { +// virtual void SetUp() { +// external_flag = GetParam(); +// } +// } +// INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool()); +// +inline internal::ParamGenerator Bool() { + return Values(false, true); +} + +# if GTEST_HAS_COMBINE +// Combine() allows the user to combine two or more sequences to produce +// values of a Cartesian product of those sequences' elements. +// +// Synopsis: +// Combine(gen1, gen2, ..., genN) +// - returns a generator producing sequences with elements coming from +// the Cartesian product of elements from the sequences generated by +// gen1, gen2, ..., genN. The sequence elements will have a type of +// tuple where T1, T2, ..., TN are the types +// of elements from sequences produces by gen1, gen2, ..., genN. +// +// Combine can have up to $maxtuple arguments. This number is currently limited +// by the maximum number of elements in the tuple implementation used by Google +// Test. +// +// Example: +// +// This will instantiate tests in test case AnimalTest each one with +// the parameter values tuple("cat", BLACK), tuple("cat", WHITE), +// tuple("dog", BLACK), and tuple("dog", WHITE): +// +// enum Color { BLACK, GRAY, WHITE }; +// class AnimalTest +// : public testing::TestWithParam > {...}; +// +// TEST_P(AnimalTest, AnimalLooksNice) {...} +// +// INSTANTIATE_TEST_CASE_P(AnimalVariations, AnimalTest, +// Combine(Values("cat", "dog"), +// Values(BLACK, WHITE))); +// +// This will instantiate tests in FlagDependentTest with all variations of two +// Boolean flags: +// +// class FlagDependentTest +// : public testing::TestWithParam > { +// virtual void SetUp() { +// // Assigns external_flag_1 and external_flag_2 values from the tuple. +// tie(external_flag_1, external_flag_2) = GetParam(); +// } +// }; +// +// TEST_P(FlagDependentTest, TestFeature1) { +// // Test your code using external_flag_1 and external_flag_2 here. +// } +// INSTANTIATE_TEST_CASE_P(TwoBoolSequence, FlagDependentTest, +// Combine(Bool(), Bool())); +// +$range i 2..maxtuple +$for i [[ +$range j 1..i + +template <$for j, [[typename Generator$j]]> +internal::CartesianProductHolder$i<$for j, [[Generator$j]]> Combine( + $for j, [[const Generator$j& g$j]]) { + return internal::CartesianProductHolder$i<$for j, [[Generator$j]]>( + $for j, [[g$j]]); +} + +]] +# endif // GTEST_HAS_COMBINE + + + +# define TEST_P(test_case_name, test_name) \ + class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ + : public test_case_name { \ + public: \ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \ + virtual void TestBody(); \ + private: \ + static int AddToRegistry() { \ + ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ + GetTestCasePatternHolder(\ + #test_case_name, __FILE__, __LINE__)->AddTestPattern(\ + #test_case_name, \ + #test_name, \ + new ::testing::internal::TestMetaFactory< \ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>()); \ + return 0; \ + } \ + static int gtest_registering_dummy_; \ + GTEST_DISALLOW_COPY_AND_ASSIGN_(\ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \ + }; \ + int GTEST_TEST_CLASS_NAME_(test_case_name, \ + test_name)::gtest_registering_dummy_ = \ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \ + void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() + +# define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator) \ + ::testing::internal::ParamGenerator \ + gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \ + int gtest_##prefix##test_case_name##_dummy_ = \ + ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ + GetTestCasePatternHolder(\ + #test_case_name, __FILE__, __LINE__)->AddTestCaseInstantiation(\ + #prefix, \ + >est_##prefix##test_case_name##_EvalGenerator_, \ + __FILE__, __LINE__) + +} // namespace testing + +#endif // GTEST_HAS_PARAM_TEST + +#endif // GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-printers.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-printers.h new file mode 100644 index 000000000..0639d9f58 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-printers.h @@ -0,0 +1,855 @@ +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Google Test - The Google C++ Testing Framework +// +// This file implements a universal value printer that can print a +// value of any type T: +// +// void ::testing::internal::UniversalPrinter::Print(value, ostream_ptr); +// +// A user can teach this function how to print a class type T by +// defining either operator<<() or PrintTo() in the namespace that +// defines T. More specifically, the FIRST defined function in the +// following list will be used (assuming T is defined in namespace +// foo): +// +// 1. foo::PrintTo(const T&, ostream*) +// 2. operator<<(ostream&, const T&) defined in either foo or the +// global namespace. +// +// If none of the above is defined, it will print the debug string of +// the value if it is a protocol buffer, or print the raw bytes in the +// value otherwise. +// +// To aid debugging: when T is a reference type, the address of the +// value is also printed; when T is a (const) char pointer, both the +// pointer value and the NUL-terminated string it points to are +// printed. +// +// We also provide some convenient wrappers: +// +// // Prints a value to a string. For a (const or not) char +// // pointer, the NUL-terminated string (but not the pointer) is +// // printed. +// std::string ::testing::PrintToString(const T& value); +// +// // Prints a value tersely: for a reference type, the referenced +// // value (but not the address) is printed; for a (const or not) char +// // pointer, the NUL-terminated string (but not the pointer) is +// // printed. +// void ::testing::internal::UniversalTersePrint(const T& value, ostream*); +// +// // Prints value using the type inferred by the compiler. The difference +// // from UniversalTersePrint() is that this function prints both the +// // pointer and the NUL-terminated string for a (const or not) char pointer. +// void ::testing::internal::UniversalPrint(const T& value, ostream*); +// +// // Prints the fields of a tuple tersely to a string vector, one +// // element for each field. Tuple support must be enabled in +// // gtest-port.h. +// std::vector UniversalTersePrintTupleFieldsToStrings( +// const Tuple& value); +// +// Known limitation: +// +// The print primitives print the elements of an STL-style container +// using the compiler-inferred type of *iter where iter is a +// const_iterator of the container. When const_iterator is an input +// iterator but not a forward iterator, this inferred type may not +// match value_type, and the print output may be incorrect. In +// practice, this is rarely a problem as for most containers +// const_iterator is a forward iterator. We'll fix this if there's an +// actual need for it. Note that this fix cannot rely on value_type +// being defined as many user-defined container types don't have +// value_type. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ +#define GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ + +#include // NOLINT +#include +#include +#include +#include +#include "gtest/internal/gtest-port.h" +#include "gtest/internal/gtest-internal.h" + +namespace testing { + +// Definitions in the 'internal' and 'internal2' name spaces are +// subject to change without notice. DO NOT USE THEM IN USER CODE! +namespace internal2 { + +// Prints the given number of bytes in the given object to the given +// ostream. +GTEST_API_ void PrintBytesInObjectTo(const unsigned char* obj_bytes, + size_t count, + ::std::ostream* os); + +// For selecting which printer to use when a given type has neither << +// nor PrintTo(). +enum TypeKind { + kProtobuf, // a protobuf type + kConvertibleToInteger, // a type implicitly convertible to BiggestInt + // (e.g. a named or unnamed enum type) + kOtherType // anything else +}; + +// TypeWithoutFormatter::PrintValue(value, os) is called +// by the universal printer to print a value of type T when neither +// operator<< nor PrintTo() is defined for T, where kTypeKind is the +// "kind" of T as defined by enum TypeKind. +template +class TypeWithoutFormatter { + public: + // This default version is called when kTypeKind is kOtherType. + static void PrintValue(const T& value, ::std::ostream* os) { + PrintBytesInObjectTo(reinterpret_cast(&value), + sizeof(value), os); + } +}; + +// We print a protobuf using its ShortDebugString() when the string +// doesn't exceed this many characters; otherwise we print it using +// DebugString() for better readability. +const size_t kProtobufOneLinerMaxLength = 50; + +template +class TypeWithoutFormatter { + public: + static void PrintValue(const T& value, ::std::ostream* os) { + const ::testing::internal::string short_str = value.ShortDebugString(); + const ::testing::internal::string pretty_str = + short_str.length() <= kProtobufOneLinerMaxLength ? + short_str : ("\n" + value.DebugString()); + *os << ("<" + pretty_str + ">"); + } +}; + +template +class TypeWithoutFormatter { + public: + // Since T has no << operator or PrintTo() but can be implicitly + // converted to BiggestInt, we print it as a BiggestInt. + // + // Most likely T is an enum type (either named or unnamed), in which + // case printing it as an integer is the desired behavior. In case + // T is not an enum, printing it as an integer is the best we can do + // given that it has no user-defined printer. + static void PrintValue(const T& value, ::std::ostream* os) { + const internal::BiggestInt kBigInt = value; + *os << kBigInt; + } +}; + +// Prints the given value to the given ostream. If the value is a +// protocol message, its debug string is printed; if it's an enum or +// of a type implicitly convertible to BiggestInt, it's printed as an +// integer; otherwise the bytes in the value are printed. This is +// what UniversalPrinter::Print() does when it knows nothing about +// type T and T has neither << operator nor PrintTo(). +// +// A user can override this behavior for a class type Foo by defining +// a << operator in the namespace where Foo is defined. +// +// We put this operator in namespace 'internal2' instead of 'internal' +// to simplify the implementation, as much code in 'internal' needs to +// use << in STL, which would conflict with our own << were it defined +// in 'internal'. +// +// Note that this operator<< takes a generic std::basic_ostream type instead of the more restricted std::ostream. If +// we define it to take an std::ostream instead, we'll get an +// "ambiguous overloads" compiler error when trying to print a type +// Foo that supports streaming to std::basic_ostream, as the compiler cannot tell whether +// operator<<(std::ostream&, const T&) or +// operator<<(std::basic_stream, const Foo&) is more +// specific. +template +::std::basic_ostream& operator<<( + ::std::basic_ostream& os, const T& x) { + TypeWithoutFormatter::value ? kProtobuf : + internal::ImplicitlyConvertible::value ? + kConvertibleToInteger : kOtherType)>::PrintValue(x, &os); + return os; +} + +} // namespace internal2 +} // namespace testing + +// This namespace MUST NOT BE NESTED IN ::testing, or the name look-up +// magic needed for implementing UniversalPrinter won't work. +namespace testing_internal { + +// Used to print a value that is not an STL-style container when the +// user doesn't define PrintTo() for it. +template +void DefaultPrintNonContainerTo(const T& value, ::std::ostream* os) { + // With the following statement, during unqualified name lookup, + // testing::internal2::operator<< appears as if it was declared in + // the nearest enclosing namespace that contains both + // ::testing_internal and ::testing::internal2, i.e. the global + // namespace. For more details, refer to the C++ Standard section + // 7.3.4-1 [namespace.udir]. This allows us to fall back onto + // testing::internal2::operator<< in case T doesn't come with a << + // operator. + // + // We cannot write 'using ::testing::internal2::operator<<;', which + // gcc 3.3 fails to compile due to a compiler bug. + using namespace ::testing::internal2; // NOLINT + + // Assuming T is defined in namespace foo, in the next statement, + // the compiler will consider all of: + // + // 1. foo::operator<< (thanks to Koenig look-up), + // 2. ::operator<< (as the current namespace is enclosed in ::), + // 3. testing::internal2::operator<< (thanks to the using statement above). + // + // The operator<< whose type matches T best will be picked. + // + // We deliberately allow #2 to be a candidate, as sometimes it's + // impossible to define #1 (e.g. when foo is ::std, defining + // anything in it is undefined behavior unless you are a compiler + // vendor.). + *os << value; +} + +} // namespace testing_internal + +namespace testing { +namespace internal { + +// UniversalPrinter::Print(value, ostream_ptr) prints the given +// value to the given ostream. The caller must ensure that +// 'ostream_ptr' is not NULL, or the behavior is undefined. +// +// We define UniversalPrinter as a class template (as opposed to a +// function template), as we need to partially specialize it for +// reference types, which cannot be done with function templates. +template +class UniversalPrinter; + +template +void UniversalPrint(const T& value, ::std::ostream* os); + +// Used to print an STL-style container when the user doesn't define +// a PrintTo() for it. +template +void DefaultPrintTo(IsContainer /* dummy */, + false_type /* is not a pointer */, + const C& container, ::std::ostream* os) { + const size_t kMaxCount = 32; // The maximum number of elements to print. + *os << '{'; + size_t count = 0; + for (typename C::const_iterator it = container.begin(); + it != container.end(); ++it, ++count) { + if (count > 0) { + *os << ','; + if (count == kMaxCount) { // Enough has been printed. + *os << " ..."; + break; + } + } + *os << ' '; + // We cannot call PrintTo(*it, os) here as PrintTo() doesn't + // handle *it being a native array. + internal::UniversalPrint(*it, os); + } + + if (count > 0) { + *os << ' '; + } + *os << '}'; +} + +// Used to print a pointer that is neither a char pointer nor a member +// pointer, when the user doesn't define PrintTo() for it. (A member +// variable pointer or member function pointer doesn't really point to +// a location in the address space. Their representation is +// implementation-defined. Therefore they will be printed as raw +// bytes.) +template +void DefaultPrintTo(IsNotContainer /* dummy */, + true_type /* is a pointer */, + T* p, ::std::ostream* os) { + if (p == NULL) { + *os << "NULL"; + } else { + // C++ doesn't allow casting from a function pointer to any object + // pointer. + // + // IsTrue() silences warnings: "Condition is always true", + // "unreachable code". + if (IsTrue(ImplicitlyConvertible::value)) { + // T is not a function type. We just call << to print p, + // relying on ADL to pick up user-defined << for their pointer + // types, if any. + *os << p; + } else { + // T is a function type, so '*os << p' doesn't do what we want + // (it just prints p as bool). We want to print p as a const + // void*. However, we cannot cast it to const void* directly, + // even using reinterpret_cast, as earlier versions of gcc + // (e.g. 3.4.5) cannot compile the cast when p is a function + // pointer. Casting to UInt64 first solves the problem. + *os << reinterpret_cast( + reinterpret_cast(p)); + } + } +} + +// Used to print a non-container, non-pointer value when the user +// doesn't define PrintTo() for it. +template +void DefaultPrintTo(IsNotContainer /* dummy */, + false_type /* is not a pointer */, + const T& value, ::std::ostream* os) { + ::testing_internal::DefaultPrintNonContainerTo(value, os); +} + +// Prints the given value using the << operator if it has one; +// otherwise prints the bytes in it. This is what +// UniversalPrinter::Print() does when PrintTo() is not specialized +// or overloaded for type T. +// +// A user can override this behavior for a class type Foo by defining +// an overload of PrintTo() in the namespace where Foo is defined. We +// give the user this option as sometimes defining a << operator for +// Foo is not desirable (e.g. the coding style may prevent doing it, +// or there is already a << operator but it doesn't do what the user +// wants). +template +void PrintTo(const T& value, ::std::ostream* os) { + // DefaultPrintTo() is overloaded. The type of its first two + // arguments determine which version will be picked. If T is an + // STL-style container, the version for container will be called; if + // T is a pointer, the pointer version will be called; otherwise the + // generic version will be called. + // + // Note that we check for container types here, prior to we check + // for protocol message types in our operator<<. The rationale is: + // + // For protocol messages, we want to give people a chance to + // override Google Mock's format by defining a PrintTo() or + // operator<<. For STL containers, other formats can be + // incompatible with Google Mock's format for the container + // elements; therefore we check for container types here to ensure + // that our format is used. + // + // The second argument of DefaultPrintTo() is needed to bypass a bug + // in Symbian's C++ compiler that prevents it from picking the right + // overload between: + // + // PrintTo(const T& x, ...); + // PrintTo(T* x, ...); + DefaultPrintTo(IsContainerTest(0), is_pointer(), value, os); +} + +// The following list of PrintTo() overloads tells +// UniversalPrinter::Print() how to print standard types (built-in +// types, strings, plain arrays, and pointers). + +// Overloads for various char types. +GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os); +GTEST_API_ void PrintTo(signed char c, ::std::ostream* os); +inline void PrintTo(char c, ::std::ostream* os) { + // When printing a plain char, we always treat it as unsigned. This + // way, the output won't be affected by whether the compiler thinks + // char is signed or not. + PrintTo(static_cast(c), os); +} + +// Overloads for other simple built-in types. +inline void PrintTo(bool x, ::std::ostream* os) { + *os << (x ? "true" : "false"); +} + +// Overload for wchar_t type. +// Prints a wchar_t as a symbol if it is printable or as its internal +// code otherwise and also as its decimal code (except for L'\0'). +// The L'\0' char is printed as "L'\\0'". The decimal code is printed +// as signed integer when wchar_t is implemented by the compiler +// as a signed type and is printed as an unsigned integer when wchar_t +// is implemented as an unsigned type. +GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os); + +// Overloads for C strings. +GTEST_API_ void PrintTo(const char* s, ::std::ostream* os); +inline void PrintTo(char* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} + +// signed/unsigned char is often used for representing binary data, so +// we print pointers to it as void* to be safe. +inline void PrintTo(const signed char* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} +inline void PrintTo(signed char* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} +inline void PrintTo(const unsigned char* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} +inline void PrintTo(unsigned char* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} + +// MSVC can be configured to define wchar_t as a typedef of unsigned +// short. It defines _NATIVE_WCHAR_T_DEFINED when wchar_t is a native +// type. When wchar_t is a typedef, defining an overload for const +// wchar_t* would cause unsigned short* be printed as a wide string, +// possibly causing invalid memory accesses. +#if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) +// Overloads for wide C strings +GTEST_API_ void PrintTo(const wchar_t* s, ::std::ostream* os); +inline void PrintTo(wchar_t* s, ::std::ostream* os) { + PrintTo(ImplicitCast_(s), os); +} +#endif + +// Overload for C arrays. Multi-dimensional arrays are printed +// properly. + +// Prints the given number of elements in an array, without printing +// the curly braces. +template +void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) { + UniversalPrint(a[0], os); + for (size_t i = 1; i != count; i++) { + *os << ", "; + UniversalPrint(a[i], os); + } +} + +// Overloads for ::string and ::std::string. +#if GTEST_HAS_GLOBAL_STRING +GTEST_API_ void PrintStringTo(const ::string&s, ::std::ostream* os); +inline void PrintTo(const ::string& s, ::std::ostream* os) { + PrintStringTo(s, os); +} +#endif // GTEST_HAS_GLOBAL_STRING + +GTEST_API_ void PrintStringTo(const ::std::string&s, ::std::ostream* os); +inline void PrintTo(const ::std::string& s, ::std::ostream* os) { + PrintStringTo(s, os); +} + +// Overloads for ::wstring and ::std::wstring. +#if GTEST_HAS_GLOBAL_WSTRING +GTEST_API_ void PrintWideStringTo(const ::wstring&s, ::std::ostream* os); +inline void PrintTo(const ::wstring& s, ::std::ostream* os) { + PrintWideStringTo(s, os); +} +#endif // GTEST_HAS_GLOBAL_WSTRING + +#if GTEST_HAS_STD_WSTRING +GTEST_API_ void PrintWideStringTo(const ::std::wstring&s, ::std::ostream* os); +inline void PrintTo(const ::std::wstring& s, ::std::ostream* os) { + PrintWideStringTo(s, os); +} +#endif // GTEST_HAS_STD_WSTRING + +#if GTEST_HAS_TR1_TUPLE +// Overload for ::std::tr1::tuple. Needed for printing function arguments, +// which are packed as tuples. + +// Helper function for printing a tuple. T must be instantiated with +// a tuple type. +template +void PrintTupleTo(const T& t, ::std::ostream* os); + +// Overloaded PrintTo() for tuples of various arities. We support +// tuples of up-to 10 fields. The following implementation works +// regardless of whether tr1::tuple is implemented using the +// non-standard variadic template feature or not. + +inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo(const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} + +template +void PrintTo( + const ::std::tr1::tuple& t, + ::std::ostream* os) { + PrintTupleTo(t, os); +} +#endif // GTEST_HAS_TR1_TUPLE + +// Overload for std::pair. +template +void PrintTo(const ::std::pair& value, ::std::ostream* os) { + *os << '('; + // We cannot use UniversalPrint(value.first, os) here, as T1 may be + // a reference type. The same for printing value.second. + UniversalPrinter::Print(value.first, os); + *os << ", "; + UniversalPrinter::Print(value.second, os); + *os << ')'; +} + +// Implements printing a non-reference type T by letting the compiler +// pick the right overload of PrintTo() for T. +template +class UniversalPrinter { + public: + // MSVC warns about adding const to a function type, so we want to + // disable the warning. +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4180) // Temporarily disables warning 4180. +#endif // _MSC_VER + + // Note: we deliberately don't call this PrintTo(), as that name + // conflicts with ::testing::internal::PrintTo in the body of the + // function. + static void Print(const T& value, ::std::ostream* os) { + // By default, ::testing::internal::PrintTo() is used for printing + // the value. + // + // Thanks to Koenig look-up, if T is a class and has its own + // PrintTo() function defined in its namespace, that function will + // be visible here. Since it is more specific than the generic ones + // in ::testing::internal, it will be picked by the compiler in the + // following statement - exactly what we want. + PrintTo(value, os); + } + +#ifdef _MSC_VER +# pragma warning(pop) // Restores the warning state. +#endif // _MSC_VER +}; + +// UniversalPrintArray(begin, len, os) prints an array of 'len' +// elements, starting at address 'begin'. +template +void UniversalPrintArray(const T* begin, size_t len, ::std::ostream* os) { + if (len == 0) { + *os << "{}"; + } else { + *os << "{ "; + const size_t kThreshold = 18; + const size_t kChunkSize = 8; + // If the array has more than kThreshold elements, we'll have to + // omit some details by printing only the first and the last + // kChunkSize elements. + // TODO(wan@google.com): let the user control the threshold using a flag. + if (len <= kThreshold) { + PrintRawArrayTo(begin, len, os); + } else { + PrintRawArrayTo(begin, kChunkSize, os); + *os << ", ..., "; + PrintRawArrayTo(begin + len - kChunkSize, kChunkSize, os); + } + *os << " }"; + } +} +// This overload prints a (const) char array compactly. +GTEST_API_ void UniversalPrintArray( + const char* begin, size_t len, ::std::ostream* os); + +// This overload prints a (const) wchar_t array compactly. +GTEST_API_ void UniversalPrintArray( + const wchar_t* begin, size_t len, ::std::ostream* os); + +// Implements printing an array type T[N]. +template +class UniversalPrinter { + public: + // Prints the given array, omitting some elements when there are too + // many. + static void Print(const T (&a)[N], ::std::ostream* os) { + UniversalPrintArray(a, N, os); + } +}; + +// Implements printing a reference type T&. +template +class UniversalPrinter { + public: + // MSVC warns about adding const to a function type, so we want to + // disable the warning. +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4180) // Temporarily disables warning 4180. +#endif // _MSC_VER + + static void Print(const T& value, ::std::ostream* os) { + // Prints the address of the value. We use reinterpret_cast here + // as static_cast doesn't compile when T is a function type. + *os << "@" << reinterpret_cast(&value) << " "; + + // Then prints the value itself. + UniversalPrint(value, os); + } + +#ifdef _MSC_VER +# pragma warning(pop) // Restores the warning state. +#endif // _MSC_VER +}; + +// Prints a value tersely: for a reference type, the referenced value +// (but not the address) is printed; for a (const) char pointer, the +// NUL-terminated string (but not the pointer) is printed. + +template +class UniversalTersePrinter { + public: + static void Print(const T& value, ::std::ostream* os) { + UniversalPrint(value, os); + } +}; +template +class UniversalTersePrinter { + public: + static void Print(const T& value, ::std::ostream* os) { + UniversalPrint(value, os); + } +}; +template +class UniversalTersePrinter { + public: + static void Print(const T (&value)[N], ::std::ostream* os) { + UniversalPrinter::Print(value, os); + } +}; +template <> +class UniversalTersePrinter { + public: + static void Print(const char* str, ::std::ostream* os) { + if (str == NULL) { + *os << "NULL"; + } else { + UniversalPrint(string(str), os); + } + } +}; +template <> +class UniversalTersePrinter { + public: + static void Print(char* str, ::std::ostream* os) { + UniversalTersePrinter::Print(str, os); + } +}; + +#if GTEST_HAS_STD_WSTRING +template <> +class UniversalTersePrinter { + public: + static void Print(const wchar_t* str, ::std::ostream* os) { + if (str == NULL) { + *os << "NULL"; + } else { + UniversalPrint(::std::wstring(str), os); + } + } +}; +#endif + +template <> +class UniversalTersePrinter { + public: + static void Print(wchar_t* str, ::std::ostream* os) { + UniversalTersePrinter::Print(str, os); + } +}; + +template +void UniversalTersePrint(const T& value, ::std::ostream* os) { + UniversalTersePrinter::Print(value, os); +} + +// Prints a value using the type inferred by the compiler. The +// difference between this and UniversalTersePrint() is that for a +// (const) char pointer, this prints both the pointer and the +// NUL-terminated string. +template +void UniversalPrint(const T& value, ::std::ostream* os) { + // A workarond for the bug in VC++ 7.1 that prevents us from instantiating + // UniversalPrinter with T directly. + typedef T T1; + UniversalPrinter::Print(value, os); +} + +#if GTEST_HAS_TR1_TUPLE +typedef ::std::vector Strings; + +// This helper template allows PrintTo() for tuples and +// UniversalTersePrintTupleFieldsToStrings() to be defined by +// induction on the number of tuple fields. The idea is that +// TuplePrefixPrinter::PrintPrefixTo(t, os) prints the first N +// fields in tuple t, and can be defined in terms of +// TuplePrefixPrinter. + +// The inductive case. +template +struct TuplePrefixPrinter { + // Prints the first N fields of a tuple. + template + static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) { + TuplePrefixPrinter::PrintPrefixTo(t, os); + *os << ", "; + UniversalPrinter::type> + ::Print(::std::tr1::get(t), os); + } + + // Tersely prints the first N fields of a tuple to a string vector, + // one element for each field. + template + static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { + TuplePrefixPrinter::TersePrintPrefixToStrings(t, strings); + ::std::stringstream ss; + UniversalTersePrint(::std::tr1::get(t), &ss); + strings->push_back(ss.str()); + } +}; + +// Base cases. +template <> +struct TuplePrefixPrinter<0> { + template + static void PrintPrefixTo(const Tuple&, ::std::ostream*) {} + + template + static void TersePrintPrefixToStrings(const Tuple&, Strings*) {} +}; +// We have to specialize the entire TuplePrefixPrinter<> class +// template here, even though the definition of +// TersePrintPrefixToStrings() is the same as the generic version, as +// Embarcadero (formerly CodeGear, formerly Borland) C++ doesn't +// support specializing a method template of a class template. +template <> +struct TuplePrefixPrinter<1> { + template + static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) { + UniversalPrinter::type>:: + Print(::std::tr1::get<0>(t), os); + } + + template + static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) { + ::std::stringstream ss; + UniversalTersePrint(::std::tr1::get<0>(t), &ss); + strings->push_back(ss.str()); + } +}; + +// Helper function for printing a tuple. T must be instantiated with +// a tuple type. +template +void PrintTupleTo(const T& t, ::std::ostream* os) { + *os << "("; + TuplePrefixPrinter< ::std::tr1::tuple_size::value>:: + PrintPrefixTo(t, os); + *os << ")"; +} + +// Prints the fields of a tuple tersely to a string vector, one +// element for each field. See the comment before +// UniversalTersePrint() for how we define "tersely". +template +Strings UniversalTersePrintTupleFieldsToStrings(const Tuple& value) { + Strings result; + TuplePrefixPrinter< ::std::tr1::tuple_size::value>:: + TersePrintPrefixToStrings(value, &result); + return result; +} +#endif // GTEST_HAS_TR1_TUPLE + +} // namespace internal + +template +::std::string PrintToString(const T& value) { + ::std::stringstream ss; + internal::UniversalTersePrinter::Print(value, &ss); + return ss.str(); +} + +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-spi.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-spi.h new file mode 100644 index 000000000..f63fa9a1b --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-spi.h @@ -0,0 +1,232 @@ +// Copyright 2007, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Utilities for testing Google Test itself and code that uses Google Test +// (e.g. frameworks built on top of Google Test). + +#ifndef GTEST_INCLUDE_GTEST_GTEST_SPI_H_ +#define GTEST_INCLUDE_GTEST_GTEST_SPI_H_ + +#include "gtest/gtest.h" + +namespace testing { + +// This helper class can be used to mock out Google Test failure reporting +// so that we can test Google Test or code that builds on Google Test. +// +// An object of this class appends a TestPartResult object to the +// TestPartResultArray object given in the constructor whenever a Google Test +// failure is reported. It can either intercept only failures that are +// generated in the same thread that created this object or it can intercept +// all generated failures. The scope of this mock object can be controlled with +// the second argument to the two arguments constructor. +class GTEST_API_ ScopedFakeTestPartResultReporter + : public TestPartResultReporterInterface { + public: + // The two possible mocking modes of this object. + enum InterceptMode { + INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. + INTERCEPT_ALL_THREADS // Intercepts all failures. + }; + + // The c'tor sets this object as the test part result reporter used + // by Google Test. The 'result' parameter specifies where to report the + // results. This reporter will only catch failures generated in the current + // thread. DEPRECATED + explicit ScopedFakeTestPartResultReporter(TestPartResultArray* result); + + // Same as above, but you can choose the interception scope of this object. + ScopedFakeTestPartResultReporter(InterceptMode intercept_mode, + TestPartResultArray* result); + + // The d'tor restores the previous test part result reporter. + virtual ~ScopedFakeTestPartResultReporter(); + + // Appends the TestPartResult object to the TestPartResultArray + // received in the constructor. + // + // This method is from the TestPartResultReporterInterface + // interface. + virtual void ReportTestPartResult(const TestPartResult& result); + private: + void Init(); + + const InterceptMode intercept_mode_; + TestPartResultReporterInterface* old_reporter_; + TestPartResultArray* const result_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter); +}; + +namespace internal { + +// A helper class for implementing EXPECT_FATAL_FAILURE() and +// EXPECT_NONFATAL_FAILURE(). Its destructor verifies that the given +// TestPartResultArray contains exactly one failure that has the given +// type and contains the given substring. If that's not the case, a +// non-fatal failure will be generated. +class GTEST_API_ SingleFailureChecker { + public: + // The constructor remembers the arguments. + SingleFailureChecker(const TestPartResultArray* results, + TestPartResult::Type type, + const string& substr); + ~SingleFailureChecker(); + private: + const TestPartResultArray* const results_; + const TestPartResult::Type type_; + const string substr_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(SingleFailureChecker); +}; + +} // namespace internal + +} // namespace testing + +// A set of macros for testing Google Test assertions or code that's expected +// to generate Google Test fatal failures. It verifies that the given +// statement will cause exactly one fatal Google Test failure with 'substr' +// being part of the failure message. +// +// There are two different versions of this macro. EXPECT_FATAL_FAILURE only +// affects and considers failures generated in the current thread and +// EXPECT_FATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. +// +// The verification of the assertion is done correctly even when the statement +// throws an exception or aborts the current function. +// +// Known restrictions: +// - 'statement' cannot reference local non-static variables or +// non-static members of the current object. +// - 'statement' cannot return a value. +// - You cannot stream a failure message to this macro. +// +// Note that even though the implementations of the following two +// macros are much alike, we cannot refactor them to use a common +// helper macro, due to some peculiarity in how the preprocessor +// works. The AcceptsMacroThatExpandsToUnprotectedComma test in +// gtest_unittest.cc will fail to compile if we do that. +#define EXPECT_FATAL_FAILURE(statement, substr) \ + do { \ + class GTestExpectFatalFailureHelper {\ + public:\ + static void Execute() { statement; }\ + };\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter:: \ + INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ + GTestExpectFatalFailureHelper::Execute();\ + }\ + } while (::testing::internal::AlwaysFalse()) + +#define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ + do { \ + class GTestExpectFatalFailureHelper {\ + public:\ + static void Execute() { statement; }\ + };\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter:: \ + INTERCEPT_ALL_THREADS, >est_failures);\ + GTestExpectFatalFailureHelper::Execute();\ + }\ + } while (::testing::internal::AlwaysFalse()) + +// A macro for testing Google Test assertions or code that's expected to +// generate Google Test non-fatal failures. It asserts that the given +// statement will cause exactly one non-fatal Google Test failure with 'substr' +// being part of the failure message. +// +// There are two different versions of this macro. EXPECT_NONFATAL_FAILURE only +// affects and considers failures generated in the current thread and +// EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. +// +// 'statement' is allowed to reference local variables and members of +// the current object. +// +// The verification of the assertion is done correctly even when the statement +// throws an exception or aborts the current function. +// +// Known restrictions: +// - You cannot stream a failure message to this macro. +// +// Note that even though the implementations of the following two +// macros are much alike, we cannot refactor them to use a common +// helper macro, due to some peculiarity in how the preprocessor +// works. If we do that, the code won't compile when the user gives +// EXPECT_NONFATAL_FAILURE() a statement that contains a macro that +// expands to code containing an unprotected comma. The +// AcceptsMacroThatExpandsToUnprotectedComma test in gtest_unittest.cc +// catches that. +// +// For the same reason, we have to write +// if (::testing::internal::AlwaysTrue()) { statement; } +// instead of +// GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) +// to avoid an MSVC warning on unreachable code. +#define EXPECT_NONFATAL_FAILURE(statement, substr) \ + do {\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ + (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter:: \ + INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ + if (::testing::internal::AlwaysTrue()) { statement; }\ + }\ + } while (::testing::internal::AlwaysFalse()) + +#define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ + do {\ + ::testing::TestPartResultArray gtest_failures;\ + ::testing::internal::SingleFailureChecker gtest_checker(\ + >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ + (substr));\ + {\ + ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ + ::testing::ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS, \ + >est_failures);\ + if (::testing::internal::AlwaysTrue()) { statement; }\ + }\ + } while (::testing::internal::AlwaysFalse()) + +#endif // GTEST_INCLUDE_GTEST_GTEST_SPI_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-test-part.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-test-part.h new file mode 100644 index 000000000..77eb84483 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-test-part.h @@ -0,0 +1,179 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: mheule@google.com (Markus Heule) +// + +#ifndef GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ +#define GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ + +#include +#include +#include "gtest/internal/gtest-internal.h" +#include "gtest/internal/gtest-string.h" + +namespace testing { + +// A copyable object representing the result of a test part (i.e. an +// assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()). +// +// Don't inherit from TestPartResult as its destructor is not virtual. +class GTEST_API_ TestPartResult { + public: + // The possible outcomes of a test part (i.e. an assertion or an + // explicit SUCCEED(), FAIL(), or ADD_FAILURE()). + enum Type { + kSuccess, // Succeeded. + kNonFatalFailure, // Failed but the test can continue. + kFatalFailure // Failed and the test should be terminated. + }; + + // C'tor. TestPartResult does NOT have a default constructor. + // Always use this constructor (with parameters) to create a + // TestPartResult object. + TestPartResult(Type a_type, + const char* a_file_name, + int a_line_number, + const char* a_message) + : type_(a_type), + file_name_(a_file_name == NULL ? "" : a_file_name), + line_number_(a_line_number), + summary_(ExtractSummary(a_message)), + message_(a_message) { + } + + // Gets the outcome of the test part. + Type type() const { return type_; } + + // Gets the name of the source file where the test part took place, or + // NULL if it's unknown. + const char* file_name() const { + return file_name_.empty() ? NULL : file_name_.c_str(); + } + + // Gets the line in the source file where the test part took place, + // or -1 if it's unknown. + int line_number() const { return line_number_; } + + // Gets the summary of the failure message. + const char* summary() const { return summary_.c_str(); } + + // Gets the message associated with the test part. + const char* message() const { return message_.c_str(); } + + // Returns true iff the test part passed. + bool passed() const { return type_ == kSuccess; } + + // Returns true iff the test part failed. + bool failed() const { return type_ != kSuccess; } + + // Returns true iff the test part non-fatally failed. + bool nonfatally_failed() const { return type_ == kNonFatalFailure; } + + // Returns true iff the test part fatally failed. + bool fatally_failed() const { return type_ == kFatalFailure; } + + private: + Type type_; + + // Gets the summary of the failure message by omitting the stack + // trace in it. + static std::string ExtractSummary(const char* message); + + // The name of the source file where the test part took place, or + // "" if the source file is unknown. + std::string file_name_; + // The line in the source file where the test part took place, or -1 + // if the line number is unknown. + int line_number_; + std::string summary_; // The test failure summary. + std::string message_; // The test failure message. +}; + +// Prints a TestPartResult object. +std::ostream& operator<<(std::ostream& os, const TestPartResult& result); + +// An array of TestPartResult objects. +// +// Don't inherit from TestPartResultArray as its destructor is not +// virtual. +class GTEST_API_ TestPartResultArray { + public: + TestPartResultArray() {} + + // Appends the given TestPartResult to the array. + void Append(const TestPartResult& result); + + // Returns the TestPartResult at the given index (0-based). + const TestPartResult& GetTestPartResult(int index) const; + + // Returns the number of TestPartResult objects in the array. + int size() const; + + private: + std::vector array_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray); +}; + +// This interface knows how to report a test part result. +class TestPartResultReporterInterface { + public: + virtual ~TestPartResultReporterInterface() {} + + virtual void ReportTestPartResult(const TestPartResult& result) = 0; +}; + +namespace internal { + +// This helper class is used by {ASSERT|EXPECT}_NO_FATAL_FAILURE to check if a +// statement generates new fatal failures. To do so it registers itself as the +// current test part result reporter. Besides checking if fatal failures were +// reported, it only delegates the reporting to the former result reporter. +// The original result reporter is restored in the destructor. +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +class GTEST_API_ HasNewFatalFailureHelper + : public TestPartResultReporterInterface { + public: + HasNewFatalFailureHelper(); + virtual ~HasNewFatalFailureHelper(); + virtual void ReportTestPartResult(const TestPartResult& result); + bool has_new_fatal_failure() const { return has_new_fatal_failure_; } + private: + bool has_new_fatal_failure_; + TestPartResultReporterInterface* original_reporter_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(HasNewFatalFailureHelper); +}; + +} // namespace internal + +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-typed-test.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-typed-test.h new file mode 100644 index 000000000..fe1e83b27 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest-typed-test.h @@ -0,0 +1,259 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#ifndef GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ +#define GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ + +// This header implements typed tests and type-parameterized tests. + +// Typed (aka type-driven) tests repeat the same test for types in a +// list. You must know which types you want to test with when writing +// typed tests. Here's how you do it: + +#if 0 + +// First, define a fixture class template. It should be parameterized +// by a type. Remember to derive it from testing::Test. +template +class FooTest : public testing::Test { + public: + ... + typedef std::list List; + static T shared_; + T value_; +}; + +// Next, associate a list of types with the test case, which will be +// repeated for each type in the list. The typedef is necessary for +// the macro to parse correctly. +typedef testing::Types MyTypes; +TYPED_TEST_CASE(FooTest, MyTypes); + +// If the type list contains only one type, you can write that type +// directly without Types<...>: +// TYPED_TEST_CASE(FooTest, int); + +// Then, use TYPED_TEST() instead of TEST_F() to define as many typed +// tests for this test case as you want. +TYPED_TEST(FooTest, DoesBlah) { + // Inside a test, refer to TypeParam to get the type parameter. + // Since we are inside a derived class template, C++ requires use to + // visit the members of FooTest via 'this'. + TypeParam n = this->value_; + + // To visit static members of the fixture, add the TestFixture:: + // prefix. + n += TestFixture::shared_; + + // To refer to typedefs in the fixture, add the "typename + // TestFixture::" prefix. + typename TestFixture::List values; + values.push_back(n); + ... +} + +TYPED_TEST(FooTest, HasPropertyA) { ... } + +#endif // 0 + +// Type-parameterized tests are abstract test patterns parameterized +// by a type. Compared with typed tests, type-parameterized tests +// allow you to define the test pattern without knowing what the type +// parameters are. The defined pattern can be instantiated with +// different types any number of times, in any number of translation +// units. +// +// If you are designing an interface or concept, you can define a +// suite of type-parameterized tests to verify properties that any +// valid implementation of the interface/concept should have. Then, +// each implementation can easily instantiate the test suite to verify +// that it conforms to the requirements, without having to write +// similar tests repeatedly. Here's an example: + +#if 0 + +// First, define a fixture class template. It should be parameterized +// by a type. Remember to derive it from testing::Test. +template +class FooTest : public testing::Test { + ... +}; + +// Next, declare that you will define a type-parameterized test case +// (the _P suffix is for "parameterized" or "pattern", whichever you +// prefer): +TYPED_TEST_CASE_P(FooTest); + +// Then, use TYPED_TEST_P() to define as many type-parameterized tests +// for this type-parameterized test case as you want. +TYPED_TEST_P(FooTest, DoesBlah) { + // Inside a test, refer to TypeParam to get the type parameter. + TypeParam n = 0; + ... +} + +TYPED_TEST_P(FooTest, HasPropertyA) { ... } + +// Now the tricky part: you need to register all test patterns before +// you can instantiate them. The first argument of the macro is the +// test case name; the rest are the names of the tests in this test +// case. +REGISTER_TYPED_TEST_CASE_P(FooTest, + DoesBlah, HasPropertyA); + +// Finally, you are free to instantiate the pattern with the types you +// want. If you put the above code in a header file, you can #include +// it in multiple C++ source files and instantiate it multiple times. +// +// To distinguish different instances of the pattern, the first +// argument to the INSTANTIATE_* macro is a prefix that will be added +// to the actual test case name. Remember to pick unique prefixes for +// different instances. +typedef testing::Types MyTypes; +INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes); + +// If the type list contains only one type, you can write that type +// directly without Types<...>: +// INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, int); + +#endif // 0 + +#include "gtest/internal/gtest-port.h" +#include "gtest/internal/gtest-type-util.h" + +// Implements typed tests. + +#if GTEST_HAS_TYPED_TEST + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Expands to the name of the typedef for the type parameters of the +// given test case. +# define GTEST_TYPE_PARAMS_(TestCaseName) gtest_type_params_##TestCaseName##_ + +// The 'Types' template argument below must have spaces around it +// since some compilers may choke on '>>' when passing a template +// instance (e.g. Types) +# define TYPED_TEST_CASE(CaseName, Types) \ + typedef ::testing::internal::TypeList< Types >::type \ + GTEST_TYPE_PARAMS_(CaseName) + +# define TYPED_TEST(CaseName, TestName) \ + template \ + class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \ + : public CaseName { \ + private: \ + typedef CaseName TestFixture; \ + typedef gtest_TypeParam_ TypeParam; \ + virtual void TestBody(); \ + }; \ + bool gtest_##CaseName##_##TestName##_registered_ GTEST_ATTRIBUTE_UNUSED_ = \ + ::testing::internal::TypeParameterizedTest< \ + CaseName, \ + ::testing::internal::TemplateSel< \ + GTEST_TEST_CLASS_NAME_(CaseName, TestName)>, \ + GTEST_TYPE_PARAMS_(CaseName)>::Register(\ + "", #CaseName, #TestName, 0); \ + template \ + void GTEST_TEST_CLASS_NAME_(CaseName, TestName)::TestBody() + +#endif // GTEST_HAS_TYPED_TEST + +// Implements type-parameterized tests. + +#if GTEST_HAS_TYPED_TEST_P + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Expands to the namespace name that the type-parameterized tests for +// the given type-parameterized test case are defined in. The exact +// name of the namespace is subject to change without notice. +# define GTEST_CASE_NAMESPACE_(TestCaseName) \ + gtest_case_##TestCaseName##_ + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Expands to the name of the variable used to remember the names of +// the defined tests in the given test case. +# define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \ + gtest_typed_test_case_p_state_##TestCaseName##_ + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY. +// +// Expands to the name of the variable used to remember the names of +// the registered tests in the given test case. +# define GTEST_REGISTERED_TEST_NAMES_(TestCaseName) \ + gtest_registered_test_names_##TestCaseName##_ + +// The variables defined in the type-parameterized test macros are +// static as typically these macros are used in a .h file that can be +// #included in multiple translation units linked together. +# define TYPED_TEST_CASE_P(CaseName) \ + static ::testing::internal::TypedTestCasePState \ + GTEST_TYPED_TEST_CASE_P_STATE_(CaseName) + +# define TYPED_TEST_P(CaseName, TestName) \ + namespace GTEST_CASE_NAMESPACE_(CaseName) { \ + template \ + class TestName : public CaseName { \ + private: \ + typedef CaseName TestFixture; \ + typedef gtest_TypeParam_ TypeParam; \ + virtual void TestBody(); \ + }; \ + static bool gtest_##TestName##_defined_ GTEST_ATTRIBUTE_UNUSED_ = \ + GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).AddTestName(\ + __FILE__, __LINE__, #CaseName, #TestName); \ + } \ + template \ + void GTEST_CASE_NAMESPACE_(CaseName)::TestName::TestBody() + +# define REGISTER_TYPED_TEST_CASE_P(CaseName, ...) \ + namespace GTEST_CASE_NAMESPACE_(CaseName) { \ + typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \ + } \ + static const char* const GTEST_REGISTERED_TEST_NAMES_(CaseName) = \ + GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).VerifyRegisteredTestNames(\ + __FILE__, __LINE__, #__VA_ARGS__) + +// The 'Types' template argument below must have spaces around it +// since some compilers may choke on '>>' when passing a template +// instance (e.g. Types) +# define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ + bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \ + ::testing::internal::TypeParameterizedTestCase::type>::Register(\ + #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName)) + +#endif // GTEST_HAS_TYPED_TEST_P + +#endif // GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest.h new file mode 100644 index 000000000..6fa0a3925 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest.h @@ -0,0 +1,2291 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file defines the public API for Google Test. It should be +// included by any test program that uses Google Test. +// +// IMPORTANT NOTE: Due to limitation of the C++ language, we have to +// leave some internal implementation details in this header file. +// They are clearly marked by comments like this: +// +// // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +// +// Such code is NOT meant to be used by a user directly, and is subject +// to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user +// program! +// +// Acknowledgment: Google Test borrowed the idea of automatic test +// registration from Barthelemy Dagenais' (barthelemy@prologique.com) +// easyUnit framework. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_H_ +#define GTEST_INCLUDE_GTEST_GTEST_H_ + +#include +#include +#include + +#include "gtest/internal/gtest-internal.h" +#include "gtest/internal/gtest-string.h" +#include "gtest/gtest-death-test.h" +#include "gtest/gtest-message.h" +#include "gtest/gtest-param-test.h" +#include "gtest/gtest-printers.h" +#include "gtest/gtest_prod.h" +#include "gtest/gtest-test-part.h" +#include "gtest/gtest-typed-test.h" + +// Depending on the platform, different string classes are available. +// On Linux, in addition to ::std::string, Google also makes use of +// class ::string, which has the same interface as ::std::string, but +// has a different implementation. +// +// The user can define GTEST_HAS_GLOBAL_STRING to 1 to indicate that +// ::string is available AND is a distinct type to ::std::string, or +// define it to 0 to indicate otherwise. +// +// If the user's ::std::string and ::string are the same class due to +// aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0. +// +// If the user doesn't define GTEST_HAS_GLOBAL_STRING, it is defined +// heuristically. + +namespace testing { + +// Declares the flags. + +// This flag temporary enables the disabled tests. +GTEST_DECLARE_bool_(also_run_disabled_tests); + +// This flag brings the debugger on an assertion failure. +GTEST_DECLARE_bool_(break_on_failure); + +// This flag controls whether Google Test catches all test-thrown exceptions +// and logs them as failures. +GTEST_DECLARE_bool_(catch_exceptions); + +// This flag enables using colors in terminal output. Available values are +// "yes" to enable colors, "no" (disable colors), or "auto" (the default) +// to let Google Test decide. +GTEST_DECLARE_string_(color); + +// This flag sets up the filter to select by name using a glob pattern +// the tests to run. If the filter is not given all tests are executed. +GTEST_DECLARE_string_(filter); + +// This flag causes the Google Test to list tests. None of the tests listed +// are actually run if the flag is provided. +GTEST_DECLARE_bool_(list_tests); + +// This flag controls whether Google Test emits a detailed XML report to a file +// in addition to its normal textual output. +GTEST_DECLARE_string_(output); + +// This flags control whether Google Test prints the elapsed time for each +// test. +GTEST_DECLARE_bool_(print_time); + +// This flag specifies the random number seed. +GTEST_DECLARE_int32_(random_seed); + +// This flag sets how many times the tests are repeated. The default value +// is 1. If the value is -1 the tests are repeating forever. +GTEST_DECLARE_int32_(repeat); + +// This flag controls whether Google Test includes Google Test internal +// stack frames in failure stack traces. +GTEST_DECLARE_bool_(show_internal_stack_frames); + +// When this flag is specified, tests' order is randomized on every iteration. +GTEST_DECLARE_bool_(shuffle); + +// This flag specifies the maximum number of stack frames to be +// printed in a failure message. +GTEST_DECLARE_int32_(stack_trace_depth); + +// When this flag is specified, a failed assertion will throw an +// exception if exceptions are enabled, or exit the program with a +// non-zero code otherwise. +GTEST_DECLARE_bool_(throw_on_failure); + +// When this flag is set with a "host:port" string, on supported +// platforms test results are streamed to the specified port on +// the specified host machine. +GTEST_DECLARE_string_(stream_result_to); + +// The upper limit for valid stack trace depths. +const int kMaxStackTraceDepth = 100; + +namespace internal { + +class AssertHelper; +class DefaultGlobalTestPartResultReporter; +class ExecDeathTest; +class NoExecDeathTest; +class FinalSuccessChecker; +class GTestFlagSaver; +class StreamingListenerTest; +class TestResultAccessor; +class TestEventListenersAccessor; +class TestEventRepeater; +class UnitTestRecordPropertyTestHelper; +class WindowsDeathTest; +class UnitTestImpl* GetUnitTestImpl(); +void ReportFailureInUnknownLocation(TestPartResult::Type result_type, + const std::string& message); + +} // namespace internal + +// The friend relationship of some of these classes is cyclic. +// If we don't forward declare them the compiler might confuse the classes +// in friendship clauses with same named classes on the scope. +class Test; +class TestCase; +class TestInfo; +class UnitTest; + +// A class for indicating whether an assertion was successful. When +// the assertion wasn't successful, the AssertionResult object +// remembers a non-empty message that describes how it failed. +// +// To create an instance of this class, use one of the factory functions +// (AssertionSuccess() and AssertionFailure()). +// +// This class is useful for two purposes: +// 1. Defining predicate functions to be used with Boolean test assertions +// EXPECT_TRUE/EXPECT_FALSE and their ASSERT_ counterparts +// 2. Defining predicate-format functions to be +// used with predicate assertions (ASSERT_PRED_FORMAT*, etc). +// +// For example, if you define IsEven predicate: +// +// testing::AssertionResult IsEven(int n) { +// if ((n % 2) == 0) +// return testing::AssertionSuccess(); +// else +// return testing::AssertionFailure() << n << " is odd"; +// } +// +// Then the failed expectation EXPECT_TRUE(IsEven(Fib(5))) +// will print the message +// +// Value of: IsEven(Fib(5)) +// Actual: false (5 is odd) +// Expected: true +// +// instead of a more opaque +// +// Value of: IsEven(Fib(5)) +// Actual: false +// Expected: true +// +// in case IsEven is a simple Boolean predicate. +// +// If you expect your predicate to be reused and want to support informative +// messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up +// about half as often as positive ones in our tests), supply messages for +// both success and failure cases: +// +// testing::AssertionResult IsEven(int n) { +// if ((n % 2) == 0) +// return testing::AssertionSuccess() << n << " is even"; +// else +// return testing::AssertionFailure() << n << " is odd"; +// } +// +// Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print +// +// Value of: IsEven(Fib(6)) +// Actual: true (8 is even) +// Expected: false +// +// NB: Predicates that support negative Boolean assertions have reduced +// performance in positive ones so be careful not to use them in tests +// that have lots (tens of thousands) of positive Boolean assertions. +// +// To use this class with EXPECT_PRED_FORMAT assertions such as: +// +// // Verifies that Foo() returns an even number. +// EXPECT_PRED_FORMAT1(IsEven, Foo()); +// +// you need to define: +// +// testing::AssertionResult IsEven(const char* expr, int n) { +// if ((n % 2) == 0) +// return testing::AssertionSuccess(); +// else +// return testing::AssertionFailure() +// << "Expected: " << expr << " is even\n Actual: it's " << n; +// } +// +// If Foo() returns 5, you will see the following message: +// +// Expected: Foo() is even +// Actual: it's 5 +// +class GTEST_API_ AssertionResult { + public: + // Copy constructor. + // Used in EXPECT_TRUE/FALSE(assertion_result). + AssertionResult(const AssertionResult& other); + // Used in the EXPECT_TRUE/FALSE(bool_expression). + explicit AssertionResult(bool success) : success_(success) {} + + // Returns true iff the assertion succeeded. + operator bool() const { return success_; } // NOLINT + + // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. + AssertionResult operator!() const; + + // Returns the text streamed into this AssertionResult. Test assertions + // use it when they fail (i.e., the predicate's outcome doesn't match the + // assertion's expectation). When nothing has been streamed into the + // object, returns an empty string. + const char* message() const { + return message_.get() != NULL ? message_->c_str() : ""; + } + // TODO(vladl@google.com): Remove this after making sure no clients use it. + // Deprecated; please use message() instead. + const char* failure_message() const { return message(); } + + // Streams a custom failure message into this object. + template AssertionResult& operator<<(const T& value) { + AppendMessage(Message() << value); + return *this; + } + + // Allows streaming basic output manipulators such as endl or flush into + // this object. + AssertionResult& operator<<( + ::std::ostream& (*basic_manipulator)(::std::ostream& stream)) { + AppendMessage(Message() << basic_manipulator); + return *this; + } + + private: + // Appends the contents of message to message_. + void AppendMessage(const Message& a_message) { + if (message_.get() == NULL) + message_.reset(new ::std::string); + message_->append(a_message.GetString().c_str()); + } + + // Stores result of the assertion predicate. + bool success_; + // Stores the message describing the condition in case the expectation + // construct is not satisfied with the predicate's outcome. + // Referenced via a pointer to avoid taking too much stack frame space + // with test assertions. + internal::scoped_ptr< ::std::string> message_; + + GTEST_DISALLOW_ASSIGN_(AssertionResult); +}; + +// Makes a successful assertion result. +GTEST_API_ AssertionResult AssertionSuccess(); + +// Makes a failed assertion result. +GTEST_API_ AssertionResult AssertionFailure(); + +// Makes a failed assertion result with the given failure message. +// Deprecated; use AssertionFailure() << msg. +GTEST_API_ AssertionResult AssertionFailure(const Message& msg); + +// The abstract class that all tests inherit from. +// +// In Google Test, a unit test program contains one or many TestCases, and +// each TestCase contains one or many Tests. +// +// When you define a test using the TEST macro, you don't need to +// explicitly derive from Test - the TEST macro automatically does +// this for you. +// +// The only time you derive from Test is when defining a test fixture +// to be used a TEST_F. For example: +// +// class FooTest : public testing::Test { +// protected: +// virtual void SetUp() { ... } +// virtual void TearDown() { ... } +// ... +// }; +// +// TEST_F(FooTest, Bar) { ... } +// TEST_F(FooTest, Baz) { ... } +// +// Test is not copyable. +class GTEST_API_ Test { + public: + friend class TestInfo; + + // Defines types for pointers to functions that set up and tear down + // a test case. + typedef internal::SetUpTestCaseFunc SetUpTestCaseFunc; + typedef internal::TearDownTestCaseFunc TearDownTestCaseFunc; + + // The d'tor is virtual as we intend to inherit from Test. + virtual ~Test(); + + // Sets up the stuff shared by all tests in this test case. + // + // Google Test will call Foo::SetUpTestCase() before running the first + // test in test case Foo. Hence a sub-class can define its own + // SetUpTestCase() method to shadow the one defined in the super + // class. + static void SetUpTestCase() {} + + // Tears down the stuff shared by all tests in this test case. + // + // Google Test will call Foo::TearDownTestCase() after running the last + // test in test case Foo. Hence a sub-class can define its own + // TearDownTestCase() method to shadow the one defined in the super + // class. + static void TearDownTestCase() {} + + // Returns true iff the current test has a fatal failure. + static bool HasFatalFailure(); + + // Returns true iff the current test has a non-fatal failure. + static bool HasNonfatalFailure(); + + // Returns true iff the current test has a (either fatal or + // non-fatal) failure. + static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); } + + // Logs a property for the current test, test case, or for the entire + // invocation of the test program when used outside of the context of a + // test case. Only the last value for a given key is remembered. These + // are public static so they can be called from utility functions that are + // not members of the test fixture. Calls to RecordProperty made during + // lifespan of the test (from the moment its constructor starts to the + // moment its destructor finishes) will be output in XML as attributes of + // the element. Properties recorded from fixture's + // SetUpTestCase or TearDownTestCase are logged as attributes of the + // corresponding element. Calls to RecordProperty made in the + // global context (before or after invocation of RUN_ALL_TESTS and from + // SetUp/TearDown method of Environment objects registered with Google + // Test) will be output as attributes of the element. + static void RecordProperty(const std::string& key, const std::string& value); + static void RecordProperty(const std::string& key, int value); + + protected: + // Creates a Test object. + Test(); + + // Sets up the test fixture. + virtual void SetUp(); + + // Tears down the test fixture. + virtual void TearDown(); + + private: + // Returns true iff the current test has the same fixture class as + // the first test in the current test case. + static bool HasSameFixtureClass(); + + // Runs the test after the test fixture has been set up. + // + // A sub-class must implement this to define the test logic. + // + // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM. + // Instead, use the TEST or TEST_F macro. + virtual void TestBody() = 0; + + // Sets up, executes, and tears down the test. + void Run(); + + // Deletes self. We deliberately pick an unusual name for this + // internal method to avoid clashing with names used in user TESTs. + void DeleteSelf_() { delete this; } + + // Uses a GTestFlagSaver to save and restore all Google Test flags. + const internal::GTestFlagSaver* const gtest_flag_saver_; + + // Often a user mis-spells SetUp() as Setup() and spends a long time + // wondering why it is never called by Google Test. The declaration of + // the following method is solely for catching such an error at + // compile time: + // + // - The return type is deliberately chosen to be not void, so it + // will be a conflict if a user declares void Setup() in his test + // fixture. + // + // - This method is private, so it will be another compiler error + // if a user calls it from his test fixture. + // + // DO NOT OVERRIDE THIS FUNCTION. + // + // If you see an error about overriding the following function or + // about it being private, you have mis-spelled SetUp() as Setup(). + struct Setup_should_be_spelled_SetUp {}; + virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; } + + // We disallow copying Tests. + GTEST_DISALLOW_COPY_AND_ASSIGN_(Test); +}; + +typedef internal::TimeInMillis TimeInMillis; + +// A copyable object representing a user specified test property which can be +// output as a key/value string pair. +// +// Don't inherit from TestProperty as its destructor is not virtual. +class TestProperty { + public: + // C'tor. TestProperty does NOT have a default constructor. + // Always use this constructor (with parameters) to create a + // TestProperty object. + TestProperty(const std::string& a_key, const std::string& a_value) : + key_(a_key), value_(a_value) { + } + + // Gets the user supplied key. + const char* key() const { + return key_.c_str(); + } + + // Gets the user supplied value. + const char* value() const { + return value_.c_str(); + } + + // Sets a new value, overriding the one supplied in the constructor. + void SetValue(const std::string& new_value) { + value_ = new_value; + } + + private: + // The key supplied by the user. + std::string key_; + // The value supplied by the user. + std::string value_; +}; + +// The result of a single Test. This includes a list of +// TestPartResults, a list of TestProperties, a count of how many +// death tests there are in the Test, and how much time it took to run +// the Test. +// +// TestResult is not copyable. +class GTEST_API_ TestResult { + public: + // Creates an empty TestResult. + TestResult(); + + // D'tor. Do not inherit from TestResult. + ~TestResult(); + + // Gets the number of all test parts. This is the sum of the number + // of successful test parts and the number of failed test parts. + int total_part_count() const; + + // Returns the number of the test properties. + int test_property_count() const; + + // Returns true iff the test passed (i.e. no test part failed). + bool Passed() const { return !Failed(); } + + // Returns true iff the test failed. + bool Failed() const; + + // Returns true iff the test fatally failed. + bool HasFatalFailure() const; + + // Returns true iff the test has a non-fatal failure. + bool HasNonfatalFailure() const; + + // Returns the elapsed time, in milliseconds. + TimeInMillis elapsed_time() const { return elapsed_time_; } + + // Returns the i-th test part result among all the results. i can range + // from 0 to test_property_count() - 1. If i is not in that range, aborts + // the program. + const TestPartResult& GetTestPartResult(int i) const; + + // Returns the i-th test property. i can range from 0 to + // test_property_count() - 1. If i is not in that range, aborts the + // program. + const TestProperty& GetTestProperty(int i) const; + + private: + friend class TestInfo; + friend class TestCase; + friend class UnitTest; + friend class internal::DefaultGlobalTestPartResultReporter; + friend class internal::ExecDeathTest; + friend class internal::TestResultAccessor; + friend class internal::UnitTestImpl; + friend class internal::WindowsDeathTest; + + // Gets the vector of TestPartResults. + const std::vector& test_part_results() const { + return test_part_results_; + } + + // Gets the vector of TestProperties. + const std::vector& test_properties() const { + return test_properties_; + } + + // Sets the elapsed time. + void set_elapsed_time(TimeInMillis elapsed) { elapsed_time_ = elapsed; } + + // Adds a test property to the list. The property is validated and may add + // a non-fatal failure if invalid (e.g., if it conflicts with reserved + // key names). If a property is already recorded for the same key, the + // value will be updated, rather than storing multiple values for the same + // key. xml_element specifies the element for which the property is being + // recorded and is used for validation. + void RecordProperty(const std::string& xml_element, + const TestProperty& test_property); + + // Adds a failure if the key is a reserved attribute of Google Test + // testcase tags. Returns true if the property is valid. + // TODO(russr): Validate attribute names are legal and human readable. + static bool ValidateTestProperty(const std::string& xml_element, + const TestProperty& test_property); + + // Adds a test part result to the list. + void AddTestPartResult(const TestPartResult& test_part_result); + + // Returns the death test count. + int death_test_count() const { return death_test_count_; } + + // Increments the death test count, returning the new count. + int increment_death_test_count() { return ++death_test_count_; } + + // Clears the test part results. + void ClearTestPartResults(); + + // Clears the object. + void Clear(); + + // Protects mutable state of the property vector and of owned + // properties, whose values may be updated. + internal::Mutex test_properites_mutex_; + + // The vector of TestPartResults + std::vector test_part_results_; + // The vector of TestProperties + std::vector test_properties_; + // Running count of death tests. + int death_test_count_; + // The elapsed time, in milliseconds. + TimeInMillis elapsed_time_; + + // We disallow copying TestResult. + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult); +}; // class TestResult + +// A TestInfo object stores the following information about a test: +// +// Test case name +// Test name +// Whether the test should be run +// A function pointer that creates the test object when invoked +// Test result +// +// The constructor of TestInfo registers itself with the UnitTest +// singleton such that the RUN_ALL_TESTS() macro knows which tests to +// run. +class GTEST_API_ TestInfo { + public: + // Destructs a TestInfo object. This function is not virtual, so + // don't inherit from TestInfo. + ~TestInfo(); + + // Returns the test case name. + const char* test_case_name() const { return test_case_name_.c_str(); } + + // Returns the test name. + const char* name() const { return name_.c_str(); } + + // Returns the name of the parameter type, or NULL if this is not a typed + // or a type-parameterized test. + const char* type_param() const { + if (type_param_.get() != NULL) + return type_param_->c_str(); + return NULL; + } + + // Returns the text representation of the value parameter, or NULL if this + // is not a value-parameterized test. + const char* value_param() const { + if (value_param_.get() != NULL) + return value_param_->c_str(); + return NULL; + } + + // Returns true if this test should run, that is if the test is not + // disabled (or it is disabled but the also_run_disabled_tests flag has + // been specified) and its full name matches the user-specified filter. + // + // Google Test allows the user to filter the tests by their full names. + // The full name of a test Bar in test case Foo is defined as + // "Foo.Bar". Only the tests that match the filter will run. + // + // A filter is a colon-separated list of glob (not regex) patterns, + // optionally followed by a '-' and a colon-separated list of + // negative patterns (tests to exclude). A test is run if it + // matches one of the positive patterns and does not match any of + // the negative patterns. + // + // For example, *A*:Foo.* is a filter that matches any string that + // contains the character 'A' or starts with "Foo.". + bool should_run() const { return should_run_; } + + // Returns true iff this test will appear in the XML report. + bool is_reportable() const { + // For now, the XML report includes all tests matching the filter. + // In the future, we may trim tests that are excluded because of + // sharding. + return matches_filter_; + } + + // Returns the result of the test. + const TestResult* result() const { return &result_; } + + private: +#if GTEST_HAS_DEATH_TEST + friend class internal::DefaultDeathTestFactory; +#endif // GTEST_HAS_DEATH_TEST + friend class Test; + friend class TestCase; + friend class internal::UnitTestImpl; + friend class internal::StreamingListenerTest; + friend TestInfo* internal::MakeAndRegisterTestInfo( + const char* test_case_name, + const char* name, + const char* type_param, + const char* value_param, + internal::TypeId fixture_class_id, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc, + internal::TestFactoryBase* factory); + + // Constructs a TestInfo object. The newly constructed instance assumes + // ownership of the factory object. + TestInfo(const std::string& test_case_name, + const std::string& name, + const char* a_type_param, // NULL if not a type-parameterized test + const char* a_value_param, // NULL if not a value-parameterized test + internal::TypeId fixture_class_id, + internal::TestFactoryBase* factory); + + // Increments the number of death tests encountered in this test so + // far. + int increment_death_test_count() { + return result_.increment_death_test_count(); + } + + // Creates the test object, runs it, records its result, and then + // deletes it. + void Run(); + + static void ClearTestResult(TestInfo* test_info) { + test_info->result_.Clear(); + } + + // These fields are immutable properties of the test. + const std::string test_case_name_; // Test case name + const std::string name_; // Test name + // Name of the parameter type, or NULL if this is not a typed or a + // type-parameterized test. + const internal::scoped_ptr type_param_; + // Text representation of the value parameter, or NULL if this is not a + // value-parameterized test. + const internal::scoped_ptr value_param_; + const internal::TypeId fixture_class_id_; // ID of the test fixture class + bool should_run_; // True iff this test should run + bool is_disabled_; // True iff this test is disabled + bool matches_filter_; // True if this test matches the + // user-specified filter. + internal::TestFactoryBase* const factory_; // The factory that creates + // the test object + + // This field is mutable and needs to be reset before running the + // test for the second time. + TestResult result_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo); +}; + +// A test case, which consists of a vector of TestInfos. +// +// TestCase is not copyable. +class GTEST_API_ TestCase { + public: + // Creates a TestCase with the given name. + // + // TestCase does NOT have a default constructor. Always use this + // constructor to create a TestCase object. + // + // Arguments: + // + // name: name of the test case + // a_type_param: the name of the test's type parameter, or NULL if + // this is not a type-parameterized test. + // set_up_tc: pointer to the function that sets up the test case + // tear_down_tc: pointer to the function that tears down the test case + TestCase(const char* name, const char* a_type_param, + Test::SetUpTestCaseFunc set_up_tc, + Test::TearDownTestCaseFunc tear_down_tc); + + // Destructor of TestCase. + virtual ~TestCase(); + + // Gets the name of the TestCase. + const char* name() const { return name_.c_str(); } + + // Returns the name of the parameter type, or NULL if this is not a + // type-parameterized test case. + const char* type_param() const { + if (type_param_.get() != NULL) + return type_param_->c_str(); + return NULL; + } + + // Returns true if any test in this test case should run. + bool should_run() const { return should_run_; } + + // Gets the number of successful tests in this test case. + int successful_test_count() const; + + // Gets the number of failed tests in this test case. + int failed_test_count() const; + + // Gets the number of disabled tests that will be reported in the XML report. + int reportable_disabled_test_count() const; + + // Gets the number of disabled tests in this test case. + int disabled_test_count() const; + + // Gets the number of tests to be printed in the XML report. + int reportable_test_count() const; + + // Get the number of tests in this test case that should run. + int test_to_run_count() const; + + // Gets the number of all tests in this test case. + int total_test_count() const; + + // Returns true iff the test case passed. + bool Passed() const { return !Failed(); } + + // Returns true iff the test case failed. + bool Failed() const { return failed_test_count() > 0; } + + // Returns the elapsed time, in milliseconds. + TimeInMillis elapsed_time() const { return elapsed_time_; } + + // Returns the i-th test among all the tests. i can range from 0 to + // total_test_count() - 1. If i is not in that range, returns NULL. + const TestInfo* GetTestInfo(int i) const; + + // Returns the TestResult that holds test properties recorded during + // execution of SetUpTestCase and TearDownTestCase. + const TestResult& ad_hoc_test_result() const { return ad_hoc_test_result_; } + + private: + friend class Test; + friend class internal::UnitTestImpl; + + // Gets the (mutable) vector of TestInfos in this TestCase. + std::vector& test_info_list() { return test_info_list_; } + + // Gets the (immutable) vector of TestInfos in this TestCase. + const std::vector& test_info_list() const { + return test_info_list_; + } + + // Returns the i-th test among all the tests. i can range from 0 to + // total_test_count() - 1. If i is not in that range, returns NULL. + TestInfo* GetMutableTestInfo(int i); + + // Sets the should_run member. + void set_should_run(bool should) { should_run_ = should; } + + // Adds a TestInfo to this test case. Will delete the TestInfo upon + // destruction of the TestCase object. + void AddTestInfo(TestInfo * test_info); + + // Clears the results of all tests in this test case. + void ClearResult(); + + // Clears the results of all tests in the given test case. + static void ClearTestCaseResult(TestCase* test_case) { + test_case->ClearResult(); + } + + // Runs every test in this TestCase. + void Run(); + + // Runs SetUpTestCase() for this TestCase. This wrapper is needed + // for catching exceptions thrown from SetUpTestCase(). + void RunSetUpTestCase() { (*set_up_tc_)(); } + + // Runs TearDownTestCase() for this TestCase. This wrapper is + // needed for catching exceptions thrown from TearDownTestCase(). + void RunTearDownTestCase() { (*tear_down_tc_)(); } + + // Returns true iff test passed. + static bool TestPassed(const TestInfo* test_info) { + return test_info->should_run() && test_info->result()->Passed(); + } + + // Returns true iff test failed. + static bool TestFailed(const TestInfo* test_info) { + return test_info->should_run() && test_info->result()->Failed(); + } + + // Returns true iff the test is disabled and will be reported in the XML + // report. + static bool TestReportableDisabled(const TestInfo* test_info) { + return test_info->is_reportable() && test_info->is_disabled_; + } + + // Returns true iff test is disabled. + static bool TestDisabled(const TestInfo* test_info) { + return test_info->is_disabled_; + } + + // Returns true iff this test will appear in the XML report. + static bool TestReportable(const TestInfo* test_info) { + return test_info->is_reportable(); + } + + // Returns true if the given test should run. + static bool ShouldRunTest(const TestInfo* test_info) { + return test_info->should_run(); + } + + // Shuffles the tests in this test case. + void ShuffleTests(internal::Random* random); + + // Restores the test order to before the first shuffle. + void UnshuffleTests(); + + // Name of the test case. + std::string name_; + // Name of the parameter type, or NULL if this is not a typed or a + // type-parameterized test. + const internal::scoped_ptr type_param_; + // The vector of TestInfos in their original order. It owns the + // elements in the vector. + std::vector test_info_list_; + // Provides a level of indirection for the test list to allow easy + // shuffling and restoring the test order. The i-th element in this + // vector is the index of the i-th test in the shuffled test list. + std::vector test_indices_; + // Pointer to the function that sets up the test case. + Test::SetUpTestCaseFunc set_up_tc_; + // Pointer to the function that tears down the test case. + Test::TearDownTestCaseFunc tear_down_tc_; + // True iff any test in this test case should run. + bool should_run_; + // Elapsed time, in milliseconds. + TimeInMillis elapsed_time_; + // Holds test properties recorded during execution of SetUpTestCase and + // TearDownTestCase. + TestResult ad_hoc_test_result_; + + // We disallow copying TestCases. + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestCase); +}; + +// An Environment object is capable of setting up and tearing down an +// environment. The user should subclass this to define his own +// environment(s). +// +// An Environment object does the set-up and tear-down in virtual +// methods SetUp() and TearDown() instead of the constructor and the +// destructor, as: +// +// 1. You cannot safely throw from a destructor. This is a problem +// as in some cases Google Test is used where exceptions are enabled, and +// we may want to implement ASSERT_* using exceptions where they are +// available. +// 2. You cannot use ASSERT_* directly in a constructor or +// destructor. +class Environment { + public: + // The d'tor is virtual as we need to subclass Environment. + virtual ~Environment() {} + + // Override this to define how to set up the environment. + virtual void SetUp() {} + + // Override this to define how to tear down the environment. + virtual void TearDown() {} + private: + // If you see an error about overriding the following function or + // about it being private, you have mis-spelled SetUp() as Setup(). + struct Setup_should_be_spelled_SetUp {}; + virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; } +}; + +// The interface for tracing execution of tests. The methods are organized in +// the order the corresponding events are fired. +class TestEventListener { + public: + virtual ~TestEventListener() {} + + // Fired before any test activity starts. + virtual void OnTestProgramStart(const UnitTest& unit_test) = 0; + + // Fired before each iteration of tests starts. There may be more than + // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration + // index, starting from 0. + virtual void OnTestIterationStart(const UnitTest& unit_test, + int iteration) = 0; + + // Fired before environment set-up for each iteration of tests starts. + virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test) = 0; + + // Fired after environment set-up for each iteration of tests ends. + virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) = 0; + + // Fired before the test case starts. + virtual void OnTestCaseStart(const TestCase& test_case) = 0; + + // Fired before the test starts. + virtual void OnTestStart(const TestInfo& test_info) = 0; + + // Fired after a failed assertion or a SUCCEED() invocation. + virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0; + + // Fired after the test ends. + virtual void OnTestEnd(const TestInfo& test_info) = 0; + + // Fired after the test case ends. + virtual void OnTestCaseEnd(const TestCase& test_case) = 0; + + // Fired before environment tear-down for each iteration of tests starts. + virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test) = 0; + + // Fired after environment tear-down for each iteration of tests ends. + virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) = 0; + + // Fired after each iteration of tests finishes. + virtual void OnTestIterationEnd(const UnitTest& unit_test, + int iteration) = 0; + + // Fired after all test activities have ended. + virtual void OnTestProgramEnd(const UnitTest& unit_test) = 0; +}; + +// The convenience class for users who need to override just one or two +// methods and are not concerned that a possible change to a signature of +// the methods they override will not be caught during the build. For +// comments about each method please see the definition of TestEventListener +// above. +class EmptyTestEventListener : public TestEventListener { + public: + virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {} + virtual void OnTestIterationStart(const UnitTest& /*unit_test*/, + int /*iteration*/) {} + virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) {} + virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {} + virtual void OnTestCaseStart(const TestCase& /*test_case*/) {} + virtual void OnTestStart(const TestInfo& /*test_info*/) {} + virtual void OnTestPartResult(const TestPartResult& /*test_part_result*/) {} + virtual void OnTestEnd(const TestInfo& /*test_info*/) {} + virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {} + virtual void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) {} + virtual void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) {} + virtual void OnTestIterationEnd(const UnitTest& /*unit_test*/, + int /*iteration*/) {} + virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {} +}; + +// TestEventListeners lets users add listeners to track events in Google Test. +class GTEST_API_ TestEventListeners { + public: + TestEventListeners(); + ~TestEventListeners(); + + // Appends an event listener to the end of the list. Google Test assumes + // the ownership of the listener (i.e. it will delete the listener when + // the test program finishes). + void Append(TestEventListener* listener); + + // Removes the given event listener from the list and returns it. It then + // becomes the caller's responsibility to delete the listener. Returns + // NULL if the listener is not found in the list. + TestEventListener* Release(TestEventListener* listener); + + // Returns the standard listener responsible for the default console + // output. Can be removed from the listeners list to shut down default + // console output. Note that removing this object from the listener list + // with Release transfers its ownership to the caller and makes this + // function return NULL the next time. + TestEventListener* default_result_printer() const { + return default_result_printer_; + } + + // Returns the standard listener responsible for the default XML output + // controlled by the --gtest_output=xml flag. Can be removed from the + // listeners list by users who want to shut down the default XML output + // controlled by this flag and substitute it with custom one. Note that + // removing this object from the listener list with Release transfers its + // ownership to the caller and makes this function return NULL the next + // time. + TestEventListener* default_xml_generator() const { + return default_xml_generator_; + } + + private: + friend class TestCase; + friend class TestInfo; + friend class internal::DefaultGlobalTestPartResultReporter; + friend class internal::NoExecDeathTest; + friend class internal::TestEventListenersAccessor; + friend class internal::UnitTestImpl; + + // Returns repeater that broadcasts the TestEventListener events to all + // subscribers. + TestEventListener* repeater(); + + // Sets the default_result_printer attribute to the provided listener. + // The listener is also added to the listener list and previous + // default_result_printer is removed from it and deleted. The listener can + // also be NULL in which case it will not be added to the list. Does + // nothing if the previous and the current listener objects are the same. + void SetDefaultResultPrinter(TestEventListener* listener); + + // Sets the default_xml_generator attribute to the provided listener. The + // listener is also added to the listener list and previous + // default_xml_generator is removed from it and deleted. The listener can + // also be NULL in which case it will not be added to the list. Does + // nothing if the previous and the current listener objects are the same. + void SetDefaultXmlGenerator(TestEventListener* listener); + + // Controls whether events will be forwarded by the repeater to the + // listeners in the list. + bool EventForwardingEnabled() const; + void SuppressEventForwarding(); + + // The actual list of listeners. + internal::TestEventRepeater* repeater_; + // Listener responsible for the standard result output. + TestEventListener* default_result_printer_; + // Listener responsible for the creation of the XML output file. + TestEventListener* default_xml_generator_; + + // We disallow copying TestEventListeners. + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventListeners); +}; + +// A UnitTest consists of a vector of TestCases. +// +// This is a singleton class. The only instance of UnitTest is +// created when UnitTest::GetInstance() is first called. This +// instance is never deleted. +// +// UnitTest is not copyable. +// +// This class is thread-safe as long as the methods are called +// according to their specification. +class GTEST_API_ UnitTest { + public: + // Gets the singleton UnitTest object. The first time this method + // is called, a UnitTest object is constructed and returned. + // Consecutive calls will return the same object. + static UnitTest* GetInstance(); + + // Runs all tests in this UnitTest object and prints the result. + // Returns 0 if successful, or 1 otherwise. + // + // This method can only be called from the main thread. + // + // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. + int Run() GTEST_MUST_USE_RESULT_; + + // Returns the working directory when the first TEST() or TEST_F() + // was executed. The UnitTest object owns the string. + const char* original_working_dir() const; + + // Returns the TestCase object for the test that's currently running, + // or NULL if no test is running. + const TestCase* current_test_case() const + GTEST_LOCK_EXCLUDED_(mutex_); + + // Returns the TestInfo object for the test that's currently running, + // or NULL if no test is running. + const TestInfo* current_test_info() const + GTEST_LOCK_EXCLUDED_(mutex_); + + // Returns the random seed used at the start of the current test run. + int random_seed() const; + +#if GTEST_HAS_PARAM_TEST + // Returns the ParameterizedTestCaseRegistry object used to keep track of + // value-parameterized tests and instantiate and register them. + // + // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. + internal::ParameterizedTestCaseRegistry& parameterized_test_registry() + GTEST_LOCK_EXCLUDED_(mutex_); +#endif // GTEST_HAS_PARAM_TEST + + // Gets the number of successful test cases. + int successful_test_case_count() const; + + // Gets the number of failed test cases. + int failed_test_case_count() const; + + // Gets the number of all test cases. + int total_test_case_count() const; + + // Gets the number of all test cases that contain at least one test + // that should run. + int test_case_to_run_count() const; + + // Gets the number of successful tests. + int successful_test_count() const; + + // Gets the number of failed tests. + int failed_test_count() const; + + // Gets the number of disabled tests that will be reported in the XML report. + int reportable_disabled_test_count() const; + + // Gets the number of disabled tests. + int disabled_test_count() const; + + // Gets the number of tests to be printed in the XML report. + int reportable_test_count() const; + + // Gets the number of all tests. + int total_test_count() const; + + // Gets the number of tests that should run. + int test_to_run_count() const; + + // Gets the time of the test program start, in ms from the start of the + // UNIX epoch. + TimeInMillis start_timestamp() const; + + // Gets the elapsed time, in milliseconds. + TimeInMillis elapsed_time() const; + + // Returns true iff the unit test passed (i.e. all test cases passed). + bool Passed() const; + + // Returns true iff the unit test failed (i.e. some test case failed + // or something outside of all tests failed). + bool Failed() const; + + // Gets the i-th test case among all the test cases. i can range from 0 to + // total_test_case_count() - 1. If i is not in that range, returns NULL. + const TestCase* GetTestCase(int i) const; + + // Returns the TestResult containing information on test failures and + // properties logged outside of individual test cases. + const TestResult& ad_hoc_test_result() const; + + // Returns the list of event listeners that can be used to track events + // inside Google Test. + TestEventListeners& listeners(); + + private: + // Registers and returns a global test environment. When a test + // program is run, all global test environments will be set-up in + // the order they were registered. After all tests in the program + // have finished, all global test environments will be torn-down in + // the *reverse* order they were registered. + // + // The UnitTest object takes ownership of the given environment. + // + // This method can only be called from the main thread. + Environment* AddEnvironment(Environment* env); + + // Adds a TestPartResult to the current TestResult object. All + // Google Test assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) + // eventually call this to report their results. The user code + // should use the assertion macros instead of calling this directly. + void AddTestPartResult(TestPartResult::Type result_type, + const char* file_name, + int line_number, + const std::string& message, + const std::string& os_stack_trace) + GTEST_LOCK_EXCLUDED_(mutex_); + + // Adds a TestProperty to the current TestResult object when invoked from + // inside a test, to current TestCase's ad_hoc_test_result_ when invoked + // from SetUpTestCase or TearDownTestCase, or to the global property set + // when invoked elsewhere. If the result already contains a property with + // the same key, the value will be updated. + void RecordProperty(const std::string& key, const std::string& value); + + // Gets the i-th test case among all the test cases. i can range from 0 to + // total_test_case_count() - 1. If i is not in that range, returns NULL. + TestCase* GetMutableTestCase(int i); + + // Accessors for the implementation object. + internal::UnitTestImpl* impl() { return impl_; } + const internal::UnitTestImpl* impl() const { return impl_; } + + // These classes and funcions are friends as they need to access private + // members of UnitTest. + friend class Test; + friend class internal::AssertHelper; + friend class internal::ScopedTrace; + friend class internal::StreamingListenerTest; + friend class internal::UnitTestRecordPropertyTestHelper; + friend Environment* AddGlobalTestEnvironment(Environment* env); + friend internal::UnitTestImpl* internal::GetUnitTestImpl(); + friend void internal::ReportFailureInUnknownLocation( + TestPartResult::Type result_type, + const std::string& message); + + // Creates an empty UnitTest. + UnitTest(); + + // D'tor + virtual ~UnitTest(); + + // Pushes a trace defined by SCOPED_TRACE() on to the per-thread + // Google Test trace stack. + void PushGTestTrace(const internal::TraceInfo& trace) + GTEST_LOCK_EXCLUDED_(mutex_); + + // Pops a trace from the per-thread Google Test trace stack. + void PopGTestTrace() + GTEST_LOCK_EXCLUDED_(mutex_); + + // Protects mutable state in *impl_. This is mutable as some const + // methods need to lock it too. + mutable internal::Mutex mutex_; + + // Opaque implementation object. This field is never changed once + // the object is constructed. We don't mark it as const here, as + // doing so will cause a warning in the constructor of UnitTest. + // Mutable state in *impl_ is protected by mutex_. + internal::UnitTestImpl* impl_; + + // We disallow copying UnitTest. + GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest); +}; + +// A convenient wrapper for adding an environment for the test +// program. +// +// You should call this before RUN_ALL_TESTS() is called, probably in +// main(). If you use gtest_main, you need to call this before main() +// starts for it to take effect. For example, you can define a global +// variable like this: +// +// testing::Environment* const foo_env = +// testing::AddGlobalTestEnvironment(new FooEnvironment); +// +// However, we strongly recommend you to write your own main() and +// call AddGlobalTestEnvironment() there, as relying on initialization +// of global variables makes the code harder to read and may cause +// problems when you register multiple environments from different +// translation units and the environments have dependencies among them +// (remember that the compiler doesn't guarantee the order in which +// global variables from different translation units are initialized). +inline Environment* AddGlobalTestEnvironment(Environment* env) { + return UnitTest::GetInstance()->AddEnvironment(env); +} + +// Initializes Google Test. This must be called before calling +// RUN_ALL_TESTS(). In particular, it parses a command line for the +// flags that Google Test recognizes. Whenever a Google Test flag is +// seen, it is removed from argv, and *argc is decremented. +// +// No value is returned. Instead, the Google Test flag variables are +// updated. +// +// Calling the function for the second time has no user-visible effect. +GTEST_API_ void InitGoogleTest(int* argc, char** argv); + +// This overloaded version can be used in Windows programs compiled in +// UNICODE mode. +GTEST_API_ void InitGoogleTest(int* argc, wchar_t** argv); + +namespace internal { + +// FormatForComparison::Format(value) formats a +// value of type ToPrint that is an operand of a comparison assertion +// (e.g. ASSERT_EQ). OtherOperand is the type of the other operand in +// the comparison, and is used to help determine the best way to +// format the value. In particular, when the value is a C string +// (char pointer) and the other operand is an STL string object, we +// want to format the C string as a string, since we know it is +// compared by value with the string object. If the value is a char +// pointer but the other operand is not an STL string object, we don't +// know whether the pointer is supposed to point to a NUL-terminated +// string, and thus want to print it as a pointer to be safe. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. + +// The default case. +template +class FormatForComparison { + public: + static ::std::string Format(const ToPrint& value) { + return ::testing::PrintToString(value); + } +}; + +// Array. +template +class FormatForComparison { + public: + static ::std::string Format(const ToPrint* value) { + return FormatForComparison::Format(value); + } +}; + +// By default, print C string as pointers to be safe, as we don't know +// whether they actually point to a NUL-terminated string. + +#define GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(CharType) \ + template \ + class FormatForComparison { \ + public: \ + static ::std::string Format(CharType* value) { \ + return ::testing::PrintToString(static_cast(value)); \ + } \ + } + +GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char); +GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char); +GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(wchar_t); +GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const wchar_t); + +#undef GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ + +// If a C string is compared with an STL string object, we know it's meant +// to point to a NUL-terminated string, and thus can print it as a string. + +#define GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(CharType, OtherStringType) \ + template <> \ + class FormatForComparison { \ + public: \ + static ::std::string Format(CharType* value) { \ + return ::testing::PrintToString(value); \ + } \ + } + +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char, ::std::string); +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char, ::std::string); + +#if GTEST_HAS_GLOBAL_STRING +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char, ::string); +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char, ::string); +#endif + +#if GTEST_HAS_GLOBAL_WSTRING +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(wchar_t, ::wstring); +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const wchar_t, ::wstring); +#endif + +#if GTEST_HAS_STD_WSTRING +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(wchar_t, ::std::wstring); +GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const wchar_t, ::std::wstring); +#endif + +#undef GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ + +// Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc) +// operand to be used in a failure message. The type (but not value) +// of the other operand may affect the format. This allows us to +// print a char* as a raw pointer when it is compared against another +// char* or void*, and print it as a C string when it is compared +// against an std::string object, for example. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +template +std::string FormatForComparisonFailureMessage( + const T1& value, const T2& /* other_operand */) { + return FormatForComparison::Format(value); +} + +// The helper function for {ASSERT|EXPECT}_EQ. +template +AssertionResult CmpHelperEQ(const char* expected_expression, + const char* actual_expression, + const T1& expected, + const T2& actual) { +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4389) // Temporarily disables warning on + // signed/unsigned mismatch. +#endif + + if (expected == actual) { + return AssertionSuccess(); + } + +#ifdef _MSC_VER +# pragma warning(pop) // Restores the warning state. +#endif + + return EqFailure(expected_expression, + actual_expression, + FormatForComparisonFailureMessage(expected, actual), + FormatForComparisonFailureMessage(actual, expected), + false); +} + +// With this overloaded version, we allow anonymous enums to be used +// in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous enums +// can be implicitly cast to BiggestInt. +GTEST_API_ AssertionResult CmpHelperEQ(const char* expected_expression, + const char* actual_expression, + BiggestInt expected, + BiggestInt actual); + +// The helper class for {ASSERT|EXPECT}_EQ. The template argument +// lhs_is_null_literal is true iff the first argument to ASSERT_EQ() +// is a null pointer literal. The following default implementation is +// for lhs_is_null_literal being false. +template +class EqHelper { + public: + // This templatized version is for the general case. + template + static AssertionResult Compare(const char* expected_expression, + const char* actual_expression, + const T1& expected, + const T2& actual) { + return CmpHelperEQ(expected_expression, actual_expression, expected, + actual); + } + + // With this overloaded version, we allow anonymous enums to be used + // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous + // enums can be implicitly cast to BiggestInt. + // + // Even though its body looks the same as the above version, we + // cannot merge the two, as it will make anonymous enums unhappy. + static AssertionResult Compare(const char* expected_expression, + const char* actual_expression, + BiggestInt expected, + BiggestInt actual) { + return CmpHelperEQ(expected_expression, actual_expression, expected, + actual); + } +}; + +// This specialization is used when the first argument to ASSERT_EQ() +// is a null pointer literal, like NULL, false, or 0. +template <> +class EqHelper { + public: + // We define two overloaded versions of Compare(). The first + // version will be picked when the second argument to ASSERT_EQ() is + // NOT a pointer, e.g. ASSERT_EQ(0, AnIntFunction()) or + // EXPECT_EQ(false, a_bool). + template + static AssertionResult Compare( + const char* expected_expression, + const char* actual_expression, + const T1& expected, + const T2& actual, + // The following line prevents this overload from being considered if T2 + // is not a pointer type. We need this because ASSERT_EQ(NULL, my_ptr) + // expands to Compare("", "", NULL, my_ptr), which requires a conversion + // to match the Secret* in the other overload, which would otherwise make + // this template match better. + typename EnableIf::value>::type* = 0) { + return CmpHelperEQ(expected_expression, actual_expression, expected, + actual); + } + + // This version will be picked when the second argument to ASSERT_EQ() is a + // pointer, e.g. ASSERT_EQ(NULL, a_pointer). + template + static AssertionResult Compare( + const char* expected_expression, + const char* actual_expression, + // We used to have a second template parameter instead of Secret*. That + // template parameter would deduce to 'long', making this a better match + // than the first overload even without the first overload's EnableIf. + // Unfortunately, gcc with -Wconversion-null warns when "passing NULL to + // non-pointer argument" (even a deduced integral argument), so the old + // implementation caused warnings in user code. + Secret* /* expected (NULL) */, + T* actual) { + // We already know that 'expected' is a null pointer. + return CmpHelperEQ(expected_expression, actual_expression, + static_cast(NULL), actual); + } +}; + +// A macro for implementing the helper functions needed to implement +// ASSERT_?? and EXPECT_??. It is here just to avoid copy-and-paste +// of similar code. +// +// For each templatized helper function, we also define an overloaded +// version for BiggestInt in order to reduce code bloat and allow +// anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled +// with gcc 4. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +#define GTEST_IMPL_CMP_HELPER_(op_name, op)\ +template \ +AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ + const T1& val1, const T2& val2) {\ + if (val1 op val2) {\ + return AssertionSuccess();\ + } else {\ + return AssertionFailure() \ + << "Expected: (" << expr1 << ") " #op " (" << expr2\ + << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\ + << " vs " << FormatForComparisonFailureMessage(val2, val1);\ + }\ +}\ +GTEST_API_ AssertionResult CmpHelper##op_name(\ + const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2) + +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. + +// Implements the helper function for {ASSERT|EXPECT}_NE +GTEST_IMPL_CMP_HELPER_(NE, !=); +// Implements the helper function for {ASSERT|EXPECT}_LE +GTEST_IMPL_CMP_HELPER_(LE, <=); +// Implements the helper function for {ASSERT|EXPECT}_LT +GTEST_IMPL_CMP_HELPER_(LT, <); +// Implements the helper function for {ASSERT|EXPECT}_GE +GTEST_IMPL_CMP_HELPER_(GE, >=); +// Implements the helper function for {ASSERT|EXPECT}_GT +GTEST_IMPL_CMP_HELPER_(GT, >); + +#undef GTEST_IMPL_CMP_HELPER_ + +// The helper function for {ASSERT|EXPECT}_STREQ. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression, + const char* actual_expression, + const char* expected, + const char* actual); + +// The helper function for {ASSERT|EXPECT}_STRCASEEQ. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression, + const char* actual_expression, + const char* expected, + const char* actual); + +// The helper function for {ASSERT|EXPECT}_STRNE. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, + const char* s2_expression, + const char* s1, + const char* s2); + +// The helper function for {ASSERT|EXPECT}_STRCASENE. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression, + const char* s2_expression, + const char* s1, + const char* s2); + + +// Helper function for *_STREQ on wide strings. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression, + const char* actual_expression, + const wchar_t* expected, + const wchar_t* actual); + +// Helper function for *_STRNE on wide strings. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, + const char* s2_expression, + const wchar_t* s1, + const wchar_t* s2); + +} // namespace internal + +// IsSubstring() and IsNotSubstring() are intended to be used as the +// first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by +// themselves. They check whether needle is a substring of haystack +// (NULL is considered a substring of itself only), and return an +// appropriate error message when they fail. +// +// The {needle,haystack}_expr arguments are the stringified +// expressions that generated the two real arguments. +GTEST_API_ AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const char* needle, const char* haystack); +GTEST_API_ AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const wchar_t* needle, const wchar_t* haystack); +GTEST_API_ AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const char* needle, const char* haystack); +GTEST_API_ AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const wchar_t* needle, const wchar_t* haystack); +GTEST_API_ AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::string& needle, const ::std::string& haystack); +GTEST_API_ AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::string& needle, const ::std::string& haystack); + +#if GTEST_HAS_STD_WSTRING +GTEST_API_ AssertionResult IsSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::wstring& needle, const ::std::wstring& haystack); +GTEST_API_ AssertionResult IsNotSubstring( + const char* needle_expr, const char* haystack_expr, + const ::std::wstring& needle, const ::std::wstring& haystack); +#endif // GTEST_HAS_STD_WSTRING + +namespace internal { + +// Helper template function for comparing floating-points. +// +// Template parameter: +// +// RawType: the raw floating-point type (either float or double) +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +template +AssertionResult CmpHelperFloatingPointEQ(const char* expected_expression, + const char* actual_expression, + RawType expected, + RawType actual) { + const FloatingPoint lhs(expected), rhs(actual); + + if (lhs.AlmostEquals(rhs)) { + return AssertionSuccess(); + } + + ::std::stringstream expected_ss; + expected_ss << std::setprecision(std::numeric_limits::digits10 + 2) + << expected; + + ::std::stringstream actual_ss; + actual_ss << std::setprecision(std::numeric_limits::digits10 + 2) + << actual; + + return EqFailure(expected_expression, + actual_expression, + StringStreamToString(&expected_ss), + StringStreamToString(&actual_ss), + false); +} + +// Helper function for implementing ASSERT_NEAR. +// +// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. +GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1, + const char* expr2, + const char* abs_error_expr, + double val1, + double val2, + double abs_error); + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// A class that enables one to stream messages to assertion macros +class GTEST_API_ AssertHelper { + public: + // Constructor. + AssertHelper(TestPartResult::Type type, + const char* file, + int line, + const char* message); + ~AssertHelper(); + + // Message assignment is a semantic trick to enable assertion + // streaming; see the GTEST_MESSAGE_ macro below. + void operator=(const Message& message) const; + + private: + // We put our data in a struct so that the size of the AssertHelper class can + // be as small as possible. This is important because gcc is incapable of + // re-using stack space even for temporary variables, so every EXPECT_EQ + // reserves stack space for another AssertHelper. + struct AssertHelperData { + AssertHelperData(TestPartResult::Type t, + const char* srcfile, + int line_num, + const char* msg) + : type(t), file(srcfile), line(line_num), message(msg) { } + + TestPartResult::Type const type; + const char* const file; + int const line; + std::string const message; + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData); + }; + + AssertHelperData* const data_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper); +}; + +} // namespace internal + +#if GTEST_HAS_PARAM_TEST +// The pure interface class that all value-parameterized tests inherit from. +// A value-parameterized class must inherit from both ::testing::Test and +// ::testing::WithParamInterface. In most cases that just means inheriting +// from ::testing::TestWithParam, but more complicated test hierarchies +// may need to inherit from Test and WithParamInterface at different levels. +// +// This interface has support for accessing the test parameter value via +// the GetParam() method. +// +// Use it with one of the parameter generator defining functions, like Range(), +// Values(), ValuesIn(), Bool(), and Combine(). +// +// class FooTest : public ::testing::TestWithParam { +// protected: +// FooTest() { +// // Can use GetParam() here. +// } +// virtual ~FooTest() { +// // Can use GetParam() here. +// } +// virtual void SetUp() { +// // Can use GetParam() here. +// } +// virtual void TearDown { +// // Can use GetParam() here. +// } +// }; +// TEST_P(FooTest, DoesBar) { +// // Can use GetParam() method here. +// Foo foo; +// ASSERT_TRUE(foo.DoesBar(GetParam())); +// } +// INSTANTIATE_TEST_CASE_P(OneToTenRange, FooTest, ::testing::Range(1, 10)); + +template +class WithParamInterface { + public: + typedef T ParamType; + virtual ~WithParamInterface() {} + + // The current parameter value. Is also available in the test fixture's + // constructor. This member function is non-static, even though it only + // references static data, to reduce the opportunity for incorrect uses + // like writing 'WithParamInterface::GetParam()' for a test that + // uses a fixture whose parameter type is int. + const ParamType& GetParam() const { + GTEST_CHECK_(parameter_ != NULL) + << "GetParam() can only be called inside a value-parameterized test " + << "-- did you intend to write TEST_P instead of TEST_F?"; + return *parameter_; + } + + private: + // Sets parameter value. The caller is responsible for making sure the value + // remains alive and unchanged throughout the current test. + static void SetParam(const ParamType* parameter) { + parameter_ = parameter; + } + + // Static value used for accessing parameter during a test lifetime. + static const ParamType* parameter_; + + // TestClass must be a subclass of WithParamInterface and Test. + template friend class internal::ParameterizedTestFactory; +}; + +template +const T* WithParamInterface::parameter_ = NULL; + +// Most value-parameterized classes can ignore the existence of +// WithParamInterface, and can just inherit from ::testing::TestWithParam. + +template +class TestWithParam : public Test, public WithParamInterface { +}; + +#endif // GTEST_HAS_PARAM_TEST + +// Macros for indicating success/failure in test code. + +// ADD_FAILURE unconditionally adds a failure to the current test. +// SUCCEED generates a success - it doesn't automatically make the +// current test successful, as a test is only successful when it has +// no failure. +// +// EXPECT_* verifies that a certain condition is satisfied. If not, +// it behaves like ADD_FAILURE. In particular: +// +// EXPECT_TRUE verifies that a Boolean condition is true. +// EXPECT_FALSE verifies that a Boolean condition is false. +// +// FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except +// that they will also abort the current function on failure. People +// usually want the fail-fast behavior of FAIL and ASSERT_*, but those +// writing data-driven tests often find themselves using ADD_FAILURE +// and EXPECT_* more. + +// Generates a nonfatal failure with a generic message. +#define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed") + +// Generates a nonfatal failure at the given source file location with +// a generic message. +#define ADD_FAILURE_AT(file, line) \ + GTEST_MESSAGE_AT_(file, line, "Failed", \ + ::testing::TestPartResult::kNonFatalFailure) + +// Generates a fatal failure with a generic message. +#define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed") + +// Define this macro to 1 to omit the definition of FAIL(), which is a +// generic name and clashes with some other libraries. +#if !GTEST_DONT_DEFINE_FAIL +# define FAIL() GTEST_FAIL() +#endif + +// Generates a success with a generic message. +#define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded") + +// Define this macro to 1 to omit the definition of SUCCEED(), which +// is a generic name and clashes with some other libraries. +#if !GTEST_DONT_DEFINE_SUCCEED +# define SUCCEED() GTEST_SUCCEED() +#endif + +// Macros for testing exceptions. +// +// * {ASSERT|EXPECT}_THROW(statement, expected_exception): +// Tests that the statement throws the expected exception. +// * {ASSERT|EXPECT}_NO_THROW(statement): +// Tests that the statement doesn't throw any exception. +// * {ASSERT|EXPECT}_ANY_THROW(statement): +// Tests that the statement throws an exception. + +#define EXPECT_THROW(statement, expected_exception) \ + GTEST_TEST_THROW_(statement, expected_exception, GTEST_NONFATAL_FAILURE_) +#define EXPECT_NO_THROW(statement) \ + GTEST_TEST_NO_THROW_(statement, GTEST_NONFATAL_FAILURE_) +#define EXPECT_ANY_THROW(statement) \ + GTEST_TEST_ANY_THROW_(statement, GTEST_NONFATAL_FAILURE_) +#define ASSERT_THROW(statement, expected_exception) \ + GTEST_TEST_THROW_(statement, expected_exception, GTEST_FATAL_FAILURE_) +#define ASSERT_NO_THROW(statement) \ + GTEST_TEST_NO_THROW_(statement, GTEST_FATAL_FAILURE_) +#define ASSERT_ANY_THROW(statement) \ + GTEST_TEST_ANY_THROW_(statement, GTEST_FATAL_FAILURE_) + +// Boolean assertions. Condition can be either a Boolean expression or an +// AssertionResult. For more information on how to use AssertionResult with +// these macros see comments on that class. +#define EXPECT_TRUE(condition) \ + GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ + GTEST_NONFATAL_FAILURE_) +#define EXPECT_FALSE(condition) \ + GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ + GTEST_NONFATAL_FAILURE_) +#define ASSERT_TRUE(condition) \ + GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ + GTEST_FATAL_FAILURE_) +#define ASSERT_FALSE(condition) \ + GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ + GTEST_FATAL_FAILURE_) + +// Includes the auto-generated header that implements a family of +// generic predicate assertion macros. +#include "gtest/gtest_pred_impl.h" + +// Macros for testing equalities and inequalities. +// +// * {ASSERT|EXPECT}_EQ(expected, actual): Tests that expected == actual +// * {ASSERT|EXPECT}_NE(v1, v2): Tests that v1 != v2 +// * {ASSERT|EXPECT}_LT(v1, v2): Tests that v1 < v2 +// * {ASSERT|EXPECT}_LE(v1, v2): Tests that v1 <= v2 +// * {ASSERT|EXPECT}_GT(v1, v2): Tests that v1 > v2 +// * {ASSERT|EXPECT}_GE(v1, v2): Tests that v1 >= v2 +// +// When they are not, Google Test prints both the tested expressions and +// their actual values. The values must be compatible built-in types, +// or you will get a compiler error. By "compatible" we mean that the +// values can be compared by the respective operator. +// +// Note: +// +// 1. It is possible to make a user-defined type work with +// {ASSERT|EXPECT}_??(), but that requires overloading the +// comparison operators and is thus discouraged by the Google C++ +// Usage Guide. Therefore, you are advised to use the +// {ASSERT|EXPECT}_TRUE() macro to assert that two objects are +// equal. +// +// 2. The {ASSERT|EXPECT}_??() macros do pointer comparisons on +// pointers (in particular, C strings). Therefore, if you use it +// with two C strings, you are testing how their locations in memory +// are related, not how their content is related. To compare two C +// strings by content, use {ASSERT|EXPECT}_STR*(). +// +// 3. {ASSERT|EXPECT}_EQ(expected, actual) is preferred to +// {ASSERT|EXPECT}_TRUE(expected == actual), as the former tells you +// what the actual value is when it fails, and similarly for the +// other comparisons. +// +// 4. Do not depend on the order in which {ASSERT|EXPECT}_??() +// evaluate their arguments, which is undefined. +// +// 5. These macros evaluate their arguments exactly once. +// +// Examples: +// +// EXPECT_NE(5, Foo()); +// EXPECT_EQ(NULL, a_pointer); +// ASSERT_LT(i, array_size); +// ASSERT_GT(records.size(), 0) << "There is no record left."; + +#define EXPECT_EQ(expected, actual) \ + EXPECT_PRED_FORMAT2(::testing::internal:: \ + EqHelper::Compare, \ + expected, actual) +#define EXPECT_NE(expected, actual) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, expected, actual) +#define EXPECT_LE(val1, val2) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) +#define EXPECT_LT(val1, val2) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) +#define EXPECT_GE(val1, val2) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) +#define EXPECT_GT(val1, val2) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) + +#define GTEST_ASSERT_EQ(expected, actual) \ + ASSERT_PRED_FORMAT2(::testing::internal:: \ + EqHelper::Compare, \ + expected, actual) +#define GTEST_ASSERT_NE(val1, val2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2) +#define GTEST_ASSERT_LE(val1, val2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) +#define GTEST_ASSERT_LT(val1, val2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) +#define GTEST_ASSERT_GE(val1, val2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) +#define GTEST_ASSERT_GT(val1, val2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) + +// Define macro GTEST_DONT_DEFINE_ASSERT_XY to 1 to omit the definition of +// ASSERT_XY(), which clashes with some users' own code. + +#if !GTEST_DONT_DEFINE_ASSERT_EQ +# define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) +#endif + +#if !GTEST_DONT_DEFINE_ASSERT_NE +# define ASSERT_NE(val1, val2) GTEST_ASSERT_NE(val1, val2) +#endif + +#if !GTEST_DONT_DEFINE_ASSERT_LE +# define ASSERT_LE(val1, val2) GTEST_ASSERT_LE(val1, val2) +#endif + +#if !GTEST_DONT_DEFINE_ASSERT_LT +# define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2) +#endif + +#if !GTEST_DONT_DEFINE_ASSERT_GE +# define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2) +#endif + +#if !GTEST_DONT_DEFINE_ASSERT_GT +# define ASSERT_GT(val1, val2) GTEST_ASSERT_GT(val1, val2) +#endif + +// C-string Comparisons. All tests treat NULL and any non-NULL string +// as different. Two NULLs are equal. +// +// * {ASSERT|EXPECT}_STREQ(s1, s2): Tests that s1 == s2 +// * {ASSERT|EXPECT}_STRNE(s1, s2): Tests that s1 != s2 +// * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case +// * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case +// +// For wide or narrow string objects, you can use the +// {ASSERT|EXPECT}_??() macros. +// +// Don't depend on the order in which the arguments are evaluated, +// which is undefined. +// +// These macros evaluate their arguments exactly once. + +#define EXPECT_STREQ(expected, actual) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual) +#define EXPECT_STRNE(s1, s2) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) +#define EXPECT_STRCASEEQ(expected, actual) \ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual) +#define EXPECT_STRCASENE(s1, s2)\ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) + +#define ASSERT_STREQ(expected, actual) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, expected, actual) +#define ASSERT_STRNE(s1, s2) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) +#define ASSERT_STRCASEEQ(expected, actual) \ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, expected, actual) +#define ASSERT_STRCASENE(s1, s2)\ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) + +// Macros for comparing floating-point numbers. +// +// * {ASSERT|EXPECT}_FLOAT_EQ(expected, actual): +// Tests that two float values are almost equal. +// * {ASSERT|EXPECT}_DOUBLE_EQ(expected, actual): +// Tests that two double values are almost equal. +// * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error): +// Tests that v1 and v2 are within the given distance to each other. +// +// Google Test uses ULP-based comparison to automatically pick a default +// error bound that is appropriate for the operands. See the +// FloatingPoint template class in gtest-internal.h if you are +// interested in the implementation details. + +#define EXPECT_FLOAT_EQ(expected, actual)\ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ + expected, actual) + +#define EXPECT_DOUBLE_EQ(expected, actual)\ + EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ + expected, actual) + +#define ASSERT_FLOAT_EQ(expected, actual)\ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ + expected, actual) + +#define ASSERT_DOUBLE_EQ(expected, actual)\ + ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ + expected, actual) + +#define EXPECT_NEAR(val1, val2, abs_error)\ + EXPECT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ + val1, val2, abs_error) + +#define ASSERT_NEAR(val1, val2, abs_error)\ + ASSERT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ + val1, val2, abs_error) + +// These predicate format functions work on floating-point values, and +// can be used in {ASSERT|EXPECT}_PRED_FORMAT2*(), e.g. +// +// EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0); + +// Asserts that val1 is less than, or almost equal to, val2. Fails +// otherwise. In particular, it fails if either val1 or val2 is NaN. +GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2, + float val1, float val2); +GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2, + double val1, double val2); + + +#if GTEST_OS_WINDOWS + +// Macros that test for HRESULT failure and success, these are only useful +// on Windows, and rely on Windows SDK macros and APIs to compile. +// +// * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr) +// +// When expr unexpectedly fails or succeeds, Google Test prints the +// expected result and the actual result with both a human-readable +// string representation of the error, if available, as well as the +// hex result code. +# define EXPECT_HRESULT_SUCCEEDED(expr) \ + EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) + +# define ASSERT_HRESULT_SUCCEEDED(expr) \ + ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) + +# define EXPECT_HRESULT_FAILED(expr) \ + EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) + +# define ASSERT_HRESULT_FAILED(expr) \ + ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) + +#endif // GTEST_OS_WINDOWS + +// Macros that execute statement and check that it doesn't generate new fatal +// failures in the current thread. +// +// * {ASSERT|EXPECT}_NO_FATAL_FAILURE(statement); +// +// Examples: +// +// EXPECT_NO_FATAL_FAILURE(Process()); +// ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed"; +// +#define ASSERT_NO_FATAL_FAILURE(statement) \ + GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_) +#define EXPECT_NO_FATAL_FAILURE(statement) \ + GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_) + +// Causes a trace (including the source file path, the current line +// number, and the given message) to be included in every test failure +// message generated by code in the current scope. The effect is +// undone when the control leaves the current scope. +// +// The message argument can be anything streamable to std::ostream. +// +// In the implementation, we include the current line number as part +// of the dummy variable name, thus allowing multiple SCOPED_TRACE()s +// to appear in the same block - as long as they are on different +// lines. +#define SCOPED_TRACE(message) \ + ::testing::internal::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\ + __FILE__, __LINE__, ::testing::Message() << (message)) + +// Compile-time assertion for type equality. +// StaticAssertTypeEq() compiles iff type1 and type2 are +// the same type. The value it returns is not interesting. +// +// Instead of making StaticAssertTypeEq a class template, we make it a +// function template that invokes a helper class template. This +// prevents a user from misusing StaticAssertTypeEq by +// defining objects of that type. +// +// CAVEAT: +// +// When used inside a method of a class template, +// StaticAssertTypeEq() is effective ONLY IF the method is +// instantiated. For example, given: +// +// template class Foo { +// public: +// void Bar() { testing::StaticAssertTypeEq(); } +// }; +// +// the code: +// +// void Test1() { Foo foo; } +// +// will NOT generate a compiler error, as Foo::Bar() is never +// actually instantiated. Instead, you need: +// +// void Test2() { Foo foo; foo.Bar(); } +// +// to cause a compiler error. +template +bool StaticAssertTypeEq() { + (void)internal::StaticAssertTypeEqHelper(); + return true; +} + +// Defines a test. +// +// The first parameter is the name of the test case, and the second +// parameter is the name of the test within the test case. +// +// The convention is to end the test case name with "Test". For +// example, a test case for the Foo class can be named FooTest. +// +// The user should put his test code between braces after using this +// macro. Example: +// +// TEST(FooTest, InitializesCorrectly) { +// Foo foo; +// EXPECT_TRUE(foo.StatusIsOK()); +// } + +// Note that we call GetTestTypeId() instead of GetTypeId< +// ::testing::Test>() here to get the type ID of testing::Test. This +// is to work around a suspected linker bug when using Google Test as +// a framework on Mac OS X. The bug causes GetTypeId< +// ::testing::Test>() to return different values depending on whether +// the call is from the Google Test framework itself or from user test +// code. GetTestTypeId() is guaranteed to always return the same +// value, as it always calls GetTypeId<>() from the Google Test +// framework. +#define GTEST_TEST(test_case_name, test_name)\ + GTEST_TEST_(test_case_name, test_name, \ + ::testing::Test, ::testing::internal::GetTestTypeId()) + +// Define this macro to 1 to omit the definition of TEST(), which +// is a generic name and clashes with some other libraries. +#if !GTEST_DONT_DEFINE_TEST +# define TEST(test_case_name, test_name) GTEST_TEST(test_case_name, test_name) +#endif + +// Defines a test that uses a test fixture. +// +// The first parameter is the name of the test fixture class, which +// also doubles as the test case name. The second parameter is the +// name of the test within the test case. +// +// A test fixture class must be declared earlier. The user should put +// his test code between braces after using this macro. Example: +// +// class FooTest : public testing::Test { +// protected: +// virtual void SetUp() { b_.AddElement(3); } +// +// Foo a_; +// Foo b_; +// }; +// +// TEST_F(FooTest, InitializesCorrectly) { +// EXPECT_TRUE(a_.StatusIsOK()); +// } +// +// TEST_F(FooTest, ReturnsElementCountCorrectly) { +// EXPECT_EQ(0, a_.size()); +// EXPECT_EQ(1, b_.size()); +// } + +#define TEST_F(test_fixture, test_name)\ + GTEST_TEST_(test_fixture, test_name, test_fixture, \ + ::testing::internal::GetTypeId()) + +} // namespace testing + +// Use this function in main() to run all tests. It returns 0 if all +// tests are successful, or 1 otherwise. +// +// RUN_ALL_TESTS() should be invoked after the command line has been +// parsed by InitGoogleTest(). +// +// This function was formerly a macro; thus, it is in the global +// namespace and has an all-caps name. +int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_; + +inline int RUN_ALL_TESTS() { + return ::testing::UnitTest::GetInstance()->Run(); +} + +#endif // GTEST_INCLUDE_GTEST_GTEST_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest_pred_impl.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest_pred_impl.h new file mode 100644 index 000000000..30ae712f5 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest_pred_impl.h @@ -0,0 +1,358 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// This file is AUTOMATICALLY GENERATED on 10/31/2011 by command +// 'gen_gtest_pred_impl.py 5'. DO NOT EDIT BY HAND! +// +// Implements a family of generic predicate assertion macros. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ +#define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ + +// Makes sure this header is not included before gtest.h. +#ifndef GTEST_INCLUDE_GTEST_GTEST_H_ +# error Do not include gtest_pred_impl.h directly. Include gtest.h instead. +#endif // GTEST_INCLUDE_GTEST_GTEST_H_ + +// This header implements a family of generic predicate assertion +// macros: +// +// ASSERT_PRED_FORMAT1(pred_format, v1) +// ASSERT_PRED_FORMAT2(pred_format, v1, v2) +// ... +// +// where pred_format is a function or functor that takes n (in the +// case of ASSERT_PRED_FORMATn) values and their source expression +// text, and returns a testing::AssertionResult. See the definition +// of ASSERT_EQ in gtest.h for an example. +// +// If you don't care about formatting, you can use the more +// restrictive version: +// +// ASSERT_PRED1(pred, v1) +// ASSERT_PRED2(pred, v1, v2) +// ... +// +// where pred is an n-ary function or functor that returns bool, +// and the values v1, v2, ..., must support the << operator for +// streaming to std::ostream. +// +// We also define the EXPECT_* variations. +// +// For now we only support predicates whose arity is at most 5. +// Please email googletestframework@googlegroups.com if you need +// support for higher arities. + +// GTEST_ASSERT_ is the basic statement to which all of the assertions +// in this file reduce. Don't use this in your code. + +#define GTEST_ASSERT_(expression, on_failure) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (const ::testing::AssertionResult gtest_ar = (expression)) \ + ; \ + else \ + on_failure(gtest_ar.failure_message()) + + +// Helper function for implementing {EXPECT|ASSERT}_PRED1. Don't use +// this in your code. +template +AssertionResult AssertPred1Helper(const char* pred_text, + const char* e1, + Pred pred, + const T1& v1) { + if (pred(v1)) return AssertionSuccess(); + + return AssertionFailure() << pred_text << "(" + << e1 << ") evaluates to false, where" + << "\n" << e1 << " evaluates to " << v1; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1. +// Don't use this in your code. +#define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\ + GTEST_ASSERT_(pred_format(#v1, v1), \ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED1. Don't use +// this in your code. +#define GTEST_PRED1_(pred, v1, on_failure)\ + GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \ + #v1, \ + pred, \ + v1), on_failure) + +// Unary predicate assertion macros. +#define EXPECT_PRED_FORMAT1(pred_format, v1) \ + GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED1(pred, v1) \ + GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT1(pred_format, v1) \ + GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED1(pred, v1) \ + GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_) + + + +// Helper function for implementing {EXPECT|ASSERT}_PRED2. Don't use +// this in your code. +template +AssertionResult AssertPred2Helper(const char* pred_text, + const char* e1, + const char* e2, + Pred pred, + const T1& v1, + const T2& v2) { + if (pred(v1, v2)) return AssertionSuccess(); + + return AssertionFailure() << pred_text << "(" + << e1 << ", " + << e2 << ") evaluates to false, where" + << "\n" << e1 << " evaluates to " << v1 + << "\n" << e2 << " evaluates to " << v2; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2. +// Don't use this in your code. +#define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\ + GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), \ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED2. Don't use +// this in your code. +#define GTEST_PRED2_(pred, v1, v2, on_failure)\ + GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \ + #v1, \ + #v2, \ + pred, \ + v1, \ + v2), on_failure) + +// Binary predicate assertion macros. +#define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \ + GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED2(pred, v1, v2) \ + GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \ + GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED2(pred, v1, v2) \ + GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_) + + + +// Helper function for implementing {EXPECT|ASSERT}_PRED3. Don't use +// this in your code. +template +AssertionResult AssertPred3Helper(const char* pred_text, + const char* e1, + const char* e2, + const char* e3, + Pred pred, + const T1& v1, + const T2& v2, + const T3& v3) { + if (pred(v1, v2, v3)) return AssertionSuccess(); + + return AssertionFailure() << pred_text << "(" + << e1 << ", " + << e2 << ", " + << e3 << ") evaluates to false, where" + << "\n" << e1 << " evaluates to " << v1 + << "\n" << e2 << " evaluates to " << v2 + << "\n" << e3 << " evaluates to " << v3; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3. +// Don't use this in your code. +#define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\ + GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3), \ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED3. Don't use +// this in your code. +#define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\ + GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \ + #v1, \ + #v2, \ + #v3, \ + pred, \ + v1, \ + v2, \ + v3), on_failure) + +// Ternary predicate assertion macros. +#define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \ + GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED3(pred, v1, v2, v3) \ + GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \ + GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED3(pred, v1, v2, v3) \ + GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_) + + + +// Helper function for implementing {EXPECT|ASSERT}_PRED4. Don't use +// this in your code. +template +AssertionResult AssertPred4Helper(const char* pred_text, + const char* e1, + const char* e2, + const char* e3, + const char* e4, + Pred pred, + const T1& v1, + const T2& v2, + const T3& v3, + const T4& v4) { + if (pred(v1, v2, v3, v4)) return AssertionSuccess(); + + return AssertionFailure() << pred_text << "(" + << e1 << ", " + << e2 << ", " + << e3 << ", " + << e4 << ") evaluates to false, where" + << "\n" << e1 << " evaluates to " << v1 + << "\n" << e2 << " evaluates to " << v2 + << "\n" << e3 << " evaluates to " << v3 + << "\n" << e4 << " evaluates to " << v4; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4. +// Don't use this in your code. +#define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\ + GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4), \ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED4. Don't use +// this in your code. +#define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\ + GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \ + #v1, \ + #v2, \ + #v3, \ + #v4, \ + pred, \ + v1, \ + v2, \ + v3, \ + v4), on_failure) + +// 4-ary predicate assertion macros. +#define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ + GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED4(pred, v1, v2, v3, v4) \ + GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ + GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED4(pred, v1, v2, v3, v4) \ + GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) + + + +// Helper function for implementing {EXPECT|ASSERT}_PRED5. Don't use +// this in your code. +template +AssertionResult AssertPred5Helper(const char* pred_text, + const char* e1, + const char* e2, + const char* e3, + const char* e4, + const char* e5, + Pred pred, + const T1& v1, + const T2& v2, + const T3& v3, + const T4& v4, + const T5& v5) { + if (pred(v1, v2, v3, v4, v5)) return AssertionSuccess(); + + return AssertionFailure() << pred_text << "(" + << e1 << ", " + << e2 << ", " + << e3 << ", " + << e4 << ", " + << e5 << ") evaluates to false, where" + << "\n" << e1 << " evaluates to " << v1 + << "\n" << e2 << " evaluates to " << v2 + << "\n" << e3 << " evaluates to " << v3 + << "\n" << e4 << " evaluates to " << v4 + << "\n" << e5 << " evaluates to " << v5; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5. +// Don't use this in your code. +#define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\ + GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5), \ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED5. Don't use +// this in your code. +#define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\ + GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \ + #v1, \ + #v2, \ + #v3, \ + #v4, \ + #v5, \ + pred, \ + v1, \ + v2, \ + v3, \ + v4, \ + v5), on_failure) + +// 5-ary predicate assertion macros. +#define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ + GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \ + GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ + GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \ + GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) + + + +#endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest_prod.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest_prod.h new file mode 100644 index 000000000..da80ddc6c --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/gtest_prod.h @@ -0,0 +1,58 @@ +// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// +// Google C++ Testing Framework definitions useful in production code. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_PROD_H_ +#define GTEST_INCLUDE_GTEST_GTEST_PROD_H_ + +// When you need to test the private or protected members of a class, +// use the FRIEND_TEST macro to declare your tests as friends of the +// class. For example: +// +// class MyClass { +// private: +// void MyMethod(); +// FRIEND_TEST(MyClassTest, MyMethod); +// }; +// +// class MyClassTest : public testing::Test { +// // ... +// }; +// +// TEST_F(MyClassTest, MyMethod) { +// // Can call MyClass::MyMethod() here. +// } + +#define FRIEND_TEST(test_case_name, test_name)\ +friend class test_case_name##_##test_name##_Test + +#endif // GTEST_INCLUDE_GTEST_GTEST_PROD_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h new file mode 100644 index 000000000..2b3a78f5b --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-death-test-internal.h @@ -0,0 +1,319 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file defines internal utilities needed for implementing +// death tests. They are subject to change without notice. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ + +#include "gtest/internal/gtest-internal.h" + +#include + +namespace testing { +namespace internal { + +GTEST_DECLARE_string_(internal_run_death_test); + +// Names of the flags (needed for parsing Google Test flags). +const char kDeathTestStyleFlag[] = "death_test_style"; +const char kDeathTestUseFork[] = "death_test_use_fork"; +const char kInternalRunDeathTestFlag[] = "internal_run_death_test"; + +#if GTEST_HAS_DEATH_TEST + +// DeathTest is a class that hides much of the complexity of the +// GTEST_DEATH_TEST_ macro. It is abstract; its static Create method +// returns a concrete class that depends on the prevailing death test +// style, as defined by the --gtest_death_test_style and/or +// --gtest_internal_run_death_test flags. + +// In describing the results of death tests, these terms are used with +// the corresponding definitions: +// +// exit status: The integer exit information in the format specified +// by wait(2) +// exit code: The integer code passed to exit(3), _exit(2), or +// returned from main() +class GTEST_API_ DeathTest { + public: + // Create returns false if there was an error determining the + // appropriate action to take for the current death test; for example, + // if the gtest_death_test_style flag is set to an invalid value. + // The LastMessage method will return a more detailed message in that + // case. Otherwise, the DeathTest pointer pointed to by the "test" + // argument is set. If the death test should be skipped, the pointer + // is set to NULL; otherwise, it is set to the address of a new concrete + // DeathTest object that controls the execution of the current test. + static bool Create(const char* statement, const RE* regex, + const char* file, int line, DeathTest** test); + DeathTest(); + virtual ~DeathTest() { } + + // A helper class that aborts a death test when it's deleted. + class ReturnSentinel { + public: + explicit ReturnSentinel(DeathTest* test) : test_(test) { } + ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); } + private: + DeathTest* const test_; + GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel); + } GTEST_ATTRIBUTE_UNUSED_; + + // An enumeration of possible roles that may be taken when a death + // test is encountered. EXECUTE means that the death test logic should + // be executed immediately. OVERSEE means that the program should prepare + // the appropriate environment for a child process to execute the death + // test, then wait for it to complete. + enum TestRole { OVERSEE_TEST, EXECUTE_TEST }; + + // An enumeration of the three reasons that a test might be aborted. + enum AbortReason { + TEST_ENCOUNTERED_RETURN_STATEMENT, + TEST_THREW_EXCEPTION, + TEST_DID_NOT_DIE + }; + + // Assumes one of the above roles. + virtual TestRole AssumeRole() = 0; + + // Waits for the death test to finish and returns its status. + virtual int Wait() = 0; + + // Returns true if the death test passed; that is, the test process + // exited during the test, its exit status matches a user-supplied + // predicate, and its stderr output matches a user-supplied regular + // expression. + // The user-supplied predicate may be a macro expression rather + // than a function pointer or functor, or else Wait and Passed could + // be combined. + virtual bool Passed(bool exit_status_ok) = 0; + + // Signals that the death test did not die as expected. + virtual void Abort(AbortReason reason) = 0; + + // Returns a human-readable outcome message regarding the outcome of + // the last death test. + static const char* LastMessage(); + + static void set_last_death_test_message(const std::string& message); + + private: + // A string containing a description of the outcome of the last death test. + static std::string last_death_test_message_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(DeathTest); +}; + +// Factory interface for death tests. May be mocked out for testing. +class DeathTestFactory { + public: + virtual ~DeathTestFactory() { } + virtual bool Create(const char* statement, const RE* regex, + const char* file, int line, DeathTest** test) = 0; +}; + +// A concrete DeathTestFactory implementation for normal use. +class DefaultDeathTestFactory : public DeathTestFactory { + public: + virtual bool Create(const char* statement, const RE* regex, + const char* file, int line, DeathTest** test); +}; + +// Returns true if exit_status describes a process that was terminated +// by a signal, or exited normally with a nonzero exit code. +GTEST_API_ bool ExitedUnsuccessfully(int exit_status); + +// Traps C++ exceptions escaping statement and reports them as test +// failures. Note that trapping SEH exceptions is not implemented here. +# if GTEST_HAS_EXCEPTIONS +# define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ + try { \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + } catch (const ::std::exception& gtest_exception) { \ + fprintf(\ + stderr, \ + "\n%s: Caught std::exception-derived exception escaping the " \ + "death test statement. Exception message: %s\n", \ + ::testing::internal::FormatFileLocation(__FILE__, __LINE__).c_str(), \ + gtest_exception.what()); \ + fflush(stderr); \ + death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \ + } catch (...) { \ + death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \ + } + +# else +# define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) + +# endif + +// This macro is for implementing ASSERT_DEATH*, EXPECT_DEATH*, +// ASSERT_EXIT*, and EXPECT_EXIT*. +# define GTEST_DEATH_TEST_(statement, predicate, regex, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + const ::testing::internal::RE& gtest_regex = (regex); \ + ::testing::internal::DeathTest* gtest_dt; \ + if (!::testing::internal::DeathTest::Create(#statement, >est_regex, \ + __FILE__, __LINE__, >est_dt)) { \ + goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ + } \ + if (gtest_dt != NULL) { \ + ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \ + gtest_dt_ptr(gtest_dt); \ + switch (gtest_dt->AssumeRole()) { \ + case ::testing::internal::DeathTest::OVERSEE_TEST: \ + if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \ + goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ + } \ + break; \ + case ::testing::internal::DeathTest::EXECUTE_TEST: { \ + ::testing::internal::DeathTest::ReturnSentinel \ + gtest_sentinel(gtest_dt); \ + GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, gtest_dt); \ + gtest_dt->Abort(::testing::internal::DeathTest::TEST_DID_NOT_DIE); \ + break; \ + } \ + default: \ + break; \ + } \ + } \ + } else \ + GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__): \ + fail(::testing::internal::DeathTest::LastMessage()) +// The symbol "fail" here expands to something into which a message +// can be streamed. + +// This macro is for implementing ASSERT/EXPECT_DEBUG_DEATH when compiled in +// NDEBUG mode. In this case we need the statements to be executed, the regex is +// ignored, and the macro must accept a streamed message even though the message +// is never printed. +# define GTEST_EXECUTE_STATEMENT_(statement, regex) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + } else \ + ::testing::Message() + +// A class representing the parsed contents of the +// --gtest_internal_run_death_test flag, as it existed when +// RUN_ALL_TESTS was called. +class InternalRunDeathTestFlag { + public: + InternalRunDeathTestFlag(const std::string& a_file, + int a_line, + int an_index, + int a_write_fd) + : file_(a_file), line_(a_line), index_(an_index), + write_fd_(a_write_fd) {} + + ~InternalRunDeathTestFlag() { + if (write_fd_ >= 0) + posix::Close(write_fd_); + } + + const std::string& file() const { return file_; } + int line() const { return line_; } + int index() const { return index_; } + int write_fd() const { return write_fd_; } + + private: + std::string file_; + int line_; + int index_; + int write_fd_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(InternalRunDeathTestFlag); +}; + +// Returns a newly created InternalRunDeathTestFlag object with fields +// initialized from the GTEST_FLAG(internal_run_death_test) flag if +// the flag is specified; otherwise returns NULL. +InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag(); + +#else // GTEST_HAS_DEATH_TEST + +// This macro is used for implementing macros such as +// EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED on systems where +// death tests are not supported. Those macros must compile on such systems +// iff EXPECT_DEATH and ASSERT_DEATH compile with the same parameters on +// systems that support death tests. This allows one to write such a macro +// on a system that does not support death tests and be sure that it will +// compile on a death-test supporting system. +// +// Parameters: +// statement - A statement that a macro such as EXPECT_DEATH would test +// for program termination. This macro has to make sure this +// statement is compiled but not executed, to ensure that +// EXPECT_DEATH_IF_SUPPORTED compiles with a certain +// parameter iff EXPECT_DEATH compiles with it. +// regex - A regex that a macro such as EXPECT_DEATH would use to test +// the output of statement. This parameter has to be +// compiled but not evaluated by this macro, to ensure that +// this macro only accepts expressions that a macro such as +// EXPECT_DEATH would accept. +// terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED +// and a return statement for ASSERT_DEATH_IF_SUPPORTED. +// This ensures that ASSERT_DEATH_IF_SUPPORTED will not +// compile inside functions where ASSERT_DEATH doesn't +// compile. +// +// The branch that has an always false condition is used to ensure that +// statement and regex are compiled (and thus syntactically correct) but +// never executed. The unreachable code macro protects the terminator +// statement from generating an 'unreachable code' warning in case +// statement unconditionally returns or throws. The Message constructor at +// the end allows the syntax of streaming additional messages into the +// macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH. +# define GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, terminator) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + GTEST_LOG_(WARNING) \ + << "Death tests are not supported on this platform.\n" \ + << "Statement '" #statement "' cannot be verified."; \ + } else if (::testing::internal::AlwaysFalse()) { \ + ::testing::internal::RE::PartialMatch(".*", (regex)); \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + terminator; \ + } else \ + ::testing::Message() + +#endif // GTEST_HAS_DEATH_TEST + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-filepath.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-filepath.h new file mode 100644 index 000000000..7a13b4b0d --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-filepath.h @@ -0,0 +1,206 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: keith.ray@gmail.com (Keith Ray) +// +// Google Test filepath utilities +// +// This header file declares classes and functions used internally by +// Google Test. They are subject to change without notice. +// +// This file is #included in . +// Do not include this header file separately! + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ + +#include "gtest/internal/gtest-string.h" + +namespace testing { +namespace internal { + +// FilePath - a class for file and directory pathname manipulation which +// handles platform-specific conventions (like the pathname separator). +// Used for helper functions for naming files in a directory for xml output. +// Except for Set methods, all methods are const or static, which provides an +// "immutable value object" -- useful for peace of mind. +// A FilePath with a value ending in a path separator ("like/this/") represents +// a directory, otherwise it is assumed to represent a file. In either case, +// it may or may not represent an actual file or directory in the file system. +// Names are NOT checked for syntax correctness -- no checking for illegal +// characters, malformed paths, etc. + +class GTEST_API_ FilePath { + public: + FilePath() : pathname_("") { } + FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } + + explicit FilePath(const std::string& pathname) : pathname_(pathname) { + Normalize(); + } + + FilePath& operator=(const FilePath& rhs) { + Set(rhs); + return *this; + } + + void Set(const FilePath& rhs) { + pathname_ = rhs.pathname_; + } + + const std::string& string() const { return pathname_; } + const char* c_str() const { return pathname_.c_str(); } + + // Returns the current working directory, or "" if unsuccessful. + static FilePath GetCurrentDir(); + + // Given directory = "dir", base_name = "test", number = 0, + // extension = "xml", returns "dir/test.xml". If number is greater + // than zero (e.g., 12), returns "dir/test_12.xml". + // On Windows platform, uses \ as the separator rather than /. + static FilePath MakeFileName(const FilePath& directory, + const FilePath& base_name, + int number, + const char* extension); + + // Given directory = "dir", relative_path = "test.xml", + // returns "dir/test.xml". + // On Windows, uses \ as the separator rather than /. + static FilePath ConcatPaths(const FilePath& directory, + const FilePath& relative_path); + + // Returns a pathname for a file that does not currently exist. The pathname + // will be directory/base_name.extension or + // directory/base_name_.extension if directory/base_name.extension + // already exists. The number will be incremented until a pathname is found + // that does not already exist. + // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. + // There could be a race condition if two or more processes are calling this + // function at the same time -- they could both pick the same filename. + static FilePath GenerateUniqueFileName(const FilePath& directory, + const FilePath& base_name, + const char* extension); + + // Returns true iff the path is "". + bool IsEmpty() const { return pathname_.empty(); } + + // If input name has a trailing separator character, removes it and returns + // the name, otherwise return the name string unmodified. + // On Windows platform, uses \ as the separator, other platforms use /. + FilePath RemoveTrailingPathSeparator() const; + + // Returns a copy of the FilePath with the directory part removed. + // Example: FilePath("path/to/file").RemoveDirectoryName() returns + // FilePath("file"). If there is no directory part ("just_a_file"), it returns + // the FilePath unmodified. If there is no file part ("just_a_dir/") it + // returns an empty FilePath (""). + // On Windows platform, '\' is the path separator, otherwise it is '/'. + FilePath RemoveDirectoryName() const; + + // RemoveFileName returns the directory path with the filename removed. + // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". + // If the FilePath is "a_file" or "/a_file", RemoveFileName returns + // FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does + // not have a file, like "just/a/dir/", it returns the FilePath unmodified. + // On Windows platform, '\' is the path separator, otherwise it is '/'. + FilePath RemoveFileName() const; + + // Returns a copy of the FilePath with the case-insensitive extension removed. + // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns + // FilePath("dir/file"). If a case-insensitive extension is not + // found, returns a copy of the original FilePath. + FilePath RemoveExtension(const char* extension) const; + + // Creates directories so that path exists. Returns true if successful or if + // the directories already exist; returns false if unable to create + // directories for any reason. Will also return false if the FilePath does + // not represent a directory (that is, it doesn't end with a path separator). + bool CreateDirectoriesRecursively() const; + + // Create the directory so that path exists. Returns true if successful or + // if the directory already exists; returns false if unable to create the + // directory for any reason, including if the parent directory does not + // exist. Not named "CreateDirectory" because that's a macro on Windows. + bool CreateFolder() const; + + // Returns true if FilePath describes something in the file-system, + // either a file, directory, or whatever, and that something exists. + bool FileOrDirectoryExists() const; + + // Returns true if pathname describes a directory in the file-system + // that exists. + bool DirectoryExists() const; + + // Returns true if FilePath ends with a path separator, which indicates that + // it is intended to represent a directory. Returns false otherwise. + // This does NOT check that a directory (or file) actually exists. + bool IsDirectory() const; + + // Returns true if pathname describes a root directory. (Windows has one + // root directory per disk drive.) + bool IsRootDirectory() const; + + // Returns true if pathname describes an absolute path. + bool IsAbsolutePath() const; + + private: + // Replaces multiple consecutive separators with a single separator. + // For example, "bar///foo" becomes "bar/foo". Does not eliminate other + // redundancies that might be in a pathname involving "." or "..". + // + // A pathname with multiple consecutive separators may occur either through + // user error or as a result of some scripts or APIs that generate a pathname + // with a trailing separator. On other platforms the same API or script + // may NOT generate a pathname with a trailing "/". Then elsewhere that + // pathname may have another "/" and pathname components added to it, + // without checking for the separator already being there. + // The script language and operating system may allow paths like "foo//bar" + // but some of the functions in FilePath will not handle that correctly. In + // particular, RemoveTrailingPathSeparator() only removes one separator, and + // it is called in CreateDirectoriesRecursively() assuming that it will change + // a pathname from directory syntax (trailing separator) to filename syntax. + // + // On Windows this method also replaces the alternate path separator '/' with + // the primary path separator '\\', so that for example "bar\\/\\foo" becomes + // "bar\\foo". + + void Normalize(); + + // Returns a pointer to the last occurence of a valid path separator in + // the FilePath. On Windows, for example, both '/' and '\' are valid path + // separators. Returns NULL if no path separator was found. + const char* FindLastPathSeparator() const; + + std::string pathname_; +}; // class FilePath + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-internal.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-internal.h new file mode 100644 index 000000000..0dcc3a319 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-internal.h @@ -0,0 +1,1158 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file declares functions and macros used internally by +// Google Test. They are subject to change without notice. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ + +#include "gtest/internal/gtest-port.h" + +#if GTEST_OS_LINUX +# include +# include +# include +# include +#endif // GTEST_OS_LINUX + +#if GTEST_HAS_EXCEPTIONS +# include +#endif + +#include +#include +#include +#include +#include +#include + +#include "gtest/gtest-message.h" +#include "gtest/internal/gtest-string.h" +#include "gtest/internal/gtest-filepath.h" +#include "gtest/internal/gtest-type-util.h" + +// Due to C++ preprocessor weirdness, we need double indirection to +// concatenate two tokens when one of them is __LINE__. Writing +// +// foo ## __LINE__ +// +// will result in the token foo__LINE__, instead of foo followed by +// the current line number. For more details, see +// http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6 +#define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar) +#define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar + +class ProtocolMessage; +namespace proto2 { class Message; } + +namespace testing { + +// Forward declarations. + +class AssertionResult; // Result of an assertion. +class Message; // Represents a failure message. +class Test; // Represents a test. +class TestInfo; // Information about a test. +class TestPartResult; // Result of a test part. +class UnitTest; // A collection of test cases. + +template +::std::string PrintToString(const T& value); + +namespace internal { + +struct TraceInfo; // Information about a trace point. +class ScopedTrace; // Implements scoped trace. +class TestInfoImpl; // Opaque implementation of TestInfo +class UnitTestImpl; // Opaque implementation of UnitTest + +// How many times InitGoogleTest() has been called. +GTEST_API_ extern int g_init_gtest_count; + +// The text used in failure messages to indicate the start of the +// stack trace. +GTEST_API_ extern const char kStackTraceMarker[]; + +// Two overloaded helpers for checking at compile time whether an +// expression is a null pointer literal (i.e. NULL or any 0-valued +// compile-time integral constant). Their return values have +// different sizes, so we can use sizeof() to test which version is +// picked by the compiler. These helpers have no implementations, as +// we only need their signatures. +// +// Given IsNullLiteralHelper(x), the compiler will pick the first +// version if x can be implicitly converted to Secret*, and pick the +// second version otherwise. Since Secret is a secret and incomplete +// type, the only expression a user can write that has type Secret* is +// a null pointer literal. Therefore, we know that x is a null +// pointer literal if and only if the first version is picked by the +// compiler. +char IsNullLiteralHelper(Secret* p); +char (&IsNullLiteralHelper(...))[2]; // NOLINT + +// A compile-time bool constant that is true if and only if x is a +// null pointer literal (i.e. NULL or any 0-valued compile-time +// integral constant). +#ifdef GTEST_ELLIPSIS_NEEDS_POD_ +// We lose support for NULL detection where the compiler doesn't like +// passing non-POD classes through ellipsis (...). +# define GTEST_IS_NULL_LITERAL_(x) false +#else +# define GTEST_IS_NULL_LITERAL_(x) \ + (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1) +#endif // GTEST_ELLIPSIS_NEEDS_POD_ + +// Appends the user-supplied message to the Google-Test-generated message. +GTEST_API_ std::string AppendUserMessage( + const std::string& gtest_msg, const Message& user_msg); + +#if GTEST_HAS_EXCEPTIONS + +// This exception is thrown by (and only by) a failed Google Test +// assertion when GTEST_FLAG(throw_on_failure) is true (if exceptions +// are enabled). We derive it from std::runtime_error, which is for +// errors presumably detectable only at run time. Since +// std::runtime_error inherits from std::exception, many testing +// frameworks know how to extract and print the message inside it. +class GTEST_API_ GoogleTestFailureException : public ::std::runtime_error { + public: + explicit GoogleTestFailureException(const TestPartResult& failure); +}; + +#endif // GTEST_HAS_EXCEPTIONS + +// A helper class for creating scoped traces in user programs. +class GTEST_API_ ScopedTrace { + public: + // The c'tor pushes the given source file location and message onto + // a trace stack maintained by Google Test. + ScopedTrace(const char* file, int line, const Message& message); + + // The d'tor pops the info pushed by the c'tor. + // + // Note that the d'tor is not virtual in order to be efficient. + // Don't inherit from ScopedTrace! + ~ScopedTrace(); + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace); +} GTEST_ATTRIBUTE_UNUSED_; // A ScopedTrace object does its job in its + // c'tor and d'tor. Therefore it doesn't + // need to be used otherwise. + +// Constructs and returns the message for an equality assertion +// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. +// +// The first four parameters are the expressions used in the assertion +// and their values, as strings. For example, for ASSERT_EQ(foo, bar) +// where foo is 5 and bar is 6, we have: +// +// expected_expression: "foo" +// actual_expression: "bar" +// expected_value: "5" +// actual_value: "6" +// +// The ignoring_case parameter is true iff the assertion is a +// *_STRCASEEQ*. When it's true, the string " (ignoring case)" will +// be inserted into the message. +GTEST_API_ AssertionResult EqFailure(const char* expected_expression, + const char* actual_expression, + const std::string& expected_value, + const std::string& actual_value, + bool ignoring_case); + +// Constructs a failure message for Boolean assertions such as EXPECT_TRUE. +GTEST_API_ std::string GetBoolAssertionFailureMessage( + const AssertionResult& assertion_result, + const char* expression_text, + const char* actual_predicate_value, + const char* expected_predicate_value); + +// This template class represents an IEEE floating-point number +// (either single-precision or double-precision, depending on the +// template parameters). +// +// The purpose of this class is to do more sophisticated number +// comparison. (Due to round-off error, etc, it's very unlikely that +// two floating-points will be equal exactly. Hence a naive +// comparison by the == operation often doesn't work.) +// +// Format of IEEE floating-point: +// +// The most-significant bit being the leftmost, an IEEE +// floating-point looks like +// +// sign_bit exponent_bits fraction_bits +// +// Here, sign_bit is a single bit that designates the sign of the +// number. +// +// For float, there are 8 exponent bits and 23 fraction bits. +// +// For double, there are 11 exponent bits and 52 fraction bits. +// +// More details can be found at +// http://en.wikipedia.org/wiki/IEEE_floating-point_standard. +// +// Template parameter: +// +// RawType: the raw floating-point type (either float or double) +template +class FloatingPoint { + public: + // Defines the unsigned integer type that has the same size as the + // floating point number. + typedef typename TypeWithSize::UInt Bits; + + // Constants. + + // # of bits in a number. + static const size_t kBitCount = 8*sizeof(RawType); + + // # of fraction bits in a number. + static const size_t kFractionBitCount = + std::numeric_limits::digits - 1; + + // # of exponent bits in a number. + static const size_t kExponentBitCount = kBitCount - 1 - kFractionBitCount; + + // The mask for the sign bit. + static const Bits kSignBitMask = static_cast(1) << (kBitCount - 1); + + // The mask for the fraction bits. + static const Bits kFractionBitMask = + ~static_cast(0) >> (kExponentBitCount + 1); + + // The mask for the exponent bits. + static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask); + + // How many ULP's (Units in the Last Place) we want to tolerate when + // comparing two numbers. The larger the value, the more error we + // allow. A 0 value means that two numbers must be exactly the same + // to be considered equal. + // + // The maximum error of a single floating-point operation is 0.5 + // units in the last place. On Intel CPU's, all floating-point + // calculations are done with 80-bit precision, while double has 64 + // bits. Therefore, 4 should be enough for ordinary use. + // + // See the following article for more details on ULP: + // http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/ + static const size_t kMaxUlps = 4; + + // Constructs a FloatingPoint from a raw floating-point number. + // + // On an Intel CPU, passing a non-normalized NAN (Not a Number) + // around may change its bits, although the new value is guaranteed + // to be also a NAN. Therefore, don't expect this constructor to + // preserve the bits in x when x is a NAN. + explicit FloatingPoint(const RawType& x) { u_.value_ = x; } + + // Static methods + + // Reinterprets a bit pattern as a floating-point number. + // + // This function is needed to test the AlmostEquals() method. + static RawType ReinterpretBits(const Bits bits) { + FloatingPoint fp(0); + fp.u_.bits_ = bits; + return fp.u_.value_; + } + + // Returns the floating-point number that represent positive infinity. + static RawType Infinity() { + return ReinterpretBits(kExponentBitMask); + } + + // Returns the maximum representable finite floating-point number. + static RawType Max(); + + // Non-static methods + + // Returns the bits that represents this number. + const Bits &bits() const { return u_.bits_; } + + // Returns the exponent bits of this number. + Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } + + // Returns the fraction bits of this number. + Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } + + // Returns the sign bit of this number. + Bits sign_bit() const { return kSignBitMask & u_.bits_; } + + // Returns true iff this is NAN (not a number). + bool is_nan() const { + // It's a NAN if the exponent bits are all ones and the fraction + // bits are not entirely zeros. + return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0); + } + + // Returns true iff this number is at most kMaxUlps ULP's away from + // rhs. In particular, this function: + // + // - returns false if either number is (or both are) NAN. + // - treats really large numbers as almost equal to infinity. + // - thinks +0.0 and -0.0 are 0 DLP's apart. + bool AlmostEquals(const FloatingPoint& rhs) const { + // The IEEE standard says that any comparison operation involving + // a NAN must return false. + if (is_nan() || rhs.is_nan()) return false; + + return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) + <= kMaxUlps; + } + + private: + // The data type used to store the actual floating-point number. + union FloatingPointUnion { + RawType value_; // The raw floating-point number. + Bits bits_; // The bits that represent the number. + }; + + // Converts an integer from the sign-and-magnitude representation to + // the biased representation. More precisely, let N be 2 to the + // power of (kBitCount - 1), an integer x is represented by the + // unsigned number x + N. + // + // For instance, + // + // -N + 1 (the most negative number representable using + // sign-and-magnitude) is represented by 1; + // 0 is represented by N; and + // N - 1 (the biggest number representable using + // sign-and-magnitude) is represented by 2N - 1. + // + // Read http://en.wikipedia.org/wiki/Signed_number_representations + // for more details on signed number representations. + static Bits SignAndMagnitudeToBiased(const Bits &sam) { + if (kSignBitMask & sam) { + // sam represents a negative number. + return ~sam + 1; + } else { + // sam represents a positive number. + return kSignBitMask | sam; + } + } + + // Given two numbers in the sign-and-magnitude representation, + // returns the distance between them as an unsigned number. + static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits &sam1, + const Bits &sam2) { + const Bits biased1 = SignAndMagnitudeToBiased(sam1); + const Bits biased2 = SignAndMagnitudeToBiased(sam2); + return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1); + } + + FloatingPointUnion u_; +}; + +// We cannot use std::numeric_limits::max() as it clashes with the max() +// macro defined by . +template <> +inline float FloatingPoint::Max() { return FLT_MAX; } +template <> +inline double FloatingPoint::Max() { return DBL_MAX; } + +// Typedefs the instances of the FloatingPoint template class that we +// care to use. +typedef FloatingPoint Float; +typedef FloatingPoint Double; + +// In order to catch the mistake of putting tests that use different +// test fixture classes in the same test case, we need to assign +// unique IDs to fixture classes and compare them. The TypeId type is +// used to hold such IDs. The user should treat TypeId as an opaque +// type: the only operation allowed on TypeId values is to compare +// them for equality using the == operator. +typedef const void* TypeId; + +template +class TypeIdHelper { + public: + // dummy_ must not have a const type. Otherwise an overly eager + // compiler (e.g. MSVC 7.1 & 8.0) may try to merge + // TypeIdHelper::dummy_ for different Ts as an "optimization". + static bool dummy_; +}; + +template +bool TypeIdHelper::dummy_ = false; + +// GetTypeId() returns the ID of type T. Different values will be +// returned for different types. Calling the function twice with the +// same type argument is guaranteed to return the same ID. +template +TypeId GetTypeId() { + // The compiler is required to allocate a different + // TypeIdHelper::dummy_ variable for each T used to instantiate + // the template. Therefore, the address of dummy_ is guaranteed to + // be unique. + return &(TypeIdHelper::dummy_); +} + +// Returns the type ID of ::testing::Test. Always call this instead +// of GetTypeId< ::testing::Test>() to get the type ID of +// ::testing::Test, as the latter may give the wrong result due to a +// suspected linker bug when compiling Google Test as a Mac OS X +// framework. +GTEST_API_ TypeId GetTestTypeId(); + +// Defines the abstract factory interface that creates instances +// of a Test object. +class TestFactoryBase { + public: + virtual ~TestFactoryBase() {} + + // Creates a test instance to run. The instance is both created and destroyed + // within TestInfoImpl::Run() + virtual Test* CreateTest() = 0; + + protected: + TestFactoryBase() {} + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase); +}; + +// This class provides implementation of TeastFactoryBase interface. +// It is used in TEST and TEST_F macros. +template +class TestFactoryImpl : public TestFactoryBase { + public: + virtual Test* CreateTest() { return new TestClass; } +}; + +#if GTEST_OS_WINDOWS + +// Predicate-formatters for implementing the HRESULT checking macros +// {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED} +// We pass a long instead of HRESULT to avoid causing an +// include dependency for the HRESULT type. +GTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr, + long hr); // NOLINT +GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr, + long hr); // NOLINT + +#endif // GTEST_OS_WINDOWS + +// Types of SetUpTestCase() and TearDownTestCase() functions. +typedef void (*SetUpTestCaseFunc)(); +typedef void (*TearDownTestCaseFunc)(); + +// Creates a new TestInfo object and registers it with Google Test; +// returns the created object. +// +// Arguments: +// +// test_case_name: name of the test case +// name: name of the test +// type_param the name of the test's type parameter, or NULL if +// this is not a typed or a type-parameterized test. +// value_param text representation of the test's value parameter, +// or NULL if this is not a type-parameterized test. +// fixture_class_id: ID of the test fixture class +// set_up_tc: pointer to the function that sets up the test case +// tear_down_tc: pointer to the function that tears down the test case +// factory: pointer to the factory that creates a test object. +// The newly created TestInfo instance will assume +// ownership of the factory object. +GTEST_API_ TestInfo* MakeAndRegisterTestInfo( + const char* test_case_name, + const char* name, + const char* type_param, + const char* value_param, + TypeId fixture_class_id, + SetUpTestCaseFunc set_up_tc, + TearDownTestCaseFunc tear_down_tc, + TestFactoryBase* factory); + +// If *pstr starts with the given prefix, modifies *pstr to be right +// past the prefix and returns true; otherwise leaves *pstr unchanged +// and returns false. None of pstr, *pstr, and prefix can be NULL. +GTEST_API_ bool SkipPrefix(const char* prefix, const char** pstr); + +#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P + +// State of the definition of a type-parameterized test case. +class GTEST_API_ TypedTestCasePState { + public: + TypedTestCasePState() : registered_(false) {} + + // Adds the given test name to defined_test_names_ and return true + // if the test case hasn't been registered; otherwise aborts the + // program. + bool AddTestName(const char* file, int line, const char* case_name, + const char* test_name) { + if (registered_) { + fprintf(stderr, "%s Test %s must be defined before " + "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n", + FormatFileLocation(file, line).c_str(), test_name, case_name); + fflush(stderr); + posix::Abort(); + } + defined_test_names_.insert(test_name); + return true; + } + + // Verifies that registered_tests match the test names in + // defined_test_names_; returns registered_tests if successful, or + // aborts the program otherwise. + const char* VerifyRegisteredTestNames( + const char* file, int line, const char* registered_tests); + + private: + bool registered_; + ::std::set defined_test_names_; +}; + +// Skips to the first non-space char after the first comma in 'str'; +// returns NULL if no comma is found in 'str'. +inline const char* SkipComma(const char* str) { + const char* comma = strchr(str, ','); + if (comma == NULL) { + return NULL; + } + while (IsSpace(*(++comma))) {} + return comma; +} + +// Returns the prefix of 'str' before the first comma in it; returns +// the entire string if it contains no comma. +inline std::string GetPrefixUntilComma(const char* str) { + const char* comma = strchr(str, ','); + return comma == NULL ? str : std::string(str, comma); +} + +// TypeParameterizedTest::Register() +// registers a list of type-parameterized tests with Google Test. The +// return value is insignificant - we just need to return something +// such that we can call this function in a namespace scope. +// +// Implementation note: The GTEST_TEMPLATE_ macro declares a template +// template parameter. It's defined in gtest-type-util.h. +template +class TypeParameterizedTest { + public: + // 'index' is the index of the test in the type list 'Types' + // specified in INSTANTIATE_TYPED_TEST_CASE_P(Prefix, TestCase, + // Types). Valid values for 'index' are [0, N - 1] where N is the + // length of Types. + static bool Register(const char* prefix, const char* case_name, + const char* test_names, int index) { + typedef typename Types::Head Type; + typedef Fixture FixtureClass; + typedef typename GTEST_BIND_(TestSel, Type) TestClass; + + // First, registers the first type-parameterized test in the type + // list. + MakeAndRegisterTestInfo( + (std::string(prefix) + (prefix[0] == '\0' ? "" : "/") + case_name + "/" + + StreamableToString(index)).c_str(), + GetPrefixUntilComma(test_names).c_str(), + GetTypeName().c_str(), + NULL, // No value parameter. + GetTypeId(), + TestClass::SetUpTestCase, + TestClass::TearDownTestCase, + new TestFactoryImpl); + + // Next, recurses (at compile time) with the tail of the type list. + return TypeParameterizedTest + ::Register(prefix, case_name, test_names, index + 1); + } +}; + +// The base case for the compile time recursion. +template +class TypeParameterizedTest { + public: + static bool Register(const char* /*prefix*/, const char* /*case_name*/, + const char* /*test_names*/, int /*index*/) { + return true; + } +}; + +// TypeParameterizedTestCase::Register() +// registers *all combinations* of 'Tests' and 'Types' with Google +// Test. The return value is insignificant - we just need to return +// something such that we can call this function in a namespace scope. +template +class TypeParameterizedTestCase { + public: + static bool Register(const char* prefix, const char* case_name, + const char* test_names) { + typedef typename Tests::Head Head; + + // First, register the first test in 'Test' for each type in 'Types'. + TypeParameterizedTest::Register( + prefix, case_name, test_names, 0); + + // Next, recurses (at compile time) with the tail of the test list. + return TypeParameterizedTestCase + ::Register(prefix, case_name, SkipComma(test_names)); + } +}; + +// The base case for the compile time recursion. +template +class TypeParameterizedTestCase { + public: + static bool Register(const char* /*prefix*/, const char* /*case_name*/, + const char* /*test_names*/) { + return true; + } +}; + +#endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P + +// Returns the current OS stack trace as an std::string. +// +// The maximum number of stack frames to be included is specified by +// the gtest_stack_trace_depth flag. The skip_count parameter +// specifies the number of top frames to be skipped, which doesn't +// count against the number of frames to be included. +// +// For example, if Foo() calls Bar(), which in turn calls +// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in +// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. +GTEST_API_ std::string GetCurrentOsStackTraceExceptTop( + UnitTest* unit_test, int skip_count); + +// Helpers for suppressing warnings on unreachable code or constant +// condition. + +// Always returns true. +GTEST_API_ bool AlwaysTrue(); + +// Always returns false. +inline bool AlwaysFalse() { return !AlwaysTrue(); } + +// Helper for suppressing false warning from Clang on a const char* +// variable declared in a conditional expression always being NULL in +// the else branch. +struct GTEST_API_ ConstCharPtr { + ConstCharPtr(const char* str) : value(str) {} + operator bool() const { return true; } + const char* value; +}; + +// A simple Linear Congruential Generator for generating random +// numbers with a uniform distribution. Unlike rand() and srand(), it +// doesn't use global state (and therefore can't interfere with user +// code). Unlike rand_r(), it's portable. An LCG isn't very random, +// but it's good enough for our purposes. +class GTEST_API_ Random { + public: + static const UInt32 kMaxRange = 1u << 31; + + explicit Random(UInt32 seed) : state_(seed) {} + + void Reseed(UInt32 seed) { state_ = seed; } + + // Generates a random number from [0, range). Crashes if 'range' is + // 0 or greater than kMaxRange. + UInt32 Generate(UInt32 range); + + private: + UInt32 state_; + GTEST_DISALLOW_COPY_AND_ASSIGN_(Random); +}; + +// Defining a variable of type CompileAssertTypesEqual will cause a +// compiler error iff T1 and T2 are different types. +template +struct CompileAssertTypesEqual; + +template +struct CompileAssertTypesEqual { +}; + +// Removes the reference from a type if it is a reference type, +// otherwise leaves it unchanged. This is the same as +// tr1::remove_reference, which is not widely available yet. +template +struct RemoveReference { typedef T type; }; // NOLINT +template +struct RemoveReference { typedef T type; }; // NOLINT + +// A handy wrapper around RemoveReference that works when the argument +// T depends on template parameters. +#define GTEST_REMOVE_REFERENCE_(T) \ + typename ::testing::internal::RemoveReference::type + +// Removes const from a type if it is a const type, otherwise leaves +// it unchanged. This is the same as tr1::remove_const, which is not +// widely available yet. +template +struct RemoveConst { typedef T type; }; // NOLINT +template +struct RemoveConst { typedef T type; }; // NOLINT + +// MSVC 8.0, Sun C++, and IBM XL C++ have a bug which causes the above +// definition to fail to remove the const in 'const int[3]' and 'const +// char[3][4]'. The following specialization works around the bug. +template +struct RemoveConst { + typedef typename RemoveConst::type type[N]; +}; + +#if defined(_MSC_VER) && _MSC_VER < 1400 +// This is the only specialization that allows VC++ 7.1 to remove const in +// 'const int[3] and 'const int[3][4]'. However, it causes trouble with GCC +// and thus needs to be conditionally compiled. +template +struct RemoveConst { + typedef typename RemoveConst::type type[N]; +}; +#endif + +// A handy wrapper around RemoveConst that works when the argument +// T depends on template parameters. +#define GTEST_REMOVE_CONST_(T) \ + typename ::testing::internal::RemoveConst::type + +// Turns const U&, U&, const U, and U all into U. +#define GTEST_REMOVE_REFERENCE_AND_CONST_(T) \ + GTEST_REMOVE_CONST_(GTEST_REMOVE_REFERENCE_(T)) + +// Adds reference to a type if it is not a reference type, +// otherwise leaves it unchanged. This is the same as +// tr1::add_reference, which is not widely available yet. +template +struct AddReference { typedef T& type; }; // NOLINT +template +struct AddReference { typedef T& type; }; // NOLINT + +// A handy wrapper around AddReference that works when the argument T +// depends on template parameters. +#define GTEST_ADD_REFERENCE_(T) \ + typename ::testing::internal::AddReference::type + +// Adds a reference to const on top of T as necessary. For example, +// it transforms +// +// char ==> const char& +// const char ==> const char& +// char& ==> const char& +// const char& ==> const char& +// +// The argument T must depend on some template parameters. +#define GTEST_REFERENCE_TO_CONST_(T) \ + GTEST_ADD_REFERENCE_(const GTEST_REMOVE_REFERENCE_(T)) + +// ImplicitlyConvertible::value is a compile-time bool +// constant that's true iff type From can be implicitly converted to +// type To. +template +class ImplicitlyConvertible { + private: + // We need the following helper functions only for their types. + // They have no implementations. + + // MakeFrom() is an expression whose type is From. We cannot simply + // use From(), as the type From may not have a public default + // constructor. + static From MakeFrom(); + + // These two functions are overloaded. Given an expression + // Helper(x), the compiler will pick the first version if x can be + // implicitly converted to type To; otherwise it will pick the + // second version. + // + // The first version returns a value of size 1, and the second + // version returns a value of size 2. Therefore, by checking the + // size of Helper(x), which can be done at compile time, we can tell + // which version of Helper() is used, and hence whether x can be + // implicitly converted to type To. + static char Helper(To); + static char (&Helper(...))[2]; // NOLINT + + // We have to put the 'public' section after the 'private' section, + // or MSVC refuses to compile the code. + public: + // MSVC warns about implicitly converting from double to int for + // possible loss of data, so we need to temporarily disable the + // warning. +#ifdef _MSC_VER +# pragma warning(push) // Saves the current warning state. +# pragma warning(disable:4244) // Temporarily disables warning 4244. + + static const bool value = + sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1; +# pragma warning(pop) // Restores the warning state. +#elif defined(__BORLANDC__) + // C++Builder cannot use member overload resolution during template + // instantiation. The simplest workaround is to use its C++0x type traits + // functions (C++Builder 2009 and above only). + static const bool value = __is_convertible(From, To); +#else + static const bool value = + sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1; +#endif // _MSV_VER +}; +template +const bool ImplicitlyConvertible::value; + +// IsAProtocolMessage::value is a compile-time bool constant that's +// true iff T is type ProtocolMessage, proto2::Message, or a subclass +// of those. +template +struct IsAProtocolMessage + : public bool_constant< + ImplicitlyConvertible::value || + ImplicitlyConvertible::value> { +}; + +// When the compiler sees expression IsContainerTest(0), if C is an +// STL-style container class, the first overload of IsContainerTest +// will be viable (since both C::iterator* and C::const_iterator* are +// valid types and NULL can be implicitly converted to them). It will +// be picked over the second overload as 'int' is a perfect match for +// the type of argument 0. If C::iterator or C::const_iterator is not +// a valid type, the first overload is not viable, and the second +// overload will be picked. Therefore, we can determine whether C is +// a container class by checking the type of IsContainerTest(0). +// The value of the expression is insignificant. +// +// Note that we look for both C::iterator and C::const_iterator. The +// reason is that C++ injects the name of a class as a member of the +// class itself (e.g. you can refer to class iterator as either +// 'iterator' or 'iterator::iterator'). If we look for C::iterator +// only, for example, we would mistakenly think that a class named +// iterator is an STL container. +// +// Also note that the simpler approach of overloading +// IsContainerTest(typename C::const_iterator*) and +// IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++. +typedef int IsContainer; +template +IsContainer IsContainerTest(int /* dummy */, + typename C::iterator* /* it */ = NULL, + typename C::const_iterator* /* const_it */ = NULL) { + return 0; +} + +typedef char IsNotContainer; +template +IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } + +// EnableIf::type is void when 'Cond' is true, and +// undefined when 'Cond' is false. To use SFINAE to make a function +// overload only apply when a particular expression is true, add +// "typename EnableIf::type* = 0" as the last parameter. +template struct EnableIf; +template<> struct EnableIf { typedef void type; }; // NOLINT + +// Utilities for native arrays. + +// ArrayEq() compares two k-dimensional native arrays using the +// elements' operator==, where k can be any integer >= 0. When k is +// 0, ArrayEq() degenerates into comparing a single pair of values. + +template +bool ArrayEq(const T* lhs, size_t size, const U* rhs); + +// This generic version is used when k is 0. +template +inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } + +// This overload is used when k >= 1. +template +inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) { + return internal::ArrayEq(lhs, N, rhs); +} + +// This helper reduces code bloat. If we instead put its logic inside +// the previous ArrayEq() function, arrays with different sizes would +// lead to different copies of the template code. +template +bool ArrayEq(const T* lhs, size_t size, const U* rhs) { + for (size_t i = 0; i != size; i++) { + if (!internal::ArrayEq(lhs[i], rhs[i])) + return false; + } + return true; +} + +// Finds the first element in the iterator range [begin, end) that +// equals elem. Element may be a native array type itself. +template +Iter ArrayAwareFind(Iter begin, Iter end, const Element& elem) { + for (Iter it = begin; it != end; ++it) { + if (internal::ArrayEq(*it, elem)) + return it; + } + return end; +} + +// CopyArray() copies a k-dimensional native array using the elements' +// operator=, where k can be any integer >= 0. When k is 0, +// CopyArray() degenerates into copying a single value. + +template +void CopyArray(const T* from, size_t size, U* to); + +// This generic version is used when k is 0. +template +inline void CopyArray(const T& from, U* to) { *to = from; } + +// This overload is used when k >= 1. +template +inline void CopyArray(const T(&from)[N], U(*to)[N]) { + internal::CopyArray(from, N, *to); +} + +// This helper reduces code bloat. If we instead put its logic inside +// the previous CopyArray() function, arrays with different sizes +// would lead to different copies of the template code. +template +void CopyArray(const T* from, size_t size, U* to) { + for (size_t i = 0; i != size; i++) { + internal::CopyArray(from[i], to + i); + } +} + +// The relation between an NativeArray object (see below) and the +// native array it represents. +enum RelationToSource { + kReference, // The NativeArray references the native array. + kCopy // The NativeArray makes a copy of the native array and + // owns the copy. +}; + +// Adapts a native array to a read-only STL-style container. Instead +// of the complete STL container concept, this adaptor only implements +// members useful for Google Mock's container matchers. New members +// should be added as needed. To simplify the implementation, we only +// support Element being a raw type (i.e. having no top-level const or +// reference modifier). It's the client's responsibility to satisfy +// this requirement. Element can be an array type itself (hence +// multi-dimensional arrays are supported). +template +class NativeArray { + public: + // STL-style container typedefs. + typedef Element value_type; + typedef Element* iterator; + typedef const Element* const_iterator; + + // Constructs from a native array. + NativeArray(const Element* array, size_t count, RelationToSource relation) { + Init(array, count, relation); + } + + // Copy constructor. + NativeArray(const NativeArray& rhs) { + Init(rhs.array_, rhs.size_, rhs.relation_to_source_); + } + + ~NativeArray() { + // Ensures that the user doesn't instantiate NativeArray with a + // const or reference type. + static_cast(StaticAssertTypeEqHelper()); + if (relation_to_source_ == kCopy) + delete[] array_; + } + + // STL-style container methods. + size_t size() const { return size_; } + const_iterator begin() const { return array_; } + const_iterator end() const { return array_ + size_; } + bool operator==(const NativeArray& rhs) const { + return size() == rhs.size() && + ArrayEq(begin(), size(), rhs.begin()); + } + + private: + // Initializes this object; makes a copy of the input array if + // 'relation' is kCopy. + void Init(const Element* array, size_t a_size, RelationToSource relation) { + if (relation == kReference) { + array_ = array; + } else { + Element* const copy = new Element[a_size]; + CopyArray(array, a_size, copy); + array_ = copy; + } + size_ = a_size; + relation_to_source_ = relation; + } + + const Element* array_; + size_t size_; + RelationToSource relation_to_source_; + + GTEST_DISALLOW_ASSIGN_(NativeArray); +}; + +} // namespace internal +} // namespace testing + +#define GTEST_MESSAGE_AT_(file, line, message, result_type) \ + ::testing::internal::AssertHelper(result_type, file, line, message) \ + = ::testing::Message() + +#define GTEST_MESSAGE_(message, result_type) \ + GTEST_MESSAGE_AT_(__FILE__, __LINE__, message, result_type) + +#define GTEST_FATAL_FAILURE_(message) \ + return GTEST_MESSAGE_(message, ::testing::TestPartResult::kFatalFailure) + +#define GTEST_NONFATAL_FAILURE_(message) \ + GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure) + +#define GTEST_SUCCESS_(message) \ + GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess) + +// Suppresses MSVC warnings 4072 (unreachable code) for the code following +// statement if it returns or throws (or doesn't return or throw in some +// situations). +#define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \ + if (::testing::internal::AlwaysTrue()) { statement; } + +#define GTEST_TEST_THROW_(statement, expected_exception, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::ConstCharPtr gtest_msg = "") { \ + bool gtest_caught_expected = false; \ + try { \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + } \ + catch (expected_exception const&) { \ + gtest_caught_expected = true; \ + } \ + catch (...) { \ + gtest_msg.value = \ + "Expected: " #statement " throws an exception of type " \ + #expected_exception ".\n Actual: it throws a different type."; \ + goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ + } \ + if (!gtest_caught_expected) { \ + gtest_msg.value = \ + "Expected: " #statement " throws an exception of type " \ + #expected_exception ".\n Actual: it throws nothing."; \ + goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ + } \ + } else \ + GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__): \ + fail(gtest_msg.value) + +#define GTEST_TEST_NO_THROW_(statement, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + try { \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + } \ + catch (...) { \ + goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \ + } \ + } else \ + GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \ + fail("Expected: " #statement " doesn't throw an exception.\n" \ + " Actual: it throws.") + +#define GTEST_TEST_ANY_THROW_(statement, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + bool gtest_caught_any = false; \ + try { \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + } \ + catch (...) { \ + gtest_caught_any = true; \ + } \ + if (!gtest_caught_any) { \ + goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \ + } \ + } else \ + GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \ + fail("Expected: " #statement " throws an exception.\n" \ + " Actual: it doesn't.") + + +// Implements Boolean test assertions such as EXPECT_TRUE. expression can be +// either a boolean expression or an AssertionResult. text is a textual +// represenation of expression as it was passed into the EXPECT_TRUE. +#define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (const ::testing::AssertionResult gtest_ar_ = \ + ::testing::AssertionResult(expression)) \ + ; \ + else \ + fail(::testing::internal::GetBoolAssertionFailureMessage(\ + gtest_ar_, text, #actual, #expected).c_str()) + +#define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::AlwaysTrue()) { \ + ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \ + GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ + if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \ + goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \ + } \ + } else \ + GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \ + fail("Expected: " #statement " doesn't generate new fatal " \ + "failures in the current thread.\n" \ + " Actual: it does.") + +// Expands to the name of the class that implements the given test. +#define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ + test_case_name##_##test_name##_Test + +// Helper macro for defining tests. +#define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\ +class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\ + public:\ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\ + private:\ + virtual void TestBody();\ + static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_;\ + GTEST_DISALLOW_COPY_AND_ASSIGN_(\ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\ +};\ +\ +::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\ + ::test_info_ =\ + ::testing::internal::MakeAndRegisterTestInfo(\ + #test_case_name, #test_name, NULL, NULL, \ + (parent_id), \ + parent_class::SetUpTestCase, \ + parent_class::TearDownTestCase, \ + new ::testing::internal::TestFactoryImpl<\ + GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>);\ +void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h new file mode 100644 index 000000000..b1362cd00 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-linked_ptr.h @@ -0,0 +1,233 @@ +// Copyright 2003 Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: Dan Egnor (egnor@google.com) +// +// A "smart" pointer type with reference tracking. Every pointer to a +// particular object is kept on a circular linked list. When the last pointer +// to an object is destroyed or reassigned, the object is deleted. +// +// Used properly, this deletes the object when the last reference goes away. +// There are several caveats: +// - Like all reference counting schemes, cycles lead to leaks. +// - Each smart pointer is actually two pointers (8 bytes instead of 4). +// - Every time a pointer is assigned, the entire list of pointers to that +// object is traversed. This class is therefore NOT SUITABLE when there +// will often be more than two or three pointers to a particular object. +// - References are only tracked as long as linked_ptr<> objects are copied. +// If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS +// will happen (double deletion). +// +// A good use of this class is storing object references in STL containers. +// You can safely put linked_ptr<> in a vector<>. +// Other uses may not be as good. +// +// Note: If you use an incomplete type with linked_ptr<>, the class +// *containing* linked_ptr<> must have a constructor and destructor (even +// if they do nothing!). +// +// Bill Gibbons suggested we use something like this. +// +// Thread Safety: +// Unlike other linked_ptr implementations, in this implementation +// a linked_ptr object is thread-safe in the sense that: +// - it's safe to copy linked_ptr objects concurrently, +// - it's safe to copy *from* a linked_ptr and read its underlying +// raw pointer (e.g. via get()) concurrently, and +// - it's safe to write to two linked_ptrs that point to the same +// shared object concurrently. +// TODO(wan@google.com): rename this to safe_linked_ptr to avoid +// confusion with normal linked_ptr. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ + +#include +#include + +#include "gtest/internal/gtest-port.h" + +namespace testing { +namespace internal { + +// Protects copying of all linked_ptr objects. +GTEST_API_ GTEST_DECLARE_STATIC_MUTEX_(g_linked_ptr_mutex); + +// This is used internally by all instances of linked_ptr<>. It needs to be +// a non-template class because different types of linked_ptr<> can refer to +// the same object (linked_ptr(obj) vs linked_ptr(obj)). +// So, it needs to be possible for different types of linked_ptr to participate +// in the same circular linked list, so we need a single class type here. +// +// DO NOT USE THIS CLASS DIRECTLY YOURSELF. Use linked_ptr. +class linked_ptr_internal { + public: + // Create a new circle that includes only this instance. + void join_new() { + next_ = this; + } + + // Many linked_ptr operations may change p.link_ for some linked_ptr + // variable p in the same circle as this object. Therefore we need + // to prevent two such operations from occurring concurrently. + // + // Note that different types of linked_ptr objects can coexist in a + // circle (e.g. linked_ptr, linked_ptr, and + // linked_ptr). Therefore we must use a single mutex to + // protect all linked_ptr objects. This can create serious + // contention in production code, but is acceptable in a testing + // framework. + + // Join an existing circle. + void join(linked_ptr_internal const* ptr) + GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) { + MutexLock lock(&g_linked_ptr_mutex); + + linked_ptr_internal const* p = ptr; + while (p->next_ != ptr) p = p->next_; + p->next_ = this; + next_ = ptr; + } + + // Leave whatever circle we're part of. Returns true if we were the + // last member of the circle. Once this is done, you can join() another. + bool depart() + GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) { + MutexLock lock(&g_linked_ptr_mutex); + + if (next_ == this) return true; + linked_ptr_internal const* p = next_; + while (p->next_ != this) p = p->next_; + p->next_ = next_; + return false; + } + + private: + mutable linked_ptr_internal const* next_; +}; + +template +class linked_ptr { + public: + typedef T element_type; + + // Take over ownership of a raw pointer. This should happen as soon as + // possible after the object is created. + explicit linked_ptr(T* ptr = NULL) { capture(ptr); } + ~linked_ptr() { depart(); } + + // Copy an existing linked_ptr<>, adding ourselves to the list of references. + template linked_ptr(linked_ptr const& ptr) { copy(&ptr); } + linked_ptr(linked_ptr const& ptr) { // NOLINT + assert(&ptr != this); + copy(&ptr); + } + + // Assignment releases the old value and acquires the new. + template linked_ptr& operator=(linked_ptr const& ptr) { + depart(); + copy(&ptr); + return *this; + } + + linked_ptr& operator=(linked_ptr const& ptr) { + if (&ptr != this) { + depart(); + copy(&ptr); + } + return *this; + } + + // Smart pointer members. + void reset(T* ptr = NULL) { + depart(); + capture(ptr); + } + T* get() const { return value_; } + T* operator->() const { return value_; } + T& operator*() const { return *value_; } + + bool operator==(T* p) const { return value_ == p; } + bool operator!=(T* p) const { return value_ != p; } + template + bool operator==(linked_ptr const& ptr) const { + return value_ == ptr.get(); + } + template + bool operator!=(linked_ptr const& ptr) const { + return value_ != ptr.get(); + } + + private: + template + friend class linked_ptr; + + T* value_; + linked_ptr_internal link_; + + void depart() { + if (link_.depart()) delete value_; + } + + void capture(T* ptr) { + value_ = ptr; + link_.join_new(); + } + + template void copy(linked_ptr const* ptr) { + value_ = ptr->get(); + if (value_) + link_.join(&ptr->link_); + else + link_.join_new(); + } +}; + +template inline +bool operator==(T* ptr, const linked_ptr& x) { + return ptr == x.get(); +} + +template inline +bool operator!=(T* ptr, const linked_ptr& x) { + return ptr != x.get(); +} + +// A function to convert T* into linked_ptr +// Doing e.g. make_linked_ptr(new FooBarBaz(arg)) is a shorter notation +// for linked_ptr >(new FooBarBaz(arg)) +template +linked_ptr make_linked_ptr(T* ptr) { + return linked_ptr(ptr); +} + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h new file mode 100644 index 000000000..e80548592 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h @@ -0,0 +1,5143 @@ +// This file was GENERATED by command: +// pump.py gtest-param-util-generated.h.pump +// DO NOT EDIT BY HAND!!! + +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) + +// Type and function utilities for implementing parameterized tests. +// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! +// +// Currently Google Test supports at most 50 arguments in Values, +// and at most 10 arguments in Combine. Please contact +// googletestframework@googlegroups.com if you need more. +// Please note that the number of arguments to Combine is limited +// by the maximum arity of the implementation of tr1::tuple which is +// currently set at 10. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ + +// scripts/fuse_gtest.py depends on gtest's own header being #included +// *unconditionally*. Therefore these #includes cannot be moved +// inside #if GTEST_HAS_PARAM_TEST. +#include "gtest/internal/gtest-param-util.h" +#include "gtest/internal/gtest-port.h" + +#if GTEST_HAS_PARAM_TEST + +namespace testing { + +// Forward declarations of ValuesIn(), which is implemented in +// include/gtest/gtest-param-test.h. +template +internal::ParamGenerator< + typename ::testing::internal::IteratorTraits::value_type> +ValuesIn(ForwardIterator begin, ForwardIterator end); + +template +internal::ParamGenerator ValuesIn(const T (&array)[N]); + +template +internal::ParamGenerator ValuesIn( + const Container& container); + +namespace internal { + +// Used in the Values() function to provide polymorphic capabilities. +template +class ValueArray1 { + public: + explicit ValueArray1(T1 v1) : v1_(v1) {} + + template + operator ParamGenerator() const { return ValuesIn(&v1_, &v1_ + 1); } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray1& other); + + const T1 v1_; +}; + +template +class ValueArray2 { + public: + ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray2& other); + + const T1 v1_; + const T2 v2_; +}; + +template +class ValueArray3 { + public: + ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray3& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; +}; + +template +class ValueArray4 { + public: + ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray4& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; +}; + +template +class ValueArray5 { + public: + ValueArray5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray5& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; +}; + +template +class ValueArray6 { + public: + ValueArray6(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray6& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; +}; + +template +class ValueArray7 { + public: + ValueArray7(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray7& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; +}; + +template +class ValueArray8 { + public: + ValueArray8(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, + T8 v8) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray8& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; +}; + +template +class ValueArray9 { + public: + ValueArray9(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, + T9 v9) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray9& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; +}; + +template +class ValueArray10 { + public: + ValueArray10(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray10& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; +}; + +template +class ValueArray11 { + public: + ValueArray11(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), + v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray11& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; +}; + +template +class ValueArray12 { + public: + ValueArray12(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), + v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray12& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; +}; + +template +class ValueArray13 { + public: + ValueArray13(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), + v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), + v12_(v12), v13_(v13) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray13& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; +}; + +template +class ValueArray14 { + public: + ValueArray14(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray14& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; +}; + +template +class ValueArray15 { + public: + ValueArray15(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray15& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; +}; + +template +class ValueArray16 { + public: + ValueArray16(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), + v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), + v16_(v16) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray16& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; +}; + +template +class ValueArray17 { + public: + ValueArray17(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, + T17 v17) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray17& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; +}; + +template +class ValueArray18 { + public: + ValueArray18(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray18& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; +}; + +template +class ValueArray19 { + public: + ValueArray19(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), + v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), + v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray19& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; +}; + +template +class ValueArray20 { + public: + ValueArray20(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), + v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), + v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), + v19_(v19), v20_(v20) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray20& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; +}; + +template +class ValueArray21 { + public: + ValueArray21(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), + v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), + v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), + v18_(v18), v19_(v19), v20_(v20), v21_(v21) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray21& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; +}; + +template +class ValueArray22 { + public: + ValueArray22(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray22& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; +}; + +template +class ValueArray23 { + public: + ValueArray23(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray23& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; +}; + +template +class ValueArray24 { + public: + ValueArray24(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), + v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), + v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), + v22_(v22), v23_(v23), v24_(v24) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray24& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; +}; + +template +class ValueArray25 { + public: + ValueArray25(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, + T25 v25) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray25& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; +}; + +template +class ValueArray26 { + public: + ValueArray26(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray26& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; +}; + +template +class ValueArray27 { + public: + ValueArray27(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), + v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), + v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), + v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), + v26_(v26), v27_(v27) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray27& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; +}; + +template +class ValueArray28 { + public: + ValueArray28(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), + v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), + v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), + v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), + v25_(v25), v26_(v26), v27_(v27), v28_(v28) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray28& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; +}; + +template +class ValueArray29 { + public: + ValueArray29(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), + v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), + v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), + v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), + v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray29& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; +}; + +template +class ValueArray30 { + public: + ValueArray30(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray30& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; +}; + +template +class ValueArray31 { + public: + ValueArray31(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30), v31_(v31) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray31& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; +}; + +template +class ValueArray32 { + public: + ValueArray32(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), + v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), + v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), + v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), + v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray32& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; +}; + +template +class ValueArray33 { + public: + ValueArray33(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, + T33 v33) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray33& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; +}; + +template +class ValueArray34 { + public: + ValueArray34(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33), v34_(v34) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray34& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; +}; + +template +class ValueArray35 { + public: + ValueArray35(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), + v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), + v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), + v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), + v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), + v32_(v32), v33_(v33), v34_(v34), v35_(v35) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray35& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; +}; + +template +class ValueArray36 { + public: + ValueArray36(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), + v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), + v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), + v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), + v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), + v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray36& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; +}; + +template +class ValueArray37 { + public: + ValueArray37(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), + v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), + v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), + v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), + v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), + v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), + v36_(v36), v37_(v37) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray37& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; +}; + +template +class ValueArray38 { + public: + ValueArray38(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), + v35_(v35), v36_(v36), v37_(v37), v38_(v38) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray38& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; +}; + +template +class ValueArray39 { + public: + ValueArray39(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), + v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray39& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; +}; + +template +class ValueArray40 { + public: + ValueArray40(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), + v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), + v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), + v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), + v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), + v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), + v40_(v40) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray40& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; +}; + +template +class ValueArray41 { + public: + ValueArray41(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, + T41 v41) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), + v39_(v39), v40_(v40), v41_(v41) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray41& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; +}; + +template +class ValueArray42 { + public: + ValueArray42(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), + v39_(v39), v40_(v40), v41_(v41), v42_(v42) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray42& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; +}; + +template +class ValueArray43 { + public: + ValueArray43(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), + v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), + v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), + v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), + v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), + v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), + v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray43& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; +}; + +template +class ValueArray44 { + public: + ValueArray44(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), + v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), + v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), + v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), + v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), + v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), + v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), + v43_(v43), v44_(v44) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray44& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; +}; + +template +class ValueArray45 { + public: + ValueArray45(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), + v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), + v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), + v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), + v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), + v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), + v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), + v42_(v42), v43_(v43), v44_(v44), v45_(v45) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray45& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; +}; + +template +class ValueArray46 { + public: + ValueArray46(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) : v1_(v1), v2_(v2), v3_(v3), + v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), + v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), + v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_), static_cast(v46_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray46& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; + const T46 v46_; +}; + +template +class ValueArray47 { + public: + ValueArray47(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) : v1_(v1), v2_(v2), + v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), + v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), + v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), + v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), + v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), + v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), + v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), + v47_(v47) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_), static_cast(v46_), static_cast(v47_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray47& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; + const T46 v46_; + const T47 v47_; +}; + +template +class ValueArray48 { + public: + ValueArray48(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48) : v1_(v1), + v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), + v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), + v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), + v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), + v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), + v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), + v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), + v46_(v46), v47_(v47), v48_(v48) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_), static_cast(v46_), static_cast(v47_), + static_cast(v48_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray48& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; + const T46 v46_; + const T47 v47_; + const T48 v48_; +}; + +template +class ValueArray49 { + public: + ValueArray49(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, + T49 v49) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), + v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), + v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_), static_cast(v46_), static_cast(v47_), + static_cast(v48_), static_cast(v49_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray49& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; + const T46 v46_; + const T47 v47_; + const T48 v48_; + const T49 v49_; +}; + +template +class ValueArray50 { + public: + ValueArray50(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, + T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, + T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, + T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, + T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, + T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49, + T50 v50) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), + v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), + v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), + v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), + v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), + v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), + v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), + v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49), v50_(v50) {} + + template + operator ParamGenerator() const { + const T array[] = {static_cast(v1_), static_cast(v2_), + static_cast(v3_), static_cast(v4_), static_cast(v5_), + static_cast(v6_), static_cast(v7_), static_cast(v8_), + static_cast(v9_), static_cast(v10_), static_cast(v11_), + static_cast(v12_), static_cast(v13_), static_cast(v14_), + static_cast(v15_), static_cast(v16_), static_cast(v17_), + static_cast(v18_), static_cast(v19_), static_cast(v20_), + static_cast(v21_), static_cast(v22_), static_cast(v23_), + static_cast(v24_), static_cast(v25_), static_cast(v26_), + static_cast(v27_), static_cast(v28_), static_cast(v29_), + static_cast(v30_), static_cast(v31_), static_cast(v32_), + static_cast(v33_), static_cast(v34_), static_cast(v35_), + static_cast(v36_), static_cast(v37_), static_cast(v38_), + static_cast(v39_), static_cast(v40_), static_cast(v41_), + static_cast(v42_), static_cast(v43_), static_cast(v44_), + static_cast(v45_), static_cast(v46_), static_cast(v47_), + static_cast(v48_), static_cast(v49_), static_cast(v50_)}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray50& other); + + const T1 v1_; + const T2 v2_; + const T3 v3_; + const T4 v4_; + const T5 v5_; + const T6 v6_; + const T7 v7_; + const T8 v8_; + const T9 v9_; + const T10 v10_; + const T11 v11_; + const T12 v12_; + const T13 v13_; + const T14 v14_; + const T15 v15_; + const T16 v16_; + const T17 v17_; + const T18 v18_; + const T19 v19_; + const T20 v20_; + const T21 v21_; + const T22 v22_; + const T23 v23_; + const T24 v24_; + const T25 v25_; + const T26 v26_; + const T27 v27_; + const T28 v28_; + const T29 v29_; + const T30 v30_; + const T31 v31_; + const T32 v32_; + const T33 v33_; + const T34 v34_; + const T35 v35_; + const T36 v36_; + const T37 v37_; + const T38 v38_; + const T39 v39_; + const T40 v40_; + const T41 v41_; + const T42 v42_; + const T43 v43_; + const T44 v44_; + const T45 v45_; + const T46 v46_; + const T47 v47_; + const T48 v48_; + const T49 v49_; + const T50 v50_; +}; + +# if GTEST_HAS_COMBINE +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Generates values from the Cartesian product of values produced +// by the argument generators. +// +template +class CartesianProductGenerator2 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator2(const ParamGenerator& g1, + const ParamGenerator& g2) + : g1_(g1), g2_(g2) {} + virtual ~CartesianProductGenerator2() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current2_; + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + ParamType current_value_; + }; // class CartesianProductGenerator2::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator2& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; +}; // class CartesianProductGenerator2 + + +template +class CartesianProductGenerator3 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator3(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3) + : g1_(g1), g2_(g2), g3_(g3) {} + virtual ~CartesianProductGenerator3() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current3_; + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + ParamType current_value_; + }; // class CartesianProductGenerator3::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator3& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; +}; // class CartesianProductGenerator3 + + +template +class CartesianProductGenerator4 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator4(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} + virtual ~CartesianProductGenerator4() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current4_; + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + ParamType current_value_; + }; // class CartesianProductGenerator4::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator4& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; +}; // class CartesianProductGenerator4 + + +template +class CartesianProductGenerator5 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator5(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} + virtual ~CartesianProductGenerator5() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current5_; + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + ParamType current_value_; + }; // class CartesianProductGenerator5::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator5& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; +}; // class CartesianProductGenerator5 + + +template +class CartesianProductGenerator6 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator6(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5, + const ParamGenerator& g6) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} + virtual ~CartesianProductGenerator6() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5, + const ParamGenerator& g6, + const typename ParamGenerator::iterator& current6) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5), + begin6_(g6.begin()), end6_(g6.end()), current6_(current6) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current6_; + if (current6_ == end6_) { + current6_ = begin6_; + ++current5_; + } + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_ && + current6_ == typed_other->current6_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_), + begin6_(other.begin6_), + end6_(other.end6_), + current6_(other.current6_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_, *current6_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_ || + current6_ == end6_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + const typename ParamGenerator::iterator begin6_; + const typename ParamGenerator::iterator end6_; + typename ParamGenerator::iterator current6_; + ParamType current_value_; + }; // class CartesianProductGenerator6::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator6& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; + const ParamGenerator g6_; +}; // class CartesianProductGenerator6 + + +template +class CartesianProductGenerator7 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator7(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5, + const ParamGenerator& g6, const ParamGenerator& g7) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} + virtual ~CartesianProductGenerator7() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, + g7_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5, + const ParamGenerator& g6, + const typename ParamGenerator::iterator& current6, + const ParamGenerator& g7, + const typename ParamGenerator::iterator& current7) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5), + begin6_(g6.begin()), end6_(g6.end()), current6_(current6), + begin7_(g7.begin()), end7_(g7.end()), current7_(current7) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current7_; + if (current7_ == end7_) { + current7_ = begin7_; + ++current6_; + } + if (current6_ == end6_) { + current6_ = begin6_; + ++current5_; + } + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_ && + current6_ == typed_other->current6_ && + current7_ == typed_other->current7_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_), + begin6_(other.begin6_), + end6_(other.end6_), + current6_(other.current6_), + begin7_(other.begin7_), + end7_(other.end7_), + current7_(other.current7_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_, *current6_, *current7_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_ || + current6_ == end6_ || + current7_ == end7_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + const typename ParamGenerator::iterator begin6_; + const typename ParamGenerator::iterator end6_; + typename ParamGenerator::iterator current6_; + const typename ParamGenerator::iterator begin7_; + const typename ParamGenerator::iterator end7_; + typename ParamGenerator::iterator current7_; + ParamType current_value_; + }; // class CartesianProductGenerator7::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator7& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; + const ParamGenerator g6_; + const ParamGenerator g7_; +}; // class CartesianProductGenerator7 + + +template +class CartesianProductGenerator8 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator8(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5, + const ParamGenerator& g6, const ParamGenerator& g7, + const ParamGenerator& g8) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), + g8_(g8) {} + virtual ~CartesianProductGenerator8() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, + g7_.begin(), g8_, g8_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, + g8_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5, + const ParamGenerator& g6, + const typename ParamGenerator::iterator& current6, + const ParamGenerator& g7, + const typename ParamGenerator::iterator& current7, + const ParamGenerator& g8, + const typename ParamGenerator::iterator& current8) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5), + begin6_(g6.begin()), end6_(g6.end()), current6_(current6), + begin7_(g7.begin()), end7_(g7.end()), current7_(current7), + begin8_(g8.begin()), end8_(g8.end()), current8_(current8) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current8_; + if (current8_ == end8_) { + current8_ = begin8_; + ++current7_; + } + if (current7_ == end7_) { + current7_ = begin7_; + ++current6_; + } + if (current6_ == end6_) { + current6_ = begin6_; + ++current5_; + } + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_ && + current6_ == typed_other->current6_ && + current7_ == typed_other->current7_ && + current8_ == typed_other->current8_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_), + begin6_(other.begin6_), + end6_(other.end6_), + current6_(other.current6_), + begin7_(other.begin7_), + end7_(other.end7_), + current7_(other.current7_), + begin8_(other.begin8_), + end8_(other.end8_), + current8_(other.current8_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_, *current6_, *current7_, *current8_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_ || + current6_ == end6_ || + current7_ == end7_ || + current8_ == end8_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + const typename ParamGenerator::iterator begin6_; + const typename ParamGenerator::iterator end6_; + typename ParamGenerator::iterator current6_; + const typename ParamGenerator::iterator begin7_; + const typename ParamGenerator::iterator end7_; + typename ParamGenerator::iterator current7_; + const typename ParamGenerator::iterator begin8_; + const typename ParamGenerator::iterator end8_; + typename ParamGenerator::iterator current8_; + ParamType current_value_; + }; // class CartesianProductGenerator8::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator8& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; + const ParamGenerator g6_; + const ParamGenerator g7_; + const ParamGenerator g8_; +}; // class CartesianProductGenerator8 + + +template +class CartesianProductGenerator9 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator9(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5, + const ParamGenerator& g6, const ParamGenerator& g7, + const ParamGenerator& g8, const ParamGenerator& g9) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), + g9_(g9) {} + virtual ~CartesianProductGenerator9() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, + g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, + g8_.end(), g9_, g9_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5, + const ParamGenerator& g6, + const typename ParamGenerator::iterator& current6, + const ParamGenerator& g7, + const typename ParamGenerator::iterator& current7, + const ParamGenerator& g8, + const typename ParamGenerator::iterator& current8, + const ParamGenerator& g9, + const typename ParamGenerator::iterator& current9) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5), + begin6_(g6.begin()), end6_(g6.end()), current6_(current6), + begin7_(g7.begin()), end7_(g7.end()), current7_(current7), + begin8_(g8.begin()), end8_(g8.end()), current8_(current8), + begin9_(g9.begin()), end9_(g9.end()), current9_(current9) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current9_; + if (current9_ == end9_) { + current9_ = begin9_; + ++current8_; + } + if (current8_ == end8_) { + current8_ = begin8_; + ++current7_; + } + if (current7_ == end7_) { + current7_ = begin7_; + ++current6_; + } + if (current6_ == end6_) { + current6_ = begin6_; + ++current5_; + } + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_ && + current6_ == typed_other->current6_ && + current7_ == typed_other->current7_ && + current8_ == typed_other->current8_ && + current9_ == typed_other->current9_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_), + begin6_(other.begin6_), + end6_(other.end6_), + current6_(other.current6_), + begin7_(other.begin7_), + end7_(other.end7_), + current7_(other.current7_), + begin8_(other.begin8_), + end8_(other.end8_), + current8_(other.current8_), + begin9_(other.begin9_), + end9_(other.end9_), + current9_(other.current9_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_, *current6_, *current7_, *current8_, + *current9_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_ || + current6_ == end6_ || + current7_ == end7_ || + current8_ == end8_ || + current9_ == end9_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + const typename ParamGenerator::iterator begin6_; + const typename ParamGenerator::iterator end6_; + typename ParamGenerator::iterator current6_; + const typename ParamGenerator::iterator begin7_; + const typename ParamGenerator::iterator end7_; + typename ParamGenerator::iterator current7_; + const typename ParamGenerator::iterator begin8_; + const typename ParamGenerator::iterator end8_; + typename ParamGenerator::iterator current8_; + const typename ParamGenerator::iterator begin9_; + const typename ParamGenerator::iterator end9_; + typename ParamGenerator::iterator current9_; + ParamType current_value_; + }; // class CartesianProductGenerator9::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator9& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; + const ParamGenerator g6_; + const ParamGenerator g7_; + const ParamGenerator g8_; + const ParamGenerator g9_; +}; // class CartesianProductGenerator9 + + +template +class CartesianProductGenerator10 + : public ParamGeneratorInterface< ::std::tr1::tuple > { + public: + typedef ::std::tr1::tuple ParamType; + + CartesianProductGenerator10(const ParamGenerator& g1, + const ParamGenerator& g2, const ParamGenerator& g3, + const ParamGenerator& g4, const ParamGenerator& g5, + const ParamGenerator& g6, const ParamGenerator& g7, + const ParamGenerator& g8, const ParamGenerator& g9, + const ParamGenerator& g10) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), + g9_(g9), g10_(g10) {} + virtual ~CartesianProductGenerator10() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, + g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, + g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin(), g10_, g10_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), + g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, + g8_.end(), g9_, g9_.end(), g10_, g10_.end()); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + const ParamGenerator& g1, + const typename ParamGenerator::iterator& current1, + const ParamGenerator& g2, + const typename ParamGenerator::iterator& current2, + const ParamGenerator& g3, + const typename ParamGenerator::iterator& current3, + const ParamGenerator& g4, + const typename ParamGenerator::iterator& current4, + const ParamGenerator& g5, + const typename ParamGenerator::iterator& current5, + const ParamGenerator& g6, + const typename ParamGenerator::iterator& current6, + const ParamGenerator& g7, + const typename ParamGenerator::iterator& current7, + const ParamGenerator& g8, + const typename ParamGenerator::iterator& current8, + const ParamGenerator& g9, + const typename ParamGenerator::iterator& current9, + const ParamGenerator& g10, + const typename ParamGenerator::iterator& current10) + : base_(base), + begin1_(g1.begin()), end1_(g1.end()), current1_(current1), + begin2_(g2.begin()), end2_(g2.end()), current2_(current2), + begin3_(g3.begin()), end3_(g3.end()), current3_(current3), + begin4_(g4.begin()), end4_(g4.end()), current4_(current4), + begin5_(g5.begin()), end5_(g5.end()), current5_(current5), + begin6_(g6.begin()), end6_(g6.end()), current6_(current6), + begin7_(g7.begin()), end7_(g7.end()), current7_(current7), + begin8_(g8.begin()), end8_(g8.end()), current8_(current8), + begin9_(g9.begin()), end9_(g9.end()), current9_(current9), + begin10_(g10.begin()), end10_(g10.end()), current10_(current10) { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current10_; + if (current10_ == end10_) { + current10_ = begin10_; + ++current9_; + } + if (current9_ == end9_) { + current9_ = begin9_; + ++current8_; + } + if (current8_ == end8_) { + current8_ = begin8_; + ++current7_; + } + if (current7_ == end7_) { + current7_ = begin7_; + ++current6_; + } + if (current6_ == end6_) { + current6_ = begin6_; + ++current5_; + } + if (current5_ == end5_) { + current5_ = begin5_; + ++current4_; + } + if (current4_ == end4_) { + current4_ = begin4_; + ++current3_; + } + if (current3_ == end3_) { + current3_ = begin3_; + ++current2_; + } + if (current2_ == end2_) { + current2_ = begin2_; + ++current1_; + } + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ( + current1_ == typed_other->current1_ && + current2_ == typed_other->current2_ && + current3_ == typed_other->current3_ && + current4_ == typed_other->current4_ && + current5_ == typed_other->current5_ && + current6_ == typed_other->current6_ && + current7_ == typed_other->current7_ && + current8_ == typed_other->current8_ && + current9_ == typed_other->current9_ && + current10_ == typed_other->current10_); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), + begin1_(other.begin1_), + end1_(other.end1_), + current1_(other.current1_), + begin2_(other.begin2_), + end2_(other.end2_), + current2_(other.current2_), + begin3_(other.begin3_), + end3_(other.end3_), + current3_(other.current3_), + begin4_(other.begin4_), + end4_(other.end4_), + current4_(other.current4_), + begin5_(other.begin5_), + end5_(other.end5_), + current5_(other.current5_), + begin6_(other.begin6_), + end6_(other.end6_), + current6_(other.current6_), + begin7_(other.begin7_), + end7_(other.end7_), + current7_(other.current7_), + begin8_(other.begin8_), + end8_(other.end8_), + current8_(other.current8_), + begin9_(other.begin9_), + end9_(other.end9_), + current9_(other.current9_), + begin10_(other.begin10_), + end10_(other.end10_), + current10_(other.current10_) { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType(*current1_, *current2_, *current3_, + *current4_, *current5_, *current6_, *current7_, *current8_, + *current9_, *current10_); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return + current1_ == end1_ || + current2_ == end2_ || + current3_ == end3_ || + current4_ == end4_ || + current5_ == end5_ || + current6_ == end6_ || + current7_ == end7_ || + current8_ == end8_ || + current9_ == end9_ || + current10_ == end10_; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. + const typename ParamGenerator::iterator begin1_; + const typename ParamGenerator::iterator end1_; + typename ParamGenerator::iterator current1_; + const typename ParamGenerator::iterator begin2_; + const typename ParamGenerator::iterator end2_; + typename ParamGenerator::iterator current2_; + const typename ParamGenerator::iterator begin3_; + const typename ParamGenerator::iterator end3_; + typename ParamGenerator::iterator current3_; + const typename ParamGenerator::iterator begin4_; + const typename ParamGenerator::iterator end4_; + typename ParamGenerator::iterator current4_; + const typename ParamGenerator::iterator begin5_; + const typename ParamGenerator::iterator end5_; + typename ParamGenerator::iterator current5_; + const typename ParamGenerator::iterator begin6_; + const typename ParamGenerator::iterator end6_; + typename ParamGenerator::iterator current6_; + const typename ParamGenerator::iterator begin7_; + const typename ParamGenerator::iterator end7_; + typename ParamGenerator::iterator current7_; + const typename ParamGenerator::iterator begin8_; + const typename ParamGenerator::iterator end8_; + typename ParamGenerator::iterator current8_; + const typename ParamGenerator::iterator begin9_; + const typename ParamGenerator::iterator end9_; + typename ParamGenerator::iterator current9_; + const typename ParamGenerator::iterator begin10_; + const typename ParamGenerator::iterator end10_; + typename ParamGenerator::iterator current10_; + ParamType current_value_; + }; // class CartesianProductGenerator10::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator10& other); + + const ParamGenerator g1_; + const ParamGenerator g2_; + const ParamGenerator g3_; + const ParamGenerator g4_; + const ParamGenerator g5_; + const ParamGenerator g6_; + const ParamGenerator g7_; + const ParamGenerator g8_; + const ParamGenerator g9_; + const ParamGenerator g10_; +}; // class CartesianProductGenerator10 + + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Helper classes providing Combine() with polymorphic features. They allow +// casting CartesianProductGeneratorN to ParamGenerator if T is +// convertible to U. +// +template +class CartesianProductHolder2 { + public: +CartesianProductHolder2(const Generator1& g1, const Generator2& g2) + : g1_(g1), g2_(g2) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator2( + static_cast >(g1_), + static_cast >(g2_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder2& other); + + const Generator1 g1_; + const Generator2 g2_; +}; // class CartesianProductHolder2 + +template +class CartesianProductHolder3 { + public: +CartesianProductHolder3(const Generator1& g1, const Generator2& g2, + const Generator3& g3) + : g1_(g1), g2_(g2), g3_(g3) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator3( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder3& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; +}; // class CartesianProductHolder3 + +template +class CartesianProductHolder4 { + public: +CartesianProductHolder4(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator4( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder4& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; +}; // class CartesianProductHolder4 + +template +class CartesianProductHolder5 { + public: +CartesianProductHolder5(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator5( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder5& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; +}; // class CartesianProductHolder5 + +template +class CartesianProductHolder6 { + public: +CartesianProductHolder6(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5, + const Generator6& g6) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator6( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_), + static_cast >(g6_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder6& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; + const Generator6 g6_; +}; // class CartesianProductHolder6 + +template +class CartesianProductHolder7 { + public: +CartesianProductHolder7(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5, + const Generator6& g6, const Generator7& g7) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator7( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_), + static_cast >(g6_), + static_cast >(g7_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder7& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; + const Generator6 g6_; + const Generator7 g7_; +}; // class CartesianProductHolder7 + +template +class CartesianProductHolder8 { + public: +CartesianProductHolder8(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5, + const Generator6& g6, const Generator7& g7, const Generator8& g8) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), + g8_(g8) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator8( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_), + static_cast >(g6_), + static_cast >(g7_), + static_cast >(g8_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder8& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; + const Generator6 g6_; + const Generator7 g7_; + const Generator8 g8_; +}; // class CartesianProductHolder8 + +template +class CartesianProductHolder9 { + public: +CartesianProductHolder9(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5, + const Generator6& g6, const Generator7& g7, const Generator8& g8, + const Generator9& g9) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), + g9_(g9) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator9( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_), + static_cast >(g6_), + static_cast >(g7_), + static_cast >(g8_), + static_cast >(g9_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder9& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; + const Generator6 g6_; + const Generator7 g7_; + const Generator8 g8_; + const Generator9 g9_; +}; // class CartesianProductHolder9 + +template +class CartesianProductHolder10 { + public: +CartesianProductHolder10(const Generator1& g1, const Generator2& g2, + const Generator3& g3, const Generator4& g4, const Generator5& g5, + const Generator6& g6, const Generator7& g7, const Generator8& g8, + const Generator9& g9, const Generator10& g10) + : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), + g9_(g9), g10_(g10) {} + template + operator ParamGenerator< ::std::tr1::tuple >() const { + return ParamGenerator< ::std::tr1::tuple >( + new CartesianProductGenerator10( + static_cast >(g1_), + static_cast >(g2_), + static_cast >(g3_), + static_cast >(g4_), + static_cast >(g5_), + static_cast >(g6_), + static_cast >(g7_), + static_cast >(g8_), + static_cast >(g9_), + static_cast >(g10_))); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder10& other); + + const Generator1 g1_; + const Generator2 g2_; + const Generator3 g3_; + const Generator4 g4_; + const Generator5 g5_; + const Generator6 g6_; + const Generator7 g7_; + const Generator8 g8_; + const Generator9 g9_; + const Generator10 g10_; +}; // class CartesianProductHolder10 + +# endif // GTEST_HAS_COMBINE + +} // namespace internal +} // namespace testing + +#endif // GTEST_HAS_PARAM_TEST + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump new file mode 100644 index 000000000..009206fd3 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump @@ -0,0 +1,301 @@ +$$ -*- mode: c++; -*- +$var n = 50 $$ Maximum length of Values arguments we want to support. +$var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) + +// Type and function utilities for implementing parameterized tests. +// This file is generated by a SCRIPT. DO NOT EDIT BY HAND! +// +// Currently Google Test supports at most $n arguments in Values, +// and at most $maxtuple arguments in Combine. Please contact +// googletestframework@googlegroups.com if you need more. +// Please note that the number of arguments to Combine is limited +// by the maximum arity of the implementation of tr1::tuple which is +// currently set at $maxtuple. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ + +// scripts/fuse_gtest.py depends on gtest's own header being #included +// *unconditionally*. Therefore these #includes cannot be moved +// inside #if GTEST_HAS_PARAM_TEST. +#include "gtest/internal/gtest-param-util.h" +#include "gtest/internal/gtest-port.h" + +#if GTEST_HAS_PARAM_TEST + +namespace testing { + +// Forward declarations of ValuesIn(), which is implemented in +// include/gtest/gtest-param-test.h. +template +internal::ParamGenerator< + typename ::testing::internal::IteratorTraits::value_type> +ValuesIn(ForwardIterator begin, ForwardIterator end); + +template +internal::ParamGenerator ValuesIn(const T (&array)[N]); + +template +internal::ParamGenerator ValuesIn( + const Container& container); + +namespace internal { + +// Used in the Values() function to provide polymorphic capabilities. +template +class ValueArray1 { + public: + explicit ValueArray1(T1 v1) : v1_(v1) {} + + template + operator ParamGenerator() const { return ValuesIn(&v1_, &v1_ + 1); } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray1& other); + + const T1 v1_; +}; + +$range i 2..n +$for i [[ +$range j 1..i + +template <$for j, [[typename T$j]]> +class ValueArray$i { + public: + ValueArray$i($for j, [[T$j v$j]]) : $for j, [[v$(j)_(v$j)]] {} + + template + operator ParamGenerator() const { + const T array[] = {$for j, [[static_cast(v$(j)_)]]}; + return ValuesIn(array); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const ValueArray$i& other); + +$for j [[ + + const T$j v$(j)_; +]] + +}; + +]] + +# if GTEST_HAS_COMBINE +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Generates values from the Cartesian product of values produced +// by the argument generators. +// +$range i 2..maxtuple +$for i [[ +$range j 1..i +$range k 2..i + +template <$for j, [[typename T$j]]> +class CartesianProductGenerator$i + : public ParamGeneratorInterface< ::std::tr1::tuple<$for j, [[T$j]]> > { + public: + typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType; + + CartesianProductGenerator$i($for j, [[const ParamGenerator& g$j]]) + : $for j, [[g$(j)_(g$j)]] {} + virtual ~CartesianProductGenerator$i() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, $for j, [[g$(j)_, g$(j)_.begin()]]); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, $for j, [[g$(j)_, g$(j)_.end()]]); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, $for j, [[ + + const ParamGenerator& g$j, + const typename ParamGenerator::iterator& current$(j)]]) + : base_(base), +$for j, [[ + + begin$(j)_(g$j.begin()), end$(j)_(g$j.end()), current$(j)_(current$j) +]] { + ComputeCurrentValue(); + } + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + // Advance should not be called on beyond-of-range iterators + // so no component iterators must be beyond end of range, either. + virtual void Advance() { + assert(!AtEnd()); + ++current$(i)_; + +$for k [[ + if (current$(i+2-k)_ == end$(i+2-k)_) { + current$(i+2-k)_ = begin$(i+2-k)_; + ++current$(i+2-k-1)_; + } + +]] + ComputeCurrentValue(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const ParamType* Current() const { return ¤t_value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const Iterator* typed_other = + CheckedDowncastToActualType(&other); + // We must report iterators equal if they both point beyond their + // respective ranges. That can happen in a variety of fashions, + // so we have to consult AtEnd(). + return (AtEnd() && typed_other->AtEnd()) || + ($for j && [[ + + current$(j)_ == typed_other->current$(j)_ +]]); + } + + private: + Iterator(const Iterator& other) + : base_(other.base_), $for j, [[ + + begin$(j)_(other.begin$(j)_), + end$(j)_(other.end$(j)_), + current$(j)_(other.current$(j)_) +]] { + ComputeCurrentValue(); + } + + void ComputeCurrentValue() { + if (!AtEnd()) + current_value_ = ParamType($for j, [[*current$(j)_]]); + } + bool AtEnd() const { + // We must report iterator past the end of the range when either of the + // component iterators has reached the end of its range. + return +$for j || [[ + + current$(j)_ == end$(j)_ +]]; + } + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. + // current[i]_ is the actual traversing iterator. +$for j [[ + + const typename ParamGenerator::iterator begin$(j)_; + const typename ParamGenerator::iterator end$(j)_; + typename ParamGenerator::iterator current$(j)_; +]] + + ParamType current_value_; + }; // class CartesianProductGenerator$i::Iterator + + // No implementation - assignment is unsupported. + void operator=(const CartesianProductGenerator$i& other); + + +$for j [[ + const ParamGenerator g$(j)_; + +]] +}; // class CartesianProductGenerator$i + + +]] + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Helper classes providing Combine() with polymorphic features. They allow +// casting CartesianProductGeneratorN to ParamGenerator if T is +// convertible to U. +// +$range i 2..maxtuple +$for i [[ +$range j 1..i + +template <$for j, [[class Generator$j]]> +class CartesianProductHolder$i { + public: +CartesianProductHolder$i($for j, [[const Generator$j& g$j]]) + : $for j, [[g$(j)_(g$j)]] {} + template <$for j, [[typename T$j]]> + operator ParamGenerator< ::std::tr1::tuple<$for j, [[T$j]]> >() const { + return ParamGenerator< ::std::tr1::tuple<$for j, [[T$j]]> >( + new CartesianProductGenerator$i<$for j, [[T$j]]>( +$for j,[[ + + static_cast >(g$(j)_) +]])); + } + + private: + // No implementation - assignment is unsupported. + void operator=(const CartesianProductHolder$i& other); + + +$for j [[ + const Generator$j g$(j)_; + +]] +}; // class CartesianProductHolder$i + +]] + +# endif // GTEST_HAS_COMBINE + +} // namespace internal +} // namespace testing + +#endif // GTEST_HAS_PARAM_TEST + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util.h new file mode 100644 index 000000000..d5e1028b0 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-param-util.h @@ -0,0 +1,619 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) + +// Type and function utilities for implementing parameterized tests. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ + +#include +#include +#include + +// scripts/fuse_gtest.py depends on gtest's own header being #included +// *unconditionally*. Therefore these #includes cannot be moved +// inside #if GTEST_HAS_PARAM_TEST. +#include "gtest/internal/gtest-internal.h" +#include "gtest/internal/gtest-linked_ptr.h" +#include "gtest/internal/gtest-port.h" +#include "gtest/gtest-printers.h" + +#if GTEST_HAS_PARAM_TEST + +namespace testing { +namespace internal { + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Outputs a message explaining invalid registration of different +// fixture class for the same test case. This may happen when +// TEST_P macro is used to define two tests with the same name +// but in different namespaces. +GTEST_API_ void ReportInvalidTestCaseType(const char* test_case_name, + const char* file, int line); + +template class ParamGeneratorInterface; +template class ParamGenerator; + +// Interface for iterating over elements provided by an implementation +// of ParamGeneratorInterface. +template +class ParamIteratorInterface { + public: + virtual ~ParamIteratorInterface() {} + // A pointer to the base generator instance. + // Used only for the purposes of iterator comparison + // to make sure that two iterators belong to the same generator. + virtual const ParamGeneratorInterface* BaseGenerator() const = 0; + // Advances iterator to point to the next element + // provided by the generator. The caller is responsible + // for not calling Advance() on an iterator equal to + // BaseGenerator()->End(). + virtual void Advance() = 0; + // Clones the iterator object. Used for implementing copy semantics + // of ParamIterator. + virtual ParamIteratorInterface* Clone() const = 0; + // Dereferences the current iterator and provides (read-only) access + // to the pointed value. It is the caller's responsibility not to call + // Current() on an iterator equal to BaseGenerator()->End(). + // Used for implementing ParamGenerator::operator*(). + virtual const T* Current() const = 0; + // Determines whether the given iterator and other point to the same + // element in the sequence generated by the generator. + // Used for implementing ParamGenerator::operator==(). + virtual bool Equals(const ParamIteratorInterface& other) const = 0; +}; + +// Class iterating over elements provided by an implementation of +// ParamGeneratorInterface. It wraps ParamIteratorInterface +// and implements the const forward iterator concept. +template +class ParamIterator { + public: + typedef T value_type; + typedef const T& reference; + typedef ptrdiff_t difference_type; + + // ParamIterator assumes ownership of the impl_ pointer. + ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} + ParamIterator& operator=(const ParamIterator& other) { + if (this != &other) + impl_.reset(other.impl_->Clone()); + return *this; + } + + const T& operator*() const { return *impl_->Current(); } + const T* operator->() const { return impl_->Current(); } + // Prefix version of operator++. + ParamIterator& operator++() { + impl_->Advance(); + return *this; + } + // Postfix version of operator++. + ParamIterator operator++(int /*unused*/) { + ParamIteratorInterface* clone = impl_->Clone(); + impl_->Advance(); + return ParamIterator(clone); + } + bool operator==(const ParamIterator& other) const { + return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_); + } + bool operator!=(const ParamIterator& other) const { + return !(*this == other); + } + + private: + friend class ParamGenerator; + explicit ParamIterator(ParamIteratorInterface* impl) : impl_(impl) {} + scoped_ptr > impl_; +}; + +// ParamGeneratorInterface is the binary interface to access generators +// defined in other translation units. +template +class ParamGeneratorInterface { + public: + typedef T ParamType; + + virtual ~ParamGeneratorInterface() {} + + // Generator interface definition + virtual ParamIteratorInterface* Begin() const = 0; + virtual ParamIteratorInterface* End() const = 0; +}; + +// Wraps ParamGeneratorInterface and provides general generator syntax +// compatible with the STL Container concept. +// This class implements copy initialization semantics and the contained +// ParamGeneratorInterface instance is shared among all copies +// of the original object. This is possible because that instance is immutable. +template +class ParamGenerator { + public: + typedef ParamIterator iterator; + + explicit ParamGenerator(ParamGeneratorInterface* impl) : impl_(impl) {} + ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {} + + ParamGenerator& operator=(const ParamGenerator& other) { + impl_ = other.impl_; + return *this; + } + + iterator begin() const { return iterator(impl_->Begin()); } + iterator end() const { return iterator(impl_->End()); } + + private: + linked_ptr > impl_; +}; + +// Generates values from a range of two comparable values. Can be used to +// generate sequences of user-defined types that implement operator+() and +// operator<(). +// This class is used in the Range() function. +template +class RangeGenerator : public ParamGeneratorInterface { + public: + RangeGenerator(T begin, T end, IncrementT step) + : begin_(begin), end_(end), + step_(step), end_index_(CalculateEndIndex(begin, end, step)) {} + virtual ~RangeGenerator() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, begin_, 0, step_); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, end_, end_index_, step_); + } + + private: + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, T value, int index, + IncrementT step) + : base_(base), value_(value), index_(index), step_(step) {} + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + virtual void Advance() { + value_ = value_ + step_; + index_++; + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + virtual const T* Current() const { return &value_; } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + const int other_index = + CheckedDowncastToActualType(&other)->index_; + return index_ == other_index; + } + + private: + Iterator(const Iterator& other) + : ParamIteratorInterface(), + base_(other.base_), value_(other.value_), index_(other.index_), + step_(other.step_) {} + + // No implementation - assignment is unsupported. + void operator=(const Iterator& other); + + const ParamGeneratorInterface* const base_; + T value_; + int index_; + const IncrementT step_; + }; // class RangeGenerator::Iterator + + static int CalculateEndIndex(const T& begin, + const T& end, + const IncrementT& step) { + int end_index = 0; + for (T i = begin; i < end; i = i + step) + end_index++; + return end_index; + } + + // No implementation - assignment is unsupported. + void operator=(const RangeGenerator& other); + + const T begin_; + const T end_; + const IncrementT step_; + // The index for the end() iterator. All the elements in the generated + // sequence are indexed (0-based) to aid iterator comparison. + const int end_index_; +}; // class RangeGenerator + + +// Generates values from a pair of STL-style iterators. Used in the +// ValuesIn() function. The elements are copied from the source range +// since the source can be located on the stack, and the generator +// is likely to persist beyond that stack frame. +template +class ValuesInIteratorRangeGenerator : public ParamGeneratorInterface { + public: + template + ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end) + : container_(begin, end) {} + virtual ~ValuesInIteratorRangeGenerator() {} + + virtual ParamIteratorInterface* Begin() const { + return new Iterator(this, container_.begin()); + } + virtual ParamIteratorInterface* End() const { + return new Iterator(this, container_.end()); + } + + private: + typedef typename ::std::vector ContainerType; + + class Iterator : public ParamIteratorInterface { + public: + Iterator(const ParamGeneratorInterface* base, + typename ContainerType::const_iterator iterator) + : base_(base), iterator_(iterator) {} + virtual ~Iterator() {} + + virtual const ParamGeneratorInterface* BaseGenerator() const { + return base_; + } + virtual void Advance() { + ++iterator_; + value_.reset(); + } + virtual ParamIteratorInterface* Clone() const { + return new Iterator(*this); + } + // We need to use cached value referenced by iterator_ because *iterator_ + // can return a temporary object (and of type other then T), so just + // having "return &*iterator_;" doesn't work. + // value_ is updated here and not in Advance() because Advance() + // can advance iterator_ beyond the end of the range, and we cannot + // detect that fact. The client code, on the other hand, is + // responsible for not calling Current() on an out-of-range iterator. + virtual const T* Current() const { + if (value_.get() == NULL) + value_.reset(new T(*iterator_)); + return value_.get(); + } + virtual bool Equals(const ParamIteratorInterface& other) const { + // Having the same base generator guarantees that the other + // iterator is of the same type and we can downcast. + GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) + << "The program attempted to compare iterators " + << "from different generators." << std::endl; + return iterator_ == + CheckedDowncastToActualType(&other)->iterator_; + } + + private: + Iterator(const Iterator& other) + // The explicit constructor call suppresses a false warning + // emitted by gcc when supplied with the -Wextra option. + : ParamIteratorInterface(), + base_(other.base_), + iterator_(other.iterator_) {} + + const ParamGeneratorInterface* const base_; + typename ContainerType::const_iterator iterator_; + // A cached value of *iterator_. We keep it here to allow access by + // pointer in the wrapping iterator's operator->(). + // value_ needs to be mutable to be accessed in Current(). + // Use of scoped_ptr helps manage cached value's lifetime, + // which is bound by the lifespan of the iterator itself. + mutable scoped_ptr value_; + }; // class ValuesInIteratorRangeGenerator::Iterator + + // No implementation - assignment is unsupported. + void operator=(const ValuesInIteratorRangeGenerator& other); + + const ContainerType container_; +}; // class ValuesInIteratorRangeGenerator + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Stores a parameter value and later creates tests parameterized with that +// value. +template +class ParameterizedTestFactory : public TestFactoryBase { + public: + typedef typename TestClass::ParamType ParamType; + explicit ParameterizedTestFactory(ParamType parameter) : + parameter_(parameter) {} + virtual Test* CreateTest() { + TestClass::SetParam(¶meter_); + return new TestClass(); + } + + private: + const ParamType parameter_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory); +}; + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// TestMetaFactoryBase is a base class for meta-factories that create +// test factories for passing into MakeAndRegisterTestInfo function. +template +class TestMetaFactoryBase { + public: + virtual ~TestMetaFactoryBase() {} + + virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0; +}; + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// TestMetaFactory creates test factories for passing into +// MakeAndRegisterTestInfo function. Since MakeAndRegisterTestInfo receives +// ownership of test factory pointer, same factory object cannot be passed +// into that method twice. But ParameterizedTestCaseInfo is going to call +// it for each Test/Parameter value combination. Thus it needs meta factory +// creator class. +template +class TestMetaFactory + : public TestMetaFactoryBase { + public: + typedef typename TestCase::ParamType ParamType; + + TestMetaFactory() {} + + virtual TestFactoryBase* CreateTestFactory(ParamType parameter) { + return new ParameterizedTestFactory(parameter); + } + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(TestMetaFactory); +}; + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// ParameterizedTestCaseInfoBase is a generic interface +// to ParameterizedTestCaseInfo classes. ParameterizedTestCaseInfoBase +// accumulates test information provided by TEST_P macro invocations +// and generators provided by INSTANTIATE_TEST_CASE_P macro invocations +// and uses that information to register all resulting test instances +// in RegisterTests method. The ParameterizeTestCaseRegistry class holds +// a collection of pointers to the ParameterizedTestCaseInfo objects +// and calls RegisterTests() on each of them when asked. +class ParameterizedTestCaseInfoBase { + public: + virtual ~ParameterizedTestCaseInfoBase() {} + + // Base part of test case name for display purposes. + virtual const string& GetTestCaseName() const = 0; + // Test case id to verify identity. + virtual TypeId GetTestCaseTypeId() const = 0; + // UnitTest class invokes this method to register tests in this + // test case right before running them in RUN_ALL_TESTS macro. + // This method should not be called more then once on any single + // instance of a ParameterizedTestCaseInfoBase derived class. + virtual void RegisterTests() = 0; + + protected: + ParameterizedTestCaseInfoBase() {} + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfoBase); +}; + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// ParameterizedTestCaseInfo accumulates tests obtained from TEST_P +// macro invocations for a particular test case and generators +// obtained from INSTANTIATE_TEST_CASE_P macro invocations for that +// test case. It registers tests with all values generated by all +// generators when asked. +template +class ParameterizedTestCaseInfo : public ParameterizedTestCaseInfoBase { + public: + // ParamType and GeneratorCreationFunc are private types but are required + // for declarations of public methods AddTestPattern() and + // AddTestCaseInstantiation(). + typedef typename TestCase::ParamType ParamType; + // A function that returns an instance of appropriate generator type. + typedef ParamGenerator(GeneratorCreationFunc)(); + + explicit ParameterizedTestCaseInfo(const char* name) + : test_case_name_(name) {} + + // Test case base name for display purposes. + virtual const string& GetTestCaseName() const { return test_case_name_; } + // Test case id to verify identity. + virtual TypeId GetTestCaseTypeId() const { return GetTypeId(); } + // TEST_P macro uses AddTestPattern() to record information + // about a single test in a LocalTestInfo structure. + // test_case_name is the base name of the test case (without invocation + // prefix). test_base_name is the name of an individual test without + // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is + // test case base name and DoBar is test base name. + void AddTestPattern(const char* test_case_name, + const char* test_base_name, + TestMetaFactoryBase* meta_factory) { + tests_.push_back(linked_ptr(new TestInfo(test_case_name, + test_base_name, + meta_factory))); + } + // INSTANTIATE_TEST_CASE_P macro uses AddGenerator() to record information + // about a generator. + int AddTestCaseInstantiation(const string& instantiation_name, + GeneratorCreationFunc* func, + const char* /* file */, + int /* line */) { + instantiations_.push_back(::std::make_pair(instantiation_name, func)); + return 0; // Return value used only to run this method in namespace scope. + } + // UnitTest class invokes this method to register tests in this test case + // test cases right before running tests in RUN_ALL_TESTS macro. + // This method should not be called more then once on any single + // instance of a ParameterizedTestCaseInfoBase derived class. + // UnitTest has a guard to prevent from calling this method more then once. + virtual void RegisterTests() { + for (typename TestInfoContainer::iterator test_it = tests_.begin(); + test_it != tests_.end(); ++test_it) { + linked_ptr test_info = *test_it; + for (typename InstantiationContainer::iterator gen_it = + instantiations_.begin(); gen_it != instantiations_.end(); + ++gen_it) { + const string& instantiation_name = gen_it->first; + ParamGenerator generator((*gen_it->second)()); + + string test_case_name; + if ( !instantiation_name.empty() ) + test_case_name = instantiation_name + "/"; + test_case_name += test_info->test_case_base_name; + + int i = 0; + for (typename ParamGenerator::iterator param_it = + generator.begin(); + param_it != generator.end(); ++param_it, ++i) { + Message test_name_stream; + test_name_stream << test_info->test_base_name << "/" << i; + MakeAndRegisterTestInfo( + test_case_name.c_str(), + test_name_stream.GetString().c_str(), + NULL, // No type parameter. + PrintToString(*param_it).c_str(), + GetTestCaseTypeId(), + TestCase::SetUpTestCase, + TestCase::TearDownTestCase, + test_info->test_meta_factory->CreateTestFactory(*param_it)); + } // for param_it + } // for gen_it + } // for test_it + } // RegisterTests + + private: + // LocalTestInfo structure keeps information about a single test registered + // with TEST_P macro. + struct TestInfo { + TestInfo(const char* a_test_case_base_name, + const char* a_test_base_name, + TestMetaFactoryBase* a_test_meta_factory) : + test_case_base_name(a_test_case_base_name), + test_base_name(a_test_base_name), + test_meta_factory(a_test_meta_factory) {} + + const string test_case_base_name; + const string test_base_name; + const scoped_ptr > test_meta_factory; + }; + typedef ::std::vector > TestInfoContainer; + // Keeps pairs of + // received from INSTANTIATE_TEST_CASE_P macros. + typedef ::std::vector > + InstantiationContainer; + + const string test_case_name_; + TestInfoContainer tests_; + InstantiationContainer instantiations_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseInfo); +}; // class ParameterizedTestCaseInfo + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// ParameterizedTestCaseRegistry contains a map of ParameterizedTestCaseInfoBase +// classes accessed by test case names. TEST_P and INSTANTIATE_TEST_CASE_P +// macros use it to locate their corresponding ParameterizedTestCaseInfo +// descriptors. +class ParameterizedTestCaseRegistry { + public: + ParameterizedTestCaseRegistry() {} + ~ParameterizedTestCaseRegistry() { + for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); + it != test_case_infos_.end(); ++it) { + delete *it; + } + } + + // Looks up or creates and returns a structure containing information about + // tests and instantiations of a particular test case. + template + ParameterizedTestCaseInfo* GetTestCasePatternHolder( + const char* test_case_name, + const char* file, + int line) { + ParameterizedTestCaseInfo* typed_test_info = NULL; + for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); + it != test_case_infos_.end(); ++it) { + if ((*it)->GetTestCaseName() == test_case_name) { + if ((*it)->GetTestCaseTypeId() != GetTypeId()) { + // Complain about incorrect usage of Google Test facilities + // and terminate the program since we cannot guaranty correct + // test case setup and tear-down in this case. + ReportInvalidTestCaseType(test_case_name, file, line); + posix::Abort(); + } else { + // At this point we are sure that the object we found is of the same + // type we are looking for, so we downcast it to that type + // without further checks. + typed_test_info = CheckedDowncastToActualType< + ParameterizedTestCaseInfo >(*it); + } + break; + } + } + if (typed_test_info == NULL) { + typed_test_info = new ParameterizedTestCaseInfo(test_case_name); + test_case_infos_.push_back(typed_test_info); + } + return typed_test_info; + } + void RegisterTests() { + for (TestCaseInfoContainer::iterator it = test_case_infos_.begin(); + it != test_case_infos_.end(); ++it) { + (*it)->RegisterTests(); + } + } + + private: + typedef ::std::vector TestCaseInfoContainer; + + TestCaseInfoContainer test_case_infos_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestCaseRegistry); +}; + +} // namespace internal +} // namespace testing + +#endif // GTEST_HAS_PARAM_TEST + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-port.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-port.h new file mode 100644 index 000000000..dc4fe0cb6 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-port.h @@ -0,0 +1,1947 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: wan@google.com (Zhanyong Wan) +// +// Low-level types and utilities for porting Google Test to various +// platforms. They are subject to change without notice. DO NOT USE +// THEM IN USER CODE. +// +// This file is fundamental to Google Test. All other Google Test source +// files are expected to #include this. Therefore, it cannot #include +// any other Google Test header. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ + +// The user can define the following macros in the build script to +// control Google Test's behavior. If the user doesn't define a macro +// in this list, Google Test will define it. +// +// GTEST_HAS_CLONE - Define it to 1/0 to indicate that clone(2) +// is/isn't available. +// GTEST_HAS_EXCEPTIONS - Define it to 1/0 to indicate that exceptions +// are enabled. +// GTEST_HAS_GLOBAL_STRING - Define it to 1/0 to indicate that ::string +// is/isn't available (some systems define +// ::string, which is different to std::string). +// GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::string +// is/isn't available (some systems define +// ::wstring, which is different to std::wstring). +// GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular +// expressions are/aren't available. +// GTEST_HAS_PTHREAD - Define it to 1/0 to indicate that +// is/isn't available. +// GTEST_HAS_RTTI - Define it to 1/0 to indicate that RTTI is/isn't +// enabled. +// GTEST_HAS_STD_WSTRING - Define it to 1/0 to indicate that +// std::wstring does/doesn't work (Google Test can +// be used where std::wstring is unavailable). +// GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple +// is/isn't available. +// GTEST_HAS_SEH - Define it to 1/0 to indicate whether the +// compiler supports Microsoft's "Structured +// Exception Handling". +// GTEST_HAS_STREAM_REDIRECTION +// - Define it to 1/0 to indicate whether the +// platform supports I/O stream redirection using +// dup() and dup2(). +// GTEST_USE_OWN_TR1_TUPLE - Define it to 1/0 to indicate whether Google +// Test's own tr1 tuple implementation should be +// used. Unused when the user sets +// GTEST_HAS_TR1_TUPLE to 0. +// GTEST_LANG_CXX11 - Define it to 1/0 to indicate that Google Test +// is building in C++11/C++98 mode. +// GTEST_LINKED_AS_SHARED_LIBRARY +// - Define to 1 when compiling tests that use +// Google Test as a shared library (known as +// DLL on Windows). +// GTEST_CREATE_SHARED_LIBRARY +// - Define to 1 when compiling Google Test itself +// as a shared library. + +// This header defines the following utilities: +// +// Macros indicating the current platform (defined to 1 if compiled on +// the given platform; otherwise undefined): +// GTEST_OS_AIX - IBM AIX +// GTEST_OS_CYGWIN - Cygwin +// GTEST_OS_HPUX - HP-UX +// GTEST_OS_LINUX - Linux +// GTEST_OS_LINUX_ANDROID - Google Android +// GTEST_OS_MAC - Mac OS X +// GTEST_OS_IOS - iOS +// GTEST_OS_IOS_SIMULATOR - iOS simulator +// GTEST_OS_NACL - Google Native Client (NaCl) +// GTEST_OS_OPENBSD - OpenBSD +// GTEST_OS_QNX - QNX +// GTEST_OS_SOLARIS - Sun Solaris +// GTEST_OS_SYMBIAN - Symbian +// GTEST_OS_WINDOWS - Windows (Desktop, MinGW, or Mobile) +// GTEST_OS_WINDOWS_DESKTOP - Windows Desktop +// GTEST_OS_WINDOWS_MINGW - MinGW +// GTEST_OS_WINDOWS_MOBILE - Windows Mobile +// GTEST_OS_ZOS - z/OS +// +// Among the platforms, Cygwin, Linux, Max OS X, and Windows have the +// most stable support. Since core members of the Google Test project +// don't have access to other platforms, support for them may be less +// stable. If you notice any problems on your platform, please notify +// googletestframework@googlegroups.com (patches for fixing them are +// even more welcome!). +// +// Note that it is possible that none of the GTEST_OS_* macros are defined. +// +// Macros indicating available Google Test features (defined to 1 if +// the corresponding feature is supported; otherwise undefined): +// GTEST_HAS_COMBINE - the Combine() function (for value-parameterized +// tests) +// GTEST_HAS_DEATH_TEST - death tests +// GTEST_HAS_PARAM_TEST - value-parameterized tests +// GTEST_HAS_TYPED_TEST - typed tests +// GTEST_HAS_TYPED_TEST_P - type-parameterized tests +// GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with +// GTEST_HAS_POSIX_RE (see above) which users can +// define themselves. +// GTEST_USES_SIMPLE_RE - our own simple regex is used; +// the above two are mutually exclusive. +// GTEST_CAN_COMPARE_NULL - accepts untyped NULL in EXPECT_EQ(). +// +// Macros for basic C++ coding: +// GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning. +// GTEST_ATTRIBUTE_UNUSED_ - declares that a class' instances or a +// variable don't have to be used. +// GTEST_DISALLOW_ASSIGN_ - disables operator=. +// GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=. +// GTEST_MUST_USE_RESULT_ - declares that a function's result must be used. +// +// Synchronization: +// Mutex, MutexLock, ThreadLocal, GetThreadCount() +// - synchronization primitives. +// GTEST_IS_THREADSAFE - defined to 1 to indicate that the above +// synchronization primitives have real implementations +// and Google Test is thread-safe; or 0 otherwise. +// +// Template meta programming: +// is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only. +// IteratorTraits - partial implementation of std::iterator_traits, which +// is not available in libCstd when compiled with Sun C++. +// +// Smart pointers: +// scoped_ptr - as in TR2. +// +// Regular expressions: +// RE - a simple regular expression class using the POSIX +// Extended Regular Expression syntax on UNIX-like +// platforms, or a reduced regular exception syntax on +// other platforms, including Windows. +// +// Logging: +// GTEST_LOG_() - logs messages at the specified severity level. +// LogToStderr() - directs all log messages to stderr. +// FlushInfoLog() - flushes informational log messages. +// +// Stdout and stderr capturing: +// CaptureStdout() - starts capturing stdout. +// GetCapturedStdout() - stops capturing stdout and returns the captured +// string. +// CaptureStderr() - starts capturing stderr. +// GetCapturedStderr() - stops capturing stderr and returns the captured +// string. +// +// Integer types: +// TypeWithSize - maps an integer to a int type. +// Int32, UInt32, Int64, UInt64, TimeInMillis +// - integers of known sizes. +// BiggestInt - the biggest signed integer type. +// +// Command-line utilities: +// GTEST_FLAG() - references a flag. +// GTEST_DECLARE_*() - declares a flag. +// GTEST_DEFINE_*() - defines a flag. +// GetInjectableArgvs() - returns the command line as a vector of strings. +// +// Environment variable utilities: +// GetEnv() - gets the value of an environment variable. +// BoolFromGTestEnv() - parses a bool environment variable. +// Int32FromGTestEnv() - parses an Int32 environment variable. +// StringFromGTestEnv() - parses a string environment variable. + +#include // for isspace, etc +#include // for ptrdiff_t +#include +#include +#include +#ifndef _WIN32_WCE +# include +# include +#endif // !_WIN32_WCE + +#if defined __APPLE__ +# include +# include +#endif + +#include // NOLINT +#include // NOLINT +#include // NOLINT + +#define GTEST_DEV_EMAIL_ "googletestframework@@googlegroups.com" +#define GTEST_FLAG_PREFIX_ "gtest_" +#define GTEST_FLAG_PREFIX_DASH_ "gtest-" +#define GTEST_FLAG_PREFIX_UPPER_ "GTEST_" +#define GTEST_NAME_ "Google Test" +#define GTEST_PROJECT_URL_ "http://code.google.com/p/googletest/" + +// Determines the version of gcc that is used to compile this. +#ifdef __GNUC__ +// 40302 means version 4.3.2. +# define GTEST_GCC_VER_ \ + (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__) +#endif // __GNUC__ + +// Determines the platform on which Google Test is compiled. +#ifdef __CYGWIN__ +# define GTEST_OS_CYGWIN 1 +#elif defined __SYMBIAN32__ +# define GTEST_OS_SYMBIAN 1 +#elif defined _WIN32 +# define GTEST_OS_WINDOWS 1 +# ifdef _WIN32_WCE +# define GTEST_OS_WINDOWS_MOBILE 1 +# elif defined(__MINGW__) || defined(__MINGW32__) +# define GTEST_OS_WINDOWS_MINGW 1 +# else +# define GTEST_OS_WINDOWS_DESKTOP 1 +# endif // _WIN32_WCE +#elif defined __APPLE__ +# define GTEST_OS_MAC 1 +# if TARGET_OS_IPHONE +# define GTEST_OS_IOS 1 +# if TARGET_IPHONE_SIMULATOR +# define GTEST_OS_IOS_SIMULATOR 1 +# endif +# endif +#elif defined __linux__ +# define GTEST_OS_LINUX 1 +# if defined __ANDROID__ +# define GTEST_OS_LINUX_ANDROID 1 +# endif +#elif defined __MVS__ +# define GTEST_OS_ZOS 1 +#elif defined(__sun) && defined(__SVR4) +# define GTEST_OS_SOLARIS 1 +#elif defined(_AIX) +# define GTEST_OS_AIX 1 +#elif defined(__hpux) +# define GTEST_OS_HPUX 1 +#elif defined __native_client__ +# define GTEST_OS_NACL 1 +#elif defined __OpenBSD__ +# define GTEST_OS_OPENBSD 1 +#elif defined __QNX__ +# define GTEST_OS_QNX 1 +#endif // __CYGWIN__ + +#ifndef GTEST_LANG_CXX11 +// gcc and clang define __GXX_EXPERIMENTAL_CXX0X__ when +// -std={c,gnu}++{0x,11} is passed. The C++11 standard specifies a +// value for __cplusplus, and recent versions of clang, gcc, and +// probably other compilers set that too in C++11 mode. +# if __GXX_EXPERIMENTAL_CXX0X__ || __cplusplus >= 201103L +// Compiling in at least C++11 mode. +# define GTEST_LANG_CXX11 1 +# else +# define GTEST_LANG_CXX11 0 +# endif +#endif + +// Brings in definitions for functions used in the testing::internal::posix +// namespace (read, write, close, chdir, isatty, stat). We do not currently +// use them on Windows Mobile. +#if !GTEST_OS_WINDOWS +// This assumes that non-Windows OSes provide unistd.h. For OSes where this +// is not the case, we need to include headers that provide the functions +// mentioned above. +# include +# include +#elif !GTEST_OS_WINDOWS_MOBILE +# include +# include +#endif + +#if GTEST_OS_LINUX_ANDROID +// Used to define __ANDROID_API__ matching the target NDK API level. +# include // NOLINT +#endif + +// Defines this to true iff Google Test can use POSIX regular expressions. +#ifndef GTEST_HAS_POSIX_RE +# if GTEST_OS_LINUX_ANDROID +// On Android, is only available starting with Gingerbread. +# define GTEST_HAS_POSIX_RE (__ANDROID_API__ >= 9) +# else +# define GTEST_HAS_POSIX_RE (!GTEST_OS_WINDOWS) +# endif +#endif + +#if GTEST_HAS_POSIX_RE + +// On some platforms, needs someone to define size_t, and +// won't compile otherwise. We can #include it here as we already +// included , which is guaranteed to define size_t through +// . +# include // NOLINT + +# define GTEST_USES_POSIX_RE 1 + +#elif GTEST_OS_WINDOWS + +// is not available on Windows. Use our own simple regex +// implementation instead. +# define GTEST_USES_SIMPLE_RE 1 + +#else + +// may not be available on this platform. Use our own +// simple regex implementation instead. +# define GTEST_USES_SIMPLE_RE 1 + +#endif // GTEST_HAS_POSIX_RE + +#ifndef GTEST_HAS_EXCEPTIONS +// The user didn't tell us whether exceptions are enabled, so we need +// to figure it out. +# if defined(_MSC_VER) || defined(__BORLANDC__) +// MSVC's and C++Builder's implementations of the STL use the _HAS_EXCEPTIONS +// macro to enable exceptions, so we'll do the same. +// Assumes that exceptions are enabled by default. +# ifndef _HAS_EXCEPTIONS +# define _HAS_EXCEPTIONS 1 +# endif // _HAS_EXCEPTIONS +# define GTEST_HAS_EXCEPTIONS _HAS_EXCEPTIONS +# elif defined(__GNUC__) && __EXCEPTIONS +// gcc defines __EXCEPTIONS to 1 iff exceptions are enabled. +# define GTEST_HAS_EXCEPTIONS 1 +# elif defined(__SUNPRO_CC) +// Sun Pro CC supports exceptions. However, there is no compile-time way of +// detecting whether they are enabled or not. Therefore, we assume that +// they are enabled unless the user tells us otherwise. +# define GTEST_HAS_EXCEPTIONS 1 +# elif defined(__IBMCPP__) && __EXCEPTIONS +// xlC defines __EXCEPTIONS to 1 iff exceptions are enabled. +# define GTEST_HAS_EXCEPTIONS 1 +# elif defined(__HP_aCC) +// Exception handling is in effect by default in HP aCC compiler. It has to +// be turned of by +noeh compiler option if desired. +# define GTEST_HAS_EXCEPTIONS 1 +# else +// For other compilers, we assume exceptions are disabled to be +// conservative. +# define GTEST_HAS_EXCEPTIONS 0 +# endif // defined(_MSC_VER) || defined(__BORLANDC__) +#endif // GTEST_HAS_EXCEPTIONS + +#if !defined(GTEST_HAS_STD_STRING) +// Even though we don't use this macro any longer, we keep it in case +// some clients still depend on it. +# define GTEST_HAS_STD_STRING 1 +#elif !GTEST_HAS_STD_STRING +// The user told us that ::std::string isn't available. +# error "Google Test cannot be used where ::std::string isn't available." +#endif // !defined(GTEST_HAS_STD_STRING) + +#ifndef GTEST_HAS_GLOBAL_STRING +// The user didn't tell us whether ::string is available, so we need +// to figure it out. + +# define GTEST_HAS_GLOBAL_STRING 0 + +#endif // GTEST_HAS_GLOBAL_STRING + +#ifndef GTEST_HAS_STD_WSTRING +// The user didn't tell us whether ::std::wstring is available, so we need +// to figure it out. +// TODO(wan@google.com): uses autoconf to detect whether ::std::wstring +// is available. + +// Cygwin 1.7 and below doesn't support ::std::wstring. +// Solaris' libc++ doesn't support it either. Android has +// no support for it at least as recent as Froyo (2.2). +# define GTEST_HAS_STD_WSTRING \ + (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS)) + +#endif // GTEST_HAS_STD_WSTRING + +#ifndef GTEST_HAS_GLOBAL_WSTRING +// The user didn't tell us whether ::wstring is available, so we need +// to figure it out. +# define GTEST_HAS_GLOBAL_WSTRING \ + (GTEST_HAS_STD_WSTRING && GTEST_HAS_GLOBAL_STRING) +#endif // GTEST_HAS_GLOBAL_WSTRING + +// Determines whether RTTI is available. +#ifndef GTEST_HAS_RTTI +// The user didn't tell us whether RTTI is enabled, so we need to +// figure it out. + +# ifdef _MSC_VER + +# ifdef _CPPRTTI // MSVC defines this macro iff RTTI is enabled. +# define GTEST_HAS_RTTI 1 +# else +# define GTEST_HAS_RTTI 0 +# endif + +// Starting with version 4.3.2, gcc defines __GXX_RTTI iff RTTI is enabled. +# elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40302) + +# ifdef __GXX_RTTI +// When building against STLport with the Android NDK and with +// -frtti -fno-exceptions, the build fails at link time with undefined +// references to __cxa_bad_typeid. Note sure if STL or toolchain bug, +// so disable RTTI when detected. +# if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR) && \ + !defined(__EXCEPTIONS) +# define GTEST_HAS_RTTI 0 +# else +# define GTEST_HAS_RTTI 1 +# endif // GTEST_OS_LINUX_ANDROID && __STLPORT_MAJOR && !__EXCEPTIONS +# else +# define GTEST_HAS_RTTI 0 +# endif // __GXX_RTTI + +// Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends +// using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the +// first version with C++ support. +# elif defined(__clang__) + +# define GTEST_HAS_RTTI __has_feature(cxx_rtti) + +// Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if +// both the typeid and dynamic_cast features are present. +# elif defined(__IBMCPP__) && (__IBMCPP__ >= 900) + +# ifdef __RTTI_ALL__ +# define GTEST_HAS_RTTI 1 +# else +# define GTEST_HAS_RTTI 0 +# endif + +# else + +// For all other compilers, we assume RTTI is enabled. +# define GTEST_HAS_RTTI 1 + +# endif // _MSC_VER + +#endif // GTEST_HAS_RTTI + +// It's this header's responsibility to #include when RTTI +// is enabled. +#if GTEST_HAS_RTTI +# include +#endif + +// Determines whether Google Test can use the pthreads library. +#ifndef GTEST_HAS_PTHREAD +// The user didn't tell us explicitly, so we assume pthreads support is +// available on Linux and Mac. +// +// To disable threading support in Google Test, add -DGTEST_HAS_PTHREAD=0 +// to your compiler flags. +# define GTEST_HAS_PTHREAD (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_HPUX \ + || GTEST_OS_QNX) +#endif // GTEST_HAS_PTHREAD + +#if GTEST_HAS_PTHREAD +// gtest-port.h guarantees to #include when GTEST_HAS_PTHREAD is +// true. +# include // NOLINT + +// For timespec and nanosleep, used below. +# include // NOLINT +#endif + +// Determines whether Google Test can use tr1/tuple. You can define +// this macro to 0 to prevent Google Test from using tuple (any +// feature depending on tuple with be disabled in this mode). +#ifndef GTEST_HAS_TR1_TUPLE +# if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR) +// STLport, provided with the Android NDK, has neither or . +# define GTEST_HAS_TR1_TUPLE 0 +# else +// The user didn't tell us not to do it, so we assume it's OK. +# define GTEST_HAS_TR1_TUPLE 1 +# endif +#endif // GTEST_HAS_TR1_TUPLE + +// Determines whether Google Test's own tr1 tuple implementation +// should be used. +#ifndef GTEST_USE_OWN_TR1_TUPLE +// The user didn't tell us, so we need to figure it out. + +// We use our own TR1 tuple if we aren't sure the user has an +// implementation of it already. At this time, libstdc++ 4.0.0+ and +// MSVC 2010 are the only mainstream standard libraries that come +// with a TR1 tuple implementation. NVIDIA's CUDA NVCC compiler +// pretends to be GCC by defining __GNUC__ and friends, but cannot +// compile GCC's tuple implementation. MSVC 2008 (9.0) provides TR1 +// tuple in a 323 MB Feature Pack download, which we cannot assume the +// user has. QNX's QCC compiler is a modified GCC but it doesn't +// support TR1 tuple. libc++ only provides std::tuple, in C++11 mode, +// and it can be used with some compilers that define __GNUC__. +# if (defined(__GNUC__) && !defined(__CUDACC__) && (GTEST_GCC_VER_ >= 40000) \ + && !GTEST_OS_QNX && !defined(_LIBCPP_VERSION)) || _MSC_VER >= 1600 +# define GTEST_ENV_HAS_TR1_TUPLE_ 1 +# endif + +// C++11 specifies that provides std::tuple. Use that if gtest is used +// in C++11 mode and libstdc++ isn't very old (binaries targeting OS X 10.6 +// can build with clang but need to use gcc4.2's libstdc++). +# if GTEST_LANG_CXX11 && (!defined(__GLIBCXX__) || __GLIBCXX__ > 20110325) +# define GTEST_ENV_HAS_STD_TUPLE_ 1 +# endif + +# if GTEST_ENV_HAS_TR1_TUPLE_ || GTEST_ENV_HAS_STD_TUPLE_ +# define GTEST_USE_OWN_TR1_TUPLE 0 +# else +# define GTEST_USE_OWN_TR1_TUPLE 1 +# endif + +#endif // GTEST_USE_OWN_TR1_TUPLE + +// To avoid conditional compilation everywhere, we make it +// gtest-port.h's responsibility to #include the header implementing +// tr1/tuple. +#if GTEST_HAS_TR1_TUPLE + +# if GTEST_USE_OWN_TR1_TUPLE +# include "gtest/internal/gtest-tuple.h" +# elif GTEST_ENV_HAS_STD_TUPLE_ +# include +// C++11 puts its tuple into the ::std namespace rather than +// ::std::tr1. gtest expects tuple to live in ::std::tr1, so put it there. +// This causes undefined behavior, but supported compilers react in +// the way we intend. +namespace std { +namespace tr1 { +using ::std::get; +using ::std::make_tuple; +using ::std::tuple; +using ::std::tuple_element; +using ::std::tuple_size; +} +} + +# elif GTEST_OS_SYMBIAN + +// On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to +// use STLport's tuple implementation, which unfortunately doesn't +// work as the copy of STLport distributed with Symbian is incomplete. +// By making sure BOOST_HAS_TR1_TUPLE is undefined, we force Boost to +// use its own tuple implementation. +# ifdef BOOST_HAS_TR1_TUPLE +# undef BOOST_HAS_TR1_TUPLE +# endif // BOOST_HAS_TR1_TUPLE + +// This prevents , which defines +// BOOST_HAS_TR1_TUPLE, from being #included by Boost's . +# define BOOST_TR1_DETAIL_CONFIG_HPP_INCLUDED +# include + +# elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000) +// GCC 4.0+ implements tr1/tuple in the header. This does +// not conform to the TR1 spec, which requires the header to be . + +# if !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302 +// Until version 4.3.2, gcc has a bug that causes , +// which is #included by , to not compile when RTTI is +// disabled. _TR1_FUNCTIONAL is the header guard for +// . Hence the following #define is a hack to prevent +// from being included. +# define _TR1_FUNCTIONAL 1 +# include +# undef _TR1_FUNCTIONAL // Allows the user to #include + // if he chooses to. +# else +# include // NOLINT +# endif // !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302 + +# else +// If the compiler is not GCC 4.0+, we assume the user is using a +// spec-conforming TR1 implementation. +# include // NOLINT +# endif // GTEST_USE_OWN_TR1_TUPLE + +#endif // GTEST_HAS_TR1_TUPLE + +// Determines whether clone(2) is supported. +// Usually it will only be available on Linux, excluding +// Linux on the Itanium architecture. +// Also see http://linux.die.net/man/2/clone. +#ifndef GTEST_HAS_CLONE +// The user didn't tell us, so we need to figure it out. + +# if GTEST_OS_LINUX && !defined(__ia64__) +# if GTEST_OS_LINUX_ANDROID +// On Android, clone() is only available on ARM starting with Gingerbread. +# if defined(__arm__) && __ANDROID_API__ >= 9 +# define GTEST_HAS_CLONE 1 +# else +# define GTEST_HAS_CLONE 0 +# endif +# else +# define GTEST_HAS_CLONE 1 +# endif +# else +# define GTEST_HAS_CLONE 0 +# endif // GTEST_OS_LINUX && !defined(__ia64__) + +#endif // GTEST_HAS_CLONE + +// Determines whether to support stream redirection. This is used to test +// output correctness and to implement death tests. +#ifndef GTEST_HAS_STREAM_REDIRECTION +// By default, we assume that stream redirection is supported on all +// platforms except known mobile ones. +# if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN +# define GTEST_HAS_STREAM_REDIRECTION 0 +# else +# define GTEST_HAS_STREAM_REDIRECTION 1 +# endif // !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_SYMBIAN +#endif // GTEST_HAS_STREAM_REDIRECTION + +// Determines whether to support death tests. +// Google Test does not support death tests for VC 7.1 and earlier as +// abort() in a VC 7.1 application compiled as GUI in debug config +// pops up a dialog window that cannot be suppressed programmatically. +#if (GTEST_OS_LINUX || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \ + (GTEST_OS_MAC && !GTEST_OS_IOS) || GTEST_OS_IOS_SIMULATOR || \ + (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \ + GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX || GTEST_OS_HPUX || \ + GTEST_OS_OPENBSD || GTEST_OS_QNX) +# define GTEST_HAS_DEATH_TEST 1 +# include // NOLINT +#endif + +// We don't support MSVC 7.1 with exceptions disabled now. Therefore +// all the compilers we care about are adequate for supporting +// value-parameterized tests. +#define GTEST_HAS_PARAM_TEST 1 + +// Determines whether to support type-driven tests. + +// Typed tests need and variadic macros, which GCC, VC++ 8.0, +// Sun Pro CC, IBM Visual Age, and HP aCC support. +#if defined(__GNUC__) || (_MSC_VER >= 1400) || defined(__SUNPRO_CC) || \ + defined(__IBMCPP__) || defined(__HP_aCC) +# define GTEST_HAS_TYPED_TEST 1 +# define GTEST_HAS_TYPED_TEST_P 1 +#endif + +// Determines whether to support Combine(). This only makes sense when +// value-parameterized tests are enabled. The implementation doesn't +// work on Sun Studio since it doesn't understand templated conversion +// operators. +#if GTEST_HAS_PARAM_TEST && GTEST_HAS_TR1_TUPLE && !defined(__SUNPRO_CC) +# define GTEST_HAS_COMBINE 1 +#endif + +// Determines whether the system compiler uses UTF-16 for encoding wide strings. +#define GTEST_WIDE_STRING_USES_UTF16_ \ + (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_SYMBIAN || GTEST_OS_AIX) + +// Determines whether test results can be streamed to a socket. +#if GTEST_OS_LINUX +# define GTEST_CAN_STREAM_RESULTS_ 1 +#endif + +// Defines some utility macros. + +// The GNU compiler emits a warning if nested "if" statements are followed by +// an "else" statement and braces are not used to explicitly disambiguate the +// "else" binding. This leads to problems with code like: +// +// if (gate) +// ASSERT_*(condition) << "Some message"; +// +// The "switch (0) case 0:" idiom is used to suppress this. +#ifdef __INTEL_COMPILER +# define GTEST_AMBIGUOUS_ELSE_BLOCKER_ +#else +# define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: default: // NOLINT +#endif + +// Use this annotation at the end of a struct/class definition to +// prevent the compiler from optimizing away instances that are never +// used. This is useful when all interesting logic happens inside the +// c'tor and / or d'tor. Example: +// +// struct Foo { +// Foo() { ... } +// } GTEST_ATTRIBUTE_UNUSED_; +// +// Also use it after a variable or parameter declaration to tell the +// compiler the variable/parameter does not have to be used. +#if defined(__GNUC__) && !defined(COMPILER_ICC) +# define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused)) +#else +# define GTEST_ATTRIBUTE_UNUSED_ +#endif + +// A macro to disallow operator= +// This should be used in the private: declarations for a class. +#define GTEST_DISALLOW_ASSIGN_(type)\ + void operator=(type const &) + +// A macro to disallow copy constructor and operator= +// This should be used in the private: declarations for a class. +#define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)\ + type(type const &);\ + GTEST_DISALLOW_ASSIGN_(type) + +// Tell the compiler to warn about unused return values for functions declared +// with this macro. The macro should be used on function declarations +// following the argument list: +// +// Sprocket* AllocateSprocket() GTEST_MUST_USE_RESULT_; +#if defined(__GNUC__) && (GTEST_GCC_VER_ >= 30400) && !defined(COMPILER_ICC) +# define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result)) +#else +# define GTEST_MUST_USE_RESULT_ +#endif // __GNUC__ && (GTEST_GCC_VER_ >= 30400) && !COMPILER_ICC + +// Determine whether the compiler supports Microsoft's Structured Exception +// Handling. This is supported by several Windows compilers but generally +// does not exist on any other system. +#ifndef GTEST_HAS_SEH +// The user didn't tell us, so we need to figure it out. + +# if defined(_MSC_VER) || defined(__BORLANDC__) +// These two compilers are known to support SEH. +# define GTEST_HAS_SEH 1 +# else +// Assume no SEH. +# define GTEST_HAS_SEH 0 +# endif + +#endif // GTEST_HAS_SEH + +#ifdef _MSC_VER + +# if GTEST_LINKED_AS_SHARED_LIBRARY +# define GTEST_API_ __declspec(dllimport) +# elif GTEST_CREATE_SHARED_LIBRARY +# define GTEST_API_ __declspec(dllexport) +# endif + +#endif // _MSC_VER + +#ifndef GTEST_API_ +# define GTEST_API_ +#endif + +#ifdef __GNUC__ +// Ask the compiler to never inline a given function. +# define GTEST_NO_INLINE_ __attribute__((noinline)) +#else +# define GTEST_NO_INLINE_ +#endif + +// _LIBCPP_VERSION is defined by the libc++ library from the LLVM project. +#if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION) +# define GTEST_HAS_CXXABI_H_ 1 +#else +# define GTEST_HAS_CXXABI_H_ 0 +#endif + +namespace testing { + +class Message; + +namespace internal { + +// A secret type that Google Test users don't know about. It has no +// definition on purpose. Therefore it's impossible to create a +// Secret object, which is what we want. +class Secret; + +// The GTEST_COMPILE_ASSERT_ macro can be used to verify that a compile time +// expression is true. For example, you could use it to verify the +// size of a static array: +// +// GTEST_COMPILE_ASSERT_(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES, +// content_type_names_incorrect_size); +// +// or to make sure a struct is smaller than a certain size: +// +// GTEST_COMPILE_ASSERT_(sizeof(foo) < 128, foo_too_large); +// +// The second argument to the macro is the name of the variable. If +// the expression is false, most compilers will issue a warning/error +// containing the name of the variable. + +template +struct CompileAssert { +}; + +#define GTEST_COMPILE_ASSERT_(expr, msg) \ + typedef ::testing::internal::CompileAssert<(static_cast(expr))> \ + msg[static_cast(expr) ? 1 : -1] GTEST_ATTRIBUTE_UNUSED_ + +// Implementation details of GTEST_COMPILE_ASSERT_: +// +// - GTEST_COMPILE_ASSERT_ works by defining an array type that has -1 +// elements (and thus is invalid) when the expression is false. +// +// - The simpler definition +// +// #define GTEST_COMPILE_ASSERT_(expr, msg) typedef char msg[(expr) ? 1 : -1] +// +// does not work, as gcc supports variable-length arrays whose sizes +// are determined at run-time (this is gcc's extension and not part +// of the C++ standard). As a result, gcc fails to reject the +// following code with the simple definition: +// +// int foo; +// GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is +// // not a compile-time constant. +// +// - By using the type CompileAssert<(bool(expr))>, we ensures that +// expr is a compile-time constant. (Template arguments must be +// determined at compile-time.) +// +// - The outter parentheses in CompileAssert<(bool(expr))> are necessary +// to work around a bug in gcc 3.4.4 and 4.0.1. If we had written +// +// CompileAssert +// +// instead, these compilers will refuse to compile +// +// GTEST_COMPILE_ASSERT_(5 > 0, some_message); +// +// (They seem to think the ">" in "5 > 0" marks the end of the +// template argument list.) +// +// - The array size is (bool(expr) ? 1 : -1), instead of simply +// +// ((expr) ? 1 : -1). +// +// This is to avoid running into a bug in MS VC 7.1, which +// causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1. + +// StaticAssertTypeEqHelper is used by StaticAssertTypeEq defined in gtest.h. +// +// This template is declared, but intentionally undefined. +template +struct StaticAssertTypeEqHelper; + +template +struct StaticAssertTypeEqHelper {}; + +#if GTEST_HAS_GLOBAL_STRING +typedef ::string string; +#else +typedef ::std::string string; +#endif // GTEST_HAS_GLOBAL_STRING + +#if GTEST_HAS_GLOBAL_WSTRING +typedef ::wstring wstring; +#elif GTEST_HAS_STD_WSTRING +typedef ::std::wstring wstring; +#endif // GTEST_HAS_GLOBAL_WSTRING + +// A helper for suppressing warnings on constant condition. It just +// returns 'condition'. +GTEST_API_ bool IsTrue(bool condition); + +// Defines scoped_ptr. + +// This implementation of scoped_ptr is PARTIAL - it only contains +// enough stuff to satisfy Google Test's need. +template +class scoped_ptr { + public: + typedef T element_type; + + explicit scoped_ptr(T* p = NULL) : ptr_(p) {} + ~scoped_ptr() { reset(); } + + T& operator*() const { return *ptr_; } + T* operator->() const { return ptr_; } + T* get() const { return ptr_; } + + T* release() { + T* const ptr = ptr_; + ptr_ = NULL; + return ptr; + } + + void reset(T* p = NULL) { + if (p != ptr_) { + if (IsTrue(sizeof(T) > 0)) { // Makes sure T is a complete type. + delete ptr_; + } + ptr_ = p; + } + } + + private: + T* ptr_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr); +}; + +// Defines RE. + +// A simple C++ wrapper for . It uses the POSIX Extended +// Regular Expression syntax. +class GTEST_API_ RE { + public: + // A copy constructor is required by the Standard to initialize object + // references from r-values. + RE(const RE& other) { Init(other.pattern()); } + + // Constructs an RE from a string. + RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT + +#if GTEST_HAS_GLOBAL_STRING + + RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT + +#endif // GTEST_HAS_GLOBAL_STRING + + RE(const char* regex) { Init(regex); } // NOLINT + ~RE(); + + // Returns the string representation of the regex. + const char* pattern() const { return pattern_; } + + // FullMatch(str, re) returns true iff regular expression re matches + // the entire str. + // PartialMatch(str, re) returns true iff regular expression re + // matches a substring of str (including str itself). + // + // TODO(wan@google.com): make FullMatch() and PartialMatch() work + // when str contains NUL characters. + static bool FullMatch(const ::std::string& str, const RE& re) { + return FullMatch(str.c_str(), re); + } + static bool PartialMatch(const ::std::string& str, const RE& re) { + return PartialMatch(str.c_str(), re); + } + +#if GTEST_HAS_GLOBAL_STRING + + static bool FullMatch(const ::string& str, const RE& re) { + return FullMatch(str.c_str(), re); + } + static bool PartialMatch(const ::string& str, const RE& re) { + return PartialMatch(str.c_str(), re); + } + +#endif // GTEST_HAS_GLOBAL_STRING + + static bool FullMatch(const char* str, const RE& re); + static bool PartialMatch(const char* str, const RE& re); + + private: + void Init(const char* regex); + + // We use a const char* instead of an std::string, as Google Test used to be + // used where std::string is not available. TODO(wan@google.com): change to + // std::string. + const char* pattern_; + bool is_valid_; + +#if GTEST_USES_POSIX_RE + + regex_t full_regex_; // For FullMatch(). + regex_t partial_regex_; // For PartialMatch(). + +#else // GTEST_USES_SIMPLE_RE + + const char* full_pattern_; // For FullMatch(); + +#endif + + GTEST_DISALLOW_ASSIGN_(RE); +}; + +// Formats a source file path and a line number as they would appear +// in an error message from the compiler used to compile this code. +GTEST_API_ ::std::string FormatFileLocation(const char* file, int line); + +// Formats a file location for compiler-independent XML output. +// Although this function is not platform dependent, we put it next to +// FormatFileLocation in order to contrast the two functions. +GTEST_API_ ::std::string FormatCompilerIndependentFileLocation(const char* file, + int line); + +// Defines logging utilities: +// GTEST_LOG_(severity) - logs messages at the specified severity level. The +// message itself is streamed into the macro. +// LogToStderr() - directs all log messages to stderr. +// FlushInfoLog() - flushes informational log messages. + +enum GTestLogSeverity { + GTEST_INFO, + GTEST_WARNING, + GTEST_ERROR, + GTEST_FATAL +}; + +// Formats log entry severity, provides a stream object for streaming the +// log message, and terminates the message with a newline when going out of +// scope. +class GTEST_API_ GTestLog { + public: + GTestLog(GTestLogSeverity severity, const char* file, int line); + + // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. + ~GTestLog(); + + ::std::ostream& GetStream() { return ::std::cerr; } + + private: + const GTestLogSeverity severity_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestLog); +}; + +#define GTEST_LOG_(severity) \ + ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \ + __FILE__, __LINE__).GetStream() + +inline void LogToStderr() {} +inline void FlushInfoLog() { fflush(NULL); } + +// INTERNAL IMPLEMENTATION - DO NOT USE. +// +// GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition +// is not satisfied. +// Synopsys: +// GTEST_CHECK_(boolean_condition); +// or +// GTEST_CHECK_(boolean_condition) << "Additional message"; +// +// This checks the condition and if the condition is not satisfied +// it prints message about the condition violation, including the +// condition itself, plus additional message streamed into it, if any, +// and then it aborts the program. It aborts the program irrespective of +// whether it is built in the debug mode or not. +#define GTEST_CHECK_(condition) \ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ + if (::testing::internal::IsTrue(condition)) \ + ; \ + else \ + GTEST_LOG_(FATAL) << "Condition " #condition " failed. " + +// An all-mode assert to verify that the given POSIX-style function +// call returns 0 (indicating success). Known limitation: this +// doesn't expand to a balanced 'if' statement, so enclose the macro +// in {} if you need to use it as the only statement in an 'if' +// branch. +#define GTEST_CHECK_POSIX_SUCCESS_(posix_call) \ + if (const int gtest_error = (posix_call)) \ + GTEST_LOG_(FATAL) << #posix_call << "failed with error " \ + << gtest_error + +// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. +// +// Use ImplicitCast_ as a safe version of static_cast for upcasting in +// the type hierarchy (e.g. casting a Foo* to a SuperclassOfFoo* or a +// const Foo*). When you use ImplicitCast_, the compiler checks that +// the cast is safe. Such explicit ImplicitCast_s are necessary in +// surprisingly many situations where C++ demands an exact type match +// instead of an argument type convertable to a target type. +// +// The syntax for using ImplicitCast_ is the same as for static_cast: +// +// ImplicitCast_(expr) +// +// ImplicitCast_ would have been part of the C++ standard library, +// but the proposal was submitted too late. It will probably make +// its way into the language in the future. +// +// This relatively ugly name is intentional. It prevents clashes with +// similar functions users may have (e.g., implicit_cast). The internal +// namespace alone is not enough because the function can be found by ADL. +template +inline To ImplicitCast_(To x) { return x; } + +// When you upcast (that is, cast a pointer from type Foo to type +// SuperclassOfFoo), it's fine to use ImplicitCast_<>, since upcasts +// always succeed. When you downcast (that is, cast a pointer from +// type Foo to type SubclassOfFoo), static_cast<> isn't safe, because +// how do you know the pointer is really of type SubclassOfFoo? It +// could be a bare Foo, or of type DifferentSubclassOfFoo. Thus, +// when you downcast, you should use this macro. In debug mode, we +// use dynamic_cast<> to double-check the downcast is legal (we die +// if it's not). In normal mode, we do the efficient static_cast<> +// instead. Thus, it's important to test in debug mode to make sure +// the cast is legal! +// This is the only place in the code we should use dynamic_cast<>. +// In particular, you SHOULDN'T be using dynamic_cast<> in order to +// do RTTI (eg code like this: +// if (dynamic_cast(foo)) HandleASubclass1Object(foo); +// if (dynamic_cast(foo)) HandleASubclass2Object(foo); +// You should design the code some other way not to need this. +// +// This relatively ugly name is intentional. It prevents clashes with +// similar functions users may have (e.g., down_cast). The internal +// namespace alone is not enough because the function can be found by ADL. +template // use like this: DownCast_(foo); +inline To DownCast_(From* f) { // so we only accept pointers + // Ensures that To is a sub-type of From *. This test is here only + // for compile-time type checking, and has no overhead in an + // optimized build at run-time, as it will be optimized away + // completely. + if (false) { + const To to = NULL; + ::testing::internal::ImplicitCast_(to); + } + +#if GTEST_HAS_RTTI + // RTTI: debug mode only! + GTEST_CHECK_(f == NULL || dynamic_cast(f) != NULL); +#endif + return static_cast(f); +} + +// Downcasts the pointer of type Base to Derived. +// Derived must be a subclass of Base. The parameter MUST +// point to a class of type Derived, not any subclass of it. +// When RTTI is available, the function performs a runtime +// check to enforce this. +template +Derived* CheckedDowncastToActualType(Base* base) { +#if GTEST_HAS_RTTI + GTEST_CHECK_(typeid(*base) == typeid(Derived)); + return dynamic_cast(base); // NOLINT +#else + return static_cast(base); // Poor man's downcast. +#endif +} + +#if GTEST_HAS_STREAM_REDIRECTION + +// Defines the stderr capturer: +// CaptureStdout - starts capturing stdout. +// GetCapturedStdout - stops capturing stdout and returns the captured string. +// CaptureStderr - starts capturing stderr. +// GetCapturedStderr - stops capturing stderr and returns the captured string. +// +GTEST_API_ void CaptureStdout(); +GTEST_API_ std::string GetCapturedStdout(); +GTEST_API_ void CaptureStderr(); +GTEST_API_ std::string GetCapturedStderr(); + +#endif // GTEST_HAS_STREAM_REDIRECTION + + +#if GTEST_HAS_DEATH_TEST + +const ::std::vector& GetInjectableArgvs(); +void SetInjectableArgvs(const ::std::vector* + new_argvs); + +// A copy of all command line arguments. Set by InitGoogleTest(). +extern ::std::vector g_argvs; + +#endif // GTEST_HAS_DEATH_TEST + +// Defines synchronization primitives. + +#if GTEST_HAS_PTHREAD + +// Sleeps for (roughly) n milli-seconds. This function is only for +// testing Google Test's own constructs. Don't use it in user tests, +// either directly or indirectly. +inline void SleepMilliseconds(int n) { + const timespec time = { + 0, // 0 seconds. + n * 1000L * 1000L, // And n ms. + }; + nanosleep(&time, NULL); +} + +// Allows a controller thread to pause execution of newly created +// threads until notified. Instances of this class must be created +// and destroyed in the controller thread. +// +// This class is only for testing Google Test's own constructs. Do not +// use it in user tests, either directly or indirectly. +class Notification { + public: + Notification() : notified_(false) { + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL)); + } + ~Notification() { + pthread_mutex_destroy(&mutex_); + } + + // Notifies all threads created with this notification to start. Must + // be called from the controller thread. + void Notify() { + pthread_mutex_lock(&mutex_); + notified_ = true; + pthread_mutex_unlock(&mutex_); + } + + // Blocks until the controller thread notifies. Must be called from a test + // thread. + void WaitForNotification() { + for (;;) { + pthread_mutex_lock(&mutex_); + const bool notified = notified_; + pthread_mutex_unlock(&mutex_); + if (notified) + break; + SleepMilliseconds(10); + } + } + + private: + pthread_mutex_t mutex_; + bool notified_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); +}; + +// As a C-function, ThreadFuncWithCLinkage cannot be templated itself. +// Consequently, it cannot select a correct instantiation of ThreadWithParam +// in order to call its Run(). Introducing ThreadWithParamBase as a +// non-templated base class for ThreadWithParam allows us to bypass this +// problem. +class ThreadWithParamBase { + public: + virtual ~ThreadWithParamBase() {} + virtual void Run() = 0; +}; + +// pthread_create() accepts a pointer to a function type with the C linkage. +// According to the Standard (7.5/1), function types with different linkages +// are different even if they are otherwise identical. Some compilers (for +// example, SunStudio) treat them as different types. Since class methods +// cannot be defined with C-linkage we need to define a free C-function to +// pass into pthread_create(). +extern "C" inline void* ThreadFuncWithCLinkage(void* thread) { + static_cast(thread)->Run(); + return NULL; +} + +// Helper class for testing Google Test's multi-threading constructs. +// To use it, write: +// +// void ThreadFunc(int param) { /* Do things with param */ } +// Notification thread_can_start; +// ... +// // The thread_can_start parameter is optional; you can supply NULL. +// ThreadWithParam thread(&ThreadFunc, 5, &thread_can_start); +// thread_can_start.Notify(); +// +// These classes are only for testing Google Test's own constructs. Do +// not use them in user tests, either directly or indirectly. +template +class ThreadWithParam : public ThreadWithParamBase { + public: + typedef void (*UserThreadFunc)(T); + + ThreadWithParam( + UserThreadFunc func, T param, Notification* thread_can_start) + : func_(func), + param_(param), + thread_can_start_(thread_can_start), + finished_(false) { + ThreadWithParamBase* const base = this; + // The thread can be created only after all fields except thread_ + // have been initialized. + GTEST_CHECK_POSIX_SUCCESS_( + pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base)); + } + ~ThreadWithParam() { Join(); } + + void Join() { + if (!finished_) { + GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, 0)); + finished_ = true; + } + } + + virtual void Run() { + if (thread_can_start_ != NULL) + thread_can_start_->WaitForNotification(); + func_(param_); + } + + private: + const UserThreadFunc func_; // User-supplied thread function. + const T param_; // User-supplied parameter to the thread function. + // When non-NULL, used to block execution until the controller thread + // notifies. + Notification* const thread_can_start_; + bool finished_; // true iff we know that the thread function has finished. + pthread_t thread_; // The native thread object. + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam); +}; + +// MutexBase and Mutex implement mutex on pthreads-based platforms. They +// are used in conjunction with class MutexLock: +// +// Mutex mutex; +// ... +// MutexLock lock(&mutex); // Acquires the mutex and releases it at the end +// // of the current scope. +// +// MutexBase implements behavior for both statically and dynamically +// allocated mutexes. Do not use MutexBase directly. Instead, write +// the following to define a static mutex: +// +// GTEST_DEFINE_STATIC_MUTEX_(g_some_mutex); +// +// You can forward declare a static mutex like this: +// +// GTEST_DECLARE_STATIC_MUTEX_(g_some_mutex); +// +// To create a dynamic mutex, just define an object of type Mutex. +class MutexBase { + public: + // Acquires this mutex. + void Lock() { + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_)); + owner_ = pthread_self(); + has_owner_ = true; + } + + // Releases this mutex. + void Unlock() { + // Since the lock is being released the owner_ field should no longer be + // considered valid. We don't protect writing to has_owner_ here, as it's + // the caller's responsibility to ensure that the current thread holds the + // mutex when this is called. + has_owner_ = false; + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_)); + } + + // Does nothing if the current thread holds the mutex. Otherwise, crashes + // with high probability. + void AssertHeld() const { + GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self())) + << "The current thread is not holding the mutex @" << this; + } + + // A static mutex may be used before main() is entered. It may even + // be used before the dynamic initialization stage. Therefore we + // must be able to initialize a static mutex object at link time. + // This means MutexBase has to be a POD and its member variables + // have to be public. + public: + pthread_mutex_t mutex_; // The underlying pthread mutex. + // has_owner_ indicates whether the owner_ field below contains a valid thread + // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All + // accesses to the owner_ field should be protected by a check of this field. + // An alternative might be to memset() owner_ to all zeros, but there's no + // guarantee that a zero'd pthread_t is necessarily invalid or even different + // from pthread_self(). + bool has_owner_; + pthread_t owner_; // The thread holding the mutex. +}; + +// Forward-declares a static mutex. +# define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ + extern ::testing::internal::MutexBase mutex + +// Defines and statically (i.e. at link time) initializes a static mutex. +// The initialization list here does not explicitly initialize each field, +// instead relying on default initialization for the unspecified fields. In +// particular, the owner_ field (a pthread_t) is not explicitly initialized. +// This allows initialization to work whether pthread_t is a scalar or struct. +// The flag -Wmissing-field-initializers must not be specified for this to work. +# define GTEST_DEFINE_STATIC_MUTEX_(mutex) \ + ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, false } + +// The Mutex class can only be used for mutexes created at runtime. It +// shares its API with MutexBase otherwise. +class Mutex : public MutexBase { + public: + Mutex() { + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL)); + has_owner_ = false; + } + ~Mutex() { + GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&mutex_)); + } + + private: + GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex); +}; + +// We cannot name this class MutexLock as the ctor declaration would +// conflict with a macro named MutexLock, which is defined on some +// platforms. Hence the typedef trick below. +class GTestMutexLock { + public: + explicit GTestMutexLock(MutexBase* mutex) + : mutex_(mutex) { mutex_->Lock(); } + + ~GTestMutexLock() { mutex_->Unlock(); } + + private: + MutexBase* const mutex_; + + GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock); +}; + +typedef GTestMutexLock MutexLock; + +// Helpers for ThreadLocal. + +// pthread_key_create() requires DeleteThreadLocalValue() to have +// C-linkage. Therefore it cannot be templatized to access +// ThreadLocal. Hence the need for class +// ThreadLocalValueHolderBase. +class ThreadLocalValueHolderBase { + public: + virtual ~ThreadLocalValueHolderBase() {} +}; + +// Called by pthread to delete thread-local data stored by +// pthread_setspecific(). +extern "C" inline void DeleteThreadLocalValue(void* value_holder) { + delete static_cast(value_holder); +} + +// Implements thread-local storage on pthreads-based systems. +// +// // Thread 1 +// ThreadLocal tl(100); // 100 is the default value for each thread. +// +// // Thread 2 +// tl.set(150); // Changes the value for thread 2 only. +// EXPECT_EQ(150, tl.get()); +// +// // Thread 1 +// EXPECT_EQ(100, tl.get()); // In thread 1, tl has the original value. +// tl.set(200); +// EXPECT_EQ(200, tl.get()); +// +// The template type argument T must have a public copy constructor. +// In addition, the default ThreadLocal constructor requires T to have +// a public default constructor. +// +// An object managed for a thread by a ThreadLocal instance is deleted +// when the thread exits. Or, if the ThreadLocal instance dies in +// that thread, when the ThreadLocal dies. It's the user's +// responsibility to ensure that all other threads using a ThreadLocal +// have exited when it dies, or the per-thread objects for those +// threads will not be deleted. +// +// Google Test only uses global ThreadLocal objects. That means they +// will die after main() has returned. Therefore, no per-thread +// object managed by Google Test will be leaked as long as all threads +// using Google Test have exited when main() returns. +template +class ThreadLocal { + public: + ThreadLocal() : key_(CreateKey()), + default_() {} + explicit ThreadLocal(const T& value) : key_(CreateKey()), + default_(value) {} + + ~ThreadLocal() { + // Destroys the managed object for the current thread, if any. + DeleteThreadLocalValue(pthread_getspecific(key_)); + + // Releases resources associated with the key. This will *not* + // delete managed objects for other threads. + GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_)); + } + + T* pointer() { return GetOrCreateValue(); } + const T* pointer() const { return GetOrCreateValue(); } + const T& get() const { return *pointer(); } + void set(const T& value) { *pointer() = value; } + + private: + // Holds a value of type T. + class ValueHolder : public ThreadLocalValueHolderBase { + public: + explicit ValueHolder(const T& value) : value_(value) {} + + T* pointer() { return &value_; } + + private: + T value_; + GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder); + }; + + static pthread_key_t CreateKey() { + pthread_key_t key; + // When a thread exits, DeleteThreadLocalValue() will be called on + // the object managed for that thread. + GTEST_CHECK_POSIX_SUCCESS_( + pthread_key_create(&key, &DeleteThreadLocalValue)); + return key; + } + + T* GetOrCreateValue() const { + ThreadLocalValueHolderBase* const holder = + static_cast(pthread_getspecific(key_)); + if (holder != NULL) { + return CheckedDowncastToActualType(holder)->pointer(); + } + + ValueHolder* const new_holder = new ValueHolder(default_); + ThreadLocalValueHolderBase* const holder_base = new_holder; + GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base)); + return new_holder->pointer(); + } + + // A key pthreads uses for looking up per-thread values. + const pthread_key_t key_; + const T default_; // The default value for each thread. + + GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal); +}; + +# define GTEST_IS_THREADSAFE 1 + +#else // GTEST_HAS_PTHREAD + +// A dummy implementation of synchronization primitives (mutex, lock, +// and thread-local variable). Necessary for compiling Google Test where +// mutex is not supported - using Google Test in multiple threads is not +// supported on such platforms. + +class Mutex { + public: + Mutex() {} + void Lock() {} + void Unlock() {} + void AssertHeld() const {} +}; + +# define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ + extern ::testing::internal::Mutex mutex + +# define GTEST_DEFINE_STATIC_MUTEX_(mutex) ::testing::internal::Mutex mutex + +class GTestMutexLock { + public: + explicit GTestMutexLock(Mutex*) {} // NOLINT +}; + +typedef GTestMutexLock MutexLock; + +template +class ThreadLocal { + public: + ThreadLocal() : value_() {} + explicit ThreadLocal(const T& value) : value_(value) {} + T* pointer() { return &value_; } + const T* pointer() const { return &value_; } + const T& get() const { return value_; } + void set(const T& value) { value_ = value; } + private: + T value_; +}; + +// The above synchronization primitives have dummy implementations. +// Therefore Google Test is not thread-safe. +# define GTEST_IS_THREADSAFE 0 + +#endif // GTEST_HAS_PTHREAD + +// Returns the number of threads running in the process, or 0 to indicate that +// we cannot detect it. +GTEST_API_ size_t GetThreadCount(); + +// Passing non-POD classes through ellipsis (...) crashes the ARM +// compiler and generates a warning in Sun Studio. The Nokia Symbian +// and the IBM XL C/C++ compiler try to instantiate a copy constructor +// for objects passed through ellipsis (...), failing for uncopyable +// objects. We define this to ensure that only POD is passed through +// ellipsis on these systems. +#if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC) +// We lose support for NULL detection where the compiler doesn't like +// passing non-POD classes through ellipsis (...). +# define GTEST_ELLIPSIS_NEEDS_POD_ 1 +#else +# define GTEST_CAN_COMPARE_NULL 1 +#endif + +// The Nokia Symbian and IBM XL C/C++ compilers cannot decide between +// const T& and const T* in a function template. These compilers +// _can_ decide between class template specializations for T and T*, +// so a tr1::type_traits-like is_pointer works. +#if defined(__SYMBIAN32__) || defined(__IBMCPP__) +# define GTEST_NEEDS_IS_POINTER_ 1 +#endif + +template +struct bool_constant { + typedef bool_constant type; + static const bool value = bool_value; +}; +template const bool bool_constant::value; + +typedef bool_constant false_type; +typedef bool_constant true_type; + +template +struct is_pointer : public false_type {}; + +template +struct is_pointer : public true_type {}; + +template +struct IteratorTraits { + typedef typename Iterator::value_type value_type; +}; + +template +struct IteratorTraits { + typedef T value_type; +}; + +template +struct IteratorTraits { + typedef T value_type; +}; + +#if GTEST_OS_WINDOWS +# define GTEST_PATH_SEP_ "\\" +# define GTEST_HAS_ALT_PATH_SEP_ 1 +// The biggest signed integer type the compiler supports. +typedef __int64 BiggestInt; +#else +# define GTEST_PATH_SEP_ "/" +# define GTEST_HAS_ALT_PATH_SEP_ 0 +typedef long long BiggestInt; // NOLINT +#endif // GTEST_OS_WINDOWS + +// Utilities for char. + +// isspace(int ch) and friends accept an unsigned char or EOF. char +// may be signed, depending on the compiler (or compiler flags). +// Therefore we need to cast a char to unsigned char before calling +// isspace(), etc. + +inline bool IsAlpha(char ch) { + return isalpha(static_cast(ch)) != 0; +} +inline bool IsAlNum(char ch) { + return isalnum(static_cast(ch)) != 0; +} +inline bool IsDigit(char ch) { + return isdigit(static_cast(ch)) != 0; +} +inline bool IsLower(char ch) { + return islower(static_cast(ch)) != 0; +} +inline bool IsSpace(char ch) { + return isspace(static_cast(ch)) != 0; +} +inline bool IsUpper(char ch) { + return isupper(static_cast(ch)) != 0; +} +inline bool IsXDigit(char ch) { + return isxdigit(static_cast(ch)) != 0; +} +inline bool IsXDigit(wchar_t ch) { + const unsigned char low_byte = static_cast(ch); + return ch == low_byte && isxdigit(low_byte) != 0; +} + +inline char ToLower(char ch) { + return static_cast(tolower(static_cast(ch))); +} +inline char ToUpper(char ch) { + return static_cast(toupper(static_cast(ch))); +} + +// The testing::internal::posix namespace holds wrappers for common +// POSIX functions. These wrappers hide the differences between +// Windows/MSVC and POSIX systems. Since some compilers define these +// standard functions as macros, the wrapper cannot have the same name +// as the wrapped function. + +namespace posix { + +// Functions with a different name on Windows. + +#if GTEST_OS_WINDOWS + +typedef struct _stat StatStruct; + +# ifdef __BORLANDC__ +inline int IsATTY(int fd) { return isatty(fd); } +inline int StrCaseCmp(const char* s1, const char* s2) { + return stricmp(s1, s2); +} +inline char* StrDup(const char* src) { return strdup(src); } +# else // !__BORLANDC__ +# if GTEST_OS_WINDOWS_MOBILE +inline int IsATTY(int /* fd */) { return 0; } +# else +inline int IsATTY(int fd) { return _isatty(fd); } +# endif // GTEST_OS_WINDOWS_MOBILE +inline int StrCaseCmp(const char* s1, const char* s2) { + return _stricmp(s1, s2); +} +inline char* StrDup(const char* src) { return _strdup(src); } +# endif // __BORLANDC__ + +# if GTEST_OS_WINDOWS_MOBILE +inline int FileNo(FILE* file) { return reinterpret_cast(_fileno(file)); } +// Stat(), RmDir(), and IsDir() are not needed on Windows CE at this +// time and thus not defined there. +# else +inline int FileNo(FILE* file) { return _fileno(file); } +inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } +inline int RmDir(const char* dir) { return _rmdir(dir); } +inline bool IsDir(const StatStruct& st) { + return (_S_IFDIR & st.st_mode) != 0; +} +# endif // GTEST_OS_WINDOWS_MOBILE + +#else + +typedef struct stat StatStruct; + +inline int FileNo(FILE* file) { return fileno(file); } +inline int IsATTY(int fd) { return isatty(fd); } +inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); } +inline int StrCaseCmp(const char* s1, const char* s2) { + return strcasecmp(s1, s2); +} +inline char* StrDup(const char* src) { return strdup(src); } +inline int RmDir(const char* dir) { return rmdir(dir); } +inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); } + +#endif // GTEST_OS_WINDOWS + +// Functions deprecated by MSVC 8.0. + +#ifdef _MSC_VER +// Temporarily disable warning 4996 (deprecated function). +# pragma warning(push) +# pragma warning(disable:4996) +#endif + +inline const char* StrNCpy(char* dest, const char* src, size_t n) { + return strncpy(dest, src, n); +} + +// ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and +// StrError() aren't needed on Windows CE at this time and thus not +// defined there. + +#if !GTEST_OS_WINDOWS_MOBILE +inline int ChDir(const char* dir) { return chdir(dir); } +#endif +inline FILE* FOpen(const char* path, const char* mode) { + return fopen(path, mode); +} +#if !GTEST_OS_WINDOWS_MOBILE +inline FILE *FReopen(const char* path, const char* mode, FILE* stream) { + return freopen(path, mode, stream); +} +inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); } +#endif +inline int FClose(FILE* fp) { return fclose(fp); } +#if !GTEST_OS_WINDOWS_MOBILE +inline int Read(int fd, void* buf, unsigned int count) { + return static_cast(read(fd, buf, count)); +} +inline int Write(int fd, const void* buf, unsigned int count) { + return static_cast(write(fd, buf, count)); +} +inline int Close(int fd) { return close(fd); } +inline const char* StrError(int errnum) { return strerror(errnum); } +#endif +inline const char* GetEnv(const char* name) { +#if GTEST_OS_WINDOWS_MOBILE + // We are on Windows CE, which has no environment variables. + return NULL; +#elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9) + // Environment variables which we programmatically clear will be set to the + // empty string rather than unset (NULL). Handle that case. + const char* const env = getenv(name); + return (env != NULL && env[0] != '\0') ? env : NULL; +#else + return getenv(name); +#endif +} + +#ifdef _MSC_VER +# pragma warning(pop) // Restores the warning state. +#endif + +#if GTEST_OS_WINDOWS_MOBILE +// Windows CE has no C library. The abort() function is used in +// several places in Google Test. This implementation provides a reasonable +// imitation of standard behaviour. +void Abort(); +#else +inline void Abort() { abort(); } +#endif // GTEST_OS_WINDOWS_MOBILE + +} // namespace posix + +// MSVC "deprecates" snprintf and issues warnings wherever it is used. In +// order to avoid these warnings, we need to use _snprintf or _snprintf_s on +// MSVC-based platforms. We map the GTEST_SNPRINTF_ macro to the appropriate +// function in order to achieve that. We use macro definition here because +// snprintf is a variadic function. +#if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE +// MSVC 2005 and above support variadic macros. +# define GTEST_SNPRINTF_(buffer, size, format, ...) \ + _snprintf_s(buffer, size, size, format, __VA_ARGS__) +#elif defined(_MSC_VER) +// Windows CE does not define _snprintf_s and MSVC prior to 2005 doesn't +// complain about _snprintf. +# define GTEST_SNPRINTF_ _snprintf +#else +# define GTEST_SNPRINTF_ snprintf +#endif + +// The maximum number a BiggestInt can represent. This definition +// works no matter BiggestInt is represented in one's complement or +// two's complement. +// +// We cannot rely on numeric_limits in STL, as __int64 and long long +// are not part of standard C++ and numeric_limits doesn't need to be +// defined for them. +const BiggestInt kMaxBiggestInt = + ~(static_cast(1) << (8*sizeof(BiggestInt) - 1)); + +// This template class serves as a compile-time function from size to +// type. It maps a size in bytes to a primitive type with that +// size. e.g. +// +// TypeWithSize<4>::UInt +// +// is typedef-ed to be unsigned int (unsigned integer made up of 4 +// bytes). +// +// Such functionality should belong to STL, but I cannot find it +// there. +// +// Google Test uses this class in the implementation of floating-point +// comparison. +// +// For now it only handles UInt (unsigned int) as that's all Google Test +// needs. Other types can be easily added in the future if need +// arises. +template +class TypeWithSize { + public: + // This prevents the user from using TypeWithSize with incorrect + // values of N. + typedef void UInt; +}; + +// The specialization for size 4. +template <> +class TypeWithSize<4> { + public: + // unsigned int has size 4 in both gcc and MSVC. + // + // As base/basictypes.h doesn't compile on Windows, we cannot use + // uint32, uint64, and etc here. + typedef int Int; + typedef unsigned int UInt; +}; + +// The specialization for size 8. +template <> +class TypeWithSize<8> { + public: +#if GTEST_OS_WINDOWS + typedef __int64 Int; + typedef unsigned __int64 UInt; +#else + typedef long long Int; // NOLINT + typedef unsigned long long UInt; // NOLINT +#endif // GTEST_OS_WINDOWS +}; + +// Integer types of known sizes. +typedef TypeWithSize<4>::Int Int32; +typedef TypeWithSize<4>::UInt UInt32; +typedef TypeWithSize<8>::Int Int64; +typedef TypeWithSize<8>::UInt UInt64; +typedef TypeWithSize<8>::Int TimeInMillis; // Represents time in milliseconds. + +// Utilities for command line flags and environment variables. + +// Macro for referencing flags. +#define GTEST_FLAG(name) FLAGS_gtest_##name + +// Macros for declaring flags. +#define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name) +#define GTEST_DECLARE_int32_(name) \ + GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name) +#define GTEST_DECLARE_string_(name) \ + GTEST_API_ extern ::std::string GTEST_FLAG(name) + +// Macros for defining flags. +#define GTEST_DEFINE_bool_(name, default_val, doc) \ + GTEST_API_ bool GTEST_FLAG(name) = (default_val) +#define GTEST_DEFINE_int32_(name, default_val, doc) \ + GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val) +#define GTEST_DEFINE_string_(name, default_val, doc) \ + GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val) + +// Thread annotations +#define GTEST_EXCLUSIVE_LOCK_REQUIRED_(locks) +#define GTEST_LOCK_EXCLUDED_(locks) + +// Parses 'str' for a 32-bit signed integer. If successful, writes the result +// to *value and returns true; otherwise leaves *value unchanged and returns +// false. +// TODO(chandlerc): Find a better way to refactor flag and environment parsing +// out of both gtest-port.cc and gtest.cc to avoid exporting this utility +// function. +bool ParseInt32(const Message& src_text, const char* str, Int32* value); + +// Parses a bool/Int32/string from the environment variable +// corresponding to the given Google Test flag. +bool BoolFromGTestEnv(const char* flag, bool default_val); +GTEST_API_ Int32 Int32FromGTestEnv(const char* flag, Int32 default_val); +const char* StringFromGTestEnv(const char* flag, const char* default_val); + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-string.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-string.h new file mode 100644 index 000000000..97f1a7fdd --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-string.h @@ -0,0 +1,167 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee) +// +// The Google C++ Testing Framework (Google Test) +// +// This header file declares the String class and functions used internally by +// Google Test. They are subject to change without notice. They should not used +// by code external to Google Test. +// +// This header file is #included by . +// It should not be #included by other files. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ + +#ifdef __BORLANDC__ +// string.h is not guaranteed to provide strcpy on C++ Builder. +# include +#endif + +#include +#include + +#include "gtest/internal/gtest-port.h" + +namespace testing { +namespace internal { + +// String - an abstract class holding static string utilities. +class GTEST_API_ String { + public: + // Static utility methods + + // Clones a 0-terminated C string, allocating memory using new. The + // caller is responsible for deleting the return value using + // delete[]. Returns the cloned string, or NULL if the input is + // NULL. + // + // This is different from strdup() in string.h, which allocates + // memory using malloc(). + static const char* CloneCString(const char* c_str); + +#if GTEST_OS_WINDOWS_MOBILE + // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be + // able to pass strings to Win32 APIs on CE we need to convert them + // to 'Unicode', UTF-16. + + // Creates a UTF-16 wide string from the given ANSI string, allocating + // memory using new. The caller is responsible for deleting the return + // value using delete[]. Returns the wide string, or NULL if the + // input is NULL. + // + // The wide string is created using the ANSI codepage (CP_ACP) to + // match the behaviour of the ANSI versions of Win32 calls and the + // C runtime. + static LPCWSTR AnsiToUtf16(const char* c_str); + + // Creates an ANSI string from the given wide string, allocating + // memory using new. The caller is responsible for deleting the return + // value using delete[]. Returns the ANSI string, or NULL if the + // input is NULL. + // + // The returned string is created using the ANSI codepage (CP_ACP) to + // match the behaviour of the ANSI versions of Win32 calls and the + // C runtime. + static const char* Utf16ToAnsi(LPCWSTR utf16_str); +#endif + + // Compares two C strings. Returns true iff they have the same content. + // + // Unlike strcmp(), this function can handle NULL argument(s). A + // NULL C string is considered different to any non-NULL C string, + // including the empty string. + static bool CStringEquals(const char* lhs, const char* rhs); + + // Converts a wide C string to a String using the UTF-8 encoding. + // NULL will be converted to "(null)". If an error occurred during + // the conversion, "(failed to convert from wide string)" is + // returned. + static std::string ShowWideCString(const wchar_t* wide_c_str); + + // Compares two wide C strings. Returns true iff they have the same + // content. + // + // Unlike wcscmp(), this function can handle NULL argument(s). A + // NULL C string is considered different to any non-NULL C string, + // including the empty string. + static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); + + // Compares two C strings, ignoring case. Returns true iff they + // have the same content. + // + // Unlike strcasecmp(), this function can handle NULL argument(s). + // A NULL C string is considered different to any non-NULL C string, + // including the empty string. + static bool CaseInsensitiveCStringEquals(const char* lhs, + const char* rhs); + + // Compares two wide C strings, ignoring case. Returns true iff they + // have the same content. + // + // Unlike wcscasecmp(), this function can handle NULL argument(s). + // A NULL C string is considered different to any non-NULL wide C string, + // including the empty string. + // NB: The implementations on different platforms slightly differ. + // On windows, this method uses _wcsicmp which compares according to LC_CTYPE + // environment variable. On GNU platform this method uses wcscasecmp + // which compares according to LC_CTYPE category of the current locale. + // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the + // current locale. + static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs, + const wchar_t* rhs); + + // Returns true iff the given string ends with the given suffix, ignoring + // case. Any string is considered to end with an empty suffix. + static bool EndsWithCaseInsensitive( + const std::string& str, const std::string& suffix); + + // Formats an int value as "%02d". + static std::string FormatIntWidth2(int value); // "%02d" for width == 2 + + // Formats an int value as "%X". + static std::string FormatHexInt(int value); + + // Formats a byte as "%02X". + static std::string FormatByte(unsigned char value); + + private: + String(); // Not meant to be instantiated. +}; // class String + +// Gets the content of the stringstream's buffer as an std::string. Each '\0' +// character in the buffer is replaced with "\\0". +GTEST_API_ std::string StringStreamToString(::std::stringstream* stream); + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h new file mode 100644 index 000000000..7b3dfc312 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h @@ -0,0 +1,1012 @@ +// This file was GENERATED by command: +// pump.py gtest-tuple.h.pump +// DO NOT EDIT BY HAND!!! + +// Copyright 2009 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Implements a subset of TR1 tuple needed by Google Test and Google Mock. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ + +#include // For ::std::pair. + +// The compiler used in Symbian has a bug that prevents us from declaring the +// tuple template as a friend (it complains that tuple is redefined). This +// hack bypasses the bug by declaring the members that should otherwise be +// private as public. +// Sun Studio versions < 12 also have the above bug. +#if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590) +# define GTEST_DECLARE_TUPLE_AS_FRIEND_ public: +#else +# define GTEST_DECLARE_TUPLE_AS_FRIEND_ \ + template friend class tuple; \ + private: +#endif + +// GTEST_n_TUPLE_(T) is the type of an n-tuple. +#define GTEST_0_TUPLE_(T) tuple<> +#define GTEST_1_TUPLE_(T) tuple +#define GTEST_2_TUPLE_(T) tuple +#define GTEST_3_TUPLE_(T) tuple +#define GTEST_4_TUPLE_(T) tuple +#define GTEST_5_TUPLE_(T) tuple +#define GTEST_6_TUPLE_(T) tuple +#define GTEST_7_TUPLE_(T) tuple +#define GTEST_8_TUPLE_(T) tuple +#define GTEST_9_TUPLE_(T) tuple +#define GTEST_10_TUPLE_(T) tuple + +// GTEST_n_TYPENAMES_(T) declares a list of n typenames. +#define GTEST_0_TYPENAMES_(T) +#define GTEST_1_TYPENAMES_(T) typename T##0 +#define GTEST_2_TYPENAMES_(T) typename T##0, typename T##1 +#define GTEST_3_TYPENAMES_(T) typename T##0, typename T##1, typename T##2 +#define GTEST_4_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3 +#define GTEST_5_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4 +#define GTEST_6_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4, typename T##5 +#define GTEST_7_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4, typename T##5, typename T##6 +#define GTEST_8_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4, typename T##5, typename T##6, typename T##7 +#define GTEST_9_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4, typename T##5, typename T##6, \ + typename T##7, typename T##8 +#define GTEST_10_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ + typename T##3, typename T##4, typename T##5, typename T##6, \ + typename T##7, typename T##8, typename T##9 + +// In theory, defining stuff in the ::std namespace is undefined +// behavior. We can do this as we are playing the role of a standard +// library vendor. +namespace std { +namespace tr1 { + +template +class tuple; + +// Anything in namespace gtest_internal is Google Test's INTERNAL +// IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code. +namespace gtest_internal { + +// ByRef::type is T if T is a reference; otherwise it's const T&. +template +struct ByRef { typedef const T& type; }; // NOLINT +template +struct ByRef { typedef T& type; }; // NOLINT + +// A handy wrapper for ByRef. +#define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef::type + +// AddRef::type is T if T is a reference; otherwise it's T&. This +// is the same as tr1::add_reference::type. +template +struct AddRef { typedef T& type; }; // NOLINT +template +struct AddRef { typedef T& type; }; // NOLINT + +// A handy wrapper for AddRef. +#define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef::type + +// A helper for implementing get(). +template class Get; + +// A helper for implementing tuple_element. kIndexValid is true +// iff k < the number of fields in tuple type T. +template +struct TupleElement; + +template +struct TupleElement { + typedef T0 type; +}; + +template +struct TupleElement { + typedef T1 type; +}; + +template +struct TupleElement { + typedef T2 type; +}; + +template +struct TupleElement { + typedef T3 type; +}; + +template +struct TupleElement { + typedef T4 type; +}; + +template +struct TupleElement { + typedef T5 type; +}; + +template +struct TupleElement { + typedef T6 type; +}; + +template +struct TupleElement { + typedef T7 type; +}; + +template +struct TupleElement { + typedef T8 type; +}; + +template +struct TupleElement { + typedef T9 type; +}; + +} // namespace gtest_internal + +template <> +class tuple<> { + public: + tuple() {} + tuple(const tuple& /* t */) {} + tuple& operator=(const tuple& /* t */) { return *this; } +}; + +template +class GTEST_1_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0) : f0_(f0) {} + + tuple(const tuple& t) : f0_(t.f0_) {} + + template + tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_1_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) { + f0_ = t.f0_; + return *this; + } + + T0 f0_; +}; + +template +class GTEST_2_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1) : f0_(f0), + f1_(f1) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} + + template + tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {} + template + tuple(const ::std::pair& p) : f0_(p.first), f1_(p.second) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_2_TUPLE_(U)& t) { + return CopyFrom(t); + } + template + tuple& operator=(const ::std::pair& p) { + f0_ = p.first; + f1_ = p.second; + return *this; + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + return *this; + } + + T0 f0_; + T1 f1_; +}; + +template +class GTEST_3_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2) : f0_(f0), f1_(f1), f2_(f2) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} + + template + tuple(const GTEST_3_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_3_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; +}; + +template +class GTEST_4_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2), + f3_(f3) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} + + template + tuple(const GTEST_4_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_4_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_4_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; +}; + +template +class GTEST_5_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, + GTEST_BY_REF_(T4) f4) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_) {} + + template + tuple(const GTEST_5_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_5_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_5_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; +}; + +template +class GTEST_6_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, + GTEST_BY_REF_(T5) f5) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), + f5_(f5) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_), f5_(t.f5_) {} + + template + tuple(const GTEST_6_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_6_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_6_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + f5_ = t.f5_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; + T5 f5_; +}; + +template +class GTEST_7_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, + GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6) : f0_(f0), f1_(f1), f2_(f2), + f3_(f3), f4_(f4), f5_(f5), f6_(f6) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} + + template + tuple(const GTEST_7_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_7_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_7_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + f5_ = t.f5_; + f6_ = t.f6_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; + T5 f5_; + T6 f6_; +}; + +template +class GTEST_8_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, + GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, + GTEST_BY_REF_(T7) f7) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), + f5_(f5), f6_(f6), f7_(f7) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} + + template + tuple(const GTEST_8_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_8_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_8_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + f5_ = t.f5_; + f6_ = t.f6_; + f7_ = t.f7_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; + T5 f5_; + T6 f6_; + T7 f7_; +}; + +template +class GTEST_9_TUPLE_(T) { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, + GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, + GTEST_BY_REF_(T8) f8) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), + f5_(f5), f6_(f6), f7_(f7), f8_(f8) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} + + template + tuple(const GTEST_9_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_9_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_9_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + f5_ = t.f5_; + f6_ = t.f6_; + f7_ = t.f7_; + f8_ = t.f8_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; + T5 f5_; + T6 f6_; + T7 f7_; + T8 f8_; +}; + +template +class tuple { + public: + template friend class gtest_internal::Get; + + tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), + f9_() {} + + explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, + GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, + GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, + GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2), + f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {} + + tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), + f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {} + + template + tuple(const GTEST_10_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), + f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), + f9_(t.f9_) {} + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_10_TUPLE_(U)& t) { + return CopyFrom(t); + } + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_10_TUPLE_(U)& t) { + f0_ = t.f0_; + f1_ = t.f1_; + f2_ = t.f2_; + f3_ = t.f3_; + f4_ = t.f4_; + f5_ = t.f5_; + f6_ = t.f6_; + f7_ = t.f7_; + f8_ = t.f8_; + f9_ = t.f9_; + return *this; + } + + T0 f0_; + T1 f1_; + T2 f2_; + T3 f3_; + T4 f4_; + T5 f5_; + T6 f6_; + T7 f7_; + T8 f8_; + T9 f9_; +}; + +// 6.1.3.2 Tuple creation functions. + +// Known limitations: we don't support passing an +// std::tr1::reference_wrapper to make_tuple(). And we don't +// implement tie(). + +inline tuple<> make_tuple() { return tuple<>(); } + +template +inline GTEST_1_TUPLE_(T) make_tuple(const T0& f0) { + return GTEST_1_TUPLE_(T)(f0); +} + +template +inline GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) { + return GTEST_2_TUPLE_(T)(f0, f1); +} + +template +inline GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) { + return GTEST_3_TUPLE_(T)(f0, f1, f2); +} + +template +inline GTEST_4_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3) { + return GTEST_4_TUPLE_(T)(f0, f1, f2, f3); +} + +template +inline GTEST_5_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4) { + return GTEST_5_TUPLE_(T)(f0, f1, f2, f3, f4); +} + +template +inline GTEST_6_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4, const T5& f5) { + return GTEST_6_TUPLE_(T)(f0, f1, f2, f3, f4, f5); +} + +template +inline GTEST_7_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4, const T5& f5, const T6& f6) { + return GTEST_7_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6); +} + +template +inline GTEST_8_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7) { + return GTEST_8_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7); +} + +template +inline GTEST_9_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, + const T8& f8) { + return GTEST_9_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8); +} + +template +inline GTEST_10_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, + const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, + const T8& f8, const T9& f9) { + return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9); +} + +// 6.1.3.3 Tuple helper classes. + +template struct tuple_size; + +template +struct tuple_size { + static const int value = 0; +}; + +template +struct tuple_size { + static const int value = 1; +}; + +template +struct tuple_size { + static const int value = 2; +}; + +template +struct tuple_size { + static const int value = 3; +}; + +template +struct tuple_size { + static const int value = 4; +}; + +template +struct tuple_size { + static const int value = 5; +}; + +template +struct tuple_size { + static const int value = 6; +}; + +template +struct tuple_size { + static const int value = 7; +}; + +template +struct tuple_size { + static const int value = 8; +}; + +template +struct tuple_size { + static const int value = 9; +}; + +template +struct tuple_size { + static const int value = 10; +}; + +template +struct tuple_element { + typedef typename gtest_internal::TupleElement< + k < (tuple_size::value), k, Tuple>::type type; +}; + +#define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element::type + +// 6.1.3.4 Element access. + +namespace gtest_internal { + +template <> +class Get<0> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) + Field(Tuple& t) { return t.f0_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) + ConstField(const Tuple& t) { return t.f0_; } +}; + +template <> +class Get<1> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) + Field(Tuple& t) { return t.f1_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) + ConstField(const Tuple& t) { return t.f1_; } +}; + +template <> +class Get<2> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) + Field(Tuple& t) { return t.f2_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) + ConstField(const Tuple& t) { return t.f2_; } +}; + +template <> +class Get<3> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) + Field(Tuple& t) { return t.f3_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) + ConstField(const Tuple& t) { return t.f3_; } +}; + +template <> +class Get<4> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) + Field(Tuple& t) { return t.f4_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) + ConstField(const Tuple& t) { return t.f4_; } +}; + +template <> +class Get<5> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) + Field(Tuple& t) { return t.f5_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) + ConstField(const Tuple& t) { return t.f5_; } +}; + +template <> +class Get<6> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) + Field(Tuple& t) { return t.f6_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) + ConstField(const Tuple& t) { return t.f6_; } +}; + +template <> +class Get<7> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) + Field(Tuple& t) { return t.f7_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) + ConstField(const Tuple& t) { return t.f7_; } +}; + +template <> +class Get<8> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) + Field(Tuple& t) { return t.f8_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) + ConstField(const Tuple& t) { return t.f8_; } +}; + +template <> +class Get<9> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) + Field(Tuple& t) { return t.f9_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) + ConstField(const Tuple& t) { return t.f9_; } +}; + +} // namespace gtest_internal + +template +GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) +get(GTEST_10_TUPLE_(T)& t) { + return gtest_internal::Get::Field(t); +} + +template +GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) +get(const GTEST_10_TUPLE_(T)& t) { + return gtest_internal::Get::ConstField(t); +} + +// 6.1.3.5 Relational operators + +// We only implement == and !=, as we don't have a need for the rest yet. + +namespace gtest_internal { + +// SameSizeTuplePrefixComparator::Eq(t1, t2) returns true if the +// first k fields of t1 equals the first k fields of t2. +// SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if +// k1 != k2. +template +struct SameSizeTuplePrefixComparator; + +template <> +struct SameSizeTuplePrefixComparator<0, 0> { + template + static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) { + return true; + } +}; + +template +struct SameSizeTuplePrefixComparator { + template + static bool Eq(const Tuple1& t1, const Tuple2& t2) { + return SameSizeTuplePrefixComparator::Eq(t1, t2) && + ::std::tr1::get(t1) == ::std::tr1::get(t2); + } +}; + +} // namespace gtest_internal + +template +inline bool operator==(const GTEST_10_TUPLE_(T)& t, + const GTEST_10_TUPLE_(U)& u) { + return gtest_internal::SameSizeTuplePrefixComparator< + tuple_size::value, + tuple_size::value>::Eq(t, u); +} + +template +inline bool operator!=(const GTEST_10_TUPLE_(T)& t, + const GTEST_10_TUPLE_(U)& u) { return !(t == u); } + +// 6.1.4 Pairs. +// Unimplemented. + +} // namespace tr1 +} // namespace std + +#undef GTEST_0_TUPLE_ +#undef GTEST_1_TUPLE_ +#undef GTEST_2_TUPLE_ +#undef GTEST_3_TUPLE_ +#undef GTEST_4_TUPLE_ +#undef GTEST_5_TUPLE_ +#undef GTEST_6_TUPLE_ +#undef GTEST_7_TUPLE_ +#undef GTEST_8_TUPLE_ +#undef GTEST_9_TUPLE_ +#undef GTEST_10_TUPLE_ + +#undef GTEST_0_TYPENAMES_ +#undef GTEST_1_TYPENAMES_ +#undef GTEST_2_TYPENAMES_ +#undef GTEST_3_TYPENAMES_ +#undef GTEST_4_TYPENAMES_ +#undef GTEST_5_TYPENAMES_ +#undef GTEST_6_TYPENAMES_ +#undef GTEST_7_TYPENAMES_ +#undef GTEST_8_TYPENAMES_ +#undef GTEST_9_TYPENAMES_ +#undef GTEST_10_TYPENAMES_ + +#undef GTEST_DECLARE_TUPLE_AS_FRIEND_ +#undef GTEST_BY_REF_ +#undef GTEST_ADD_REF_ +#undef GTEST_TUPLE_ELEMENT_ + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump new file mode 100644 index 000000000..c7d9e039b --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-tuple.h.pump @@ -0,0 +1,339 @@ +$$ -*- mode: c++; -*- +$var n = 10 $$ Maximum number of tuple fields we want to support. +$$ This meta comment fixes auto-indentation in Emacs. }} +// Copyright 2009 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Implements a subset of TR1 tuple needed by Google Test and Google Mock. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ + +#include // For ::std::pair. + +// The compiler used in Symbian has a bug that prevents us from declaring the +// tuple template as a friend (it complains that tuple is redefined). This +// hack bypasses the bug by declaring the members that should otherwise be +// private as public. +// Sun Studio versions < 12 also have the above bug. +#if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590) +# define GTEST_DECLARE_TUPLE_AS_FRIEND_ public: +#else +# define GTEST_DECLARE_TUPLE_AS_FRIEND_ \ + template friend class tuple; \ + private: +#endif + + +$range i 0..n-1 +$range j 0..n +$range k 1..n +// GTEST_n_TUPLE_(T) is the type of an n-tuple. +#define GTEST_0_TUPLE_(T) tuple<> + +$for k [[ +$range m 0..k-1 +$range m2 k..n-1 +#define GTEST_$(k)_TUPLE_(T) tuple<$for m, [[T##$m]]$for m2 [[, void]]> + +]] + +// GTEST_n_TYPENAMES_(T) declares a list of n typenames. + +$for j [[ +$range m 0..j-1 +#define GTEST_$(j)_TYPENAMES_(T) $for m, [[typename T##$m]] + + +]] + +// In theory, defining stuff in the ::std namespace is undefined +// behavior. We can do this as we are playing the role of a standard +// library vendor. +namespace std { +namespace tr1 { + +template <$for i, [[typename T$i = void]]> +class tuple; + +// Anything in namespace gtest_internal is Google Test's INTERNAL +// IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code. +namespace gtest_internal { + +// ByRef::type is T if T is a reference; otherwise it's const T&. +template +struct ByRef { typedef const T& type; }; // NOLINT +template +struct ByRef { typedef T& type; }; // NOLINT + +// A handy wrapper for ByRef. +#define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef::type + +// AddRef::type is T if T is a reference; otherwise it's T&. This +// is the same as tr1::add_reference::type. +template +struct AddRef { typedef T& type; }; // NOLINT +template +struct AddRef { typedef T& type; }; // NOLINT + +// A handy wrapper for AddRef. +#define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef::type + +// A helper for implementing get(). +template class Get; + +// A helper for implementing tuple_element. kIndexValid is true +// iff k < the number of fields in tuple type T. +template +struct TupleElement; + + +$for i [[ +template +struct TupleElement { + typedef T$i type; +}; + + +]] +} // namespace gtest_internal + +template <> +class tuple<> { + public: + tuple() {} + tuple(const tuple& /* t */) {} + tuple& operator=(const tuple& /* t */) { return *this; } +}; + + +$for k [[ +$range m 0..k-1 +template +class $if k < n [[GTEST_$(k)_TUPLE_(T)]] $else [[tuple]] { + public: + template friend class gtest_internal::Get; + + tuple() : $for m, [[f$(m)_()]] {} + + explicit tuple($for m, [[GTEST_BY_REF_(T$m) f$m]]) : [[]] +$for m, [[f$(m)_(f$m)]] {} + + tuple(const tuple& t) : $for m, [[f$(m)_(t.f$(m)_)]] {} + + template + tuple(const GTEST_$(k)_TUPLE_(U)& t) : $for m, [[f$(m)_(t.f$(m)_)]] {} + +$if k == 2 [[ + template + tuple(const ::std::pair& p) : f0_(p.first), f1_(p.second) {} + +]] + + tuple& operator=(const tuple& t) { return CopyFrom(t); } + + template + tuple& operator=(const GTEST_$(k)_TUPLE_(U)& t) { + return CopyFrom(t); + } + +$if k == 2 [[ + template + tuple& operator=(const ::std::pair& p) { + f0_ = p.first; + f1_ = p.second; + return *this; + } + +]] + + GTEST_DECLARE_TUPLE_AS_FRIEND_ + + template + tuple& CopyFrom(const GTEST_$(k)_TUPLE_(U)& t) { + +$for m [[ + f$(m)_ = t.f$(m)_; + +]] + return *this; + } + + +$for m [[ + T$m f$(m)_; + +]] +}; + + +]] +// 6.1.3.2 Tuple creation functions. + +// Known limitations: we don't support passing an +// std::tr1::reference_wrapper to make_tuple(). And we don't +// implement tie(). + +inline tuple<> make_tuple() { return tuple<>(); } + +$for k [[ +$range m 0..k-1 + +template +inline GTEST_$(k)_TUPLE_(T) make_tuple($for m, [[const T$m& f$m]]) { + return GTEST_$(k)_TUPLE_(T)($for m, [[f$m]]); +} + +]] + +// 6.1.3.3 Tuple helper classes. + +template struct tuple_size; + + +$for j [[ +template +struct tuple_size { + static const int value = $j; +}; + + +]] +template +struct tuple_element { + typedef typename gtest_internal::TupleElement< + k < (tuple_size::value), k, Tuple>::type type; +}; + +#define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element::type + +// 6.1.3.4 Element access. + +namespace gtest_internal { + + +$for i [[ +template <> +class Get<$i> { + public: + template + static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_($i, Tuple)) + Field(Tuple& t) { return t.f$(i)_; } // NOLINT + + template + static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_($i, Tuple)) + ConstField(const Tuple& t) { return t.f$(i)_; } +}; + + +]] +} // namespace gtest_internal + +template +GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_$(n)_TUPLE_(T))) +get(GTEST_$(n)_TUPLE_(T)& t) { + return gtest_internal::Get::Field(t); +} + +template +GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_$(n)_TUPLE_(T))) +get(const GTEST_$(n)_TUPLE_(T)& t) { + return gtest_internal::Get::ConstField(t); +} + +// 6.1.3.5 Relational operators + +// We only implement == and !=, as we don't have a need for the rest yet. + +namespace gtest_internal { + +// SameSizeTuplePrefixComparator::Eq(t1, t2) returns true if the +// first k fields of t1 equals the first k fields of t2. +// SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if +// k1 != k2. +template +struct SameSizeTuplePrefixComparator; + +template <> +struct SameSizeTuplePrefixComparator<0, 0> { + template + static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) { + return true; + } +}; + +template +struct SameSizeTuplePrefixComparator { + template + static bool Eq(const Tuple1& t1, const Tuple2& t2) { + return SameSizeTuplePrefixComparator::Eq(t1, t2) && + ::std::tr1::get(t1) == ::std::tr1::get(t2); + } +}; + +} // namespace gtest_internal + +template +inline bool operator==(const GTEST_$(n)_TUPLE_(T)& t, + const GTEST_$(n)_TUPLE_(U)& u) { + return gtest_internal::SameSizeTuplePrefixComparator< + tuple_size::value, + tuple_size::value>::Eq(t, u); +} + +template +inline bool operator!=(const GTEST_$(n)_TUPLE_(T)& t, + const GTEST_$(n)_TUPLE_(U)& u) { return !(t == u); } + +// 6.1.4 Pairs. +// Unimplemented. + +} // namespace tr1 +} // namespace std + + +$for j [[ +#undef GTEST_$(j)_TUPLE_ + +]] + + +$for j [[ +#undef GTEST_$(j)_TYPENAMES_ + +]] + +#undef GTEST_DECLARE_TUPLE_AS_FRIEND_ +#undef GTEST_BY_REF_ +#undef GTEST_ADD_REF_ +#undef GTEST_TUPLE_ELEMENT_ + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h new file mode 100644 index 000000000..e46f7cfcb --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h @@ -0,0 +1,3331 @@ +// This file was GENERATED by command: +// pump.py gtest-type-util.h.pump +// DO NOT EDIT BY HAND!!! + +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Type utilities needed for implementing typed and type-parameterized +// tests. This file is generated by a SCRIPT. DO NOT EDIT BY HAND! +// +// Currently we support at most 50 types in a list, and at most 50 +// type-parameterized tests in one type-parameterized test case. +// Please contact googletestframework@googlegroups.com if you need +// more. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ + +#include "gtest/internal/gtest-port.h" + +// #ifdef __GNUC__ is too general here. It is possible to use gcc without using +// libstdc++ (which is where cxxabi.h comes from). +# if GTEST_HAS_CXXABI_H_ +# include +# elif defined(__HP_aCC) +# include +# endif // GTEST_HASH_CXXABI_H_ + +namespace testing { +namespace internal { + +// GetTypeName() returns a human-readable name of type T. +// NB: This function is also used in Google Mock, so don't move it inside of +// the typed-test-only section below. +template +std::string GetTypeName() { +# if GTEST_HAS_RTTI + + const char* const name = typeid(T).name(); +# if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC) + int status = 0; + // gcc's implementation of typeid(T).name() mangles the type name, + // so we have to demangle it. +# if GTEST_HAS_CXXABI_H_ + using abi::__cxa_demangle; +# endif // GTEST_HAS_CXXABI_H_ + char* const readable_name = __cxa_demangle(name, 0, 0, &status); + const std::string name_str(status == 0 ? readable_name : name); + free(readable_name); + return name_str; +# else + return name; +# endif // GTEST_HAS_CXXABI_H_ || __HP_aCC + +# else + + return ""; + +# endif // GTEST_HAS_RTTI +} + +#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P + +// AssertyTypeEq::type is defined iff T1 and T2 are the same +// type. This can be used as a compile-time assertion to ensure that +// two types are equal. + +template +struct AssertTypeEq; + +template +struct AssertTypeEq { + typedef bool type; +}; + +// A unique type used as the default value for the arguments of class +// template Types. This allows us to simulate variadic templates +// (e.g. Types, Type, and etc), which C++ doesn't +// support directly. +struct None {}; + +// The following family of struct and struct templates are used to +// represent type lists. In particular, TypesN +// represents a type list with N types (T1, T2, ..., and TN) in it. +// Except for Types0, every struct in the family has two member types: +// Head for the first type in the list, and Tail for the rest of the +// list. + +// The empty type list. +struct Types0 {}; + +// Type lists of length 1, 2, 3, and so on. + +template +struct Types1 { + typedef T1 Head; + typedef Types0 Tail; +}; +template +struct Types2 { + typedef T1 Head; + typedef Types1 Tail; +}; + +template +struct Types3 { + typedef T1 Head; + typedef Types2 Tail; +}; + +template +struct Types4 { + typedef T1 Head; + typedef Types3 Tail; +}; + +template +struct Types5 { + typedef T1 Head; + typedef Types4 Tail; +}; + +template +struct Types6 { + typedef T1 Head; + typedef Types5 Tail; +}; + +template +struct Types7 { + typedef T1 Head; + typedef Types6 Tail; +}; + +template +struct Types8 { + typedef T1 Head; + typedef Types7 Tail; +}; + +template +struct Types9 { + typedef T1 Head; + typedef Types8 Tail; +}; + +template +struct Types10 { + typedef T1 Head; + typedef Types9 Tail; +}; + +template +struct Types11 { + typedef T1 Head; + typedef Types10 Tail; +}; + +template +struct Types12 { + typedef T1 Head; + typedef Types11 Tail; +}; + +template +struct Types13 { + typedef T1 Head; + typedef Types12 Tail; +}; + +template +struct Types14 { + typedef T1 Head; + typedef Types13 Tail; +}; + +template +struct Types15 { + typedef T1 Head; + typedef Types14 Tail; +}; + +template +struct Types16 { + typedef T1 Head; + typedef Types15 Tail; +}; + +template +struct Types17 { + typedef T1 Head; + typedef Types16 Tail; +}; + +template +struct Types18 { + typedef T1 Head; + typedef Types17 Tail; +}; + +template +struct Types19 { + typedef T1 Head; + typedef Types18 Tail; +}; + +template +struct Types20 { + typedef T1 Head; + typedef Types19 Tail; +}; + +template +struct Types21 { + typedef T1 Head; + typedef Types20 Tail; +}; + +template +struct Types22 { + typedef T1 Head; + typedef Types21 Tail; +}; + +template +struct Types23 { + typedef T1 Head; + typedef Types22 Tail; +}; + +template +struct Types24 { + typedef T1 Head; + typedef Types23 Tail; +}; + +template +struct Types25 { + typedef T1 Head; + typedef Types24 Tail; +}; + +template +struct Types26 { + typedef T1 Head; + typedef Types25 Tail; +}; + +template +struct Types27 { + typedef T1 Head; + typedef Types26 Tail; +}; + +template +struct Types28 { + typedef T1 Head; + typedef Types27 Tail; +}; + +template +struct Types29 { + typedef T1 Head; + typedef Types28 Tail; +}; + +template +struct Types30 { + typedef T1 Head; + typedef Types29 Tail; +}; + +template +struct Types31 { + typedef T1 Head; + typedef Types30 Tail; +}; + +template +struct Types32 { + typedef T1 Head; + typedef Types31 Tail; +}; + +template +struct Types33 { + typedef T1 Head; + typedef Types32 Tail; +}; + +template +struct Types34 { + typedef T1 Head; + typedef Types33 Tail; +}; + +template +struct Types35 { + typedef T1 Head; + typedef Types34 Tail; +}; + +template +struct Types36 { + typedef T1 Head; + typedef Types35 Tail; +}; + +template +struct Types37 { + typedef T1 Head; + typedef Types36 Tail; +}; + +template +struct Types38 { + typedef T1 Head; + typedef Types37 Tail; +}; + +template +struct Types39 { + typedef T1 Head; + typedef Types38 Tail; +}; + +template +struct Types40 { + typedef T1 Head; + typedef Types39 Tail; +}; + +template +struct Types41 { + typedef T1 Head; + typedef Types40 Tail; +}; + +template +struct Types42 { + typedef T1 Head; + typedef Types41 Tail; +}; + +template +struct Types43 { + typedef T1 Head; + typedef Types42 Tail; +}; + +template +struct Types44 { + typedef T1 Head; + typedef Types43 Tail; +}; + +template +struct Types45 { + typedef T1 Head; + typedef Types44 Tail; +}; + +template +struct Types46 { + typedef T1 Head; + typedef Types45 Tail; +}; + +template +struct Types47 { + typedef T1 Head; + typedef Types46 Tail; +}; + +template +struct Types48 { + typedef T1 Head; + typedef Types47 Tail; +}; + +template +struct Types49 { + typedef T1 Head; + typedef Types48 Tail; +}; + +template +struct Types50 { + typedef T1 Head; + typedef Types49 Tail; +}; + + +} // namespace internal + +// We don't want to require the users to write TypesN<...> directly, +// as that would require them to count the length. Types<...> is much +// easier to write, but generates horrible messages when there is a +// compiler error, as gcc insists on printing out each template +// argument, even if it has the default value (this means Types +// will appear as Types in the compiler +// errors). +// +// Our solution is to combine the best part of the two approaches: a +// user would write Types, and Google Test will translate +// that to TypesN internally to make error messages +// readable. The translation is done by the 'type' member of the +// Types template. +template +struct Types { + typedef internal::Types50 type; +}; + +template <> +struct Types { + typedef internal::Types0 type; +}; +template +struct Types { + typedef internal::Types1 type; +}; +template +struct Types { + typedef internal::Types2 type; +}; +template +struct Types { + typedef internal::Types3 type; +}; +template +struct Types { + typedef internal::Types4 type; +}; +template +struct Types { + typedef internal::Types5 type; +}; +template +struct Types { + typedef internal::Types6 type; +}; +template +struct Types { + typedef internal::Types7 type; +}; +template +struct Types { + typedef internal::Types8 type; +}; +template +struct Types { + typedef internal::Types9 type; +}; +template +struct Types { + typedef internal::Types10 type; +}; +template +struct Types { + typedef internal::Types11 type; +}; +template +struct Types { + typedef internal::Types12 type; +}; +template +struct Types { + typedef internal::Types13 type; +}; +template +struct Types { + typedef internal::Types14 type; +}; +template +struct Types { + typedef internal::Types15 type; +}; +template +struct Types { + typedef internal::Types16 type; +}; +template +struct Types { + typedef internal::Types17 type; +}; +template +struct Types { + typedef internal::Types18 type; +}; +template +struct Types { + typedef internal::Types19 type; +}; +template +struct Types { + typedef internal::Types20 type; +}; +template +struct Types { + typedef internal::Types21 type; +}; +template +struct Types { + typedef internal::Types22 type; +}; +template +struct Types { + typedef internal::Types23 type; +}; +template +struct Types { + typedef internal::Types24 type; +}; +template +struct Types { + typedef internal::Types25 type; +}; +template +struct Types { + typedef internal::Types26 type; +}; +template +struct Types { + typedef internal::Types27 type; +}; +template +struct Types { + typedef internal::Types28 type; +}; +template +struct Types { + typedef internal::Types29 type; +}; +template +struct Types { + typedef internal::Types30 type; +}; +template +struct Types { + typedef internal::Types31 type; +}; +template +struct Types { + typedef internal::Types32 type; +}; +template +struct Types { + typedef internal::Types33 type; +}; +template +struct Types { + typedef internal::Types34 type; +}; +template +struct Types { + typedef internal::Types35 type; +}; +template +struct Types { + typedef internal::Types36 type; +}; +template +struct Types { + typedef internal::Types37 type; +}; +template +struct Types { + typedef internal::Types38 type; +}; +template +struct Types { + typedef internal::Types39 type; +}; +template +struct Types { + typedef internal::Types40 type; +}; +template +struct Types { + typedef internal::Types41 type; +}; +template +struct Types { + typedef internal::Types42 type; +}; +template +struct Types { + typedef internal::Types43 type; +}; +template +struct Types { + typedef internal::Types44 type; +}; +template +struct Types { + typedef internal::Types45 type; +}; +template +struct Types { + typedef internal::Types46 type; +}; +template +struct Types { + typedef internal::Types47 type; +}; +template +struct Types { + typedef internal::Types48 type; +}; +template +struct Types { + typedef internal::Types49 type; +}; + +namespace internal { + +# define GTEST_TEMPLATE_ template class + +// The template "selector" struct TemplateSel is used to +// represent Tmpl, which must be a class template with one type +// parameter, as a type. TemplateSel::Bind::type is defined +// as the type Tmpl. This allows us to actually instantiate the +// template "selected" by TemplateSel. +// +// This trick is necessary for simulating typedef for class templates, +// which C++ doesn't support directly. +template +struct TemplateSel { + template + struct Bind { + typedef Tmpl type; + }; +}; + +# define GTEST_BIND_(TmplSel, T) \ + TmplSel::template Bind::type + +// A unique struct template used as the default value for the +// arguments of class template Templates. This allows us to simulate +// variadic templates (e.g. Templates, Templates, +// and etc), which C++ doesn't support directly. +template +struct NoneT {}; + +// The following family of struct and struct templates are used to +// represent template lists. In particular, TemplatesN represents a list of N templates (T1, T2, ..., and TN). Except +// for Templates0, every struct in the family has two member types: +// Head for the selector of the first template in the list, and Tail +// for the rest of the list. + +// The empty template list. +struct Templates0 {}; + +// Template lists of length 1, 2, 3, and so on. + +template +struct Templates1 { + typedef TemplateSel Head; + typedef Templates0 Tail; +}; +template +struct Templates2 { + typedef TemplateSel Head; + typedef Templates1 Tail; +}; + +template +struct Templates3 { + typedef TemplateSel Head; + typedef Templates2 Tail; +}; + +template +struct Templates4 { + typedef TemplateSel Head; + typedef Templates3 Tail; +}; + +template +struct Templates5 { + typedef TemplateSel Head; + typedef Templates4 Tail; +}; + +template +struct Templates6 { + typedef TemplateSel Head; + typedef Templates5 Tail; +}; + +template +struct Templates7 { + typedef TemplateSel Head; + typedef Templates6 Tail; +}; + +template +struct Templates8 { + typedef TemplateSel Head; + typedef Templates7 Tail; +}; + +template +struct Templates9 { + typedef TemplateSel Head; + typedef Templates8 Tail; +}; + +template +struct Templates10 { + typedef TemplateSel Head; + typedef Templates9 Tail; +}; + +template +struct Templates11 { + typedef TemplateSel Head; + typedef Templates10 Tail; +}; + +template +struct Templates12 { + typedef TemplateSel Head; + typedef Templates11 Tail; +}; + +template +struct Templates13 { + typedef TemplateSel Head; + typedef Templates12 Tail; +}; + +template +struct Templates14 { + typedef TemplateSel Head; + typedef Templates13 Tail; +}; + +template +struct Templates15 { + typedef TemplateSel Head; + typedef Templates14 Tail; +}; + +template +struct Templates16 { + typedef TemplateSel Head; + typedef Templates15 Tail; +}; + +template +struct Templates17 { + typedef TemplateSel Head; + typedef Templates16 Tail; +}; + +template +struct Templates18 { + typedef TemplateSel Head; + typedef Templates17 Tail; +}; + +template +struct Templates19 { + typedef TemplateSel Head; + typedef Templates18 Tail; +}; + +template +struct Templates20 { + typedef TemplateSel Head; + typedef Templates19 Tail; +}; + +template +struct Templates21 { + typedef TemplateSel Head; + typedef Templates20 Tail; +}; + +template +struct Templates22 { + typedef TemplateSel Head; + typedef Templates21 Tail; +}; + +template +struct Templates23 { + typedef TemplateSel Head; + typedef Templates22 Tail; +}; + +template +struct Templates24 { + typedef TemplateSel Head; + typedef Templates23 Tail; +}; + +template +struct Templates25 { + typedef TemplateSel Head; + typedef Templates24 Tail; +}; + +template +struct Templates26 { + typedef TemplateSel Head; + typedef Templates25 Tail; +}; + +template +struct Templates27 { + typedef TemplateSel Head; + typedef Templates26 Tail; +}; + +template +struct Templates28 { + typedef TemplateSel Head; + typedef Templates27 Tail; +}; + +template +struct Templates29 { + typedef TemplateSel Head; + typedef Templates28 Tail; +}; + +template +struct Templates30 { + typedef TemplateSel Head; + typedef Templates29 Tail; +}; + +template +struct Templates31 { + typedef TemplateSel Head; + typedef Templates30 Tail; +}; + +template +struct Templates32 { + typedef TemplateSel Head; + typedef Templates31 Tail; +}; + +template +struct Templates33 { + typedef TemplateSel Head; + typedef Templates32 Tail; +}; + +template +struct Templates34 { + typedef TemplateSel Head; + typedef Templates33 Tail; +}; + +template +struct Templates35 { + typedef TemplateSel Head; + typedef Templates34 Tail; +}; + +template +struct Templates36 { + typedef TemplateSel Head; + typedef Templates35 Tail; +}; + +template +struct Templates37 { + typedef TemplateSel Head; + typedef Templates36 Tail; +}; + +template +struct Templates38 { + typedef TemplateSel Head; + typedef Templates37 Tail; +}; + +template +struct Templates39 { + typedef TemplateSel Head; + typedef Templates38 Tail; +}; + +template +struct Templates40 { + typedef TemplateSel Head; + typedef Templates39 Tail; +}; + +template +struct Templates41 { + typedef TemplateSel Head; + typedef Templates40 Tail; +}; + +template +struct Templates42 { + typedef TemplateSel Head; + typedef Templates41 Tail; +}; + +template +struct Templates43 { + typedef TemplateSel Head; + typedef Templates42 Tail; +}; + +template +struct Templates44 { + typedef TemplateSel Head; + typedef Templates43 Tail; +}; + +template +struct Templates45 { + typedef TemplateSel Head; + typedef Templates44 Tail; +}; + +template +struct Templates46 { + typedef TemplateSel Head; + typedef Templates45 Tail; +}; + +template +struct Templates47 { + typedef TemplateSel Head; + typedef Templates46 Tail; +}; + +template +struct Templates48 { + typedef TemplateSel Head; + typedef Templates47 Tail; +}; + +template +struct Templates49 { + typedef TemplateSel Head; + typedef Templates48 Tail; +}; + +template +struct Templates50 { + typedef TemplateSel Head; + typedef Templates49 Tail; +}; + + +// We don't want to require the users to write TemplatesN<...> directly, +// as that would require them to count the length. Templates<...> is much +// easier to write, but generates horrible messages when there is a +// compiler error, as gcc insists on printing out each template +// argument, even if it has the default value (this means Templates +// will appear as Templates in the compiler +// errors). +// +// Our solution is to combine the best part of the two approaches: a +// user would write Templates, and Google Test will translate +// that to TemplatesN internally to make error messages +// readable. The translation is done by the 'type' member of the +// Templates template. +template +struct Templates { + typedef Templates50 type; +}; + +template <> +struct Templates { + typedef Templates0 type; +}; +template +struct Templates { + typedef Templates1 type; +}; +template +struct Templates { + typedef Templates2 type; +}; +template +struct Templates { + typedef Templates3 type; +}; +template +struct Templates { + typedef Templates4 type; +}; +template +struct Templates { + typedef Templates5 type; +}; +template +struct Templates { + typedef Templates6 type; +}; +template +struct Templates { + typedef Templates7 type; +}; +template +struct Templates { + typedef Templates8 type; +}; +template +struct Templates { + typedef Templates9 type; +}; +template +struct Templates { + typedef Templates10 type; +}; +template +struct Templates { + typedef Templates11 type; +}; +template +struct Templates { + typedef Templates12 type; +}; +template +struct Templates { + typedef Templates13 type; +}; +template +struct Templates { + typedef Templates14 type; +}; +template +struct Templates { + typedef Templates15 type; +}; +template +struct Templates { + typedef Templates16 type; +}; +template +struct Templates { + typedef Templates17 type; +}; +template +struct Templates { + typedef Templates18 type; +}; +template +struct Templates { + typedef Templates19 type; +}; +template +struct Templates { + typedef Templates20 type; +}; +template +struct Templates { + typedef Templates21 type; +}; +template +struct Templates { + typedef Templates22 type; +}; +template +struct Templates { + typedef Templates23 type; +}; +template +struct Templates { + typedef Templates24 type; +}; +template +struct Templates { + typedef Templates25 type; +}; +template +struct Templates { + typedef Templates26 type; +}; +template +struct Templates { + typedef Templates27 type; +}; +template +struct Templates { + typedef Templates28 type; +}; +template +struct Templates { + typedef Templates29 type; +}; +template +struct Templates { + typedef Templates30 type; +}; +template +struct Templates { + typedef Templates31 type; +}; +template +struct Templates { + typedef Templates32 type; +}; +template +struct Templates { + typedef Templates33 type; +}; +template +struct Templates { + typedef Templates34 type; +}; +template +struct Templates { + typedef Templates35 type; +}; +template +struct Templates { + typedef Templates36 type; +}; +template +struct Templates { + typedef Templates37 type; +}; +template +struct Templates { + typedef Templates38 type; +}; +template +struct Templates { + typedef Templates39 type; +}; +template +struct Templates { + typedef Templates40 type; +}; +template +struct Templates { + typedef Templates41 type; +}; +template +struct Templates { + typedef Templates42 type; +}; +template +struct Templates { + typedef Templates43 type; +}; +template +struct Templates { + typedef Templates44 type; +}; +template +struct Templates { + typedef Templates45 type; +}; +template +struct Templates { + typedef Templates46 type; +}; +template +struct Templates { + typedef Templates47 type; +}; +template +struct Templates { + typedef Templates48 type; +}; +template +struct Templates { + typedef Templates49 type; +}; + +// The TypeList template makes it possible to use either a single type +// or a Types<...> list in TYPED_TEST_CASE() and +// INSTANTIATE_TYPED_TEST_CASE_P(). + +template +struct TypeList { + typedef Types1 type; +}; + +template +struct TypeList > { + typedef typename Types::type type; +}; + +#endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump new file mode 100644 index 000000000..251fdf025 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/include/gtest/internal/gtest-type-util.h.pump @@ -0,0 +1,297 @@ +$$ -*- mode: c++; -*- +$var n = 50 $$ Maximum length of type lists we want to support. +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// Type utilities needed for implementing typed and type-parameterized +// tests. This file is generated by a SCRIPT. DO NOT EDIT BY HAND! +// +// Currently we support at most $n types in a list, and at most $n +// type-parameterized tests in one type-parameterized test case. +// Please contact googletestframework@googlegroups.com if you need +// more. + +#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ +#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ + +#include "gtest/internal/gtest-port.h" + +// #ifdef __GNUC__ is too general here. It is possible to use gcc without using +// libstdc++ (which is where cxxabi.h comes from). +# if GTEST_HAS_CXXABI_H_ +# include +# elif defined(__HP_aCC) +# include +# endif // GTEST_HASH_CXXABI_H_ + +namespace testing { +namespace internal { + +// GetTypeName() returns a human-readable name of type T. +// NB: This function is also used in Google Mock, so don't move it inside of +// the typed-test-only section below. +template +std::string GetTypeName() { +# if GTEST_HAS_RTTI + + const char* const name = typeid(T).name(); +# if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC) + int status = 0; + // gcc's implementation of typeid(T).name() mangles the type name, + // so we have to demangle it. +# if GTEST_HAS_CXXABI_H_ + using abi::__cxa_demangle; +# endif // GTEST_HAS_CXXABI_H_ + char* const readable_name = __cxa_demangle(name, 0, 0, &status); + const std::string name_str(status == 0 ? readable_name : name); + free(readable_name); + return name_str; +# else + return name; +# endif // GTEST_HAS_CXXABI_H_ || __HP_aCC + +# else + + return ""; + +# endif // GTEST_HAS_RTTI +} + +#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P + +// AssertyTypeEq::type is defined iff T1 and T2 are the same +// type. This can be used as a compile-time assertion to ensure that +// two types are equal. + +template +struct AssertTypeEq; + +template +struct AssertTypeEq { + typedef bool type; +}; + +// A unique type used as the default value for the arguments of class +// template Types. This allows us to simulate variadic templates +// (e.g. Types, Type, and etc), which C++ doesn't +// support directly. +struct None {}; + +// The following family of struct and struct templates are used to +// represent type lists. In particular, TypesN +// represents a type list with N types (T1, T2, ..., and TN) in it. +// Except for Types0, every struct in the family has two member types: +// Head for the first type in the list, and Tail for the rest of the +// list. + +// The empty type list. +struct Types0 {}; + +// Type lists of length 1, 2, 3, and so on. + +template +struct Types1 { + typedef T1 Head; + typedef Types0 Tail; +}; + +$range i 2..n + +$for i [[ +$range j 1..i +$range k 2..i +template <$for j, [[typename T$j]]> +struct Types$i { + typedef T1 Head; + typedef Types$(i-1)<$for k, [[T$k]]> Tail; +}; + + +]] + +} // namespace internal + +// We don't want to require the users to write TypesN<...> directly, +// as that would require them to count the length. Types<...> is much +// easier to write, but generates horrible messages when there is a +// compiler error, as gcc insists on printing out each template +// argument, even if it has the default value (this means Types +// will appear as Types in the compiler +// errors). +// +// Our solution is to combine the best part of the two approaches: a +// user would write Types, and Google Test will translate +// that to TypesN internally to make error messages +// readable. The translation is done by the 'type' member of the +// Types template. + +$range i 1..n +template <$for i, [[typename T$i = internal::None]]> +struct Types { + typedef internal::Types$n<$for i, [[T$i]]> type; +}; + +template <> +struct Types<$for i, [[internal::None]]> { + typedef internal::Types0 type; +}; + +$range i 1..n-1 +$for i [[ +$range j 1..i +$range k i+1..n +template <$for j, [[typename T$j]]> +struct Types<$for j, [[T$j]]$for k[[, internal::None]]> { + typedef internal::Types$i<$for j, [[T$j]]> type; +}; + +]] + +namespace internal { + +# define GTEST_TEMPLATE_ template class + +// The template "selector" struct TemplateSel is used to +// represent Tmpl, which must be a class template with one type +// parameter, as a type. TemplateSel::Bind::type is defined +// as the type Tmpl. This allows us to actually instantiate the +// template "selected" by TemplateSel. +// +// This trick is necessary for simulating typedef for class templates, +// which C++ doesn't support directly. +template +struct TemplateSel { + template + struct Bind { + typedef Tmpl type; + }; +}; + +# define GTEST_BIND_(TmplSel, T) \ + TmplSel::template Bind::type + +// A unique struct template used as the default value for the +// arguments of class template Templates. This allows us to simulate +// variadic templates (e.g. Templates, Templates, +// and etc), which C++ doesn't support directly. +template +struct NoneT {}; + +// The following family of struct and struct templates are used to +// represent template lists. In particular, TemplatesN represents a list of N templates (T1, T2, ..., and TN). Except +// for Templates0, every struct in the family has two member types: +// Head for the selector of the first template in the list, and Tail +// for the rest of the list. + +// The empty template list. +struct Templates0 {}; + +// Template lists of length 1, 2, 3, and so on. + +template +struct Templates1 { + typedef TemplateSel Head; + typedef Templates0 Tail; +}; + +$range i 2..n + +$for i [[ +$range j 1..i +$range k 2..i +template <$for j, [[GTEST_TEMPLATE_ T$j]]> +struct Templates$i { + typedef TemplateSel Head; + typedef Templates$(i-1)<$for k, [[T$k]]> Tail; +}; + + +]] + +// We don't want to require the users to write TemplatesN<...> directly, +// as that would require them to count the length. Templates<...> is much +// easier to write, but generates horrible messages when there is a +// compiler error, as gcc insists on printing out each template +// argument, even if it has the default value (this means Templates +// will appear as Templates in the compiler +// errors). +// +// Our solution is to combine the best part of the two approaches: a +// user would write Templates, and Google Test will translate +// that to TemplatesN internally to make error messages +// readable. The translation is done by the 'type' member of the +// Templates template. + +$range i 1..n +template <$for i, [[GTEST_TEMPLATE_ T$i = NoneT]]> +struct Templates { + typedef Templates$n<$for i, [[T$i]]> type; +}; + +template <> +struct Templates<$for i, [[NoneT]]> { + typedef Templates0 type; +}; + +$range i 1..n-1 +$for i [[ +$range j 1..i +$range k i+1..n +template <$for j, [[GTEST_TEMPLATE_ T$j]]> +struct Templates<$for j, [[T$j]]$for k[[, NoneT]]> { + typedef Templates$i<$for j, [[T$j]]> type; +}; + +]] + +// The TypeList template makes it possible to use either a single type +// or a Types<...> list in TYPED_TEST_CASE() and +// INSTANTIATE_TYPED_TEST_CASE_P(). + +template +struct TypeList { + typedef Types1 type; +}; + + +$range i 1..n +template <$for i, [[typename T$i]]> +struct TypeList > { + typedef typename Types<$for i, [[T$i]]>::type type; +}; + +#endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P + +} // namespace internal +} // namespace testing + +#endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/m4/acx_pthread.m4 b/cpp/thirdparty/gtest-1.7.0/m4/acx_pthread.m4 new file mode 100644 index 000000000..2cf20de14 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/m4/acx_pthread.m4 @@ -0,0 +1,363 @@ +# This was retrieved from +# http://svn.0pointer.de/viewvc/trunk/common/acx_pthread.m4?revision=1277&root=avahi +# See also (perhaps for new versions?) +# http://svn.0pointer.de/viewvc/trunk/common/acx_pthread.m4?root=avahi +# +# We've rewritten the inconsistency check code (from avahi), to work +# more broadly. In particular, it no longer assumes ld accepts -zdefs. +# This caused a restructing of the code, but the functionality has only +# changed a little. + +dnl @synopsis ACX_PTHREAD([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) +dnl +dnl @summary figure out how to build C programs using POSIX threads +dnl +dnl This macro figures out how to build C programs using POSIX threads. +dnl It sets the PTHREAD_LIBS output variable to the threads library and +dnl linker flags, and the PTHREAD_CFLAGS output variable to any special +dnl C compiler flags that are needed. (The user can also force certain +dnl compiler flags/libs to be tested by setting these environment +dnl variables.) +dnl +dnl Also sets PTHREAD_CC to any special C compiler that is needed for +dnl multi-threaded programs (defaults to the value of CC otherwise). +dnl (This is necessary on AIX to use the special cc_r compiler alias.) +dnl +dnl NOTE: You are assumed to not only compile your program with these +dnl flags, but also link it with them as well. e.g. you should link +dnl with $PTHREAD_CC $CFLAGS $PTHREAD_CFLAGS $LDFLAGS ... $PTHREAD_LIBS +dnl $LIBS +dnl +dnl If you are only building threads programs, you may wish to use +dnl these variables in your default LIBS, CFLAGS, and CC: +dnl +dnl LIBS="$PTHREAD_LIBS $LIBS" +dnl CFLAGS="$CFLAGS $PTHREAD_CFLAGS" +dnl CC="$PTHREAD_CC" +dnl +dnl In addition, if the PTHREAD_CREATE_JOINABLE thread-attribute +dnl constant has a nonstandard name, defines PTHREAD_CREATE_JOINABLE to +dnl that name (e.g. PTHREAD_CREATE_UNDETACHED on AIX). +dnl +dnl ACTION-IF-FOUND is a list of shell commands to run if a threads +dnl library is found, and ACTION-IF-NOT-FOUND is a list of commands to +dnl run it if it is not found. If ACTION-IF-FOUND is not specified, the +dnl default action will define HAVE_PTHREAD. +dnl +dnl Please let the authors know if this macro fails on any platform, or +dnl if you have any other suggestions or comments. This macro was based +dnl on work by SGJ on autoconf scripts for FFTW (www.fftw.org) (with +dnl help from M. Frigo), as well as ac_pthread and hb_pthread macros +dnl posted by Alejandro Forero Cuervo to the autoconf macro repository. +dnl We are also grateful for the helpful feedback of numerous users. +dnl +dnl @category InstalledPackages +dnl @author Steven G. Johnson +dnl @version 2006-05-29 +dnl @license GPLWithACException +dnl +dnl Checks for GCC shared/pthread inconsistency based on work by +dnl Marcin Owsiany + + +AC_DEFUN([ACX_PTHREAD], [ +AC_REQUIRE([AC_CANONICAL_HOST]) +AC_LANG_SAVE +AC_LANG_C +acx_pthread_ok=no + +# We used to check for pthread.h first, but this fails if pthread.h +# requires special compiler flags (e.g. on True64 or Sequent). +# It gets checked for in the link test anyway. + +# First of all, check if the user has set any of the PTHREAD_LIBS, +# etcetera environment variables, and if threads linking works using +# them: +if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + save_LIBS="$LIBS" + LIBS="$PTHREAD_LIBS $LIBS" + AC_MSG_CHECKING([for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS]) + AC_TRY_LINK_FUNC(pthread_join, acx_pthread_ok=yes) + AC_MSG_RESULT($acx_pthread_ok) + if test x"$acx_pthread_ok" = xno; then + PTHREAD_LIBS="" + PTHREAD_CFLAGS="" + fi + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" +fi + +# We must check for the threads library under a number of different +# names; the ordering is very important because some systems +# (e.g. DEC) have both -lpthread and -lpthreads, where one of the +# libraries is broken (non-POSIX). + +# Create a list of thread flags to try. Items starting with a "-" are +# C compiler flags, and other items are library names, except for "none" +# which indicates that we try without any flags at all, and "pthread-config" +# which is a program returning the flags for the Pth emulation library. + +acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" + +# The ordering *is* (sometimes) important. Some notes on the +# individual items follow: + +# pthreads: AIX (must check this before -lpthread) +# none: in case threads are in libc; should be tried before -Kthread and +# other compiler flags to prevent continual compiler warnings +# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) +# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) +# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) +# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) +# -pthreads: Solaris/gcc +# -mthreads: Mingw32/gcc, Lynx/gcc +# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it +# doesn't hurt to check since this sometimes defines pthreads too; +# also defines -D_REENTRANT) +# ... -mt is also the pthreads flag for HP/aCC +# pthread: Linux, etcetera +# --thread-safe: KAI C++ +# pthread-config: use pthread-config program (for GNU Pth library) + +case "${host_cpu}-${host_os}" in + *solaris*) + + # On Solaris (at least, for some versions), libc contains stubbed + # (non-functional) versions of the pthreads routines, so link-based + # tests will erroneously succeed. (We need to link with -pthreads/-mt/ + # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather + # a function called by this macro, so we could check for that, but + # who knows whether they'll stub that too in a future libc.) So, + # we'll just look for -pthreads and -lpthread first: + + acx_pthread_flags="-pthreads pthread -mt -pthread $acx_pthread_flags" + ;; +esac + +if test x"$acx_pthread_ok" = xno; then +for flag in $acx_pthread_flags; do + + case $flag in + none) + AC_MSG_CHECKING([whether pthreads work without any flags]) + ;; + + -*) + AC_MSG_CHECKING([whether pthreads work with $flag]) + PTHREAD_CFLAGS="$flag" + ;; + + pthread-config) + AC_CHECK_PROG(acx_pthread_config, pthread-config, yes, no) + if test x"$acx_pthread_config" = xno; then continue; fi + PTHREAD_CFLAGS="`pthread-config --cflags`" + PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" + ;; + + *) + AC_MSG_CHECKING([for the pthreads library -l$flag]) + PTHREAD_LIBS="-l$flag" + ;; + esac + + save_LIBS="$LIBS" + save_CFLAGS="$CFLAGS" + LIBS="$PTHREAD_LIBS $LIBS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + + # Check for various functions. We must include pthread.h, + # since some functions may be macros. (On the Sequent, we + # need a special flag -Kthread to make this header compile.) + # We check for pthread_join because it is in -lpthread on IRIX + # while pthread_create is in libc. We check for pthread_attr_init + # due to DEC craziness with -lpthreads. We check for + # pthread_cleanup_push because it is one of the few pthread + # functions on Solaris that doesn't have a non-functional libc stub. + # We try pthread_create on general principles. + AC_TRY_LINK([#include ], + [pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], + [acx_pthread_ok=yes]) + + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" + + AC_MSG_RESULT($acx_pthread_ok) + if test "x$acx_pthread_ok" = xyes; then + break; + fi + + PTHREAD_LIBS="" + PTHREAD_CFLAGS="" +done +fi + +# Various other checks: +if test "x$acx_pthread_ok" = xyes; then + save_LIBS="$LIBS" + LIBS="$PTHREAD_LIBS $LIBS" + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + + # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. + AC_MSG_CHECKING([for joinable pthread attribute]) + attr_name=unknown + for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do + AC_TRY_LINK([#include ], [int attr=$attr; return attr;], + [attr_name=$attr; break]) + done + AC_MSG_RESULT($attr_name) + if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then + AC_DEFINE_UNQUOTED(PTHREAD_CREATE_JOINABLE, $attr_name, + [Define to necessary symbol if this constant + uses a non-standard name on your system.]) + fi + + AC_MSG_CHECKING([if more special flags are required for pthreads]) + flag=no + case "${host_cpu}-${host_os}" in + *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; + *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; + esac + AC_MSG_RESULT(${flag}) + if test "x$flag" != xno; then + PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" + fi + + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" + # More AIX lossage: must compile with xlc_r or cc_r + if test x"$GCC" != xyes; then + AC_CHECK_PROGS(PTHREAD_CC, xlc_r cc_r, ${CC}) + else + PTHREAD_CC=$CC + fi + + # The next part tries to detect GCC inconsistency with -shared on some + # architectures and systems. The problem is that in certain + # configurations, when -shared is specified, GCC "forgets" to + # internally use various flags which are still necessary. + + # + # Prepare the flags + # + save_CFLAGS="$CFLAGS" + save_LIBS="$LIBS" + save_CC="$CC" + + # Try with the flags determined by the earlier checks. + # + # -Wl,-z,defs forces link-time symbol resolution, so that the + # linking checks with -shared actually have any value + # + # FIXME: -fPIC is required for -shared on many architectures, + # so we specify it here, but the right way would probably be to + # properly detect whether it is actually required. + CFLAGS="-shared -fPIC -Wl,-z,defs $CFLAGS $PTHREAD_CFLAGS" + LIBS="$PTHREAD_LIBS $LIBS" + CC="$PTHREAD_CC" + + # In order not to create several levels of indentation, we test + # the value of "$done" until we find the cure or run out of ideas. + done="no" + + # First, make sure the CFLAGS we added are actually accepted by our + # compiler. If not (and OS X's ld, for instance, does not accept -z), + # then we can't do this test. + if test x"$done" = xno; then + AC_MSG_CHECKING([whether to check for GCC pthread/shared inconsistencies]) + AC_TRY_LINK(,, , [done=yes]) + + if test "x$done" = xyes ; then + AC_MSG_RESULT([no]) + else + AC_MSG_RESULT([yes]) + fi + fi + + if test x"$done" = xno; then + AC_MSG_CHECKING([whether -pthread is sufficient with -shared]) + AC_TRY_LINK([#include ], + [pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], + [done=yes]) + + if test "x$done" = xyes; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + fi + + # + # Linux gcc on some architectures such as mips/mipsel forgets + # about -lpthread + # + if test x"$done" = xno; then + AC_MSG_CHECKING([whether -lpthread fixes that]) + LIBS="-lpthread $PTHREAD_LIBS $save_LIBS" + AC_TRY_LINK([#include ], + [pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], + [done=yes]) + + if test "x$done" = xyes; then + AC_MSG_RESULT([yes]) + PTHREAD_LIBS="-lpthread $PTHREAD_LIBS" + else + AC_MSG_RESULT([no]) + fi + fi + # + # FreeBSD 4.10 gcc forgets to use -lc_r instead of -lc + # + if test x"$done" = xno; then + AC_MSG_CHECKING([whether -lc_r fixes that]) + LIBS="-lc_r $PTHREAD_LIBS $save_LIBS" + AC_TRY_LINK([#include ], + [pthread_t th; pthread_join(th, 0); + pthread_attr_init(0); pthread_cleanup_push(0, 0); + pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], + [done=yes]) + + if test "x$done" = xyes; then + AC_MSG_RESULT([yes]) + PTHREAD_LIBS="-lc_r $PTHREAD_LIBS" + else + AC_MSG_RESULT([no]) + fi + fi + if test x"$done" = xno; then + # OK, we have run out of ideas + AC_MSG_WARN([Impossible to determine how to use pthreads with shared libraries]) + + # so it's not safe to assume that we may use pthreads + acx_pthread_ok=no + fi + + CFLAGS="$save_CFLAGS" + LIBS="$save_LIBS" + CC="$save_CC" +else + PTHREAD_CC="$CC" +fi + +AC_SUBST(PTHREAD_LIBS) +AC_SUBST(PTHREAD_CFLAGS) +AC_SUBST(PTHREAD_CC) + +# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: +if test x"$acx_pthread_ok" = xyes; then + ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.]),[$1]) + : +else + acx_pthread_ok=no + $2 +fi +AC_LANG_RESTORE +])dnl ACX_PTHREAD diff --git a/cpp/thirdparty/gtest-1.7.0/m4/gtest.m4 b/cpp/thirdparty/gtest-1.7.0/m4/gtest.m4 new file mode 100644 index 000000000..6598ba75a --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/m4/gtest.m4 @@ -0,0 +1,74 @@ +dnl GTEST_LIB_CHECK([minimum version [, +dnl action if found [,action if not found]]]) +dnl +dnl Check for the presence of the Google Test library, optionally at a minimum +dnl version, and indicate a viable version with the HAVE_GTEST flag. It defines +dnl standard variables for substitution including GTEST_CPPFLAGS, +dnl GTEST_CXXFLAGS, GTEST_LDFLAGS, and GTEST_LIBS. It also defines +dnl GTEST_VERSION as the version of Google Test found. Finally, it provides +dnl optional custom action slots in the event GTEST is found or not. +AC_DEFUN([GTEST_LIB_CHECK], +[ +dnl Provide a flag to enable or disable Google Test usage. +AC_ARG_ENABLE([gtest], + [AS_HELP_STRING([--enable-gtest], + [Enable tests using the Google C++ Testing Framework. + (Default is enabled.)])], + [], + [enable_gtest=]) +AC_ARG_VAR([GTEST_CONFIG], + [The exact path of Google Test's 'gtest-config' script.]) +AC_ARG_VAR([GTEST_CPPFLAGS], + [C-like preprocessor flags for Google Test.]) +AC_ARG_VAR([GTEST_CXXFLAGS], + [C++ compile flags for Google Test.]) +AC_ARG_VAR([GTEST_LDFLAGS], + [Linker path and option flags for Google Test.]) +AC_ARG_VAR([GTEST_LIBS], + [Library linking flags for Google Test.]) +AC_ARG_VAR([GTEST_VERSION], + [The version of Google Test available.]) +HAVE_GTEST="no" +AS_IF([test "x${enable_gtest}" != "xno"], + [AC_MSG_CHECKING([for 'gtest-config']) + AS_IF([test "x${enable_gtest}" != "xyes"], + [AS_IF([test -x "${enable_gtest}/scripts/gtest-config"], + [GTEST_CONFIG="${enable_gtest}/scripts/gtest-config"], + [GTEST_CONFIG="${enable_gtest}/bin/gtest-config"]) + AS_IF([test -x "${GTEST_CONFIG}"], [], + [AC_MSG_RESULT([no]) + AC_MSG_ERROR([dnl +Unable to locate either a built or installed Google Test. +The specific location '${enable_gtest}' was provided for a built or installed +Google Test, but no 'gtest-config' script could be found at this location.]) + ])], + [AC_PATH_PROG([GTEST_CONFIG], [gtest-config])]) + AS_IF([test -x "${GTEST_CONFIG}"], + [AC_MSG_RESULT([${GTEST_CONFIG}]) + m4_ifval([$1], + [_gtest_min_version="--min-version=$1" + AC_MSG_CHECKING([for Google Test at least version >= $1])], + [_gtest_min_version="--min-version=0" + AC_MSG_CHECKING([for Google Test])]) + AS_IF([${GTEST_CONFIG} ${_gtest_min_version}], + [AC_MSG_RESULT([yes]) + HAVE_GTEST='yes'], + [AC_MSG_RESULT([no])])], + [AC_MSG_RESULT([no])]) + AS_IF([test "x${HAVE_GTEST}" = "xyes"], + [GTEST_CPPFLAGS=`${GTEST_CONFIG} --cppflags` + GTEST_CXXFLAGS=`${GTEST_CONFIG} --cxxflags` + GTEST_LDFLAGS=`${GTEST_CONFIG} --ldflags` + GTEST_LIBS=`${GTEST_CONFIG} --libs` + GTEST_VERSION=`${GTEST_CONFIG} --version` + AC_DEFINE([HAVE_GTEST],[1],[Defined when Google Test is available.])], + [AS_IF([test "x${enable_gtest}" = "xyes"], + [AC_MSG_ERROR([dnl +Google Test was enabled, but no viable version could be found.]) + ])])]) +AC_SUBST([HAVE_GTEST]) +AM_CONDITIONAL([HAVE_GTEST],[test "x$HAVE_GTEST" = "xyes"]) +AS_IF([test "x$HAVE_GTEST" = "xyes"], + [m4_ifval([$2], [$2])], + [m4_ifval([$3], [$3])]) +]) diff --git a/cpp/thirdparty/gtest-1.7.0/m4/libtool.m4 b/cpp/thirdparty/gtest-1.7.0/m4/libtool.m4 new file mode 100644 index 000000000..828104cfd --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/m4/libtool.m4 @@ -0,0 +1,8001 @@ +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +m4_define([_LT_COPYING], [dnl +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +]) + +# serial 57 LT_INIT + + +# LT_PREREQ(VERSION) +# ------------------ +# Complain and exit if this libtool version is less that VERSION. +m4_defun([LT_PREREQ], +[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, + [m4_default([$3], + [m4_fatal([Libtool version $1 or higher is required], + 63)])], + [$2])]) + + +# _LT_CHECK_BUILDDIR +# ------------------ +# Complain if the absolute build directory name contains unusual characters +m4_defun([_LT_CHECK_BUILDDIR], +[case `pwd` in + *\ * | *\ *) + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; +esac +]) + + +# LT_INIT([OPTIONS]) +# ------------------ +AC_DEFUN([LT_INIT], +[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +AC_BEFORE([$0], [LT_LANG])dnl +AC_BEFORE([$0], [LT_OUTPUT])dnl +AC_BEFORE([$0], [LTDL_INIT])dnl +m4_require([_LT_CHECK_BUILDDIR])dnl + +dnl Autoconf doesn't catch unexpanded LT_ macros by default: +m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl +m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl +dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 +dnl unless we require an AC_DEFUNed macro: +AC_REQUIRE([LTOPTIONS_VERSION])dnl +AC_REQUIRE([LTSUGAR_VERSION])dnl +AC_REQUIRE([LTVERSION_VERSION])dnl +AC_REQUIRE([LTOBSOLETE_VERSION])dnl +m4_require([_LT_PROG_LTMAIN])dnl + +_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) + +dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +_LT_SETUP + +# Only expand once: +m4_define([LT_INIT]) +])# LT_INIT + +# Old names: +AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) +AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PROG_LIBTOOL], []) +dnl AC_DEFUN([AM_PROG_LIBTOOL], []) + + +# _LT_CC_BASENAME(CC) +# ------------------- +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +m4_defun([_LT_CC_BASENAME], +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +]) + + +# _LT_FILEUTILS_DEFAULTS +# ---------------------- +# It is okay to use these file commands and assume they have been set +# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +m4_defun([_LT_FILEUTILS_DEFAULTS], +[: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} +])# _LT_FILEUTILS_DEFAULTS + + +# _LT_SETUP +# --------- +m4_defun([_LT_SETUP], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl + +_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl +dnl +_LT_DECL([], [host_alias], [0], [The host system])dnl +_LT_DECL([], [host], [0])dnl +_LT_DECL([], [host_os], [0])dnl +dnl +_LT_DECL([], [build_alias], [0], [The build system])dnl +_LT_DECL([], [build], [0])dnl +_LT_DECL([], [build_os], [0])dnl +dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +dnl +AC_REQUIRE([AC_PROG_LN_S])dnl +test -z "$LN_S" && LN_S="ln -s" +_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl +dnl +AC_REQUIRE([LT_CMD_MAX_LEN])dnl +_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl +_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl +dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl +m4_require([_LT_CMD_RELOAD])dnl +m4_require([_LT_CHECK_MAGIC_METHOD])dnl +m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl +m4_require([_LT_CMD_OLD_ARCHIVE])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_WITH_SYSROOT])dnl + +_LT_CONFIG_LIBTOOL_INIT([ +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi +]) +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +_LT_CHECK_OBJDIR + +m4_require([_LT_TAG_COMPILER])dnl + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +_LT_CC_BASENAME([$compiler]) + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + _LT_PATH_MAGIC + fi + ;; +esac + +# Use C for the default configuration in the libtool script +LT_SUPPORTED_TAG([CC]) +_LT_LANG_C_CONFIG +_LT_LANG_DEFAULT_CONFIG +_LT_CONFIG_COMMANDS +])# _LT_SETUP + + +# _LT_PREPARE_SED_QUOTE_VARS +# -------------------------- +# Define a few sed substitution that help us do robust quoting. +m4_defun([_LT_PREPARE_SED_QUOTE_VARS], +[# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\([["`\\]]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' +]) + +# _LT_PROG_LTMAIN +# --------------- +# Note that this code is called both from `configure', and `config.status' +# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, +# `config.status' has no value for ac_aux_dir unless we are using Automake, +# so we pass a copy along to make sure it has a sensible value anyway. +m4_defun([_LT_PROG_LTMAIN], +[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl +_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) +ltmain="$ac_aux_dir/ltmain.sh" +])# _LT_PROG_LTMAIN + + +## ------------------------------------- ## +## Accumulate code for creating libtool. ## +## ------------------------------------- ## + +# So that we can recreate a full libtool script including additional +# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS +# in macros and then make a single call at the end using the `libtool' +# label. + + +# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) +# ---------------------------------------- +# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL_INIT], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_INIT], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_INIT]) + + +# _LT_CONFIG_LIBTOOL([COMMANDS]) +# ------------------------------ +# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) + + +# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) +# ----------------------------------------------------- +m4_defun([_LT_CONFIG_SAVE_COMMANDS], +[_LT_CONFIG_LIBTOOL([$1]) +_LT_CONFIG_LIBTOOL_INIT([$2]) +]) + + +# _LT_FORMAT_COMMENT([COMMENT]) +# ----------------------------- +# Add leading comment marks to the start of each line, and a trailing +# full-stop to the whole comment if one is not present already. +m4_define([_LT_FORMAT_COMMENT], +[m4_ifval([$1], [ +m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], + [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) +)]) + + + +## ------------------------ ## +## FIXME: Eliminate VARNAME ## +## ------------------------ ## + + +# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) +# ------------------------------------------------------------------- +# CONFIGNAME is the name given to the value in the libtool script. +# VARNAME is the (base) name used in the configure script. +# VALUE may be 0, 1 or 2 for a computed quote escaped value based on +# VARNAME. Any other value will be used directly. +m4_define([_LT_DECL], +[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], + [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], + [m4_ifval([$1], [$1], [$2])]) + lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) + m4_ifval([$4], + [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) + lt_dict_add_subkey([lt_decl_dict], [$2], + [tagged?], [m4_ifval([$5], [yes], [no])])]) +]) + + +# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) +# -------------------------------------------------------- +m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) + + +# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_tag_varnames], +[_lt_decl_filter([tagged?], [yes], $@)]) + + +# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) +# --------------------------------------------------------- +m4_define([_lt_decl_filter], +[m4_case([$#], + [0], [m4_fatal([$0: too few arguments: $#])], + [1], [m4_fatal([$0: too few arguments: $#: $1])], + [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], + [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], + [lt_dict_filter([lt_decl_dict], $@)])[]dnl +]) + + +# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) +# -------------------------------------------------- +m4_define([lt_decl_quote_varnames], +[_lt_decl_filter([value], [1], $@)]) + + +# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_dquote_varnames], +[_lt_decl_filter([value], [2], $@)]) + + +# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_varnames_tagged], +[m4_assert([$# <= 2])dnl +_$0(m4_quote(m4_default([$1], [[, ]])), + m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), + m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) +m4_define([_lt_decl_varnames_tagged], +[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) + + +# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_all_varnames], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_if([$2], [], + m4_quote(lt_decl_varnames), + m4_quote(m4_shift($@))))[]dnl +]) +m4_define([_lt_decl_all_varnames], +[lt_join($@, lt_decl_varnames_tagged([$1], + lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl +]) + + +# _LT_CONFIG_STATUS_DECLARE([VARNAME]) +# ------------------------------------ +# Quote a variable value, and forward it to `config.status' so that its +# declaration there will have the same value as in `configure'. VARNAME +# must have a single quote delimited value for this to work. +m4_define([_LT_CONFIG_STATUS_DECLARE], +[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) + + +# _LT_CONFIG_STATUS_DECLARATIONS +# ------------------------------ +# We delimit libtool config variables with single quotes, so when +# we write them to config.status, we have to be sure to quote all +# embedded single quotes properly. In configure, this macro expands +# each variable declared with _LT_DECL (and _LT_TAGDECL) into: +# +# ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' +m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], +[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), + [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAGS +# ---------------- +# Output comment and list of tags supported by the script +m4_defun([_LT_LIBTOOL_TAGS], +[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl +available_tags="_LT_TAGS"dnl +]) + + +# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) +# ----------------------------------- +# Extract the dictionary values for VARNAME (optionally with TAG) and +# expand to a commented shell variable setting: +# +# # Some comment about what VAR is for. +# visible_name=$lt_internal_name +m4_define([_LT_LIBTOOL_DECLARE], +[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], + [description])))[]dnl +m4_pushdef([_libtool_name], + m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl +m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), + [0], [_libtool_name=[$]$1], + [1], [_libtool_name=$lt_[]$1], + [2], [_libtool_name=$lt_[]$1], + [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl +m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl +]) + + +# _LT_LIBTOOL_CONFIG_VARS +# ----------------------- +# Produce commented declarations of non-tagged libtool config variables +# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# script. Tagged libtool config variables (even for the LIBTOOL CONFIG +# section) are produced by _LT_LIBTOOL_TAG_VARS. +m4_defun([_LT_LIBTOOL_CONFIG_VARS], +[m4_foreach([_lt_var], + m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAG_VARS(TAG) +# ------------------------- +m4_define([_LT_LIBTOOL_TAG_VARS], +[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) + + +# _LT_TAGVAR(VARNAME, [TAGNAME]) +# ------------------------------ +m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) + + +# _LT_CONFIG_COMMANDS +# ------------------- +# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of +# variables for single and double quote escaping we saved from calls +# to _LT_DECL, we can put quote escaped variables declarations +# into `config.status', and then the shell code to quote escape them in +# for loops in `config.status'. Finally, any additional code accumulated +# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. +m4_defun([_LT_CONFIG_COMMANDS], +[AC_PROVIDE_IFELSE([LT_OUTPUT], + dnl If the libtool generation code has been placed in $CONFIG_LT, + dnl instead of duplicating it all over again into config.status, + dnl then we will have config.status run $CONFIG_LT later, so it + dnl needs to know what name is stored there: + [AC_CONFIG_COMMANDS([libtool], + [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], + dnl If the libtool generation code is destined for config.status, + dnl expand the accumulated commands and init code now: + [AC_CONFIG_COMMANDS([libtool], + [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) +])#_LT_CONFIG_COMMANDS + + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], +[ + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +_LT_CONFIG_STATUS_DECLARATIONS +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$[]1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_quote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_dquote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +_LT_OUTPUT_LIBTOOL_INIT +]) + +# _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) +# ------------------------------------ +# Generate a child script FILE with all initialization necessary to +# reuse the environment learned by the parent script, and make the +# file executable. If COMMENT is supplied, it is inserted after the +# `#!' sequence but before initialization text begins. After this +# macro, additional text can be appended to FILE to form the body of +# the child script. The macro ends with non-zero status if the +# file could not be fully written (such as if the disk is full). +m4_ifdef([AS_INIT_GENERATED], +[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], +[m4_defun([_LT_GENERATED_FILE_INIT], +[m4_require([AS_PREPARE])]dnl +[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl +[lt_write_fail=0 +cat >$1 <<_ASEOF || lt_write_fail=1 +#! $SHELL +# Generated by $as_me. +$2 +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$1 <<\_ASEOF || lt_write_fail=1 +AS_SHELL_SANITIZE +_AS_PREPARE +exec AS_MESSAGE_FD>&1 +_ASEOF +test $lt_write_fail = 0 && chmod +x $1[]dnl +m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT + +# LT_OUTPUT +# --------- +# This macro allows early generation of the libtool script (before +# AC_OUTPUT is called), incase it is used in configure for compilation +# tests. +AC_DEFUN([LT_OUTPUT], +[: ${CONFIG_LT=./config.lt} +AC_MSG_NOTICE([creating $CONFIG_LT]) +_LT_GENERATED_FILE_INIT(["$CONFIG_LT"], +[# Run this file to recreate a libtool stub with the current configuration.]) + +cat >>"$CONFIG_LT" <<\_LTEOF +lt_cl_silent=false +exec AS_MESSAGE_LOG_FD>>config.log +{ + echo + AS_BOX([Running $as_me.]) +} >&AS_MESSAGE_LOG_FD + +lt_cl_help="\ +\`$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $[0] [[OPTIONS]] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl +m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) +configured by $[0], generated by m4_PACKAGE_STRING. + +Copyright (C) 2011 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test $[#] != 0 +do + case $[1] in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) AC_MSG_ERROR([unrecognized option: $[1] +Try \`$[0] --help' for more information.]) ;; + + *) AC_MSG_ERROR([unrecognized argument: $[1] +Try \`$[0] --help' for more information.]) ;; + esac + shift +done + +if $lt_cl_silent; then + exec AS_MESSAGE_FD>/dev/null +fi +_LTEOF + +cat >>"$CONFIG_LT" <<_LTEOF +_LT_OUTPUT_LIBTOOL_COMMANDS_INIT +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AC_MSG_NOTICE([creating $ofile]) +_LT_OUTPUT_LIBTOOL_COMMANDS +AS_EXIT(0) +_LTEOF +chmod +x "$CONFIG_LT" + +# configure is writing to config.log, but config.lt does its own redirection, +# appending to config.log, which fails on DOS, as config.log is still kept +# open by configure. Here we exec the FD to /dev/null, effectively closing +# config.log, so it can be properly (re)opened and appended to by config.lt. +lt_cl_success=: +test "$silent" = yes && + lt_config_lt_args="$lt_config_lt_args --quiet" +exec AS_MESSAGE_LOG_FD>/dev/null +$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false +exec AS_MESSAGE_LOG_FD>>config.log +$lt_cl_success || AS_EXIT(1) +])# LT_OUTPUT + + +# _LT_CONFIG(TAG) +# --------------- +# If TAG is the built-in tag, create an initial libtool script with a +# default configuration from the untagged config vars. Otherwise add code +# to config.status for appending the configuration named by TAG from the +# matching tagged config vars. +m4_defun([_LT_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_CONFIG_SAVE_COMMANDS([ + m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl + m4_if(_LT_TAG, [C], [ + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +_LT_COPYING +_LT_LIBTOOL_TAGS + +# ### BEGIN LIBTOOL CONFIG +_LT_LIBTOOL_CONFIG_VARS +_LT_LIBTOOL_TAG_VARS +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + _LT_PROG_LTMAIN + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + _LT_PROG_REPLACE_SHELLFNS + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" +], +[cat <<_LT_EOF >> "$ofile" + +dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded +dnl in a comment (ie after a #). +# ### BEGIN LIBTOOL TAG CONFIG: $1 +_LT_LIBTOOL_TAG_VARS(_LT_TAG) +# ### END LIBTOOL TAG CONFIG: $1 +_LT_EOF +])dnl /m4_if +], +[m4_if([$1], [], [ + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile'], []) +])dnl /_LT_CONFIG_SAVE_COMMANDS +])# _LT_CONFIG + + +# LT_SUPPORTED_TAG(TAG) +# --------------------- +# Trace this macro to discover what tags are supported by the libtool +# --tag option, using: +# autoconf --trace 'LT_SUPPORTED_TAG:$1' +AC_DEFUN([LT_SUPPORTED_TAG], []) + + +# C support is built-in for now +m4_define([_LT_LANG_C_enabled], []) +m4_define([_LT_TAGS], []) + + +# LT_LANG(LANG) +# ------------- +# Enable libtool support for the given language if not already enabled. +AC_DEFUN([LT_LANG], +[AC_BEFORE([$0], [LT_OUTPUT])dnl +m4_case([$1], + [C], [_LT_LANG(C)], + [C++], [_LT_LANG(CXX)], + [Go], [_LT_LANG(GO)], + [Java], [_LT_LANG(GCJ)], + [Fortran 77], [_LT_LANG(F77)], + [Fortran], [_LT_LANG(FC)], + [Windows Resource], [_LT_LANG(RC)], + [m4_ifdef([_LT_LANG_]$1[_CONFIG], + [_LT_LANG($1)], + [m4_fatal([$0: unsupported language: "$1"])])])dnl +])# LT_LANG + + +# _LT_LANG(LANGNAME) +# ------------------ +m4_defun([_LT_LANG], +[m4_ifdef([_LT_LANG_]$1[_enabled], [], + [LT_SUPPORTED_TAG([$1])dnl + m4_append([_LT_TAGS], [$1 ])dnl + m4_define([_LT_LANG_]$1[_enabled], [])dnl + _LT_LANG_$1_CONFIG($1)])dnl +])# _LT_LANG + + +m4_ifndef([AC_PROG_GO], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_GO. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ +m4_defun([AC_PROG_GO], +[AC_LANG_PUSH(Go)dnl +AC_ARG_VAR([GOC], [Go compiler command])dnl +AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl +_AC_ARG_VAR_LDFLAGS()dnl +AC_CHECK_TOOL(GOC, gccgo) +if test -z "$GOC"; then + if test -n "$ac_tool_prefix"; then + AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) + fi +fi +if test -z "$GOC"; then + AC_CHECK_PROG(GOC, gccgo, gccgo, false) +fi +])#m4_defun +])#m4_ifndef + + +# _LT_LANG_DEFAULT_CONFIG +# ----------------------- +m4_defun([_LT_LANG_DEFAULT_CONFIG], +[AC_PROVIDE_IFELSE([AC_PROG_CXX], + [LT_LANG(CXX)], + [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) + +AC_PROVIDE_IFELSE([AC_PROG_F77], + [LT_LANG(F77)], + [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) + +AC_PROVIDE_IFELSE([AC_PROG_FC], + [LT_LANG(FC)], + [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) + +dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal +dnl pulling things in needlessly. +AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([LT_PROG_GCJ], + [LT_LANG(GCJ)], + [m4_ifdef([AC_PROG_GCJ], + [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([A][M_PROG_GCJ], + [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([LT_PROG_GCJ], + [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) + +AC_PROVIDE_IFELSE([AC_PROG_GO], + [LT_LANG(GO)], + [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) + +AC_PROVIDE_IFELSE([LT_PROG_RC], + [LT_LANG(RC)], + [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) +])# _LT_LANG_DEFAULT_CONFIG + +# Obsolete macros: +AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) +AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) +AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) +AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) +AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_CXX], []) +dnl AC_DEFUN([AC_LIBTOOL_F77], []) +dnl AC_DEFUN([AC_LIBTOOL_FC], []) +dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) +dnl AC_DEFUN([AC_LIBTOOL_RC], []) + + +# _LT_TAG_COMPILER +# ---------------- +m4_defun([_LT_TAG_COMPILER], +[AC_REQUIRE([AC_PROG_CC])dnl + +_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl +_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl +_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl +_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC +])# _LT_TAG_COMPILER + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +m4_defun([_LT_COMPILER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +m4_defun([_LT_LINKER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* +])# _LT_LINKER_BOILERPLATE + +# _LT_REQUIRED_DARWIN_CHECKS +# ------------------------- +m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + AC_CHECK_TOOL([LIPO], [lipo], [:]) + AC_CHECK_TOOL([OTOOL], [otool], [:]) + AC_CHECK_TOOL([OTOOL64], [otool64], [:]) + _LT_DECL([], [DSYMUTIL], [1], + [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) + _LT_DECL([], [NMEDIT], [1], + [Tool to change global to local symbols on Mac OS X]) + _LT_DECL([], [LIPO], [1], + [Tool to manipulate fat objects and archives on Mac OS X]) + _LT_DECL([], [OTOOL], [1], + [ldd/readelf like tool for Mach-O binaries on Mac OS X]) + _LT_DECL([], [OTOOL64], [1], + [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi]) + + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS="$save_LDFLAGS" + ]) + + AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], + [lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD + echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD + $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD + echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD + $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + ]) + case $host_os in + rhapsody* | darwin1.[[012]]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac +]) + + +# _LT_DARWIN_LINKER_FEATURES([TAG]) +# --------------------------------- +# Checks for linker and compiler features on darwin +m4_defun([_LT_DARWIN_LINKER_FEATURES], +[ + m4_require([_LT_REQUIRED_DARWIN_CHECKS]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_automatic, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], + [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='' + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + m4_if([$1], [CXX], +[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi +],[]) + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi +]) + +# _LT_SYS_MODULE_PATH_AIX([TAGNAME]) +# ---------------------------------- +# Links a minimal program and checks the executable +# for the system default hardcoded library path. In most cases, +# this is /usr/lib:/lib, but when the MPI compilers are used +# the location of the communication and MPI libs are included too. +# If we don't find anything, use the default library path according +# to the aix ld manual. +# Store the results from the different compilers for each TAGNAME. +# Allow to override them for all tags through lt_cv_aix_libpath. +m4_defun([_LT_SYS_MODULE_PATH_AIX], +[m4_require([_LT_DECL_SED])dnl +if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], + [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ + lt_aix_libpath_sed='[ + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }]' + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi],[]) + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + fi + ]) + aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) +fi +])# _LT_SYS_MODULE_PATH_AIX + + +# _LT_SHELL_INIT(ARG) +# ------------------- +m4_define([_LT_SHELL_INIT], +[m4_divert_text([M4SH-INIT], [$1 +])])# _LT_SHELL_INIT + + + +# _LT_PROG_ECHO_BACKSLASH +# ----------------------- +# Find how we can fake an echo command that does not interpret backslash. +# In particular, with Autoconf 2.60 or later we add some code to the start +# of the generated configure script which will find a shell with a builtin +# printf (which we can use as an echo command). +m4_defun([_LT_PROG_ECHO_BACKSLASH], +[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +AC_MSG_CHECKING([how to print strings]) +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$[]1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +case "$ECHO" in + printf*) AC_MSG_RESULT([printf]) ;; + print*) AC_MSG_RESULT([print -r]) ;; + *) AC_MSG_RESULT([cat]) ;; +esac + +m4_ifdef([_AS_DETECT_SUGGESTED], +[_AS_DETECT_SUGGESTED([ + test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test "X`printf %s $ECHO`" = "X$ECHO" \ + || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) + +_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) +_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) +])# _LT_PROG_ECHO_BACKSLASH + + +# _LT_WITH_SYSROOT +# ---------------- +AC_DEFUN([_LT_WITH_SYSROOT], +[AC_MSG_CHECKING([for sysroot]) +AC_ARG_WITH([sysroot], +[ --with-sysroot[=DIR] Search for dependent libraries within DIR + (or the compiler's sysroot if not specified).], +[], [with_sysroot=no]) + +dnl lt_sysroot will always be passed unquoted. We quote it here +dnl in case the user passed a directory name. +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_ERROR([The sysroot must be an absolute path.]) + ;; +esac + + AC_MSG_RESULT([${lt_sysroot:-no}]) +_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl +[dependent libraries, and in which our libraries should be installed.])]) + +# _LT_ENABLE_LOCK +# --------------- +m4_defun([_LT_ENABLE_LOCK], +[AC_ARG_ENABLE([libtool-lock], + [AS_HELP_STRING([--disable-libtool-lock], + [avoid locking (might break parallel builds)])]) +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*|powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" +])# _LT_ENABLE_LOCK + + +# _LT_PROG_AR +# ----------- +m4_defun([_LT_PROG_AR], +[AC_CHECK_TOOLS(AR, [ar], false) +: ${AR=ar} +: ${AR_FLAGS=cru} +_LT_DECL([], [AR], [1], [The archiver]) +_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) + +AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], + [lt_cv_ar_at_file=no + AC_COMPILE_IFELSE([AC_LANG_PROGRAM], + [echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + ]) + ]) + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi +_LT_DECL([], [archiver_list_spec], [1], + [How to feed a file listing to the archiver]) +])# _LT_PROG_AR + + +# _LT_CMD_OLD_ARCHIVE +# ------------------- +m4_defun([_LT_CMD_OLD_ARCHIVE], +[_LT_PROG_AR + +AC_CHECK_TOOL(STRIP, strip, :) +test -z "$STRIP" && STRIP=: +_LT_DECL([], [STRIP], [1], [A symbol stripping program]) + +AC_CHECK_TOOL(RANLIB, ranlib, :) +test -z "$RANLIB" && RANLIB=: +_LT_DECL([], [RANLIB], [1], + [Commands used to install an old-style archive]) + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac +_LT_DECL([], [old_postinstall_cmds], [2]) +_LT_DECL([], [old_postuninstall_cmds], [2]) +_LT_TAGDECL([], [old_archive_cmds], [2], + [Commands used to build an old-style archive]) +_LT_DECL([], [lock_old_archive_extraction], [0], + [Whether to use a lock for old archive extraction]) +])# _LT_CMD_OLD_ARCHIVE + + +# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------------------- +# Check whether the given compiler option works +AC_DEFUN([_LT_COMPILER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $RM conftest* +]) + +if test x"[$]$2" = xyes; then + m4_if([$5], , :, [$5]) +else + m4_if([$6], , :, [$6]) +fi +])# _LT_COMPILER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) + + +# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------- +# Check whether the given linker option works +AC_DEFUN([_LT_LINKER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $3" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&AS_MESSAGE_LOG_FD + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + else + $2=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" +]) + +if test x"[$]$2" = xyes; then + m4_if([$4], , :, [$4]) +else + m4_if([$5], , :, [$5]) +fi +])# _LT_LINKER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) + + +# LT_CMD_MAX_LEN +#--------------- +AC_DEFUN([LT_CMD_MAX_LEN], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +# find the maximum length of command line arguments +AC_MSG_CHECKING([the maximum length of command line arguments]) +AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac +]) +if test -n $lt_cv_sys_max_cmd_len ; then + AC_MSG_RESULT($lt_cv_sys_max_cmd_len) +else + AC_MSG_RESULT(none) +fi +max_cmd_len=$lt_cv_sys_max_cmd_len +_LT_DECL([], [max_cmd_len], [0], + [What is the maximum length of a command?]) +])# LT_CMD_MAX_LEN + +# Old name: +AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) + + +# _LT_HEADER_DLFCN +# ---------------- +m4_defun([_LT_HEADER_DLFCN], +[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl +])# _LT_HEADER_DLFCN + + +# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, +# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) +# ---------------------------------------------------------------- +m4_defun([_LT_TRY_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "$cross_compiling" = yes; then : + [$4] +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +[#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +}] +_LT_EOF + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) $1 ;; + x$lt_dlneed_uscore) $2 ;; + x$lt_dlunknown|x*) $3 ;; + esac + else : + # compilation failed + $3 + fi +fi +rm -fr conftest* +])# _LT_TRY_DLOPEN_SELF + + +# LT_SYS_DLOPEN_SELF +# ------------------ +AC_DEFUN([LT_SYS_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ]) + ;; + + *) + AC_CHECK_FUNC([shl_load], + [lt_cv_dlopen="shl_load"], + [AC_CHECK_LIB([dld], [shl_load], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [AC_CHECK_FUNC([dlopen], + [lt_cv_dlopen="dlopen"], + [AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [AC_CHECK_LIB([svld], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [AC_CHECK_LIB([dld], [dld_link], + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + ]) + ]) + ]) + ]) + ]) + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + AC_CACHE_CHECK([whether a statically linked program can dlopen itself], + lt_cv_dlopen_self_static, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, + lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) + ]) + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi +_LT_DECL([dlopen_support], [enable_dlopen], [0], + [Whether dlopen is supported]) +_LT_DECL([dlopen_self], [enable_dlopen_self], [0], + [Whether dlopen of programs is supported]) +_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], + [Whether dlopen of statically linked programs is supported]) +])# LT_SYS_DLOPEN_SELF + +# Old name: +AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) + + +# _LT_COMPILER_C_O([TAGNAME]) +# --------------------------- +# Check to see if options -c and -o are simultaneously supported by compiler. +# This macro does not hard code the compiler like AC_PROG_CC_C_O. +m4_defun([_LT_COMPILER_C_O], +[m4_require([_LT_DECL_SED])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* +]) +_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], + [Does compiler simultaneously support -c and -o options?]) +])# _LT_COMPILER_C_O + + +# _LT_COMPILER_FILE_LOCKS([TAGNAME]) +# ---------------------------------- +# Check to see if we can do hard links to lock some files if needed +m4_defun([_LT_COMPILER_FILE_LOCKS], +[m4_require([_LT_ENABLE_LOCK])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_COMPILER_C_O([$1]) + +hard_links="nottested" +if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + AC_MSG_CHECKING([if we can lock with hard links]) + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + AC_MSG_RESULT([$hard_links]) + if test "$hard_links" = no; then + AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + need_locks=warn + fi +else + need_locks=no +fi +_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) +])# _LT_COMPILER_FILE_LOCKS + + +# _LT_CHECK_OBJDIR +# ---------------- +m4_defun([_LT_CHECK_OBJDIR], +[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], +[rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null]) +objdir=$lt_cv_objdir +_LT_DECL([], [objdir], [0], + [The name of the directory that contains temporary libtool files])dnl +m4_pattern_allow([LT_OBJDIR])dnl +AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", + [Define to the sub-directory in which libtool stores uninstalled libraries.]) +])# _LT_CHECK_OBJDIR + + +# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) +# -------------------------------------- +# Check hardcoding attributes. +m4_defun([_LT_LINKER_HARDCODE_LIBPATH], +[AC_MSG_CHECKING([how to hardcode library paths into programs]) +_LT_TAGVAR(hardcode_action, $1)= +if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || + test -n "$_LT_TAGVAR(runpath_var, $1)" || + test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && + test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + # Linking always hardcodes the temporary library directory. + _LT_TAGVAR(hardcode_action, $1)=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + _LT_TAGVAR(hardcode_action, $1)=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + _LT_TAGVAR(hardcode_action, $1)=unsupported +fi +AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) + +if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || + test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi +_LT_TAGDECL([], [hardcode_action], [0], + [How to hardcode a shared library path into an executable]) +])# _LT_LINKER_HARDCODE_LIBPATH + + +# _LT_CMD_STRIPLIB +# ---------------- +m4_defun([_LT_CMD_STRIPLIB], +[m4_require([_LT_DECL_EGREP]) +striplib= +old_striplib= +AC_MSG_CHECKING([whether stripping libraries is possible]) +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac +fi +_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) +_LT_DECL([], [striplib], [1]) +])# _LT_CMD_STRIPLIB + + +# _LT_SYS_DYNAMIC_LINKER([TAG]) +# ----------------------------- +# PORTME Fill in your ld.so characteristics +m4_defun([_LT_SYS_DYNAMIC_LINKER], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_OBJDUMP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +AC_MSG_CHECKING([dynamic linker characteristics]) +m4_if([$1], + [], [ +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[[lt_foo]]++; } + if (lt_freq[[lt_foo]] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi]) +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[[4-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[[01]] | aix4.[[01]].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[[45]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[23]].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[[3-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], + [lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ + LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], + [lt_cv_shlibpath_overrides_runpath=yes])]) + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + ]) + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[[89]] | openbsd2.[[89]].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +AC_MSG_RESULT([$dynamic_linker]) +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + +_LT_DECL([], [variables_saved_for_relink], [1], + [Variables whose values should be saved in libtool wrapper scripts and + restored at link time]) +_LT_DECL([], [need_lib_prefix], [0], + [Do we need the "lib" prefix for modules?]) +_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) +_LT_DECL([], [version_type], [0], [Library versioning type]) +_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) +_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) +_LT_DECL([], [shlibpath_overrides_runpath], [0], + [Is shlibpath searched before the hard-coded library search path?]) +_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) +_LT_DECL([], [library_names_spec], [1], + [[List of archive names. First name is the real one, the rest are links. + The last name is the one that the linker finds with -lNAME]]) +_LT_DECL([], [soname_spec], [1], + [[The coded name of the library, if different from the real name]]) +_LT_DECL([], [install_override_mode], [1], + [Permission mode override for installation of shared libraries]) +_LT_DECL([], [postinstall_cmds], [2], + [Command to use after installation of a shared archive]) +_LT_DECL([], [postuninstall_cmds], [2], + [Command to use after uninstallation of a shared archive]) +_LT_DECL([], [finish_cmds], [2], + [Commands used to finish a libtool library installation in a directory]) +_LT_DECL([], [finish_eval], [1], + [[As "finish_cmds", except a single script fragment to be evaled but + not shown]]) +_LT_DECL([], [hardcode_into_libs], [0], + [Whether we should hardcode library paths into libraries]) +_LT_DECL([], [sys_lib_search_path_spec], [2], + [Compile-time system search path for libraries]) +_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], + [Run-time system search path for libraries]) +])# _LT_SYS_DYNAMIC_LINKER + + +# _LT_PATH_TOOL_PREFIX(TOOL) +# -------------------------- +# find a file program which can recognize shared library +AC_DEFUN([_LT_PATH_TOOL_PREFIX], +[m4_require([_LT_DECL_EGREP])dnl +AC_MSG_CHECKING([for $1]) +AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, +[case $MAGIC_CMD in +[[\\/*] | ?:[\\/]*]) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +dnl $ac_dummy forces splitting on constant user-supplied paths. +dnl POSIX.2 word splitting is done only on the output of word expansions, +dnl not every word. This closes a longstanding sh security hole. + ac_dummy="m4_if([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac]) +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) +else + AC_MSG_RESULT(no) +fi +_LT_DECL([], [MAGIC_CMD], [0], + [Used to examine libraries when file_magic_cmd begins with "file"])dnl +])# _LT_PATH_TOOL_PREFIX + +# Old name: +AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) + + +# _LT_PATH_MAGIC +# -------------- +# find a file program which can recognize a shared library +m4_defun([_LT_PATH_MAGIC], +[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) + else + MAGIC_CMD=: + fi +fi +])# _LT_PATH_MAGIC + + +# LT_PATH_LD +# ---------- +# find the pathname to the GNU or non-GNU linker +AC_DEFUN([LT_PATH_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PROG_ECHO_BACKSLASH])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld @<:@default=no@:>@])], + [test "$withval" = no || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(lt_cv_path_LD, +[if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[[3-9]]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac +]) + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + +_LT_DECL([], [deplibs_check_method], [1], + [Method to check whether dependent libraries are shared objects]) +_LT_DECL([], [file_magic_cmd], [1], + [Command to use when deplibs_check_method = "file_magic"]) +_LT_DECL([], [file_magic_glob], [1], + [How to find potential files when deplibs_check_method = "file_magic"]) +_LT_DECL([], [want_nocaseglob], [1], + [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) +])# _LT_CHECK_MAGIC_METHOD + + +# LT_PATH_NM +# ---------- +# find the pathname to a BSD- or MS-compatible name lister +AC_DEFUN([LT_PATH_NM], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, +[if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi]) +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + AC_SUBST([DUMPBIN]) + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm +AC_SUBST([NM]) +_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl + +AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], + [lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) + cat conftest.out >&AS_MESSAGE_LOG_FD + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest*]) +])# LT_PATH_NM + +# Old names: +AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) +AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_PROG_NM], []) +dnl AC_DEFUN([AC_PROG_NM], []) + +# _LT_CHECK_SHAREDLIB_FROM_LINKLIB +# -------------------------------- +# how to determine the name of the shared library +# associated with a specific link library. +# -- PORTME fill in with the dynamic library characteristics +m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], +[m4_require([_LT_DECL_EGREP]) +m4_require([_LT_DECL_OBJDUMP]) +m4_require([_LT_DECL_DLLTOOL]) +AC_CACHE_CHECK([how to associate runtime and link libraries], +lt_cv_sharedlib_from_linklib_cmd, +[lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac +]) +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + +_LT_DECL([], [sharedlib_from_linklib_cmd], [1], + [Command to associate shared and link libraries]) +])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB + + +# _LT_PATH_MANIFEST_TOOL +# ---------------------- +# locate the manifest tool +m4_defun([_LT_PATH_MANIFEST_TOOL], +[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], + [lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&AS_MESSAGE_LOG_FD + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest*]) +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi +_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl +])# _LT_PATH_MANIFEST_TOOL + + +# LT_LIB_M +# -------- +# check for math library +AC_DEFUN([LT_LIB_M], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +LIBM= +case $host in +*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, cos, LIBM="-lm") + ;; +esac +AC_SUBST([LIBM]) +])# LT_LIB_M + +# Old name: +AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_CHECK_LIBM], []) + + +# _LT_COMPILER_NO_RTTI([TAGNAME]) +# ------------------------------- +m4_defun([_LT_COMPILER_NO_RTTI], +[m4_require([_LT_TAG_COMPILER])dnl + +_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; + *) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; + esac + + _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], + lt_cv_prog_compiler_rtti_exceptions, + [-fno-rtti -fno-exceptions], [], + [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) +fi +_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], + [Compiler flag to turn off builtin functions]) +])# _LT_COMPILER_NO_RTTI + + +# _LT_CMD_GLOBAL_SYMBOLS +# ---------------------- +m4_defun([_LT_CMD_GLOBAL_SYMBOLS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([LT_PATH_NM])dnl +AC_REQUIRE([LT_PATH_LD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_TAG_COMPILER])dnl + +# Check for command to grab the raw symbol name followed by C symbol from nm. +AC_MSG_CHECKING([command to parse $NM output from $compiler object]) +AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], +[ +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[[BCDEGRST]]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[[BCDT]]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[[ABCDGISTW]]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[[ABCDEGRST]]' + fi + ;; +irix* | nonstopux*) + symcode='[[BCDEGRST]]' + ;; +osf*) + symcode='[[BCDEGQRST]]' + ;; +solaris*) + symcode='[[BDRT]]' + ;; +sco3.2v5*) + symcode='[[DT]]' + ;; +sysv4.2uw2*) + symcode='[[DT]]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[[ABDT]]' + ;; +sysv4) + symcode='[[DFNSTU]]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[[ABCDGIRSTW]]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK ['"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx]" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT@&t@_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT@&t@_DLSYM_CONST +#else +# define LT@&t@_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT@&t@_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[[]] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done +]) +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + AC_MSG_RESULT(failed) +else + AC_MSG_RESULT(ok) +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + +_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], + [Take the output of nm and produce a listing of raw symbols and C names]) +_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], + [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_c_name_address], + [lt_cv_sys_global_symbol_to_c_name_address], [1], + [Transform the output of nm in a C name address pair]) +_LT_DECL([global_symbol_to_c_name_address_lib_prefix], + [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], + [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([], [nm_file_list_spec], [1], + [Specify filename containing input files for $NM]) +]) # _LT_CMD_GLOBAL_SYMBOLS + + +# _LT_COMPILER_PIC([TAGNAME]) +# --------------------------- +m4_defun([_LT_COMPILER_PIC], +[m4_require([_LT_TAG_COMPILER])dnl +_LT_TAGVAR(lt_prog_compiler_wl, $1)= +_LT_TAGVAR(lt_prog_compiler_pic, $1)= +_LT_TAGVAR(lt_prog_compiler_static, $1)= + +m4_if([$1], [CXX], [ + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + case $host_os in + aix[[4-9]]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + dgux*) + case $cc_basename in + ec++*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + fi + ;; + aCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + cxx*) + # Digital/Compaq C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + lcc*) + # Lucid + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +], +[ + if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' + if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + hpux9* | hpux10* | hpux11*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC (with -KPIC) is the default. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' + _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' + ;; + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + ccc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All Alpha code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='' + ;; + *Sun\ F* | *Sun*Fortran*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + *Intel*\ [[CF]]*Compiler*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + *Portland\ Group*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All OSF/1 code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + rdos*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + solaris*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; + + sunos4*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + unicos*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + + uts4*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +]) +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" + ;; +esac + +AC_CACHE_CHECK([for $compiler option to produce PIC], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) +_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], + [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], + [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], + [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in + "" | " "*) ;; + *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; + esac], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) +fi +_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], + [Additional compiler flags for building library objects]) + +_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], + [How to pass a linker flag through the compiler]) +# +# Check to make sure the static flag actually works. +# +wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" +_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], + _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), + $lt_tmp_static_flag, + [], + [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) +_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], + [Compiler flag to prevent dynamic linking]) +])# _LT_COMPILER_PIC + + +# _LT_LINKER_SHLIBS([TAGNAME]) +# ---------------------------- +# See if the linker supports building shared libraries. +m4_defun([_LT_LINKER_SHLIBS], +[AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) +m4_if([$1], [CXX], [ + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + case $host_os in + aix[[4-9]]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + ;; + esac + ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac +], [ + runpath_var= + _LT_TAGVAR(allow_undefined_flag, $1)= + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(archive_cmds, $1)= + _LT_TAGVAR(archive_expsym_cmds, $1)= + _LT_TAGVAR(compiler_needs_object, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(hardcode_automatic, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_separator, $1)= + _LT_TAGVAR(hardcode_minus_L, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(inherit_rpath, $1)=no + _LT_TAGVAR(link_all_deplibs, $1)=unknown + _LT_TAGVAR(module_cmds, $1)= + _LT_TAGVAR(module_expsym_cmds, $1)= + _LT_TAGVAR(old_archive_from_new_cmds, $1)= + _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= + _LT_TAGVAR(thread_safe_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + _LT_TAGVAR(include_expsyms, $1)= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; + *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[[3-9]]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + _LT_TAGVAR(whole_archive_flag_spec, $1)= + tmp_sharedflag='--shared' ;; + xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + sunos4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + + if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + _LT_TAGVAR(hardcode_direct, $1)=unsupported + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + _LT_TAGVAR(link_all_deplibs, $1)=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + bsdi[[45]]*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + # FIXME: Should let the user specify the lib program. + _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + esac + ;; + + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + hpux9*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + m4_if($1, [], [ + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + _LT_LINKER_OPTION([if $CC understands -b], + _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + ;; + esac + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], + [lt_cv_irix_exported_symbol], + [save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + AC_LINK_IFELSE( + [AC_LANG_SOURCE( + [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], + [C++], [[int foo (void) { return 0; }]], + [Fortran 77], [[ + subroutine foo + end]], + [Fortran], [[ + subroutine foo + end]])])], + [lt_cv_irix_exported_symbol=yes], + [lt_cv_irix_exported_symbol=no]) + LDFLAGS="$save_LDFLAGS"]) + if test "$lt_cv_irix_exported_symbol" = yes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + newsos6) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + else + case $host_os in + openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + ;; + esac + fi + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + solaris*) + _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + fi + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4.3*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + _LT_TAGVAR(ld_shlibs, $1)=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + ;; + esac + fi + fi +]) +AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) +test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + +_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld + +_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl +_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl +_LT_DECL([], [extract_expsyms_cmds], [2], + [The commands to extract the exported symbol list from a shared archive]) + +# +# Do we need to explicitly link libc? +# +case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in +x|xyes) + # Assume -lc should be added + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $_LT_TAGVAR(archive_cmds, $1) in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + AC_CACHE_CHECK([whether -lc should be explicitly linked in], + [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), + [$RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if AC_TRY_EVAL(ac_compile) 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) + _LT_TAGVAR(allow_undefined_flag, $1)= + if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) + then + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no + else + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes + fi + _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + ]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) + ;; + esac + fi + ;; +esac + +_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], + [Whether or not to add -lc for building shared libraries]) +_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], + [enable_shared_with_static_runtimes], [0], + [Whether or not to disallow shared libs when runtime libs are static]) +_LT_TAGDECL([], [export_dynamic_flag_spec], [1], + [Compiler flag to allow reflexive dlopens]) +_LT_TAGDECL([], [whole_archive_flag_spec], [1], + [Compiler flag to generate shared objects directly from archives]) +_LT_TAGDECL([], [compiler_needs_object], [1], + [Whether the compiler copes with passing no objects directly]) +_LT_TAGDECL([], [old_archive_from_new_cmds], [2], + [Create an old-style archive from a shared archive]) +_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], + [Create a temporary old-style archive to link instead of a shared archive]) +_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) +_LT_TAGDECL([], [archive_expsym_cmds], [2]) +_LT_TAGDECL([], [module_cmds], [2], + [Commands used to build a loadable module if different from building + a shared archive.]) +_LT_TAGDECL([], [module_expsym_cmds], [2]) +_LT_TAGDECL([], [with_gnu_ld], [1], + [Whether we are building with GNU ld or not]) +_LT_TAGDECL([], [allow_undefined_flag], [1], + [Flag that allows shared libraries with undefined symbols to be built]) +_LT_TAGDECL([], [no_undefined_flag], [1], + [Flag that enforces no undefined symbols]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], + [Flag to hardcode $libdir into a binary during linking. + This must work even if $libdir does not exist]) +_LT_TAGDECL([], [hardcode_libdir_separator], [1], + [Whether we need a single "-rpath" flag with a separated argument]) +_LT_TAGDECL([], [hardcode_direct], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary]) +_LT_TAGDECL([], [hardcode_direct_absolute], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary and the resulting library dependency is + "absolute", i.e impossible to change by setting ${shlibpath_var} if the + library is relocated]) +_LT_TAGDECL([], [hardcode_minus_L], [0], + [Set to "yes" if using the -LDIR flag during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_shlibpath_var], [0], + [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_automatic], [0], + [Set to "yes" if building a shared library automatically hardcodes DIR + into the library and all subsequent libraries and executables linked + against it]) +_LT_TAGDECL([], [inherit_rpath], [0], + [Set to yes if linker adds runtime paths of dependent libraries + to runtime path list]) +_LT_TAGDECL([], [link_all_deplibs], [0], + [Whether libtool must link a program against all its dependency libraries]) +_LT_TAGDECL([], [always_export_symbols], [0], + [Set to "yes" if exported symbols are required]) +_LT_TAGDECL([], [export_symbols_cmds], [2], + [The commands to list exported symbols]) +_LT_TAGDECL([], [exclude_expsyms], [1], + [Symbols that should not be listed in the preloaded symbols]) +_LT_TAGDECL([], [include_expsyms], [1], + [Symbols that must always be exported]) +_LT_TAGDECL([], [prelink_cmds], [2], + [Commands necessary for linking programs (against libraries) with templates]) +_LT_TAGDECL([], [postlink_cmds], [2], + [Commands necessary for finishing linking programs]) +_LT_TAGDECL([], [file_list_spec], [1], + [Specify filename containing input files]) +dnl FIXME: Not yet implemented +dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], +dnl [Compiler flag to generate thread safe objects]) +])# _LT_LINKER_SHLIBS + + +# _LT_LANG_C_CONFIG([TAG]) +# ------------------------ +# Ensure that the configuration variables for a C compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_C_CONFIG], +[m4_require([_LT_DECL_EGREP])dnl +lt_save_CC="$CC" +AC_LANG_PUSH(C) + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + +_LT_TAG_COMPILER +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + LT_SYS_DLOPEN_SELF + _LT_CMD_STRIPLIB + + # Report which library types will actually be built + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_CONFIG($1) +fi +AC_LANG_POP +CC="$lt_save_CC" +])# _LT_LANG_C_CONFIG + + +# _LT_LANG_CXX_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a C++ compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_CXX_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + AC_PROG_CXXCPP +else + _lt_caught_CXX_error=yes +fi + +AC_LANG_PUSH(C++) +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(compiler_needs_object, $1)=no +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + else + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + LT_PATH_LD + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) + _LT_TAGVAR(ld_shlibs, $1)=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + freebsd-elf*) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + gnu*) + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + hpux9*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + fi + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) + _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + cxx*) + case $host in + osf3*) + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + ;; + *) + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(archive_cmds_need_lc,$1)=yes + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ + '"$_LT_TAGVAR(old_archive_cmds, $1)" + _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ + '"$_LT_TAGVAR(reload_cmds, $1)" + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) + test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + + _LT_TAGVAR(GCC, $1)="$GXX" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +AC_LANG_POP +])# _LT_LANG_CXX_CONFIG + + +# _LT_FUNC_STRIPNAME_CNF +# ---------------------- +# func_stripname_cnf prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# +# This function is identical to the (non-XSI) version of func_stripname, +# except this one can be used by m4 code that may be executed by configure, +# rather than the libtool script. +m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl +AC_REQUIRE([_LT_DECL_SED]) +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) +func_stripname_cnf () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname_cnf +])# _LT_FUNC_STRIPNAME_CNF + +# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) +# --------------------------------- +# Figure out "hidden" library dependencies from verbose +# compiler output when linking a shared library. +# Parse the compiler output and extract the necessary +# objects, libraries and library flags. +m4_defun([_LT_SYS_HIDDEN_LIBDEPS], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl +# Dependencies to place before and after the object being linked: +_LT_TAGVAR(predep_objects, $1)= +_LT_TAGVAR(postdep_objects, $1)= +_LT_TAGVAR(predeps, $1)= +_LT_TAGVAR(postdeps, $1)= +_LT_TAGVAR(compiler_lib_search_path, $1)= + +dnl we can't use the lt_simple_compile_test_code here, +dnl because it contains code intended for an executable, +dnl not a library. It's possible we should let each +dnl tag define a new lt_????_link_test_code variable, +dnl but it's only used here... +m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF +int a; +void foo (void) { a = 0; } +_LT_EOF +], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF +], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer*4 a + a=0 + return + end +_LT_EOF +], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF +], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF +public class foo { + private int a; + public void bar (void) { + a = 0; + } +}; +_LT_EOF +], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF +package foo +func foo() { +} +_LT_EOF +]) + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +dnl Parse the compiler output and extract the necessary +dnl objects, libraries and library flags. +if AC_TRY_EVAL(ac_compile); then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case ${prev}${p} in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test "$pre_test_object_deps_done" = no; then + case ${prev} in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + else + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$_LT_TAGVAR(postdeps, $1)"; then + _LT_TAGVAR(postdeps, $1)="${prev}${p}" + else + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$_LT_TAGVAR(predep_objects, $1)"; then + _LT_TAGVAR(predep_objects, $1)="$p" + else + _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" + fi + else + if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then + _LT_TAGVAR(postdep_objects, $1)="$p" + else + _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling $1 test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +m4_if([$1], [CXX], +[case $host_os in +interix[[3-9]]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + _LT_TAGVAR(predep_objects,$1)= + _LT_TAGVAR(postdep_objects,$1)= + _LT_TAGVAR(postdeps,$1)= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac +]) + +case " $_LT_TAGVAR(postdeps, $1) " in +*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; +esac + _LT_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi +_LT_TAGDECL([], [compiler_lib_search_dirs], [1], + [The directories searched by this compiler when creating a shared library]) +_LT_TAGDECL([], [predep_objects], [1], + [Dependencies to place before and after the objects being linked to + create a shared library]) +_LT_TAGDECL([], [postdep_objects], [1]) +_LT_TAGDECL([], [predeps], [1]) +_LT_TAGDECL([], [postdeps], [1]) +_LT_TAGDECL([], [compiler_lib_search_path], [1], + [The library search path used internally by the compiler when linking + a shared library]) +])# _LT_SYS_HIDDEN_LIBDEPS + + +# _LT_LANG_F77_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a Fortran 77 compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_F77_CONFIG], +[AC_LANG_PUSH(Fortran 77) +if test -z "$F77" || test "X$F77" = "Xno"; then + _lt_disable_F77=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_F77" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${F77-"f77"} + CFLAGS=$FFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + GCC=$G77 + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$G77" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" + CFLAGS="$lt_save_CFLAGS" +fi # test "$_lt_disable_F77" != yes + +AC_LANG_POP +])# _LT_LANG_F77_CONFIG + + +# _LT_LANG_FC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for a Fortran compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_FC_CONFIG], +[AC_LANG_PUSH(Fortran) + +if test -z "$FC" || test "X$FC" = "Xno"; then + _lt_disable_FC=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_FC" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${FC-"f95"} + CFLAGS=$FCFLAGS + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test "$_lt_disable_FC" != yes + +AC_LANG_POP +])# _LT_LANG_FC_CONFIG + + +# _LT_LANG_GCJ_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Java Compiler compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GCJ_CONFIG], +[AC_REQUIRE([LT_PROG_GCJ])dnl +AC_LANG_SAVE + +# Source file extension for Java test sources. +ac_ext=java + +# Object file extension for compiled Java test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="class foo {}" + +# Code to be used in simple link tests +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GCJ-"gcj"} +CFLAGS=$GCJFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# GCJ did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GCJ_CONFIG + + +# _LT_LANG_GO_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Go compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GO_CONFIG], +[AC_REQUIRE([LT_PROG_GO])dnl +AC_LANG_SAVE + +# Source file extension for Go test sources. +ac_ext=go + +# Object file extension for compiled Go test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="package main; func main() { }" + +# Code to be used in simple link tests +lt_simple_link_test_code='package main; func main() { }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GOC-"gccgo"} +CFLAGS=$GOFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# Go did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GO_CONFIG + + +# _LT_LANG_RC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for the Windows resource compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_RC_CONFIG], +[AC_REQUIRE([LT_PROG_RC])dnl +AC_LANG_SAVE + +# Source file extension for RC test sources. +ac_ext=rc + +# Object file extension for compiled RC test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' + +# Code to be used in simple link tests +lt_simple_link_test_code="$lt_simple_compile_test_code" + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC= +CC=${RC-"windres"} +CFLAGS= +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) +_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + +if test -n "$compiler"; then + : + _LT_CONFIG($1) +fi + +GCC=$lt_save_GCC +AC_LANG_RESTORE +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_RC_CONFIG + + +# LT_PROG_GCJ +# ----------- +AC_DEFUN([LT_PROG_GCJ], +[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], + [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], + [AC_CHECK_TOOL(GCJ, gcj,) + test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + AC_SUBST(GCJFLAGS)])])[]dnl +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_GCJ], []) + + +# LT_PROG_GO +# ---------- +AC_DEFUN([LT_PROG_GO], +[AC_CHECK_TOOL(GOC, gccgo,) +]) + + +# LT_PROG_RC +# ---------- +AC_DEFUN([LT_PROG_RC], +[AC_CHECK_TOOL(RC, windres,) +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_RC], []) + + +# _LT_DECL_EGREP +# -------------- +# If we don't have a new enough Autoconf to choose the best grep +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_EGREP], +[AC_REQUIRE([AC_PROG_EGREP])dnl +AC_REQUIRE([AC_PROG_FGREP])dnl +test -z "$GREP" && GREP=grep +_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) +_LT_DECL([], [EGREP], [1], [An ERE matcher]) +_LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) +]) + + +# _LT_DECL_OBJDUMP +# -------------- +# If we don't have a new enough Autoconf to choose the best objdump +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_OBJDUMP], +[AC_CHECK_TOOL(OBJDUMP, objdump, false) +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) +AC_SUBST([OBJDUMP]) +]) + +# _LT_DECL_DLLTOOL +# ---------------- +# Ensure DLLTOOL variable is set. +m4_defun([_LT_DECL_DLLTOOL], +[AC_CHECK_TOOL(DLLTOOL, dlltool, false) +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program]) +AC_SUBST([DLLTOOL]) +]) + +# _LT_DECL_SED +# ------------ +# Check for a fully-functional sed program, that truncates +# as few characters as possible. Prefer GNU sed if found. +m4_defun([_LT_DECL_SED], +[AC_PROG_SED +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" +_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) +_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], + [Sed that helps us avoid accidentally triggering echo(1) options like -n]) +])# _LT_DECL_SED + +m4_ifndef([AC_PROG_SED], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_SED. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ + +m4_defun([AC_PROG_SED], +[AC_MSG_CHECKING([for a sed that does not truncate output]) +AC_CACHE_VAL(lt_cv_path_SED, +[# Loop through the user's path and test for sed and gsed. +# Then use that list of sed's as ones to test for truncation. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done + done +done +IFS=$as_save_IFS +lt_ac_max=0 +lt_ac_count=0 +# Add /usr/xpg4/bin/sed as it is typically found on Solaris +# along with /bin/sed that truncates output. +for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do + test ! -f $lt_ac_sed && continue + cat /dev/null > conftest.in + lt_ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >conftest.in + # Check for GNU sed and select it if it is found. + if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then + lt_cv_path_SED=$lt_ac_sed + break + fi + while true; do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo >>conftest.nl + $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break + cmp -s conftest.out conftest.nl || break + # 10000 chars as input seems more than enough + test $lt_ac_count -gt 10 && break + lt_ac_count=`expr $lt_ac_count + 1` + if test $lt_ac_count -gt $lt_ac_max; then + lt_ac_max=$lt_ac_count + lt_cv_path_SED=$lt_ac_sed + fi + done +done +]) +SED=$lt_cv_path_SED +AC_SUBST([SED]) +AC_MSG_RESULT([$SED]) +])#AC_PROG_SED +])#m4_ifndef + +# Old name: +AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_SED], []) + + +# _LT_CHECK_SHELL_FEATURES +# ------------------------ +# Find out whether the shell is Bourne or XSI compatible, +# or has some other useful features. +m4_defun([_LT_CHECK_SHELL_FEATURES], +[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +AC_MSG_RESULT([$xsi_shell]) +_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) + +AC_MSG_CHECKING([whether the shell understands "+="]) +lt_shell_append=no +( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +AC_MSG_RESULT([$lt_shell_append]) +_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi +_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac +_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl +_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl +])# _LT_CHECK_SHELL_FEATURES + + +# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) +# ------------------------------------------------------ +# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and +# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. +m4_defun([_LT_PROG_FUNCTION_REPLACE], +[dnl { +sed -e '/^$1 ()$/,/^} # $1 /c\ +$1 ()\ +{\ +m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) +} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: +]) + + +# _LT_PROG_REPLACE_SHELLFNS +# ------------------------- +# Replace existing portable implementations of several shell functions with +# equivalent extended shell implementations where those features are available.. +m4_defun([_LT_PROG_REPLACE_SHELLFNS], +[if test x"$xsi_shell" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl + func_split_long_opt_name=${1%%=*} + func_split_long_opt_arg=${1#*=}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) + + _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) + + _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) + + _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) +fi + +if test x"$lt_shell_append" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) + + _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl + func_quote_for_eval "${2}" +dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ + eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) +fi +]) + +# _LT_PATH_CONVERSION_FUNCTIONS +# ----------------------------- +# Determine which file name conversion functions should be used by +# func_to_host_file (and, implicitly, by func_to_host_path). These are needed +# for certain cross-compile configurations and native mingw. +m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_MSG_CHECKING([how to convert $build file names to $host format]) +AC_CACHE_VAL(lt_cv_to_host_file_cmd, +[case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac +]) +to_host_file_cmd=$lt_cv_to_host_file_cmd +AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) +_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], + [0], [convert $build file names to $host format])dnl + +AC_MSG_CHECKING([how to convert $build file names to toolchain format]) +AC_CACHE_VAL(lt_cv_to_tool_file_cmd, +[#assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac +]) +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) +_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], + [0], [convert $build files to toolchain format])dnl +])# _LT_PATH_CONVERSION_FUNCTIONS diff --git a/cpp/thirdparty/gtest-1.7.0/m4/ltoptions.m4 b/cpp/thirdparty/gtest-1.7.0/m4/ltoptions.m4 new file mode 100644 index 000000000..5d9acd8e2 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/m4/ltoptions.m4 @@ -0,0 +1,384 @@ +# Helper functions for option handling. -*- Autoconf -*- +# +# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 7 ltoptions.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + + +# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +# ------------------------------------------ +m4_define([_LT_MANGLE_OPTION], +[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +# --------------------------------------- +# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +# matching handler defined, dispatch to it. Other OPTION-NAMEs are +# saved as a flag. +m4_define([_LT_SET_OPTION], +[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), + _LT_MANGLE_DEFUN([$1], [$2]), + [m4_warning([Unknown $1 option `$2'])])[]dnl +]) + + +# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +# ------------------------------------------------------------ +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +m4_define([_LT_IF_OPTION], +[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + + +# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +# ------------------------------------------------------- +# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +# are set. +m4_define([_LT_UNLESS_OPTIONS], +[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), + [m4_define([$0_found])])])[]dnl +m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +])[]dnl +]) + + +# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +# ---------------------------------------- +# OPTION-LIST is a space-separated list of Libtool options associated +# with MACRO-NAME. If any OPTION has a matching handler declared with +# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +# the unknown option and exit. +m4_defun([_LT_SET_OPTIONS], +[# Set options +m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [_LT_SET_OPTION([$1], _LT_Option)]) + +m4_if([$1],[LT_INIT],[ + dnl + dnl Simply set some default values (i.e off) if boolean options were not + dnl specified: + _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no + ]) + _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no + ]) + dnl + dnl If no reference was made to various pairs of opposing options, then + dnl we run the default mode handler for the pair. For example, if neither + dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl archives by default: + _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) + _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], + [_LT_ENABLE_FAST_INSTALL]) + ]) +])# _LT_SET_OPTIONS + + +## --------------------------------- ## +## Macros to handle LT_INIT options. ## +## --------------------------------- ## + +# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +# ----------------------------------------- +m4_define([_LT_MANGLE_DEFUN], +[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + + +# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +# ----------------------------------------------- +m4_define([LT_OPTION_DEFINE], +[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +])# LT_OPTION_DEFINE + + +# dlopen +# ------ +LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +]) + +AU_DEFUN([AC_LIBTOOL_DLOPEN], +[_LT_SET_OPTION([LT_INIT], [dlopen]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `dlopen' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + + +# win32-dll +# --------- +# Declare package support for building win32 dll's. +LT_OPTION_DEFINE([LT_INIT], [win32-dll], +[enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) + AC_CHECK_TOOL(AS, as, false) + AC_CHECK_TOOL(DLLTOOL, dlltool, false) + AC_CHECK_TOOL(OBJDUMP, objdump, false) + ;; +esac + +test -z "$AS" && AS=as +_LT_DECL([], [AS], [1], [Assembler program])dnl + +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl + +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl +])# win32-dll + +AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +_LT_SET_OPTION([LT_INIT], [win32-dll]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `win32-dll' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + + +# _LT_ENABLE_SHARED([DEFAULT]) +# ---------------------------- +# implement the --enable-shared flag, and supports the `shared' and +# `disable-shared' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_SHARED], +[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([shared], + [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], + [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) + + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED + +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +]) + +AC_DEFUN([AC_DISABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], [disable-shared]) +]) + +AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) + + + +# _LT_ENABLE_STATIC([DEFAULT]) +# ---------------------------- +# implement the --enable-static flag, and support the `static' and +# `disable-static' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_STATIC], +[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([static], + [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], + [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC + +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +]) + +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) + +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) + + + +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +# ---------------------------------- +# implement the --enable-fast-install flag, and support the `fast-install' +# and `disable-fast-install' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_FAST_INSTALL], +[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([fast-install], + [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], + [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL + +LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +# Old names: +AU_DEFUN([AC_ENABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `fast-install' option into LT_INIT's first parameter.]) +]) + +AU_DEFUN([AC_DISABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `disable-fast-install' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +# _LT_WITH_PIC([MODE]) +# -------------------- +# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# LT_INIT options. +# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +m4_define([_LT_WITH_PIC], +[AC_ARG_WITH([pic], + [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], + [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], + [lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [pic_mode=default]) + +test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC + +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + +# Old name: +AU_DEFUN([AC_LIBTOOL_PICMODE], +[_LT_SET_OPTION([LT_INIT], [pic-only]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `pic-only' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + +## ----------------- ## +## LTDL_INIT Options ## +## ----------------- ## + +m4_define([_LTDL_MODE], []) +LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], + [m4_define([_LTDL_MODE], [nonrecursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [recursive], + [m4_define([_LTDL_MODE], [recursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [subproject], + [m4_define([_LTDL_MODE], [subproject])]) + +m4_define([_LTDL_TYPE], []) +LT_OPTION_DEFINE([LTDL_INIT], [installable], + [m4_define([_LTDL_TYPE], [installable])]) +LT_OPTION_DEFINE([LTDL_INIT], [convenience], + [m4_define([_LTDL_TYPE], [convenience])]) diff --git a/cpp/thirdparty/gtest-1.7.0/m4/ltsugar.m4 b/cpp/thirdparty/gtest-1.7.0/m4/ltsugar.m4 new file mode 100644 index 000000000..9000a057d --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/m4/ltsugar.m4 @@ -0,0 +1,123 @@ +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 6 ltsugar.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) + + +# lt_join(SEP, ARG1, [ARG2...]) +# ----------------------------- +# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their +# associated separator. +# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier +# versions in m4sugar had bugs. +m4_define([lt_join], +[m4_if([$#], [1], [], + [$#], [2], [[$2]], + [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) +m4_define([_lt_join], +[m4_if([$#$2], [2], [], + [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) + + +# lt_car(LIST) +# lt_cdr(LIST) +# ------------ +# Manipulate m4 lists. +# These macros are necessary as long as will still need to support +# Autoconf-2.59 which quotes differently. +m4_define([lt_car], [[$1]]) +m4_define([lt_cdr], +[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], + [$#], 1, [], + [m4_dquote(m4_shift($@))])]) +m4_define([lt_unquote], $1) + + +# lt_append(MACRO-NAME, STRING, [SEPARATOR]) +# ------------------------------------------ +# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Note that neither SEPARATOR nor STRING are expanded; they are appended +# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). +# No SEPARATOR is output if MACRO-NAME was previously undefined (different +# than defined and empty). +# +# This macro is needed until we can rely on Autoconf 2.62, since earlier +# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. +m4_define([lt_append], +[m4_define([$1], + m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) + + + +# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) +# ---------------------------------------------------------- +# Produce a SEP delimited list of all paired combinations of elements of +# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list +# has the form PREFIXmINFIXSUFFIXn. +# Needed until we can rely on m4_combine added in Autoconf 2.62. +m4_define([lt_combine], +[m4_if(m4_eval([$# > 3]), [1], + [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl +[[m4_foreach([_Lt_prefix], [$2], + [m4_foreach([_Lt_suffix], + ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, + [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) + + +# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) +# ----------------------------------------------------------------------- +# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited +# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. +m4_define([lt_if_append_uniq], +[m4_ifdef([$1], + [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], + [lt_append([$1], [$2], [$3])$4], + [$5])], + [lt_append([$1], [$2], [$3])$4])]) + + +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) + + +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) + + +# lt_dict_fetch(DICT, KEY, [SUBKEY]) +# ---------------------------------- +m4_define([lt_dict_fetch], +[m4_ifval([$3], + m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), + m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) + + +# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) +# ----------------------------------------------------------------- +m4_define([lt_if_dict_fetch], +[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], + [$5], + [$6])]) + + +# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) +# -------------------------------------------------------------- +m4_define([lt_dict_filter], +[m4_if([$5], [], [], + [lt_join(m4_quote(m4_default([$4], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), + [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl +]) diff --git a/cpp/thirdparty/gtest-1.7.0/m4/ltversion.m4 b/cpp/thirdparty/gtest-1.7.0/m4/ltversion.m4 new file mode 100644 index 000000000..07a8602d4 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/m4/ltversion.m4 @@ -0,0 +1,23 @@ +# ltversion.m4 -- version numbers -*- Autoconf -*- +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# @configure_input@ + +# serial 3337 ltversion.m4 +# This file is part of GNU Libtool + +m4_define([LT_PACKAGE_VERSION], [2.4.2]) +m4_define([LT_PACKAGE_REVISION], [1.3337]) + +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.4.2' +macro_revision='1.3337' +_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) +_LT_DECL(, macro_revision, 0) +]) diff --git a/cpp/thirdparty/gtest-1.7.0/m4/lt~obsolete.m4 b/cpp/thirdparty/gtest-1.7.0/m4/lt~obsolete.m4 new file mode 100644 index 000000000..c573da90c --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/m4/lt~obsolete.m4 @@ -0,0 +1,98 @@ +# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004. +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 5 lt~obsolete.m4 + +# These exist entirely to fool aclocal when bootstrapping libtool. +# +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# which have later been changed to m4_define as they aren't part of the +# exported API, or moved to Autoconf or Automake where they belong. +# +# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN +# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us +# using a macro with the same name in our local m4/libtool.m4 it'll +# pull the old libtool.m4 in (it doesn't see our shiny new m4_define +# and doesn't know about Autoconf macros at all.) +# +# So we provide this file, which has a silly filename so it's always +# included after everything else. This provides aclocal with the +# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything +# because those macros already exist, or will be overwritten later. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# +# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. +# Yes, that means every name once taken will need to remain here until +# we give up compatibility with versions before 1.7, at which point +# we need to keep only those names which we still refer to. + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) + +m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) +m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) +m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) +m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) +m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) +m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) +m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) +m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) +m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) +m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) +m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) +m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) +m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) +m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) +m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) +m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) +m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) +m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) +m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) +m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) +m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) +m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) +m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) +m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) +m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) +m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) +m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) +m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) +m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) +m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) +m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) +m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) +m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) +m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) +m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) +m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) +m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) +m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) +m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) +m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) +m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) +m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) +m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) +m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) +m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) +m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) +m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) +m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) +m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) +m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) +m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) diff --git a/cpp/thirdparty/gtest-1.7.0/make/Makefile b/cpp/thirdparty/gtest-1.7.0/make/Makefile new file mode 100644 index 000000000..9ac74493b --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/make/Makefile @@ -0,0 +1,82 @@ +# A sample Makefile for building Google Test and using it in user +# tests. Please tweak it to suit your environment and project. You +# may want to move it to your project's root directory. +# +# SYNOPSIS: +# +# make [all] - makes everything. +# make TARGET - makes the given target. +# make clean - removes all files generated by make. + +# Please tweak the following variable definitions as needed by your +# project, except GTEST_HEADERS, which you can use in your own targets +# but shouldn't modify. + +# Points to the root of Google Test, relative to where this file is. +# Remember to tweak this if you move this file. +GTEST_DIR = .. + +# Where to find user code. +USER_DIR = ../samples + +# Flags passed to the preprocessor. +# Set Google Test's header directory as a system directory, such that +# the compiler doesn't generate warnings in Google Test headers. +CPPFLAGS += -isystem $(GTEST_DIR)/include + +# Flags passed to the C++ compiler. +CXXFLAGS += -g -Wall -Wextra -pthread + +# All tests produced by this Makefile. Remember to add new tests you +# created to the list. +TESTS = sample1_unittest + +# All Google Test headers. Usually you shouldn't change this +# definition. +GTEST_HEADERS = $(GTEST_DIR)/include/gtest/*.h \ + $(GTEST_DIR)/include/gtest/internal/*.h + +# House-keeping build targets. + +all : $(TESTS) + +clean : + rm -f $(TESTS) gtest.a gtest_main.a *.o + +# Builds gtest.a and gtest_main.a. + +# Usually you shouldn't tweak such internal variables, indicated by a +# trailing _. +GTEST_SRCS_ = $(GTEST_DIR)/src/*.cc $(GTEST_DIR)/src/*.h $(GTEST_HEADERS) + +# For simplicity and to avoid depending on Google Test's +# implementation details, the dependencies specified below are +# conservative and not optimized. This is fine as Google Test +# compiles fast and for ordinary users its source rarely changes. +gtest-all.o : $(GTEST_SRCS_) + $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c \ + $(GTEST_DIR)/src/gtest-all.cc + +gtest_main.o : $(GTEST_SRCS_) + $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c \ + $(GTEST_DIR)/src/gtest_main.cc + +gtest.a : gtest-all.o + $(AR) $(ARFLAGS) $@ $^ + +gtest_main.a : gtest-all.o gtest_main.o + $(AR) $(ARFLAGS) $@ $^ + +# Builds a sample test. A test should link with either gtest.a or +# gtest_main.a, depending on whether it defines its own main() +# function. + +sample1.o : $(USER_DIR)/sample1.cc $(USER_DIR)/sample1.h $(GTEST_HEADERS) + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1.cc + +sample1_unittest.o : $(USER_DIR)/sample1_unittest.cc \ + $(USER_DIR)/sample1.h $(GTEST_HEADERS) + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1_unittest.cc + +sample1_unittest : sample1.o sample1_unittest.o gtest_main.a + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -lpthread $^ -o $@ diff --git a/cpp/thirdparty/gtest-1.7.0/msvc/gtest-md.sln b/cpp/thirdparty/gtest-1.7.0/msvc/gtest-md.sln new file mode 100755 index 000000000..f7908da11 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/msvc/gtest-md.sln @@ -0,0 +1,45 @@ +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest-md", "gtest-md.vcproj", "{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_main-md", "gtest_main-md.vcproj", "{3AF54C8A-10BF-4332-9147-F68ED9862033}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_prod_test-md", "gtest_prod_test-md.vcproj", "{24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_unittest-md", "gtest_unittest-md.vcproj", "{4D9FDFB5-986A-4139-823C-F4EE0ED481A2}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug.ActiveCfg = Debug|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug.Build.0 = Debug|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release.ActiveCfg = Release|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release.Build.0 = Release|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Debug.ActiveCfg = Debug|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Debug.Build.0 = Debug|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Release.ActiveCfg = Release|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Release.Build.0 = Release|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Debug.ActiveCfg = Debug|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Debug.Build.0 = Debug|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Release.ActiveCfg = Release|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Release.Build.0 = Release|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Debug.ActiveCfg = Debug|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Debug.Build.0 = Debug|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Release.ActiveCfg = Release|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/cpp/thirdparty/gtest-1.7.0/msvc/gtest-md.vcproj b/cpp/thirdparty/gtest-1.7.0/msvc/gtest-md.vcproj new file mode 100755 index 000000000..1c35c3a5e --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/msvc/gtest-md.vcproj @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cpp/thirdparty/gtest-1.7.0/msvc/gtest.sln b/cpp/thirdparty/gtest-1.7.0/msvc/gtest.sln new file mode 100755 index 000000000..ef4b057ff --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/msvc/gtest.sln @@ -0,0 +1,45 @@ +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest", "gtest.vcproj", "{C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_main", "gtest_main.vcproj", "{3AF54C8A-10BF-4332-9147-F68ED9862032}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_unittest", "gtest_unittest.vcproj", "{4D9FDFB5-986A-4139-823C-F4EE0ED481A1}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_prod_test", "gtest_prod_test.vcproj", "{24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Debug.ActiveCfg = Debug|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Debug.Build.0 = Debug|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Release.ActiveCfg = Release|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Release.Build.0 = Release|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Debug.ActiveCfg = Debug|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Debug.Build.0 = Debug|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Release.ActiveCfg = Release|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Release.Build.0 = Release|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Debug.ActiveCfg = Debug|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Debug.Build.0 = Debug|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Release.ActiveCfg = Release|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Release.Build.0 = Release|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Debug.ActiveCfg = Debug|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Debug.Build.0 = Debug|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Release.ActiveCfg = Release|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/cpp/thirdparty/gtest-1.7.0/msvc/gtest.vcproj b/cpp/thirdparty/gtest-1.7.0/msvc/gtest.vcproj new file mode 100755 index 000000000..a8373ce9a --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/msvc/gtest.vcproj @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cpp/thirdparty/gtest-1.7.0/msvc/gtest_main-md.vcproj b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_main-md.vcproj new file mode 100755 index 000000000..b5379fe61 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_main-md.vcproj @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cpp/thirdparty/gtest-1.7.0/msvc/gtest_main.vcproj b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_main.vcproj new file mode 100755 index 000000000..e8b763c56 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_main.vcproj @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cpp/thirdparty/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj new file mode 100755 index 000000000..05b05d9ed --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cpp/thirdparty/gtest-1.7.0/msvc/gtest_prod_test.vcproj b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_prod_test.vcproj new file mode 100755 index 000000000..6d7a2f021 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_prod_test.vcproj @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cpp/thirdparty/gtest-1.7.0/msvc/gtest_unittest-md.vcproj b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_unittest-md.vcproj new file mode 100755 index 000000000..38a5e5663 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_unittest-md.vcproj @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cpp/thirdparty/gtest-1.7.0/msvc/gtest_unittest.vcproj b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_unittest.vcproj new file mode 100755 index 000000000..cb1f52b1f --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/msvc/gtest_unittest.vcproj @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cpp/thirdparty/gtest-1.7.0/samples/prime_tables.h b/cpp/thirdparty/gtest-1.7.0/samples/prime_tables.h new file mode 100644 index 000000000..92ce16a01 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/prime_tables.h @@ -0,0 +1,123 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) +// Author: vladl@google.com (Vlad Losev) + +// This provides interface PrimeTable that determines whether a number is a +// prime and determines a next prime number. This interface is used +// in Google Test samples demonstrating use of parameterized tests. + +#ifndef GTEST_SAMPLES_PRIME_TABLES_H_ +#define GTEST_SAMPLES_PRIME_TABLES_H_ + +#include + +// The prime table interface. +class PrimeTable { + public: + virtual ~PrimeTable() {} + + // Returns true iff n is a prime number. + virtual bool IsPrime(int n) const = 0; + + // Returns the smallest prime number greater than p; or returns -1 + // if the next prime is beyond the capacity of the table. + virtual int GetNextPrime(int p) const = 0; +}; + +// Implementation #1 calculates the primes on-the-fly. +class OnTheFlyPrimeTable : public PrimeTable { + public: + virtual bool IsPrime(int n) const { + if (n <= 1) return false; + + for (int i = 2; i*i <= n; i++) { + // n is divisible by an integer other than 1 and itself. + if ((n % i) == 0) return false; + } + + return true; + } + + virtual int GetNextPrime(int p) const { + for (int n = p + 1; n > 0; n++) { + if (IsPrime(n)) return n; + } + + return -1; + } +}; + +// Implementation #2 pre-calculates the primes and stores the result +// in an array. +class PreCalculatedPrimeTable : public PrimeTable { + public: + // 'max' specifies the maximum number the prime table holds. + explicit PreCalculatedPrimeTable(int max) + : is_prime_size_(max + 1), is_prime_(new bool[max + 1]) { + CalculatePrimesUpTo(max); + } + virtual ~PreCalculatedPrimeTable() { delete[] is_prime_; } + + virtual bool IsPrime(int n) const { + return 0 <= n && n < is_prime_size_ && is_prime_[n]; + } + + virtual int GetNextPrime(int p) const { + for (int n = p + 1; n < is_prime_size_; n++) { + if (is_prime_[n]) return n; + } + + return -1; + } + + private: + void CalculatePrimesUpTo(int max) { + ::std::fill(is_prime_, is_prime_ + is_prime_size_, true); + is_prime_[0] = is_prime_[1] = false; + + for (int i = 2; i <= max; i++) { + if (!is_prime_[i]) continue; + + // Marks all multiples of i (except i itself) as non-prime. + for (int j = 2*i; j <= max; j += i) { + is_prime_[j] = false; + } + } + } + + const int is_prime_size_; + bool* const is_prime_; + + // Disables compiler warning "assignment operator could not be generated." + void operator=(const PreCalculatedPrimeTable& rhs); +}; + +#endif // GTEST_SAMPLES_PRIME_TABLES_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample1.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample1.cc new file mode 100644 index 000000000..f171e2609 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample1.cc @@ -0,0 +1,68 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// A sample program demonstrating using Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) + +#include "sample1.h" + +// Returns n! (the factorial of n). For negative n, n! is defined to be 1. +int Factorial(int n) { + int result = 1; + for (int i = 1; i <= n; i++) { + result *= i; + } + + return result; +} + +// Returns true iff n is a prime number. +bool IsPrime(int n) { + // Trivial case 1: small numbers + if (n <= 1) return false; + + // Trivial case 2: even numbers + if (n % 2 == 0) return n == 2; + + // Now, we have that n is odd and n >= 3. + + // Try to divide n by every odd number i, starting from 3 + for (int i = 3; ; i += 2) { + // We only have to try i up to the squre root of n + if (i > n/i) break; + + // Now, we have i <= n/i < n. + // If n is divisible by i, n is not prime. + if (n % i == 0) return false; + } + + // n has no integer factor in the range (1, n), and thus is prime. + return true; +} diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample1.h b/cpp/thirdparty/gtest-1.7.0/samples/sample1.h new file mode 100644 index 000000000..3dfeb98c4 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample1.h @@ -0,0 +1,43 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// A sample program demonstrating using Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) + +#ifndef GTEST_SAMPLES_SAMPLE1_H_ +#define GTEST_SAMPLES_SAMPLE1_H_ + +// Returns n! (the factorial of n). For negative n, n! is defined to be 1. +int Factorial(int n); + +// Returns true iff n is a prime number. +bool IsPrime(int n); + +#endif // GTEST_SAMPLES_SAMPLE1_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample10_unittest.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample10_unittest.cc new file mode 100644 index 000000000..0051cd5dc --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample10_unittest.cc @@ -0,0 +1,144 @@ +// Copyright 2009 Google Inc. All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) + +// This sample shows how to use Google Test listener API to implement +// a primitive leak checker. + +#include +#include + +#include "gtest/gtest.h" + +using ::testing::EmptyTestEventListener; +using ::testing::InitGoogleTest; +using ::testing::Test; +using ::testing::TestCase; +using ::testing::TestEventListeners; +using ::testing::TestInfo; +using ::testing::TestPartResult; +using ::testing::UnitTest; + +namespace { + +// We will track memory used by this class. +class Water { + public: + // Normal Water declarations go here. + + // operator new and operator delete help us control water allocation. + void* operator new(size_t allocation_size) { + allocated_++; + return malloc(allocation_size); + } + + void operator delete(void* block, size_t /* allocation_size */) { + allocated_--; + free(block); + } + + static int allocated() { return allocated_; } + + private: + static int allocated_; +}; + +int Water::allocated_ = 0; + +// This event listener monitors how many Water objects are created and +// destroyed by each test, and reports a failure if a test leaks some Water +// objects. It does this by comparing the number of live Water objects at +// the beginning of a test and at the end of a test. +class LeakChecker : public EmptyTestEventListener { + private: + // Called before a test starts. + virtual void OnTestStart(const TestInfo& /* test_info */) { + initially_allocated_ = Water::allocated(); + } + + // Called after a test ends. + virtual void OnTestEnd(const TestInfo& /* test_info */) { + int difference = Water::allocated() - initially_allocated_; + + // You can generate a failure in any event handler except + // OnTestPartResult. Just use an appropriate Google Test assertion to do + // it. + EXPECT_LE(difference, 0) << "Leaked " << difference << " unit(s) of Water!"; + } + + int initially_allocated_; +}; + +TEST(ListenersTest, DoesNotLeak) { + Water* water = new Water; + delete water; +} + +// This should fail when the --check_for_leaks command line flag is +// specified. +TEST(ListenersTest, LeaksWater) { + Water* water = new Water; + EXPECT_TRUE(water != NULL); +} + +} // namespace + +int main(int argc, char **argv) { + InitGoogleTest(&argc, argv); + + bool check_for_leaks = false; + if (argc > 1 && strcmp(argv[1], "--check_for_leaks") == 0 ) + check_for_leaks = true; + else + printf("%s\n", "Run this program with --check_for_leaks to enable " + "custom leak checking in the tests."); + + // If we are given the --check_for_leaks command line flag, installs the + // leak checker. + if (check_for_leaks) { + TestEventListeners& listeners = UnitTest::GetInstance()->listeners(); + + // Adds the leak checker to the end of the test event listener list, + // after the default text output printer and the default XML report + // generator. + // + // The order is important - it ensures that failures generated in the + // leak checker's OnTestEnd() method are processed by the text and XML + // printers *before* their OnTestEnd() methods are called, such that + // they are attributed to the right test. Remember that a listener + // receives an OnXyzStart event *after* listeners preceding it in the + // list received that event, and receives an OnXyzEnd event *before* + // listeners preceding it. + // + // We don't need to worry about deleting the new listener later, as + // Google Test will do it. + listeners.Append(new LeakChecker); + } + return RUN_ALL_TESTS(); +} diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample1_unittest.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample1_unittest.cc new file mode 100644 index 000000000..aefc4f1d8 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample1_unittest.cc @@ -0,0 +1,153 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// A sample program demonstrating using Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) + + +// This sample shows how to write a simple unit test for a function, +// using Google C++ testing framework. +// +// Writing a unit test using Google C++ testing framework is easy as 1-2-3: + + +// Step 1. Include necessary header files such that the stuff your +// test logic needs is declared. +// +// Don't forget gtest.h, which declares the testing framework. + +#include +#include "sample1.h" +#include "gtest/gtest.h" + + +// Step 2. Use the TEST macro to define your tests. +// +// TEST has two parameters: the test case name and the test name. +// After using the macro, you should define your test logic between a +// pair of braces. You can use a bunch of macros to indicate the +// success or failure of a test. EXPECT_TRUE and EXPECT_EQ are +// examples of such macros. For a complete list, see gtest.h. +// +// +// +// In Google Test, tests are grouped into test cases. This is how we +// keep test code organized. You should put logically related tests +// into the same test case. +// +// The test case name and the test name should both be valid C++ +// identifiers. And you should not use underscore (_) in the names. +// +// Google Test guarantees that each test you define is run exactly +// once, but it makes no guarantee on the order the tests are +// executed. Therefore, you should write your tests in such a way +// that their results don't depend on their order. +// +// + + +// Tests Factorial(). + +// Tests factorial of negative numbers. +TEST(FactorialTest, Negative) { + // This test is named "Negative", and belongs to the "FactorialTest" + // test case. + EXPECT_EQ(1, Factorial(-5)); + EXPECT_EQ(1, Factorial(-1)); + EXPECT_GT(Factorial(-10), 0); + + // + // + // EXPECT_EQ(expected, actual) is the same as + // + // EXPECT_TRUE((expected) == (actual)) + // + // except that it will print both the expected value and the actual + // value when the assertion fails. This is very helpful for + // debugging. Therefore in this case EXPECT_EQ is preferred. + // + // On the other hand, EXPECT_TRUE accepts any Boolean expression, + // and is thus more general. + // + // +} + +// Tests factorial of 0. +TEST(FactorialTest, Zero) { + EXPECT_EQ(1, Factorial(0)); +} + +// Tests factorial of positive numbers. +TEST(FactorialTest, Positive) { + EXPECT_EQ(1, Factorial(1)); + EXPECT_EQ(2, Factorial(2)); + EXPECT_EQ(6, Factorial(3)); + EXPECT_EQ(40320, Factorial(8)); +} + + +// Tests IsPrime() + +// Tests negative input. +TEST(IsPrimeTest, Negative) { + // This test belongs to the IsPrimeTest test case. + + EXPECT_FALSE(IsPrime(-1)); + EXPECT_FALSE(IsPrime(-2)); + EXPECT_FALSE(IsPrime(INT_MIN)); +} + +// Tests some trivial cases. +TEST(IsPrimeTest, Trivial) { + EXPECT_FALSE(IsPrime(0)); + EXPECT_FALSE(IsPrime(1)); + EXPECT_TRUE(IsPrime(2)); + EXPECT_TRUE(IsPrime(3)); +} + +// Tests positive input. +TEST(IsPrimeTest, Positive) { + EXPECT_FALSE(IsPrime(4)); + EXPECT_TRUE(IsPrime(5)); + EXPECT_FALSE(IsPrime(6)); + EXPECT_TRUE(IsPrime(23)); +} + +// Step 3. Call RUN_ALL_TESTS() in main(). +// +// We do this by linking in src/gtest_main.cc file, which consists of +// a main() function which calls RUN_ALL_TESTS() for us. +// +// This runs all the tests you've defined, prints the result, and +// returns 0 if successful, or 1 otherwise. +// +// Did you notice that we didn't register the tests? The +// RUN_ALL_TESTS() macro magically knows about all the tests we +// defined. Isn't this convenient? diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample2.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample2.cc new file mode 100644 index 000000000..5f763b9bd --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample2.cc @@ -0,0 +1,56 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// A sample program demonstrating using Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) + +#include "sample2.h" + +#include + +// Clones a 0-terminated C string, allocating memory using new. +const char* MyString::CloneCString(const char* a_c_string) { + if (a_c_string == NULL) return NULL; + + const size_t len = strlen(a_c_string); + char* const clone = new char[ len + 1 ]; + memcpy(clone, a_c_string, len + 1); + + return clone; +} + +// Sets the 0-terminated C string this MyString object +// represents. +void MyString::Set(const char* a_c_string) { + // Makes sure this works when c_string == c_string_ + const char* const temp = MyString::CloneCString(a_c_string); + delete[] c_string_; + c_string_ = temp; +} diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample2.h b/cpp/thirdparty/gtest-1.7.0/samples/sample2.h new file mode 100644 index 000000000..cb485c70f --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample2.h @@ -0,0 +1,85 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// A sample program demonstrating using Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) + +#ifndef GTEST_SAMPLES_SAMPLE2_H_ +#define GTEST_SAMPLES_SAMPLE2_H_ + +#include + + +// A simple string class. +class MyString { + private: + const char* c_string_; + const MyString& operator=(const MyString& rhs); + + public: + // Clones a 0-terminated C string, allocating memory using new. + static const char* CloneCString(const char* a_c_string); + + //////////////////////////////////////////////////////////// + // + // C'tors + + // The default c'tor constructs a NULL string. + MyString() : c_string_(NULL) {} + + // Constructs a MyString by cloning a 0-terminated C string. + explicit MyString(const char* a_c_string) : c_string_(NULL) { + Set(a_c_string); + } + + // Copy c'tor + MyString(const MyString& string) : c_string_(NULL) { + Set(string.c_string_); + } + + //////////////////////////////////////////////////////////// + // + // D'tor. MyString is intended to be a final class, so the d'tor + // doesn't need to be virtual. + ~MyString() { delete[] c_string_; } + + // Gets the 0-terminated C string this MyString object represents. + const char* c_string() const { return c_string_; } + + size_t Length() const { + return c_string_ == NULL ? 0 : strlen(c_string_); + } + + // Sets the 0-terminated C string this MyString object represents. + void Set(const char* c_string); +}; + + +#endif // GTEST_SAMPLES_SAMPLE2_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample2_unittest.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample2_unittest.cc new file mode 100644 index 000000000..4fa19b71c --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample2_unittest.cc @@ -0,0 +1,109 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// A sample program demonstrating using Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) + + +// This sample shows how to write a more complex unit test for a class +// that has multiple member functions. +// +// Usually, it's a good idea to have one test for each method in your +// class. You don't have to do that exactly, but it helps to keep +// your tests organized. You may also throw in additional tests as +// needed. + +#include "sample2.h" +#include "gtest/gtest.h" + +// In this example, we test the MyString class (a simple string). + +// Tests the default c'tor. +TEST(MyString, DefaultConstructor) { + const MyString s; + + // Asserts that s.c_string() returns NULL. + // + // + // + // If we write NULL instead of + // + // static_cast(NULL) + // + // in this assertion, it will generate a warning on gcc 3.4. The + // reason is that EXPECT_EQ needs to know the types of its + // arguments in order to print them when it fails. Since NULL is + // #defined as 0, the compiler will use the formatter function for + // int to print it. However, gcc thinks that NULL should be used as + // a pointer, not an int, and therefore complains. + // + // The root of the problem is C++'s lack of distinction between the + // integer number 0 and the null pointer constant. Unfortunately, + // we have to live with this fact. + // + // + EXPECT_STREQ(NULL, s.c_string()); + + EXPECT_EQ(0u, s.Length()); +} + +const char kHelloString[] = "Hello, world!"; + +// Tests the c'tor that accepts a C string. +TEST(MyString, ConstructorFromCString) { + const MyString s(kHelloString); + EXPECT_EQ(0, strcmp(s.c_string(), kHelloString)); + EXPECT_EQ(sizeof(kHelloString)/sizeof(kHelloString[0]) - 1, + s.Length()); +} + +// Tests the copy c'tor. +TEST(MyString, CopyConstructor) { + const MyString s1(kHelloString); + const MyString s2 = s1; + EXPECT_EQ(0, strcmp(s2.c_string(), kHelloString)); +} + +// Tests the Set method. +TEST(MyString, Set) { + MyString s; + + s.Set(kHelloString); + EXPECT_EQ(0, strcmp(s.c_string(), kHelloString)); + + // Set should work when the input pointer is the same as the one + // already in the MyString object. + s.Set(s.c_string()); + EXPECT_EQ(0, strcmp(s.c_string(), kHelloString)); + + // Can we set the MyString to NULL? + s.Set(NULL); + EXPECT_STREQ(NULL, s.c_string()); +} diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample3-inl.h b/cpp/thirdparty/gtest-1.7.0/samples/sample3-inl.h new file mode 100644 index 000000000..7e3084d63 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample3-inl.h @@ -0,0 +1,172 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// A sample program demonstrating using Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) + +#ifndef GTEST_SAMPLES_SAMPLE3_INL_H_ +#define GTEST_SAMPLES_SAMPLE3_INL_H_ + +#include + + +// Queue is a simple queue implemented as a singled-linked list. +// +// The element type must support copy constructor. +template // E is the element type +class Queue; + +// QueueNode is a node in a Queue, which consists of an element of +// type E and a pointer to the next node. +template // E is the element type +class QueueNode { + friend class Queue; + + public: + // Gets the element in this node. + const E& element() const { return element_; } + + // Gets the next node in the queue. + QueueNode* next() { return next_; } + const QueueNode* next() const { return next_; } + + private: + // Creates a node with a given element value. The next pointer is + // set to NULL. + explicit QueueNode(const E& an_element) : element_(an_element), next_(NULL) {} + + // We disable the default assignment operator and copy c'tor. + const QueueNode& operator = (const QueueNode&); + QueueNode(const QueueNode&); + + E element_; + QueueNode* next_; +}; + +template // E is the element type. +class Queue { + public: + // Creates an empty queue. + Queue() : head_(NULL), last_(NULL), size_(0) {} + + // D'tor. Clears the queue. + ~Queue() { Clear(); } + + // Clears the queue. + void Clear() { + if (size_ > 0) { + // 1. Deletes every node. + QueueNode* node = head_; + QueueNode* next = node->next(); + for (; ;) { + delete node; + node = next; + if (node == NULL) break; + next = node->next(); + } + + // 2. Resets the member variables. + head_ = last_ = NULL; + size_ = 0; + } + } + + // Gets the number of elements. + size_t Size() const { return size_; } + + // Gets the first element of the queue, or NULL if the queue is empty. + QueueNode* Head() { return head_; } + const QueueNode* Head() const { return head_; } + + // Gets the last element of the queue, or NULL if the queue is empty. + QueueNode* Last() { return last_; } + const QueueNode* Last() const { return last_; } + + // Adds an element to the end of the queue. A copy of the element is + // created using the copy constructor, and then stored in the queue. + // Changes made to the element in the queue doesn't affect the source + // object, and vice versa. + void Enqueue(const E& element) { + QueueNode* new_node = new QueueNode(element); + + if (size_ == 0) { + head_ = last_ = new_node; + size_ = 1; + } else { + last_->next_ = new_node; + last_ = new_node; + size_++; + } + } + + // Removes the head of the queue and returns it. Returns NULL if + // the queue is empty. + E* Dequeue() { + if (size_ == 0) { + return NULL; + } + + const QueueNode* const old_head = head_; + head_ = head_->next_; + size_--; + if (size_ == 0) { + last_ = NULL; + } + + E* element = new E(old_head->element()); + delete old_head; + + return element; + } + + // Applies a function/functor on each element of the queue, and + // returns the result in a new queue. The original queue is not + // affected. + template + Queue* Map(F function) const { + Queue* new_queue = new Queue(); + for (const QueueNode* node = head_; node != NULL; node = node->next_) { + new_queue->Enqueue(function(node->element())); + } + + return new_queue; + } + + private: + QueueNode* head_; // The first node of the queue. + QueueNode* last_; // The last node of the queue. + size_t size_; // The number of elements in the queue. + + // We disallow copying a queue. + Queue(const Queue&); + const Queue& operator = (const Queue&); +}; + +#endif // GTEST_SAMPLES_SAMPLE3_INL_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample3_unittest.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample3_unittest.cc new file mode 100644 index 000000000..bf3877d01 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample3_unittest.cc @@ -0,0 +1,151 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// A sample program demonstrating using Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) + + +// In this example, we use a more advanced feature of Google Test called +// test fixture. +// +// A test fixture is a place to hold objects and functions shared by +// all tests in a test case. Using a test fixture avoids duplicating +// the test code necessary to initialize and cleanup those common +// objects for each test. It is also useful for defining sub-routines +// that your tests need to invoke a lot. +// +// +// +// The tests share the test fixture in the sense of code sharing, not +// data sharing. Each test is given its own fresh copy of the +// fixture. You cannot expect the data modified by one test to be +// passed on to another test, which is a bad idea. +// +// The reason for this design is that tests should be independent and +// repeatable. In particular, a test should not fail as the result of +// another test's failure. If one test depends on info produced by +// another test, then the two tests should really be one big test. +// +// The macros for indicating the success/failure of a test +// (EXPECT_TRUE, FAIL, etc) need to know what the current test is +// (when Google Test prints the test result, it tells you which test +// each failure belongs to). Technically, these macros invoke a +// member function of the Test class. Therefore, you cannot use them +// in a global function. That's why you should put test sub-routines +// in a test fixture. +// +// + +#include "sample3-inl.h" +#include "gtest/gtest.h" + +// To use a test fixture, derive a class from testing::Test. +class QueueTest : public testing::Test { + protected: // You should make the members protected s.t. they can be + // accessed from sub-classes. + + // virtual void SetUp() will be called before each test is run. You + // should define it if you need to initialize the varaibles. + // Otherwise, this can be skipped. + virtual void SetUp() { + q1_.Enqueue(1); + q2_.Enqueue(2); + q2_.Enqueue(3); + } + + // virtual void TearDown() will be called after each test is run. + // You should define it if there is cleanup work to do. Otherwise, + // you don't have to provide it. + // + // virtual void TearDown() { + // } + + // A helper function that some test uses. + static int Double(int n) { + return 2*n; + } + + // A helper function for testing Queue::Map(). + void MapTester(const Queue * q) { + // Creates a new queue, where each element is twice as big as the + // corresponding one in q. + const Queue * const new_q = q->Map(Double); + + // Verifies that the new queue has the same size as q. + ASSERT_EQ(q->Size(), new_q->Size()); + + // Verifies the relationship between the elements of the two queues. + for ( const QueueNode * n1 = q->Head(), * n2 = new_q->Head(); + n1 != NULL; n1 = n1->next(), n2 = n2->next() ) { + EXPECT_EQ(2 * n1->element(), n2->element()); + } + + delete new_q; + } + + // Declares the variables your tests want to use. + Queue q0_; + Queue q1_; + Queue q2_; +}; + +// When you have a test fixture, you define a test using TEST_F +// instead of TEST. + +// Tests the default c'tor. +TEST_F(QueueTest, DefaultConstructor) { + // You can access data in the test fixture here. + EXPECT_EQ(0u, q0_.Size()); +} + +// Tests Dequeue(). +TEST_F(QueueTest, Dequeue) { + int * n = q0_.Dequeue(); + EXPECT_TRUE(n == NULL); + + n = q1_.Dequeue(); + ASSERT_TRUE(n != NULL); + EXPECT_EQ(1, *n); + EXPECT_EQ(0u, q1_.Size()); + delete n; + + n = q2_.Dequeue(); + ASSERT_TRUE(n != NULL); + EXPECT_EQ(2, *n); + EXPECT_EQ(1u, q2_.Size()); + delete n; +} + +// Tests the Queue::Map() function. +TEST_F(QueueTest, Map) { + MapTester(&q0_); + MapTester(&q1_); + MapTester(&q2_); +} diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample4.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample4.cc new file mode 100644 index 000000000..ae44bda6f --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample4.cc @@ -0,0 +1,46 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// A sample program demonstrating using Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) + +#include + +#include "sample4.h" + +// Returns the current counter value, and increments it. +int Counter::Increment() { + return counter_++; +} + +// Prints the current counter value to STDOUT. +void Counter::Print() const { + printf("%d", counter_); +} diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample4.h b/cpp/thirdparty/gtest-1.7.0/samples/sample4.h new file mode 100644 index 000000000..cd60f0dd2 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample4.h @@ -0,0 +1,53 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// A sample program demonstrating using Google C++ testing framework. +// +// Author: wan@google.com (Zhanyong Wan) + +#ifndef GTEST_SAMPLES_SAMPLE4_H_ +#define GTEST_SAMPLES_SAMPLE4_H_ + +// A simple monotonic counter. +class Counter { + private: + int counter_; + + public: + // Creates a counter that starts at 0. + Counter() : counter_(0) {} + + // Returns the current counter value, and increments it. + int Increment(); + + // Prints the current counter value to STDOUT. + void Print() const; +}; + +#endif // GTEST_SAMPLES_SAMPLE4_H_ diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample4_unittest.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample4_unittest.cc new file mode 100644 index 000000000..fa5afc7d5 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample4_unittest.cc @@ -0,0 +1,45 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +#include "gtest/gtest.h" +#include "sample4.h" + +// Tests the Increment() method. +TEST(Counter, Increment) { + Counter c; + + // EXPECT_EQ() evaluates its arguments exactly once, so they + // can have side effects. + + EXPECT_EQ(0, c.Increment()); + EXPECT_EQ(1, c.Increment()); + EXPECT_EQ(2, c.Increment()); +} diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample5_unittest.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample5_unittest.cc new file mode 100644 index 000000000..43d8e5777 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample5_unittest.cc @@ -0,0 +1,199 @@ +// Copyright 2005, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// This sample teaches how to reuse a test fixture in multiple test +// cases by deriving sub-fixtures from it. +// +// When you define a test fixture, you specify the name of the test +// case that will use this fixture. Therefore, a test fixture can +// be used by only one test case. +// +// Sometimes, more than one test cases may want to use the same or +// slightly different test fixtures. For example, you may want to +// make sure that all tests for a GUI library don't leak important +// system resources like fonts and brushes. In Google Test, you do +// this by putting the shared logic in a super (as in "super class") +// test fixture, and then have each test case use a fixture derived +// from this super fixture. + +#include +#include +#include "sample3-inl.h" +#include "gtest/gtest.h" +#include "sample1.h" + +// In this sample, we want to ensure that every test finishes within +// ~5 seconds. If a test takes longer to run, we consider it a +// failure. +// +// We put the code for timing a test in a test fixture called +// "QuickTest". QuickTest is intended to be the super fixture that +// other fixtures derive from, therefore there is no test case with +// the name "QuickTest". This is OK. +// +// Later, we will derive multiple test fixtures from QuickTest. +class QuickTest : public testing::Test { + protected: + // Remember that SetUp() is run immediately before a test starts. + // This is a good place to record the start time. + virtual void SetUp() { + start_time_ = time(NULL); + } + + // TearDown() is invoked immediately after a test finishes. Here we + // check if the test was too slow. + virtual void TearDown() { + // Gets the time when the test finishes + const time_t end_time = time(NULL); + + // Asserts that the test took no more than ~5 seconds. Did you + // know that you can use assertions in SetUp() and TearDown() as + // well? + EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long."; + } + + // The UTC time (in seconds) when the test starts + time_t start_time_; +}; + + +// We derive a fixture named IntegerFunctionTest from the QuickTest +// fixture. All tests using this fixture will be automatically +// required to be quick. +class IntegerFunctionTest : public QuickTest { + // We don't need any more logic than already in the QuickTest fixture. + // Therefore the body is empty. +}; + + +// Now we can write tests in the IntegerFunctionTest test case. + +// Tests Factorial() +TEST_F(IntegerFunctionTest, Factorial) { + // Tests factorial of negative numbers. + EXPECT_EQ(1, Factorial(-5)); + EXPECT_EQ(1, Factorial(-1)); + EXPECT_GT(Factorial(-10), 0); + + // Tests factorial of 0. + EXPECT_EQ(1, Factorial(0)); + + // Tests factorial of positive numbers. + EXPECT_EQ(1, Factorial(1)); + EXPECT_EQ(2, Factorial(2)); + EXPECT_EQ(6, Factorial(3)); + EXPECT_EQ(40320, Factorial(8)); +} + + +// Tests IsPrime() +TEST_F(IntegerFunctionTest, IsPrime) { + // Tests negative input. + EXPECT_FALSE(IsPrime(-1)); + EXPECT_FALSE(IsPrime(-2)); + EXPECT_FALSE(IsPrime(INT_MIN)); + + // Tests some trivial cases. + EXPECT_FALSE(IsPrime(0)); + EXPECT_FALSE(IsPrime(1)); + EXPECT_TRUE(IsPrime(2)); + EXPECT_TRUE(IsPrime(3)); + + // Tests positive input. + EXPECT_FALSE(IsPrime(4)); + EXPECT_TRUE(IsPrime(5)); + EXPECT_FALSE(IsPrime(6)); + EXPECT_TRUE(IsPrime(23)); +} + + +// The next test case (named "QueueTest") also needs to be quick, so +// we derive another fixture from QuickTest. +// +// The QueueTest test fixture has some logic and shared objects in +// addition to what's in QuickTest already. We define the additional +// stuff inside the body of the test fixture, as usual. +class QueueTest : public QuickTest { + protected: + virtual void SetUp() { + // First, we need to set up the super fixture (QuickTest). + QuickTest::SetUp(); + + // Second, some additional setup for this fixture. + q1_.Enqueue(1); + q2_.Enqueue(2); + q2_.Enqueue(3); + } + + // By default, TearDown() inherits the behavior of + // QuickTest::TearDown(). As we have no additional cleaning work + // for QueueTest, we omit it here. + // + // virtual void TearDown() { + // QuickTest::TearDown(); + // } + + Queue q0_; + Queue q1_; + Queue q2_; +}; + + +// Now, let's write tests using the QueueTest fixture. + +// Tests the default constructor. +TEST_F(QueueTest, DefaultConstructor) { + EXPECT_EQ(0u, q0_.Size()); +} + +// Tests Dequeue(). +TEST_F(QueueTest, Dequeue) { + int* n = q0_.Dequeue(); + EXPECT_TRUE(n == NULL); + + n = q1_.Dequeue(); + EXPECT_TRUE(n != NULL); + EXPECT_EQ(1, *n); + EXPECT_EQ(0u, q1_.Size()); + delete n; + + n = q2_.Dequeue(); + EXPECT_TRUE(n != NULL); + EXPECT_EQ(2, *n); + EXPECT_EQ(1u, q2_.Size()); + delete n; +} + +// If necessary, you can derive further test fixtures from a derived +// fixture itself. For example, you can derive another fixture from +// QueueTest. Google Test imposes no limit on how deep the hierarchy +// can be. In practice, however, you probably don't want it to be too +// deep as to be confusing. diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample6_unittest.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample6_unittest.cc new file mode 100644 index 000000000..8f2036a51 --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample6_unittest.cc @@ -0,0 +1,224 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: wan@google.com (Zhanyong Wan) + +// This sample shows how to test common properties of multiple +// implementations of the same interface (aka interface tests). + +// The interface and its implementations are in this header. +#include "prime_tables.h" + +#include "gtest/gtest.h" + +// First, we define some factory functions for creating instances of +// the implementations. You may be able to skip this step if all your +// implementations can be constructed the same way. + +template +PrimeTable* CreatePrimeTable(); + +template <> +PrimeTable* CreatePrimeTable() { + return new OnTheFlyPrimeTable; +} + +template <> +PrimeTable* CreatePrimeTable() { + return new PreCalculatedPrimeTable(10000); +} + +// Then we define a test fixture class template. +template +class PrimeTableTest : public testing::Test { + protected: + // The ctor calls the factory function to create a prime table + // implemented by T. + PrimeTableTest() : table_(CreatePrimeTable()) {} + + virtual ~PrimeTableTest() { delete table_; } + + // Note that we test an implementation via the base interface + // instead of the actual implementation class. This is important + // for keeping the tests close to the real world scenario, where the + // implementation is invoked via the base interface. It avoids + // got-yas where the implementation class has a method that shadows + // a method with the same name (but slightly different argument + // types) in the base interface, for example. + PrimeTable* const table_; +}; + +#if GTEST_HAS_TYPED_TEST + +using testing::Types; + +// Google Test offers two ways for reusing tests for different types. +// The first is called "typed tests". You should use it if you +// already know *all* the types you are gonna exercise when you write +// the tests. + +// To write a typed test case, first use +// +// TYPED_TEST_CASE(TestCaseName, TypeList); +// +// to declare it and specify the type parameters. As with TEST_F, +// TestCaseName must match the test fixture name. + +// The list of types we want to test. +typedef Types Implementations; + +TYPED_TEST_CASE(PrimeTableTest, Implementations); + +// Then use TYPED_TEST(TestCaseName, TestName) to define a typed test, +// similar to TEST_F. +TYPED_TEST(PrimeTableTest, ReturnsFalseForNonPrimes) { + // Inside the test body, you can refer to the type parameter by + // TypeParam, and refer to the fixture class by TestFixture. We + // don't need them in this example. + + // Since we are in the template world, C++ requires explicitly + // writing 'this->' when referring to members of the fixture class. + // This is something you have to learn to live with. + EXPECT_FALSE(this->table_->IsPrime(-5)); + EXPECT_FALSE(this->table_->IsPrime(0)); + EXPECT_FALSE(this->table_->IsPrime(1)); + EXPECT_FALSE(this->table_->IsPrime(4)); + EXPECT_FALSE(this->table_->IsPrime(6)); + EXPECT_FALSE(this->table_->IsPrime(100)); +} + +TYPED_TEST(PrimeTableTest, ReturnsTrueForPrimes) { + EXPECT_TRUE(this->table_->IsPrime(2)); + EXPECT_TRUE(this->table_->IsPrime(3)); + EXPECT_TRUE(this->table_->IsPrime(5)); + EXPECT_TRUE(this->table_->IsPrime(7)); + EXPECT_TRUE(this->table_->IsPrime(11)); + EXPECT_TRUE(this->table_->IsPrime(131)); +} + +TYPED_TEST(PrimeTableTest, CanGetNextPrime) { + EXPECT_EQ(2, this->table_->GetNextPrime(0)); + EXPECT_EQ(3, this->table_->GetNextPrime(2)); + EXPECT_EQ(5, this->table_->GetNextPrime(3)); + EXPECT_EQ(7, this->table_->GetNextPrime(5)); + EXPECT_EQ(11, this->table_->GetNextPrime(7)); + EXPECT_EQ(131, this->table_->GetNextPrime(128)); +} + +// That's it! Google Test will repeat each TYPED_TEST for each type +// in the type list specified in TYPED_TEST_CASE. Sit back and be +// happy that you don't have to define them multiple times. + +#endif // GTEST_HAS_TYPED_TEST + +#if GTEST_HAS_TYPED_TEST_P + +using testing::Types; + +// Sometimes, however, you don't yet know all the types that you want +// to test when you write the tests. For example, if you are the +// author of an interface and expect other people to implement it, you +// might want to write a set of tests to make sure each implementation +// conforms to some basic requirements, but you don't know what +// implementations will be written in the future. +// +// How can you write the tests without committing to the type +// parameters? That's what "type-parameterized tests" can do for you. +// It is a bit more involved than typed tests, but in return you get a +// test pattern that can be reused in many contexts, which is a big +// win. Here's how you do it: + +// First, define a test fixture class template. Here we just reuse +// the PrimeTableTest fixture defined earlier: + +template +class PrimeTableTest2 : public PrimeTableTest { +}; + +// Then, declare the test case. The argument is the name of the test +// fixture, and also the name of the test case (as usual). The _P +// suffix is for "parameterized" or "pattern". +TYPED_TEST_CASE_P(PrimeTableTest2); + +// Next, use TYPED_TEST_P(TestCaseName, TestName) to define a test, +// similar to what you do with TEST_F. +TYPED_TEST_P(PrimeTableTest2, ReturnsFalseForNonPrimes) { + EXPECT_FALSE(this->table_->IsPrime(-5)); + EXPECT_FALSE(this->table_->IsPrime(0)); + EXPECT_FALSE(this->table_->IsPrime(1)); + EXPECT_FALSE(this->table_->IsPrime(4)); + EXPECT_FALSE(this->table_->IsPrime(6)); + EXPECT_FALSE(this->table_->IsPrime(100)); +} + +TYPED_TEST_P(PrimeTableTest2, ReturnsTrueForPrimes) { + EXPECT_TRUE(this->table_->IsPrime(2)); + EXPECT_TRUE(this->table_->IsPrime(3)); + EXPECT_TRUE(this->table_->IsPrime(5)); + EXPECT_TRUE(this->table_->IsPrime(7)); + EXPECT_TRUE(this->table_->IsPrime(11)); + EXPECT_TRUE(this->table_->IsPrime(131)); +} + +TYPED_TEST_P(PrimeTableTest2, CanGetNextPrime) { + EXPECT_EQ(2, this->table_->GetNextPrime(0)); + EXPECT_EQ(3, this->table_->GetNextPrime(2)); + EXPECT_EQ(5, this->table_->GetNextPrime(3)); + EXPECT_EQ(7, this->table_->GetNextPrime(5)); + EXPECT_EQ(11, this->table_->GetNextPrime(7)); + EXPECT_EQ(131, this->table_->GetNextPrime(128)); +} + +// Type-parameterized tests involve one extra step: you have to +// enumerate the tests you defined: +REGISTER_TYPED_TEST_CASE_P( + PrimeTableTest2, // The first argument is the test case name. + // The rest of the arguments are the test names. + ReturnsFalseForNonPrimes, ReturnsTrueForPrimes, CanGetNextPrime); + +// At this point the test pattern is done. However, you don't have +// any real test yet as you haven't said which types you want to run +// the tests with. + +// To turn the abstract test pattern into real tests, you instantiate +// it with a list of types. Usually the test pattern will be defined +// in a .h file, and anyone can #include and instantiate it. You can +// even instantiate it more than once in the same program. To tell +// different instances apart, you give each of them a name, which will +// become part of the test case name and can be used in test filters. + +// The list of types we want to test. Note that it doesn't have to be +// defined at the time we write the TYPED_TEST_P()s. +typedef Types + PrimeTableImplementations; +INSTANTIATE_TYPED_TEST_CASE_P(OnTheFlyAndPreCalculated, // Instance name + PrimeTableTest2, // Test case name + PrimeTableImplementations); // Type list + +#endif // GTEST_HAS_TYPED_TEST_P diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample7_unittest.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample7_unittest.cc new file mode 100644 index 000000000..1b651a21d --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample7_unittest.cc @@ -0,0 +1,130 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) + +// This sample shows how to test common properties of multiple +// implementations of an interface (aka interface tests) using +// value-parameterized tests. Each test in the test case has +// a parameter that is an interface pointer to an implementation +// tested. + +// The interface and its implementations are in this header. +#include "prime_tables.h" + +#include "gtest/gtest.h" + +#if GTEST_HAS_PARAM_TEST + +using ::testing::TestWithParam; +using ::testing::Values; + +// As a general rule, to prevent a test from affecting the tests that come +// after it, you should create and destroy the tested objects for each test +// instead of reusing them. In this sample we will define a simple factory +// function for PrimeTable objects. We will instantiate objects in test's +// SetUp() method and delete them in TearDown() method. +typedef PrimeTable* CreatePrimeTableFunc(); + +PrimeTable* CreateOnTheFlyPrimeTable() { + return new OnTheFlyPrimeTable(); +} + +template +PrimeTable* CreatePreCalculatedPrimeTable() { + return new PreCalculatedPrimeTable(max_precalculated); +} + +// Inside the test body, fixture constructor, SetUp(), and TearDown() you +// can refer to the test parameter by GetParam(). In this case, the test +// parameter is a factory function which we call in fixture's SetUp() to +// create and store an instance of PrimeTable. +class PrimeTableTest : public TestWithParam { + public: + virtual ~PrimeTableTest() { delete table_; } + virtual void SetUp() { table_ = (*GetParam())(); } + virtual void TearDown() { + delete table_; + table_ = NULL; + } + + protected: + PrimeTable* table_; +}; + +TEST_P(PrimeTableTest, ReturnsFalseForNonPrimes) { + EXPECT_FALSE(table_->IsPrime(-5)); + EXPECT_FALSE(table_->IsPrime(0)); + EXPECT_FALSE(table_->IsPrime(1)); + EXPECT_FALSE(table_->IsPrime(4)); + EXPECT_FALSE(table_->IsPrime(6)); + EXPECT_FALSE(table_->IsPrime(100)); +} + +TEST_P(PrimeTableTest, ReturnsTrueForPrimes) { + EXPECT_TRUE(table_->IsPrime(2)); + EXPECT_TRUE(table_->IsPrime(3)); + EXPECT_TRUE(table_->IsPrime(5)); + EXPECT_TRUE(table_->IsPrime(7)); + EXPECT_TRUE(table_->IsPrime(11)); + EXPECT_TRUE(table_->IsPrime(131)); +} + +TEST_P(PrimeTableTest, CanGetNextPrime) { + EXPECT_EQ(2, table_->GetNextPrime(0)); + EXPECT_EQ(3, table_->GetNextPrime(2)); + EXPECT_EQ(5, table_->GetNextPrime(3)); + EXPECT_EQ(7, table_->GetNextPrime(5)); + EXPECT_EQ(11, table_->GetNextPrime(7)); + EXPECT_EQ(131, table_->GetNextPrime(128)); +} + +// In order to run value-parameterized tests, you need to instantiate them, +// or bind them to a list of values which will be used as test parameters. +// You can instantiate them in a different translation module, or even +// instantiate them several times. +// +// Here, we instantiate our tests with a list of two PrimeTable object +// factory functions: +INSTANTIATE_TEST_CASE_P( + OnTheFlyAndPreCalculated, + PrimeTableTest, + Values(&CreateOnTheFlyPrimeTable, &CreatePreCalculatedPrimeTable<1000>)); + +#else + +// Google Test may not support value-parameterized tests with some +// compilers. If we use conditional compilation to compile out all +// code referring to the gtest_main library, MSVC linker will not link +// that library at all and consequently complain about missing entry +// point defined in that library (fatal error LNK1561: entry point +// must be defined). This dummy test keeps gtest_main linked in. +TEST(DummyTest, ValueParameterizedTestsAreNotSupportedOnThisPlatform) {} + +#endif // GTEST_HAS_PARAM_TEST diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample8_unittest.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample8_unittest.cc new file mode 100644 index 000000000..5ad2e2c9f --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample8_unittest.cc @@ -0,0 +1,173 @@ +// Copyright 2008 Google Inc. +// All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) + +// This sample shows how to test code relying on some global flag variables. +// Combine() helps with generating all possible combinations of such flags, +// and each test is given one combination as a parameter. + +// Use class definitions to test from this header. +#include "prime_tables.h" + +#include "gtest/gtest.h" + +#if GTEST_HAS_COMBINE + +// Suppose we want to introduce a new, improved implementation of PrimeTable +// which combines speed of PrecalcPrimeTable and versatility of +// OnTheFlyPrimeTable (see prime_tables.h). Inside it instantiates both +// PrecalcPrimeTable and OnTheFlyPrimeTable and uses the one that is more +// appropriate under the circumstances. But in low memory conditions, it can be +// told to instantiate without PrecalcPrimeTable instance at all and use only +// OnTheFlyPrimeTable. +class HybridPrimeTable : public PrimeTable { + public: + HybridPrimeTable(bool force_on_the_fly, int max_precalculated) + : on_the_fly_impl_(new OnTheFlyPrimeTable), + precalc_impl_(force_on_the_fly ? NULL : + new PreCalculatedPrimeTable(max_precalculated)), + max_precalculated_(max_precalculated) {} + virtual ~HybridPrimeTable() { + delete on_the_fly_impl_; + delete precalc_impl_; + } + + virtual bool IsPrime(int n) const { + if (precalc_impl_ != NULL && n < max_precalculated_) + return precalc_impl_->IsPrime(n); + else + return on_the_fly_impl_->IsPrime(n); + } + + virtual int GetNextPrime(int p) const { + int next_prime = -1; + if (precalc_impl_ != NULL && p < max_precalculated_) + next_prime = precalc_impl_->GetNextPrime(p); + + return next_prime != -1 ? next_prime : on_the_fly_impl_->GetNextPrime(p); + } + + private: + OnTheFlyPrimeTable* on_the_fly_impl_; + PreCalculatedPrimeTable* precalc_impl_; + int max_precalculated_; +}; + +using ::testing::TestWithParam; +using ::testing::Bool; +using ::testing::Values; +using ::testing::Combine; + +// To test all code paths for HybridPrimeTable we must test it with numbers +// both within and outside PreCalculatedPrimeTable's capacity and also with +// PreCalculatedPrimeTable disabled. We do this by defining fixture which will +// accept different combinations of parameters for instantiating a +// HybridPrimeTable instance. +class PrimeTableTest : public TestWithParam< ::std::tr1::tuple > { + protected: + virtual void SetUp() { + // This can be written as + // + // bool force_on_the_fly; + // int max_precalculated; + // tie(force_on_the_fly, max_precalculated) = GetParam(); + // + // once the Google C++ Style Guide allows use of ::std::tr1::tie. + // + bool force_on_the_fly = ::std::tr1::get<0>(GetParam()); + int max_precalculated = ::std::tr1::get<1>(GetParam()); + table_ = new HybridPrimeTable(force_on_the_fly, max_precalculated); + } + virtual void TearDown() { + delete table_; + table_ = NULL; + } + HybridPrimeTable* table_; +}; + +TEST_P(PrimeTableTest, ReturnsFalseForNonPrimes) { + // Inside the test body, you can refer to the test parameter by GetParam(). + // In this case, the test parameter is a PrimeTable interface pointer which + // we can use directly. + // Please note that you can also save it in the fixture's SetUp() method + // or constructor and use saved copy in the tests. + + EXPECT_FALSE(table_->IsPrime(-5)); + EXPECT_FALSE(table_->IsPrime(0)); + EXPECT_FALSE(table_->IsPrime(1)); + EXPECT_FALSE(table_->IsPrime(4)); + EXPECT_FALSE(table_->IsPrime(6)); + EXPECT_FALSE(table_->IsPrime(100)); +} + +TEST_P(PrimeTableTest, ReturnsTrueForPrimes) { + EXPECT_TRUE(table_->IsPrime(2)); + EXPECT_TRUE(table_->IsPrime(3)); + EXPECT_TRUE(table_->IsPrime(5)); + EXPECT_TRUE(table_->IsPrime(7)); + EXPECT_TRUE(table_->IsPrime(11)); + EXPECT_TRUE(table_->IsPrime(131)); +} + +TEST_P(PrimeTableTest, CanGetNextPrime) { + EXPECT_EQ(2, table_->GetNextPrime(0)); + EXPECT_EQ(3, table_->GetNextPrime(2)); + EXPECT_EQ(5, table_->GetNextPrime(3)); + EXPECT_EQ(7, table_->GetNextPrime(5)); + EXPECT_EQ(11, table_->GetNextPrime(7)); + EXPECT_EQ(131, table_->GetNextPrime(128)); +} + +// In order to run value-parameterized tests, you need to instantiate them, +// or bind them to a list of values which will be used as test parameters. +// You can instantiate them in a different translation module, or even +// instantiate them several times. +// +// Here, we instantiate our tests with a list of parameters. We must combine +// all variations of the boolean flag suppressing PrecalcPrimeTable and some +// meaningful values for tests. We choose a small value (1), and a value that +// will put some of the tested numbers beyond the capability of the +// PrecalcPrimeTable instance and some inside it (10). Combine will produce all +// possible combinations. +INSTANTIATE_TEST_CASE_P(MeaningfulTestParameters, + PrimeTableTest, + Combine(Bool(), Values(1, 10))); + +#else + +// Google Test may not support Combine() with some compilers. If we +// use conditional compilation to compile out all code referring to +// the gtest_main library, MSVC linker will not link that library at +// all and consequently complain about missing entry point defined in +// that library (fatal error LNK1561: entry point must be +// defined). This dummy test keeps gtest_main linked in. +TEST(DummyTest, CombineIsNotSupportedOnThisPlatform) {} + +#endif // GTEST_HAS_COMBINE diff --git a/cpp/thirdparty/gtest-1.7.0/samples/sample9_unittest.cc b/cpp/thirdparty/gtest-1.7.0/samples/sample9_unittest.cc new file mode 100644 index 000000000..b2e2079bf --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/samples/sample9_unittest.cc @@ -0,0 +1,160 @@ +// Copyright 2009 Google Inc. All Rights Reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Author: vladl@google.com (Vlad Losev) + +// This sample shows how to use Google Test listener API to implement +// an alternative console output and how to use the UnitTest reflection API +// to enumerate test cases and tests and to inspect their results. + +#include + +#include "gtest/gtest.h" + +using ::testing::EmptyTestEventListener; +using ::testing::InitGoogleTest; +using ::testing::Test; +using ::testing::TestCase; +using ::testing::TestEventListeners; +using ::testing::TestInfo; +using ::testing::TestPartResult; +using ::testing::UnitTest; + +namespace { + +// Provides alternative output mode which produces minimal amount of +// information about tests. +class TersePrinter : public EmptyTestEventListener { + private: + // Called before any test activity starts. + virtual void OnTestProgramStart(const UnitTest& /* unit_test */) {} + + // Called after all test activities have ended. + virtual void OnTestProgramEnd(const UnitTest& unit_test) { + fprintf(stdout, "TEST %s\n", unit_test.Passed() ? "PASSED" : "FAILED"); + fflush(stdout); + } + + // Called before a test starts. + virtual void OnTestStart(const TestInfo& test_info) { + fprintf(stdout, + "*** Test %s.%s starting.\n", + test_info.test_case_name(), + test_info.name()); + fflush(stdout); + } + + // Called after a failed assertion or a SUCCEED() invocation. + virtual void OnTestPartResult(const TestPartResult& test_part_result) { + fprintf(stdout, + "%s in %s:%d\n%s\n", + test_part_result.failed() ? "*** Failure" : "Success", + test_part_result.file_name(), + test_part_result.line_number(), + test_part_result.summary()); + fflush(stdout); + } + + // Called after a test ends. + virtual void OnTestEnd(const TestInfo& test_info) { + fprintf(stdout, + "*** Test %s.%s ending.\n", + test_info.test_case_name(), + test_info.name()); + fflush(stdout); + } +}; // class TersePrinter + +TEST(CustomOutputTest, PrintsMessage) { + printf("Printing something from the test body...\n"); +} + +TEST(CustomOutputTest, Succeeds) { + SUCCEED() << "SUCCEED() has been invoked from here"; +} + +TEST(CustomOutputTest, Fails) { + EXPECT_EQ(1, 2) + << "This test fails in order to demonstrate alternative failure messages"; +} + +} // namespace + +int main(int argc, char **argv) { + InitGoogleTest(&argc, argv); + + bool terse_output = false; + if (argc > 1 && strcmp(argv[1], "--terse_output") == 0 ) + terse_output = true; + else + printf("%s\n", "Run this program with --terse_output to change the way " + "it prints its output."); + + UnitTest& unit_test = *UnitTest::GetInstance(); + + // If we are given the --terse_output command line flag, suppresses the + // standard output and attaches own result printer. + if (terse_output) { + TestEventListeners& listeners = unit_test.listeners(); + + // Removes the default console output listener from the list so it will + // not receive events from Google Test and won't print any output. Since + // this operation transfers ownership of the listener to the caller we + // have to delete it as well. + delete listeners.Release(listeners.default_result_printer()); + + // Adds the custom output listener to the list. It will now receive + // events from Google Test and print the alternative output. We don't + // have to worry about deleting it since Google Test assumes ownership + // over it after adding it to the list. + listeners.Append(new TersePrinter); + } + int ret_val = RUN_ALL_TESTS(); + + // This is an example of using the UnitTest reflection API to inspect test + // results. Here we discount failures from the tests we expected to fail. + int unexpectedly_failed_tests = 0; + for (int i = 0; i < unit_test.total_test_case_count(); ++i) { + const TestCase& test_case = *unit_test.GetTestCase(i); + for (int j = 0; j < test_case.total_test_count(); ++j) { + const TestInfo& test_info = *test_case.GetTestInfo(j); + // Counts failed tests that were not meant to fail (those without + // 'Fails' in the name). + if (test_info.result()->Failed() && + strcmp(test_info.name(), "Fails") != 0) { + unexpectedly_failed_tests++; + } + } + } + + // Test that were meant to fail should not affect the test program outcome. + if (unexpectedly_failed_tests == 0) + ret_val = 0; + + return ret_val; +} diff --git a/cpp/thirdparty/gtest-1.7.0/scripts/fuse_gtest_files.py b/cpp/thirdparty/gtest-1.7.0/scripts/fuse_gtest_files.py new file mode 100755 index 000000000..57ef72f0e --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/scripts/fuse_gtest_files.py @@ -0,0 +1,250 @@ +#!/usr/bin/env python +# +# Copyright 2009, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""fuse_gtest_files.py v0.2.0 +Fuses Google Test source code into a .h file and a .cc file. + +SYNOPSIS + fuse_gtest_files.py [GTEST_ROOT_DIR] OUTPUT_DIR + + Scans GTEST_ROOT_DIR for Google Test source code, and generates + two files: OUTPUT_DIR/gtest/gtest.h and OUTPUT_DIR/gtest/gtest-all.cc. + Then you can build your tests by adding OUTPUT_DIR to the include + search path and linking with OUTPUT_DIR/gtest/gtest-all.cc. These + two files contain everything you need to use Google Test. Hence + you can "install" Google Test by copying them to wherever you want. + + GTEST_ROOT_DIR can be omitted and defaults to the parent + directory of the directory holding this script. + +EXAMPLES + ./fuse_gtest_files.py fused_gtest + ./fuse_gtest_files.py path/to/unpacked/gtest fused_gtest + +This tool is experimental. In particular, it assumes that there is no +conditional inclusion of Google Test headers. Please report any +problems to googletestframework@googlegroups.com. You can read +http://code.google.com/p/googletest/wiki/GoogleTestAdvancedGuide for +more information. +""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import os +import re +import sets +import sys + +# We assume that this file is in the scripts/ directory in the Google +# Test root directory. +DEFAULT_GTEST_ROOT_DIR = os.path.join(os.path.dirname(__file__), '..') + +# Regex for matching '#include "gtest/..."'. +INCLUDE_GTEST_FILE_REGEX = re.compile(r'^\s*#\s*include\s*"(gtest/.+)"') + +# Regex for matching '#include "src/..."'. +INCLUDE_SRC_FILE_REGEX = re.compile(r'^\s*#\s*include\s*"(src/.+)"') + +# Where to find the source seed files. +GTEST_H_SEED = 'include/gtest/gtest.h' +GTEST_SPI_H_SEED = 'include/gtest/gtest-spi.h' +GTEST_ALL_CC_SEED = 'src/gtest-all.cc' + +# Where to put the generated files. +GTEST_H_OUTPUT = 'gtest/gtest.h' +GTEST_ALL_CC_OUTPUT = 'gtest/gtest-all.cc' + + +def VerifyFileExists(directory, relative_path): + """Verifies that the given file exists; aborts on failure. + + relative_path is the file path relative to the given directory. + """ + + if not os.path.isfile(os.path.join(directory, relative_path)): + print 'ERROR: Cannot find %s in directory %s.' % (relative_path, + directory) + print ('Please either specify a valid project root directory ' + 'or omit it on the command line.') + sys.exit(1) + + +def ValidateGTestRootDir(gtest_root): + """Makes sure gtest_root points to a valid gtest root directory. + + The function aborts the program on failure. + """ + + VerifyFileExists(gtest_root, GTEST_H_SEED) + VerifyFileExists(gtest_root, GTEST_ALL_CC_SEED) + + +def VerifyOutputFile(output_dir, relative_path): + """Verifies that the given output file path is valid. + + relative_path is relative to the output_dir directory. + """ + + # Makes sure the output file either doesn't exist or can be overwritten. + output_file = os.path.join(output_dir, relative_path) + if os.path.exists(output_file): + # TODO(wan@google.com): The following user-interaction doesn't + # work with automated processes. We should provide a way for the + # Makefile to force overwriting the files. + print ('%s already exists in directory %s - overwrite it? (y/N) ' % + (relative_path, output_dir)) + answer = sys.stdin.readline().strip() + if answer not in ['y', 'Y']: + print 'ABORTED.' + sys.exit(1) + + # Makes sure the directory holding the output file exists; creates + # it and all its ancestors if necessary. + parent_directory = os.path.dirname(output_file) + if not os.path.isdir(parent_directory): + os.makedirs(parent_directory) + + +def ValidateOutputDir(output_dir): + """Makes sure output_dir points to a valid output directory. + + The function aborts the program on failure. + """ + + VerifyOutputFile(output_dir, GTEST_H_OUTPUT) + VerifyOutputFile(output_dir, GTEST_ALL_CC_OUTPUT) + + +def FuseGTestH(gtest_root, output_dir): + """Scans folder gtest_root to generate gtest/gtest.h in output_dir.""" + + output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w') + processed_files = sets.Set() # Holds all gtest headers we've processed. + + def ProcessFile(gtest_header_path): + """Processes the given gtest header file.""" + + # We don't process the same header twice. + if gtest_header_path in processed_files: + return + + processed_files.add(gtest_header_path) + + # Reads each line in the given gtest header. + for line in file(os.path.join(gtest_root, gtest_header_path), 'r'): + m = INCLUDE_GTEST_FILE_REGEX.match(line) + if m: + # It's '#include "gtest/..."' - let's process it recursively. + ProcessFile('include/' + m.group(1)) + else: + # Otherwise we copy the line unchanged to the output file. + output_file.write(line) + + ProcessFile(GTEST_H_SEED) + output_file.close() + + +def FuseGTestAllCcToFile(gtest_root, output_file): + """Scans folder gtest_root to generate gtest/gtest-all.cc in output_file.""" + + processed_files = sets.Set() + + def ProcessFile(gtest_source_file): + """Processes the given gtest source file.""" + + # We don't process the same #included file twice. + if gtest_source_file in processed_files: + return + + processed_files.add(gtest_source_file) + + # Reads each line in the given gtest source file. + for line in file(os.path.join(gtest_root, gtest_source_file), 'r'): + m = INCLUDE_GTEST_FILE_REGEX.match(line) + if m: + if 'include/' + m.group(1) == GTEST_SPI_H_SEED: + # It's '#include "gtest/gtest-spi.h"'. This file is not + # #included by "gtest/gtest.h", so we need to process it. + ProcessFile(GTEST_SPI_H_SEED) + else: + # It's '#include "gtest/foo.h"' where foo is not gtest-spi. + # We treat it as '#include "gtest/gtest.h"', as all other + # gtest headers are being fused into gtest.h and cannot be + # #included directly. + + # There is no need to #include "gtest/gtest.h" more than once. + if not GTEST_H_SEED in processed_files: + processed_files.add(GTEST_H_SEED) + output_file.write('#include "%s"\n' % (GTEST_H_OUTPUT,)) + else: + m = INCLUDE_SRC_FILE_REGEX.match(line) + if m: + # It's '#include "src/foo"' - let's process it recursively. + ProcessFile(m.group(1)) + else: + output_file.write(line) + + ProcessFile(GTEST_ALL_CC_SEED) + + +def FuseGTestAllCc(gtest_root, output_dir): + """Scans folder gtest_root to generate gtest/gtest-all.cc in output_dir.""" + + output_file = file(os.path.join(output_dir, GTEST_ALL_CC_OUTPUT), 'w') + FuseGTestAllCcToFile(gtest_root, output_file) + output_file.close() + + +def FuseGTest(gtest_root, output_dir): + """Fuses gtest.h and gtest-all.cc.""" + + ValidateGTestRootDir(gtest_root) + ValidateOutputDir(output_dir) + + FuseGTestH(gtest_root, output_dir) + FuseGTestAllCc(gtest_root, output_dir) + + +def main(): + argc = len(sys.argv) + if argc == 2: + # fuse_gtest_files.py OUTPUT_DIR + FuseGTest(DEFAULT_GTEST_ROOT_DIR, sys.argv[1]) + elif argc == 3: + # fuse_gtest_files.py GTEST_ROOT_DIR OUTPUT_DIR + FuseGTest(sys.argv[1], sys.argv[2]) + else: + print __doc__ + sys.exit(1) + + +if __name__ == '__main__': + main() diff --git a/cpp/thirdparty/gtest-1.7.0/scripts/gen_gtest_pred_impl.py b/cpp/thirdparty/gtest-1.7.0/scripts/gen_gtest_pred_impl.py new file mode 100755 index 000000000..3e7ab042e --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/scripts/gen_gtest_pred_impl.py @@ -0,0 +1,730 @@ +#!/usr/bin/env python +# +# Copyright 2006, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following disclaimer +# in the documentation and/or other materials provided with the +# distribution. +# * Neither the name of Google Inc. nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +"""gen_gtest_pred_impl.py v0.1 + +Generates the implementation of Google Test predicate assertions and +accompanying tests. + +Usage: + + gen_gtest_pred_impl.py MAX_ARITY + +where MAX_ARITY is a positive integer. + +The command generates the implementation of up-to MAX_ARITY-ary +predicate assertions, and writes it to file gtest_pred_impl.h in the +directory where the script is. It also generates the accompanying +unit test in file gtest_pred_impl_unittest.cc. +""" + +__author__ = 'wan@google.com (Zhanyong Wan)' + +import os +import sys +import time + +# Where this script is. +SCRIPT_DIR = os.path.dirname(sys.argv[0]) + +# Where to store the generated header. +HEADER = os.path.join(SCRIPT_DIR, '../include/gtest/gtest_pred_impl.h') + +# Where to store the generated unit test. +UNIT_TEST = os.path.join(SCRIPT_DIR, '../test/gtest_pred_impl_unittest.cc') + + +def HeaderPreamble(n): + """Returns the preamble for the header file. + + Args: + n: the maximum arity of the predicate macros to be generated. + """ + + # A map that defines the values used in the preamble template. + DEFS = { + 'today' : time.strftime('%m/%d/%Y'), + 'year' : time.strftime('%Y'), + 'command' : '%s %s' % (os.path.basename(sys.argv[0]), n), + 'n' : n + } + + return ( +"""// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// This file is AUTOMATICALLY GENERATED on %(today)s by command +// '%(command)s'. DO NOT EDIT BY HAND! +// +// Implements a family of generic predicate assertion macros. + +#ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ +#define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ + +// Makes sure this header is not included before gtest.h. +#ifndef GTEST_INCLUDE_GTEST_GTEST_H_ +# error Do not include gtest_pred_impl.h directly. Include gtest.h instead. +#endif // GTEST_INCLUDE_GTEST_GTEST_H_ + +// This header implements a family of generic predicate assertion +// macros: +// +// ASSERT_PRED_FORMAT1(pred_format, v1) +// ASSERT_PRED_FORMAT2(pred_format, v1, v2) +// ... +// +// where pred_format is a function or functor that takes n (in the +// case of ASSERT_PRED_FORMATn) values and their source expression +// text, and returns a testing::AssertionResult. See the definition +// of ASSERT_EQ in gtest.h for an example. +// +// If you don't care about formatting, you can use the more +// restrictive version: +// +// ASSERT_PRED1(pred, v1) +// ASSERT_PRED2(pred, v1, v2) +// ... +// +// where pred is an n-ary function or functor that returns bool, +// and the values v1, v2, ..., must support the << operator for +// streaming to std::ostream. +// +// We also define the EXPECT_* variations. +// +// For now we only support predicates whose arity is at most %(n)s. +// Please email googletestframework@googlegroups.com if you need +// support for higher arities. + +// GTEST_ASSERT_ is the basic statement to which all of the assertions +// in this file reduce. Don't use this in your code. + +#define GTEST_ASSERT_(expression, on_failure) \\ + GTEST_AMBIGUOUS_ELSE_BLOCKER_ \\ + if (const ::testing::AssertionResult gtest_ar = (expression)) \\ + ; \\ + else \\ + on_failure(gtest_ar.failure_message()) +""" % DEFS) + + +def Arity(n): + """Returns the English name of the given arity.""" + + if n < 0: + return None + elif n <= 3: + return ['nullary', 'unary', 'binary', 'ternary'][n] + else: + return '%s-ary' % n + + +def Title(word): + """Returns the given word in title case. The difference between + this and string's title() method is that Title('4-ary') is '4-ary' + while '4-ary'.title() is '4-Ary'.""" + + return word[0].upper() + word[1:] + + +def OneTo(n): + """Returns the list [1, 2, 3, ..., n].""" + + return range(1, n + 1) + + +def Iter(n, format, sep=''): + """Given a positive integer n, a format string that contains 0 or + more '%s' format specs, and optionally a separator string, returns + the join of n strings, each formatted with the format string on an + iterator ranged from 1 to n. + + Example: + + Iter(3, 'v%s', sep=', ') returns 'v1, v2, v3'. + """ + + # How many '%s' specs are in format? + spec_count = len(format.split('%s')) - 1 + return sep.join([format % (spec_count * (i,)) for i in OneTo(n)]) + + +def ImplementationForArity(n): + """Returns the implementation of n-ary predicate assertions.""" + + # A map the defines the values used in the implementation template. + DEFS = { + 'n' : str(n), + 'vs' : Iter(n, 'v%s', sep=', '), + 'vts' : Iter(n, '#v%s', sep=', '), + 'arity' : Arity(n), + 'Arity' : Title(Arity(n)) + } + + impl = """ + +// Helper function for implementing {EXPECT|ASSERT}_PRED%(n)s. Don't use +// this in your code. +template +AssertionResult AssertPred%(n)sHelper(const char* pred_text""" % DEFS + + impl += Iter(n, """, + const char* e%s""") + + impl += """, + Pred pred""" + + impl += Iter(n, """, + const T%s& v%s""") + + impl += """) { + if (pred(%(vs)s)) return AssertionSuccess(); + +""" % DEFS + + impl += ' return AssertionFailure() << pred_text << "("' + + impl += Iter(n, """ + << e%s""", sep=' << ", "') + + impl += ' << ") evaluates to false, where"' + + impl += Iter(n, """ + << "\\n" << e%s << " evaluates to " << v%s""") + + impl += """; +} + +// Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT%(n)s. +// Don't use this in your code. +#define GTEST_PRED_FORMAT%(n)s_(pred_format, %(vs)s, on_failure)\\ + GTEST_ASSERT_(pred_format(%(vts)s, %(vs)s), \\ + on_failure) + +// Internal macro for implementing {EXPECT|ASSERT}_PRED%(n)s. Don't use +// this in your code. +#define GTEST_PRED%(n)s_(pred, %(vs)s, on_failure)\\ + GTEST_ASSERT_(::testing::AssertPred%(n)sHelper(#pred""" % DEFS + + impl += Iter(n, """, \\ + #v%s""") + + impl += """, \\ + pred""" + + impl += Iter(n, """, \\ + v%s""") + + impl += """), on_failure) + +// %(Arity)s predicate assertion macros. +#define EXPECT_PRED_FORMAT%(n)s(pred_format, %(vs)s) \\ + GTEST_PRED_FORMAT%(n)s_(pred_format, %(vs)s, GTEST_NONFATAL_FAILURE_) +#define EXPECT_PRED%(n)s(pred, %(vs)s) \\ + GTEST_PRED%(n)s_(pred, %(vs)s, GTEST_NONFATAL_FAILURE_) +#define ASSERT_PRED_FORMAT%(n)s(pred_format, %(vs)s) \\ + GTEST_PRED_FORMAT%(n)s_(pred_format, %(vs)s, GTEST_FATAL_FAILURE_) +#define ASSERT_PRED%(n)s(pred, %(vs)s) \\ + GTEST_PRED%(n)s_(pred, %(vs)s, GTEST_FATAL_FAILURE_) + +""" % DEFS + + return impl + + +def HeaderPostamble(): + """Returns the postamble for the header file.""" + + return """ + +#endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ +""" + + +def GenerateFile(path, content): + """Given a file path and a content string, overwrites it with the + given content.""" + + print 'Updating file %s . . .' % path + + f = file(path, 'w+') + print >>f, content, + f.close() + + print 'File %s has been updated.' % path + + +def GenerateHeader(n): + """Given the maximum arity n, updates the header file that implements + the predicate assertions.""" + + GenerateFile(HEADER, + HeaderPreamble(n) + + ''.join([ImplementationForArity(i) for i in OneTo(n)]) + + HeaderPostamble()) + + +def UnitTestPreamble(): + """Returns the preamble for the unit test file.""" + + # A map that defines the values used in the preamble template. + DEFS = { + 'today' : time.strftime('%m/%d/%Y'), + 'year' : time.strftime('%Y'), + 'command' : '%s %s' % (os.path.basename(sys.argv[0]), sys.argv[1]), + } + + return ( +"""// Copyright 2006, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +// This file is AUTOMATICALLY GENERATED on %(today)s by command +// '%(command)s'. DO NOT EDIT BY HAND! + +// Regression test for gtest_pred_impl.h +// +// This file is generated by a script and quite long. If you intend to +// learn how Google Test works by reading its unit tests, read +// gtest_unittest.cc instead. +// +// This is intended as a regression test for the Google Test predicate +// assertions. We compile it as part of the gtest_unittest target +// only to keep the implementation tidy and compact, as it is quite +// involved to set up the stage for testing Google Test using Google +// Test itself. +// +// Currently, gtest_unittest takes ~11 seconds to run in the testing +// daemon. In the future, if it grows too large and needs much more +// time to finish, we should consider separating this file into a +// stand-alone regression test. + +#include + +#include "gtest/gtest.h" +#include "gtest/gtest-spi.h" + +// A user-defined data type. +struct Bool { + explicit Bool(int val) : value(val != 0) {} + + bool operator>(int n) const { return value > Bool(n).value; } + + Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); } + + bool operator==(const Bool& rhs) const { return value == rhs.value; } + + bool value; +}; + +// Enables Bool to be used in assertions. +std::ostream& operator<<(std::ostream& os, const Bool& x) { + return os << (x.value ? "true" : "false"); +} + +""" % DEFS) + + +def TestsForArity(n): + """Returns the tests for n-ary predicate assertions.""" + + # A map that defines the values used in the template for the tests. + DEFS = { + 'n' : n, + 'es' : Iter(n, 'e%s', sep=', '), + 'vs' : Iter(n, 'v%s', sep=', '), + 'vts' : Iter(n, '#v%s', sep=', '), + 'tvs' : Iter(n, 'T%s v%s', sep=', '), + 'int_vs' : Iter(n, 'int v%s', sep=', '), + 'Bool_vs' : Iter(n, 'Bool v%s', sep=', '), + 'types' : Iter(n, 'typename T%s', sep=', '), + 'v_sum' : Iter(n, 'v%s', sep=' + '), + 'arity' : Arity(n), + 'Arity' : Title(Arity(n)), + } + + tests = ( +"""// Sample functions/functors for testing %(arity)s predicate assertions. + +// A %(arity)s predicate function. +template <%(types)s> +bool PredFunction%(n)s(%(tvs)s) { + return %(v_sum)s > 0; +} + +// The following two functions are needed to circumvent a bug in +// gcc 2.95.3, which sometimes has problem with the above template +// function. +bool PredFunction%(n)sInt(%(int_vs)s) { + return %(v_sum)s > 0; +} +bool PredFunction%(n)sBool(%(Bool_vs)s) { + return %(v_sum)s > 0; +} +""" % DEFS) + + tests += """ +// A %(arity)s predicate functor. +struct PredFunctor%(n)s { + template <%(types)s> + bool operator()(""" % DEFS + + tests += Iter(n, 'const T%s& v%s', sep=""", + """) + + tests += """) { + return %(v_sum)s > 0; + } +}; +""" % DEFS + + tests += """ +// A %(arity)s predicate-formatter function. +template <%(types)s> +testing::AssertionResult PredFormatFunction%(n)s(""" % DEFS + + tests += Iter(n, 'const char* e%s', sep=""", + """) + + tests += Iter(n, """, + const T%s& v%s""") + + tests += """) { + if (PredFunction%(n)s(%(vs)s)) + return testing::AssertionSuccess(); + + return testing::AssertionFailure() + << """ % DEFS + + tests += Iter(n, 'e%s', sep=' << " + " << ') + + tests += """ + << " is expected to be positive, but evaluates to " + << %(v_sum)s << "."; +} +""" % DEFS + + tests += """ +// A %(arity)s predicate-formatter functor. +struct PredFormatFunctor%(n)s { + template <%(types)s> + testing::AssertionResult operator()(""" % DEFS + + tests += Iter(n, 'const char* e%s', sep=""", + """) + + tests += Iter(n, """, + const T%s& v%s""") + + tests += """) const { + return PredFormatFunction%(n)s(%(es)s, %(vs)s); + } +}; +""" % DEFS + + tests += """ +// Tests for {EXPECT|ASSERT}_PRED_FORMAT%(n)s. + +class Predicate%(n)sTest : public testing::Test { + protected: + virtual void SetUp() { + expected_to_finish_ = true; + finished_ = false;""" % DEFS + + tests += """ + """ + Iter(n, 'n%s_ = ') + """0; + } +""" + + tests += """ + virtual void TearDown() { + // Verifies that each of the predicate's arguments was evaluated + // exactly once.""" + + tests += ''.join([""" + EXPECT_EQ(1, n%s_) << + "The predicate assertion didn't evaluate argument %s " + "exactly once.";""" % (i, i + 1) for i in OneTo(n)]) + + tests += """ + + // Verifies that the control flow in the test function is expected. + if (expected_to_finish_ && !finished_) { + FAIL() << "The predicate assertion unexpactedly aborted the test."; + } else if (!expected_to_finish_ && finished_) { + FAIL() << "The failed predicate assertion didn't abort the test " + "as expected."; + } + } + + // true iff the test function is expected to run to finish. + static bool expected_to_finish_; + + // true iff the test function did run to finish. + static bool finished_; +""" % DEFS + + tests += Iter(n, """ + static int n%s_;""") + + tests += """ +}; + +bool Predicate%(n)sTest::expected_to_finish_; +bool Predicate%(n)sTest::finished_; +""" % DEFS + + tests += Iter(n, """int Predicate%%(n)sTest::n%s_; +""") % DEFS + + tests += """ +typedef Predicate%(n)sTest EXPECT_PRED_FORMAT%(n)sTest; +typedef Predicate%(n)sTest ASSERT_PRED_FORMAT%(n)sTest; +typedef Predicate%(n)sTest EXPECT_PRED%(n)sTest; +typedef Predicate%(n)sTest ASSERT_PRED%(n)sTest; +""" % DEFS + + def GenTest(use_format, use_assert, expect_failure, + use_functor, use_user_type): + """Returns the test for a predicate assertion macro. + + Args: + use_format: true iff the assertion is a *_PRED_FORMAT*. + use_assert: true iff the assertion is a ASSERT_*. + expect_failure: true iff the assertion is expected to fail. + use_functor: true iff the first argument of the assertion is + a functor (as opposed to a function) + use_user_type: true iff the predicate functor/function takes + argument(s) of a user-defined type. + + Example: + + GenTest(1, 0, 0, 1, 0) returns a test that tests the behavior + of a successful EXPECT_PRED_FORMATn() that takes a functor + whose arguments have built-in types.""" + + if use_assert: + assrt = 'ASSERT' # 'assert' is reserved, so we cannot use + # that identifier here. + else: + assrt = 'EXPECT' + + assertion = assrt + '_PRED' + + if use_format: + pred_format = 'PredFormat' + assertion += '_FORMAT' + else: + pred_format = 'Pred' + + assertion += '%(n)s' % DEFS + + if use_functor: + pred_format_type = 'functor' + pred_format += 'Functor%(n)s()' + else: + pred_format_type = 'function' + pred_format += 'Function%(n)s' + if not use_format: + if use_user_type: + pred_format += 'Bool' + else: + pred_format += 'Int' + + test_name = pred_format_type.title() + + if use_user_type: + arg_type = 'user-defined type (Bool)' + test_name += 'OnUserType' + if expect_failure: + arg = 'Bool(n%s_++)' + else: + arg = 'Bool(++n%s_)' + else: + arg_type = 'built-in type (int)' + test_name += 'OnBuiltInType' + if expect_failure: + arg = 'n%s_++' + else: + arg = '++n%s_' + + if expect_failure: + successful_or_failed = 'failed' + expected_or_not = 'expected.' + test_name += 'Failure' + else: + successful_or_failed = 'successful' + expected_or_not = 'UNEXPECTED!' + test_name += 'Success' + + # A map that defines the values used in the test template. + defs = DEFS.copy() + defs.update({ + 'assert' : assrt, + 'assertion' : assertion, + 'test_name' : test_name, + 'pf_type' : pred_format_type, + 'pf' : pred_format, + 'arg_type' : arg_type, + 'arg' : arg, + 'successful' : successful_or_failed, + 'expected' : expected_or_not, + }) + + test = """ +// Tests a %(successful)s %(assertion)s where the +// predicate-formatter is a %(pf_type)s on a %(arg_type)s. +TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs + + indent = (len(assertion) + 3)*' ' + extra_indent = '' + + if expect_failure: + extra_indent = ' ' + if use_assert: + test += """ + expected_to_finish_ = false; + EXPECT_FATAL_FAILURE({ // NOLINT""" + else: + test += """ + EXPECT_NONFATAL_FAILURE({ // NOLINT""" + + test += '\n' + extra_indent + """ %(assertion)s(%(pf)s""" % defs + + test = test % defs + test += Iter(n, ',\n' + indent + extra_indent + '%(arg)s' % defs) + test += ');\n' + extra_indent + ' finished_ = true;\n' + + if expect_failure: + test += ' }, "");\n' + + test += '}\n' + return test + + # Generates tests for all 2**6 = 64 combinations. + tests += ''.join([GenTest(use_format, use_assert, expect_failure, + use_functor, use_user_type) + for use_format in [0, 1] + for use_assert in [0, 1] + for expect_failure in [0, 1] + for use_functor in [0, 1] + for use_user_type in [0, 1] + ]) + + return tests + + +def UnitTestPostamble(): + """Returns the postamble for the tests.""" + + return '' + + +def GenerateUnitTest(n): + """Returns the tests for up-to n-ary predicate assertions.""" + + GenerateFile(UNIT_TEST, + UnitTestPreamble() + + ''.join([TestsForArity(i) for i in OneTo(n)]) + + UnitTestPostamble()) + + +def _Main(): + """The entry point of the script. Generates the header file and its + unit test.""" + + if len(sys.argv) != 2: + print __doc__ + print 'Author: ' + __author__ + sys.exit(1) + + n = int(sys.argv[1]) + GenerateHeader(n) + GenerateUnitTest(n) + + +if __name__ == '__main__': + _Main() diff --git a/cpp/thirdparty/gtest-1.7.0/scripts/gtest-config.in b/cpp/thirdparty/gtest-1.7.0/scripts/gtest-config.in new file mode 100755 index 000000000..780f8432e --- /dev/null +++ b/cpp/thirdparty/gtest-1.7.0/scripts/gtest-config.in @@ -0,0 +1,274 @@ +#!/bin/sh + +# These variables are automatically filled in by the configure script. +name="@PACKAGE_TARNAME@" +version="@PACKAGE_VERSION@" + +show_usage() +{ + echo "Usage: gtest-config [OPTIONS...]" +} + +show_help() +{ + show_usage + cat <<\EOF + +The `gtest-config' script provides access to the necessary compile and linking +flags to connect with Google C++ Testing Framework, both in a build prior to +installation, and on the system proper after installation. The installation +overrides may be issued in combination with any other queries, but will only +affect installation queries if called on a built but not installed gtest. The +installation queries may not be issued with any other types of queries, and +only one installation query may be made at a time. The version queries and +compiler flag queries may be combined as desired but not mixed. Different +version queries are always combined with logical "and" semantics, and only the +last of any particular query is used while all previous ones ignored. All +versions must be specified as a sequence of numbers separated by periods. +Compiler flag queries output the union of the sets of flags when combined. + + Examples: + gtest-config --min-version=1.0 || echo "Insufficient Google Test version." + + g++ $(gtest-config --cppflags --cxxflags) -o foo.o -c foo.cpp + g++ $(gtest-config --ldflags --libs) -o foo foo.o + + # When using a built but not installed Google Test: + g++ $(../../my_gtest_build/scripts/gtest-config ...) ... + + # When using an installed Google Test, but with installation overrides: + export GTEST_PREFIX="/opt" + g++ $(gtest-config --libdir="/opt/lib64" ...) ... + + Help: + --usage brief usage information + --help display this help message + + Installation Overrides: + --prefix=

nwB7F$e;{09r}S$- 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 delta 401073 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